[Piuparts-commits] rev 825 - in trunk: . debian

Holger Levsen holger at alioth.debian.org
Sat Nov 27 23:19:01 UTC 2010


Author: holger
Date: 2010-11-27 23:19:01 +0000 (Sat, 27 Nov 2010)
New Revision: 825

Modified:
   trunk/debian/changelog
   trunk/piuparts.py
Log:
do not call apt-get with --no-remove when installing packages. 
(Closes: #603453)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2010-11-27 22:44:43 UTC (rev 824)
+++ trunk/debian/changelog	2010-11-27 23:19:01 UTC (rev 825)
@@ -62,6 +62,8 @@
       hardcoded list. :-(
     - set environment variable PIUPARTS_OBJECTS in custom scripts to a space
       seperated list of packages / changes files being tested.
+    - do not call apt-get with --no-remove when installing packages. 
+      (Closes: #603453)
   * Add ${misc:Depends} to Depends in debian/control. 
   * Remove versioned dependencies on debhelper, dpkg-dev and debootstrap as
     the versions available in Etch are sufficient.

Modified: trunk/piuparts.py
===================================================================
--- trunk/piuparts.py	2010-11-27 22:44:43 UTC (rev 824)
+++ trunk/piuparts.py	2010-11-27 23:19:01 UTC (rev 825)
@@ -799,12 +799,12 @@
                 self.run(["dpkg", "-i"] + tmp_files, ignore_errors=True)
                 self.list_installed_files (pre_info, self.save_meta_data())
 
-                self.run(["apt-get", "-yf", "--no-remove", "install"])
+                self.run(["apt-get", "-yf", "install"])
                 self.list_installed_files (pre_info, self.save_meta_data())
 
             else:
                 self.run(["dpkg", "-i"] + tmp_files, ignore_errors=True)
-                self.run(["apt-get", "-yf", "--no-remove", "install"])
+                self.run(["apt-get", "-yf", "install"])
 
             logging.info ("Installation of %s ok", tmp_files)
 




More information about the Piuparts-commits mailing list