voyageur 15/04/13 21:50:02
Modified: metadata.xml ChangeLog
Added: plowshare-2.1.0.ebuild
Removed: plowshare-1.0.0.ebuild plowshare-1.0.4.ebuild
plowshare-1.0.6.ebuild plowshare-1.0.2.ebuild
Log:
Version bump, new homepage, modules are now fetched by user with plowmod
command, drop some old versions
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key
00F7AB331B0F097F)
Revision Changes Path
1.10 net-misc/plowshare/metadata.xml
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/metadata.xml?rev=1.10&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/metadata.xml?rev=1.10&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/metadata.xml?r1=1.9&r2=1.10
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/plowshare/metadata.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- metadata.xml 10 Mar 2015 13:30:38 -0000 1.9
+++ metadata.xml 13 Apr 2015 21:50:02 -0000 1.10
@@ -10,6 +10,6 @@
<flag name="view-captcha">View captcha with aview</flag>
</use>
<upstream>
- <remote-id type="google-code">plowshare</remote-id>
+ <remote-id type="github">mcrapet/plowshare</remote-id>
</upstream>
</pkgmetadata>
1.33 net-misc/plowshare/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?rev=1.33&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?rev=1.33&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 10 Mar 2015 13:30:38 -0000 1.32
+++ ChangeLog 13 Apr 2015 21:50:02 -0000 1.33
@@ -1,6 +1,14 @@
# ChangeLog for net-misc/plowshare
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v 1.32
2015/03/10 13:30:38 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v 1.33
2015/04/13 21:50:02 voyageur Exp $
+
+*plowshare-2.1.0 (13 Apr 2015)
+
+ 13 Apr 2015; Bernard Cafarelli <[email protected]> -plowshare-1.0.0.ebuild,
+ -plowshare-1.0.2.ebuild, -plowshare-1.0.4.ebuild, -plowshare-1.0.6.ebuild,
+ +plowshare-2.1.0.ebuild, metadata.xml:
+ Version bump, new homepage, modules are now fetched by user with plowmod
+ command, drop some old versions
*plowshare-2.0.1 (10 Mar 2015)
1.1 net-misc/plowshare/plowshare-2.1.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/plowshare-2.1.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/plowshare-2.1.0.ebuild?rev=1.1&content-type=text/plain
Index: plowshare-2.1.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/plowshare-2.1.0.ebuild,v
1.1 2015/04/13 21:50:02 voyageur Exp $
EAPI=5
inherit bash-completion-r1
DESCRIPTION="Command-line downloader and uploader for file-sharing websites"
HOMEPAGE="https://github.com/mcrapet/plowshare"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="bash-completion +javascript view-captcha"
SRC_URI="https://github.com/mcrapet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
RDEPEND="
>=app-shells/bash-4
|| ( app-text/recode ( dev-lang/perl dev-perl/HTML-Parser ) )
dev-vcs/git
|| ( media-gfx/imagemagick[tiff]
media-gfx/graphicsmagick[imagemagick,tiff] )
net-misc/curl
sys-apps/util-linux
javascript? ( || ( dev-lang/spidermonkey:0 dev-java/rhino ) )
view-captcha? ( || ( media-gfx/aview media-libs/libcaca ) )"
DEPEND=""
# NOTES:
# javascript dep should be any javascript interpreter using /usr/bin/js
src_prepare() {
# Fix doc install path
sed -i -e "/^DOCDIR/s|plowshare4|${P}|" Makefile || die "sed failed"
if ! use bash-completion
then
sed -i -e \ "/^install:/s/install_bash_completion//" \
Makefile || die "sed failed"
fi
}
src_compile() {
# There is a Makefile but it's not compiling anything, let's not try.
:
}
src_test() {
# Disable tests because all of them need a working Internet connection.
:
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" \
PLOWSHARE_FORCE_VERSION="${PV}" install
}
pkg_postinst() {
elog "plowshare is not delivered with modules by default anymore"
elog "Per-user modules can be installed/updated with the plowmod
command"
if ! use javascript; then
ewarn "Without javascript you will not be able to use modules"
ewarn "requering a Javascript shell (/usr/bin/js)"
fi
}