From d87262dd706fec50cd150aab3e93883b6337466d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:56:41 +0100 Subject: gentoo resync : 14.07.2018 --- app-text/pylize/Manifest | 4 --- app-text/pylize/files/pylize-pillow.patch | 13 --------- app-text/pylize/metadata.xml | 13 --------- app-text/pylize/pylize-1.3b-r1.ebuild | 46 ------------------------------- 4 files changed, 76 deletions(-) delete mode 100644 app-text/pylize/Manifest delete mode 100644 app-text/pylize/files/pylize-pillow.patch delete mode 100644 app-text/pylize/metadata.xml delete mode 100644 app-text/pylize/pylize-1.3b-r1.ebuild (limited to 'app-text/pylize') diff --git a/app-text/pylize/Manifest b/app-text/pylize/Manifest deleted file mode 100644 index a7b90d4c96f6..000000000000 --- a/app-text/pylize/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX pylize-pillow.patch 375 BLAKE2B 9aaf388fc67d03d9af957a1aee350891ded225b0f0def122120d23e7cb1981fe70a8ba7169806a94de913ddea4d8019687ac3088b2e0b318451dc423e6eb75e6 SHA512 5e6beeb1a0192328039d581eeaf568e606a1fa002f8d91ddb397e27d873e23834fda67cd88a5afb24563a515cb37c234ed2d8c913472ce9fccd431249be852dc -DIST pylize-1.3b.tar.bz2 70979 BLAKE2B 3b90d60ef7c314e6f7683ebdfa4d518b64ebbfe3bbe39148409d50c41577c7850304eb11e588f99e9c22d550548cf81f5f93265624200395e7abe7557d738a0e SHA512 271be57bdebb605566a7ee0340d34247f8ede4df7ba729c85c23f6df1ca24cadb25c870cce5b1ac35544205d90e716742cd31e150b9a8f98b2dcfae441a76454 -EBUILD pylize-1.3b-r1.ebuild 1029 BLAKE2B e664ef860482affaa8dbc45dd862263a090ce90fbf133bc30436ad1c173c045383761fe4c007cae861b79a313ab8538c6e2bf05e937686e8e71e6bcee10afecd SHA512 dada782c5b6a0f6d146d20ad26ddbaef46cd7476c8c5fa5143904855178676fbe028a22ef01c213af2ae052c7c8b6e227ed506a49dbb8f4e3931708264346fe2 -MISC metadata.xml 547 BLAKE2B d6d76c0357be91f51c01a0d0031c2a221e27dcdb65b300bd63bd614bd5fd29ea000903ed7206167ef3055b1da85297319a4d5517a0f80077ae2a0d072124afd1 SHA512 bf43543c0b0c4f90940d0a5b40c342d9151673418994e074421e723ed8242fa742cc06b93cf846bf8b860b997faa68b4f0f978d274434bb33b77c3e9cddec435 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 @@ - - - - - -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 - - diff --git a/app-text/pylize/pylize-1.3b-r1.ebuild b/app-text/pylize/pylize-1.3b-r1.ebuild deleted file mode 100644 index a82f173bad45..000000000000 --- a/app-text/pylize/pylize-1.3b-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# 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="dev-python/empy[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_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" || die - 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 -} -- cgit v1.2.3