* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2016-02-12 20:37 Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2016-02-12 20:37 UTC (permalink / raw
To: gentoo-commits
commit: cd22983691f12c91237ab65b48b52f5d0850cdcd
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 20:36:57 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 20:37:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd229836
sys-apps/ucspi-unix: block mk-livestatus over unixcat collision #480546
sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
index efffd41..f25f1e4 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
@@ -17,6 +17,8 @@ IUSE=""
# We statically link bglibs.
DEPEND=">=dev-libs/bglibs-1.106"
+# Block other unixcat installers. #480546
+RDEPEND="!net-analyzer/mk-livestatus"
src_prepare() {
epatch "${FILESDIR}"/${PN}-gentoo-head.patch
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2016-02-12 20:37 Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2016-02-12 20:37 UTC (permalink / raw
To: gentoo-commits
commit: 23c414767bfd7ff2dcfb5e70df63b82aad499a5c
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 20:30:56 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 20:37:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23c41476
sys-apps/ucspi-unix: respect user CPPFLAGS settings
Also pass CFLAGS during link to simplify people's usage.
sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
index 58359b6..7962db5 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
@@ -27,8 +27,8 @@ src_configure() {
local has_peercred
use kernel_linux && has_peercred="-DHASPEERCRED=1"
- echo "$(tc-getCC) ${CFLAGS} -I/usr/include/bglibs ${has_peercred} -D_GNU_SOURCE" > conf-cc
- echo "$(tc-getCC) ${LDFLAGS} -L/usr/$(get_libdir)/bglibs" > conf-ld
+ echo "$(tc-getCC) ${CPPFLAGS} ${CFLAGS} -I/usr/include/bglibs ${has_peercred} -D_GNU_SOURCE" > conf-cc
+ echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS} -L/usr/$(get_libdir)/bglibs" > conf-ld
}
src_install() {
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2016-02-12 20:37 Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2016-02-12 20:37 UTC (permalink / raw
To: gentoo-commits
commit: 808831653eca0c123b1a09c7940676ec2dc4030f
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 20:34:29 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 20:37:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80883165
sys-apps/ucspi-unix: update to EAPI=5
sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
index 2555e1a..efffd41 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI="2"
+EAPI="5"
inherit eutils toolchain-funcs multilib
@@ -15,6 +15,7 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
+# We statically link bglibs.
DEPEND=">=dev-libs/bglibs-1.106"
src_prepare() {
@@ -32,7 +33,7 @@ src_configure() {
}
src_install() {
- dobin unixserver unixclient unixcat || die
+ dobin unixserver unixclient unixcat
doman unixserver.1 unixclient.1
dodoc ANNOUNCEMENT NEWS PROTOCOL README TODO
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2016-02-12 20:37 Mike Frysinger
0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2016-02-12 20:37 UTC (permalink / raw
To: gentoo-commits
commit: 12fed7053a93f9249b89debd299289938194a156
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 20:32:58 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 20:37:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12fed705
sys-apps/ucspi-unix: leverage SYSROOT for cross-compiling
sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
index 7962db5..2555e1a 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild
@@ -27,8 +27,8 @@ src_configure() {
local has_peercred
use kernel_linux && has_peercred="-DHASPEERCRED=1"
- echo "$(tc-getCC) ${CPPFLAGS} ${CFLAGS} -I/usr/include/bglibs ${has_peercred} -D_GNU_SOURCE" > conf-cc
- echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS} -L/usr/$(get_libdir)/bglibs" > conf-ld
+ echo "$(tc-getCC) ${CPPFLAGS} ${CFLAGS} -I${SYSROOT}/usr/include/bglibs ${has_peercred} -D_GNU_SOURCE" > conf-cc
+ echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS} -L${SYSROOT}/usr/$(get_libdir)/bglibs" > conf-ld
}
src_install() {
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2019-10-06 21:18 Thomas Deutschmann
0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2019-10-06 21:18 UTC (permalink / raw
To: gentoo-commits
commit: b621126dbd39b94d54ab735ede6a77f9abfe38ed
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 21:07:24 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 6 21:18:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b621126d
sys-apps/ucspi-unix: x86 stable (bug #696352)
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index dd48c88398c..80b1c1808b2 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2019-10-07 8:42 Agostino Sarubbo
0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo @ 2019-10-07 8:42 UTC (permalink / raw
To: gentoo-commits
commit: d2811097288aa78ccd9cdaead0d2084f097eb9ab
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 7 08:40:24 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 08:40:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2811097
sys-apps/ucspi-unix: amd64 stable wrt bug #696352
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index 80b1c1808b2..97d04efb650 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2019-10-07 9:47 Agostino Sarubbo
0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo @ 2019-10-07 9:47 UTC (permalink / raw
To: gentoo-commits
commit: 7d5c5686f65868e834b63dd0c00548e9cc03ee42
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 7 09:46:11 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 09:47:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5c5686
sys-apps/ucspi-unix: ppc stable wrt bug #696352
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index 97d04efb650..393abef9c3f 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2021-07-21 2:22 Yixun Lan
0 siblings, 0 replies; 15+ messages in thread
From: Yixun Lan @ 2021-07-21 2:22 UTC (permalink / raw
To: gentoo-commits
commit: d15422ba5134785026bde4c79216029653d9580b
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Mon Jul 19 02:30:28 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Jul 21 02:21:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15422ba
sys-apps/ucspi-unix: keyword 1.0 for ~riscv
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index 393abef9c3f..6a03bc143d2 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~riscv ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2022-08-28 6:30 WANG Xuerui
0 siblings, 0 replies; 15+ messages in thread
From: WANG Xuerui @ 2022-08-28 6:30 UTC (permalink / raw
To: gentoo-commits
commit: 2362e00a405ab9db2852785fdb662484b67391a9
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 06:27:49 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 06:28:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2362e00a
sys-apps/ucspi-unix: keyword 1.0 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index 6a03bc143d24..0f7291eb308b 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ppc ~riscv ~sparc x86"
+KEYWORDS="amd64 ~loong ppc ~riscv ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2024-06-28 13:42 Arthur Zamarin
0 siblings, 0 replies; 15+ messages in thread
From: Arthur Zamarin @ 2024-06-28 13:42 UTC (permalink / raw
To: gentoo-commits
commit: e568cb432973e12f933d6203a72e887823a7aaff
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 28 13:41:21 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 28 13:41:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e568cb43
sys-apps/ucspi-unix: unkeyword 1.0 for ppc
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
index 0f7291eb308b..12b8b9d8a389 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~loong ppc ~riscv ~sparc x86"
+KEYWORDS="amd64 ~loong ~riscv ~sparc x86"
IUSE=""
# We statically link bglibs.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2025-05-21 21:45 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2025-05-21 21:45 UTC (permalink / raw
To: gentoo-commits
commit: 354a8949f5c3ea4a9efca969fe02e1369b9c7d42
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Mon May 12 16:26:29 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 21 21:43:12 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354a8949
sys-apps/ucspi-unix: metadata: add upstream & indent
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Part-of: https://github.com/gentoo/gentoo/pull/42059
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/ucspi-unix/metadata.xml | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/sys-apps/ucspi-unix/metadata.xml b/sys-apps/ucspi-unix/metadata.xml
index ea0a4ca31d9b..0032edff4b7e 100644
--- a/sys-apps/ucspi-unix/metadata.xml
+++ b/sys-apps/ucspi-unix/metadata.xml
@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>base-system@gentoo.org</email>
- <name>Gentoo Base System</name>
-</maintainer>
-<longdescription lang="en">
-This package contains UNIX domain socket client and server programs that
-conform to UCSPI, the UNIX Client-Server Program Interface.
-</longdescription>
+ <maintainer type="project">
+ <email>base-system@gentoo.org</email>
+ <name>Gentoo Base System</name>
+ </maintainer>
+ <longdescription lang="en">
+ This package contains UNIX domain socket client and server programs that
+ conform to UCSPI, the UNIX Client-Server Program Interface.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/bruceg/ucspi-unix/issues</bugs-to>
+ <changelog>https://untroubled.org/ucspi-unix/NEWS</changelog>
+ <remote-id type="github">bruceg/ucspi-unix</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2025-05-21 21:45 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2025-05-21 21:45 UTC (permalink / raw
To: gentoo-commits
commit: a3fa9efeea337acc66704a8ad786e2ecba58a483
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Mon May 12 16:28:43 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 21 21:43:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3fa9efe
sys-apps/ucspi-unix: bump EAPI
also
- remove "A " from DESCRIPTION
- remove empty IUSE
- remove dead block RDEPEND
- remove unneeded DOCS
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Part-of: https://github.com/gentoo/gentoo/pull/42059
Closes: https://github.com/gentoo/gentoo/pull/42059
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
new file mode 100644
index 000000000000..f22d4134ea79
--- /dev/null
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="UCSPI implementation for Unix domain sockets"
+HOMEPAGE="https://untroubled.org/ucspi-unix/"
+SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~loong ~riscv ~sparc ~x86"
+
+# We statically link bglibs.
+DEPEND=">=dev-libs/bglibs-2.04"
+
+src_configure() {
+ echo "$(tc-getCC) ${CFLAGS} -D_GNU_SOURCE" > conf-cc || die
+ echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
+}
+
+src_install() {
+ dobin unixserver unixclient unixcat
+ doman unixserver.1 unixclient.1
+ dodoc NEWS PROTOCOL README
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2025-06-22 16:58 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2025-06-22 16:58 UTC (permalink / raw
To: gentoo-commits
commit: 865707cc41e46c614026f596a5a38ba008cebba2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 22 16:55:29 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 22 16:57:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=865707cc
sys-apps/ucspi-unix: build w/ -std=gnu17
Other PRs sent to the same upstream haven't had a response so let's
just -std=gnu17 this.
Closes: https://bugs.gentoo.org/950208
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
index f22d4134ea79..f19eefeefaaa 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="UCSPI implementation for Unix domain sockets"
HOMEPAGE="https://untroubled.org/ucspi-unix/"
@@ -17,6 +17,9 @@ KEYWORDS="~amd64 ~loong ~riscv ~sparc ~x86"
DEPEND=">=dev-libs/bglibs-2.04"
src_configure() {
+ # bug #950208
+ append-cflags -std=gnu17
+
echo "$(tc-getCC) ${CFLAGS} -D_GNU_SOURCE" > conf-cc || die
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2025-09-03 3:34 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2025-09-03 3:34 UTC (permalink / raw
To: gentoo-commits
commit: c11887c4d282e39eec068f099527cd89970e43d9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 3 03:32:44 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 3 03:32:44 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11887c4
sys-apps/ucspi-unix: Stabilize 1.0-r1 amd64, #958633
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
index f19eefeefaaa..e1dfd4700be2 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~loong ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~loong ~riscv ~sparc ~x86"
# We statically link bglibs.
DEPEND=">=dev-libs/bglibs-2.04"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2025-09-03 3:34 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2025-09-03 3:34 UTC (permalink / raw
To: gentoo-commits
commit: 08f76d1fa7ca266b3ebeea8fb2e1dd7530563d84
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 3 03:32:48 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 3 03:32:48 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08f76d1f
sys-apps/ucspi-unix: Stabilize 1.0-r1 x86, #958633
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
index e1dfd4700be2..aa0dbcefde4a 100644
--- a/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
+++ b/sys-apps/ucspi-unix/ucspi-unix-1.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~loong ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~loong ~riscv ~sparc x86"
# We statically link bglibs.
DEPEND=">=dev-libs/bglibs-2.04"
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-09-03 3:34 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-03 3:34 [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-09-03 3:34 Sam James
2025-06-22 16:58 Sam James
2025-05-21 21:45 Sam James
2025-05-21 21:45 Sam James
2024-06-28 13:42 Arthur Zamarin
2022-08-28 6:30 WANG Xuerui
2021-07-21 2:22 Yixun Lan
2019-10-07 9:47 Agostino Sarubbo
2019-10-07 8:42 Agostino Sarubbo
2019-10-06 21:18 Thomas Deutschmann
2016-02-12 20:37 Mike Frysinger
2016-02-12 20:37 Mike Frysinger
2016-02-12 20:37 Mike Frysinger
2016-02-12 20:37 Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox