diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-03-29 20:10:55 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-03-29 20:10:55 +0000 |
commit | 5debae9b6fb12b131af045f07e9f9ce875e330e7 (patch) | |
tree | 681d4604b7e4c5dbf568659d53e0129423a02a08 /dev-python/sip | |
parent | Version bump. Closes bug #46006. (Manifest recommit) (diff) | |
download | gentoo-2-5debae9b6fb12b131af045f07e9f9ce875e330e7.tar.gz gentoo-2-5debae9b6fb12b131af045f07e9f9ce875e330e7.tar.bz2 gentoo-2-5debae9b6fb12b131af045f07e9f9ce875e330e7.zip |
adding license. closes 46144
Diffstat (limited to 'dev-python/sip')
-rw-r--r-- | dev-python/sip/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/sip/files/license-3.5.diff | 34 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/sip/ChangeLog b/dev-python/sip/ChangeLog index 50848e83d0bc..c9118a145893 100644 --- a/dev-python/sip/ChangeLog +++ b/dev-python/sip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/sip # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.29 2004/03/29 18:33:14 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.30 2004/03/29 20:10:55 mholzer Exp $ + + 29 Mar 2004; Martin Holzer <mholzer@gentoo.org> files/license-3.5.diff: + adding license. closes 46144 29 Mar 2004; Luca Barbato <lu_zero@gentoo.org> sip-3.8-r1.ebuild: Marked ppc, the 3.5 is broken. diff --git a/dev-python/sip/files/license-3.5.diff b/dev-python/sip/files/license-3.5.diff new file mode 100644 index 000000000000..96ec57b9bce2 --- /dev/null +++ b/dev-python/sip/files/license-3.5.diff @@ -0,0 +1,34 @@ +--- sip-x11-gpl-3.5/build.py 2002-12-13 23:40:01.000000000 +0100 ++++ sip-x11-gpl-3.5/build.py 2002-12-13 23:41:00.000000000 +0100 +@@ -540,31 +540,6 @@ + licType = "GPL" + licname = "GNU General Public License" + +- inform("This is the %s version of SIP and is licensed under the %s." % (licType,licname),0) +- +- print +- print "Type 'L' to view the license." +- print "Type 'yes' to accept the terms of the license." +- print "Type 'no' to decline the terms of the license." +- print +- +- while 1: +- try: +- resp = raw_input("Do you accept the terms of the license? ") +- except: +- resp = "" +- +- resp = resp.strip().lower() +- +- if resp == "yes": +- break +- +- if resp == "no": +- sys.exit(0) +- +- if resp == "l": +- os.system("more LICENSE") +- + inform("Building the %s version of SIP 3.5 for Python %s on %s." % (licType,pyFullVers,sys.platform)) + + # We can't be sure that we can run programs under Windows (because it might |