app-text/pastebinit: remove old version
authorChristoph Mende <angelos@gentoo.org>
Sun, 20 Sep 2015 11:12:40 +0000 (13:12 +0200)
committerChristoph Mende <angelos@gentoo.org>
Sun, 20 Sep 2015 11:33:18 +0000 (13:33 +0200)
Package-Manager: portage-2.2.20.1

app-text/pastebinit/Manifest
app-text/pastebinit/pastebinit-1.3.1-r2.ebuild [deleted file]

index 2504a0060d2348ee96a7c923ebb1a7655c19fce8..c00fdc08dea28e55adedc9fb3ac53e4aca3eb23e 100644 (file)
@@ -1,2 +1 @@
-DIST pastebinit-1.3.1.tar.bz2 35582 SHA256 0dcb6c4820f49cc7f97a7804254df1ae848cfc4fc63e08ca89a525b909709e29 SHA512 f9c4eafbe194dc7fe85ae37005846c38fe9863ed18406953fa6974d979592d74a01eba4dfde3e91da121d36355d87fd2464b565d0eb6aa0091b2b338989567bf WHIRLPOOL 42c58f5cad96361c7f254a17db5a14304ec523b1a50548f27c0a77336e9384f971267a753c1fbc538301dee6cd1d228333976d96618dec8d33539a3e85771525
 DIST pastebinit-1.4.1.tar.bz2 39202 SHA256 c23720ff19d239f7ae62dd7dc28f453aaea4823af29b1595ba2e58fe232988e6 SHA512 40cfdc22a9d168b239c799ecefca8b9a4f873edeb868803d8de4e57b291f695b9aa3f0b04d87b29ca1777917a53f0c210f20fa8661673630e9a29331e10dc065 WHIRLPOOL 49425b36db3477cd141eee676aa256c8d65567c189dd2cf90bfc53a29824f9611f5d9e54d1d470fdd747bacf141198fe49df7c25c83c96c98da85e3026af3056
diff --git a/app-text/pastebinit/pastebinit-1.3.1-r2.ebuild b/app-text/pastebinit/pastebinit-1.3.1-r2.ebuild
deleted file mode 100644 (file)
index 30eee6f..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="xml"
-
-inherit python-r1
-
-DESCRIPTION="A software that lets you send anything you want directly to a
-pastebin from the command line."
-HOMEPAGE="https://launchpad.net/pastebinit"
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="crypt"
-
-RDEPEND="${PYTHON_DEPS}
-       dev-python/configobj[${PYTHON_USEDEP}]
-       crypt? ( app-crypt/gnupg )"
-DEPEND="app-text/docbook-xsl-stylesheets"
-
-src_prepare() {
-       local mo=""
-
-       for lang in ${LINGUAS}; do
-               if [ -f po/${lang}.po ]; then
-                       mo="${mo} ${lang}.mo"
-               fi
-       done
-
-       sed -i -e "/^build-mo/s/:.*/:${mo}/" po/Makefile
-}
-
-src_compile() {
-       emake -C po
-       xsltproc --nonet \
-               "${EROOT}"usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \
-               pastebinit.xml || die
-}
-
-src_install() {
-       dobin pastebinit utils/pbput
-       python_replicate_script "${ED}usr/bin/${PN}"
-       dosym pbput /usr/bin/pbget
-       use crypt && dosym pbput /usr/bin/pbputs
-       dodoc README
-       doman pastebinit.1 utils/*.1
-       insinto /usr/share/locale
-       [[ -d po/mo ]] && doins -r po/mo/*
-       insinto /usr/share
-       doins -r pastebin.d
-}