commit:     03fcac5d04b464a44c8aefda6654197eab404da0
Author:     Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> 
com>
AuthorDate: Sat Jun 17 06:10:28 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 02:12:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03fcac5d

dev-libs/rinutils: wire up tests

Bug: https://bugs.gentoo.org/908237
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/31522
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/rinutils/rinutils-0.10.2-r1.ebuild | 43 +++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/dev-libs/rinutils/rinutils-0.10.2-r1.ebuild 
b/dev-libs/rinutils/rinutils-0.10.2-r1.ebuild
new file mode 100644
index 000000000000..1ced32d57306
--- /dev/null
+++ b/dev-libs/rinutils/rinutils-0.10.2-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Set of C headers containing macros and static functions"
+HOMEPAGE="https://www.shlomifish.org/open-source/projects/ 
https://github.com/shlomif/rinutils";
+SRC_URI="https://github.com/shlomif/${PN}/releases/download/${PV}/${P}.tar.xz";
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+KEYWORDS="~alpha ~amd64"
+RESTRICT="!test? ( test )"
+
+DEPEND="${RDEPEND}
+       test? ( dev-util/cmocka )"
+BDEPEND="${RDEPEND}
+       test? (
+               dev-perl/Env-Path
+               dev-perl/Path-Tiny
+               dev-perl/Inline
+               dev-perl/Inline-C
+               dev-perl/Test-TrailingSpace
+               dev-perl/Test-Differences
+               dev-perl/IO-All
+               dev-perl/Perl-Critic
+               dev-perl/Perl-Tidy
+               dev-perl/Test-Pod
+               dev-perl/Test-Pod-Coverage
+               dev-perl/Test-Trap
+       )"
+
+src_configure() {
+       local mycmakeargs=(
+               -DDISABLE_APPLYING_RPATH=OFF
+               -DWITH_TEST_SUITE=$(usex test ON OFF)
+       )
+
+       cmake_src_configure
+}

Reply via email to