# HG changeset patch # User Da Risk # Date 1439800599 -7200 # Node ID df5c00aba7c285ab8e132be0697d43c93fca1924 # Parent 2b4110e8373a7a1d6f62fe6252f704c5bd968f53# Parent a04a74c83cfaaeef597c81f44e83f470a5869cc5 merge new version of dev-python/caldav diff -r a04a74c83cfa -r df5c00aba7c2 media-video/lm/lm-9999.ebuild --- a/media-video/lm/lm-9999.ebuild Mon Jul 27 15:29:56 2015 +0200 +++ b/media-video/lm/lm-9999.ebuild Mon Aug 17 10:36:39 2015 +0200 @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -6,7 +6,7 @@ PYTHON_COMPAT=( python2_7 ) -inherit git-2 python-r1 versionator +inherit git-r3 python-single-r1 versionator EGIT_REPO_URI="https://github.com/RedRise/lm.git" @@ -21,11 +21,14 @@ KEYWORDS="~amd64" IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="" RDEPEND="${PYTHON_DEPS} dev-python/imdbpy[${PYTHON_USEDEP}]" -S="${WORKDIR}/RedRise-lm-41c4004" +src_prepare() { + python_fix_shebang lm.py +} src_install() { newbin lm.py lm diff -r a04a74c83cfa -r df5c00aba7c2 media-video/subdl/metadata.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media-video/subdl/metadata.xml Mon Aug 17 10:36:39 2015 +0200 @@ -0,0 +1,11 @@ + + + + video + + media-video@gentoo.org + + + subdl + + diff -r a04a74c83cfa -r df5c00aba7c2 media-video/subdl/subdl-9999.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media-video/subdl/subdl-9999.ebuild Mon Aug 17 10:36:39 2015 +0200 @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python3_3 python3_4 ) +inherit python-single-r1 git-r3 + +DESCRIPTION="A command-line tool for downloading subs from opensubtitles.org" +HOMEPAGE="http://code.google.com/p/subdl/" +SRC_URI="" +EGIT_REPO_URI="https://github.com/fbarthelery/subdl.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="${PYTHON_DEPS}" +DEPEND="${RDEPEND} + app-arch/unzip" + +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +src_prepare() { + python_fix_shebang ${PN} +} + +src_install() { + dobin ${PN} + dodoc README.txt +}