diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-02-25 06:12:47 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-02-25 06:12:47 +0000 |
commit | f0a2c950e3db661cd7d112215015b993a1fd628f (patch) | |
tree | e24f4c3882c65a1868ed2ac5b700b3f02ebf6bd5 /dev-vcs/svnmailer | |
parent | Bump (diff) | |
download | gentoo-2-f0a2c950e3db661cd7d112215015b993a1fd628f.tar.gz gentoo-2-f0a2c950e3db661cd7d112215015b993a1fd628f.tar.bz2 gentoo-2-f0a2c950e3db661cd7d112215015b993a1fd628f.zip |
revbump; convert -> distutils-r1, rm old
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-vcs/svnmailer')
-rw-r--r-- | dev-vcs/svnmailer/ChangeLog | 10 | ||||
-rw-r--r-- | dev-vcs/svnmailer/svnmailer-1.0.9-r1.ebuild (renamed from dev-vcs/svnmailer/svnmailer-1.0.9.ebuild) | 29 |
2 files changed, 22 insertions, 17 deletions
diff --git a/dev-vcs/svnmailer/ChangeLog b/dev-vcs/svnmailer/ChangeLog index 42403a8febd3..9927987906b2 100644 --- a/dev-vcs/svnmailer/ChangeLog +++ b/dev-vcs/svnmailer/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/svnmailer -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svnmailer/ChangeLog,v 1.5 2014/03/24 16:19:07 xarthisius Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svnmailer/ChangeLog,v 1.6 2015/02/25 06:12:47 idella4 Exp $ + +*svnmailer-1.0.9-r1 (25 Feb 2015) + + 25 Feb 2015; Ian Delaney <idella4@gentoo.org> +svnmailer-1.0.9-r1.ebuild, + -svnmailer-1.0.9.ebuild: + revbump; convert -> distutils-r1, rm old 24 Mar 2014; Kacper Kowalik <xarthisius@gentoo.org> metadata.xml: Drop maintainership diff --git a/dev-vcs/svnmailer/svnmailer-1.0.9.ebuild b/dev-vcs/svnmailer/svnmailer-1.0.9-r1.ebuild index d86c8b1faa4c..2314456763b5 100644 --- a/dev-vcs/svnmailer/svnmailer-1.0.9.ebuild +++ b/dev-vcs/svnmailer/svnmailer-1.0.9-r1.ebuild @@ -1,11 +1,13 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svnmailer/svnmailer-1.0.9.ebuild,v 1.1 2011/11/22 17:48:11 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svnmailer/svnmailer-1.0.9-r1.ebuild,v 1.1 2015/02/25 06:12:47 idella4 Exp $ -EAPI="3" -PYTHON_DEPEND="2" +EAPI=5 -inherit distutils +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 + +inherit distutils-r1 DESCRIPTION="A subversion commit notifier written in Python" HOMEPAGE="http://opensource.perlig.de/svnmailer/" @@ -17,23 +19,20 @@ KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="${DEPEND} - dev-vcs/subversion[python] + dev-vcs/subversion[python,${PYTHON_USEDEP}] virtual/mta" RDEPEND="${DEPEND}" -DOCS="CHANGES NOTICE CREDITS" - pkg_setup() { - python_set_active_version 2 - python_pkg_setup + python-single-r1_pkg_setup } -src_prepare() { - distutils_src_prepare +python_prepare_all() { sed -i -e "s:man/man1:share/&:" setup.py || die + distutils-r1_python_prepare_all } -src_install() { - distutils_src_install - dohtml -r docs/* || die +python_install_all() { + local HTML_DOCS=( docs/. ) + distutils-r1_python_install_all } |