diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-07-03 22:22:37 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-07-03 22:24:06 -0400 |
commit | 17ed872c6334185fdebf3d60b2aa219fc1fe7516 (patch) | |
tree | 12e8c60e602df8f5c29d00e701eab0a16ede9847 /app-text | |
parent | media-plugins/kodi-pvr-nextpvr: 3.3.21 version bump (diff) | |
download | gentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.tar.gz gentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.tar.bz2 gentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.zip |
*/*: drop last-rited py2 packages
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/pylize/Manifest | 1 | ||||
-rw-r--r-- | app-text/pylize/files/pylize-pillow.patch | 13 | ||||
-rw-r--r-- | app-text/pylize/metadata.xml | 13 | ||||
-rw-r--r-- | app-text/pylize/pylize-1.3b-r2.ebuild | 49 |
4 files changed, 0 insertions, 76 deletions
diff --git a/app-text/pylize/Manifest b/app-text/pylize/Manifest deleted file mode 100644 index 9a0697265e9a..000000000000 --- a/app-text/pylize/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pylize-1.3b.tar.bz2 70979 BLAKE2B 3b90d60ef7c314e6f7683ebdfa4d518b64ebbfe3bbe39148409d50c41577c7850304eb11e588f99e9c22d550548cf81f5f93265624200395e7abe7557d738a0e SHA512 271be57bdebb605566a7ee0340d34247f8ede4df7ba729c85c23f6df1ca24cadb25c870cce5b1ac35544205d90e716742cd31e150b9a8f98b2dcfae441a76454 diff --git a/app-text/pylize/files/pylize-pillow.patch b/app-text/pylize/files/pylize-pillow.patch deleted file mode 100644 index 0b454b0b1712..000000000000 --- a/app-text/pylize/files/pylize-pillow.patch +++ /dev/null @@ -1,13 +0,0 @@ -Change PIL imports for Pillow compat -https://bugs.gentoo.org/show_bug.cgi?id=471502 ---- a/pylize.in -+++ b/pylize.in -@@ -113,7 +113,7 @@ - def mkLogoLink(meta): - if meta.has_key('logo'): - try: -- import Image -+ from PIL import Image - if os.path.exists(meta['logo']): - i = Image.open(meta['logo']) - else: diff --git a/app-text/pylize/metadata.xml b/app-text/pylize/metadata.xml deleted file mode 100644 index cd617926fcf3..000000000000 --- a/app-text/pylize/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription> -pylize is a Python script that generates a set of HTML files that -make up an on-screen presentation from a master file. The HTML files -can be viewed with any CSS-aware browser. The master file contains -the text for all the slides and some additional information like -title, author etc. pylize can also create a template master file for -you -</longdescription> -</pkgmetadata> diff --git a/app-text/pylize/pylize-1.3b-r2.ebuild b/app-text/pylize/pylize-1.3b-r2.ebuild deleted file mode 100644 index 1dc2b94a9c30..000000000000 --- a/app-text/pylize/pylize-1.3b-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 - -DESCRIPTION="Python HTML Slideshow Generator using HTML and CSS" -HOMEPAGE="http://www.chrisarndt.de/en/software/pylize/" -SRC_URI="http://www.chrisarndt.de/en/software/pylize/download/${P}.tar.bz2" - -IUSE="doc" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -DEPEND=" - $(python_gen_cond_dep ' - dev-python/empy[${PYTHON_MULTI_USEDEP}] - dev-python/pillow[${PYTHON_MULTI_USEDEP}] - ')" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-pillow.patch" ) - -python_configure() { - set -- "${PYTHON}" configure.py - echo "$@" - "$@" || die -} - -python_compile_all() { - if use doc; then - emake -C doc PYTHON="${PYTHON}" PYLIZE="../pylize" - fi -} - -python_install() { - distutils-r1_python_install - python_optimize "${ED%/}/usr/share/pylize" -} - -python_install_all() { - local DOCS=( Changelog README README.empy TODO ) - use doc && local HTML_DOCS=( doc/. ) - distutils-r1_python_install_all -} |