summaryrefslogtreecommitdiff
path: root/libre/debootstrap
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-06 23:40:07 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-07 10:03:03 -0300
commit4719fbbaa5476271bc454d175d7a7c8bf20182e7 (patch)
tree24a4166096f5174110acb91859b1bca73151e606 /libre/debootstrap
parente680c227751975ed87137b692d593b40544a2119 (diff)
debootstrap-1.0.84-1.parabola1: updating version
Diffstat (limited to 'libre/debootstrap')
-rw-r--r--libre/debootstrap/PKGBUILD6
-rw-r--r--libre/debootstrap/arch-detect.patch3
2 files changed, 5 insertions, 4 deletions
diff --git a/libre/debootstrap/PKGBUILD b/libre/debootstrap/PKGBUILD
index 1d99ecfc6..dfe7a6a28 100644
--- a/libre/debootstrap/PKGBUILD
+++ b/libre/debootstrap/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 189264 2016-09-13 14:55:02Z felixonmars $
+# $Id: PKGBUILD 191454 2016-10-06 07:38:31Z felixonmars $
# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=debootstrap
-pkgver=1.0.83
+pkgver=1.0.84
pkgrel=1.parabola1
pkgdesc="Bootstrap a basic gNewSense and Trisquel system, without Debian support"
arch=('any')
@@ -20,7 +20,7 @@ source=("git+https://anonscm.debian.org/git/d-i/debootstrap.git#tag=$pkgver"
trisquel)
optdepends=('gnupg: check release signatures')
md5sums=('SKIP'
- '60043aaeb9afc1c2d7d2a2d9888eca35'
+ 'af21c8c6e073dbedcd472d876f5a50c2'
'654761198068b51b027d47cba4b7cfa2'
'13978bdd1d877a0dd2c3c874ecd54f03'
'b020aa8426e70a6024c8e76312c17d78')
diff --git a/libre/debootstrap/arch-detect.patch b/libre/debootstrap/arch-detect.patch
index 8d2030ae6..20e5ff682 100644
--- a/libre/debootstrap/arch-detect.patch
+++ b/libre/debootstrap/arch-detect.patch
@@ -1,6 +1,6 @@
--- a/debootstrap 2016-03-22 21:13:58.000000000 +0800
+++ b/debootstrap 2016-03-22 21:13:09.573621800 +0800
-@@ -419,6 +419,14 @@
+@@ -419,6 +419,15 @@
HOST_ARCH=`/usr/bin/udpkg --print-architecture`
elif [ -e $DEBOOTSTRAP_DIR/arch ]; then
HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch`
@@ -10,6 +10,7 @@
+ "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