chewi 15/03/14 14:58:54 Modified: metadata.xml ChangeLog Added: jformatstring-2.0.3.ebuild Removed: jformatstring-0.9-r1.ebuild Log: Version bump. Sources now bundled with findbugs and uses its version numbers. Latest findbugs is 3.0.1 but jFormatString itself hasn't changed since 2.0.3. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 9C6D7DE4)
Revision Changes Path 1.2 dev-java/jformatstring/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/metadata.xml?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/metadata.xml?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/metadata.xml?r1=1.1&r2=1.2 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-java/jformatstring/metadata.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- metadata.xml 10 Apr 2011 17:04:12 -0000 1.1 +++ metadata.xml 14 Mar 2015 14:58:54 -0000 1.2 @@ -2,4 +2,5 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>java</herd> + <longdescription>This code is designed to allow for compile time checking of Java format strings. It can check that the format string is valid, that the proper number of arguments are supplied and that they are of the correct type.</longdescription> </pkgmetadata> 1.4 dev-java/jformatstring/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-java/jformatstring/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 17 Jun 2014 13:43:24 -0000 1.3 +++ ChangeLog 14 Mar 2015 14:58:54 -0000 1.4 @@ -1,6 +1,13 @@ # ChangeLog for dev-java/jformatstring -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jformatstring/ChangeLog,v 1.3 2014/06/17 13:43:24 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jformatstring/ChangeLog,v 1.4 2015/03/14 14:58:54 chewi Exp $ + +*jformatstring-2.0.3 (14 Mar 2015) + + 14 Mar 2015; James Le Cuirot <[email protected]> +jformatstring-2.0.3.ebuild, + -files/build.xml, -jformatstring-0.9-r1.ebuild, metadata.xml: + Version bump. Sources now bundled with findbugs and uses its version numbers. + Latest findbugs is 3.0.1 but jFormatString itself hasn't changed since 2.0.3. 17 Jun 2014; Manuel RĂ¼ger <[email protected]> -jformatstring-0.9.ebuild: NM: Cleanup superseded ebuilds. 1.1 dev-java/jformatstring/jformatstring-2.0.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/jformatstring-2.0.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jformatstring/jformatstring-2.0.3.ebuild?rev=1.1&content-type=text/plain Index: jformatstring-2.0.3.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/jformatstring/jformatstring-2.0.3.ebuild,v 1.1 2015/03/14 14:58:54 chewi Exp $ EAPI=5 FINDBUGS_PV="3.0.1" JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple DESCRIPTION="Compile time checking for Java format strings" SRC_URI="mirror://sourceforge/findbugs/findbugs-${FINDBUGS_PV}-source.zip" HOMEPAGE="http://code.google.com/p/j-format-string" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND=">=virtual/jre-1.5" DEPEND=">=virtual/jdk-1.5 app-arch/unzip" src_unpack() { unzip -qoj "${DISTDIR}/findbugs-${FINDBUGS_PV}-source.zip" "findbugs-${FINDBUGS_PV}/lib/jFormatString.jar" || die unpack ./jFormatString.jar } java_prepare() { find -name "*.class" -delete || die }
