summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse2021-07-08 09:40:43 +0200
committerChristian Hesse2021-07-08 09:40:43 +0200
commitb6553d725b6ee0e08febea1af998c1fdbb800a53 (patch)
treee06a214e969dab210f2b42ae6cba6c80e145e3eb
parent78b233d8dfa1781420a1c6688298624393be8026 (diff)
downloadaur-b6553d725b6ee0e08febea1af998c1fdbb800a53.tar.gz
commit mkinitcpio-git 30.r18.gf40bb42-1
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD12
2 files changed, 11 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index af7e78c92966..ffba53c8e018 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,8 @@
-# Generated by mksrcinfo v8
-# Tue Aug 29 14:06:20 UTC 2017
pkgbase = mkinitcpio-git
pkgdesc = Modular initramfs image creation utility - git checkout
- pkgver = 23.r6.g32dbf89
+ pkgver = 30.r18.gf40bb42
pkgrel = 1
- url = http://www.archlinux.org/
+ url = https://github.com/archlinux/mkinitcpio
arch = any
license = GPL
makedepends = git
@@ -25,11 +23,11 @@ pkgbase = mkinitcpio-git
optdepends = bzip2: Use bzip2 compression for the initramfs image
optdepends = lzop: Use lzo compression for the initramfs image
optdepends = mkinitcpio-nfs-utils: Support for root filesystem on NFS
- provides = mkinitcpio=23.r6.g32dbf89
+ provides = initramfs
+ provides = mkinitcpio=30.r18.gf40bb42
conflicts = mkinitcpio
backup = etc/mkinitcpio.conf
- source = git://projects.archlinux.org/mkinitcpio.git
+ source = git+https://github.com/archlinux/mkinitcpio.git
sha256sums = SKIP
pkgname = mkinitcpio-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 7f2ad9f7d0bc..19c1cbee1a27 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,11 @@
# Maintainer: Thomas Bächler <thomas@archlinux.org> ([core] package)
pkgname=mkinitcpio-git
-pkgver=23.r6.g32dbf89
+pkgver=30.r18.gf40bb42
pkgrel=1
pkgdesc='Modular initramfs image creation utility - git checkout'
arch=('any')
-url='http://www.archlinux.org/'
+url='https://github.com/archlinux/mkinitcpio'
license=('GPL')
depends=('awk' 'mkinitcpio-busybox' 'kmod' 'util-linux' 'libarchive' 'coreutils'
'bash' 'findutils' 'grep' 'filesystem' 'gzip' 'systemd-tools')
@@ -16,10 +16,10 @@ optdepends=('xz: Use lzma or xz compression for the initramfs image'
'lzop: Use lzo compression for the initramfs image'
'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
makedepends=('git' 'asciidoc')
-provides=("mkinitcpio=${pkgver}")
+provides=('initramfs' "mkinitcpio=${pkgver}")
conflicts=('mkinitcpio')
backup=('etc/mkinitcpio.conf')
-source=('git://projects.archlinux.org/mkinitcpio.git')
+source=('git+https://github.com/archlinux/mkinitcpio.git')
sha256sums=('SKIP')
pkgver() {
@@ -29,11 +29,11 @@ pkgver() {
printf '%s.r%s.g%s' \
"$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG})" \
"$(git rev-list --count ${GITTAG}..)" \
- "$(git log -1 --format='%h')"
+ "$(git rev-parse --short HEAD)"
else
printf '0.r%s.g%s' \
"$(git rev-list --count master)" \
- "$(git log -1 --format='%h')"
+ "$(git rev-parse --short HEAD)"
fi
}