summaryrefslogtreecommitdiff
path: root/games-misc/ponysay
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-misc/ponysay
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-misc/ponysay')
-rw-r--r--games-misc/ponysay/Manifest3
-rw-r--r--games-misc/ponysay/metadata.xml15
-rw-r--r--games-misc/ponysay/ponysay-3.0.2.ebuild60
3 files changed, 0 insertions, 78 deletions
diff --git a/games-misc/ponysay/Manifest b/games-misc/ponysay/Manifest
deleted file mode 100644
index 613eaae338f2..000000000000
--- a/games-misc/ponysay/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ponysay-3.0.2.tar.gz 2110382 BLAKE2B eb547ca62315c1aff227bec5e71328b1e333ba6aa14061b262d1130997ec2de2d54665fd498c8c571eacce15757030ca84d29d82a40b9fc82675d63e62617118 SHA512 47d5c584b3b8c233567eff534b5109548c92075f69776703bc303929ba4278f67fd599987ef4a098aa871c2af0efd89186f96fa28565e73b4672abeb0c23fa45
-EBUILD ponysay-3.0.2.ebuild 1459 BLAKE2B 0253592c9606c3d0ddb8e459bb60d34f38449d81c2d2477e3811cb631aa7cc520f9fc15d43051d2afc9507685ed59603edd426f0a7567f5c1137e8bcdac9f00d SHA512 18abbfbd9ff75b7a101deb9e4a44ef11b5d67ab405bb5b8957ccbc5a576d58c6aacda1edf0ff538531f82bdc0b1ce2cba09ed59d5fd2c08cb4f7f049c357f636
-MISC metadata.xml 500 BLAKE2B a937b3dcb9fb8a11ceefa20731973096578f503d711731a22afd3fbaea75b25d37cb736af36fbe8696a0d01afca261a4156444ac6b26b9a87f30f29d785f7408 SHA512 612eee4d25e1f3e3ef18b08ac4fcf59fbee5ab179d1f4da5e6784909c1985aa816317eba1a4c1a0aae8b1dfc0bfcc63ea44ab844b1400e565a2ebfaf5d7f8d4c
diff --git a/games-misc/ponysay/metadata.xml b/games-misc/ponysay/metadata.xml
deleted file mode 100644
index 288c0bcfb305..000000000000
--- a/games-misc/ponysay/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <use>
- <flag name="fish-completion">Enable fish completion support</flag>
- <flag name="non-free">Install non-free ponies (i.e. from the MLP franchise)</flag>
- </use>
- <upstream>
- <remote-id type="github">erkin/ponysay</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/games-misc/ponysay/ponysay-3.0.2.ebuild b/games-misc/ponysay/ponysay-3.0.2.ebuild
deleted file mode 100644
index f71db68ff6b6..000000000000
--- a/games-misc/ponysay/ponysay-3.0.2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit bash-completion-r1 python-single-r1
-
-DESCRIPTION="cowsay reimplemention for ponies"
-HOMEPAGE="https://github.com/erkin/ponysay"
-SRC_URI="https://github.com/erkin/ponysay/archive/3.0.2.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc +non-free bash-completion fish-completion zsh-completion"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- doc? ( sys-apps/texinfo )"
-
-RDEPEND="${PYTHON_DEPS}
- fish-completion? ( app-shells/fish )
- zsh-completion? ( app-shells/zsh )"
-
-setup_py() {
- "${PYTHON}" setup.py \
- --prefix="${EPREFIX}"/usr \
- --everything \
- --without-info-compression \
- --without-man-compression \
- --without-pdf-compression \
- --without-shared-cache \
- --freedom=$(usex non-free no yes) \
- $(use_with fish-completion) \
- $(use_with zsh-completion) \
- $(use_with doc info) \
- $(use_with doc pdf "${EPREFIX}"/usr/share/doc/${PF}) \
- "${@}" || die
-}
-
-src_compile() {
- setup_py \
- $(use_with bash-completion) \
- build
-}
-
-src_install() {
- setup_py \
- --without-bash-completion \
- --destdir="${D}" \
- prebuilt
-
- python_fix_shebang "${ED}"/usr/bin/${PN}
-
- rm -rv "${ED}"/usr/share/licenses || die
- dodoc CHANGELOG CONTRIBUTING CREDITS README.md
-
- use bash-completion &&
- newbashcomp completion/bash-completion.${PN}.install ${PN}
-}