Gentoo Archives: gentoo-commits

From: Christoph Mende <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pastebinit/
Date: Sun, 20 Sep 2015 11:33:38
Message-Id: 1442748798.164cfeda05a18df0d75c24e687ac418ec28103c4.angelos@gentoo
1 commit: 164cfeda05a18df0d75c24e687ac418ec28103c4
2 Author: Christoph Mende <angelos <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 11:12:40 2015 +0000
4 Commit: Christoph Mende <angelos <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 11:33:18 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164cfeda
7
8 app-text/pastebinit: remove old version
9
10 Package-Manager: portage-2.2.20.1
11
12 app-text/pastebinit/Manifest | 1 -
13 app-text/pastebinit/pastebinit-1.3.1-r2.ebuild | 56 --------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/app-text/pastebinit/Manifest b/app-text/pastebinit/Manifest
17 index 2504a00..c00fdc0 100644
18 --- a/app-text/pastebinit/Manifest
19 +++ b/app-text/pastebinit/Manifest
20 @@ -1,2 +1 @@
21 -DIST pastebinit-1.3.1.tar.bz2 35582 SHA256 0dcb6c4820f49cc7f97a7804254df1ae848cfc4fc63e08ca89a525b909709e29 SHA512 f9c4eafbe194dc7fe85ae37005846c38fe9863ed18406953fa6974d979592d74a01eba4dfde3e91da121d36355d87fd2464b565d0eb6aa0091b2b338989567bf WHIRLPOOL 42c58f5cad96361c7f254a17db5a14304ec523b1a50548f27c0a77336e9384f971267a753c1fbc538301dee6cd1d228333976d96618dec8d33539a3e85771525
22 DIST pastebinit-1.4.1.tar.bz2 39202 SHA256 c23720ff19d239f7ae62dd7dc28f453aaea4823af29b1595ba2e58fe232988e6 SHA512 40cfdc22a9d168b239c799ecefca8b9a4f873edeb868803d8de4e57b291f695b9aa3f0b04d87b29ca1777917a53f0c210f20fa8661673630e9a29331e10dc065 WHIRLPOOL 49425b36db3477cd141eee676aa256c8d65567c189dd2cf90bfc53a29824f9611f5d9e54d1d470fdd747bacf141198fe49df7c25c83c96c98da85e3026af3056
23
24 diff --git a/app-text/pastebinit/pastebinit-1.3.1-r2.ebuild b/app-text/pastebinit/pastebinit-1.3.1-r2.ebuild
25 deleted file mode 100644
26 index 30eee6f..0000000
27 --- a/app-text/pastebinit/pastebinit-1.3.1-r2.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 )
36 -PYTHON_REQ_USE="xml"
37 -
38 -inherit python-r1
39 -
40 -DESCRIPTION="A software that lets you send anything you want directly to a
41 -pastebin from the command line."
42 -HOMEPAGE="https://launchpad.net/pastebinit"
43 -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="crypt"
49 -
50 -RDEPEND="${PYTHON_DEPS}
51 - dev-python/configobj[${PYTHON_USEDEP}]
52 - crypt? ( app-crypt/gnupg )"
53 -DEPEND="app-text/docbook-xsl-stylesheets"
54 -
55 -src_prepare() {
56 - local mo=""
57 -
58 - for lang in ${LINGUAS}; do
59 - if [ -f po/${lang}.po ]; then
60 - mo="${mo} ${lang}.mo"
61 - fi
62 - done
63 -
64 - sed -i -e "/^build-mo/s/:.*/:${mo}/" po/Makefile
65 -}
66 -
67 -src_compile() {
68 - emake -C po
69 - xsltproc --nonet \
70 - "${EROOT}"usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \
71 - pastebinit.xml || die
72 -}
73 -
74 -src_install() {
75 - dobin pastebinit utils/pbput
76 - python_replicate_script "${ED}usr/bin/${PN}"
77 - dosym pbput /usr/bin/pbget
78 - use crypt && dosym pbput /usr/bin/pbputs
79 - dodoc README
80 - doman pastebinit.1 utils/*.1
81 - insinto /usr/share/locale
82 - [[ -d po/mo ]] && doins -r po/mo/*
83 - insinto /usr/share
84 - doins -r pastebin.d
85 -}