Hello community,

here is the log from the commit of package debootstrap for openSUSE:Factory 
checked in at 2013-05-27 09:45:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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  2013-05-06 
09:51:15.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.debootstrap.new/debootstrap.changes     
2013-05-27 09:45:26.000000000 +0200
@@ -1,0 +2,16 @@
+Sat May 18 04:47:14 UTC 2013 - frank.lichtenh...@sophos.com
+
+- update to 1.0.51
+* Add (Ubuntu) saucy as a symlink to gutsy (deb#706989).
+* Clarify location of pkgdetails.c in error message (deb#708771).
+* Resolve mount point symlinks relative to the target chroot before
+  unmounting them (deb#702861, deb#703037, deb#704744).
+
+-------------------------------------------------------------------
+Fri May 17 20:58:30 UTC 2013 - frank.lichtenh...@sophos.com
+
+- update to 1.0.50
+* Report package version information on package retrieve and validation.
+  deb#697675
+
+-------------------------------------------------------------------

Old:
----
  debootstrap_1.0.49.tar.gz

New:
----
  debootstrap_1.0.51.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ debootstrap.spec ++++++
--- /var/tmp/diff_new_pack.G21agI/_old  2013-05-27 09:45:27.000000000 +0200
+++ /var/tmp/diff_new_pack.G21agI/_new  2013-05-27 09:45:27.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           debootstrap
-Version:        1.0.49
+Version:        1.0.51
 Release:        0
 Summary:        Bootstrap a basic Debian system
 License:        MIT
@@ -42,7 +42,7 @@
     Anthony Towns
 
 %prep
-%setup -n %{name}
+%setup
 %patch0 -p1
 
 %build

++++++ debootstrap_1.0.49.tar.gz -> debootstrap_1.0.51.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debootstrap/debian/changelog 
new/debootstrap-1.0.51/debian/changelog
--- old/debootstrap/debian/changelog    2013-05-05 05:38:31.000000000 +0200
+++ new/debootstrap-1.0.51/debian/changelog     2013-05-19 00:18:10.000000000 
+0200
@@ -1,3 +1,23 @@
+debootstrap (1.0.51) unstable; urgency=low
+
+  [ Scott Kitterman ]
+  * Add (Ubuntu) saucy as a symlink to gutsy (closes: #706989).
+
+  [ Colin Watson ]
+  * Clarify location of pkgdetails.c in error message (closes: #708771).
+  * Resolve mount point symlinks relative to the target chroot before
+    unmounting them (closes: #702861, #703037, #704744).
+
+ -- Colin Watson <cjwat...@debian.org>  Sat, 18 May 2013 23:18:08 +0100
+
+debootstrap (1.0.50) unstable; urgency=low
+
+  [ Hector Oron ]
+  * Report package version information on package retrieve and validation.
+    Closes: #697675
+
+ -- Christian Perrier <bubu...@debian.org>  Fri, 17 May 2013 13:34:34 +0200
+
 debootstrap (1.0.49) unstable; urgency=medium
 
   * Add support for jessie. Closes: #706788
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debootstrap/debootstrap 
new/debootstrap-1.0.51/debootstrap
--- old/debootstrap/debootstrap 2012-11-22 00:19:40.000000000 +0100
+++ new/debootstrap-1.0.51/debootstrap  2013-05-18 23:39:44.000000000 +0200
@@ -122,7 +122,7 @@
 ###########################################################################
 
 if [ -z "$PKGDETAILS" ]; then
-       error 1 NO_PKGDETAILS "No pkgdetails available; either install perl, or 
build pkgdetails.c from source"
+       error 1 NO_PKGDETAILS "No pkgdetails available; either install perl, or 
build pkgdetails.c from the base-installer source package"
 fi
 
 ###########################################################################
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debootstrap/functions 
new/debootstrap-1.0.51/functions
--- old/debootstrap/functions   2013-03-28 18:34:00.000000000 +0100
+++ new/debootstrap-1.0.51/functions    2013-05-19 00:13:36.000000000 +0200
@@ -276,8 +276,10 @@
        # args: from dest 'nocache'
        # args: from dest [checksum size] [alt {checksum size type}]
        local displayname
+       local versionname
        if [ "${2%.deb}" != "$2" ]; then
                displayname="$(echo "$2" | sed 's,^.*/,,;s,_.*$,,')"
+               versionname="$(echo "$2" | sed 's,^.*/,,' | cut -d_ -f2)"
        else
                displayname="$(echo "$1" | sed 's,^.*/,,')"
        fi
@@ -288,7 +290,7 @@
                elif [ "$3" = nocache ]; then
                        rm -f "$2"
                else
-                       info VALIDATING "Validating %s" "$displayname"
+                       info VALIDATING "Validating %s %s" "$displayname" 
"$versionname"
                        if verify_checksum "$2" "$3" "$4"; then
                                return 0
                        else
@@ -332,10 +334,10 @@
                fi
 
                while [ "$iters" -lt 10 ]; do
-                       info RETRIEVING "Retrieving %s" "$displayname"
+                       info RETRIEVING "Retrieving %s %s" "$displayname" 
"$versionname"
                        if ! just_get "$from" "$dest2"; then continue 2; fi
                        if [ "$checksum" != "" ]; then
-                               info VALIDATING "Validating %s" "$displayname"
+                               info VALIDATING "Validating %s %s" 
"$displayname" "$versionname"
                                if verify_checksum "$dest2" "$checksum" "$siz"; 
then
                                        checksum=""
                                fi
@@ -953,8 +955,11 @@
 UMOUNT_DIRS=
 
 umount_exit_function () {
+       local realdir
        for dir in $UMOUNT_DIRS; do
-               ( cd / ; umount "$TARGET/${dir#/}" ) || true
+               realdir="$(in_target_nofail readlink -f "$dir")"
+               [ "$realdir" ] || continue
+               ( cd / ; umount "$TARGET/${realdir#/}" ) || true
        done
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/debootstrap/scripts/saucy 
new/debootstrap-1.0.51/scripts/saucy
--- old/debootstrap/scripts/saucy       1970-01-01 01:00:00.000000000 +0100
+++ new/debootstrap-1.0.51/scripts/saucy        2013-05-27 09:45:27.000000000 
+0200
@@ -0,0 +1 @@
+symbolic link to gutsy

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to