[arch-commits] Commit in supermin/repos (3 files)

Robin Broda coderobe at gemini.archlinux.org
Fri Nov 19 00:18:40 UTC 2021


    Date: Friday, November 19, 2021 @ 00:18:40
  Author: coderobe
Revision: 1052756

archrelease: copy trunk to community-testing-x86_64

Added:
  supermin/repos/community-testing-x86_64/
  supermin/repos/community-testing-x86_64/PKGBUILD
    (from rev 1052755, supermin/trunk/PKGBUILD)
  supermin/repos/community-testing-x86_64/pacman6.patch
    (from rev 1052755, supermin/trunk/pacman6.patch)

---------------+
 PKGBUILD      |   32 ++++++++++++++++++++++++++++++++
 pacman6.patch |   15 +++++++++++++++
 2 files changed, 47 insertions(+)

Copied: supermin/repos/community-testing-x86_64/PKGBUILD (from rev 1052755, supermin/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2021-11-19 00:18:40 UTC (rev 1052756)
@@ -0,0 +1,32 @@
+# Maintainer: Robin Broda <coderobe @ archlinux.org>
+# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
+# Contributor:  Achilleas Pipinellis <axilleas archlinux gr>
+
+pkgname=supermin
+pkgver=5.3.1
+pkgrel=1
+pkgdesc="Tool for creating supermin appliances"
+arch=('x86_64')
+url="http://people.redhat.com/~rjones/supermin/"
+license=('GPL')
+makedepends=('ocaml' 'ocaml-findlib')
+depends=('e2fsprogs' 'pacman' 'pacman-contrib' 'cpio')
+conflicts=('febootstrap<=3.21')
+source=("https://download.libguestfs.org/${pkgname}/5.3-development/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha512sums=('c904f62c46941cd7e1d19abd5e82491c46f40333faac4a131439cb2d95ec78ad38c227dadbbedd83317283b11d29d603fc65d2d5fe095d37bbd89e7e212f3e8a'
+            'SKIP')
+validpgpkeys=('F7774FB1AD074A7E8C8767EA91738F73E1B768A0') # Richard W.M. Jones <rjones at redhat.com>
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}/" install
+}

Copied: supermin/repos/community-testing-x86_64/pacman6.patch (from rev 1052755, supermin/trunk/pacman6.patch)
===================================================================
--- community-testing-x86_64/pacman6.patch	                        (rev 0)
+++ community-testing-x86_64/pacman6.patch	2021-11-19 00:18:40 UTC (rev 1052756)
@@ -0,0 +1,15 @@
+diff -upr supermin-5.2.1.orig/src/ph_pacman.ml supermin-5.2.1/src/ph_pacman.ml
+--- supermin-5.2.1.orig/src/ph_pacman.ml	2021-02-01 11:30:45.000000000 +0200
++++ supermin-5.2.1/src/ph_pacman.ml	2021-05-24 18:11:28.002222316 +0300
+@@ -219,7 +219,10 @@ let pacman_download_all_packages pkgs di
+   let cmd =
+     sprintf "
+       umask 0000
+-      for f in %s/*.pkg.tar.*; do tar -xf \"$f\" -C %s; done
++      for f in %s/*.pkg.tar.*; do
++        [[ $f == *.sig ]] && continue
++        tar -xf \"$f\" -C %s
++      done
+     "
+       (quote tdir) (quote dir) in
+   if !settings.debug >= 2 then printf "%s" cmd;



More information about the arch-commits mailing list