diff options
author | dancer <dancer> | 2003-04-20 03:40:36 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-04-20 03:40:36 +0000 |
commit | b7fb540b7c6a76122b73811245e44769ca18456f (patch) | |
tree | 9f2932ceaecfc6fa4914341f3ab3f727d9b16848 | |
parent | 02da63c07d28886028c7ba7faa02f1530ac6401c (diff) | |
download | pbuilder-b7fb540b7c6a76122b73811245e44769ca18456f.tar pbuilder-b7fb540b7c6a76122b73811245e44769ca18456f.tar.gz |
pbuilder update fix
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | pbuilder-satisfydepends | 4 |
3 files changed, 16 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2003-04-20 Junichi Uekawa <dancer@debian.org> + + * pbuilder-satisfydepends: use Source: rather than Format. + Format does not exist on very old .dsc files. + 189691 Daniel Schepler + 2003-04-19 Junichi Uekawa <dancer@debian.org> * pbuilder: update copyright date. diff --git a/debian/changelog b/debian/changelog index 7ae9373..f02a745 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pbuilder (0.74) UNRELEASED; urgency=low + + * Support very old .dsc files which do not have Format: lines + (closes: #189691) + thanks Daniel Schepler + + -- Junichi Uekawa <dancer@debian.org> Sun, 20 Apr 2003 11:48:04 +0900 + pbuilder (0.73) unstable; urgency=low * versioned dependency on rootstrap 0.3.9-1 which handles newer diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends index 18e4cc1..e78a0ed 100644 --- a/pbuilder-satisfydepends +++ b/pbuilder-satisfydepends @@ -77,7 +77,7 @@ function checkbuilddep_internal () { awk ' BEGIN{source=1} /^$/ {source=0} -/^Format:/ {source=1} +/^Source:/ {source=1} /^[^ ]*:/ {p=0} tolower($0) ~ /^'"${BD_REGEXP}"':/ {p=1} {if(p && source) {print $0}}' | \ @@ -162,7 +162,7 @@ tolower($0) ~ /^'"${BD_REGEXP}"':/ {p=1} for INSTALLPKG in $(cat "${DEBIAN_CONTROL}" | \ awk 'BEGIN{source=1} /^$/ {source=0} -/^Format:/ {source=1} +/^Source:/ {source=1} /^[^ ]*:/{p=0} tolower($0) ~ /^'"${BC_REGEXP}"':/ {p=1} {if(p && source) {print $0}}' | \ |