summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-01-04 22:14:57 -0500
committerAaron Bauman <bman@gentoo.org>2020-01-04 22:14:57 -0500
commit0c00371747dc56f521f87460e57ced68e08d87c3 (patch)
tree92e104e4dc6391ac4e2d016502c8911cf0780e93
parentdev-python/utidylib: arm64 stable (bug #704478) (diff)
downloadgentoo-0c00371747dc56f521f87460e57ced68e08d87c3.tar.gz
gentoo-0c00371747dc56f521f87460e57ced68e08d87c3.tar.bz2
gentoo-0c00371747dc56f521f87460e57ced68e08d87c3.zip
app-text/pdfshuffler: drop last-rited pkg
Closes: https://bugs.gentoo.org/658302 Signed-off-by: Aaron Bauman <bman@gentoo.org>
-rw-r--r--app-text/pdfshuffler/Manifest1
-rw-r--r--app-text/pdfshuffler/files/pdfshuffler-PyPDF2.patch18
-rw-r--r--app-text/pdfshuffler/metadata.xml8
-rw-r--r--app-text/pdfshuffler/pdfshuffler-0.6.0-r1.ebuild24
4 files changed, 0 insertions, 51 deletions
diff --git a/app-text/pdfshuffler/Manifest b/app-text/pdfshuffler/Manifest
deleted file mode 100644
index b842258dec76..000000000000
--- a/app-text/pdfshuffler/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pdfshuffler-0.6.0.tar.gz 48071 BLAKE2B 8bcb513f1dd18cf9d6e17315a7a2ec5bbf5240176acd6deb6ec803900174a39927998210ab5e4aab9a7330821ce7d1ab266e1ae677e03fd51df305ceec9f5836 SHA512 e2563e9b5faf3ebac56f3840017ad9279a5e8e096c9f44ec053c617894910b1d0531457bc37d8fb9bc1db13ae25b94d55ca0b4ec26fbddeb9e51e6b4d75293fe
diff --git a/app-text/pdfshuffler/files/pdfshuffler-PyPDF2.patch b/app-text/pdfshuffler/files/pdfshuffler-PyPDF2.patch
deleted file mode 100644
index 8228c1765143..000000000000
--- a/app-text/pdfshuffler/files/pdfshuffler-PyPDF2.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -r -U2 pdfshuffler-0.6.0.orig/pdfshuffler/pdfshuffler.py pdfshuffler-0.6.0/pdfshuffler/pdfshuffler.py
---- pdfshuffler-0.6.0.orig/pdfshuffler/pdfshuffler.py 2012-04-28 21:15:17.000000000 +0700
-+++ pdfshuffler-0.6.0/pdfshuffler/pdfshuffler.py 2015-01-11 02:10:02.952809411 +0600
-@@ -72,5 +72,13 @@
-
- import poppler #for the rendering of pdf pages
--from pyPdf import PdfFileWriter, PdfFileReader
-+
-+try:
-+ from PyPDF2 import PdfFileWriter, PdfFileReader
-+except ImportError:
-+ try:
-+ from pyPdf import PdfFileWriter, PdfFileReader
-+ except ImportError:
-+ print('Neither PyPDF2 nor pyPdf found')
-+ sys.exit(1)
-
- from pdfshuffler_iconview import CellRendererImage
diff --git a/app-text/pdfshuffler/metadata.xml b/app-text/pdfshuffler/metadata.xml
deleted file mode 100644
index bab57cb53461..000000000000
--- a/app-text/pdfshuffler/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="sourceforge">pdfshuffler</remote-id>
-</upstream>
-</pkgmetadata>
diff --git a/app-text/pdfshuffler/pdfshuffler-0.6.0-r1.ebuild b/app-text/pdfshuffler/pdfshuffler-0.6.0-r1.ebuild
deleted file mode 100644
index 23dcc1238d34..000000000000
--- a/app-text/pdfshuffler/pdfshuffler-0.6.0-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-inherit distutils-r1 xdg
-
-DESCRIPTION="GUI app that can merge or split pdfs and rotate, crop and rearrange their pages"
-HOMEPAGE="https://sourceforge.net/projects/pdfshuffler/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="|| ( dev-python/PyPDF2 dev-python/pyPdf )
- dev-python/python-poppler"
-RDEPEND="${DEPEND}"
-
-DOCS=( ChangeLog README TODO AUTHORS )
-
-PATCHES=( "${FILESDIR}"/${PN}-PyPDF2.patch )