From de49812990871e1705b64051c35161d5e6400269 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 24 Dec 2018 14:11:38 +0000 Subject: gentoo resync : 24.12.2018 --- app-text/chm2pdf/Manifest | 4 -- app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild | 39 ------------------ app-text/chm2pdf/files/tempdir.patch | 71 -------------------------------- app-text/chm2pdf/metadata.xml | 8 ---- 4 files changed, 122 deletions(-) delete mode 100644 app-text/chm2pdf/Manifest delete mode 100644 app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild delete mode 100644 app-text/chm2pdf/files/tempdir.patch delete mode 100644 app-text/chm2pdf/metadata.xml (limited to 'app-text/chm2pdf') diff --git a/app-text/chm2pdf/Manifest b/app-text/chm2pdf/Manifest deleted file mode 100644 index 4d524828834f..000000000000 --- a/app-text/chm2pdf/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX tempdir.patch 3694 BLAKE2B a88d3709ee23f43ab6a9a9b3ec83306d964d3d791b4552f99df26bdf09924cc40b721b0f24c8807b47f0e91b3eb8d46dae1c15ee53b9fe7974431c523bda5b50 SHA512 e7d29e71afad11c79d508c35c9060a39308c78e654f00808cb38b7e75ebf5f885bbd436f58e9900977c2e81d0f4a7f543daeab6bd2f9a919c4c3b74dba33c325 -DIST chm2pdf-0.9.1.tar.gz 19955 BLAKE2B 6f16f35d25904cf1b42e91c46f58b279fceb11a328a88e14f20a9749148a4a5932af4884a19f57dc89b0135b3b8acd2dc880265aa46dfb9887ab6212a59172bd SHA512 1d1997b17750f371e60cc6bf9693a8e4316deadd63247700f6ebd1bf02340f2e0524766a6be846d0f6349416b8551609da63fbf60ecd62766cf0d9b4f0c886d3 -EBUILD chm2pdf-0.9.1-r2.ebuild 768 BLAKE2B 3dee8875ae605f35e8e3cbc992d74ae0a3188a9801183775a7a15eff4f64009a44235e9498be0e68fb8065cd1a6391adb4ab8e16b79ee0473ca637cd2c7c8397 SHA512 e6015c7b5eed96714e2afac98132141f55067654cd65dfb510c4266a68fc69328fbaa28bc771cc8978ec45f512f50e3d4234e7be1c9f09932daec093ef35a7cf -MISC metadata.xml 244 BLAKE2B d68384fb6b1d1dbb9d20cd76c4991aa746477d14e2b318cecdcd66166758beef130e69ddf71dc7e27071af3ae234b537b106a9daf719d0f6f6039aa82702cb0c SHA512 6c2761abb4bf0f08e2bb5eaf232dfec4cc83a1617acd7954a5c7e0987056b1a8b3efdcee1a1c718436aa33c440bb65368dc1231e7146f9c795f696ba5686b644 diff --git a/app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild b/app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild deleted file mode 100644 index d4ace08fe54d..000000000000 --- a/app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 - -DESCRIPTION="A script that converts a CHM file into a single PDF file" -HOMEPAGE="https://code.google.com/p/chm2pdf/" -SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="amd64 x86" -SLOT="0" -IUSE="" - -RDEPEND="dev-python/pychm[${PYTHON_USEDEP}] - app-text/htmldoc - >=dev-libs/chmlib-0.40-r1[examples] - ${PYTHON_DEPS}" - -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -PATCHES=( "${FILESDIR}/tempdir.patch" ) - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_prepare(){ - python_fix_shebang . -} - -src_install() { - default - python_doscript ${PN} || die "failed to create executable" -} diff --git a/app-text/chm2pdf/files/tempdir.patch b/app-text/chm2pdf/files/tempdir.patch deleted file mode 100644 index 6bb5fe55d00d..000000000000 --- a/app-text/chm2pdf/files/tempdir.patch +++ /dev/null @@ -1,71 +0,0 @@ ---- chm2pdf-0.9.1.orig/chm2pdf 2008-07-09 12:42:26.000000000 +0200 -+++ chm2pdf-0.9.1/chm2pdf 2009-02-25 20:58:53.000000000 +0100 -@@ -27,6 +27,8 @@ - import os, os.path - import re, glob - import getopt -+import tempfile -+import shutil - # from BeautifulSoup import BeautifulSoup - - global version -@@ -39,8 +41,8 @@ - global filename #the input filename - - version = '0.9.1' --CHM2PDF_TEMP_WORK_DIR='/tmp/chm2pdf/work' --CHM2PDF_TEMP_ORIG_DIR='/tmp/chm2pdf/orig' -+CHM2PDF_TEMP_WORK_DIR=tempfile.mkdtemp() -+CHM2PDF_TEMP_ORIG_DIR=tempfile.mkdtemp() - - - -@@ -299,16 +301,6 @@ - # ########################### File extraction and correction: START ############################ - # - if options['dontextract'] == '': -- -- try: -- os.mkdir(CHM2PDF_TEMP_WORK_DIR) -- except OSError: # The directory already exists. -- pass -- -- try: -- os.mkdir(CHM2PDF_TEMP_ORIG_DIR) -- except OSError: # The directory already exists. -- pass - - try: - os.mkdir(CHM2PDF_ORIG_DIR) -@@ -620,7 +612,7 @@ - print '\t--continuous\n\t\tSpecifies that the HTML sources are unstructured (plain web pages).\n\t\tNo page breaks are inserted between each file or URL in the output.' - print '\t--cookies \'name="value with space"; name=value\'\n\t\t' - print '\t--datadir directory\n\t\tSpecifies the location of the HTMLDOC data files, usually /usr/share/htmldoc or C:\Program Files\HTMLDOC ' -- print "\t--dontextract \n\t\tIf given, %s will not extract the HTML files from the given CHM file, but will use previously extracted copies from the temporary directory " %name + '(i.e. ' + CHM2PDF_TEMP_ORIG_DIR + ' and ' + CHM2PDF_TEMP_WORK_DIR + '). Usually you will use this option after you have used the \'--extract-only\' option to extract the files in order to correct them manually (in ' + CHM2PDF_TEMP_WORK_DIR + '). After the correction, a call with \'--dontextract\' will not overwrite your changes, but will use the corrected files instead.' -+# print "\t--dontextract \n\t\tIf given, %s will not extract the HTML files from the given CHM file, but will use previously extracted copies from the temporary directory " %name + '(i.e. ' + CHM2PDF_TEMP_ORIG_DIR + ' and ' + CHM2PDF_TEMP_WORK_DIR + '). Usually you will use this option after you have used the \'--extract-only\' option to extract the files in order to correct them manually (in ' + CHM2PDF_TEMP_WORK_DIR + '). After the correction, a call with \'--dontextract\' will not overwrite your changes, but will use the corrected files instead.' - print '\t--duplex\n\t\tSpecifies that the output should be formatted for double-sided printing.' - print '\t--effectduration {0.1..10.0}\n\t\tSpecifies the duration in seconds of PDF page transition effects.' - print '\t--embedfonts\n\t\tSpecifies that fonts should be embedded in PDF output.' -@@ -1084,13 +1076,6 @@ - print 'CHM file "' + filename + '" not found!' - return - -- #remove temporary files -- if options['dontextract'] == '': -- if options['verbose']=='--verbose' and options['verbositylevel']=='high': -- print 'Removing any previous temporary files...' -- os.system('rm -r '+CHM2PDF_ORIG_DIR+'/*') -- os.system('rm -r '+CHM2PDF_WORK_DIR+'/*') -- - cfile = chm.CHMFile() - cfile.LoadCHM(filename) - -@@ -1105,6 +1090,8 @@ - os.system('extract_chmLib ' + filename + ' ' + CHM2PDF_ORIG_DIR + '&> /dev/null') - - convert_to_pdf(cfile, filename, outputfilename, options) -+ shutil.rmtree(CHM2PDF_TEMP_WORK_DIR) -+ shutil.rmtree(CHM2PDF_TEMP_ORIG_DIR) - - - if __name__ == '__main__': diff --git a/app-text/chm2pdf/metadata.xml b/app-text/chm2pdf/metadata.xml deleted file mode 100644 index 98820e79c356..000000000000 --- a/app-text/chm2pdf/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - chm2pdf - - -- cgit v1.2.3