* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2018-03-29 11:29 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2018-03-29 11:29 UTC (permalink / raw
To: gentoo-commits
commit: 1ffea40c4a42bba612604c22f56cafc46f5fb4da
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 29 11:28:12 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 11:28:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffea40c
sys-libs/rpmatch-standalone: initial commit
This is a breakout library for rpmatch() which is not provided
by the musl libc. See `man 3 rpmatch'.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-libs/rpmatch-standalone/Manifest | 1 +
sys-libs/rpmatch-standalone/metadata.xml | 11 ++++++
.../rpmatch-standalone-1.0.ebuild | 39 ++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/sys-libs/rpmatch-standalone/Manifest b/sys-libs/rpmatch-standalone/Manifest
new file mode 100644
index 00000000000..0f7f82cf3b0
--- /dev/null
+++ b/sys-libs/rpmatch-standalone/Manifest
@@ -0,0 +1 @@
+DIST rpmatch-standalone-1.0.tar.gz 3151 BLAKE2B e396d18bfb092aa59c70e81028ba889c1095c97b5f13bffbb4ae7b97a1ce63a6c536663304e4fdefaa06a22854dd5b986ff7238f0091b23bcd336cc6db0fca75 SHA512 9d8fc3be66f23b57793eccf62998d1c0ff8df24d8781d37ee99faf618cdceeda778132df2c75ace2ecd8aa6392bcdf15eaa9ce0acd657401af049ccf61fd5b14
diff --git a/sys-libs/rpmatch-standalone/metadata.xml b/sys-libs/rpmatch-standalone/metadata.xml
new file mode 100644
index 00000000000..4aa32e43cbe
--- /dev/null
+++ b/sys-libs/rpmatch-standalone/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>blueness@gentoo.org</email>
+ <name>Anthony G. Basile</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">pullmoll/musl-rpmatch</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
new file mode 100644
index 00000000000..4881a46decc
--- /dev/null
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Standalone rpmatch library for use with musl"
+HOMEPAGE="https://github.com/pullmoll/musl-rpmatch"
+SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+IUSE="static-libs"
+
+DEPEND="
+ !sys-libs/glibc
+ !sys-libs/uclibc"
+
+S="${WORKDIR}/musl-rpmatch-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+
+ mkdir "${ED%/}"/usr/$(get_libdir)/pkgconfig/
+ cp "${S}"/musl-rpmatch.pc "${ED%/}"/usr/$(get_libdir)/pkgconfig/rpmatch-standalone.pc
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-01-01 20:08 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2022-01-01 20:08 UTC (permalink / raw
To: gentoo-commits
commit: 8127852654626e929ac32db0a81340799857df0c
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 1 20:07:34 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jan 1 20:07:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81278526
sys-libs/rpmatch-standalone: remove uclibc
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 4881a46decc1..6cacfa6cfc13 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -15,8 +15,7 @@ KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
IUSE="static-libs"
DEPEND="
- !sys-libs/glibc
- !sys-libs/uclibc"
+ !sys-libs/glibc"
S="${WORKDIR}/musl-rpmatch-${PV}"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 1:42 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 1:42 UTC (permalink / raw
To: gentoo-commits
commit: 66dbc4aca097f6f1e08b1e504fcac94c76347593
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 01:40:25 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 01:40:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66dbc4ac
sys-libs/rpmatch-standalone: Keyword 1.0 arm64, #874777
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 6cacfa6cfc13..89c22aa73fa8 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
IUSE="static-libs"
DEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 1:42 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 1:42 UTC (permalink / raw
To: gentoo-commits
commit: 57322a44aa7871a77b026e14fe688d007b507705
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 01:42:12 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 01:42:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57322a44
sys-libs/rpmatch-standalone: fix blocker
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 928b315aed2d..89d8a2b6abf9 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -14,8 +14,7 @@ SLOT="0"
KEYWORDS="amd64 arm arm64 ~mips ~ppc x86"
IUSE="static-libs"
-DEPEND="
- !sys-libs/glibc"
+RDEPEND="!sys-libs/glibc"
S="${WORKDIR}/musl-rpmatch-${PV}"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 1:42 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 1:42 UTC (permalink / raw
To: gentoo-commits
commit: da2563cf862f0a0a37bbb17395d30e677e45f872
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 01:41:54 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 01:41:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2563cf
sys-libs/rpmatch-standalone: stabilize 1.0 for amd64, arm, arm64, x86
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 89c22aa73fa8..928b315aed2d 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc x86"
IUSE="static-libs"
DEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 3:00 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 3:00 UTC (permalink / raw
To: gentoo-commits
commit: 1353462776dae67bdfe421f15f3d9b5869aea5af
Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Tue Oct 4 02:59:04 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 03:00:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13534627
sys-libs/rpmatch-standalone: Keyword 1.0 riscv, #874777
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 89d8a2b6abf9..b2c967403429 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 3:59 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 3:59 UTC (permalink / raw
To: gentoo-commits
commit: 5c32846a795f25bfec8df2b95bb477d57b6d2f3e
Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Tue Oct 4 03:57:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 03:59:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c32846a
sys-libs/rpmatch-standalone: Keyword 1.0 ppc64, #874777
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index b2c967403429..0a8f04ad642c 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 4:05 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 4:05 UTC (permalink / raw
To: gentoo-commits
commit: a4a4a4116d9daac330541df3c00fd24724b96988
Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Tue Oct 4 04:03:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 04:04:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4a4a411
sys-libs/rpmatch-standalone: Stabilize 1.0 ppc64, #874789
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 0a8f04ad642c..4a2cbb4393df 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2022-10-04 4:11 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-04 4:11 UTC (permalink / raw
To: gentoo-commits
commit: 392234057c3d199a4caded8e7151f611a1b4e61a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 04:11:40 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 04:11:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39223405
sys-libs/rpmatch-standalone: Stabilize 1.0 ppc, #874789
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
index 4a2cbb4393df..d6689b450bd9 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-04-20 19:17 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-04-20 19:17 UTC (permalink / raw
To: gentoo-commits
commit: b8ddda03538920c3114441dfc6c9560336930de1
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 19:16:46 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 19:16:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ddda03
sys-libs/rpmatch-standalone: EAPI 6 -> 8
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.../rpmatch-standalone-1.0-r1.ebuild | 36 ++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
new file mode 100644
index 000000000000..7310a10e2914
--- /dev/null
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Standalone rpmatch library for use with musl"
+HOMEPAGE="https://github.com/pullmoll/musl-rpmatch"
+SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/musl-rpmatch-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+IUSE="static-libs"
+
+RDEPEND="!sys-libs/glibc"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+
+ insinto /usr/$(get_libdir)/pkgconfig/
+ newins musl-rpmatch.pc ${PN}.pc
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: 4686ee1a91aa0be43faee90bded0896fcb0b6b2a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:51 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4686ee1a
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 ppc, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index 9813c359b2e3..43f6440420df 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: c765ee7c678c63bbfdcc81437b3b21dee159dcb9
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:43 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c765ee7c
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 x86, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index bd39978aff34..936481c70311 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: 9f3712c2d33865078dc3108b7414d6048e80b367
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:46 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f3712c2
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 arm, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index 936481c70311..c36aa22cdd7f 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: 9c12a519d1907b2449a78f260a8eec07673ffce2
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:54 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c12a519
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 ppc64, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index 43f6440420df..2f8ee77c2482 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: 77e61b9f08d79703e29657fc972667dd82755777
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:40 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e61b9f
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 amd64, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index 7310a10e2914..bd39978aff34 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 5:33 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 5:33 UTC (permalink / raw
To: gentoo-commits
commit: b83da700123d7be4c71d07aadc45787ee964aeb9
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 05:32:49 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 05:32:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83da700
sys-libs/rpmatch-standalone: Stabilize 1.0-r1 arm64, #932569
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
index c36aa22cdd7f..9813c359b2e3 100644
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
+++ b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/musl-rpmatch-${PV}"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv x86"
IUSE="static-libs"
RDEPEND="!sys-libs/glibc"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/
@ 2024-05-24 10:07 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-24 10:07 UTC (permalink / raw
To: gentoo-commits
commit: 6b7e609b347d7d25409008c6dbda9b4bea924208
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 10:07:29 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 24 10:07:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7e609b
sys-libs/rpmatch-standalone: drop 1.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.../rpmatch-standalone-1.0.ebuild | 37 ----------------------
1 file changed, 37 deletions(-)
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
deleted file mode 100644
index d6689b450bd9..000000000000
--- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Standalone rpmatch library for use with musl"
-HOMEPAGE="https://github.com/pullmoll/musl-rpmatch"
-SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86"
-IUSE="static-libs"
-
-RDEPEND="!sys-libs/glibc"
-
-S="${WORKDIR}/musl-rpmatch-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable static-libs static)
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-
- mkdir "${ED%/}"/usr/$(get_libdir)/pkgconfig/
- cp "${S}"/musl-rpmatch.pc "${ED%/}"/usr/$(get_libdir)/pkgconfig/rpmatch-standalone.pc
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-05-24 10:08 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-24 5:33 [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-05-24 10:07 Arthur Zamarin
2024-05-24 5:33 Arthur Zamarin
2024-05-24 5:33 Arthur Zamarin
2024-05-24 5:33 Arthur Zamarin
2024-05-24 5:33 Arthur Zamarin
2024-05-24 5:33 Arthur Zamarin
2024-04-20 19:17 Arthur Zamarin
2022-10-04 4:11 Sam James
2022-10-04 4:05 Sam James
2022-10-04 3:59 Sam James
2022-10-04 3:00 Sam James
2022-10-04 1:42 Sam James
2022-10-04 1:42 Sam James
2022-10-04 1:42 Sam James
2022-01-01 20:08 David Seifert
2018-03-29 11:29 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox