* [gentoo-commits] repo/gentoo:master commit in: profiles/, app-text/chm2pdf/files/, app-text/chm2pdf/
@ 2018-12-11 13:34 Michał Górny
0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2018-12-11 13:34 UTC (permalink / raw
To: gentoo-commits
commit: 26b81ceb1e90dc36fd6c85c1617b22c70f7a029d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 11 13:26:05 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 11 13:26:05 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b81ceb
app-text/chm2pdf: Remove last-rited pkg
Closes: https://bugs.gentoo.org/662180
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-text/chm2pdf/Manifest | 1 -
app-text/chm2pdf/chm2pdf-0.9.1-r2.ebuild | 39 ------------------
app-text/chm2pdf/files/tempdir.patch | 71 --------------------------------
app-text/chm2pdf/metadata.xml | 8 ----
profiles/package.mask | 4 --
5 files changed, 123 deletions(-)
diff --git a/app-text/chm2pdf/Manifest b/app-text/chm2pdf/Manifest
deleted file mode 100644
index bfb78778741..00000000000
--- a/app-text/chm2pdf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST chm2pdf-0.9.1.tar.gz 19955 BLAKE2B 6f16f35d25904cf1b42e91c46f58b279fceb11a328a88e14f20a9749148a4a5932af4884a19f57dc89b0135b3b8acd2dc880265aa46dfb9887ab6212a59172bd SHA512 1d1997b17750f371e60cc6bf9693a8e4316deadd63247700f6ebd1bf02340f2e0524766a6be846d0f6349416b8551609da63fbf60ecd62766cf0d9b4f0c886d3
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 d4ace08fe54..00000000000
--- 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 6bb5fe55d00..00000000000
--- 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 98820e79c35..00000000000
--- a/app-text/chm2pdf/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="google-code">chm2pdf</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 31d1b31cbed..f5e0ef34bd6 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -251,10 +251,6 @@ net-dialup/ueagle4-atm
# instead. Removal in a month.
sys-block/rts_pstor
-# Pacho Ramos <pacho@gentoo.org> (11 Nov 2018)
-# Fails to run (#662180). Removal in a month.
-app-text/chm2pdf
-
# Mike Gilbert <floppym@gentoo.org> (10 Nov 2018)
# Open bugs and no Gentoo maintainer.
# Removal in 30 days.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-12-11 13:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-11 13:34 [gentoo-commits] repo/gentoo:master commit in: profiles/, app-text/chm2pdf/files/, app-text/chm2pdf/ Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox