Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/cpdf/
Date: Sat, 28 Sep 2019 03:45:16
Message-Id: 1569642281.0883d204ffcfefe2ae047b96b2c093fe46c433ca.radhermit@gentoo
1 commit: 0883d204ffcfefe2ae047b96b2c093fe46c433ca
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 28 03:44:41 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 03:44:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0883d204
7
8 app-text/cpdf: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 app-text/cpdf/Manifest | 1 -
13 app-text/cpdf/cpdf-2.1.1-r1.ebuild | 41 --------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/app-text/cpdf/Manifest b/app-text/cpdf/Manifest
17 index 610aa4c715a..e8e2f5b13de 100644
18 --- a/app-text/cpdf/Manifest
19 +++ b/app-text/cpdf/Manifest
20 @@ -1,2 +1 @@
21 -DIST cpdf-2.1.1.tar.gz 349536 BLAKE2B 4064605890745ebaa24d32c3294a3293312dc8df6ab3989e1a7417989cdb19aca6b70faafb258c7c00d6febeba8b17379396c1f90628e72be0791cdefc579b6f SHA512 aa06efaf098d3fe3f560ea30da9c3546e13d294b22d61c4cc3df553eb90e338d59ee1b51d14d7982ce52967bcf98c2afec9a5b5ae101e2183961f4be862c6517
22 DIST cpdf-2.2.1.tar.gz 704730 BLAKE2B 1767d2c9fdc645b4ff97b828b1d7bedb22aa645444f299e36ec4717015ea7b87dbbac4c9ec27bb508a7adb28b2c75c155bf9094a168567abbffa93887712241d SHA512 3dda72513c551cca5d8cb60732b3f2c2e8ad400bd2c9fcf0c3b54a68e94385e3f19ec7713de95efa90eafb7b0077662097565a28616041019e03edf140b6af4f
23
24 diff --git a/app-text/cpdf/cpdf-2.1.1-r1.ebuild b/app-text/cpdf/cpdf-2.1.1-r1.ebuild
25 deleted file mode 100644
26 index 74a530638f3..00000000000
27 --- a/app-text/cpdf/cpdf-2.1.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit findlib
36 -
37 -DESCRIPTION="A command line tool for manipulating PDF files"
38 -HOMEPAGE="http://community.coherentpdf.com/ https://github.com/johnwhitington/cpdf-source/"
39 -SRC_URI="https://github.com/johnwhitington/cpdf-source/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -# BSD is only for xmlm.ml
42 -LICENSE="Coherent-Graphics BSD"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="doc"
46 -
47 -RDEPEND=">=dev-lang/ocaml-4:=
48 - dev-ml/camlpdf:="
49 -DEPEND="${RDEPEND}"
50 -
51 -RESTRICT="mirror bindist"
52 -
53 -S=${WORKDIR}/${PN}-source-${PV}
54 -
55 -src_compile() {
56 - # parallel make issues
57 - emake -j1
58 -}
59 -
60 -src_install() {
61 - findlib_src_install
62 -
63 - dobin cpdf
64 - dodoc Changes README.md
65 -
66 - if use doc ; then
67 - dodoc cpdfmanual.pdf
68 - dohtml doc/cpdf/html/*
69 - fi
70 -}