diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-01 18:40:58 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-01 18:40:58 +0000 |
commit | 64b2fad576d30199d6507d2a1a8df3899280322b (patch) | |
tree | fed41383a1608ca527219481c05ec97a25e3a2d1 /dev-vcs | |
parent | alpha stable wrt bug #492150 (diff) | |
download | gentoo-2-64b2fad576d30199d6507d2a1a8df3899280322b.tar.gz gentoo-2-64b2fad576d30199d6507d2a1a8df3899280322b.tar.bz2 gentoo-2-64b2fad576d30199d6507d2a1a8df3899280322b.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/bfg/ChangeLog | 9 | ||||
-rw-r--r-- | dev-vcs/bfg/bfg-1.11.1.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-vcs/bfg/ChangeLog b/dev-vcs/bfg/ChangeLog index e72e07f25519..20ad91b389c1 100644 --- a/dev-vcs/bfg/ChangeLog +++ b/dev-vcs/bfg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/bfg -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bfg/ChangeLog,v 1.1 2013/11/06 04:25:48 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bfg/ChangeLog,v 1.2 2014/02/01 18:40:58 radhermit Exp $ + +*bfg-1.11.1 (01 Feb 2014) + + 01 Feb 2014; Tim Harder <radhermit@gentoo.org> +bfg-1.11.1.ebuild: + Version bump. *bfg-1.11.0 (06 Nov 2013) diff --git a/dev-vcs/bfg/bfg-1.11.1.ebuild b/dev-vcs/bfg/bfg-1.11.1.ebuild new file mode 100644 index 000000000000..cb0a567f82e5 --- /dev/null +++ b/dev-vcs/bfg/bfg-1.11.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bfg/bfg-1.11.1.ebuild,v 1.1 2014/02/01 18:40:58 radhermit Exp $ + +EAPI=5 + +inherit java-pkg-2 + +DESCRIPTION="a simpler, faster alternative to git-filter-branch for removing bad data from git repos" +HOMEPAGE="http://rtyley.github.io/bfg-repo-cleaner/" +SRC_URI="http://repo1.maven.org/maven2/com/madgag/${PN}/${PV}/${P}.jar" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jre-1.6" + +S=${WORKDIR} + +src_unpack() { + cp "${DISTDIR}"/${A} "${WORKDIR}" +} + +src_compile() { :; } + +src_install() { + java-pkg_newjar ${P}.jar + java-pkg_dolauncher ${PN} +} |