pacho 15/05/27 20:43:32 Modified: ChangeLog Added: pycups-1.9.72.ebuild Log: Version bump (#549254) (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.96 dev-python/pycups/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.96&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.96&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?r1=1.95&r2=1.96 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v retrieving revision 1.95 retrieving revision 1.96 diff -u -r1.95 -r1.96 --- ChangeLog 8 Apr 2015 08:04:58 -0000 1.95 +++ ChangeLog 27 May 2015 20:43:32 -0000 1.96 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pycups # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.95 2015/04/08 08:04:58 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.96 2015/05/27 20:43:32 pacho Exp $ + +*pycups-1.9.72 (27 May 2015) + + 27 May 2015; Pacho Ramos <[email protected]> +pycups-1.9.72.ebuild: + Version bump (#549254) 08 Apr 2015; Michał Górny <[email protected]> pycups-1.9.68.ebuild: Drop old Python implementations 1.1 dev-python/pycups/pycups-1.9.72.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.72.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.72.ebuild?rev=1.1&content-type=text/plain Index: pycups-1.9.72.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/pycups-1.9.72.ebuild,v 1.1 2015/05/27 20:43:32 pacho Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 DESCRIPTION="Python bindings for the CUPS API" HOMEPAGE="http://cyberelk.net/tim/data/pycups/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" SLOT="0" IUSE="doc examples" RDEPEND=" net-print/cups " DEPEND="${RDEPEND}" # epydoc kinda sucks and supports python2 only (it's dead too), # and since we're dealing with a binary module we need exact version # match. therefore, docbuilding *requires* any python2 being enabled. DEPEND="${RDEPEND} doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] ) " REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )" python_compile_all() { if use doc; then # we can't use Makefile since it relies on hardcoded paths epydoc -o html --html cups || die "doc build failed" fi } python_compile() { python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile } python_install_all() { use doc && local HTML_DOCS=( html/ ) use examples && local EXAMPLES=( examples/ ) distutils-r1_python_install_all }
