[Pypt-offline-general] SF.net SVN: pypt-offline: [174] trunk
Status: Beta
Brought to you by:
riteshsarraf
|
From: <rit...@us...> - 2007-08-09 09:50:42
|
Revision: 174
http://pypt-offline.svn.sourceforge.net/pypt-offline/?rev=174&view=rev
Author: riteshsarraf
Date: 2007-08-09 02:50:42 -0700 (Thu, 09 Aug 2007)
Log Message:
-----------
* More license structuring
Modified Paths:
--------------
trunk/fetch_bugs.py
trunk/pypt_core.py
Modified: trunk/fetch_bugs.py
===================================================================
--- trunk/fetch_bugs.py 2007-08-09 08:57:56 UTC (rev 173)
+++ trunk/fetch_bugs.py 2007-08-09 09:50:42 UTC (rev 174)
@@ -1,5 +1,24 @@
#!/usr/bin/env python
+'''
+ pypt-offline -- An offline package manager for Debian and its derivatives
+ Copyright (C) 2007 Ritesh Raj Sarraf
+
+ 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
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+'''
+
+
import pypt_core
package = raw_input("Please enter the Debian package name: ")
Modified: trunk/pypt_core.py
===================================================================
--- trunk/pypt_core.py 2007-08-09 08:57:56 UTC (rev 173)
+++ trunk/pypt_core.py 2007-08-09 09:50:42 UTC (rev 174)
@@ -1,3 +1,21 @@
+'''
+ pypt-offline -- An offline package manager for Debian and its derivatives
+ Copyright (C) 2007 Ritesh Raj Sarraf
+
+ 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
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+'''
+
import os
import md5
import sys
@@ -36,6 +54,8 @@
version = "0.7.0"
copyright = "(C) 2005 - 2007 Ritesh Raj Sarraf - RESEARCHUT (http://www.researchut.com/)"
+terminal_license = "This program comes with ABSOLUTELY NO WARRANTY.\n\
+This is free software, and you are welcome to redistribute it under certain conditions.\n"
errlist = []
supported_platforms = ["Linux", "GNU/kFreeBSD", "GNU"]
@@ -1352,6 +1372,7 @@
log.msg("pypt-offline %s\n" % (version))
log.msg("Copyright %s\n" % (copyright))
+ log.msg(terminal_license)
if options.set_update:
if platform.system() in supported_platforms:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|