rafaelmartins 14/12/21 17:38:11 Modified: marrie-9999.ebuild ChangeLog Added: marrie-0.3.2-r1.ebuild Removed: marrie-0.3.2.ebuild Log: fixed feedparser dependency (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.7 media-sound/marrie/marrie-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/marrie-9999.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/marrie-9999.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/marrie-9999.ebuild?r1=1.6&r2=1.7 Index: marrie-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/marrie/marrie-9999.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- marrie-9999.ebuild 4 Dec 2014 06:14:45 -0000 1.6 +++ marrie-9999.ebuild 21 Dec 2014 17:38:11 -0000 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/marrie/marrie-9999.ebuild,v 1.6 2014/12/04 06:14:45 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/marrie/marrie-9999.ebuild,v 1.7 2014/12/21 17:38:11 rafaelmartins Exp $ EAPI=5 @@ -31,7 +31,7 @@ RDEPEND=" dev-python/setuptools - dev-python/feedparser" + >=dev-python/feedparser-5.1.3" DEPEND="${RDEPEND} doc? ( dev-python/docutils )" 1.10 media-sound/marrie/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/marrie/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 21 Dec 2014 17:29:51 -0000 1.9 +++ ChangeLog 21 Dec 2014 17:38:11 -0000 1.10 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/marrie # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/marrie/ChangeLog,v 1.9 2014/12/21 17:29:51 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/marrie/ChangeLog,v 1.10 2014/12/21 17:38:11 rafaelmartins Exp $ + +*marrie-0.3.2-r1 (21 Dec 2014) + + 21 Dec 2014; Rafael G. Martins <rafaelmart...@gentoo.org> + +marrie-0.3.2-r1.ebuild, -marrie-0.3.2.ebuild, marrie-9999.ebuild: + fixed feedparser dependency *marrie-0.3.2 (21 Dec 2014) 1.1 media-sound/marrie/marrie-0.3.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/marrie-0.3.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/marrie/marrie-0.3.2-r1.ebuild?rev=1.1&content-type=text/plain Index: marrie-0.3.2-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/marrie/marrie-0.3.2-r1.ebuild,v 1.1 2014/12/21 17:38:11 rafaelmartins Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) GIT_ECLASS="" if [[ ${PV} = *9999* ]]; then GIT_ECLASS="git-r3" EGIT_REPO_URI="git://github.com/rafaelmartins/marrie.git https://github.com/rafaelmartins/marrie.git" fi inherit distutils-r1 ${GIT_ECLASS} DESCRIPTION="A simple podcast client that runs on the Command Line Interface" HOMEPAGE="https://github.com/rafaelmartins/marrie" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86" if [[ ${PV} = *9999* ]]; then SRC_URI="" KEYWORDS="" fi LICENSE="BSD" SLOT="0" IUSE="doc" RDEPEND=" dev-python/setuptools >=dev-python/feedparser-5.1.3" DEPEND="${RDEPEND} doc? ( dev-python/docutils )" src_compile() { distutils-r1_src_compile if use doc; then rst2html.py README.rst marrie.html || die "rst2html.py failed" fi } src_install() { distutils-r1_src_install if use doc; then dohtml marrie.html fi } pkg_postinst() { distutils-r1_pkg_postinst elog elog "You'll need a media player and a file downloader." elog "Recommended packages: net-misc/wget and media-video/mplayer" elog }