dev-zero 14/06/17 12:46:42 Modified: ChangeLog Added: python-slip-0.6.0.ebuild Log: Version bump (adds py3k support). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1A5D023975B0583D!)
Revision Changes Path 1.15 dev-python/python-slip/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-slip/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-slip/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-slip/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/python-slip/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 26 Apr 2014 07:17:36 -0000 1.14 +++ ChangeLog 17 Jun 2014 12:46:42 -0000 1.15 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-slip # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/ChangeLog,v 1.14 2014/04/26 07:17:36 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/ChangeLog,v 1.15 2014/06/17 12:46:42 dev-zero Exp $ + +*python-slip-0.6.0 (17 Jun 2014) + + 17 Jun 2014; Tiziano Müller <[email protected]> +python-slip-0.6.0.ebuild: + Version bump (adds py3k support). 26 Apr 2014; Pacho Ramos <[email protected]> -python-slip-0.2.21-r1.ebuild: drop old 1.1 dev-python/python-slip/python-slip-0.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-slip/python-slip-0.6.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-slip/python-slip-0.6.0.ebuild?rev=1.1&content-type=text/plain Index: python-slip-0.6.0.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-slip/python-slip-0.6.0.ebuild,v 1.1 2014/06/17 12:46:42 dev-zero Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3} ) inherit distutils-r1 eutils DESCRIPTION="Miscellaneous convenience, extension and workaround code for Python" HOMEPAGE="https://fedorahosted.org/python-slip/" SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="dbus selinux" RDEPEND=" dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/pygobject:3[${PYTHON_USEDEP}] sys-auth/polkit ) " DEPEND="" python_prepare_all() { use selinux || epatch "${FILESDIR}/${PN}-0.4.0-no-selinux.patch" # hard-disable slip.gtk since it did not get ported to gtk3+ and the only user # of slip (firewalld) does not use it (upstream disables it for py3 already) sed \ -e 's|sys.version_info.major == 2|False|' \ -e "s:@VERSION@:${PV}:" setup.py.in > setup.py || die "sed failed" if ! use dbus; then sed -e '/name="slip.dbus"/ s/\(.*\)/if 0:\n \1/' \ -i setup.py || die "sed 2 failed" fi distutils-r1_python_prepare_all }
