diff options
author | Alexander van der Mey (alexandervdm) <alexvandermey@gmail.com> | 2011-09-18 15:34:08 +0000 |
---|---|---|
committer | Alexander van der Mey (alexandervdm) <alexvandermey@gmail.com> | 2011-09-18 15:34:08 +0000 |
commit | 98143d936314b108772b70ae27dc79382fa07d62 (patch) | |
tree | aabdda76b7dfb37b1d592bdfd697c9fc58a436f7 /media-video | |
parent | net-p2p/transmission-remote-gtk: in gx86. (diff) | |
download | sunrise-98143d936314b108772b70ae27dc79382fa07d62.tar.gz sunrise-98143d936314b108772b70ae27dc79382fa07d62.tar.bz2 sunrise-98143d936314b108772b70ae27dc79382fa07d62.zip |
media-video/ periscope: New ebuild for bug 383499 - thanks to jbergstroem, Tommy[D] & mgorny
svn path=/sunrise/; revision=12405
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/periscope/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/periscope/Manifest | 4 | ||||
-rw-r--r-- | media-video/periscope/metadata.xml | 9 | ||||
-rw-r--r-- | media-video/periscope/periscope-0.2.4.ebuild | 30 |
4 files changed, 51 insertions, 0 deletions
diff --git a/media-video/periscope/ChangeLog b/media-video/periscope/ChangeLog new file mode 100644 index 000000000..c6be99928 --- /dev/null +++ b/media-video/periscope/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for media-video/periscope +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 18 Sep 2011; Alexander van der Mey (alexandervdm) <alexvandermey@gmail.com + +periscope-0.2.4.ebuild, +metadata.xml: + New ebuild for bug 383499 - thanks to jbergstroem, Tommy[D] & mgorny + diff --git a/media-video/periscope/Manifest b/media-video/periscope/Manifest new file mode 100644 index 000000000..d08b2305c --- /dev/null +++ b/media-video/periscope/Manifest @@ -0,0 +1,4 @@ +DIST python-periscope_0.2.4.orig.tar.gz 27510 RMD160 ac4b7ad0ffa0106d783fc19acc162ef3f3271061 SHA1 ff49960c7866c754fb1cf18a6119f75e781947f1 SHA256 f5426ea136d329511c2d533750339c9871d5f89d59e083a2b3c1aa94d769d646 +EBUILD periscope-0.2.4.ebuild 812 RMD160 745a1acd8254e441d69480e9c6790be8818f99f6 SHA1 8a94b83039945bb56a7902e6e2eacf95ceb007d0 SHA256 381e59fb0fc517c14debf57fa10a0ee8345db0aa1ee23a1a56a3d8daa9457613 +MISC ChangeLog 313 RMD160 b7ebe771df296d5358002fc08b5a1e94f8b82fda SHA1 e2d32a5549075749840a19f6fede3b91abb546de SHA256 c51b97b46ce2f00894a302b55e8688f64474f4a5102347db2bc9760b78e0eb7f +MISC metadata.xml 340 RMD160 d4077485a40019ea2c445c5599ba7b6e6068c3e6 SHA1 b985662b3b835ad98be1d0181626444395331f07 SHA256 055bca28c645ba2d132ad654a4548424a4317934bc9c60db311fa1bf512b4e65 diff --git a/media-video/periscope/metadata.xml b/media-video/periscope/metadata.xml new file mode 100644 index 000000000..96ea71b89 --- /dev/null +++ b/media-video/periscope/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> + <use> + <flag name='nautilus'>Integrate with nautilus file manager</flag> + </use> +</pkgmetadata> diff --git a/media-video/periscope/periscope-0.2.4.ebuild b/media-video/periscope/periscope-0.2.4.ebuild new file mode 100644 index 000000000..706a37f9e --- /dev/null +++ b/media-video/periscope/periscope-0.2.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.[45] 3.*" + +inherit distutils + +DESCRIPTION="Python module for searching subtitles on the web" +HOMEPAGE="http://code.google.com/p/periscope/" +SRC_URI="http://periscope.googlecode.com/files/python-${PN}_${PV}.orig.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nautilus" + +RDEPEND="dev-python/beautifulsoup + nautilus? ( dev-python/nautilus-python + dev-python/notify-python )" +DEPEND="${RDEPEND} + dev-python/setuptools" + +pkg_postinst() { + elog "If you want to use Periscope as a Nautilus plugin, follow the instructions" + elog "on this url: http://code.google.com/p/periscope/wiki/NautilusSupport" +} |