Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/tcpdf/
Date: Tue, 20 Feb 2018 19:30:14
Message-Id: 1519154991.63726fd5f463a4384b6453420dd1114a06ee8c29.grknight@gentoo
1 commit: 63726fd5f463a4384b6453420dd1114a06ee8c29
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 20 19:27:36 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 20 19:29:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63726fd5
7
8 dev-php/tcpdf: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-php/tcpdf/Manifest | 1 -
13 dev-php/tcpdf/tcpdf-6.2.13-r1.ebuild | 36 ------------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-php/tcpdf/Manifest b/dev-php/tcpdf/Manifest
17 index 4e61a79d948..2899d3fc128 100644
18 --- a/dev-php/tcpdf/Manifest
19 +++ b/dev-php/tcpdf/Manifest
20 @@ -1,2 +1 @@
21 -DIST tcpdf-6.2.13.tar.gz 17003733 BLAKE2B c6cae507c7abcc18e9135d102c334b161acf9680c41f158116c001962f22f06038c1c3eaa36aa78ae521c22d943e309367162c38fb4e759b8f2399ca0f12852b SHA512 df140a305b17e868d5af1a9cfe07f76c1c511f437e70ce09484049c48e7f4501d7b59ad2dbccea4daaee283867fa71ec03924aa40d37ed495b77f65383f6ef85
22 DIST tcpdf-6.2.16.tar.gz 17006033 BLAKE2B a4a9b502812bca3babe9d89bc215e75c951a2f3649ac01cf7327d5e13ccfd36e9586eb15a712fd48245f504ace2bcf7075413f9ee06526f4dec5c7d6c3e34b9d SHA512 302022636cd2c178e2d015b702188d59b608855110928e253daf7dd14e117a6770ad85385023c7970f13347142c60cc62a8fbdcee471364c47cb499fc3fbaa6c
23
24 diff --git a/dev-php/tcpdf/tcpdf-6.2.13-r1.ebuild b/dev-php/tcpdf/tcpdf-6.2.13-r1.ebuild
25 deleted file mode 100644
26 index e1f0dfdbeca..00000000000
27 --- a/dev-php/tcpdf/tcpdf-6.2.13-r1.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -DESCRIPTION="TCPDF is a FLOSS PHP class for generating PDF documents"
36 -HOMEPAGE="http://www.tcpdf.org/"
37 -SRC_URI="https://github.com/tecnickcom/TCPDF/archive/${PV}.tar.gz
38 - -> ${P}.tar.gz"
39 -# Main source is LGPL-3+, some included fonts have other licenses
40 -LICENSE="LGPL-3+ GPL-3 BitstreamVera GPL-2"
41 -SLOT="0"
42 -KEYWORDS="~amd64 ~x86"
43 -IUSE="examples"
44 -
45 -RDEPEND="dev-lang/php"
46 -
47 -S="${WORKDIR}/${P^^}"
48 -
49 -src_install() {
50 - insinto /etc
51 - doins config/tcpdf_config.php
52 - # Create a symlink for the config file, because the library will only
53 - # look for it in its own source tree (not in /etc where we've put it).
54 - dosym /etc/tcpdf_config.php "/usr/share/php/${PN}/config/tcpdf_config.php"
55 -
56 - exeinto "/usr/share/php/${PN}/tools"
57 - doexe tools/tcpdf_addfont.php
58 -
59 - insinto "/usr/share/php/${PN}"
60 - doins tcpdf*.php
61 - doins -r include fonts
62 - dodoc CHANGELOG.TXT README.md
63 -
64 - use examples && dodoc -r examples
65 -}