yngwin 14/09/30 07:09:36 Modified: ChangeLog Added: mako-1.0.0.ebuild Log: Version bump, thanks to eroen in bug #486158. As this is a major version bump, it's masked for testing. (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0x0F9C590B7FF324F6!)
Revision Changes Path 1.83 dev-python/mako/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mako/ChangeLog?rev=1.83&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mako/ChangeLog?rev=1.83&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mako/ChangeLog?r1=1.82&r2=1.83 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- ChangeLog 18 Jun 2014 16:00:28 -0000 1.82 +++ ChangeLog 30 Sep 2014 07:09:36 -0000 1.83 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/mako # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v 1.82 2014/06/18 16:00:28 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mako/ChangeLog,v 1.83 2014/09/30 07:09:36 yngwin Exp $ + +*mako-1.0.0 (30 Sep 2014) + + 30 Sep 2014; Ben de Groot <[email protected]> +mako-1.0.0.ebuild: + Version bump, thanks to eroen in bug #486158. As this is a major version bump, + it's masked for testing. 18 Jun 2014; Tobias Klausmann <[email protected]> mako-0.7.3-r1.ebuild: Stable on alpha, bug #450174 1.1 dev-python/mako/mako-1.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mako/mako-1.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mako/mako-1.0.0.ebuild?rev=1.1&content-type=text/plain Index: mako-1.0.0.ebuild =================================================================== # Copyright 1998-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/mako/mako-1.0.0.ebuild,v 1.1 2014/09/30 07:09:36 yngwin Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) inherit readme.gentoo versionator distutils-r1 MY_PN="Mako" MY_P=${MY_PN}-${PV} DESCRIPTION="A Python templating language" HOMEPAGE="http://www.makotemplates.org/ http://pypi.python.org/pypi/Mako" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="doc test" RDEPEND=" >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] )" S="${WORKDIR}/${MY_P}" DOC_CONTENTS=" ${PN} can be enchanced with caching by dev-python/beaker" python_test() { cp -r -l test "${BUILD_DIR}"/ || die cd "${BUILD_DIR}"/test || die nosetests || die "Tests fail with ${EPYTHON}" } python_install_all() { rm -rf doc/build use doc && local HTML_DOCS=( doc/. ) distutils-r1_python_install_all readme.gentoo_create_doc } pkg_postinst() { readme.gentoo_print_elog for v in ${REPLACING_VERSIONS}; do if ! version_is_at_least 0.7.3-r2 $v; then ewarn "dev-python/beaker is no longer hard dependency of ${P}" ewarn "If you rely on it, you should add beaker to your world" ewarn "file:" ewarn "# emerge --noreplace beaker" break fi done }
