rhill 15/03/14 09:40:07 Modified: ChangeLog Added: vuze-coreplugins-5.6.0.0.ebuild Log: Version bump. Signed-off-by: Ryan Hill <rh...@gentoo.org> (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
Revision Changes Path 1.47 net-p2p/vuze-coreplugins/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.47&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.47&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?r1=1.46&r2=1.47 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- ChangeLog 9 Aug 2014 12:10:19 -0000 1.46 +++ ChangeLog 14 Mar 2015 09:40:07 -0000 1.47 @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/vuze-coreplugins -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v 1.46 2014/08/09 12:10:19 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v 1.47 2015/03/14 09:40:07 rhill Exp $ + +*vuze-coreplugins-5.6.0.0 (14 Mar 2015) + + 14 Mar 2015; Ryan Hill <rh...@gentoo.org> +vuze-coreplugins-5.6.0.0.ebuild: + Version bump. 09 Aug 2014; Agostino Sarubbo <a...@gentoo.org> vuze-coreplugins-4.8.1.2.ebuild: 1.1 net-p2p/vuze-coreplugins/vuze-coreplugins-5.6.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-5.6.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-5.6.0.0.ebuild?rev=1.1&content-type=text/plain Index: vuze-coreplugins-5.6.0.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-5.6.0.0.ebuild,v 1.1 2015/03/14 09:40:07 rhill Exp $ EAPI="5" # update these when bumping the version PLUGINS_V=2.1.10 # http://www.vuze.com/plugins/details/azplugins RATING_V=1.5.13.1 # http://www.vuze.com/plugins/details/azrating UPDATER_V=1.9.1 # http://www.vuze.com/plugins/details/azupdater UPNPAV_V=0.5.2 # http://www.vuze.com/plugins/details/azupnpav PLUGINS_DIST=azplugins_${PLUGINS_V}.jar RATING_DIST=azrating_${RATING_V}.jar UPDATER_DIST=azupdater_${UPDATER_V}.zip UPNPAV_DIST=azupnpav_${UPNPAV_V}.zip ALLPLUGINS_URL="http://azureus.sourceforge.net/plugins" DESCRIPTION="Core plugins for Vuze that are included in upstream distribution" HOMEPAGE="http://www.vuze.com/" SRC_URI=" ${ALLPLUGINS_URL}/${PLUGINS_DIST} ${ALLPLUGINS_URL}/${RATING_DIST} ${ALLPLUGINS_URL}/${UPDATER_DIST} ${ALLPLUGINS_URL}/${UPNPAV_DIST}" LICENSE="GPL-2 BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND="~net-p2p/vuze-${PV}" DEPEND="${RDEPEND} app-arch/unzip" S="${WORKDIR}" src_unpack() { mkdir -p plugins/{azplugins,azrating,azupdater,azupnpav} || die cp "${DISTDIR}"/${PLUGINS_DIST} plugins/azplugins || die cp "${DISTDIR}"/${RATING_DIST} plugins/azrating || die cd "${WORKDIR}"/plugins/azupdater && unpack ${UPDATER_DIST} || die cd "${WORKDIR}"/plugins/azupnpav && unpack ${UPNPAV_DIST} || die } src_compile() { :; } src_install() { insinto /usr/share/vuze/ doins -r "${WORKDIR}/plugins" }