Date: Monday, October 24, 2022 @ 18:15:57
Author: foxboron
Revision: 458847
archrelease: copy trunk to testing-any
Added:
mkinitcpio/repos/testing-any/
mkinitcpio/repos/testing-any/PKGBUILD
(from rev 458846, mkinitcpio/trunk/PKGBUILD)
mkinitcpio/repos/testing-any/keys/
mkinitcpio/repos/testing-any/mkinitcpio.install
(from rev 458846, mkinitcpio/trunk/mkinitcpio.install)
--------------------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
mkinitcpio.install | 15 +++++++++++++++
2 files changed, 53 insertions(+)
Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 458846,
mkinitcpio/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2022-10-24 18:15:57 UTC (rev 458847)
@@ -0,0 +1,38 @@
+# Maintainer: Giancarlo Razzolini <[email protected]>
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: Dave Reisner <[email protected]>
+# Contributor: Thomas Bächler <[email protected]>
+
+pkgname=mkinitcpio
+pkgver=32
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url='https://github.com/archlinux/mkinitcpio'
+license=('GPL')
+depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23'
'libarchive' 'coreutils'
+ 'bash' 'binutils' 'diffutils' 'findutils' 'grep'
'filesystem>=2011.10-1' 'zstd' 'systemd')
+optdepends=('gzip: Use gzip compression for the initramfs image'
+ 'xz: Use lzma or xz compression for the initramfs image'
+ 'bzip2: Use bzip2 compression for the initramfs image'
+ 'lzop: Use lzo compression for the initramfs image'
+ 'lz4: Use lz4 compression for the initramfs image'
+ 'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+provides=('initramfs')
+backup=('etc/mkinitcpio.conf')
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+install=mkinitcpio.install
+sha512sums=('c180bef8af774305e8c9779b3405daaa5be33588bf89c6625a28eac1cde424f447782737d85d810fed4971d38b31086a072293d42aad08398c090f9538b56a4e'
+ 'SKIP')
+b2sums=('0c29659278e662eb58bc776f99e9579b5f0cf3268175382ecf2d635d54a6a8261ae173e387503a0c20a7492656c703a6699b52e1a6693c85c3211225d3e7abf8'
+ 'SKIP')
+validpgpkeys=('ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB' # Giancarlo
Razzolini
+ 'C100346676634E80C940FB9E9C02FF419FECBE16') # Morten Linderud
+
+check() {
+ make -C "$pkgname-$pkgver" check
+}
+
+package() {
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
Copied: mkinitcpio/repos/testing-any/mkinitcpio.install (from rev 458846,
mkinitcpio/trunk/mkinitcpio.install)
===================================================================
--- testing-any/mkinitcpio.install (rev 0)
+++ testing-any/mkinitcpio.install 2022-10-24 18:15:57 UTC (rev 458847)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+ if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
+ printf '==> If your /usr is on a separate partition, you must add the
"usr" hook\n'
+ printf ' to /etc/mkinitcpio.conf and regenerate your images before
rebooting\n'
+ fi
+
+ if [ "$(vercmp 0.12.0 "$2")" -eq 1 ]; then
+ printf '==> The "block" hook has replaced several hooks:\n'
+ printf ' fw, sata, pata, scsi, virtio, mmc, usb\n'
+ printf ' Replace any and all of these in /etc/mkinitcpio.conf with a
single\n'
+ printf ' instance of the "block" hook\n'
+ fi
+}