Date: Friday, March 24, 2023 @ 11:06:26
  Author: foxboron
Revision: 471953

archrelease: copy trunk to testing-any

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

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

Copied: mkinitcpio/repos/testing-any/PKGBUILD (from rev 471952, 
mkinitcpio/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD                                (rev 0)
+++ testing-any/PKGBUILD        2023-03-24 11:06:26 UTC (rev 471953)
@@ -0,0 +1,39 @@
+# Maintainer: Giancarlo Razzolini <grazzol...@archlinux.org>
+# Maintainer: Morten Linderud <foxbo...@archlinux.org>
+# Contributor: Dave Reisner <dreis...@archlinux.org>
+# Contributor: Thomas Bächler <tho...@archlinux.org>
+
+pkgname=mkinitcpio
+pkgver=35.2
+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=('9ca8544bc5de3d215bf94ecf9a3bfb9265c9ed9871357af4b597a37e94c6951935641c11558470aaa934e8fbe9bc1f875dfa9d0fe8734a97f90154c9cbabfdba'
+            'SKIP')
+b2sums=('e7d56ea1de8d21271d4e94a61563af9c5f33320a46ce9f006092bb70e2161be02791dfd75b14e9c9b5ad2fbb781617f04b4e49afa93a707785c23773c1a48664'
+        '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 471952, 
mkinitcpio/trunk/mkinitcpio.install)
===================================================================
--- testing-any/mkinitcpio.install                              (rev 0)
+++ testing-any/mkinitcpio.install      2023-03-24 11:06:26 UTC (rev 471953)
@@ -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