mgorny 14/03/13 15:01:21 Modified: metadata.xml ChangeLog Added: south-0.8.1-r1.ebuild Log: Clean up and fix the ebuild wrt bug #484418. Switch the maintainership to python@ on previous maintainer's request. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.3 dev-python/south/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/metadata.xml?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/metadata.xml?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/metadata.xml?r1=1.2&r2=1.3 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/south/metadata.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- metadata.xml 24 Sep 2011 08:29:11 -0000 1.2 +++ metadata.xml 13 Mar 2014 15:01:21 -0000 1.3 @@ -1,8 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <maintainer> - <email>[email protected]</email> - <name>Tiziano Müller</name> - </maintainer> + <herd>python</herd> </pkgmetadata> 1.13 dev-python/south/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 14 Aug 2013 11:22:53 -0000 1.12 +++ ChangeLog 13 Mar 2014 15:01:21 -0000 1.13 @@ -1,6 +1,13 @@ # ChangeLog for dev-python/south -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v 1.12 2013/08/14 11:22:53 patrick Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v 1.13 2014/03/13 15:01:21 mgorny Exp $ + +*south-0.8.1-r1 (13 Mar 2014) + + 13 Mar 2014; Michał Górny <[email protected]> +south-0.8.1-r1.ebuild, + metadata.xml: + Clean up and fix the ebuild wrt bug #484418. Switch the maintainership to + python@ on previous maintainer's request. 14 Aug 2013; Patrick Lauer <[email protected]> south-0.7.6.ebuild: Whitespace 1.1 dev-python/south/south-0.8.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/south-0.8.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/south-0.8.1-r1.ebuild?rev=1.1&content-type=text/plain Index: south-0.8.1-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/south/south-0.8.1-r1.ebuild,v 1.1 2014/03/13 15:01:21 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) inherit vcs-snapshot distutils-r1 DESCRIPTION="Intelligent schema migrations for Django apps." HOMEPAGE="http://south.aeracode.org/" SRC_URI="https://bitbucket.org/andrewgodwin/south/get/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" RDEPEND="dev-python/django[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/jinja[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/django[sqlite] )" # we are setting up the tests, but they fail python_compile_all() { use doc && emake -C docs html } python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all } python_test() { # http://south.aeracode.org/ticket/1256 cd "${BUILD_DIR}" || die django-admin.py startproject southtest || die "setting up test env failed" cd southtest || die sed -i \ -e "/^INSTALLED_APPS/a\ 'south'," \ -e 's/\(django.db.backends.\)/\1sqlite3/' \ -e "s/\(NAME': '\)/\1test.db/" \ -e '$a\SKIP_SOUTH_TESTS=False' \ southtest/settings.py || die "test sed failed" "${EPYTHON}" manage.py test south || die "tests failed for ${EPYTHON}" } pkg_postinst() { elog "In order to use the south schema migrations for your Django project," elog "just add 'south' to your INSTALLED_APPS in the settings.py file." elog "manage.py will now automagically offer the new functions." }
