[Pypt-offline-general] SF.net SVN: pypt-offline: [140] trunk
Status: Beta
Brought to you by:
riteshsarraf
|
From: <rit...@us...> - 2007-05-08 13:27:27
|
Revision: 140
http://svn.sourceforge.net/pypt-offline/?rev=140&view=rev
Author: riteshsarraf
Date: 2007-05-08 06:27:28 -0700 (Tue, 08 May 2007)
Log Message:
-----------
* Added the option for bug fetching
* Minor cosmetic changes
Modified Paths:
--------------
trunk/LICENSE
trunk/pypt_core.py
Modified: trunk/LICENSE
===================================================================
--- trunk/LICENSE 2007-05-04 14:47:18 UTC (rev 139)
+++ trunk/LICENSE 2007-05-08 13:27:28 UTC (rev 140)
@@ -1,4 +1,4 @@
-Copyright (C) 2005, 2006 by Ritesh Raj Sarraf <rr...@re...>
+Copyright (C) 2005 - 2007 Ritesh Raj Sarraf - RESEARCHUT
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Modified: trunk/pypt_core.py
===================================================================
--- trunk/pypt_core.py 2007-05-04 14:47:18 UTC (rev 139)
+++ trunk/pypt_core.py 2007-05-08 13:27:28 UTC (rev 140)
@@ -28,7 +28,7 @@
'''This is the core module. It does the main job of downloading packages/update packages,\nfiguring out if the packages are in the local cache, handling exceptions and many more stuff'''
-version = "0.6.4"
+version = "0.7.0"
copyright = "(C) 2005 - 2007 Ritesh Raj Sarraf - RESEARCHUT (http://www.researchut.com/)"
errlist = []
@@ -777,6 +777,7 @@
# Print the failed files
if len(errlist) == 0:
+ log.msg("\nAll files have been downloaded.\n")
pass # Don't print if nothing failed.
else:
log.err("\n\nThe following files failed to be downloaded.\n")
@@ -914,6 +915,8 @@
parser.add_option("", "--install-upgrade", dest="install_upgrade",
help="Install the fetched packages to the NONET machine and _upgrade_ the packages on the NONET machine. This command must be executed on the NONET machine",
action="store", type="string", metavar="pypt-offline-upgrade.zip")
+ parser.add_option("", "--fetch-bug-reports", dest="deb_bugs",
+ help="Fetch bug reports from the BTS", action="store_false")
#global options, args
(options, args) = parser.parse_args()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|