diff options
author | 2007-11-08 16:11:31 +0000 | |
---|---|---|
committer | 2007-11-08 16:11:31 +0000 | |
commit | 93ceae14dc3c52a234f20af03bbbc726b514b4b7 (patch) | |
tree | e91aa733bd63ebe431cd7ca706b98475c329d11f /app-text/nopaste | |
parent | Version bump from project overlay (diff) | |
download | gentoo-2-93ceae14dc3c52a234f20af03bbbc726b514b4b7.tar.gz gentoo-2-93ceae14dc3c52a234f20af03bbbc726b514b4b7.tar.bz2 gentoo-2-93ceae14dc3c52a234f20af03bbbc726b514b4b7.zip |
Version bump with slightly better error handling wrt #193170, thanks to Aron Griffis.
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-text/nopaste')
-rw-r--r-- | app-text/nopaste/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/nopaste/files/digest-nopaste-2802 | 3 | ||||
-rw-r--r-- | app-text/nopaste/nopaste-2802.ebuild | 25 |
3 files changed, 35 insertions, 1 deletions
diff --git a/app-text/nopaste/ChangeLog b/app-text/nopaste/ChangeLog index d6ba5bd89e86..0d2f721358e2 100644 --- a/app-text/nopaste/ChangeLog +++ b/app-text/nopaste/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/nopaste # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/nopaste/ChangeLog,v 1.17 2007/10/15 08:12:06 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/nopaste/ChangeLog,v 1.18 2007/11/08 16:11:30 drac Exp $ + +*nopaste-2802 (08 Nov 2007) + + 08 Nov 2007; Samuli Suominen <drac@gentoo.org> +nopaste-2802.ebuild: + Version bump with slightly better error handling wrt #193170, thanks to Aron + Griffis. 15 Oct 2007; Krzysiek Pawlik <nelchael@gentoo.org> nopaste-1992.ebuild: Remove x11-misc/xcut from RDEPEND. diff --git a/app-text/nopaste/files/digest-nopaste-2802 b/app-text/nopaste/files/digest-nopaste-2802 new file mode 100644 index 000000000000..dc000439332f --- /dev/null +++ b/app-text/nopaste/files/digest-nopaste-2802 @@ -0,0 +1,3 @@ +MD5 262d5050780c22aa44ebbdd37e3640b9 nopaste-2802 4022 +RMD160 6924f61ed91b6d8b9ae9b5da214601d56d030c17 nopaste-2802 4022 +SHA256 b5679a55a6a8815564cc845e91ef0c2a9effb31c21c56e4342770a8582b49255 nopaste-2802 4022 diff --git a/app-text/nopaste/nopaste-2802.ebuild b/app-text/nopaste/nopaste-2802.ebuild new file mode 100644 index 000000000000..d1d97b0e57d6 --- /dev/null +++ b/app-text/nopaste/nopaste-2802.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/nopaste/nopaste-2802.ebuild,v 1.1 2007/11/08 16:11:30 drac Exp $ + +DESCRIPTION="command-line interface to rafb.net/paste" +HOMEPAGE="http://n01se.net/agriffis/nopaste" +SRC_URI="${HOMEPAGE}/${P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc-fbsd ~sparc ~x86 ~x86-fbsd" +IUSE="X" + +DEPEND="" +RDEPEND="${DEPEND} + dev-lang/ruby + X? ( x11-misc/xclip )" + +S=${WORKDIR} + +src_unpack() { :; } + +src_install() { + newbin "${DISTDIR}"/${P} ${PN} +} |