diff options
author | Chris Reffett <creffett@gentoo.org> | 2014-08-25 22:45:53 +0000 |
---|---|---|
committer | Chris Reffett <creffett@gentoo.org> | 2014-08-25 22:45:53 +0000 |
commit | 84a149da4c673640563f0c0817553c7beb7dd141 (patch) | |
tree | 24564231032644cc960d3364f327028b35032c1a /dev-python/bottle | |
parent | add missing setuptools dependency (diff) | |
download | gentoo-2-84a149da4c673640563f0c0817553c7beb7dd141.tar.gz gentoo-2-84a149da4c673640563f0c0817553c7beb7dd141.tar.bz2 gentoo-2-84a149da4c673640563f0c0817553c7beb7dd141.zip |
Security cleanup wrt bug 509350
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/bottle')
-rw-r--r-- | dev-python/bottle/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/bottle/bottle-0.11.6-r1.ebuild | 33 | ||||
-rw-r--r-- | dev-python/bottle/bottle-0.12.5.ebuild | 33 |
3 files changed, 5 insertions, 67 deletions
diff --git a/dev-python/bottle/ChangeLog b/dev-python/bottle/ChangeLog index 2e591a7b9234..7b40ddaebabb 100644 --- a/dev-python/bottle/ChangeLog +++ b/dev-python/bottle/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/bottle # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.37 2014/07/15 04:38:04 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.38 2014/08/25 22:45:53 creffett Exp $ + + 25 Aug 2014; Christopher Reffett <2011creffett@gentoo.org> + -bottle-0.11.6-r1.ebuild, -bottle-0.12.5.ebuild: + Security cleanup wrt bug 509350 *bottle-0.12.7 (15 Jul 2014) diff --git a/dev-python/bottle/bottle-0.11.6-r1.ebuild b/dev-python/bottle/bottle-0.11.6-r1.ebuild deleted file mode 100644 index 8a9314532252..000000000000 --- a/dev-python/bottle/bottle-0.11.6-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.6-r1.ebuild,v 1.13 2014/03/31 20:37:23 mgorny Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0) -inherit distutils-r1 - -DESCRIPTION="A fast and simple micro-framework for small web-applications" -HOMEPAGE="http://pypi.python.org/pypi/bottle http://bottlepy.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -python_prepare_all() { - sed -i -e '/scripts/d' setup.py || die - distutils-r1_python_prepare_all -} - -pkg_postinst() { - elog "Due to problems with bottle.py being in /usr/bin (see bug #474874)" - elog "we do as most other distros and do not install the script anymore." - elog "If you do want/have to call it directly rather than through your app," - elog "please use the following instead:" - elog ' `python -m bottle`' -} diff --git a/dev-python/bottle/bottle-0.12.5.ebuild b/dev-python/bottle/bottle-0.12.5.ebuild deleted file mode 100644 index 27cab7482e07..000000000000 --- a/dev-python/bottle/bottle-0.12.5.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.12.5.ebuild,v 1.3 2014/05/15 12:58:36 idella4 Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) -inherit distutils-r1 - -DESCRIPTION="A fast and simple micro-framework for small web-applications" -HOMEPAGE="http://pypi.python.org/pypi/bottle http://bottlepy.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -python_prepare_all() { - sed -i -e '/scripts/d' setup.py || die - distutils-r1_python_prepare_all -} - -pkg_postinst() { - elog "Due to problems with bottle.py being in /usr/bin (see bug #474874)" - elog "we do as most other distros and do not install the script anymore." - elog "If you do want/have to call it directly rather than through your app," - elog "please use the following instead:" - elog ' `python -m bottle`' -} |