Date: Saturday, March 18, 2023 @ 14:52:53
  Author: foxboron
Revision: 471482

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/
  mkinitcpio/repos/testing-any/PKGBUILD
    (from rev 471481, mkinitcpio/trunk/PKGBUILD)
  mkinitcpio/repos/testing-any/keys/
  mkinitcpio/repos/testing-any/mkinitcpio.install
    (from rev 471481, mkinitcpio/trunk/mkinitcpio.install)

--------------------+
 PKGBUILD           |   39 +++++++++++++++++++++++++++++++++++++++
 mkinitcpio.install |   15 +++++++++++++++
 2 files changed, 54 insertions(+)

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 471481, 
mkinitcpio/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD                                (rev 0)
+++ testing-any/PKGBUILD        2023-03-18 14:52:53 UTC (rev 471482)
@@ -0,0 +1,39 @@
+# Maintainer: Giancarlo Razzolini <[email protected]>
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: Dave Reisner <[email protected]>
+# Contributor: Thomas Bächler <[email protected]>
+
+pkgname=mkinitcpio
+pkgver=35
+pkgrel=1
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url='https://gitlab.archlinux.org/archlinux/mkinitcpio/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')
+checkdepends=('bash-bats' 'bash-bats-assert' 'lzop')
+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=('138cef56293882e833577726b9b9399f6af36732571aa351939479588a18d86058730d946903212ce6c92ddc89227e392bef961c5d3c578ed3183479af348fc3'
+            'SKIP')
+b2sums=('249332752badba7703da342d88aae8d55c22c5ed77369dd61b6d8b2aea01c1d4cb2d106d560bd175ddbf80d1aae4b0c1c54261f7e10aeb3daa3d28a83a7e686d'
+        '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 471481, 
mkinitcpio/trunk/mkinitcpio.install)
===================================================================
--- testing-any/mkinitcpio.install                              (rev 0)
+++ testing-any/mkinitcpio.install      2023-03-18 14:52:53 UTC (rev 471482)
@@ -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
+}

Reply via email to