diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2015-05-01 06:52:27 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2015-05-01 06:52:27 +0000 |
commit | c6677e91e5829048a84105107a7289ac46d41f8b (patch) | |
tree | 97e5f1d73df88584ff5711f6c194269f57c594bb /net-news | |
parent | Version bump, wrt bug #548184. Drop old vulnerable version, wrt bug #533654. ... (diff) | |
download | gentoo-2-c6677e91e5829048a84105107a7289ac46d41f8b.tar.gz gentoo-2-c6677e91e5829048a84105107a7289ac46d41f8b.tar.bz2 gentoo-2-c6677e91e5829048a84105107a7289ac46d41f8b.zip |
Version bump, wrt bug #548184. Drop old vulnerable version, wrt bug #533654. Thanks to Jack Miller <jack AT codezen.org> for discovering this issue
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x60C0742D1F357D42)
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/canto-curses/ChangeLog | 9 | ||||
-rw-r--r-- | net-news/canto-curses/canto-curses-0.9.3.ebuild (renamed from net-news/canto-curses/canto-curses-0.8.4.ebuild) | 15 |
2 files changed, 19 insertions, 5 deletions
diff --git a/net-news/canto-curses/ChangeLog b/net-news/canto-curses/ChangeLog index 278b64868bf1..c194f87d0ac3 100644 --- a/net-news/canto-curses/ChangeLog +++ b/net-news/canto-curses/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-news/canto-curses # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/canto-curses/ChangeLog,v 1.3 2015/04/08 18:17:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/canto-curses/ChangeLog,v 1.4 2015/05/01 06:52:27 pinkbyte Exp $ + +*canto-curses-0.9.3 (01 May 2015) + + 01 May 2015; Sergey Popov <pinkbyte@gentoo.org> -canto-curses-0.8.4.ebuild, + +canto-curses-0.9.3.ebuild: + Version bump, wrt bug #548184. Drop old vulnerable version, wrt bug #533654. + Thanks to Jack Miller <jack AT codezen.org> for discovering this issue 08 Apr 2015; Michał Górny <mgorny@gentoo.org> canto-curses-0.8.4.ebuild: Drop old Python implementations diff --git a/net-news/canto-curses/canto-curses-0.8.4.ebuild b/net-news/canto-curses/canto-curses-0.9.3.ebuild index cd9803945749..8d49be4848d7 100644 --- a/net-news/canto-curses/canto-curses-0.8.4.ebuild +++ b/net-news/canto-curses/canto-curses-0.9.3.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/canto-curses/canto-curses-0.8.4.ebuild,v 1.3 2015/04/08 18:17:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/canto-curses/canto-curses-0.9.3.ebuild,v 1.1 2015/05/01 06:52:27 pinkbyte Exp $ EAPI="5" PYTHON_COMPAT=( python{3_3,3_4} ) -PYTHON_REQ_USE="ncurses" -inherit distutils-r1 +PYTHON_REQ_USE="ncurses(+),threads(+)" +inherit distutils-r1 multilib DESCRIPTION="The ncurses client for canto-daemon" HOMEPAGE="http://codezen.org/canto-ng/" @@ -16,4 +16,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND=">=net-news/canto-daemon-0.8.2[${PYTHON_USEDEP}]" +RDEPEND=">=net-news/canto-daemon-0.9.1[${PYTHON_USEDEP}]" + +python_prepare_all() { + # Respect libdir during plugins installation + sed -i -e "s:lib/canto:$(get_libdir)/canto:" setup.py || die + + distutils-r1_python_prepare_all +} |