From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31C96158083 for ; Tue, 24 Sep 2024 05:50:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16E422BC03F; Tue, 24 Sep 2024 05:50:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC0F42BC03F for ; Tue, 24 Sep 2024 05:50:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7D71340836 for ; Tue, 24 Sep 2024 05:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8768B1F46 for ; Tue, 24 Sep 2024 05:50:36 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1727157032.9811ec463f754ec388963733a2636ee94adf5c10.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cimg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/cimg/Manifest media-libs/cimg/cimg-3.4.1.ebuild X-VCS-Directories: media-libs/cimg/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 9811ec463f754ec388963733a2636ee94adf5c10 X-VCS-Branch: master Date: Tue, 24 Sep 2024 05:50:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4a825d2c-e365-4521-ad64-33a4b465abab X-Archives-Hash: 055dd85546106c0489afc8605a2f1d96 commit: 9811ec463f754ec388963733a2636ee94adf5c10 Author: Filip Kobierski pm me> AuthorDate: Tue Sep 3 15:49:06 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 24 05:50:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9811ec46 media-libs/cimg: add 3.4.1 Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/38411 Signed-off-by: Joonas Niilola gentoo.org> media-libs/cimg/Manifest | 1 + media-libs/cimg/cimg-3.4.1.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest index 9efa6ce087b9..f8c3a9a02786 100644 --- a/media-libs/cimg/Manifest +++ b/media-libs/cimg/Manifest @@ -1 +1,2 @@ DIST cimg-3.2.4.tar.gz 12660194 BLAKE2B f30f24e388a066a6923a72be00055449862cc643bbe870e55198718e185d2fe9213cb8f19cb83c68fe6ff5ea4e93c2529f70c7256b2d022b304cb2b020f0db11 SHA512 71cbf5161a7778a14e105d8aa41bf0431303b6f4a0f4982d3788903b0505f5ae96be9515c67ea6a52e0e76fdcb25efe3cfd7684980545d078ff41e10dbb4fbb6 +DIST cimg-3.4.1.tar.gz 12667815 BLAKE2B ad65938c75e28dbf9645e23972bd7d4e867c0ec16df686ce16b56cf4704869159ae3716d5d10675ac5965832341551612fbdb78ac6e5ca79157c948200ec031c SHA512 54357c177c1e25117778d444e0317a5a5f9dc9dd40ff2c280b6c05f846b2352c523ba6ab9eeea2e05094cc8fbbfe5a544a5f83eeda46394b3d87962b3b1e31d5 diff --git a/media-libs/cimg/cimg-3.4.1.ebuild b/media-libs/cimg/cimg-3.4.1.ebuild new file mode 100644 index 000000000000..81ead1e98430 --- /dev/null +++ b/media-libs/cimg/cimg-3.4.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="C++ template image processing toolkit" +HOMEPAGE="https://cimg.eu/ https://github.com/GreycLab/CImg" +SRC_URI="https://github.com/GreycLab/CImg/archive/v.${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/CImg-v.${PV}" + +LICENSE="CeCILL-2 CeCILL-C" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +src_install() { + doheader CImg.h + dodoc README.txt + + use doc && dodoc -r html + if use examples; then + dodoc -r examples + docompress -x "/usr/share/doc/${PF}/examples" + fi +}