diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:26:05 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:02 +0000 |
commit | 2e76148fb887e42641f520a57cf1c453dfd4f79d (patch) | |
tree | 78d026b3632f687049ddd820d05183278750493a /app-text/pastebinit | |
parent | virtual/mailx: drop 3 (diff) | |
download | gentoo-2e76148fb887e42641f520a57cf1c453dfd4f79d.tar.gz gentoo-2e76148fb887e42641f520a57cf1c453dfd4f79d.tar.bz2 gentoo-2e76148fb887e42641f520a57cf1c453dfd4f79d.zip |
app-text/pastebinit: drop 1.5.1
Bug: https://bugs.gentoo.org/886683
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text/pastebinit')
-rw-r--r-- | app-text/pastebinit/metadata.xml | 3 | ||||
-rw-r--r-- | app-text/pastebinit/pastebinit-1.5.1.ebuild | 73 |
2 files changed, 0 insertions, 76 deletions
diff --git a/app-text/pastebinit/metadata.xml b/app-text/pastebinit/metadata.xml index 82a1a366072a..946d7034d93b 100644 --- a/app-text/pastebinit/metadata.xml +++ b/app-text/pastebinit/metadata.xml @@ -3,9 +3,6 @@ <pkgmetadata> <!--maintainer-needed--> <stabilize-allarches/> - <use> - <flag name="crypt">Install pbputs for gpg-encrypted pastes</flag> - </use> <upstream> <remote-id type="launchpad">pastebinit</remote-id> </upstream> diff --git a/app-text/pastebinit/pastebinit-1.5.1.ebuild b/app-text/pastebinit/pastebinit-1.5.1.ebuild deleted file mode 100644 index 1f6b2139f192..000000000000 --- a/app-text/pastebinit/pastebinit-1.5.1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="xml(+)" -inherit python-single-r1 - -MY_P="${PN}_${PV}" -DESCRIPTION="A software that lets you send anything you want directly to a pastebin" -HOMEPAGE="https://launchpad.net/pastebinit" -SRC_URI="mirror://ubuntu/pool/main/p/${PN}/${MY_P}.orig.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="crypt" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -BDEPEND="app-text/docbook-xsl-stylesheets" -RDEPEND=" - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/configobj[${PYTHON_USEDEP}] - ') - crypt? ( app-crypt/gnupg ) -" - -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 || die - - default -} - -src_compile() { - emake -C po - xsltproc --nonet \ - "${BROOT}"/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \ - pastebinit.xml || die -} - -src_install() { - dobin pastebinit utils/pbput - - python_fix_shebang "${ED}/usr/bin/${PN}" - - dosym pbput /usr/bin/pbget - - if use crypt; then - dosym pbput /usr/bin/pbputs - fi - - dodoc README - doman pastebinit.1 utils/*.1 - - if [[ -d po/mo ]]; then - insinto /usr/share/locale - doins -r po/mo/* - fi - - insinto /usr/share - doins -r pastebin.d -} |