From ba5566c4a1857a34981a38112f43ccbf2ff8aecc Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Fri, 24 Jun 2011 11:37:39 +0200 Subject: [PATCH] * get-build-deps: - fix a wrong parser when some build-dep have an epoch --- debian/changelog | 6 ++++-- get-build-deps | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index ccd5386..6b81def 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -ubuntu-dev-tools (0.125) UNRELEASED; urgency=low +ubuntu-dev-tools (0.125ubuntu1) UNRELEASED; urgency=low [ Benjamin Drung ] * backportpackage: Use --force-bad-version instead of --allow-lower-version @@ -21,6 +21,8 @@ ubuntu-dev-tools (0.125) UNRELEASED; urgency=low [ Didier Roche ] * lp-project-upload: - fix a bug when new milestone wasn't specified (LP: #797170) + * get-build-deps: + - fix a wrong parser when some build-dep have an epoch [ Brian Murray ] * grab-attachments, doc/grab-attachments.1: @@ -28,7 +30,7 @@ ubuntu-dev-tools (0.125) UNRELEASED; urgency=low - add in download attachments from all bugs about a package - document new options in the manpage - -- Brian Murray Thu, 16 Jun 2011 11:59:18 -0700 + -- Didier Roche Fri, 24 Jun 2011 11:34:54 +0200 ubuntu-dev-tools (0.124) unstable; urgency=low diff --git a/get-build-deps b/get-build-deps index 1fc24e4..a77f1fa 100755 --- a/get-build-deps +++ b/get-build-deps @@ -64,7 +64,7 @@ to use this script." sudo /usr/lib/pbuilder/pbuilder-satisfydepends else echo "Warning: «pbuilder» isn\'t installed, falling back to «dpkg-checkbuilddeps»." - sudo aptitude install $(echo $missing_dependencies | awk -F: '{ print $3 }' | sed 's/([^)]*)//g' | sed 's/|\s[^\s]*//g') + sudo aptitude install $(echo $missing_dependencies | awk -F': ' '{ print $3 }' | sed 's/([^)]*)//g' | sed 's/|\s[^\s]*//g') #' <--- Fix to avoid Geanys markup breaking fi exit 0