debootstrap: update to 1.0.88.
This commit is contained in:
parent
540184c867
commit
10d46c6709
2 changed files with 6 additions and 4 deletions
|
@ -20,15 +20,17 @@
|
||||||
while (<STDIN>) {
|
while (<STDIN>) {
|
||||||
chomp;
|
chomp;
|
||||||
if (/^Package: (.*)$/) {
|
if (/^Package: (.*)$/) {
|
||||||
@@ -1187,9 +1189,13 @@
|
@@ -1187,10 +1189,14 @@
|
||||||
$in = 0 if (/^$/);
|
$in = 0 if (/^$/);
|
||||||
if ($in and (/^Depends: (.*)$/ or /^Pre-Depends: (.*)$/)) {
|
if ($in and (/^Depends: (.*)$/ or /^Pre-Depends: (.*)$/)) {
|
||||||
for $d (split /\s*,\s*/, $1) {
|
for $d (split /\s*,\s*/, $1) {
|
||||||
- $d =~ s/\s*[|].*$//;
|
- $d =~ s/\s*[|].*$//;
|
||||||
- $d =~ s/\s*[(].*[)]\s*//;
|
- $d =~ s/\s*[(].*[)]\s*//;
|
||||||
|
- $d =~ s/:.*//;
|
||||||
- push @d, $d;
|
- push @d, $d;
|
||||||
+ for $p (split /\s*\|\s*/, $d) {
|
+ for $p (split /\s*\|\s*/, $d) {
|
||||||
+ $p =~ s/\s*[(].*[)]\s*//;
|
+ $p =~ s/\s*[(].*[)]\s*//;
|
||||||
|
+ $p =~ s/:.*//;
|
||||||
+ if (!$exclude{$p}) {
|
+ if (!$exclude{$p}) {
|
||||||
+ push @d, $p;
|
+ push @d, $p;
|
||||||
+ last;
|
+ last;
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
# Template file for 'debootstrap'
|
# Template file for 'debootstrap'
|
||||||
pkgname=debootstrap
|
pkgname=debootstrap
|
||||||
version=1.0.87
|
version=1.0.88
|
||||||
revision=1
|
revision=1
|
||||||
build_style=fetch
|
build_style=fetch
|
||||||
depends="binutils bzip2 gnupg gzip tar wget xz"
|
depends="binutils bzip2 gnupg gzip tar wget xz"
|
||||||
short_desc="Bootstrap a basic Debian system"
|
short_desc="Bootstrap a basic Debian system"
|
||||||
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||||||
license="custom"
|
license="custom"
|
||||||
homepage="http://packages.qa.debian.org/d/debootstrap.html"
|
homepage="http://packages.qa.debian.org/d/debootstrap.html"
|
||||||
distfiles="${DEBIAN_SITE}/main/d/${pkgname}/${pkgname}_${version}_all.deb
|
distfiles="${DEBIAN_SITE}/main/d/${pkgname}/${pkgname}_${version}_all.deb
|
||||||
${DEBIAN_SITE}/main/d/debian-archive-keyring/debian-archive-keyring_2014.3_all.deb"
|
${DEBIAN_SITE}/main/d/debian-archive-keyring/debian-archive-keyring_2014.3_all.deb"
|
||||||
checksum="a5f2d34a8f7bd28bb983024409a08f78725be8cddaef9af4734993e78df3b1fb
|
checksum="4549c01f84a720bc01a31d89f7dd747ae3156de004fed3a6507af348458c1238
|
||||||
017a2fba215cd64612891f5aa02546be5c0e30923a66672f889867cc6dd8d3a0"
|
017a2fba215cd64612891f5aa02546be5c0e30923a66672f889867cc6dd8d3a0"
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
|
|
Loading…
Reference in a new issue