rhill 14/03/09 07:39:42 Modified: ChangeLog Added: vuze-coreplugins-5.3.0.0.ebuild Removed: vuze-coreplugins-4.7.1.2.ebuild Log: Version bump (bug #481582). Remove old. Signed-off-by: Ryan Hill <rh...@gentoo.org> (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
Revision Changes Path 1.43 net-p2p/vuze-coreplugins/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.43&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?rev=1.43&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog?r1=1.42&r2=1.43 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- ChangeLog 9 Mar 2014 03:43:27 -0000 1.42 +++ ChangeLog 9 Mar 2014 07:39:42 -0000 1.43 @@ -1,6 +1,12 @@ # 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.42 2014/03/09 03:43:27 rhill Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/vuze-coreplugins/ChangeLog,v 1.43 2014/03/09 07:39:42 rhill Exp $ + +*vuze-coreplugins-5.3.0.0 (09 Mar 2014) + + 09 Mar 2014; Ryan Hill <rh...@gentoo.org> -vuze-coreplugins-4.7.1.2.ebuild, + +vuze-coreplugins-5.3.0.0.ebuild: + Version bump (bug #481582). Remove old. 09 Mar 2014; Ryan Hill <rh...@gentoo.org> metadata.xml: Change my email. 1.1 net-p2p/vuze-coreplugins/vuze-coreplugins-5.3.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-5.3.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/vuze-coreplugins/vuze-coreplugins-5.3.0.0.ebuild?rev=1.1&content-type=text/plain Index: vuze-coreplugins-5.3.0.0.ebuild =================================================================== # Copyright 1999-2014 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.3.0.0.ebuild,v 1.1 2014/03/09 07:39:42 rhill Exp $ EAPI="5" # don't forget to update these when bumping the version PLUGINS_V=2.1.7 # http://www.vuze.com/plugins/details/azplugins RATING_V=1.4.3 # http://www.vuze.com/plugins/details/azrating UPDATER_V=1.9.1 # http://www.vuze.com/plugins/details/azupdater UPNPAV_V=0.4.9 # 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" }