public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/pfs/
@ 2024-05-21 10:28 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2024-05-21 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     e888840cad6e7ed35ffaf0e8c7632c29ef37867f
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue May 21 10:27:05 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue May 21 10:27:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e888840c

dev-libs/pfs: new package, add 0.10.0

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/pfs/Manifest          |  1 +
 dev-libs/pfs/metadata.xml      | 11 +++++++++++
 dev-libs/pfs/pfs-0.10.0.ebuild | 28 ++++++++++++++++++++++++++++
 3 files changed, 40 insertions(+)

diff --git a/dev-libs/pfs/Manifest b/dev-libs/pfs/Manifest
new file mode 100644
index 000000000000..53ded16be40e
--- /dev/null
+++ b/dev-libs/pfs/Manifest
@@ -0,0 +1 @@
+DIST pfs-0.10.0.tar.gz 239987 BLAKE2B 60c918e184cd2896da8df35daa5b33fb5a90a776d1297ffc48fa15fc0bab5c852e23418924b7427f6fe3fcce30a21ed7a291b5ab02cdd42d41b2189d5add8b28 SHA512 f8f46e664142f8b52f97f8c5974a8ae0a2002dca1a778f23e23b7d4da4d184c87441928cd5d0b40cc2106b2bb7cb9be330bdda0c4374a66acaf10edff069563f

diff --git a/dev-libs/pfs/metadata.xml b/dev-libs/pfs/metadata.xml
new file mode 100644
index 000000000000..e8b86cf9074c
--- /dev/null
+++ b/dev-libs/pfs/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>tupone@gentoo.org</email>
+		<name>Tupone Alfredo</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">dtrugman/pfs</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-libs/pfs/pfs-0.10.0.ebuild b/dev-libs/pfs/pfs-0.10.0.ebuild
new file mode 100644
index 000000000000..8cd01f1adc85
--- /dev/null
+++ b/dev-libs/pfs/pfs-0.10.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Production grade, very easy to use, procfs parsing library in C++"
+HOMEPAGE="https://github.com/dtrugman/pfs"
+SRC_URI="https://github.com/dtrugman/${PN}/archive/refs/tags/v${PV}.tar.gz
+	-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+	local mycmakeargs=(
+		-Dpfs_BUILD_TESTS=$(usex test)
+	)
+	cmake_src_configure
+}
+
+src_test() {
+	"${BUILD_DIR}"/out/unittest || die
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/pfs/
@ 2024-05-21 18:35 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2024-05-21 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1290f3f6291e538e6eda4eb78eb3907c7a0f6cfc
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue May 21 18:34:25 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue May 21 18:35:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1290f3f6

dev-libs/pfs: drop a failing test

Closes: https://bugs.gentoo.org/932363
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/pfs/pfs-0.10.0.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-libs/pfs/pfs-0.10.0.ebuild b/dev-libs/pfs/pfs-0.10.0.ebuild
index c1e363f9d030..f40731e44a48 100644
--- a/dev-libs/pfs/pfs-0.10.0.ebuild
+++ b/dev-libs/pfs/pfs-0.10.0.ebuild
@@ -18,6 +18,11 @@ RESTRICT="!test? ( test )"
 
 PATCHES=( "${FILESDIR}"/${P}-Werror.patch )
 
+src_prepare() {
+	rm test/test_proc_stat.cpp | dir
+	cmake_src_prepare
+}
+
 src_configure() {
 	local mycmakeargs=(
 		-Dpfs_BUILD_TESTS=$(usex test)


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/pfs/
@ 2025-03-02 13:51 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2025-03-02 13:51 UTC (permalink / raw
  To: gentoo-commits

commit:     ed29445abcc7a322f9846e54f8739bf62a0d2e50
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  2 13:48:59 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Mar  2 13:50:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed29445a

dev-libs/pfs: keyword 0.10.0 for ~arm64

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/pfs/pfs-0.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/pfs/pfs-0.10.0.ebuild b/dev-libs/pfs/pfs-0.10.0.ebuild
index f40731e44a48..d04c65c33bb6 100644
--- a/dev-libs/pfs/pfs-0.10.0.ebuild
+++ b/dev-libs/pfs/pfs-0.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2024 Gentoo Authors
+# Copyright 2024-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dtrugman/${PN}/archive/refs/tags/v${PV}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-03-02 13:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-02 13:51 [gentoo-commits] repo/gentoo:master commit in: dev-libs/pfs/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2024-05-21 18:35 Alfredo Tupone
2024-05-21 10:28 Alfredo Tupone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox