* [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/
@ 2016-02-12 20:37 Mike Frysinger
0 siblings, 0 replies; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ 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; 10+ 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] 10+ messages in thread
end of thread, other threads:[~2024-06-28 13:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-21 2:22 [gentoo-commits] repo/gentoo:master commit in: sys-apps/ucspi-unix/ Yixun Lan
-- strict thread matches above, loose matches on Subject: below --
2024-06-28 13:42 Arthur Zamarin
2022-08-28 6:30 WANG Xuerui
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