Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cimg/
Date: Sat, 24 Aug 2019 04:50:01
Message-Id: 1566622172.77817c53c49f059be8a6c943dfc76d5de58f5814.radhermit@gentoo
1 commit: 77817c53c49f059be8a6c943dfc76d5de58f5814
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 24 04:07:44 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 24 04:49:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77817c53
7
8 media-libs/cimg: version bump to 2.7.0
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-libs/cimg/Manifest | 1 +
13 media-libs/cimg/cimg-2.7.0.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
17 index af1e7f66934..54eb421b6b9 100644
18 --- a/media-libs/cimg/Manifest
19 +++ b/media-libs/cimg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cimg-2.6.5.tar.gz 11071672 BLAKE2B 61fa37c2f78e09d6aba0eb867c3797f86ed5a685a114dae779e439c76f4cc9768fada70affd2b14139c7fe7b2e79b61e653165abc47833e3a5cf857af0eb4ca4 SHA512 d8c1e10f702b47f6788fedf27681fe8e7ab3994c8018f96d4964694edda6acb1ca040244d7d1436a5381ec5a12e7a2b991ede6d9ea6d961ae6c4842feb2bf141
22 DIST cimg-2.6.7.tar.gz 11072149 BLAKE2B 0695215eb57375ed216ab1b148bb09316af8f6e0191589e4a9a91b25355857a75d2f351d2e52584e626c8ff1f2aad940df4f8f0ee4c331ded62582804c3ce765 SHA512 9dadc0b7b1017ba19fb36232a32278c30628930b7c76a646ca343751754e10e1a1eb8a0c670ab308c437738ec28ceb324f6511ffb9c3bceabede01eb34b8a2e6
23 +DIST cimg-2.7.0.tar.gz 11076642 BLAKE2B db2c8715f25ec160cdf41ac2cc1bee366ef49dbd0b3e5bd5bf6b4b8a0ba4c880f6af4cbd78d843abf0edd99ca45337fd1bd5dc25779b94984a64f5217c3430a5 SHA512 b1b12f4b36d7d799da330bb2854732e6207aa73b4d28bf9a13408154664c2d518652065738d1964da00a022449a3b618b25b72ec17deec6df463ff6811c21b21
24
25 diff --git a/media-libs/cimg/cimg-2.7.0.ebuild b/media-libs/cimg/cimg-2.7.0.ebuild
26 new file mode 100644
27 index 00000000000..a3f01bc9ba2
28 --- /dev/null
29 +++ b/media-libs/cimg/cimg-2.7.0.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="C++ template image processing toolkit"
37 +HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg"
38 +SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="CeCILL-2 CeCILL-C"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="doc examples"
44 +
45 +S=${WORKDIR}/CImg-v.${PV}
46 +
47 +src_install() {
48 + doheader CImg.h
49 + dodoc README.txt
50 +
51 + use doc && dodoc -r html
52 + if use examples; then
53 + dodoc -r examples
54 + docompress -x /usr/share/doc/${PF}/examples
55 + fi
56 +}