[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, March 14, 2020 @ 18:09:44 Author: felixonmars Revision: 597070 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 597069, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 597069, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-03-14 18:09:34 UTC (rev 597069) +++ PKGBUILD2020-03-14 18:09:44 UTC (rev 597070) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.122 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('b034a1e76a2fe0e6cd7817f082e058fb283781842ac4ea72ad733bf99e93d809a86dbbef4ca461aebe8fbb7d31be6b934b0c417e77940c137ab9000a1b28e594' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 597069, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-03-14 18:09:44 UTC (rev 597070) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.123 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('9e67d5b56814665137511b951af5e9a4e453a28b48bad5c06e031613d17bc56a3e7370b0048f2bd1be8b3c7b8183d386473894f04063a7457dc9b9904468dea1' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-03-14 18:09:34 UTC (rev 597069) +++ arch-detect.patch 2020-03-14 18:09:44 UTC (rev 597070) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.2
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, March 13, 2020 @ 08:50:07 Author: felixonmars Revision: 595688 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 595687, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 595687, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-03-13 08:49:48 UTC (rev 595687) +++ PKGBUILD2020-03-13 08:50:07 UTC (rev 595688) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.121 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('cc4a10122a3dc66143050b6400ba508f4758b4f93aebed5195f2ffb0fcf4e95d75251b07d59b960ee0ab39eec0d464690a33107f2106df6e5adc33ae3c0b3371' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 595687, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-03-13 08:50:07 UTC (rev 595688) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.122 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('b034a1e76a2fe0e6cd7817f082e058fb283781842ac4ea72ad733bf99e93d809a86dbbef4ca461aebe8fbb7d31be6b934b0c417e77940c137ab9000a1b28e594' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-03-13 08:49:48 UTC (rev 595687) +++ arch-detect.patch 2020-03-13 08:50:07 UTC (rev 595688) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22.
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, March 10, 2020 @ 21:39:09 Author: felixonmars Revision: 593957 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 593956, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 593956, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-03-10 21:38:54 UTC (rev 593956) +++ PKGBUILD2020-03-10 21:39:09 UTC (rev 593957) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.120 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('31d6ab9e85603fba102229dc6fe397d31c047801ae6d4c4dcf4b8c03eeda4f269d3feb2a9e04e3adbf0d7756fcf6189c0ec3891a33421f2f2e841f49d0ab7e20' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 593956, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-03-10 21:39:09 UTC (rev 593957) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.121 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('cc4a10122a3dc66143050b6400ba508f4758b4f93aebed5195f2ffb0fcf4e95d75251b07d59b960ee0ab39eec0d464690a33107f2106df6e5adc33ae3c0b3371' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-03-10 21:38:54 UTC (rev 593956) +++ arch-detect.patch 2020-03-10 21:39:09 UTC (rev 593957) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Sunday, March 8, 2020 @ 10:59:30 Author: felixonmars Revision: 591672 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 591671, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 591671, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-03-08 10:59:20 UTC (rev 591671) +++ PKGBUILD2020-03-08 10:59:30 UTC (rev 591672) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.119 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('fa7f142d2afb599e9aa308d69910257fc0bc9e96bf374bda62833eaa04f7448851764950bc77784992bb5d45f4fa8d270a51882d54ae12466d24765f9a5f4eb4' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 591671, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-03-08 10:59:30 UTC (rev 591672) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.120 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('31d6ab9e85603fba102229dc6fe397d31c047801ae6d4c4dcf4b8c03eeda4f269d3feb2a9e04e3adbf0d7756fcf6189c0ec3891a33421f2f2e841f49d0ab7e20' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-03-08 10:59:20 UTC (rev 591671) +++ arch-detect.patch 2020-03-08 10:59:30 UTC (rev 591672) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22.1
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, February 27, 2020 @ 15:08:45 Author: felixonmars Revision: 584233 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 584232, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 584232, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-02-27 15:08:26 UTC (rev 584232) +++ PKGBUILD2020-02-27 15:08:45 UTC (rev 584233) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.118 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('75acd70d98fea9ef01f4f87ff58cb09d1f6f55fac5faffe8a6c9052fac88d13dab9d42c298dc01f680c11cfc595d6087328c2a7aebe499f4f881a614fb24d5d2' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 584232, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-02-27 15:08:45 UTC (rev 584233) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.119 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('fa7f142d2afb599e9aa308d69910257fc0bc9e96bf374bda62833eaa04f7448851764950bc77784992bb5d45f4fa8d270a51882d54ae12466d24765f9a5f4eb4' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-02-27 15:08:26 UTC (rev 584232) +++ arch-detect.patch 2020-02-27 15:08:45 UTC (rev 584233) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, February 21, 2020 @ 13:37:32 Author: felixonmars Revision: 577525 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 577524, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 577524, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-02-21 13:37:12 UTC (rev 577524) +++ PKGBUILD2020-02-21 13:37:32 UTC (rev 577525) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.117 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('cb6ce2aaaff3a2d4ea33982a88b290a1c69bd27804c2bf82443bddd1dfbfdd5dd7377a8c5c0951d944b2d50bf3922ff27294af10f152a971db20a398d9eefb0b' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 577524, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-02-21 13:37:32 UTC (rev 577525) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.118 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=(https://salsa.debian.org/installer-team/debootstrap/-/archive/$pkgver/debootstrap-$pkgver.tar.bz2 +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('75acd70d98fea9ef01f4f87ff58cb09d1f6f55fac5faffe8a6c9052fac88d13dab9d42c298dc01f680c11cfc595d6087328c2a7aebe499f4f881a614fb24d5d2' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-02-21 13:37:12 UTC (rev 577524) +++ arch-detect.patch 2020-02-21 13:37:32 UTC (rev 577525) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22.1
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Wednesday, February 12, 2020 @ 06:05:35 Author: felixonmars Revision: 568299 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 568298, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 568298, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-02-12 06:05:18 UTC (rev 568298) +++ PKGBUILD2020-02-12 06:05:35 UTC (rev 568299) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.116 -pkgrel=2 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('perl' 'wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('4b81bc56c6ac6e210aaceb06013882ba3cfe777d4173fd89d38a279fe57425302b86b2fb00ea2e19df2abfb7058909e1eb628f74f241612d865044b32e3481a4' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 568298, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-02-12 06:05:35 UTC (rev 568299) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.117 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('cb6ce2aaaff3a2d4ea33982a88b290a1c69bd27804c2bf82443bddd1dfbfdd5dd7377a8c5c0951d944b2d50bf3922ff27294af10f152a971db20a398d9eefb0b' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-02-12 06:05:18 UTC (rev 568298) +++ arch-detect.patch 2020-02-12 06:05:35 UTC (rev 568299) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22.1
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Wednesday, January 8, 2020 @ 22:20:44 Author: felixonmars Revision: 550732 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 550731, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 550731, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 64 +++--- 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2020-01-08 22:20:34 UTC (rev 550731) +++ PKGBUILD2020-01-08 22:20:44 UTC (rev 550732) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.116 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('4b81bc56c6ac6e210aaceb06013882ba3cfe777d4173fd89d38a279fe57425302b86b2fb00ea2e19df2abfb7058909e1eb628f74f241612d865044b32e3481a4' - 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 550731, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2020-01-08 22:20:44 UTC (rev 550732) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.116 +pkgrel=2 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('perl' 'wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('4b81bc56c6ac6e210aaceb06013882ba3cfe777d4173fd89d38a279fe57425302b86b2fb00ea2e19df2abfb7058909e1eb628f74f241612d865044b32e3481a4' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2020-01-08 22:20:34 UTC (rev 550731) +++ arch-detect.patch 2020-01-08 22:20:44 UTC (rev 550732) @@ -1,32 +0,0 @@ -From b15594e90a8de4a9cd844bc80388e7b64fc4a51a Mon Sep 17 00:00:00 2001 -From: Eli Schwartz -Date: Fri, 16 Aug 2019 14:20:19 -0400 -Subject: [PATCH] add pacman capability to debootstrap architecture detection - - debootstrap | 9 + - 1 file changed, 9 insertions(+) - -diff --git a/debootstrap b/debootstrap -index 29c0443..f9d49a9 100755 a/debootstrap -+++ b/debootstrap -@@ -506,6 +506,15 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman-conf; then -+ CARCH=$(pacman-conf Architecture) -+ case $CARCH in -+ i686)HOST_ARCH=i386 ;; -+ x86_64) HOST_ARCH=amd64 ;; -+ armv7h) HOST_ARCH=armhf ;; -+ aarch64) HOST_ARCH=arm64 ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems --- -2.22.1 - Copied
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, October 3, 2019 @ 22:06:22 Author: felixonmars Revision: 512587 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 512586, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 512586, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 53 +++--- 2 files changed, 68 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-10-03 22:06:19 UTC (rev 512586) +++ PKGBUILD2019-10-03 22:06:22 UTC (rev 512587) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.115 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('36310ae320abce915fa39204a92a90bcbf8ebee864a550097fef2266df64c510304cc220d56bd4a092fa3b3f43864931170f8b25ca7ae585e0018d7a44f3c1df' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 512586, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-10-03 22:06:22 UTC (rev 512587) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.116 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('4b81bc56c6ac6e210aaceb06013882ba3cfe777d4173fd89d38a279fe57425302b86b2fb00ea2e19df2abfb7058909e1eb628f74f241612d865044b32e3481a4' + 'd70a9d096d1692f71970cc818515bd783a6031bfe2d2857134eabf6fd36e4137152ebafa8e2d4ae7c8cb442c8532cd4192715b286e38b4d947b0b467e9ed54a5') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2019-10-03 22:06:19 UTC (rev 512586) +++ arch-detect.patch 2019-10-03 22:06:22 UTC (rev 512587) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 512586, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, July 30, 2019 @ 02:40:09 Author: felixonmars Revision: 494857 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 494856, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 494856, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 42 +++--- 2 files changed, 57 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-07-30 02:39:11 UTC (rev 494856) +++ PKGBUILD2019-07-30 02:40:09 UTC (rev 494857) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.114 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('21a5a92a7285fac1eba819f6039a0051c114c9c32d8d9685d6ccda299ad02770afda9ec48390947bfa25f3a68b17e401bd4fc341d323e9ea69d844db5776ee21' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 494856, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-07-30 02:40:09 UTC (rev 494857) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.115 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('36310ae320abce915fa39204a92a90bcbf8ebee864a550097fef2266df64c510304cc220d56bd4a092fa3b3f43864931170f8b25ca7ae585e0018d7a44f3c1df' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2019-07-30 02:39:11 UTC (rev 494856) +++ arch-detect.patch 2019-07-30 02:40:09 UTC (rev 494857) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 494856, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, January 10, 2019 @ 11:05:38 Author: felixonmars Revision: 421548 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 421547, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 421547, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 42 +++--- 2 files changed, 57 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-01-10 11:05:19 UTC (rev 421547) +++ PKGBUILD2019-01-10 11:05:38 UTC (rev 421548) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.113 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('197eae86dacc449a270cebbdc8e3443c790f2e2cd6a891a968c6d46d59564bea9e78c7140294f9b631fbe8efc4d10a7241468035048a1a3678ddbe477159a70b' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 421547, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-01-10 11:05:38 UTC (rev 421548) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.114 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('21a5a92a7285fac1eba819f6039a0051c114c9c32d8d9685d6ccda299ad02770afda9ec48390947bfa25f3a68b17e401bd4fc341d323e9ea69d844db5776ee21' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2019-01-10 11:05:19 UTC (rev 421547) +++ arch-detect.patch 2019-01-10 11:05:38 UTC (rev 421548) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 421547, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Monday, January 7, 2019 @ 20:57:53 Author: felixonmars Revision: 420982 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 420981, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 420981, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 42 +++--- 2 files changed, 57 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-01-07 20:57:35 UTC (rev 420981) +++ PKGBUILD2019-01-07 20:57:53 UTC (rev 420982) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.112 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('8b7d953d61f7188c38750abd2e559cd7fac60b817f2cf0735e12b06c9d93e6bbb906d9843e656675ce75cdfb7489b9366f747c34a2b6481c8c7b73a80eb7af87' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 420981, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-01-07 20:57:53 UTC (rev 420982) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.113 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('197eae86dacc449a270cebbdc8e3443c790f2e2cd6a891a968c6d46d59564bea9e78c7140294f9b631fbe8efc4d10a7241468035048a1a3678ddbe477159a70b' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2019-01-07 20:57:35 UTC (rev 420981) +++ arch-detect.patch 2019-01-07 20:57:53 UTC (rev 420982) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 420981, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0)
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, January 3, 2019 @ 21:01:55 Author: felixonmars Revision: 420411 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 420410, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 420410, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 42 +++--- 2 files changed, 57 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2019-01-03 21:01:44 UTC (rev 420410) +++ PKGBUILD2019-01-03 21:01:55 UTC (rev 420411) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.111 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('495d0f8d42efde933ca9d2581d6ed4aec18648abbb777890071645949bcc4af2aefa621360642a5269fdf915155f1b26d827f0825a69488fba3562cc80622ead' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 420410, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2019-01-03 21:01:55 UTC (rev 420411) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.112 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('8b7d953d61f7188c38750abd2e559cd7fac60b817f2cf0735e12b06c9d93e6bbb906d9843e656675ce75cdfb7489b9366f747c34a2b6481c8c7b73a80eb7af87' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2019-01-03 21:01:44 UTC (rev 420410) +++ arch-detect.patch 2019-01-03 21:01:55 UTC (rev 420411) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 420410, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, December 1, 2018 @ 06:10:45 Author: felixonmars Revision: 410665 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 410664, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 410664, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 72 ++-- arch-detect.patch | 42 +++--- 2 files changed, 57 insertions(+), 57 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-12-01 06:10:31 UTC (rev 410664) +++ PKGBUILD2018-12-01 06:10:45 UTC (rev 410665) @@ -1,36 +0,0 @@ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.110 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('e687bd3ca43f41f2f2d196b1519e6a7cc3a3e63d9b2e50c808a7508ff90aece4499d61f613a872325df27e44b723e9157a27f85f0e0aa355e49017f84bbb1561' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 410664, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-12-01 06:10:45 UTC (rev 410665) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.111 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('495d0f8d42efde933ca9d2581d6ed4aec18648abbb777890071645949bcc4af2aefa621360642a5269fdf915155f1b26d827f0825a69488fba3562cc80622ead' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-12-01 06:10:31 UTC (rev 410664) +++ arch-detect.patch 2018-12-01 06:10:45 UTC (rev 410665) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 410664, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, November 8, 2018 @ 10:10:27 Author: felixonmars Revision: 403583 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 403569, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 403571, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 73 +--- arch-detect.patch | 42 ++--- 2 files changed, 57 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-11-08 10:10:26 UTC (rev 403582) +++ PKGBUILD2018-11-08 10:10:27 UTC (rev 403583) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.109 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('8b2cf0ba3e0c672a2375ff323c18c18788e17a4bdf3e03d6b72f956a85b989d3998b89215bc7b99925decbba3c9a5dbeddfc72b9baf7c0571f11559ff8286272' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 403569, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-11-08 10:10:27 UTC (rev 403583) @@ -0,0 +1,36 @@ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.110 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('e687bd3ca43f41f2f2d196b1519e6a7cc3a3e63d9b2e50c808a7508ff90aece4499d61f613a872325df27e44b723e9157a27f85f0e0aa355e49017f84bbb1561' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-11-08 10:10:26 UTC (rev 403582) +++ arch-detect.patch 2018-11-08 10:10:27 UTC (rev 403583) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 403571, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Monday, September 10, 2018 @ 09:45:50 Author: felixonmars Revision: 378993 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 378992, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 378992, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-10 09:45:35 UTC (rev 378992) +++ PKGBUILD2018-09-10 09:45:50 UTC (rev 378993) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.108 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('23781a31ac4b44f13186c67074fdcf78d68fb3f3d20b42698d2ae83fc492abcf0e51fc3941521e622f5229e5e23f1106624d7a7a843bf2265d1d68c2fd8187d8' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 378992, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-10 09:45:50 UTC (rev 378993) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.109 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('8b2cf0ba3e0c672a2375ff323c18c18788e17a4bdf3e03d6b72f956a85b989d3998b89215bc7b99925decbba3c9a5dbeddfc72b9baf7c0571f11559ff8286272' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-09-10 09:45:35 UTC (rev 378992) +++ arch-detect.patch 2018-09-10 09:45:50 UTC (rev 378993) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 378992, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, August 18, 2018 @ 15:10:18 Author: felixonmars Revision: 372659 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 372658, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 372658, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-08-18 15:10:00 UTC (rev 372658) +++ PKGBUILD2018-08-18 15:10:18 UTC (rev 372659) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.107 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('2c466aa78a8be006f069070dba2700d331192f16e50e6309e9d0ba27876b73fa0691384cd3776baf917b3a165273bbd14c0c396a3bfccc1d96d8ef9e191315c1' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 372658, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-08-18 15:10:18 UTC (rev 372659) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.108 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('23781a31ac4b44f13186c67074fdcf78d68fb3f3d20b42698d2ae83fc492abcf0e51fc3941521e622f5229e5e23f1106624d7a7a843bf2265d1d68c2fd8187d8' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-08-18 15:10:00 UTC (rev 372658) +++ arch-detect.patch 2018-08-18 15:10:18 UTC (rev 372659) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 372658, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, July 26, 2018 @ 11:42:32 Author: felixonmars Revision: 363615 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 363614, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 363614, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-26 11:42:16 UTC (rev 363614) +++ PKGBUILD2018-07-26 11:42:32 UTC (rev 363615) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.106 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('0d6b97d884d83f724ad9f02b6462ef911fee5c6f55d7ea84da3827c5e9131c0761e6f9c77ebd56cfef6d935f86ca7b003169b15d5de212c7807bc0af989a34a8' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 363614, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-26 11:42:32 UTC (rev 363615) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.107 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('2c466aa78a8be006f069070dba2700d331192f16e50e6309e9d0ba27876b73fa0691384cd3776baf917b3a165273bbd14c0c396a3bfccc1d96d8ef9e191315c1' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-07-26 11:42:16 UTC (rev 363614) +++ arch-detect.patch 2018-07-26 11:42:32 UTC (rev 363615) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 363614, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, July 6, 2018 @ 12:05:02 Author: felixonmars Revision: 353564 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 353563, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 353563, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-06 12:04:19 UTC (rev 353563) +++ PKGBUILD2018-07-06 12:05:02 UTC (rev 353564) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.105 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('56df4dab166f58ab0251c17bf2afd0d551b10634ad9779d632a1ffaadcb9ed6703133ebdf4c01933320a1e3b00b9b22d80aaac8d52521ef63037130ed1eeb307' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 353563, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-06 12:05:02 UTC (rev 353564) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.106 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('0d6b97d884d83f724ad9f02b6462ef911fee5c6f55d7ea84da3827c5e9131c0761e6f9c77ebd56cfef6d935f86ca7b003169b15d5de212c7807bc0af989a34a8' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-07-06 12:04:19 UTC (rev 353563) +++ arch-detect.patch 2018-07-06 12:05:02 UTC (rev 353564) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 353563, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, July 5, 2018 @ 13:54:53 Author: felixonmars Revision: 352770 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 352769, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 352769, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-05 13:54:28 UTC (rev 352769) +++ PKGBUILD2018-07-05 13:54:53 UTC (rev 352770) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.103 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('4bf2e12ba6b620456f8a2b74c84dba0bb026a6151854886c8eb13bd709a3d8c125f8cd17ae22b6e04cad08fcd7e3bf6379199d7193f0394bd46f08ed661da8d9' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 352769, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-05 13:54:53 UTC (rev 352770) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.105 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('56df4dab166f58ab0251c17bf2afd0d551b10634ad9779d632a1ffaadcb9ed6703133ebdf4c01933320a1e3b00b9b22d80aaac8d52521ef63037130ed1eeb307' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-07-05 13:54:28 UTC (rev 352769) +++ arch-detect.patch 2018-07-05 13:54:53 UTC (rev 352770) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 352769, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, June 23, 2018 @ 03:19:50 Author: felixonmars Revision: 344656 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 344655, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 344655, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-06-23 03:19:31 UTC (rev 344655) +++ PKGBUILD2018-06-23 03:19:50 UTC (rev 344656) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.102 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('281c7c5d2b429eb0b18bd8832cad80234c15687f2cb2100094413f07ffb60e7809025ffcd73fcfd600c8d6466a9fed7316c5344f785be7976286bcc30e5fa6e6' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 344655, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-06-23 03:19:50 UTC (rev 344656) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.103 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('4bf2e12ba6b620456f8a2b74c84dba0bb026a6151854886c8eb13bd709a3d8c125f8cd17ae22b6e04cad08fcd7e3bf6379199d7193f0394bd46f08ed661da8d9' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-06-23 03:19:31 UTC (rev 344655) +++ arch-detect.patch 2018-06-23 03:19:50 UTC (rev 344656) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 344655, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, June 14, 2018 @ 07:29:02 Author: felixonmars Revision: 343041 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 343040, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 343040, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-06-14 07:28:43 UTC (rev 343040) +++ PKGBUILD2018-06-14 07:29:02 UTC (rev 343041) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.101 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('0b25673a477d8b1000d0622c5891572888dc183dbe75a08adce576b57fa9e340014139ec75c9bf147794b2d100f6523b6ced0ef0731db74fef4f9658e27db937' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 343040, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-06-14 07:29:02 UTC (rev 343041) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.102 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('281c7c5d2b429eb0b18bd8832cad80234c15687f2cb2100094413f07ffb60e7809025ffcd73fcfd600c8d6466a9fed7316c5344f785be7976286bcc30e5fa6e6' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-06-14 07:28:43 UTC (rev 343040) +++ arch-detect.patch 2018-06-14 07:29:02 UTC (rev 343041) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 343040, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Sunday, June 3, 2018 @ 15:23:37 Author: felixonmars Revision: 339266 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 339252, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 339255, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-06-03 15:23:36 UTC (rev 339265) +++ PKGBUILD2018-06-03 15:23:37 UTC (rev 339266) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.100 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('99fcba927c48f8987e0817cfa111d0465f3519447c43000888ea6c715bab8a43e0c10114eff361e3a53c4ed196fe940fa1738266b2f0805b6eba70bac861e80f' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 339252, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-06-03 15:23:37 UTC (rev 339266) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.101 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('0b25673a477d8b1000d0622c5891572888dc183dbe75a08adce576b57fa9e340014139ec75c9bf147794b2d100f6523b6ced0ef0731db74fef4f9658e27db937' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-06-03 15:23:36 UTC (rev 339265) +++ arch-detect.patch 2018-06-03 15:23:37 UTC (rev 339266) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 339255, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, May 22, 2018 @ 17:03:41 Author: felixonmars Revision: 327648 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 327647, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 327647, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-05-22 17:03:17 UTC (rev 327647) +++ PKGBUILD2018-05-22 17:03:41 UTC (rev 327648) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.99 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('011c38e1cf6d402032b8e44253fa278dd39bf19b90390a81be28eae2689dc0a46aefb06084eb75c770c7fdfc864e70e2b1b399c3fe02172ba5d9ef97b4348eb7' - '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 327647, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-05-22 17:03:41 UTC (rev 327648) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.100 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('99fcba927c48f8987e0817cfa111d0465f3519447c43000888ea6c715bab8a43e0c10114eff361e3a53c4ed196fe940fa1738266b2f0805b6eba70bac861e80f' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-05-22 17:03:17 UTC (rev 327647) +++ arch-detect.patch 2018-05-22 17:03:41 UTC (rev 327648) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=$(/usr/bin/udpkg --print-architecture) - elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then - HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 327647, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, May 17, 2018 @ 06:41:06 Author: felixonmars Revision: 323327 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 323326, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 323326, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-05-17 06:40:43 UTC (rev 323326) +++ PKGBUILD2018-05-17 06:41:06 UTC (rev 323327) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.96 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('f0cc0363aa122dfcff0c8b2853a0b1c7aaff052374842554fa7f1904bb9ded6fa0965850bbf3fdbfdefdd21b01dcb5710449d040c6292606f645370b7ced4a23' - '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 323326, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-05-17 06:41:06 UTC (rev 323327) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.99 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('011c38e1cf6d402032b8e44253fa278dd39bf19b90390a81be28eae2689dc0a46aefb06084eb75c770c7fdfc864e70e2b1b399c3fe02172ba5d9ef97b4348eb7' + '56e25f48027f99f7e720859a9e14fe769b1cbd6227c7a7e27e14c2fea88520109342d6e5b127dc34ce8cc40f46941a0c5157ad35cf8ef9b3e4323877a4b32d97') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-05-17 06:40:43 UTC (rev 323326) +++ arch-detect.patch 2018-05-17 06:41:06 UTC (rev 323327) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 323326, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (r
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, April 6, 2018 @ 03:22:54 Author: felixonmars Revision: 314542 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 314541, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 314541, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-04-06 03:22:31 UTC (rev 314541) +++ PKGBUILD2018-04-06 03:22:54 UTC (rev 314542) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.95 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('0ad947f90bdabea2624fa5089eef997c94c6ea3bb3359bb6ca2acb5a705c09ba50a5398b21b2b1c147d1bfa51cecb5e58988e539475969bd674d9e9ea0767ea8' - '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 314541, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-04-06 03:22:54 UTC (rev 314542) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.96 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('f0cc0363aa122dfcff0c8b2853a0b1c7aaff052374842554fa7f1904bb9ded6fa0965850bbf3fdbfdefdd21b01dcb5710449d040c6292606f645370b7ced4a23' + '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-04-06 03:22:31 UTC (rev 314541) +++ arch-detect.patch 2018-04-06 03:22:54 UTC (rev 314542) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 314541, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (re
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Sunday, April 1, 2018 @ 16:37:19 Author: felixonmars Revision: 313747 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 313746, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 313746, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 42 ++--- 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-04-01 16:36:55 UTC (rev 313746) +++ PKGBUILD2018-04-01 16:37:19 UTC (rev 313747) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.93 -pkgrel=2 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('57a6aa5d27b1b600f49db847b238e412a9819c45e4dbc63943bb7c6a738f4d97befc2a9d25575a6d619bdc64e838654fa629573ee5fe95c6bc56758a1b8b' - '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 313746, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-04-01 16:37:19 UTC (rev 313747) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.95 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('0ad947f90bdabea2624fa5089eef997c94c6ea3bb3359bb6ca2acb5a705c09ba50a5398b21b2b1c147d1bfa51cecb5e58988e539475969bd674d9e9ea0767ea8' + '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-04-01 16:36:55 UTC (rev 313746) +++ arch-detect.patch 2018-04-01 16:37:19 UTC (rev 313747) @@ -1,21 +0,0 @@ -diff --git a/debootstrap b/debootstrap -index fcdb20f..184900d 100755 a/debootstrap -+++ b/debootstrap -@@ -427,6 +427,16 @@ elif in_path udpkg && \ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ # pacman 5.1 will have `pacman-conf Architecture` -+ CARCH="$(bash -c '. /etc/makepkg.conf && echo $CARCH')" -+ case "$CARCH" in -+ "i686") HOST_ARCH="i386" ;; -+ "x86_64") HOST_ARCH="amd64" ;; -+ "armv7h") HOST_ARCH="armhf" ;; -+ "aarch64") HOST_ARCH="arm64" ;; -+ *) echo "Unknown architecture: $CARCH" && exit 1 -+ esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 313746, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (re
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Wednesday, February 7, 2018 @ 15:53:03 Author: eschwartz Revision: 290018 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 290017, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 290017, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 39 ++- 2 files changed, 58 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-02-07 15:52:41 UTC (rev 290017) +++ PKGBUILD2018-02-07 15:53:03 UTC (rev 290018) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.93 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('57a6aa5d27b1b600f49db847b238e412a9819c45e4dbc63943bb7c6a738f4d97befc2a9d25575a6d619bdc64e838654fa629573ee5fe95c6bc56758a1b8b' - '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 290017, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-02-07 15:53:03 UTC (rev 290018) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.93 +pkgrel=2 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('57a6aa5d27b1b600f49db847b238e412a9819c45e4dbc63943bb7c6a738f4d97befc2a9d25575a6d619bdc64e838654fa629573ee5fe95c6bc56758a1b8b' + '824109b2ea138d0dd1a31039a165cb4079da856cb11c664fc5a7f49a42de08ff56a620887d3c0914b69140849799f4473b1f27a05cd14cd60ef2a41627f8d5e1') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2018-02-07 15:52:41 UTC (rev 290017) +++ arch-detect.patch 2018-02-07 15:53:03 UTC (rev 290018) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 290017, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2018-02-07 15:53:03 UTC (rev 290018) @@ -0,0 +1,21 @@ +diff --git a/debootstrap b/de
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, December 8, 2017 @ 05:56:44 Author: felixonmars Revision: 273227 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 273226, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 273226, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 36 - 2 files changed, 55 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-12-08 05:56:18 UTC (rev 273226) +++ PKGBUILD2017-12-08 05:56:44 UTC (rev 273227) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.92 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('4b094fecf7fc3808948daea2fde550c719a42bf1ed9af040ea52e7ecff3e3a0803f0af5dd7a4f7a0fe57d2221fb7837310833e5bf36b5efbbf165997965dcc32' - '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 273226, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-12-08 05:56:44 UTC (rev 273227) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.93 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('57a6aa5d27b1b600f49db847b238e412a9819c45e4dbc63943bb7c6a738f4d97befc2a9d25575a6d619bdc64e838654fa629573ee5fe95c6bc56758a1b8b' + '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-12-08 05:56:18 UTC (rev 273226) +++ arch-detect.patch 2017-12-08 05:56:44 UTC (rev 273227) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 273226, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-12-08 05:56:44 UTC (rev 273227) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-2
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, October 27, 2017 @ 17:40:37 Author: felixonmars Revision: 264602 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 264601, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 264601, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 36 - 2 files changed, 55 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-10-27 17:40:11 UTC (rev 264601) +++ PKGBUILD2017-10-27 17:40:37 UTC (rev 264602) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.91 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('038d53a5f1e9c77b03695ee27aed3c5db9c8e09ae6b03a4720f52587677b5c19c62f4396920ca452dc7cd865d7ddf59239c451cf82908497f257b339cc54aa5b' - '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 264601, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-10-27 17:40:37 UTC (rev 264602) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.92 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('4b094fecf7fc3808948daea2fde550c719a42bf1ed9af040ea52e7ecff3e3a0803f0af5dd7a4f7a0fe57d2221fb7837310833e5bf36b5efbbf165997965dcc32' + '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-10-27 17:40:11 UTC (rev 264601) +++ arch-detect.patch 2017-10-27 17:40:37 UTC (rev 264602) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 264601, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-10-27 17:40:37 UTC (rev 264602) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-2
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Wednesday, July 26, 2017 @ 09:26:33 Author: felixonmars Revision: 246422 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 246421, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 246421, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 74 ++-- arch-detect.patch | 36 - 2 files changed, 55 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-07-26 09:26:00 UTC (rev 246421) +++ PKGBUILD2017-07-26 09:26:33 UTC (rev 246422) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.90 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -sha512sums=('b457ed6c20ada6f5bd2810bf3eea4ad168bb5bb0d1418e07c459b5c2a5dff70bdd7d79931eff777676c896e8fede198b78825a9d07fb2ceb96c4442c9b4aa97d' - '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') - -prepare() { - cd debootstrap-$pkgver - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap-$pkgver - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 246421, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-07-26 09:26:33 UTC (rev 246422) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.91 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('038d53a5f1e9c77b03695ee27aed3c5db9c8e09ae6b03a4720f52587677b5c19c62f4396920ca452dc7cd865d7ddf59239c451cf82908497f257b339cc54aa5b' + '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-07-26 09:26:00 UTC (rev 246421) +++ arch-detect.patch 2017-07-26 09:26:33 UTC (rev 246422) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 246421, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-07-26 09:26:33 UTC (rev 246422) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-2
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Monday, April 24, 2017 @ 05:48:29 Author: felixonmars Revision: 224780 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 224779, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 224779, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 75 +--- arch-detect.patch | 36 2 files changed, 55 insertions(+), 56 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-04-24 05:48:11 UTC (rev 224779) +++ PKGBUILD2017-04-24 05:48:29 UTC (rev 224780) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.89 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 224779, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-04-24 05:48:29 UTC (rev 224780) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.90 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +source=("$pkgname-$pkgver.tar.gz::https://github.com/felixonmars/debootstrap/archive/$pkgver.tar.gz"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +sha512sums=('b457ed6c20ada6f5bd2810bf3eea4ad168bb5bb0d1418e07c459b5c2a5dff70bdd7d79931eff777676c896e8fede198b78825a9d07fb2ceb96c4442c9b4aa97d' + '9e4c805b174eeb9ecab13701249c56542c1dc0c371df5f708540d17959f89de80763c4311972abb8f1d4f82b13080f7aa835028c1e5016ee17eebc32c8daa6e7') + +prepare() { + cd debootstrap-$pkgver + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap-$pkgver + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-04-24 05:48:11 UTC (rev 224779) +++ arch-detect.patch 2017-04-24 05:48:29 UTC (rev 224780) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 224779, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-04-24 05:48:29 UTC (rev 224780) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/udpkg --print-architecture` + elif [ -e $DEBOOTSTRAP_DIR/arch ]; then + HOST_ARCH=`cat $DEBOOTSTRAP_DIR/ar
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, March 10, 2017 @ 15:06:19 Author: felixonmars Revision: 215594 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 215593, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 215593, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 76 ++-- arch-detect.patch | 36 2 files changed, 56 insertions(+), 56 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-03-10 15:05:58 UTC (rev 215593) +++ PKGBUILD2017-03-10 15:06:19 UTC (rev 215594) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.88 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 215593, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-03-10 15:06:19 UTC (rev 215594) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.89 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-03-10 15:05:58 UTC (rev 215593) +++ arch-detect.patch 2017-03-10 15:06:19 UTC (rev 215594) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 215593, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-03-10 15:06:19 UTC (rev 215594) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/udpkg --print-architecture` + elif [ -e $DEBOOTSTRAP_DIR/arch ]; then + HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` ++elif in_path pacman; then ++ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" ++case "$CARCH" in ++"i686") HOST_ARCH="i386" ;; ++"x86_64") HOST_ARCH="amd64" ;; ++"armv7h") HOST_ARCH="armhf" ;; ++"aarc
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, February 9, 2017 @ 02:25:26 Author: felixonmars Revision: 211327 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 211326, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 211326, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 76 ++-- arch-detect.patch | 36 2 files changed, 56 insertions(+), 56 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-02-09 02:25:08 UTC (rev 211326) +++ PKGBUILD2017-02-09 02:25:26 UTC (rev 211327) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.87 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 211326, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-02-09 02:25:26 UTC (rev 211327) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.88 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2017-02-09 02:25:08 UTC (rev 211326) +++ arch-detect.patch 2017-02-09 02:25:26 UTC (rev 211327) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 211326, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2017-02-09 02:25:26 UTC (rev 211327) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/udpkg --print-architecture` + elif [ -e $DEBOOTSTRAP_DIR/arch ]; then + HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` ++elif in_path pacman; then ++ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" ++case "$CARCH" in ++"i686") HOST_ARCH="i386" ;; ++"x86_64") HOST_ARCH="amd64" ;; ++"armv7h") HOST_ARCH="armhf" ;; ++"
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Wednesday, November 16, 2016 @ 15:41:01 Author: felixonmars Revision: 196035 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 196034, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 196034, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 76 ++-- arch-detect.patch | 36 2 files changed, 56 insertions(+), 56 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-11-16 15:40:42 UTC (rev 196034) +++ PKGBUILD2016-11-16 15:41:01 UTC (rev 196035) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.86 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 196034, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-11-16 15:41:01 UTC (rev 196035) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.87 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-11-16 15:40:42 UTC (rev 196034) +++ arch-detect.patch 2016-11-16 15:41:01 UTC (rev 196035) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 196034, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2016-11-16 15:41:01 UTC (rev 196035) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/udpkg --print-architecture` + elif [ -e $DEBOOTSTRAP_DIR/arch ]; then + HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` ++elif in_path pacman; then ++ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" ++case "$CARCH" in ++"i686") HOST_ARCH="i386" ;; ++"x86_64") HOST_ARCH="amd64" ;; ++"armv7h") HOST_ARCH="armhf" ;; ++
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Monday, October 31, 2016 @ 02:31:56 Author: felixonmars Revision: 194120 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 194119, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 194119, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 76 ++-- arch-detect.patch | 36 2 files changed, 56 insertions(+), 56 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-10-31 02:31:40 UTC (rev 194119) +++ PKGBUILD2016-10-31 02:31:56 UTC (rev 194120) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.85 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 194119, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-10-31 02:31:56 UTC (rev 194120) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.86 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-10-31 02:31:40 UTC (rev 194119) +++ arch-detect.patch 2016-10-31 02:31:56 UTC (rev 194120) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 194119, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2016-10-31 02:31:56 UTC (rev 194120) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/udpkg --print-architecture` + elif [ -e $DEBOOTSTRAP_DIR/arch ]; then + HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` ++elif in_path pacman; then ++ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" ++case "$CARCH" in ++"i686") HOST_ARCH="i386" ;; ++"x86_64") HOST_ARCH="amd64" ;; ++"armv7h") HOST_ARCH="armhf" ;; ++"aa
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, October 22, 2016 @ 02:08:58 Author: felixonmars Revision: 192894 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 192893, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 192893, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 88 ++-- arch-detect.patch | 36 ++--- 2 files changed, 56 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-10-22 02:08:40 UTC (rev 192893) +++ PKGBUILD2016-10-22 02:08:58 UTC (rev 192894) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.84 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - 'af21c8c6e073dbedcd472d876f5a50c2') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 192893, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-10-22 02:08:58 UTC (rev 192894) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.85 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-10-22 02:08:40 UTC (rev 192893) +++ arch-detect.patch 2016-10-22 02:08:58 UTC (rev 192894) @@ -1,18 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,15 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+"aarch64") HOST_ARCH="arm64" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 192893, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch (rev 0) +++ arch-detect.patch 2016-10-22 02:08:58 UTC (rev 192894) @@ -0,0 +1,18 @@ +--- a/debootstrap 2016-03-22 21:13:58.0 +0800 b/debootstrap 2016-03-22 21:13:09.573621800 +0800 +@@ -419,6 +419,15 @@ + HOST_ARCH=`/usr/bin/u
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Thursday, October 6, 2016 @ 07:38:49 Author: felixonmars Revision: 191455 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 191454, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 191454, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 35 +- 2 files changed, 68 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-10-06 07:38:31 UTC (rev 191454) +++ PKGBUILD2016-10-06 07:38:49 UTC (rev 191455) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.83 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 191454, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-10-06 07:38:49 UTC (rev 191455) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.84 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + 'af21c8c6e073dbedcd472d876f5a50c2') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-10-06 07:38:31 UTC (rev 191454) +++ arch-detect.patch 2016-10-06 07:38:49 UTC (rev 191455) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 191454, debootstrap/trunk/arch-detect.patch) ===
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, September 13, 2016 @ 14:55:28 Author: felixonmars Revision: 189265 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 189264, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 189264, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 34 - 2 files changed, 67 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-09-13 14:55:02 UTC (rev 189264) +++ PKGBUILD2016-09-13 14:55:28 UTC (rev 189265) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.82 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 189264, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-09-13 14:55:28 UTC (rev 189265) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.83 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + '60043aaeb9afc1c2d7d2a2d9888eca35') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-09-13 14:55:02 UTC (rev 189264) +++ arch-detect.patch 2016-09-13 14:55:28 UTC (rev 189265) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 189264, debootstrap/trunk/arch-detect.patch) ==
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Friday, September 9, 2016 @ 06:42:49 Author: felixonmars Revision: 189042 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 189041, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 189041, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 34 - 2 files changed, 67 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-09-09 06:42:30 UTC (rev 189041) +++ PKGBUILD2016-09-09 06:42:49 UTC (rev 189042) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.81 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 189041, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-09-09 06:42:49 UTC (rev 189042) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.82 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + '60043aaeb9afc1c2d7d2a2d9888eca35') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-09-09 06:42:30 UTC (rev 189041) +++ arch-detect.patch 2016-09-09 06:42:49 UTC (rev 189042) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 189041, debootstrap/trunk/arch-detect.patch)
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, May 3, 2016 @ 18:05:38 Author: fyan Revision: 173573 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 173572, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 173572, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 34 - 2 files changed, 67 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-05-03 16:05:05 UTC (rev 173572) +++ PKGBUILD2016-05-03 16:05:38 UTC (rev 173573) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.80 -pkgrel=2 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget' 'binutils') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 173572, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-05-03 16:05:38 UTC (rev 173573) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.81 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + '60043aaeb9afc1c2d7d2a2d9888eca35') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-05-03 16:05:05 UTC (rev 173572) +++ arch-detect.patch 2016-05-03 16:05:38 UTC (rev 173573) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 173572, debootstrap/trunk/arch-detect.patch) === --- arch
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Tuesday, March 29, 2016 @ 17:30:04 Author: fyan Revision: 168793 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 168785, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 168785, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 34 - 2 files changed, 67 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-03-29 15:30:03 UTC (rev 168792) +++ PKGBUILD2016-03-29 15:30:04 UTC (rev 168793) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.80 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 168785, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-03-29 15:30:04 UTC (rev 168793) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.80 +pkgrel=2 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget' 'binutils') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + '60043aaeb9afc1c2d7d2a2d9888eca35') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-03-29 15:30:03 UTC (rev 168792) +++ arch-detect.patch 2016-03-29 15:30:04 UTC (rev 168793) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 168785, debootstrap/trunk/arch-detect.patch) === --- arch-detect.
[arch-commits] Commit in debootstrap/repos/community-any (4 files)
Date: Saturday, March 26, 2016 @ 17:16:40 Author: fyan Revision: 168493 archrelease: copy trunk to community-any Added: debootstrap/repos/community-any/PKGBUILD (from rev 168492, debootstrap/trunk/PKGBUILD) debootstrap/repos/community-any/arch-detect.patch (from rev 168492, debootstrap/trunk/arch-detect.patch) Deleted: debootstrap/repos/community-any/PKGBUILD debootstrap/repos/community-any/arch-detect.patch ---+ PKGBUILD | 100 ++-- arch-detect.patch | 34 - 2 files changed, 67 insertions(+), 67 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2016-03-26 16:16:17 UTC (rev 168492) +++ PKGBUILD2016-03-26 16:16:40 UTC (rev 168493) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=debootstrap -pkgver=1.0.79 -pkgrel=1 -pkgdesc="Bootstrap a basic Debian system" -arch=('any') -license=('GPL') -url="https://tracker.debian.org/pkg/debootstrap"; -depends=('wget') -makedepends=('git' 'makedev') -source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; -arch-detect.patch) -optdepends=('gnupg: check release signatures' -'debian-archive-keyring: check release signatures for Debian' -'ubuntu-keyring: check release signatures for Ubuntu') -md5sums=('SKIP' - '60043aaeb9afc1c2d7d2a2d9888eca35') - -prepare() { - cd debootstrap - - sed -i 's/sbin/bin/g' Makefile - - # Debian defaults - sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap - - # Detect Architecture - patch -p1 -i ../arch-detect.patch - - # Workaround permission errors - # MAKEDEV is not happy with the instructions here - sed -e 's/install -o root -g root/install/' \ - -e '/chown 0:0 dev/d' \ - -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ - -i Makefile -} - -build() { - cd debootstrap - fakeroot make -} - -package() { - cd debootstrap - make DESTDIR="$pkgdir" install - - install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 -} Copied: debootstrap/repos/community-any/PKGBUILD (from rev 168492, debootstrap/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2016-03-26 16:16:40 UTC (rev 168493) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=debootstrap +pkgver=1.0.80 +pkgrel=1 +pkgdesc="Bootstrap a basic Debian system" +arch=('any') +license=('GPL') +url="https://tracker.debian.org/pkg/debootstrap"; +depends=('wget') +makedepends=('git' 'makedev') +source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"; +arch-detect.patch) +optdepends=('gnupg: check release signatures' +'debian-archive-keyring: check release signatures for Debian' +'ubuntu-keyring: check release signatures for Ubuntu') +md5sums=('SKIP' + '60043aaeb9afc1c2d7d2a2d9888eca35') + +prepare() { + cd debootstrap + + sed -i 's/sbin/bin/g' Makefile + + # Debian defaults + sed -i 's|export PATH|export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"|' debootstrap + + # Detect Architecture + patch -p1 -i ../arch-detect.patch + + # Workaround permission errors + # MAKEDEV is not happy with the instructions here + sed -e 's/install -o root -g root/install/' \ + -e '/chown 0:0 dev/d' \ + -e 's/(cd dev && $(MAKEDEV) std ptmx fd consoleonly)/$(MAKEDEV) -d dev std ptmx fd consoleonly/' \ + -i Makefile +} + +build() { + cd debootstrap + fakeroot make +} + +package() { + cd debootstrap + make DESTDIR="$pkgdir" install + + install -Dm644 debootstrap.8 "$pkgdir"/usr/share/man/man8/debootstrap.8 +} Deleted: arch-detect.patch === --- arch-detect.patch 2016-03-26 16:16:17 UTC (rev 168492) +++ arch-detect.patch 2016-03-26 16:16:40 UTC (rev 168493) @@ -1,17 +0,0 @@ a/debootstrap 2016-03-22 21:13:58.0 +0800 -+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800 -@@ -419,6 +419,14 @@ - HOST_ARCH=`/usr/bin/udpkg --print-architecture` - elif [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` -+elif in_path pacman; then -+ CARCH="$(. /etc/makepkg.conf && echo $CARCH)" -+case "$CARCH" in -+"i686") HOST_ARCH="i386" ;; -+"x86_64") HOST_ARCH="amd64" ;; -+"armv7h") HOST_ARCH="armhf" ;; -+*) echo "Unknown architecture: $CARCH" && exit 1 -+esac - fi - HOST_OS="$HOST_ARCH" - # basic host OS guessing for non-Debian systems Copied: debootstrap/repos/community-any/arch-detect.patch (from rev 168492, debootstrap/trunk/arch-detect.patch) === --- arch-detect.patch