Hello community, here is the log from the commit of package debootstrap for openSUSE:Factory checked in at 2015-08-05 19:14:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/debootstrap (Old) and /work/SRC/openSUSE:Factory/.debootstrap.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "debootstrap" Changes: -------- --- /work/SRC/openSUSE:Factory/debootstrap/debootstrap.changes 2015-06-15 17:49:48.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.debootstrap.new/debootstrap.changes 2015-08-05 19:14:52.000000000 +0200 @@ -1,0 +2,10 @@ +Wed Aug 5 05:22:32 UTC 2015 - [email protected] + +- Update to 1.0.72 (changes since 1.0.70): + * Adjust sed call to render it more portable (missing ';'), + making it work with FreeBSD sed. + * Add (Ubuntu) wily as a symlink to gutsy. + * Fix resolve_deps and setup_available to work in the --foreign + case. + +------------------------------------------------------------------- Old: ---- debootstrap_1.0.70.tar.gz New: ---- debootstrap_1.0.72.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ debootstrap.spec ++++++ --- /var/tmp/diff_new_pack.M80vk7/_old 2015-08-05 19:14:53.000000000 +0200 +++ /var/tmp/diff_new_pack.M80vk7/_new 2015-08-05 19:14:53.000000000 +0200 @@ -18,13 +18,13 @@ Name: debootstrap -Version: 1.0.70 +Version: 1.0.72 Release: 0 Summary: Bootstrap a basic Debian system License: MIT Group: Development/Tools/Other Url: https://packages.debian.org/debootstrap -Source0: http://http.debian.net/debian/pool/main/d/%{name}/%{name}_%{version}.tar.gz +Source0: http://httpredir.debian.org/debian/pool/main/d/%{name}/%{name}_%{version}.tar.gz Source1: devices.tar.gz Patch0: %{name}-norootforbuild.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ debootstrap_1.0.70.tar.gz -> debootstrap_1.0.72.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/debootstrap-1.0.70/Makefile new/debootstrap-1.0.72/Makefile --- old/debootstrap-1.0.70/Makefile 2015-05-19 11:35:39.000000000 +0200 +++ new/debootstrap-1.0.72/Makefile 2015-07-28 14:41:37.000000000 +0200 @@ -1,6 +1,6 @@ # avoid dpkg-dev dependency; fish out the version with sed VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog) -DATE := $(shell sed -n '/^ -- /{s/.*> \(.*\)/\1/p;q}' debian/changelog) +DATE := $(shell sed -n '/^ -- /{s/.*> \(.*\)/\1/p;q;}' debian/changelog) MAKEDEV ?= /sbin/MAKEDEV diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/debootstrap-1.0.70/debian/changelog new/debootstrap-1.0.72/debian/changelog --- old/debootstrap-1.0.70/debian/changelog 2015-05-19 11:38:28.000000000 +0200 +++ new/debootstrap-1.0.72/debian/changelog 2015-07-28 15:32:20.000000000 +0200 @@ -1,3 +1,22 @@ +debootstrap (1.0.72) unstable; urgency=medium + + [ Iain Lane ] + * Add (Ubuntu) wily as a symlink to gutsy (closes: #787117). + + [ Colin Watson ] + * Fix resolve_deps and setup_available to work in the --foreign case + (closes: #757819, LP: #1450980). + + -- Colin Watson <[email protected]> Tue, 28 Jul 2015 14:32:19 +0100 + +debootstrap (1.0.71) unstable; urgency=medium + + * Adjust sed call to render it more portable (missing ';'), making it + work with FreeBSD sed. Thanks to Nikolai Lifanov for the report and + the patch (Closes: #791802). + + -- Cyril Brulebois <[email protected]> Fri, 10 Jul 2015 01:29:52 +0200 + debootstrap (1.0.70) unstable; urgency=medium * Use tr instead of (missing in d-i) xargs (Closes: #785693). Thanks, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/debootstrap-1.0.70/functions new/debootstrap-1.0.72/functions --- old/debootstrap-1.0.70/functions 2015-05-19 11:35:50.000000000 +0200 +++ new/debootstrap-1.0.72/functions 2015-07-28 15:17:18.000000000 +0200 @@ -1255,14 +1255,14 @@ local ALLPKGS2=""; while [ "$PKGS" != "" ]; do local NEWPKGS="" - for c in $COMPONENTS; do + for c in ${COMPONENTS:-$USE_COMPONENTS}; do local path="dists/$SUITE/$c/binary-$ARCH/Packages" local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")" NEWPKGS="$NEWPKGS $("$PKGDETAILS" GETDEPS "$pkgdest" $PKGS)" done PKGS=$(echo "$PKGS $NEWPKGS" | tr ' ' '\n' | sort | uniq) local REALPKGS="" - for c in $COMPONENTS; do + for c in ${COMPONENTS:-$USE_COMPONENTS}; do local path="dists/$SUITE/$c/binary-$ARCH/Packages" local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")" REALPKGS="$REALPKGS $("$PKGDETAILS" PKGS REAL "$pkgdest" $PKGS | sed -n 's/ .*REAL.*$//p')" @@ -1278,7 +1278,7 @@ setup_available () { local m1="${MIRRORS%% *}" - for c in $COMPONENTS; do + for c in ${COMPONENTS:-$USE_COMPONENTS}; do local path="dists/$SUITE/$c/binary-$ARCH/Packages" local pkgdest="$TARGET/$($DLDEST pkg "$SUITE" "$c" "$ARCH" "$m1" "$path")" # XXX: What if a package is in more than one component? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/debootstrap-1.0.70/scripts/wily new/debootstrap-1.0.72/scripts/wily --- old/debootstrap-1.0.70/scripts/wily 1970-01-01 01:00:00.000000000 +0100 +++ new/debootstrap-1.0.72/scripts/wily 2015-08-05 19:14:53.000000000 +0200 @@ -0,0 +1 @@ +symbolic link to gutsy
