mgorny 15/05/26 09:35:01 Modified: ChangeLog Added: python-exec-2.0.2.ebuild Log: Version bump. The new version updates script comments (bug #524342), fixes off-by-one error in file reading, and enables largefile support (bug #550438). (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.21 dev-lang/python-exec/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python-exec/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python-exec/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python-exec/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/python-exec/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 19 Feb 2015 17:24:36 -0000 1.20 +++ ChangeLog 26 May 2015 09:35:01 -0000 1.21 @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/python-exec # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python-exec/ChangeLog,v 1.20 2015/02/19 17:24:36 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python-exec/ChangeLog,v 1.21 2015/05/26 09:35:01 mgorny Exp $ + +*python-exec-2.0.2 (26 May 2015) + + 26 May 2015; Michał Górny <[email protected]> +python-exec-2.0.2.ebuild: + Version bump. The new version updates script comments (bug #524342), fixes + off-by-one error in file reading, and enables largefile support (bug #550438). 19 Feb 2015; Michał Górny <[email protected]> -python-exec-0.3.1-r1.ebuild, -python-exec-0.9999.ebuild: 1.1 dev-lang/python-exec/python-exec-2.0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python-exec/python-exec-2.0.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python-exec/python-exec-2.0.2.ebuild?rev=1.1&content-type=text/plain Index: python-exec-2.0.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/python-exec/python-exec-2.0.2.ebuild,v 1.1 2015/05/26 09:35:01 mgorny Exp $ EAPI=5 # Kids, don't do this at home! inherit python-utils-r1 PYTHON_COMPAT=( "${_PYTHON_ALL_IMPLS[@]}" ) inherit autotools-utils python-r1 DESCRIPTION="Python script wrapper" HOMEPAGE="https://bitbucket.org/mgorny/python-exec/" SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2" LICENSE="BSD-2" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="!<dev-python/python-exec-10000" src_configure() { local pyimpls i EPYTHON for i in "${PYTHON_COMPAT[@]}"; do python_export "${i}" EPYTHON pyimpls+=" ${EPYTHON}" done local myeconfargs=( --with-eprefix="${EPREFIX}" --with-python-impls="${pyimpls}" ) autotools-utils_src_configure }
