[arch-commits] Commit in supermin/repos/community-testing-x86_64 (4 files)
Robin Broda
coderobe at archlinux.org
Mon Oct 14 22:18:27 UTC 2019
Date: Monday, October 14, 2019 @ 22:18:26
Author: coderobe
Revision: 515935
archrelease: copy trunk to community-testing-x86_64
Added:
supermin/repos/community-testing-x86_64/PKGBUILD
(from rev 515934, supermin/trunk/PKGBUILD)
supermin/repos/community-testing-x86_64/pacman-iter.patch
(from rev 515934, supermin/trunk/pacman-iter.patch)
Deleted:
supermin/repos/community-testing-x86_64/PKGBUILD
supermin/repos/community-testing-x86_64/pacman-iter.patch
-------------------+
PKGBUILD | 80 +++++++++++++++----------------
pacman-iter.patch | 132 ++++++++++++++++++++++++++--------------------------
2 files changed, 106 insertions(+), 106 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-10-14 22:17:40 UTC (rev 515934)
+++ PKGBUILD 2019-10-14 22:18:26 UTC (rev 515935)
@@ -1,40 +0,0 @@
-# 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.1.20
-pkgrel=3
-pkgdesc="Tool for creating supermin appliances"
-arch=('x86_64')
-url="http://people.redhat.com/~rjones/supermin/"
-license=('GPL')
-makedepends=('ocaml' 'ocaml-findlib' 'cpio')
-depends=('e2fsprogs')
-conflicts=('febootstrap<=3.21')
-source=("http://libguestfs.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
- "pacman-iter.patch")
-sha512sums=('ccc9ada98593f91399b323f0beb027185874f82547a1df4274c1206a9b6d4465e98b7aef5618274d41fb902747f6843fd2cc6192a4ea8526811261ac5a16848e'
- 'SKIP'
- '1921a5373c2a251048224871fcc9ccf2f3420ba444e6f0673e4efda2e7036cd31235c981c41f185ce15f6d5e0de2dd8c84290c410e12714b87992c150b799ad3')
-validpgpkeys=('F7774FB1AD074A7E8C8767EA91738F73E1B768A0') # Richard W.M. Jones <rjones at redhat.com>
-
-prepare() {
- cd "${pkgname}-${pkgver}"
-
- patch src/ph_pacman.ml "${srcdir}/pacman-iter.patch"
-}
-
-build() {
- cd "${pkgname}-${pkgver}"
-
- ./configure --prefix=/usr
-
- make
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}/" install
-}
Copied: supermin/repos/community-testing-x86_64/PKGBUILD (from rev 515934, supermin/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-10-14 22:18:26 UTC (rev 515935)
@@ -0,0 +1,40 @@
+# 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.1.20
+pkgrel=4
+pkgdesc="Tool for creating supermin appliances"
+arch=('x86_64')
+url="http://people.redhat.com/~rjones/supermin/"
+license=('GPL')
+makedepends=('ocaml' 'ocaml-findlib' 'cpio')
+depends=('e2fsprogs' 'pacman' 'pacman-contrib')
+conflicts=('febootstrap<=3.21')
+source=("http://libguestfs.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+ "pacman-iter.patch")
+sha512sums=('ccc9ada98593f91399b323f0beb027185874f82547a1df4274c1206a9b6d4465e98b7aef5618274d41fb902747f6843fd2cc6192a4ea8526811261ac5a16848e'
+ 'SKIP'
+ '1921a5373c2a251048224871fcc9ccf2f3420ba444e6f0673e4efda2e7036cd31235c981c41f185ce15f6d5e0de2dd8c84290c410e12714b87992c150b799ad3')
+validpgpkeys=('F7774FB1AD074A7E8C8767EA91738F73E1B768A0') # Richard W.M. Jones <rjones at redhat.com>
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+
+ patch src/ph_pacman.ml "${srcdir}/pacman-iter.patch"
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}/" install
+}
Deleted: pacman-iter.patch
===================================================================
--- pacman-iter.patch 2019-10-14 22:17:40 UTC (rev 515934)
+++ pacman-iter.patch 2019-10-14 22:18:26 UTC (rev 515935)
@@ -1,66 +0,0 @@
---- a/supermin/src/ph_pacman.ml 2019-10-14 21:28:25.138769513 +0200
-+++ b/supermin/src/ph_pacman.ml 2019-10-14 21:33:31.479364225 +0200
-@@ -171,24 +171,24 @@
- * only downloads each package once, even though each call to pacman will
- * download dependent packages as well.
- *)
-- List.iter (
-- fun name ->
-- let cmd = sprintf "\
-- set -e
-- umask 0000
-- cd %s
-- mkdir -p var/lib/pacman
-- %s %s%s -Syw --noconfirm --cachedir=$(pwd) --root=$(pwd) %s
-- "
-- (quote tdir)
-- Config.fakeroot Config.pacman
-- (match !settings.packager_config with
-- | None -> ""
-- | Some filename -> " --config " ^ (quote filename))
-- (quoted_list names) in
-- if !settings.debug >= 2 then printf "%s" cmd;
-- if Sys.command cmd <> 0 then (
-- (* The package may not be in the main repos, check the AUR. *)
-+ let cmd = sprintf "\
-+ set -e
-+ umask 0000
-+ cd %s
-+ mkdir -p var/lib/pacman
-+ %s %s%s -Syw --noconfirm --cachedir=$(pwd) --root=$(pwd) %s
-+ "
-+ (quote tdir)
-+ Config.fakeroot Config.pacman
-+ (match !settings.packager_config with
-+ | None -> ""
-+ | Some filename -> " --config " ^ (quote filename))
-+ (quoted_list names) in
-+ if !settings.debug >= 2 then printf "%s" cmd;
-+ if Sys.command cmd <> 0 then (
-+ (* The package may not be in the main repos, check the AUR. *)
-+ List.iter (
-+ fun name ->
- let cmd = sprintf "\
- set -e
- umask 0000
-@@ -201,16 +201,16 @@
- "
- (quote tdir)
- (quote ("https://aur.archlinux.org/packages/" ^
-- (String.sub name 0 2) ^
-- "/" ^ name ^ "/" ^ name ^ ".tar.gz"))
-+ (String.sub name 0 2) ^
-+ "/" ^ name ^ "/" ^ name ^ ".tar.gz"))
- (quote (name ^ ".tar.gz"))
- (quote name) (* cd *)
- Config.makepkg
- (quote name) (quote tdir) (* mv *) in
- if !settings.debug >= 2 then printf "%s" cmd;
- run_command cmd
-- );
-- ) names;
-+ ) names;
-+ );
-
- (* Unpack the downloaded packages. *)
- let cmd =
Copied: supermin/repos/community-testing-x86_64/pacman-iter.patch (from rev 515934, supermin/trunk/pacman-iter.patch)
===================================================================
--- pacman-iter.patch (rev 0)
+++ pacman-iter.patch 2019-10-14 22:18:26 UTC (rev 515935)
@@ -0,0 +1,66 @@
+--- a/supermin/src/ph_pacman.ml 2019-10-14 21:28:25.138769513 +0200
++++ b/supermin/src/ph_pacman.ml 2019-10-14 21:33:31.479364225 +0200
+@@ -171,24 +171,24 @@
+ * only downloads each package once, even though each call to pacman will
+ * download dependent packages as well.
+ *)
+- List.iter (
+- fun name ->
+- let cmd = sprintf "\
+- set -e
+- umask 0000
+- cd %s
+- mkdir -p var/lib/pacman
+- %s %s%s -Syw --noconfirm --cachedir=$(pwd) --root=$(pwd) %s
+- "
+- (quote tdir)
+- Config.fakeroot Config.pacman
+- (match !settings.packager_config with
+- | None -> ""
+- | Some filename -> " --config " ^ (quote filename))
+- (quoted_list names) in
+- if !settings.debug >= 2 then printf "%s" cmd;
+- if Sys.command cmd <> 0 then (
+- (* The package may not be in the main repos, check the AUR. *)
++ let cmd = sprintf "\
++ set -e
++ umask 0000
++ cd %s
++ mkdir -p var/lib/pacman
++ %s %s%s -Syw --noconfirm --cachedir=$(pwd) --root=$(pwd) %s
++ "
++ (quote tdir)
++ Config.fakeroot Config.pacman
++ (match !settings.packager_config with
++ | None -> ""
++ | Some filename -> " --config " ^ (quote filename))
++ (quoted_list names) in
++ if !settings.debug >= 2 then printf "%s" cmd;
++ if Sys.command cmd <> 0 then (
++ (* The package may not be in the main repos, check the AUR. *)
++ List.iter (
++ fun name ->
+ let cmd = sprintf "\
+ set -e
+ umask 0000
+@@ -201,16 +201,16 @@
+ "
+ (quote tdir)
+ (quote ("https://aur.archlinux.org/packages/" ^
+- (String.sub name 0 2) ^
+- "/" ^ name ^ "/" ^ name ^ ".tar.gz"))
++ (String.sub name 0 2) ^
++ "/" ^ name ^ "/" ^ name ^ ".tar.gz"))
+ (quote (name ^ ".tar.gz"))
+ (quote name) (* cd *)
+ Config.makepkg
+ (quote name) (quote tdir) (* mv *) in
+ if !settings.debug >= 2 then printf "%s" cmd;
+ run_command cmd
+- );
+- ) names;
++ ) names;
++ );
+
+ (* Unpack the downloaded packages. *)
+ let cmd =
More information about the arch-commits
mailing list