* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-02-28 17:21 Alexis Ballier
0 siblings, 0 replies; 15+ messages in thread
From: Alexis Ballier @ 2016-02-28 17:21 UTC (permalink / raw
To: gentoo-commits
commit: aa6297e7c2c0773dfc5be78f6be19e8af61f2b3d
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 17:21:42 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 17:21:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6297e7
profiles/default/bsd/fbsd/profile.bashrc: alias gnu tools only if present. This helps when building from linux.
profiles/default/bsd/fbsd/profile.bashrc | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc
index 2293f49..6ddf594 100644
--- a/profiles/default/bsd/fbsd/profile.bashrc
+++ b/profiles/default/bsd/fbsd/profile.bashrc
@@ -2,12 +2,11 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Id$
-alias make=gmake
-alias patch=gpatch
-alias sed=gsed
-alias awk=gawk
-# findutils stuff
-type -P gfind > /dev/null && alias find=gfind
+type -P gmake > /dev/null && alias make=gmake
+type -P gpath > /dev/null && alias patch=gpatch
+type -P gsed > /dev/null && alias sed=gsed
+type -P gaws > /dev/null && alias awk=gawk
+type -P gfind > /dev/null && alias find=gfind
type -P gxargs > /dev/null && alias xargs=gxargs
# Attempt to point the default SHELL used by configure scripts to bash.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-03-01 7:53 Alexis Ballier
0 siblings, 0 replies; 15+ messages in thread
From: Alexis Ballier @ 2016-03-01 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 65f2936f7dc7020bbf0c871b618c44a9dfe6d93b
Author: Yuta Satoh <nigoro.dev <AT> gmail <DOT> com>
AuthorDate: Mon Feb 29 14:04:43 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Feb 29 14:04:43 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f2936f
profiles/default/bsd/fbsd/profile.bashrc: fix typo.
profiles/default/bsd/fbsd/profile.bashrc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc
index 6ddf594..e3a92b6 100644
--- a/profiles/default/bsd/fbsd/profile.bashrc
+++ b/profiles/default/bsd/fbsd/profile.bashrc
@@ -3,9 +3,9 @@
# $Id$
type -P gmake > /dev/null && alias make=gmake
-type -P gpath > /dev/null && alias patch=gpatch
+type -P gpatch > /dev/null && alias patch=gpatch
type -P gsed > /dev/null && alias sed=gsed
-type -P gaws > /dev/null && alias awk=gawk
+type -P gawk > /dev/null && alias awk=gawk
type -P gfind > /dev/null && alias find=gfind
type -P gxargs > /dev/null && alias xargs=gxargs
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-08-23 12:12 Thomas Deutschmann
0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2016-08-23 12:12 UTC (permalink / raw
To: gentoo-commits
commit: adab8b64d946310c7d1be3866494d8e8dbd6d254
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 23 12:10:20 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 12:12:50 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adab8b64
profiles: Add package.use.mask for www-servers/nginx on fbsd
Cannot use "libressl" because dev-libs/libressl is a base package on
fbsd.
Cannot use "luajit" because dev-lang/luajit isn't keyworded on fbsd.
Gentoo-Bug: https://bugs.gentoo.org/574128
profiles/default/bsd/fbsd/package.use.mask | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index b863a56..bffb2fa 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,7 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
+# Thomas Deutschmann <whissi@gentoo.org> (23 Aug 2016)
+# libressl: dev-libs/libressl is a base package on FreeBSD
+# luajit: dev-lang/luajit not keyworded on FreeBSD
+www-servers/nginx libressl luajit
+
# As per UberLord's requests
sys-apps/openrc pam
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-08-26 14:39 Thomas Deutschmann
0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2016-08-26 14:39 UTC (permalink / raw
To: gentoo-commits
commit: d03c10930a4148f956a26f3664f06496a7768d0f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 14:38:29 2016 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 14:39:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d03c1093
profiles: Add package.use.mask for dev-db/percona-server on fbsd
profiles/default/bsd/fbsd/package.use.mask | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index bffb2fa..e9bf0d3 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -2,6 +2,13 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
+# Thomas Deutschmann <whissi@gentoo.org> (26 Aug 2016)
+# libressl: dev-libs/libressl is a base package on FreeBSD
+# jemalloc: dev-libs/jemalloc is not keyworded on FreeBSD
+# systemtap: dev-util/systemtap is not keyworded on FreeBSD and is also
+# a linux specialized tool
+dev-db/percona-server jemalloc libressl systemtap
+
# Thomas Deutschmann <whissi@gentoo.org> (23 Aug 2016)
# libressl: dev-libs/libressl is a base package on FreeBSD
# luajit: dev-lang/luajit not keyworded on FreeBSD
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-09-26 10:39 Alexis Ballier
0 siblings, 0 replies; 15+ messages in thread
From: Alexis Ballier @ 2016-09-26 10:39 UTC (permalink / raw
To: gentoo-commits
commit: 8e0a0c30a3157404fca492f58c5d04f047f75e45
Author: Yuta Satoh <nigoro.dev <AT> gmail <DOT> com>
AuthorDate: Sat Sep 24 11:00:29 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 10:38:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0a0c30
profiles/default/bsd/fbsd: force threads flag to libarchive and xz-utils
https://bugs.gentoo.org/show_bug.cgi?id=594980
profiles/default/bsd/fbsd/package.use.force | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/profiles/default/bsd/fbsd/package.use.force b/profiles/default/bsd/fbsd/package.use.force
index 6ff27bd..0dbdff6 100644
--- a/profiles/default/bsd/fbsd/package.use.force
+++ b/profiles/default/bsd/fbsd/package.use.force
@@ -1,3 +1,8 @@
# Naohiro Aota <naota@gentoo.org> (08 Nov 2011)
# Always enable hardened not to depend glibc
app-emulation/wine hardened
+
+# app-arch/xz-utils[threads=] required by app-arch/libarchive
+# https://bugs.gentoo.org/show_bug.cgi?id=594980
+app-arch/libarchive threads
+app-arch/xz-utils threads
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2016-11-23 11:41 Michał Górny
0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2016-11-23 11:41 UTC (permalink / raw
To: gentoo-commits
commit: bb8dbe55f48cd849fba6b37fb5a5a7df7ff920ea
Author: Yuta Satoh <nigoro.dev <AT> gmail <DOT> com>
AuthorDate: Mon Oct 31 15:41:46 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 23 11:41:31 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8dbe55
profiles: add packages needed to make new stages on Gentoo/FreeBSD
Bug: https://bugs.gentoo.org/598643
Closes: https://github.com/gentoo/gentoo/pull/2705
profiles/default/bsd/fbsd/packages.build | 2 ++
1 file changed, 2 insertions(+)
diff --git a/profiles/default/bsd/fbsd/packages.build b/profiles/default/bsd/fbsd/packages.build
index f3410fb..926c50c 100644
--- a/profiles/default/bsd/fbsd/packages.build
+++ b/profiles/default/bsd/fbsd/packages.build
@@ -40,6 +40,7 @@ virtual/editor
virtual/libc
virtual/os-headers
virtual/package-manager
+virtual/pkgconfig
sys-freebsd/freebsd-mk-defs
sys-freebsd/freebsd-lib
sys-freebsd/freebsd-libexec
@@ -48,3 +49,4 @@ sys-freebsd/freebsd-sbin
sys-freebsd/freebsd-ubin
sys-freebsd/freebsd-usbin
sys-freebsd/freebsd-contrib
+sys-libs/timezone-data
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2017-01-20 20:05 Thomas Deutschmann
0 siblings, 0 replies; 15+ messages in thread
From: Thomas Deutschmann @ 2017-01-20 20:05 UTC (permalink / raw
To: gentoo-commits
commit: 1d2df5a7f50ed711cae9ade0efbe7e3437549be0
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 20:05:00 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 20:05:35 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d2df5a7
profiles: Add package.use.mask for net-libs/libvncserver on fbsd
profiles/default/bsd/fbsd/package.use.mask | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 341448d..039dca4 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,7 +1,11 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
+# Thomas Deutschmann <whissi@gentoo.org> (20 Jan 2017)
+# libressl: dev-libs/libressl is a base package on FreeBSD
+net-libs/libvncserver libressl
+
# Felix Janda <felix.janda@posteo.de> (24 Sep 2016)
# net-libs/libnetfilter_conntrack is not keyworded on FreeBSD
net-dns/dnsmasq conntrack
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2017-12-30 10:16 Michał Górny
0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2017-12-30 10:16 UTC (permalink / raw
To: gentoo-commits
commit: eb5a54dfa0e3c270be6e140e4616491dfbc3f5b7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 09:43:47 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 10:16:08 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5a54df
profiles/default/bsd/fbsd: Remove masks on removed package USE flags
profiles/default/bsd/fbsd/package.use.mask | 3 ---
1 file changed, 3 deletions(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 63ee6117c6b..9deed24529e 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -32,9 +32,6 @@ sys-apps/openrc pam
# app-admin/gkrellm may pull in hddtemp, which is not yet available here
app-admin/gkrellm hddtemp
-# Somehow, check's tests are broken..
-dev-util/checkstyle test
-
# PDA masked until we can do some testing on it
mail-client/claws-mail pda
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2018-01-09 12:11 Mikle Kolyada
0 siblings, 0 replies; 15+ messages in thread
From: Mikle Kolyada @ 2018-01-09 12:11 UTC (permalink / raw
To: gentoo-commits
commit: 1ca090a64e85da1ee9798228c1cac3cc69e63312
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 9 12:11:07 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Tue Jan 9 12:11:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca090a6
profiles/default/bsd/fbsd: drop obsolete wine atom
profiles/default/bsd/fbsd/package.use.mask | 5 -----
1 file changed, 5 deletions(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 9deed24529e..1a9b4a5996f 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -75,11 +75,6 @@ gnome-base/nautilus tracker
# cluster require ctdb, which doesn't support FreeBSD
net-fs/samba ads cluster
-# Naohiro Aota <naota@gentoo.org> (08 Nov 2011)
-# capi require Linux features
-# hardened require prelink which depends on glibc
-app-emulation/wine capi
-
# Naohiro Aota <naota@gentoo.org> (24 Nov 2011)
# Masked because kerberos is masked
net-dns/bind gssapi
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2018-02-18 19:21 Michał Górny
0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2018-02-18 19:21 UTC (permalink / raw
To: gentoo-commits
commit: 48ffd2631ae87d1a62ca63279b22afbd14b965c2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 19:19:26 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 19:21:21 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48ffd263
profiles/default/bsd/fbsd: Fix ELT-patches location
Fix the path to ELT-patches to the one used on modern systems. It is
still a horrible hack but it might work now.
Patch by sultan.
profiles/default/bsd/fbsd/profile.bashrc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/profiles/default/bsd/fbsd/profile.bashrc b/profiles/default/bsd/fbsd/profile.bashrc
index f9a81fff5d3..cb5a328f1de 100644
--- a/profiles/default/bsd/fbsd/profile.bashrc
+++ b/profiles/default/bsd/fbsd/profile.bashrc
@@ -46,7 +46,7 @@ bsd-patch_install-sh() {
# Do nothing if $S does not exist
[ -d "${S}" ] || return 0
- local EPDIR="${ECLASSDIR}/ELT-patches/install-sh"
+ local EPDIR="${EPREFIX}/usr/share/elt-patches/install-sh"
local EPATCHES="${EPDIR}/1.5.6 ${EPDIR}/1.5.4 ${EPDIR}/1.5"
local ret=0
cd "${S}"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2018-03-02 2:25 Brian Evans
0 siblings, 0 replies; 15+ messages in thread
From: Brian Evans @ 2018-03-02 2:25 UTC (permalink / raw
To: gentoo-commits
commit: 7f3408e7f15e4beffe5f7366a76d9687d79f1ec4
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 02:24:14 2018 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 02:24:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3408e7
profiles: default/bsd/fbsd/package.use.mask - acl on php broken
Mask this use until upstream can be contacted and
a patch can be worked up.
Bug: https://bugs.gentoo.org/649274
profiles/default/bsd/fbsd/package.use.mask | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 1a9b4a5996f..3678a3e048a 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,6 +1,10 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+# Brian Evans <grknight@gentoo.org> (2 Mar 2018)
+# php incorrectly looks for libacl when it is built-in on FreeBSD
+dev-lang/php acl
+
# Thomas Deutschmann <whissi@gentoo.org> (26 Oct 2017)
# libressl: dev-libs/libressl is a base package on FreeBSD
net-misc/wget libressl
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2018-04-06 11:44 Michał Górny
0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2018-04-06 11:44 UTC (permalink / raw
To: gentoo-commits
commit: e7be64a750ef8261bb5fdfb3be25268109450ff2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 6 09:01:00 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 6 11:43:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7be64a7
profiles/default/bsd/fbsd: Mask irrelevant util-linux flags
profiles/default/bsd/fbsd/package.use.mask | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 847178b8aac..28e9c5cc126 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,6 +1,12 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+# Michał Górny <mgorny@gentoo.org> (06 Apr 2018)
+# We are building only minimal util-linux, so program flags
+# are irrelevant to us.
+sys-apps/util-linux build cramfs fdformat kill ncurses pam readline
+sys-apps/util-linux slang suid tty-helpers
+
# Brian Evans <grknight@gentoo.org> (2 Mar 2018)
# php incorrectly looks for libacl when it is built-in on FreeBSD
dev-lang/php acl
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2018-05-26 21:38 James Le Cuirot
0 siblings, 0 replies; 15+ messages in thread
From: James Le Cuirot @ 2018-05-26 21:38 UTC (permalink / raw
To: gentoo-commits
commit: 3daa5f701d44ee4d8a05a87084cbb29f2acc3936
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat May 26 21:31:08 2018 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat May 26 21:37:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3daa5f70
profiles: Remove useless fbsd media-libs/mesa[gbm] mask
It's already masked in the parent bsd profile.
profiles/default/bsd/fbsd/package.use.mask | 4 ----
1 file changed, 4 deletions(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 28e9c5cc126..f8738cd8f8a 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -97,10 +97,6 @@ net-dns/bind gssapi
www-client/firefox wifi
www-client/seamonkey wifi
-# Naohiro Aota <naota@gentoo.org> (03 Oct 2012)
-# Mask gbm, udev is not supported on FreeBSD.
-media-libs/mesa gbm
-
# Naohiro Aota <naota@gentoo.org> (06 Oct 2012)
# Mask rpm, app-arch/rpm needs elfutils
net-analyzer/net-snmp rpm
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2019-01-05 15:15 Andrew Savchenko
0 siblings, 0 replies; 15+ messages in thread
From: Andrew Savchenko @ 2019-01-05 15:15 UTC (permalink / raw
To: gentoo-commits
commit: da7d9e76fcac525d9b83e54bab5cefd45a2b9f68
Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 5 15:07:28 2019 +0000
Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sat Jan 5 15:14:49 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7d9e76
default/bsd/fbsd/package.use.mask: mask net-fs/openafs[gssapi]
GSSAPI support requires kerberos support which is disabled
(use.mask) on fbsd. So USE=gssapi is masked for net-fs/openafs on
fbsd.
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
profiles/default/bsd/fbsd/package.use.mask | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index 2a37504795b..c9024da8a60 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,6 +1,11 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
+# Andrew Savcheko <bircoph@gentoo.org> (05 Jan 2019)
+# GSSAPI support in OpenAFS requires Kerberos to be enabled and it
+# is disabled for now (see use.mask)
+net-fs/openafs gssapi
+
# Michał Górny <mgorny@gentoo.org> (06 Apr 2018)
# We are building only minimal util-linux, so program flags
# are irrelevant to us.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/
@ 2019-01-06 17:13 Andrew Savchenko
0 siblings, 0 replies; 15+ messages in thread
From: Andrew Savchenko @ 2019-01-06 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 89a185bbd753a1ede114ce80a11068e1278f2ee3
Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 6 17:06:32 2019 +0000
Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sun Jan 6 17:13:17 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a185bb
profiles/default/bsd/fbsd/package.use.mask: drop net-fs/openafs gssapi mask
USE=gssapi is removed from net-fs/openafs, so drop the mask.
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
profiles/default/bsd/fbsd/package.use.mask | 5 -----
1 file changed, 5 deletions(-)
diff --git a/profiles/default/bsd/fbsd/package.use.mask b/profiles/default/bsd/fbsd/package.use.mask
index c9024da8a60..2a37504795b 100644
--- a/profiles/default/bsd/fbsd/package.use.mask
+++ b/profiles/default/bsd/fbsd/package.use.mask
@@ -1,11 +1,6 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-# Andrew Savcheko <bircoph@gentoo.org> (05 Jan 2019)
-# GSSAPI support in OpenAFS requires Kerberos to be enabled and it
-# is disabled for now (see use.mask)
-net-fs/openafs gssapi
-
# Michał Górny <mgorny@gentoo.org> (06 Apr 2018)
# We are building only minimal util-linux, so program flags
# are irrelevant to us.
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2019-01-06 17:13 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-26 21:38 [gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/fbsd/ James Le Cuirot
-- strict thread matches above, loose matches on Subject: below --
2019-01-06 17:13 Andrew Savchenko
2019-01-05 15:15 Andrew Savchenko
2018-04-06 11:44 Michał Górny
2018-03-02 2:25 Brian Evans
2018-02-18 19:21 Michał Górny
2018-01-09 12:11 Mikle Kolyada
2017-12-30 10:16 Michał Górny
2017-01-20 20:05 Thomas Deutschmann
2016-11-23 11:41 Michał Górny
2016-09-26 10:39 Alexis Ballier
2016-08-26 14:39 Thomas Deutschmann
2016-08-23 12:12 Thomas Deutschmann
2016-03-01 7:53 Alexis Ballier
2016-02-28 17:21 Alexis Ballier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox