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: Tue, 30 Jun 2020 02:49:38
Message-Id: 1593483873.adec1cc5ae0f685550a9b6ae6a50f7fcb66e9383.radhermit@gentoo
1 commit: adec1cc5ae0f685550a9b6ae6a50f7fcb66e9383
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 02:24:33 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 02:24:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adec1cc5
7
8 media-libs/cimg: version bump to 2.9.1
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-libs/cimg/Manifest | 1 +
13 media-libs/cimg/cimg-2.9.1.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
17 index e76650b881d..6c7a05b193e 100644
18 --- a/media-libs/cimg/Manifest
19 +++ b/media-libs/cimg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cimg-2.8.3.tar.gz 11208996 BLAKE2B 1e76f99d20a99955647228cffe5fcd2c26596f4045c2a79cff45b089283146199054628d207c0dda5204d9aeb4c1269dc01639fb8bb1ad95ec61ee68186b9d53 SHA512 3404224446a76cba2295a70ef742cf337675b33481e10d79c94a3994c099bcde1e398b27bf5926395f99ef46fff790668a0ebd24dc894c47982ac1ceaa6d1d1c
22 DIST cimg-2.9.0.tar.gz 11213143 BLAKE2B 88f463990e1210221361be8d93bcad3abf19ba1f83440c102581417e66ebc771176a457d9516b4fe160e1640d3a996006aa64b218359397d75a204a3c34797fd SHA512 c3a45bdbf19a0598a7865920cc738deb71aa95351734d9bac9d77514dc6d5252433a28d4a8fe27aeb06b5c2557dc4e7a10e67cf788bcef2e52bf5038aa876031
23 +DIST cimg-2.9.1.tar.gz 11215948 BLAKE2B e655ddea292bdfede79cc93785aeb98890fc5c76697127ca53e2a2542ae4d2acef1d77f33464553e95b2fd6b224b6da671d554000463059a3cf307cd6bc9ec77 SHA512 9407a5f0fd68d03d164e07b0c41a4ee948605f656a1d4cb942cdc5b357515e5132e071036598b38ab56387c5cc6e574133357eacd4aef65a97b7fc1d605dae27
24
25 diff --git a/media-libs/cimg/cimg-2.9.1.ebuild b/media-libs/cimg/cimg-2.9.1.ebuild
26 new file mode 100644
27 index 00000000000..3205e035da6
28 --- /dev/null
29 +++ b/media-libs/cimg/cimg-2.9.1.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2020 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 +}