Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cimg/
Date: Sat, 26 Dec 2020 22:11:26
Message-Id: 1609020675.f5b3bafccd8614098028fbff39944f99b3e969d2.asturm@gentoo
1 commit: f5b3bafccd8614098028fbff39944f99b3e969d2
2 Author: John Helmert III <jchelmert3 <AT> posteo <DOT> net>
3 AuthorDate: Fri Dec 18 02:36:09 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 26 22:11:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b3bafc
7
8 media-libs/cimg: security bump to 2.9.3
9
10 Bug: https://bugs.gentoo.org/650426
11
12 Package-Manager: Portage-3.0.12, Repoman-3.0.2
13 Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
14 Closes: https://github.com/gentoo/gentoo/pull/18700
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 media-libs/cimg/Manifest | 1 +
18 media-libs/cimg/cimg-2.9.3.ebuild | 26 ++++++++++++++++++++++++++
19 2 files changed, 27 insertions(+)
20
21 diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
22 index 4f08814d54a..6cb2cd28236 100644
23 --- a/media-libs/cimg/Manifest
24 +++ b/media-libs/cimg/Manifest
25 @@ -1,2 +1,3 @@
26 DIST cimg-2.9.0.tar.gz 11213143 BLAKE2B 88f463990e1210221361be8d93bcad3abf19ba1f83440c102581417e66ebc771176a457d9516b4fe160e1640d3a996006aa64b218359397d75a204a3c34797fd SHA512 c3a45bdbf19a0598a7865920cc738deb71aa95351734d9bac9d77514dc6d5252433a28d4a8fe27aeb06b5c2557dc4e7a10e67cf788bcef2e52bf5038aa876031
27 DIST cimg-2.9.1.tar.gz 11215948 BLAKE2B e655ddea292bdfede79cc93785aeb98890fc5c76697127ca53e2a2542ae4d2acef1d77f33464553e95b2fd6b224b6da671d554000463059a3cf307cd6bc9ec77 SHA512 9407a5f0fd68d03d164e07b0c41a4ee948605f656a1d4cb942cdc5b357515e5132e071036598b38ab56387c5cc6e574133357eacd4aef65a97b7fc1d605dae27
28 +DIST cimg-2.9.3.tar.gz 11222797 BLAKE2B c2135a0219305dafde642198888f5a813f7c73a34dbb015b271cbfd601a4265fe0495cbd74a0ac502cbbd1b8ead49687a945d35d7eaffe5127cbdc9c67664c14 SHA512 038cfa0dbb8beeffa53cc84491988bfee27b0e3e74c3f802185669be5ddc85f0ab002a6bce0e57e3692aa6380715436078cbcccadb0e2b34442db50fc19c1aed
29
30 diff --git a/media-libs/cimg/cimg-2.9.3.ebuild b/media-libs/cimg/cimg-2.9.3.ebuild
31 new file mode 100644
32 index 00000000000..ab8c2c93c64
33 --- /dev/null
34 +++ b/media-libs/cimg/cimg-2.9.3.ebuild
35 @@ -0,0 +1,26 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +DESCRIPTION="C++ template image processing toolkit"
42 +HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg"
43 +SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="CeCILL-2 CeCILL-C"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="doc examples"
49 +
50 +S="${WORKDIR}/CImg-v.${PV}"
51 +
52 +src_install() {
53 + doheader CImg.h
54 + dodoc README.txt
55 +
56 + use doc && dodoc -r html
57 + if use examples; then
58 + dodoc -r examples
59 + docompress -x "/usr/share/doc/${PF}/examples"
60 + fi
61 +}