diff options
author | 2007-04-09 11:37:25 +0000 | |
---|---|---|
committer | 2007-04-09 11:37:25 +0000 | |
commit | b8bfe0433dff0801b64cdbd3ddf1546168e49c3a (patch) | |
tree | 0304f3b6d46c91653d3b2c245ed0a94ea7527ede /app-text | |
parent | Remove old version. (diff) | |
download | gentoo-2-b8bfe0433dff0801b64cdbd3ddf1546168e49c3a.tar.gz gentoo-2-b8bfe0433dff0801b64cdbd3ddf1546168e49c3a.tar.bz2 gentoo-2-b8bfe0433dff0801b64cdbd3ddf1546168e49c3a.zip |
Version bump, thanks to zlin
(Portage version: 2.1.2.3)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/wgetpaste/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/wgetpaste/files/digest-wgetpaste-2.2 | 3 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.2.ebuild | 26 |
3 files changed, 35 insertions, 1 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog index dd7a18b5c23c..adcc829d4be0 100644 --- a/app-text/wgetpaste/ChangeLog +++ b/app-text/wgetpaste/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wgetpaste # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.15 2007/04/08 12:52:55 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.16 2007/04/09 11:37:25 armin76 Exp $ + +*wgetpaste-2.2 (09 Apr 2007) + + 09 Apr 2007; Raúl Porcel <armin76@gentoo.org> +wgetpaste-2.2.ebuild: + Version bump, thanks to zlin 08 Apr 2007; Markus Rothe <corsair@gentoo.org> wgetpaste-2.1.ebuild: Added ~ppc64; bug #173401 diff --git a/app-text/wgetpaste/files/digest-wgetpaste-2.2 b/app-text/wgetpaste/files/digest-wgetpaste-2.2 new file mode 100644 index 000000000000..8b1e8a98ac07 --- /dev/null +++ b/app-text/wgetpaste/files/digest-wgetpaste-2.2 @@ -0,0 +1,3 @@ +MD5 a689249e4584412e6c6cfabc2735245e wgetpaste-2.2.bz2 6416 +RMD160 9d06a259b0bbb138a116186f861de3a62a79953c wgetpaste-2.2.bz2 6416 +SHA256 0eabb287757d94855bb5e9f05ddd2dc008999c1b3c26fdc08e115038f59ff5dc wgetpaste-2.2.bz2 6416 diff --git a/app-text/wgetpaste/wgetpaste-2.2.ebuild b/app-text/wgetpaste/wgetpaste-2.2.ebuild new file mode 100644 index 000000000000..fa051eb13d39 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.2.ebuild,v 1.1 2007/04/09 11:37:25 armin76 Exp $ + +DESCRIPTION="Command-line interface to various pastebins" +HOMEPAGE="http://wgetpaste.zlin.dk/" +SRC_URI="${HOMEPAGE}/${PF}.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="sys-apps/sed + net-misc/wget" + +S="${WORKDIR}" + +src_compile() { + sed -i "s|@VERSION@|${PV}|" "${P}" || die "Failed to insert version." +} + +src_install() { + newbin "${P}" "${PN}" +} |