Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/clive: clive-2.3.0.1.ebuild ChangeLog
Date: Fri, 28 Sep 2012 01:29:18
Message-Id: 20120928012907.A515D21600@flycatcher.gentoo.org
1 vapier 12/09/28 01:29:07
2
3 Modified: ChangeLog
4 Added: clive-2.3.0.1.ebuild
5 Log:
6 Version bump #357255 by Dennis Nezic.
7
8 (Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.73 media-video/clive/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.73&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?rev=1.73&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/ChangeLog?r1=1.72&r2=1.73
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v
20 retrieving revision 1.72
21 retrieving revision 1.73
22 diff -u -r1.72 -r1.73
23 --- ChangeLog 24 Oct 2011 04:42:44 -0000 1.72
24 +++ ChangeLog 28 Sep 2012 01:29:07 -0000 1.73
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-video/clive
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.72 2011/10/24 04:42:44 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.73 2012/09/28 01:29:07 vapier Exp $
31 +
32 +*clive-2.3.0.1 (28 Sep 2012)
33 +
34 + 28 Sep 2012; Mike Frysinger <vapier@g.o> +clive-2.3.0.1.ebuild:
35 + Version bump #357255 by Dennis Nezic.
36
37 24 Oct 2011; Tim Harder <radhermit@g.o> -clive-2.2.23.ebuild,
38 -clive-2.2.24.ebuild, -clive-2.2.25.ebuild:
39 @@ -315,4 +320,3 @@
40 initial import, sharing this small ebuild I have had for a long time, others
41 might like the tool too if they hate flash and still want to watch videos
42 from various websites
43 -
44
45
46
47 1.1 media-video/clive/clive-2.3.0.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: clive-2.3.0.1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-2.3.0.1.ebuild,v 1.1 2012/09/28 01:29:07 vapier Exp $
57
58 EAPI=4
59
60 inherit perl-app
61
62 DESCRIPTION="Command line tool for extracting videos from various websites"
63 HOMEPAGE="http://clive.sourceforge.net/"
64 SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.gz"
65
66 LICENSE="GPL-3"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
69 IUSE="clipboard pager password test"
70
71 RDEPEND=">=dev-perl/BerkeleyDB-0.34
72 >=dev-perl/Config-Tiny-2.12
73 >=virtual/perl-Digest-SHA-5.47
74 >=dev-perl/HTML-TokeParser-Simple-2.37
75 >=dev-perl/Class-Singleton-1.4
76 >=dev-perl/WWW-Curl-4.05
77 >=dev-perl/XML-Simple-2.18
78 >=dev-perl/Getopt-ArgvFile-1.11
79 dev-perl/JSON-XS
80 dev-perl/URI
81 virtual/perl-Getopt-Long
82 virtual/perl-File-Spec
83 clipboard? ( >=dev-perl/Clipboard-0.09 )
84 pager? ( >=dev-perl/IO-Pager-0.05 )
85 password? ( >=dev-perl/Expect-1.21 )
86 media-libs/quvi
87 || ( net-misc/wget net-misc/curl )"
88 DEPEND="test? ( dev-perl/Test-Pod ${RDEPEND} )"
89
90 SRC_TEST=do
91 mydoc="NEWS"
92
93 src_install() {
94 perl-module_src_install
95 dodir /etc/clive
96 cat <<-EOF > "${ED}"/etc/clive/config || die
97 --quvi "quvi %u"
98 --get-with "if type -P wget >/dev/null 2>&1; then wget -c -O %f %u; else curl -L -C - -o %f %u; fi"
99 --filename-format "%t.%s"
100 EOF
101 }
102
103 src_test() {
104 if [ -z "${I_WANT_CLIVE_HOSTS_TESTS}" ] ; then
105 elog "If you wish to run the full testsuite of ${PN}"
106 elog "Please set the variable 'I_WANT_CLIVE_HOSTS_TESTS' variable"
107 elog "Note that the tests try to download some videos from various websites"
108 elog "and thus may randomly fail depending on the site's status."
109 export NO_INTERNET=1
110 fi
111 perl-module_src_test
112 }