mrueg 15/07/13 22:26:20 Modified: ChangeLog Added: pycups-1.9.73.ebuild Log: Version bump. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.101 dev-python/pycups/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.101&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.101&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?r1=1.100&r2=1.101 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- ChangeLog 3 Jul 2015 15:30:14 -0000 1.100 +++ ChangeLog 13 Jul 2015 22:26:20 -0000 1.101 @@ -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.100 2015/07/03 15:30:14 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.101 2015/07/13 22:26:20 mrueg Exp $ + +*pycups-1.9.73 (13 Jul 2015) + + 13 Jul 2015; Manuel RĂ¼ger <[email protected]> +pycups-1.9.73.ebuild: + Version bump. 03 Jul 2015; Mikle Kolyada <[email protected]> pycups-1.9.72.ebuild: arm stable wrt bug #553130 1.1 dev-python/pycups/pycups-1.9.73.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.73.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.73.ebuild?rev=1.1&content-type=text/plain Index: pycups-1.9.73.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.73.ebuild,v 1.1 2015/07/13 22:26:20 mrueg 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 }
