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 015C615838C for ; Sat, 27 Jan 2024 10:22:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2870E29CD; Sat, 27 Jan 2024 10:22:57 +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 B544BE29CD for ; Sat, 27 Jan 2024 10:22:57 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C57D534343E for ; Sat, 27 Jan 2024 10:22:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D7E11492 for ; Sat, 27 Jan 2024 10:22:55 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1706350805.2dd3a8d117228f575688a0c862b0eb72a68cb9f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/inih/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/inih/Manifest dev-libs/inih/inih-58.ebuild X-VCS-Directories: dev-libs/inih/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2dd3a8d117228f575688a0c862b0eb72a68cb9f9 X-VCS-Branch: master Date: Sat, 27 Jan 2024 10:22:55 +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: 265a3379-060b-4f9b-9dee-c3635e670cb9 X-Archives-Hash: 885d53ce345962070b34b38a8540c78d commit: 2dd3a8d117228f575688a0c862b0eb72a68cb9f9 Author: Sam James gentoo org> AuthorDate: Sat Jan 27 10:07:36 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 27 10:20:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd3a8d1 dev-libs/inih: add 58 Signed-off-by: Sam James gentoo.org> dev-libs/inih/Manifest | 1 + dev-libs/inih/inih-58.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-libs/inih/Manifest b/dev-libs/inih/Manifest index 2895214469e9..52b0f107e155 100644 --- a/dev-libs/inih/Manifest +++ b/dev-libs/inih/Manifest @@ -1 +1,2 @@ DIST inih-57.tar.gz 18954 BLAKE2B df2e2a14b4186616071f6ad2a64e0423148fb9a4624a74d4b16845a4a12eb72b1965f1314b92a710b80cc68d85dbe4ef09d6db159b76be856a4041f21a8c520c SHA512 9f758df876df54ed7e228fd82044f184eefbe47e806cd1e6d62e1b0ea28e2c08e67fa743042d73b4baef0b882480e6afe2e72878b175822eb2bdbb6d89c0e411 +DIST inih-58.tar.gz 19964 BLAKE2B ba71b21b30c039df026adbd29b422b064934046ced21a37479421e866b73969826dc1fea4e3bc0c5ea427248c774d8f80b83056c54769d454bafa2f336d08024 SHA512 d69f488299c1896e87ddd3dd20cd9db5848da7afa4c6159b8a99ba9a5d33f35cadfdb9f65d6f2fe31decdbadb8b43bf610ff2699df475e1f9ff045e343ac26ae diff --git a/dev-libs/inih/inih-58.ebuild b/dev-libs/inih/inih-58.ebuild new file mode 100644 index 000000000000..6793c8255fc4 --- /dev/null +++ b/dev-libs/inih/inih-58.ebuild @@ -0,0 +1,30 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Tests not wired up to meson and don't seem to be intended for downstream use yet +# e.g. hardcoding gcc, just a shell script + +inherit meson-multilib + +DESCRIPTION="inih (INI not invented here) simple .INI file parser" +HOMEPAGE="https://github.com/benhoyt/inih" +SRC_URI="https://github.com/benhoyt/inih/archive/r${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/inih-r${PV} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +DOCS=( README.md ) + +src_configure() { + local emesonargs=( + -Ddefault_library=shared + -Ddistro_install=true + -Dwith_INIReader=true + ) + + meson-multilib_src_configure +}