[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/

2022-01-03 Thread Ionen Wolkens
commit: 8d875906a9ec14570548c363da8552c1765402a3
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jan  4 04:06:30 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan  4 07:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d875906

x11-terms/kitty: add 0.24.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-terms/kitty/Manifest|   1 +
 x11-terms/kitty/kitty-0.24.0.ebuild | 127 
 2 files changed, 128 insertions(+)

diff --git a/x11-terms/kitty/Manifest b/x11-terms/kitty/Manifest
index a7edd803adc7..409432b0ab98 100644
--- a/x11-terms/kitty/Manifest
+++ b/x11-terms/kitty/Manifest
@@ -1 +1,2 @@
 DIST kitty-0.23.1.tar.xz 184 BLAKE2B 
f452e338fb72f723f2c028f90c20654cf80c5ee1aff924954f81f16445c9f4c10c77bd67d47ae5564b45496012dd1b7de447cdf3974b6913a39d170749878a73
 SHA512 
2d0c822e6bfca41b0a5e5e71e62f5073792b10c236287a509a6c790e19d098205c8719dbcb4aa630abbbaa3d44d6c9986c13efde7a9556772a89709383a0fe94
+DIST kitty-0.24.0.tar.xz 4503616 BLAKE2B 
5a42b4815d25ff9e3a1f9fb6673e4e58ec3b59b5f81dc4098ef24408580d070e92a181e84167f5a343ffc3a9af33556823153d463eaa8e406f31c032ed8bab37
 SHA512 
b851ed56d16f9a39d47810bf27c2bc8cbb52d476376c4090045db90c1ad0bc7db6fd9e97edd6ce50a6d69e716671e1e909aab889ecac368857ad5c07f68a76af

diff --git a/x11-terms/kitty/kitty-0.24.0.ebuild 
b/x11-terms/kitty/kitty-0.24.0.ebuild
new file mode 100644
index ..dd602a094037
--- /dev/null
+++ b/x11-terms/kitty/kitty-0.24.0.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit optfeature python-single-r1 toolchain-funcs xdg
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git;
+else
+   
SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Fast, feature-rich, GPU-based terminal"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+X debug test wayland"
+REQUIRED_USE="
+   || ( X wayland )
+   ${PYTHON_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/harfbuzz:=
+   media-libs/lcms:2
+   media-libs/libglvnd[X?]
+   media-libs/libpng:=
+   net-libs/librsync:=
+   sys-apps/dbus
+   sys-libs/zlib:=
+   x11-libs/libxkbcommon[X?]
+   x11-misc/xkeyboard-config
+   ~x11-terms/kitty-shell-integration-${PV}
+   ~x11-terms/kitty-terminfo-${PV}
+   X? ( x11-libs/libX11 )
+   wayland? ( dev-libs/wayland )"
+DEPEND="
+   ${RDEPEND}
+   X? (
+   x11-base/xorg-proto
+   x11-libs/libXcursor
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   )
+   wayland? ( dev-libs/wayland-protocols )"
+BDEPEND="
+   ${PYTHON_DEPS}
+   sys-libs/ncurses
+   virtual/pkgconfig
+   test? ( $(python_gen_cond_dep 'dev-python/pillow[${PYTHON_USEDEP}]') )
+   wayland? ( dev-util/wayland-scanner )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.23.1-flags.patch
+)
+
+src_prepare() {
+   default
+
+   sed "s/'x11 wayland'/'$(usev X x11) $(usev wayland)'/" -i setup.py || 
die
+   sed "s/else linux_backends/else [$(usev X "'x11',")$(usev wayland 
"'wayland'")]/" \
+   -i kitty_tests/check_build.py || die
+   use X || sed "/glfw_path('x11')/s/x11/wayland/" -i kitty_tests/glfw.py 
|| die
+
+   # --shell-integration="enabled no-rc" is the intended way to set
+   # no-rc by default, but setup.py's replacer currently fails
+   # (no-rc prevents modifying users .bashrc without asking, and it's
+   # unnecessary given shell-integration package uses /etc/bash/bashrc.d)
+   sed -i "/shell_integration:/s/'enabled'/&,'no-rc'/" 
kitty/options/types.py || die
+
+   # test relies on 'who' command which typically works but have 1 VM
+   # where it didn't only under portage/sandbox, needs investigation but
+   # disable for now
+   rm kitty_tests/utmp.py || die
+
+   # skip docs for live version
+   [[ ${PV} !=  ]] || sed -i '/exists.*_build/,/docs(ddir)/d' setup.py 
|| die
+}
+
+src_compile() {
+   tc-export CC
+   export PKGCONFIG_EXE=$(tc-getPKG_CONFIG)
+
+   local setup=(
+   ${EPYTHON} setup.py linux-package
+   --disable-link-time-optimization
+   --ignore-compiler-warnings
+   --libdir-name=$(get_libdir)
+   --update-check-interval=0
+   --verbose
+   $(usev debug --debug)
+   )
+
+   echo "${setup[*]}"
+   "${setup[@]}" || die "setup.py failed to compile ${PN}"
+
+   [[ ${PV} ==  ]] || mv 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/

2022-01-03 Thread Ionen Wolkens
commit: 36d52f13055cc08e3227277f71602cad1d2ff376
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jan  4 06:46:06 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan  4 07:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d52f13

x11-terms/kitty: sync live

Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-terms/kitty/kitty-.ebuild | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/x11-terms/kitty/kitty-.ebuild 
b/x11-terms/kitty/kitty-.ebuild
index f47b4d2c18f8..dd602a094037 100644
--- a/x11-terms/kitty/kitty-.ebuild
+++ b/x11-terms/kitty/kitty-.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=8
@@ -38,6 +38,7 @@ RDEPEND="
sys-libs/zlib:=
x11-libs/libxkbcommon[X?]
x11-misc/xkeyboard-config
+   ~x11-terms/kitty-shell-integration-${PV}
~x11-terms/kitty-terminfo-${PV}
X? ( x11-libs/libX11 )
wayland? ( dev-libs/wayland )"
@@ -70,6 +71,17 @@ src_prepare() {
-i kitty_tests/check_build.py || die
use X || sed "/glfw_path('x11')/s/x11/wayland/" -i kitty_tests/glfw.py 
|| die
 
+   # --shell-integration="enabled no-rc" is the intended way to set
+   # no-rc by default, but setup.py's replacer currently fails
+   # (no-rc prevents modifying users .bashrc without asking, and it's
+   # unnecessary given shell-integration package uses /etc/bash/bashrc.d)
+   sed -i "/shell_integration:/s/'enabled'/&,'no-rc'/" 
kitty/options/types.py || die
+
+   # test relies on 'who' command which typically works but have 1 VM
+   # where it didn't only under portage/sandbox, needs investigation but
+   # disable for now
+   rm kitty_tests/utmp.py || die
+
# skip docs for live version
[[ ${PV} !=  ]] || sed -i '/exists.*_build/,/docs(ddir)/d' setup.py 
|| die
 }
@@ -79,14 +91,13 @@ src_compile() {
export PKGCONFIG_EXE=$(tc-getPKG_CONFIG)
 
local setup=(
-   ${EPYTHON} setup.py
+   ${EPYTHON} setup.py linux-package
--disable-link-time-optimization
--ignore-compiler-warnings
--libdir-name=$(get_libdir)
--update-check-interval=0
--verbose
$(usev debug --debug)
-   linux-package
)
 
echo "${setup[*]}"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-shell-integration/

2022-01-03 Thread Ionen Wolkens
commit: 56b9600fe85c75041ae61f0d21a8c55ffa3935c7
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Mon Nov  8 13:47:04 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan  4 07:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56b9600f

x11-terms/kitty-shell-integration: initial import, version 0.24.0

Upstream now recommends to split kitty into three packages
(kitty, kitty-terminfo, kitty-shell-integration). Go ahead
and use this to match what's expected / documentation.

Similarly to kitty-terminfo, this is to provide scripts on
a remote machine without installing the entire terminal and
its GUI dependencies.

Not particularly familiar with zsh and fish, so actual users
of the shells are welcome to send suggestions if anything
is mishandled, albeit integration seems to work on both.

Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-terms/kitty-shell-integration/Manifest |  1 +
 .../kitty-shell-integration-0.24.0.ebuild  | 34 ++
 x11-terms/kitty-shell-integration/metadata.xml | 20 +
 3 files changed, 55 insertions(+)

diff --git a/x11-terms/kitty-shell-integration/Manifest 
b/x11-terms/kitty-shell-integration/Manifest
new file mode 100644
index ..23dfe1ff9b95
--- /dev/null
+++ b/x11-terms/kitty-shell-integration/Manifest
@@ -0,0 +1 @@
+DIST kitty-0.24.0.tar.xz 4503616 BLAKE2B 
5a42b4815d25ff9e3a1f9fb6673e4e58ec3b59b5f81dc4098ef24408580d070e92a181e84167f5a343ffc3a9af33556823153d463eaa8e406f31c032ed8bab37
 SHA512 
b851ed56d16f9a39d47810bf27c2bc8cbb52d476376c4090045db90c1ad0bc7db6fd9e97edd6ce50a6d69e716671e1e909aab889ecac368857ad5c07f68a76af

diff --git 
a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.0.ebuild 
b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.0.ebuild
new file mode 100644
index ..fc3c61131372
--- /dev/null
+++ b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal 
emulator"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/;
+SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz;
+S="${WORKDIR}/kitty-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test" # intended to be ran on the full kitty package
+
+src_compile() { :; }
+
+src_install() {
+   # install the whole directory in the upstream suggested location
+   # for consistency (i.e. less variation between distros if someone
+   # ssh into Gentoo), then set symlinks to autoload where possible
+   # (these exit immediately if KITTY_SHELL_INTEGRATION is unset)
+   insinto /usr/share/kitty
+   doins -r shell-integration
+
+   dosym -r 
{/usr/share/kitty/shell-integration/bash,/etc/bash/bashrc.d}/kitty.bash
+
+   dosym -r 
/usr/share/{kitty/shell-integration/fish,fish}/vendor_completions.d/kitty.fish
+   dosym -r 
/usr/share/{kitty/shell-integration/fish,fish}/vendor_conf.d/kitty-shell-integration.fish
+
+   dosym -r 
/usr/share/{kitty/shell-integration/zsh/completions,zsh/site-functions}/_kitty
+   # zsh integration is handled automatically without needing to modify rc 
files,
+   # but may require user intervention depending on zsh invocation or if 
remote
+}

diff --git a/x11-terms/kitty-shell-integration/metadata.xml 
b/x11-terms/kitty-shell-integration/metadata.xml
new file mode 100644
index ..60597e252fe3
--- /dev/null
+++ b/x11-terms/kitty-shell-integration/metadata.xml
@@ -0,0 +1,20 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   io...@gentoo.org
+   Ionen Wolkens
+   
+   
+   pabloordun...@gmail.com
+   Pablo Orduna
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   
+   kovidgoyal/kitty
+   
+



[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-shell-integration/

2022-01-03 Thread Ionen Wolkens
commit: ea0f299441f24dc10a7506ea33a2d32356d1ece1
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jan  4 06:39:37 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan  4 07:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea0f2994

x11-terms/kitty-shell-integration: add live ebuild

Needed by kitty- and, similarly to terminfo, should
preferably be kept in sync if updating kitty-

Signed-off-by: Ionen Wolkens  gentoo.org>

 .../kitty-shell-integration-.ebuild| 34 ++
 1 file changed, 34 insertions(+)

diff --git 
a/x11-terms/kitty-shell-integration/kitty-shell-integration-.ebuild 
b/x11-terms/kitty-shell-integration/kitty-shell-integration-.ebuild
new file mode 100644
index ..4bf3e29efd4b
--- /dev/null
+++ b/x11-terms/kitty-shell-integration/kitty-shell-integration-.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3
+
+DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal 
emulator"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/;
+EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git;
+
+LICENSE="GPL-3"
+SLOT="0"
+RESTRICT="test" # intended to be ran on the full kitty package
+
+src_compile() { :; }
+
+src_install() {
+   # install the whole directory in the upstream suggested location
+   # for consistency (i.e. less variation between distros if someone
+   # ssh into Gentoo), then set symlinks to autoload where possible
+   # (these exit immediately if KITTY_SHELL_INTEGRATION is unset)
+   insinto /usr/share/kitty
+   doins -r shell-integration
+
+   dosym -r 
{/usr/share/kitty/shell-integration/bash,/etc/bash/bashrc.d}/kitty.bash
+
+   dosym -r 
/usr/share/{kitty/shell-integration/fish,fish}/vendor_completions.d/kitty.fish
+   dosym -r 
/usr/share/{kitty/shell-integration/fish,fish}/vendor_conf.d/kitty-shell-integration.fish
+
+   dosym -r 
/usr/share/{kitty/shell-integration/zsh/completions,zsh/site-functions}/_kitty
+   # zsh integration is handled automatically without needing to modify rc 
files,
+   # but may require user intervention depending on zsh invocation or if 
remote
+}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-terminfo/

2022-01-03 Thread Ionen Wolkens
commit: 19c7d67c87d11e013ce4d74f1d57f81e79152331
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Jan  4 04:04:58 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan  4 07:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c7d67c

x11-terms/kitty-terminfo: add 0.24.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-terms/kitty-terminfo/Manifest  |  1 +
 .../kitty-terminfo/kitty-terminfo-0.24.0.ebuild| 23 ++
 2 files changed, 24 insertions(+)

diff --git a/x11-terms/kitty-terminfo/Manifest 
b/x11-terms/kitty-terminfo/Manifest
index a7edd803adc7..409432b0ab98 100644
--- a/x11-terms/kitty-terminfo/Manifest
+++ b/x11-terms/kitty-terminfo/Manifest
@@ -1 +1,2 @@
 DIST kitty-0.23.1.tar.xz 184 BLAKE2B 
f452e338fb72f723f2c028f90c20654cf80c5ee1aff924954f81f16445c9f4c10c77bd67d47ae5564b45496012dd1b7de447cdf3974b6913a39d170749878a73
 SHA512 
2d0c822e6bfca41b0a5e5e71e62f5073792b10c236287a509a6c790e19d098205c8719dbcb4aa630abbbaa3d44d6c9986c13efde7a9556772a89709383a0fe94
+DIST kitty-0.24.0.tar.xz 4503616 BLAKE2B 
5a42b4815d25ff9e3a1f9fb6673e4e58ec3b59b5f81dc4098ef24408580d070e92a181e84167f5a343ffc3a9af33556823153d463eaa8e406f31c032ed8bab37
 SHA512 
b851ed56d16f9a39d47810bf27c2bc8cbb52d476376c4090045db90c1ad0bc7db6fd9e97edd6ce50a6d69e716671e1e909aab889ecac368857ad5c07f68a76af

diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild 
b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild
new file mode 100644
index ..348b95a9b4a6
--- /dev/null
+++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/;
+SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz;
+S="${WORKDIR}/kitty-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test" # intended to be ran on the full kitty package
+
+BDEPEND="sys-libs/ncurses"
+
+src_compile() { :; }
+
+src_install() {
+   dodir /usr/share/terminfo
+   tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/urxvt-tabbedex/

2022-01-03 Thread Joonas Niilola
commit: f61206272cfe09658f98117e2cbbbf1fd7acff98
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan  4 07:19:05 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan  4 07:19:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6120627

x11-misc/urxvt-tabbedex: stabilize 21.47 for allarches

Signed-off-by: Joonas Niilola  gentoo.org>

 x11-misc/urxvt-tabbedex/urxvt-tabbedex-21.47.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/urxvt-tabbedex/urxvt-tabbedex-21.47.ebuild 
b/x11-misc/urxvt-tabbedex/urxvt-tabbedex-21.47.ebuild
index b7de4a4f3d32..810342261dfe 100644
--- a/x11-misc/urxvt-tabbedex/urxvt-tabbedex-21.47.ebuild
+++ b/x11-misc/urxvt-tabbedex/urxvt-tabbedex-21.47.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=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mina86/urxvt-tabbedex/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="x11-terms/rxvt-unicode[perl]"
 



[gentoo-commits] repo/gentoo:master commit in: media-gfx/ahoviewer/

2022-01-03 Thread Joonas Niilola
commit: 96df6d2af41b97da890badae6b43fab4640a5858
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan  4 07:35:24 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan  4 07:35:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96df6d2a

media-gfx/ahoviewer: stabilize 2.0.0_pre20211126 for x86

Signed-off-by: Joonas Niilola  gentoo.org>

 media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild 
b/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
index 18140b98edc8..881b2ea5efd6 100644
--- a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
+++ b/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/ahodesuka/ahoviewer/archive/${MY_COMMIT}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnome-keyring gnutls +gstreamer plugins +rar +ssl +zip"
 
 DEPEND="dev-cpp/atkmm:0



[gentoo-commits] repo/gentoo:master commit in: media-gfx/ahoviewer/

2022-01-03 Thread Joonas Niilola
commit: 7e2d2f4c714ef963e5f7e96ba083e558f8f7f991
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan  4 07:31:06 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan  4 07:31:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e2d2f4c

media-gfx/ahoviewer: stabilize 2.0.0_pre20211126 for amd64

Signed-off-by: Joonas Niilola  gentoo.org>

 media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild 
b/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
index 932f36195930..18140b98edc8 100644
--- a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
+++ b/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/ahodesuka/ahoviewer/archive/${MY_COMMIT}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="gnome-keyring gnutls +gstreamer plugins +rar +ssl +zip"
 
 DEPEND="dev-cpp/atkmm:0



[gentoo-commits] repo/gentoo:master commit in: media-video/yle-dl/

2022-01-03 Thread Joonas Niilola
commit: 4d220994a4eb00067503b0fff55140a9c85d9ca8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jan  4 07:13:22 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jan  4 07:13:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d220994

media-video/yle-dl: stabilize 20211213 for amd64, x86

Signed-off-by: Joonas Niilola  gentoo.org>

 media-video/yle-dl/yle-dl-20211213.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/yle-dl/yle-dl-20211213.ebuild 
b/media-video/yle-dl/yle-dl-20211213.ebuild
index afbe7baaaff1..d39ddbdbb653 100644
--- a/media-video/yle-dl/yle-dl-20211213.ebuild
+++ b/media-video/yle-dl/yle-dl-20211213.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=8
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/aajanki/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="test"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/nDPI/

2022-01-03 Thread Sam James
commit: 8b7d64c5886fb5fbe4bb482f93be03e157f06fc2
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 06:46:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 06:46:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7d64c5

net-libs/nDPI: keep version workaround for now

Should be able to drop this in the next release.

Signed-off-by: Sam James  gentoo.org>

 net-libs/nDPI/{nDPI-4.0.ebuild => nDPI-4.0-r1.ebuild} | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/net-libs/nDPI/nDPI-4.0.ebuild b/net-libs/nDPI/nDPI-4.0-r1.ebuild
similarity index 85%
rename from net-libs/nDPI/nDPI-4.0.ebuild
rename to net-libs/nDPI/nDPI-4.0-r1.ebuild
index 8516413b47eb..4be4dd426cc0 100644
--- a/net-libs/nDPI/nDPI-4.0.ebuild
+++ b/net-libs/nDPI/nDPI-4.0-r1.ebuild
@@ -41,6 +41,13 @@ src_prepare() {
src/lib/Makefile.in || die
 
eautoreconf
+
+   # Should be able to drop in next version.
+   # Taken from autogen.sh (bug #704074):
+   sed -i \
+   -e "s/#define PACKAGE/#define NDPI_PACKAGE/g" \
+   -e "s/#define VERSION/#define NDPI_VERSION/g" \
+   configure || die
 }
 
 src_test() {



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2022-01-03 Thread Sam James
commit: 1e9149320bdc41b6b90e801826955bb7b312047f
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  3 08:50:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 04:53:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e914932

net-analyzer/wireshark: add 3.6.1

Bug: https://bugs.gentoo.org/830343
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/wireshark/Manifest   |   1 +
 net-analyzer/wireshark/wireshark-3.6.1.ebuild | 273 ++
 2 files changed, 274 insertions(+)

diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest
index bf6d4db9e8d2..7ac98cb6122d 100644
--- a/net-analyzer/wireshark/Manifest
+++ b/net-analyzer/wireshark/Manifest
@@ -1,2 +1,3 @@
 DIST wireshark-3.4.10.tar.xz 32344804 BLAKE2B 
fe2ececd4a02530176725d62524fe000816f7f12dd58082d4966dfe7e5e0b90be669ed216c5a664f6496e74cb5dc5e4fb5beeaf513570ae503e3181692635563
 SHA512 
8a57d5279e9f3821b6ba3dceba89ad77fa8d0cf8cf421eab4d32e039497b429444c147b31abebd65b11b0b3ff73cf10d484480bcf0aedb206011819df8ab0257
 DIST wireshark-3.6.0.tar.xz 39687684 BLAKE2B 
17af7046662087a18d0708ab0b5bc00bd4d43db848e14217e046dd551e57decd0a258f67c7fd82e1e10e0dceb249618e41ded5a6cd2e0a79d2ee5b7bf397cea7
 SHA512 
7c8afdee8957eb794030e0818a686c0efabc8ad9547449f434fc7299c7b7e624347698fdc7a42afac150eb86c8ca3d1d6360c29525bb35946619c4636f721094
+DIST wireshark-3.6.1.tar.xz 39632140 BLAKE2B 
49a7385946001a3b4a9890751cfea678c8aefcf8180e1a3008085a453d34e458d60d071975eeb585b92c6d9a210b732cc9fdb4fd952f1a9d74decad79c145fe0
 SHA512 
8b036d623010a5c4ece22de869847b3d999dac1c1e874e957c091a65c18351d9a1cc400828a70caf3c9f9900f8971dc585a5fafb7b08d446cd5d1d68938b0e81

diff --git a/net-analyzer/wireshark/wireshark-3.6.1.ebuild 
b/net-analyzer/wireshark/wireshark-3.6.1.ebuild
new file mode 100644
index ..98c2b9131b7c
--- /dev/null
+++ b/net-analyzer/wireshark/wireshark-3.6.1.ebuild
@@ -0,0 +1,273 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..2} )
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg-utils cmake
+
+DESCRIPTION="A network protocol analyzer formerly known as ethereal"
+HOMEPAGE="https://www.wireshark.org/;
+
+if [[ ${PV} == ** ]] ; then
+   EGIT_REPO_URI="https://gitlab.com/wireshark/wireshark;
+   inherit git-r3
+else
+   
SRC_URI="https://www.wireshark.org/download/src/all-versions/${P/_/}.tar.xz;
+   S="${WORKDIR}/${P/_/}"
+
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0/${PV}"
+IUSE="androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc 
dpauxmon"
+IUSE+=" +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb"
+IUSE+=" +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 
+randpkt"
+IUSE+=" +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp 
sshdump ssl"
+IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd"
+
+REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )
+   plugin-ifdemo? ( plugins )"
+
+RESTRICT="!test? ( test )"
+
+# bug #753062 for speexdsp
+RDEPEND="acct-group/pcap
+   >=dev-libs/glib-2.38:2
+   >=net-dns/c-ares-1.5:=
+   dev-libs/libgcrypt:=
+   media-libs/speexdsp
+   bcg729? ( media-libs/bcg729 )
+   brotli? ( app-arch/brotli:= )
+   ciscodump? ( >=net-libs/libssh-0.6 )
+   filecaps? ( sys-libs/libcap )
+   http2? ( net-libs/nghttp2:= )
+   ilbc? ( media-libs/libilbc )
+   kerberos? ( virtual/krb5 )
+   libxml2? ( dev-libs/libxml2 )
+   lua? ( ${LUA_DEPS} )
+   lz4? ( app-arch/lz4:= )
+   maxminddb? ( dev-libs/libmaxminddb:= )
+   minizip? ( sys-libs/zlib[minizip] )
+   netlink? ( dev-libs/libnl:3 )
+   opus? ( media-libs/opus )
+   pcap? ( net-libs/libpcap )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwidgets:5
+   x11-misc/xdg-utils
+   )
+   sbc? ( media-libs/sbc )
+   sdjournal? ( sys-apps/systemd )
+   smi? ( net-libs/libsmi )
+   snappy? ( app-arch/snappy )
+   spandsp? ( media-libs/spandsp )
+   sshdump? ( >=net-libs/libssh-0.6 )
+   ssl? ( net-libs/gnutls:= )
+   zlib? ( sys-libs/zlib )
+   zstd? ( app-arch/zstd:= )"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+   dev-lang/perl
+   sys-devel/flex
+   sys-devel/gettext
+   virtual/pkgconfig
+   doc? (
+   app-doc/doxygen
+   dev-ruby/asciidoctor
+   )
+   qt5? (
+   dev-qt/linguist-tools:5
+   )
+   test? (
+   dev-python/pytest
+   dev-python/pytest-xdist
+   )"
+RDEPEND="${RDEPEND}
+   qt5? ( virtual/freedesktop-icon-theme 

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2022-01-03 Thread Sam James
commit: 1f00e52ac2350fa49e214f88ae1fecca9f8eed01
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  3 08:56:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 04:53:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f00e52a

net-analyzer/wireshark: sync live

Signed-off-by: Sam James  gentoo.org>

 net-analyzer/wireshark/wireshark-.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/wireshark/wireshark-.ebuild 
b/net-analyzer/wireshark/wireshark-.ebuild
index 01d79e76e7b1..98c2b9131b7c 100644
--- a/net-analyzer/wireshark/wireshark-.ebuild
+++ b/net-analyzer/wireshark/wireshark-.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
@@ -18,7 +18,7 @@ else

SRC_URI="https://www.wireshark.org/download/src/all-versions/${P/_/}.tar.xz;
S="${WORKDIR}/${P/_/}"
 
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-2"
@@ -191,7 +191,9 @@ src_test() {
--verbose
 
# Skip known failing tests
-   -E "(suite_decryption|suite_extcaps|suite_nameres)"
+   # extcaps needs a bunch of external programs
+   -E "(suite_extcaps)"
+   #-E "(suite_decryption|suite_extcaps|suite_nameres)"
)
 
cmake_src_test



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2022-01-03 Thread Sam James
commit: 3caad1cbd744874cbfa34c4ae41f0ded2b75311e
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  3 08:55:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 04:53:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3caad1cb

net-analyzer/wireshark: add 3.4.11

Bug: https://bugs.gentoo.org/830343
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/wireshark/Manifest|   1 +
 net-analyzer/wireshark/wireshark-3.4.11.ebuild | 285 +
 2 files changed, 286 insertions(+)

diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest
index 7ac98cb6122d..6e13f800ccfd 100644
--- a/net-analyzer/wireshark/Manifest
+++ b/net-analyzer/wireshark/Manifest
@@ -1,3 +1,4 @@
 DIST wireshark-3.4.10.tar.xz 32344804 BLAKE2B 
fe2ececd4a02530176725d62524fe000816f7f12dd58082d4966dfe7e5e0b90be669ed216c5a664f6496e74cb5dc5e4fb5beeaf513570ae503e3181692635563
 SHA512 
8a57d5279e9f3821b6ba3dceba89ad77fa8d0cf8cf421eab4d32e039497b429444c147b31abebd65b11b0b3ff73cf10d484480bcf0aedb206011819df8ab0257
+DIST wireshark-3.4.11.tar.xz 32354216 BLAKE2B 
3e08d01f2d89f5ddd74c4e2215e6852f30c7419234a45b52a25aa9119995ec2c2882cc3993dce7941e6e73230eb4d295bf0785dda5fe8c3df99f9efdb1e42bfd
 SHA512 
cfef2c3e56279baadb7f41a1f46fde9214a467972f69914c14a8153ea2f2adcb55832413bcaf7a3f8d98b4b62d0574f12144de6c06ff382b4fa8b071903993dc
 DIST wireshark-3.6.0.tar.xz 39687684 BLAKE2B 
17af7046662087a18d0708ab0b5bc00bd4d43db848e14217e046dd551e57decd0a258f67c7fd82e1e10e0dceb249618e41ded5a6cd2e0a79d2ee5b7bf397cea7
 SHA512 
7c8afdee8957eb794030e0818a686c0efabc8ad9547449f434fc7299c7b7e624347698fdc7a42afac150eb86c8ca3d1d6360c29525bb35946619c4636f721094
 DIST wireshark-3.6.1.tar.xz 39632140 BLAKE2B 
49a7385946001a3b4a9890751cfea678c8aefcf8180e1a3008085a453d34e458d60d071975eeb585b92c6d9a210b732cc9fdb4fd952f1a9d74decad79c145fe0
 SHA512 
8b036d623010a5c4ece22de869847b3d999dac1c1e874e957c091a65c18351d9a1cc400828a70caf3c9f9900f8971dc585a5fafb7b08d446cd5d1d68938b0e81

diff --git a/net-analyzer/wireshark/wireshark-3.4.11.ebuild 
b/net-analyzer/wireshark/wireshark-3.4.11.ebuild
new file mode 100644
index ..6ea541c8b477
--- /dev/null
+++ b/net-analyzer/wireshark/wireshark-3.4.11.ebuild
@@ -0,0 +1,285 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..2} )
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit fcaps flag-o-matic lua-single python-any-r1 qmake-utils xdg-utils cmake
+
+DESCRIPTION="A network protocol analyzer formerly known as ethereal"
+HOMEPAGE="https://www.wireshark.org/;
+
+if [[ ${PV} == ** ]] ; then
+   EGIT_REPO_URI="https://gitlab.com/wireshark/wireshark;
+   inherit git-r3
+else
+   
SRC_URI="https://www.wireshark.org/download/src/all-versions/${P/_/}.tar.xz;
+   S="${WORKDIR}/${P/_/}"
+
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0/${PV}"
+IUSE="androiddump bcg729 brotli +capinfos +captype ciscodump +dftest doc 
dpauxmon"
+IUSE+=" +dumpcap +editcap http2 ilbc kerberos libxml2 lto lua lz4 maxminddb"
+IUSE+=" +mergecap +minizip +netlink opus +plugins plugin-ifdemo +pcap +qt5 
+randpkt"
+IUSE+=" +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp 
sshdump ssl"
+IUSE+=" sdjournal test +text2pcap tfshark +tshark +udpdump zlib +zstd"
+
+RESTRICT="!test? ( test )"
+
+# bug #753062 for speexdsp
+CDEPEND="
+   acct-group/pcap
+   >=dev-libs/glib-2.32:2
+   >=net-dns/c-ares-1.5:=
+   dev-libs/libgcrypt:=
+   media-libs/speexdsp
+   bcg729? ( media-libs/bcg729 )
+   brotli? ( app-arch/brotli:= )
+   ciscodump? ( >=net-libs/libssh-0.6 )
+   filecaps? ( sys-libs/libcap )
+   http2? ( net-libs/nghttp2:= )
+   ilbc? ( media-libs/libilbc )
+   kerberos? ( virtual/krb5 )
+   libxml2? ( dev-libs/libxml2 )
+   lua? ( ${LUA_DEPS} )
+   lz4? ( app-arch/lz4:= )
+   maxminddb? ( dev-libs/libmaxminddb:= )
+   minizip? ( sys-libs/zlib[minizip] )
+   netlink? ( dev-libs/libnl:3 )
+   opus? ( media-libs/opus )
+   pcap? ( net-libs/libpcap )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwidgets:5
+   x11-misc/xdg-utils
+   )
+   sbc? ( media-libs/sbc )
+   sdjournal? ( sys-apps/systemd )
+   smi? ( net-libs/libsmi )
+   snappy? ( app-arch/snappy )
+   spandsp? ( media-libs/spandsp )
+   sshdump? ( >=net-libs/libssh-0.6 )
+   ssl? ( net-libs/gnutls:= )
+   zlib? ( sys-libs/zlib )
+   zstd? ( app-arch/zstd:= )
+"
+# We need perl for `pod2html`. The rest of the perl stuff is to block older
+# and broken installs. #455122
+DEPEND="
+   ${CDEPEND}
+   ${PYTHON_DEPS}
+"
+BDEPEND="
+   dev-lang/perl
+   sys-devel/bison
+   

[gentoo-commits] repo/gentoo:master commit in: sys-power/upower/

2022-01-03 Thread Sam James
commit: f92dcde94c4062821ce6f9c647ce2ad460b34928
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:29:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:29:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f92dcde9

sys-power/upower: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-power/upower/upower-0.99.12-r1.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/sys-power/upower/upower-0.99.12-r1.ebuild 
b/sys-power/upower/upower-0.99.12-r1.ebuild
index 9d8cd983c46b..9c27421f06f0 100644
--- a/sys-power/upower/upower-0.99.12-r1.ebuild
+++ b/sys-power/upower/upower-0.99.12-r1.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=8
@@ -17,7 +17,7 @@ SLOT="0/3" # based on SONAME of libupower-glib.so
 KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
 
 # gtk-doc files are not available as prebuilt in the tarball
-IUSE="doc +introspection ios kernel_FreeBSD kernel_linux selinux"
+IUSE="doc +introspection ios kernel_linux selinux"
 
 DEPEND="
>=dev-libs/glib-2.38:2
@@ -60,8 +60,6 @@ src_configure() {
 
if use kernel_linux ; then
backend=linux
-   elif use kernel_FreeBSD ; then
-   backend=freebsd
else
backend=dummy
fi



[gentoo-commits] repo/gentoo:master commit in: x11-terms/xterm/

2022-01-03 Thread Sam James
commit: 12818c6d08b80e8c9859218d85b41289438610b4
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:27:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:29:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12818c6d

x11-terms/xterm: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/23641
Signed-off-by: Sam James  gentoo.org>

 x11-terms/xterm/xterm-366.ebuild | 6 +++---
 x11-terms/xterm/xterm-367.ebuild | 6 +++---
 x11-terms/xterm/xterm-368.ebuild | 6 +++---
 x11-terms/xterm/xterm-369.ebuild | 4 ++--
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/x11-terms/xterm/xterm-366.ebuild b/x11-terms/xterm/xterm-366.ebuild
index 86edf8cd23ef..99c8680dc55c 100644
--- a/x11-terms/xterm/xterm-366.ebuild
+++ b/x11-terms/xterm/xterm-366.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
@@ -16,8 +16,8 @@ IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
 
 BDEPEND="virtual/pkgconfig
x11-base/xorg-proto"
-DEPEND="kernel_linux? ( sys-libs/libutempter )
-   kernel_FreeBSD? ( sys-libs/libutempter )
+DEPEND="
+   kernel_linux? ( sys-libs/libutempter )
media-libs/fontconfig:1.0
>=sys-libs/ncurses-5.7-r7:0=
x11-apps/xmessage

diff --git a/x11-terms/xterm/xterm-367.ebuild b/x11-terms/xterm/xterm-367.ebuild
index 86edf8cd23ef..99c8680dc55c 100644
--- a/x11-terms/xterm/xterm-367.ebuild
+++ b/x11-terms/xterm/xterm-367.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
@@ -16,8 +16,8 @@ IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
 
 BDEPEND="virtual/pkgconfig
x11-base/xorg-proto"
-DEPEND="kernel_linux? ( sys-libs/libutempter )
-   kernel_FreeBSD? ( sys-libs/libutempter )
+DEPEND="
+   kernel_linux? ( sys-libs/libutempter )
media-libs/fontconfig:1.0
>=sys-libs/ncurses-5.7-r7:0=
x11-apps/xmessage

diff --git a/x11-terms/xterm/xterm-368.ebuild b/x11-terms/xterm/xterm-368.ebuild
index 360ff3a47763..b29486ec821a 100644
--- a/x11-terms/xterm/xterm-368.ebuild
+++ b/x11-terms/xterm/xterm-368.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
@@ -16,8 +16,8 @@ IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
 
 BDEPEND="virtual/pkgconfig
x11-base/xorg-proto"
-DEPEND="kernel_linux? ( sys-libs/libutempter )
-   kernel_FreeBSD? ( sys-libs/libutempter )
+DEPEND="
+   kernel_linux? ( sys-libs/libutempter )
media-libs/fontconfig:1.0
>=sys-libs/ncurses-5.7-r7:0=
x11-apps/xmessage

diff --git a/x11-terms/xterm/xterm-369.ebuild b/x11-terms/xterm/xterm-369.ebuild
index c82fc284ca0f..57e07cc5fdd8 100644
--- a/x11-terms/xterm/xterm-369.ebuild
+++ b/x11-terms/xterm/xterm-369.ebuild
@@ -16,8 +16,8 @@ IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
 
 BDEPEND="virtual/pkgconfig
x11-base/xorg-proto"
-DEPEND="kernel_linux? ( sys-libs/libutempter )
-   kernel_FreeBSD? ( sys-libs/libutempter )
+DEPEND="
+   kernel_linux? ( sys-libs/libutempter )
media-libs/fontconfig:1.0
>=sys-libs/ncurses-5.7-r7:0=
x11-apps/xmessage



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/

2022-01-03 Thread Sam James
commit: 533b08b42299c909f4587eb04e82ae0f799d5048
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 15:41:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=533b08b4

sys-devel/clang: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/clang/clang-11.1.0.ebuild  | 9 ++---
 sys-devel/clang/clang-12.0.1.ebuild  | 9 ++---
 sys-devel/clang/clang-13.0.0.ebuild  | 9 ++---
 sys-devel/clang/clang-13.0.1..ebuild | 9 ++---
 sys-devel/clang/clang-13.0.1_rc1.ebuild  | 9 ++---
 sys-devel/clang/clang-14.0.0..ebuild | 9 ++---
 6 files changed, 12 insertions(+), 42 deletions(-)

diff --git a/sys-devel/clang/clang-11.1.0.ebuild 
b/sys-devel/clang/clang-11.1.0.ebuild
index 844348ccef0f..70f90cdc03ee 100644
--- a/sys-devel/clang/clang-11.1.0.ebuild
+++ b/sys-devel/clang/clang-11.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
@@ -24,7 +24,7 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="$(ver_cut 1)/$(ver_cut 1-2)"
 KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~amd64-linux ~x64-macos"
 IUSE="debug default-compiler-rt default-libcxx default-lld
-   doc +static-analyzer test xml kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
+   doc +static-analyzer test xml ${ALL_LLVM_TARGETS[*]}"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
|| ( ${ALL_LLVM_TARGETS[*]} )"
 RESTRICT="!test? ( test )"
@@ -383,11 +383,6 @@ src_install() {
"/usr/lib/llvm/${SLOT%/*}/bin/${abi_chost}-${i}"
done
done
-
-   # Remove unnecessary headers on FreeBSD, bug #417171
-   if use kernel_FreeBSD; then
-   rm 
"${ED}"/usr/lib/clang/${clang_full_version}/include/{std,float,iso,limits,tgmath,varargs}*.h
 || die
-   fi
 }
 
 multilib_src_install() {

diff --git a/sys-devel/clang/clang-12.0.1.ebuild 
b/sys-devel/clang/clang-12.0.1.ebuild
index b3ddd17937e3..e4b38d294772 100644
--- a/sys-devel/clang/clang-12.0.1.ebuild
+++ b/sys-devel/clang/clang-12.0.1.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
@@ -24,7 +24,7 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="$(ver_cut 1)"
 KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x64-macos"
 IUSE="debug default-compiler-rt default-libcxx default-lld
-   doc llvm-libunwind +static-analyzer test xml kernel_FreeBSD 
${ALL_LLVM_TARGETS[*]}"
+   doc llvm-libunwind +static-analyzer test xml ${ALL_LLVM_TARGETS[*]}"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
|| ( ${ALL_LLVM_TARGETS[*]} )"
 RESTRICT="!test? ( test )"
@@ -387,11 +387,6 @@ src_install() {
"/usr/lib/llvm/${SLOT}/bin/${abi_chost}-${i}"
done
done
-
-   # Remove unnecessary headers on FreeBSD, bug #417171
-   if use kernel_FreeBSD; then
-   rm 
"${ED}"/usr/lib/clang/${clang_full_version}/include/{std,float,iso,limits,tgmath,varargs}*.h
 || die
-   fi
 }
 
 multilib_src_install() {

diff --git a/sys-devel/clang/clang-13.0.0.ebuild 
b/sys-devel/clang/clang-13.0.0.ebuild
index 707bb762d95f..5aeac025e36c 100644
--- a/sys-devel/clang/clang-13.0.0.ebuild
+++ b/sys-devel/clang/clang-13.0.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
@@ -17,7 +17,7 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="$(ver_cut 1)"
 KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x64-macos"
 IUSE="debug default-compiler-rt default-libcxx default-lld
-   doc llvm-libunwind +static-analyzer test xml kernel_FreeBSD"
+   doc llvm-libunwind +static-analyzer test xml"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="!test? ( test )"
 
@@ -376,11 +376,6 @@ src_install() {
"/usr/lib/llvm/${SLOT}/bin/${abi_chost}-${i}"
done
done
-
-   # Remove unnecessary headers on FreeBSD, bug #417171
-   if use kernel_FreeBSD; then
-   rm 
"${ED}"/usr/lib/clang/${clang_full_version}/include/{std,float,iso,limits,tgmath,varargs}*.h
 || die
-   fi
 }
 
 multilib_src_install() {

diff --git a/sys-devel/clang/clang-13.0.1..ebuild 
b/sys-devel/clang/clang-13.0.1..ebuild
index 0a01ce5254cf..c9cdf6cd226b 100644
--- a/sys-devel/clang/clang-13.0.1..ebuild
+++ b/sys-devel/clang/clang-13.0.1..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
 
 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse/

2022-01-03 Thread Sam James
commit: 98cca0498c5b1298f3fb539a419c0f9216a428d8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:24:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98cca049

sys-fs/fuse: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-fs/fuse/fuse-2.9.9-r1.ebuild | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/sys-fs/fuse/fuse-2.9.9-r1.ebuild b/sys-fs/fuse/fuse-2.9.9-r1.ebuild
index c8d15352dff6..927ab8b2c137 100644
--- a/sys-fs/fuse/fuse-2.9.9-r1.ebuild
+++ b/sys-fs/fuse/fuse-2.9.9-r1.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
@@ -15,9 +15,8 @@ SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/iconv.m4.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE="examples kernel_linux kernel_FreeBSD static-libs"
+IUSE="examples kernel_linux static-libs"
 
-PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"
 BDEPEND="virtual/pkgconfig"
 RDEPEND=">=sys-fs/fuse-common-3.3.0-r1"
 
@@ -69,11 +68,6 @@ src_install() {
dodoc example/*
fi
 
-   if use kernel_FreeBSD ; then
-   insinto /usr/include/fuse
-   doins include/fuse_kernel.h
-   fi
-
find "${ED}" -name '*.la' -delete || die
 
# installed via fuse-common



[gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout/

2022-01-03 Thread Sam James
commit: 39827317e97d0e0d6ddb5a6ecf642c5da27f4192
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 15:45:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39827317

sys-apps/baselayout: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-apps/baselayout/baselayout-2.7-r1.ebuild | 6 +++---
 sys-apps/baselayout/baselayout-2.7-r2.ebuild | 6 +++---
 sys-apps/baselayout/baselayout-2.7-r3.ebuild | 6 +++---
 sys-apps/baselayout/baselayout-2.7.ebuild| 6 +++---
 sys-apps/baselayout/baselayout-2.8.ebuild| 6 +++---
 sys-apps/baselayout/baselayout-.ebuild   | 6 +++---
 6 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/sys-apps/baselayout/baselayout-2.7-r1.ebuild 
b/sys-apps/baselayout/baselayout-2.7-r1.ebuild
index 3d5fac97ac66..8242b63fa3f5 100644
--- a/sys-apps/baselayout/baselayout-2.7-r1.ebuild
+++ b/sys-apps/baselayout/baselayout-2.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 pkg_setup() {
multilib_layout
@@ -219,7 +219,7 @@ src_prepare() {
 
 src_install() {
emake \
-   OS=$(usex kernel_FreeBSD BSD Linux) \
+   OS=Linux \
DESTDIR="${ED}" \
install
dodoc ChangeLog

diff --git a/sys-apps/baselayout/baselayout-2.7-r2.ebuild 
b/sys-apps/baselayout/baselayout-2.7-r2.ebuild
index a37d17f3b8d1..9aa9a7262318 100644
--- a/sys-apps/baselayout/baselayout-2.7-r2.ebuild
+++ b/sys-apps/baselayout/baselayout-2.7-r2.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
@@ -17,7 +17,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 pkg_setup() {
multilib_layout
@@ -220,7 +220,7 @@ src_prepare() {
 
 src_install() {
emake \
-   OS=$(usex kernel_FreeBSD BSD Linux) \
+   OS=Linux \
DESTDIR="${ED}" \
install
dodoc ChangeLog

diff --git a/sys-apps/baselayout/baselayout-2.7-r3.ebuild 
b/sys-apps/baselayout/baselayout-2.7-r3.ebuild
index a734733f48f8..4a1dd494ea72 100644
--- a/sys-apps/baselayout/baselayout-2.7-r3.ebuild
+++ b/sys-apps/baselayout/baselayout-2.7-r3.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
@@ -17,7 +17,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 pkg_setup() {
multilib_layout
@@ -249,7 +249,7 @@ src_prepare() {
 
 src_install() {
emake \
-   OS=$(usex kernel_FreeBSD BSD Linux) \
+   OS=Linux \
DESTDIR="${ED}" \
install
dodoc ChangeLog

diff --git a/sys-apps/baselayout/baselayout-2.7.ebuild 
b/sys-apps/baselayout/baselayout-2.7.ebuild
index cb06c4a3e20d..ce51d06cbaa9 100644
--- a/sys-apps/baselayout/baselayout-2.7.ebuild
+++ b/sys-apps/baselayout/baselayout-2.7.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=6
@@ -17,7 +17,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 pkg_setup() {
multilib_layout
@@ -219,7 +219,7 @@ src_prepare() {
 
 src_install() {
emake \
-   OS=$(usex kernel_FreeBSD BSD Linux) \
+   OS=Linux \
DESTDIR="${ED}" \
install
dodoc ChangeLog

diff --git a/sys-apps/baselayout/baselayout-2.8.ebuild 
b/sys-apps/baselayout/baselayout-2.8.ebuild
index c5f4dbf7dda3..603fb5026694 100644
--- a/sys-apps/baselayout/baselayout-2.8.ebuild
+++ b/sys-apps/baselayout/baselayout-2.8.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
@@ -17,7 +17,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 pkg_setup() {
multilib_layout
@@ -245,7 +245,7 @@ src_prepare() {
 
 src_install() {
emake \
-   OS=$(usex kernel_FreeBSD BSD Linux) \
+   OS=Linux \
DESTDIR="${ED}" \
install
 

diff --git a/sys-apps/baselayout/baselayout-.ebuild 

[gentoo-commits] repo/gentoo:master commit in: sys-process/htop/

2022-01-03 Thread Sam James
commit: e52d87d86577b8e167ef009efc0c1215dbe96aa8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:09:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:29:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52d87d8

sys-process/htop: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-process/htop/htop-3.0.5-r2.ebuild | 4 ++--
 sys-process/htop/htop-3.1.1-r1.ebuild | 4 ++--
 sys-process/htop/htop-3.1.2-r1.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-process/htop/htop-3.0.5-r2.ebuild 
b/sys-process/htop/htop-3.0.5-r2.ebuild
index 523b369d4265..b2034687cdd8 100644
--- a/sys-process/htop/htop-3.0.5-r2.ebuild
+++ b/sys-process/htop/htop-3.0.5-r2.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
@@ -14,7 +14,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 
~riscv ~s390 sparc x
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode 
vserver"
+IUSE="debug hwloc kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="sys-libs/ncurses:=[unicode(+)?]

diff --git a/sys-process/htop/htop-3.1.1-r1.ebuild 
b/sys-process/htop/htop-3.1.1-r1.ebuild
index c11394f6a76a..5f2ec5816c20 100644
--- a/sys-process/htop/htop-3.1.1-r1.ebuild
+++ b/sys-process/htop/htop-3.1.1-r1.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=8
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 
~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz 
unicode vserver"
+IUSE="caps debug delayacct hwloc kernel_linux lm-sensors openvz unicode 
vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild 
b/sys-process/htop/htop-3.1.2-r1.ebuild
index 138f07eb7bd5..1e51312a3825 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.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=8
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 
~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors 
llvm-libunwind openvz unicode unwind vserver"
+IUSE="caps debug delayacct hwloc kernel_linux lm-sensors llvm-libunwind openvz 
unicode unwind vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/

2022-01-03 Thread Sam James
commit: 8ec2f009d1c5e735b02e473b457ff09b92acbecf
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:21:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec2f009

sys-apps/dbus: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-apps/dbus/dbus-1.12.20-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/dbus/dbus-1.12.20-r4.ebuild 
b/sys-apps/dbus/dbus-1.12.20-r4.ebuild
index bed9be8efd71..9a3325b75e47 100644
--- a/sys-apps/dbus/dbus-1.12.20-r4.ebuild
+++ b/sys-apps/dbus/dbus-1.12.20-r4.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
@@ -124,7 +124,7 @@ multilib_src_configure() {
$(use_enable selinux libaudit)
--disable-apparmor
$(use_enable kernel_linux inotify)
-   $(use_enable kernel_FreeBSD kqueue)
+   --disable-kqueue
$(use_enable elogind)
$(use_enable systemd)
$(use_enable systemd user-session)



[gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse-common/

2022-01-03 Thread Sam James
commit: af24bfa5f44c6238d69f865bbc9eb345b4da9957
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:23:28 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af24bfa5

sys-fs/fuse-common: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-fs/fuse-common/fuse-common-3.10.4.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-fs/fuse-common/fuse-common-3.10.4.ebuild 
b/sys-fs/fuse-common/fuse-common-3.10.4.ebuild
index 8e3aff886fde..24670d1b7e68 100644
--- a/sys-fs/fuse-common/fuse-common-3.10.4.ebuild
+++ b/sys-fs/fuse-common/fuse-common-3.10.4.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
@@ -23,8 +23,6 @@ src_install() {
 
if use kernel_linux ; then
newinitd "${FILESDIR}"/fuse.init fuse
-   elif use kernel_FreeBSD ; then
-   newinitd "${FILESDIR}"/fuse-fbsd.init fuse
else
die "We don't know what init code install for your kernel, 
please file a bug."
fi



[gentoo-commits] repo/gentoo:master commit in: net-wireless/aircrack-ng/

2022-01-03 Thread Sam James
commit: 6dfe4cb9b97dd5a63e1a4be4e5cd218cf7322fb8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:07:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dfe4cb9

net-wireless/aircrack-ng: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 .../aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild   | 19 ++-
 net-wireless/aircrack-ng/aircrack-ng-.ebuild  | 19 ++-
 2 files changed, 4 insertions(+), 34 deletions(-)

diff --git a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild 
b/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild
index aba4869d9ca4..6fd2c84fb3ae 100644
--- a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild
+++ b/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.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
@@ -25,7 +25,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="+airdrop-ng +airgraph-ng kernel_linux kernel_FreeBSD +netlink +pcre 
+sqlite +experimental"
+IUSE="+airdrop-ng +airgraph-ng kernel_linux +netlink +pcre +sqlite 
+experimental"
 
 DEPEND="net-libs/libpcap
sys-apps/hwloc:0=
@@ -104,18 +104,3 @@ src_install() {
rm "${ED}"/usr/sbin/airodump-ng-oui-update
find "${D}" -xtype f -name '*.la' -delete || die
 }
-
-pkg_postinst() {
-   # Message is (c) FreeBSD
-   # 
http://www.freebsd.org/cgi/cvsweb.cgi/ports/net-mgmt/aircrack-ng/files/pkg-message.in?rev=1.5
-   if use kernel_FreeBSD ; then
-   einfo "Contrary to Linux, it is not necessary to use airmon-ng 
to enable the monitor"
-   einfo "mode of your wireless card.  So do not care about what 
the manpages say about"
-   einfo "airmon-ng, airodump-ng sets monitor mode automatically."
-   echo
-   einfo "To return from monitor mode, issue the following 
command:"
-   einfo "ifconfig \${INTERFACE} -mediaopt monitor"
-   einfo
-   einfo "For aireplay-ng you need FreeBSD >= 7.0."
-   fi
-}

diff --git a/net-wireless/aircrack-ng/aircrack-ng-.ebuild 
b/net-wireless/aircrack-ng/aircrack-ng-.ebuild
index e7aadf29d9b5..19edd296904f 100644
--- a/net-wireless/aircrack-ng/aircrack-ng-.ebuild
+++ b/net-wireless/aircrack-ng/aircrack-ng-.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
@@ -23,7 +23,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="+airdrop-ng +airgraph-ng kernel_linux kernel_FreeBSD +netlink +pcre 
+sqlite +experimental"
+IUSE="+airdrop-ng +airgraph-ng kernel_linux +netlink +pcre +sqlite 
+experimental"
 
 DEPEND="net-libs/libpcap
sys-apps/hwloc:0=
@@ -99,18 +99,3 @@ src_install() {
rm "${ED}"/usr/sbin/airodump-ng-oui-update
find "${D}" -xtype f -name '*.la' -delete || die
 }
-
-pkg_postinst() {
-   # Message is (c) FreeBSD
-   # 
http://www.freebsd.org/cgi/cvsweb.cgi/ports/net-mgmt/aircrack-ng/files/pkg-message.in?rev=1.5
-   if use kernel_FreeBSD ; then
-   einfo "Contrary to Linux, it is not necessary to use airmon-ng 
to enable the monitor"
-   einfo "mode of your wireless card.  So do not care about what 
the manpages say about"
-   einfo "airmon-ng, airodump-ng sets monitor mode automatically."
-   echo
-   einfo "To return from monitor mode, issue the following 
command:"
-   einfo "ifconfig \${INTERFACE} -mediaopt monitor"
-   einfo
-   einfo "For aireplay-ng you need FreeBSD >= 7.0."
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/sysvinit/

2022-01-03 Thread Sam James
commit: b9542e652763128a58b5c042434386b399291d7a
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 15:50:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9542e65

sys-apps/sysvinit: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-apps/sysvinit/sysvinit-2.99-r1.ebuild | 11 ++-
 sys-apps/sysvinit/sysvinit-3.00-r1.ebuild | 11 ++-
 sys-apps/sysvinit/sysvinit-3.01.ebuild| 11 ++-
 3 files changed, 6 insertions(+), 27 deletions(-)

diff --git a/sys-apps/sysvinit/sysvinit-2.99-r1.ebuild 
b/sys-apps/sysvinit/sysvinit-2.99-r1.ebuild
index 9d78abebae42..589bb6747c9b 100644
--- a/sys-apps/sysvinit/sysvinit-2.99-r1.ebuild
+++ b/sys-apps/sysvinit/sysvinit-2.99-r1.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
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" == *beta* ]] || \
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE="selinux ibm static kernel_FreeBSD"
+IUSE="selinux ibm static"
 
 CDEPEND="
selinux? (
@@ -76,13 +76,6 @@ src_prepare() {
)
fi
(use arm || use mips || use sparc) && sed -i '/ttyS0/s:#::' inittab
-   if use kernel_FreeBSD ; then
-   sed -i \
-   -e 's/linux/cons25/g' \
-   -e 's/ttyS0/cuaa0/g' \
-   -e 's/ttyS1/cuaa1/g' \
-   inittab #121786
-   fi
if use x86 || use amd64 ; then
sed -i \
-e '/ttyS[01]/s:9600:115200:' \

diff --git a/sys-apps/sysvinit/sysvinit-3.00-r1.ebuild 
b/sys-apps/sysvinit/sysvinit-3.00-r1.ebuild
index 83d6e6f7635b..2b6267d776db 100644
--- a/sys-apps/sysvinit/sysvinit-3.00-r1.ebuild
+++ b/sys-apps/sysvinit/sysvinit-3.00-r1.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
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" == *beta* ]] || \
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-IUSE="selinux ibm static kernel_FreeBSD"
+IUSE="selinux ibm static"
 
 CDEPEND="
selinux? (
@@ -76,13 +76,6 @@ src_prepare() {
)
fi
(use arm || use mips || use sparc) && sed -i '/ttyS0/s:#::' inittab
-   if use kernel_FreeBSD ; then
-   sed -i \
-   -e 's/linux/cons25/g' \
-   -e 's/ttyS0/cuaa0/g' \
-   -e 's/ttyS1/cuaa1/g' \
-   inittab #121786
-   fi
if use x86 || use amd64 ; then
sed -i \
-e '/ttyS[01]/s:9600:115200:' \

diff --git a/sys-apps/sysvinit/sysvinit-3.01.ebuild 
b/sys-apps/sysvinit/sysvinit-3.01.ebuild
index 83d6e6f7635b..2b6267d776db 100644
--- a/sys-apps/sysvinit/sysvinit-3.01.ebuild
+++ b/sys-apps/sysvinit/sysvinit-3.01.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
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" == *beta* ]] || \
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-IUSE="selinux ibm static kernel_FreeBSD"
+IUSE="selinux ibm static"
 
 CDEPEND="
selinux? (
@@ -76,13 +76,6 @@ src_prepare() {
)
fi
(use arm || use mips || use sparc) && sed -i '/ttyS0/s:#::' inittab
-   if use kernel_FreeBSD ; then
-   sed -i \
-   -e 's/linux/cons25/g' \
-   -e 's/ttyS0/cuaa0/g' \
-   -e 's/ttyS1/cuaa1/g' \
-   inittab #121786
-   fi
if use x86 || use amd64 ; then
sed -i \
-e '/ttyS[01]/s:9600:115200:' \



[gentoo-commits] repo/gentoo:master commit in: sys-block/tw_cli/

2022-01-03 Thread Sam James
commit: 1a36e4765dd077fd72114916cfda7476e9758bc2
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:15:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a36e476

sys-block/tw_cli: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-block/tw_cli/Manifest  | 1 -
 sys-block/tw_cli/tw_cli-10.2.2.1-r1.ebuild | 4 +---
 sys-block/tw_cli/tw_cli-10.2.2.1.ebuild| 4 +---
 3 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/sys-block/tw_cli/Manifest b/sys-block/tw_cli/Manifest
index 4e0115d31449..cea4ed80990d 100644
--- a/sys-block/tw_cli/Manifest
+++ b/sys-block/tw_cli/Manifest
@@ -1,4 +1,3 @@
 DIST 368_tw_cli_debian8_beta.tgz 1958337 BLAKE2B 
5e10c253a36132c8ee74e555b7e9151e70dd126ab4e58a76465c6d198387d612f19bd121c1d4dee49ca6c6fc35aeef5ed19466f05d3ce59ac4c4ab2d6f488f65
 SHA512 
1a0e22bd59eed4d26957bf17dd191f842251e61c035973cfc0e4611b0f93d798e718bed2dcb54e3fbf9ac8bbc9f7aaf9b332c419210331c318fb507a9d34492c
-DIST CLI_freebsd-from_the_10.2.2.1_9.5.5.1_codesets.zip 1531484 BLAKE2B 
6bd1a5523a80c32f6251cf4e841f16f3a09ffe77eb452d7b40f37d9f476fec3f379454f4c05b15d4753dd12fd0d5b50acf07dbafbd4f80ca5a1ecb13605bab16
 SHA512 
04738e9bd644561cf33d2f687159a0bcaf1ab56f340d19d88ecd0b038b89d5dd136b462189452c0578b90e1b276f9d0edc3204e5baebfc2730f319147b636708
 DIST CLI_linux-from_the_10.2.2.1_9.5.5.1_codesets.zip 1878621 BLAKE2B 
628070e5f6dc4dbc75f029067298be278b696b84afb245d19761043183bc6232fcf48dfe46954ef61e027082d974905244f6b3e73b596fbbe8d7955375859be2
 SHA512 
e8a7f27401e7811d5f8533d839066bdf6d93eeb2cb1242b00af7fc559b0a34316f8e6dc80f68e869d97f44290ea32c9e65d1d857c1010009ad1a540252400e31
 DIST LSI-tw_cli 35638 BLAKE2B 
8267d311b7b09dd3f0e619fd7d5aadcaf5b24afa1958c99e838b9280b175b8f070dc58164622bf3ab54dc5ddfc24a4a4ea06971a919b17a3c2594541e43ea41f
 SHA512 
1a1d35395ffccf70004b0c111d8c4a7e408cf0c57503bb4d1fdd608f9b71d6ea4d7488307dd6806eaf6557d65badd9c43aeea3e7c1ddae1c56962c85c2b868c9

diff --git a/sys-block/tw_cli/tw_cli-10.2.2.1-r1.ebuild 
b/sys-block/tw_cli/tw_cli-10.2.2.1-r1.ebuild
index 0239fca6f4fb..dc6a4c2517b7 100644
--- a/sys-block/tw_cli/tw_cli-10.2.2.1-r1.ebuild
+++ b/sys-block/tw_cli/tw_cli-10.2.2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -11,14 +11,12 @@ ThreeDM2_PV="9.5.5.1"
 
 SRC_URI_BASE="http://www.lsi.com/downloads/Public/SATA/SATA%20Common%20Files/;
 SRC_URI_A_linux="CLI_linux-from_the_${PV}_${ThreeDM2_PV}_codesets.zip"
-#SRC_URI_A_fbsd="CLI_freebsd-from_the_${PV}_${ThreeDM2_PV}_codesets.zip"
 # 10.2.2.1 special case:
 # Newer kernels cause a segmentation fault, and a special build is available 
for Linux only.
 # 
https://www.broadcom.com/support/knowledgebase/1211161501805/debian-8-twcli-causes-fault-segment-failure
 
EXTRA_linux="https://docs.broadcom.com/docs-and-downloads/kb-documents/lsi/368_tw_cli_debian8_beta.tgz;
 EXTRA_fbsd=""
 [ -n "${SRC_URI_A_linux}${EXTRA_linux}" ] && SRC_URI+=" kernel_linux? ( 
${SRC_URI_A_linux:+${SRC_URI_BASE}/}${SRC_URI_A_linux} ${EXTRA_linux} )"
-[ -n "${SRC_URI_A_fbsd}${EXTRA_fbsd}" ] && SRC_URI+=" kernel_FreeBSD? ( 
${SRC_URI_A_fbsd:+${SRC_URI_BASE}/}${SRC_URI_A_fbsd} ${EXTRA_fbsd} )"
 # The license is not available easily from upstream (embedded in a textbox),
 # nor in the upstream tarball, but needs to be installed, and can't be
 # referenced via PORTDIR per bug #373349.

diff --git a/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild 
b/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
index 87251bc687a0..1cb92bf7a2f9 100644
--- a/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
+++ b/sys-block/tw_cli/tw_cli-10.2.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -11,9 +11,7 @@ ThreeDM2_PV="9.5.5.1"
 
 SRC_URI_BASE="http://www.lsi.com/downloads/Public/SATA/SATA%20Common%20Files/;
 SRC_URI_A_linux="CLI_linux-from_the_${PV}_${ThreeDM2_PV}_codesets.zip"
-SRC_URI_A_fbsd="CLI_freebsd-from_the_${PV}_${ThreeDM2_PV}_codesets.zip"
 SRC_URI="kernel_linux? ( ${SRC_URI_BASE}/${SRC_URI_A_linux} )
-kernel_FreeBSD? ( ${SRC_URI_BASE}/${SRC_URI_A_fbsd} )
 
https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/LSI-tw_cli;
 # The license is not available easily from upstream (embedded in a textbox),
 # nor in the upstream tarball, but needs to be installed, and can't be



[gentoo-commits] repo/gentoo:master commit in: net-libs/c-client/

2022-01-03 Thread Sam James
commit: a0e32a073d8ae380d46097c77076facaabec410d
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:14:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0e32a07

net-libs/c-client: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-libs/c-client/c-client-2007f-r7.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/net-libs/c-client/c-client-2007f-r7.ebuild 
b/net-libs/c-client/c-client-2007f-r7.ebuild
index befa819f22a5..a7af4a22ccbe 100644
--- a/net-libs/c-client/c-client-2007f-r7.ebuild
+++ b/net-libs/c-client/c-client-2007f-r7.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=6
@@ -18,7 +18,7 @@ SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE="doc +ipv6 kerberos kernel_linux kernel_FreeBSD pam ssl static-libs topal 
chappa"
+IUSE="doc +ipv6 kerberos kernel_linux pam ssl static-libs topal chappa"
 
 RDEPEND="
!net-mail/uw-imap
@@ -107,8 +107,6 @@ src_compile() {
# Fall back to "slx" when USE=pam is not set. This ensures that
# we link in libcrypt to get the crypt() routine (bug #456928).
use pam && target=lnp passwdtype=pam || target=slx 
passwdtype=std
-   elif use kernel_FreeBSD ; then
-   target=bsf passwdtype=pam
fi
use kerberos \
&& mymake="EXTRAAUTHENTICATORS=gss" \



[gentoo-commits] repo/gentoo:master commit in: dev-util/catalyst/

2022-01-03 Thread Sam James
commit: 609786b8ff4054ee1b6781cb48995c3898dcce35
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:25:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609786b8

dev-util/catalyst: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 dev-util/catalyst/catalyst-3.0.18.ebuild | 8 +---
 dev-util/catalyst/catalyst-3.0.20.ebuild | 8 +---
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/dev-util/catalyst/catalyst-3.0.18.ebuild 
b/dev-util/catalyst/catalyst-3.0.18.ebuild
index 5793fe90faef..adc7a1b2c6bc 100644
--- a/dev-util/catalyst/catalyst-3.0.18.ebuild
+++ b/dev-util/catalyst/catalyst-3.0.18.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=6
@@ -36,8 +36,10 @@ RDEPEND="
app-arch/lbzip2
app-crypt/shash
sys-fs/dosfstools
-   !kernel_FreeBSD? ( || ( app-arch/tar[xattr] app-arch/libarchive[xattr] 
) )
-   kernel_FreeBSD? ( app-arch/libarchive[xattr] )
+   || (
+   app-arch/tar[xattr]
+   app-arch/libarchive[xattr]
+   )
amd64? ( >=sys-boot/syslinux-3.72 )
x86? ( >=sys-boot/syslinux-3.72 )
ccache? ( dev-util/ccache )

diff --git a/dev-util/catalyst/catalyst-3.0.20.ebuild 
b/dev-util/catalyst/catalyst-3.0.20.ebuild
index fc94fc1efeab..d77525dfc17e 100644
--- a/dev-util/catalyst/catalyst-3.0.20.ebuild
+++ b/dev-util/catalyst/catalyst-3.0.20.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=6
@@ -36,8 +36,10 @@ RDEPEND="
app-arch/lbzip2
app-crypt/shash
sys-fs/dosfstools
-   !kernel_FreeBSD? ( || ( app-arch/tar[xattr] app-arch/libarchive[xattr] 
) )
-   kernel_FreeBSD? ( app-arch/libarchive[xattr] )
+   || (
+   app-arch/tar[xattr]
+   app-arch/libarchive[xattr]
+   )
amd64? ( >=sys-boot/syslinux-3.72 )
x86? ( >=sys-boot/syslinux-3.72 )
ccache? ( dev-util/ccache )



[gentoo-commits] repo/gentoo:master commit in: net-misc/telnet-bsd/

2022-01-03 Thread Sam James
commit: 9852f3815369f5553e5b0d9c09bd64fd12b65772
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:13:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9852f381

net-misc/telnet-bsd: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild | 11 +--
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild 
b/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild
index f7e8097c0bcc..8104f65f02de 100644
--- a/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild
+++ b/net-misc/telnet-bsd/telnet-bsd-1.2-r2.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=8
@@ -34,15 +34,6 @@ src_prepare() {
eautoreconf
 }
 
-src_configure() {
-   # FreeBSD doesn't seem to support PIE neither does hppa
-   if use kernel_FreeBSD; then
-   export libc_cv_fpie="no"
-   fi
-
-   econf
-}
-
 src_compile() {
emake LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
 }



[gentoo-commits] repo/gentoo:master commit in: net-wireless/wpa_supplicant/

2022-01-03 Thread Sam James
commit: a74327582ef96b9dbc569ad5079702b3ee8a33ea
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:06:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7432758

net-wireless/wpa_supplicant: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-wireless/wpa_supplicant/wpa_supplicant-2.9-r4.ebuild | 8 ++--
 net-wireless/wpa_supplicant/wpa_supplicant-2.9-r5.ebuild | 8 ++--
 net-wireless/wpa_supplicant/wpa_supplicant-2.9-r8.ebuild | 8 ++--
 net-wireless/wpa_supplicant/wpa_supplicant-.ebuild   | 8 ++--
 4 files changed, 8 insertions(+), 24 deletions(-)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r4.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r4.ebuild
index f3b138d121f2..acd12f1b94f3 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r4.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r4.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
@@ -18,7 +18,7 @@ else
 fi
 
 SLOT="0"
-IUSE="ap bindist broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux kernel_FreeBSD"
+IUSE="ap bindist broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux"
 
 # CONFIG_PRIVSEP=y does not have sufficient support for the new driver
 # interface functions used for MACsec, so this combination cannot be used
@@ -282,10 +282,6 @@ src_configure() {
if use ps3 ; then
Kconfig_style_config DRIVER_PS3
fi
-
-   elif use kernel_FreeBSD ; then
-   # FreeBSD specific driver
-   Kconfig_style_config DRIVER_BSD
fi
 
# Wi-Fi Protected Setup (WPS)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r5.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r5.ebuild
index 62785e101ba2..53849b5c9a31 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r5.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r5.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
@@ -19,7 +19,7 @@ else
 fi
 
 SLOT="0"
-IUSE="ap bindist broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux kernel_FreeBSD"
+IUSE="ap bindist broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux"
 
 # CONFIG_PRIVSEP=y does not have sufficient support for the new driver
 # interface functions used for MACsec, so this combination cannot be used
@@ -288,10 +288,6 @@ src_configure() {
if use ps3 ; then
Kconfig_style_config DRIVER_PS3
fi
-
-   elif use kernel_FreeBSD ; then
-   # FreeBSD specific driver
-   Kconfig_style_config DRIVER_BSD
fi
 
# Wi-Fi Protected Setup (WPS)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r8.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r8.ebuild
index 8c0150f8694d..a18a9f31ed0c 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r8.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.9-r8.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
@@ -19,7 +19,7 @@ else
 fi
 
 SLOT="0"
-IUSE="ap +crda broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux kernel_FreeBSD"
+IUSE="ap +crda broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 
macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls 
uncommon-eap-types wimax wps kernel_linux"
 
 # CONFIG_PRIVSEP=y does not have sufficient support for the new driver
 # interface functions used for MACsec, so this combination cannot be used
@@ -312,10 +312,6 @@ src_configure() {
if use ps3 ; then
Kconfig_style_config DRIVER_PS3
fi
-
-   elif use kernel_FreeBSD ; then
-   # FreeBSD specific driver
-   Kconfig_style_config DRIVER_BSD
fi
 
# Wi-Fi Protected Setup (WPS)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-.ebuild 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout-prefix/

2022-01-03 Thread Sam James
commit: 4caf5d3510c6e2ab88ba86c30e7aa7a3a6a5d882
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:23:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4caf5d35

sys-apps/baselayout-prefix: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-apps/baselayout-prefix/baselayout-prefix-2.6-r3.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/sys-apps/baselayout-prefix/baselayout-prefix-2.6-r3.ebuild 
b/sys-apps/baselayout-prefix/baselayout-prefix-2.6-r3.ebuild
index d7bbee519208..a18a74ad4aa5 100644
--- a/sys-apps/baselayout-prefix/baselayout-prefix-2.6-r3.ebuild
+++ b/sys-apps/baselayout-prefix/baselayout-prefix-2.6-r3.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
@@ -22,7 +22,7 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="build kernel_FreeBSD kernel_linux +split-usr"
+IUSE="build kernel_linux +split-usr"
 
 RDEPEND="!sys-apps/baselayout"  #681760
 
@@ -227,8 +227,7 @@ src_configure() {
# although having a prefix, RAP uses full Linux baselayout
OS=$(usex prefix-stack prefix-stack \
 $(usex prefix-guest prefix-guest \
-  $(usex kernel_FreeBSD BSD \
-Linux ) ) )
+  Linux ) )
# set up immutable Makefile variables once
sed -e "/^EPREFIX\s*?\?=\s*$/s|?\?=.*|= ${EPREFIX}|" \
-e   "/^BROOT\s*?\?=\s*$/s|?\?=.*|= ${BROOT}|" \



[gentoo-commits] repo/gentoo:master commit in: net-misc/radvd/

2022-01-03 Thread Sam James
commit: 0a60aab2e3f6b160c61865f02c810e1a62cfb4b0
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:11:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a60aab2

net-misc/radvd: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-misc/radvd/radvd-2.19-r2.ebuild | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/net-misc/radvd/radvd-2.19-r2.ebuild 
b/net-misc/radvd/radvd-2.19-r2.ebuild
index 151ad5c9031e..5db49bbe22a5 100644
--- a/net-misc/radvd/radvd-2.19-r2.ebuild
+++ b/net-misc/radvd/radvd-2.19-r2.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
@@ -12,7 +12,7 @@ SRC_URI="http://v6web.litech.org/radvd/dist/${P}.tar.gz;
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~hppa ppc ~ppc64 ~riscv sparc x86"
-IUSE="kernel_FreeBSD selinux test"
+IUSE="selinux test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="virtual/pkgconfig"
@@ -53,12 +53,6 @@ src_install() {
 
systemd_dounit "${FILESDIR}"/${PN}.service
 
-   if use kernel_FreeBSD ; then
-   sed -e \
-   
's/^SYSCTL_FORWARD=.*$/SYSCTL_FORWARD=net.inet6.ip6.forwarding/g' \
-   -i "${D}"/etc/init.d/${PN} || die
-   fi
-
readme.gentoo_create_doc
 }
 



[gentoo-commits] repo/gentoo:master commit in: net-proxy/squid/

2022-01-03 Thread Sam James
commit: f242a6eae3c71407b2c27afba431a9877a53bc60
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:19:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f242a6ea

net-proxy/squid: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-proxy/squid/metadata.xml |  4 
 net-proxy/squid/squid-4.15-r2.ebuild | 12 +---
 net-proxy/squid/squid-4.17.ebuild| 12 +---
 3 files changed, 2 insertions(+), 26 deletions(-)

diff --git a/net-proxy/squid/metadata.xml b/net-proxy/squid/metadata.xml
index 6252c436660b..28c43b5d5bfa 100644
--- a/net-proxy/squid/metadata.xml
+++ b/net-proxy/squid/metadata.xml
@@ -11,13 +11,9 @@
 Enable ESI for accelerators, will cause squid reverse 
proxies
   to be capable of the Edge Acceleration Specification (www.esi.org)
 Enable HTCP protocol
-Adds transparent proxy support for systems
-  using IP-Filter (only for *bsd)
 Use app-admin/logrotate for rotating
   logs
 Enables *BSD kqueue() support
-Adds transparent proxy support for systems 
using
-  PF (only for *bsd)
 Adds support for Quality of Service using netfilter 
conntrack
   - see qos_flow directive for more info
 Adds support for dynamic SSL certificate generation 
in

diff --git a/net-proxy/squid/squid-4.15-r2.ebuild 
b/net-proxy/squid/squid-4.15-r2.ebuild
index af49050da0f0..1d96fc4eb4c5 100644
--- a/net-proxy/squid/squid-4.15-r2.ebuild
+++ b/net-proxy/squid/squid-4.15-r2.ebuild
@@ -26,8 +26,7 @@ IUSE="caps gnutls ipv6 pam ldap samba sasl kerberos nis 
radius ssl snmp selinux
mysql postgres sqlite systemd \
perl qos tproxy \
+htcp +wccp +wccpv2 \
-   pf-transparent ipf-transparent kqueue \
-   kernel_linux"
+   kqueue kernel_linux"
 
 RESTRICT="!test? ( test )"
 
@@ -160,15 +159,6 @@ src_configure() {
use qos && transparent+=" --enable-zph-qos 
--with-netfilter-conntrack"
fi
 
-   if use kernel_FreeBSD || use kernel_OpenBSD || use kernel_NetBSD ; then
-   transparent+=" $(use_enable kqueue)"
-   if use pf-transparent; then
-   transparent+=" --enable-pf-transparent"
-   elif use ipf-transparent; then
-   transparent+=" --enable-ipf-transparent"
-   fi
-   fi
-
tc-export_build_env BUILD_CXX
export BUILDCXX=${BUILD_CXX}
export BUILDCXXFLAGS=${BUILD_CXXFLAGS}

diff --git a/net-proxy/squid/squid-4.17.ebuild 
b/net-proxy/squid/squid-4.17.ebuild
index ab6503cc44ac..a17b50cbd03c 100644
--- a/net-proxy/squid/squid-4.17.ebuild
+++ b/net-proxy/squid/squid-4.17.ebuild
@@ -26,8 +26,7 @@ IUSE="caps gnutls ipv6 pam ldap samba sasl kerberos nis 
radius ssl snmp selinux
mysql postgres sqlite systemd \
perl qos tproxy \
+htcp +wccp +wccpv2 \
-   pf-transparent ipf-transparent kqueue \
-   kernel_linux"
+   kqueue kernel_linux"
 
 RESTRICT="!test? ( test )"
 
@@ -160,15 +159,6 @@ src_configure() {
use qos && transparent+=" --enable-zph-qos 
--with-netfilter-conntrack"
fi
 
-   if use kernel_FreeBSD || use kernel_OpenBSD || use kernel_NetBSD ; then
-   transparent+=" $(use_enable kqueue)"
-   if use pf-transparent; then
-   transparent+=" --enable-pf-transparent"
-   elif use ipf-transparent; then
-   transparent+=" --enable-ipf-transparent"
-   fi
-   fi
-
tc-export_build_env BUILD_CXX
export BUILDCXX=${BUILD_CXX}
export BUILDCXXFLAGS=${BUILD_CXXFLAGS}



[gentoo-commits] repo/gentoo:master commit in: net-fs/openafs/

2022-01-03 Thread Sam James
commit: 65ad4c777d9cab090153c6e26ce5cd47a409eded
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 15:58:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ad4c77

net-fs/openafs: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-fs/openafs/openafs-1.8.7.ebuild  | 9 +
 net-fs/openafs/openafs-1.8.8.1-r1.ebuild | 9 +
 2 files changed, 2 insertions(+), 16 deletions(-)

diff --git a/net-fs/openafs/openafs-1.8.7.ebuild 
b/net-fs/openafs/openafs-1.8.7.ebuild
index f2f6237fddcc..8d42811d43cf 100644
--- a/net-fs/openafs/openafs-1.8.7.ebuild
+++ b/net-fs/openafs/openafs-1.8.7.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
@@ -127,8 +127,6 @@ src_configure() {
fi
myconf+=( --with-linux-kernel-headers="${KV_DIR}" \
  
--with-linux-kernel-build="${KV_OUT_DIR}" )
-   elif use kernel_FreeBSD; then
-   myconf+=( --with-bsd-kernel-build="${BSD_BUILD_DIR}" )
fi
fi
 
@@ -187,9 +185,6 @@ src_install() {
MODULE_NAMES="libafs(fs/openafs:${srcdir})"
 
linux-mod_src_install
-   elif use kernel_FreeBSD; then
-   insinto /boot/modules
-   doins "${S}"/src/libafs/MODLOAD/libafs.ko
fi
fi
 
@@ -286,7 +281,6 @@ pkg_preinst() {
 pkg_postinst() {
if use modules; then
# Update linker.hints file
-   use kernel_FreeBSD && /usr/sbin/kldxref 
"${EPREFIX}/boot/modules"
use kernel_linux && linux-mod_pkg_postinst
fi
 
@@ -309,7 +303,6 @@ pkg_postinst() {
 pkg_postrm() {
if use modules; then
# Update linker.hints file
-   use kernel_FreeBSD && /usr/sbin/kldxref 
"${EPREFIX}/boot/modules"
use kernel_linux && linux-mod_pkg_postrm
fi
 }

diff --git a/net-fs/openafs/openafs-1.8.8.1-r1.ebuild 
b/net-fs/openafs/openafs-1.8.8.1-r1.ebuild
index 8fe9b5e98f6f..bedbe27e50a1 100644
--- a/net-fs/openafs/openafs-1.8.8.1-r1.ebuild
+++ b/net-fs/openafs/openafs-1.8.8.1-r1.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
@@ -126,8 +126,6 @@ src_configure() {
fi
myconf+=( --with-linux-kernel-headers="${KV_DIR}" \
  
--with-linux-kernel-build="${KV_OUT_DIR}" )
-   elif use kernel_FreeBSD; then
-   myconf+=( --with-bsd-kernel-build="${BSD_BUILD_DIR}" )
fi
fi
 
@@ -186,9 +184,6 @@ src_install() {
MODULE_NAMES="libafs(fs/openafs:${srcdir})"
 
linux-mod_src_install
-   elif use kernel_FreeBSD; then
-   insinto /boot/modules
-   doins "${S}"/src/libafs/MODLOAD/libafs.ko
fi
fi
 
@@ -285,7 +280,6 @@ pkg_preinst() {
 pkg_postinst() {
if use modules; then
# Update linker.hints file
-   use kernel_FreeBSD && /usr/sbin/kldxref 
"${EPREFIX}/boot/modules"
use kernel_linux && linux-mod_pkg_postinst
fi
 
@@ -308,7 +302,6 @@ pkg_postinst() {
 pkg_postrm() {
if use modules; then
# Update linker.hints file
-   use kernel_FreeBSD && /usr/sbin/kldxref 
"${EPREFIX}/boot/modules"
use kernel_linux && linux-mod_pkg_postrm
fi
 }



[gentoo-commits] repo/gentoo:master commit in: net-proxy/privoxy/

2022-01-03 Thread Sam James
commit: fa74b5b788ba292cfbc410c9d7201ddc84b6a16d
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:20:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa74b5b7

net-proxy/privoxy: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-proxy/privoxy/privoxy-3.0.33.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-proxy/privoxy/privoxy-3.0.33.ebuild 
b/net-proxy/privoxy/privoxy-3.0.33.ebuild
index 715d61e54e67..369532bf8820 100644
--- a/net-proxy/privoxy/privoxy-3.0.33.ebuild
+++ b/net-proxy/privoxy/privoxy-3.0.33.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=8
@@ -96,6 +96,7 @@ src_configure() {
#   since docs are already pregenerated in the source tarball
econf \
--sysconfdir=/etc/privoxy \
+   --disable-accept-filter \
--enable-dynamic-pcre \
--without-assertions \
--with-user=privoxy \
@@ -113,7 +114,6 @@ src_configure() {
$(use_enable image-blocking) \
$(use_enable jit pcre-jit-compilation) \
$(use_enable ipv6 ipv6-support) \
-   $(use_enable kernel_FreeBSD accept-filter) \
$(use_enable lfs large-file-support) \
$(use_enable png-images no-gifs) \
$(use_enable stats) \



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/portsentry/

2022-01-03 Thread Sam James
commit: 6888ace2818f8a0a06c4fb4852f3fda9ef531209
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:29:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6888ace2

net-analyzer/portsentry: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/portsentry/portsentry-1.2-r1.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/net-analyzer/portsentry/portsentry-1.2-r1.ebuild 
b/net-analyzer/portsentry/portsentry-1.2-r1.ebuild
index 362756f86a4d..8ff09a342c9e 100644
--- a/net-analyzer/portsentry/portsentry-1.2-r1.ebuild
+++ b/net-analyzer/portsentry/portsentry-1.2-r1.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
@@ -14,7 +14,7 @@ S="${WORKDIR}"/${PN}_beta
 SLOT="0"
 LICENSE="GPL-2"
 KEYWORDS="amd64 ppc x86 ~x64-macos"
-IUSE="kernel_Darwin kernel_linux kernel_FreeBSD kernel_SunOS"
+IUSE="kernel_Darwin kernel_linux kernel_SunOS"
 
 RDEPEND="kernel_Darwin? ( app-shells/tcsh )"
 
@@ -32,8 +32,6 @@ src_compile() {
target="osx"
elif use kernel_linux ; then
target="linux"
-   elif use kernel_FreeBSD ; then
-   target="freebsd"
elif use kernel_SunOS ; then
target="solaris"
fi



[gentoo-commits] repo/gentoo:master commit in: app-metrics/collectd/

2022-01-03 Thread Sam James
commit: 0d6b26d7906996ac8e2f4fd260afdc55fd418209
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:01:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6b26d7

app-metrics/collectd: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 app-metrics/collectd/collectd-5.12.0-r1.ebuild | 22 +++---
 app-metrics/collectd/collectd-5.12.0-r2.ebuild | 22 +++---
 2 files changed, 6 insertions(+), 38 deletions(-)

diff --git a/app-metrics/collectd/collectd-5.12.0-r1.ebuild 
b/app-metrics/collectd/collectd-5.12.0-r1.ebuild
index 1c16631dc941..1c9fdac841d9 100644
--- a/app-metrics/collectd/collectd-5.12.0-r1.ebuild
+++ b/app-metrics/collectd/collectd-5.12.0-r1.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"
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2;
 LICENSE="MIT GPL-2 GPL-2+ GPL-3 GPL-3+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm x86"
-IUSE="contrib debug java kernel_Darwin kernel_FreeBSD kernel_linux perl 
selinux static-libs udev xfs"
+IUSE="contrib debug java kernel_Darwin kernel_linux perl selinux static-libs 
udev xfs"
 
 # The plugin lists have to follow here since they extend IUSE
 
@@ -150,15 +150,7 @@ COMMON_DEPEND="
collectd_plugins_write_redis?   ( dev-libs/hiredis:= )
collectd_plugins_write_stackdriver? ( net-misc/curl:0= 
dev-libs/yajl:= )
collectd_plugins_xencpu?( app-emulation/xen-tools:= )
-
-   kernel_FreeBSD? (
-   collectd_plugins_disk?  ( sys-libs/libstatgrab:= )
-   collectd_plugins_interface? ( sys-libs/libstatgrab:= )
-   collectd_plugins_load?  ( sys-libs/libstatgrab:= )
-   collectd_plugins_memory?( sys-libs/libstatgrab:= )
-   collectd_plugins_swap?  ( sys-libs/libstatgrab:= )
-   collectd_plugins_users? ( sys-libs/libstatgrab:= )
-   )"
+"
 
 # FIXME: should virtual/jdk be here as well?
 BDEPEND="virtual/pkgconfig"
@@ -337,9 +329,6 @@ src_configure() {
if use kernel_linux; then
einfo "Enabling Linux plugins."
myos_plugins=${linux_plugins}
-   elif use kernel_FreeBSD; then
-   einfo "Enabling FreeBSD plugins."
-   myos_plugins=${bsd_plugins}
elif use kernel_Darwin; then
einfo "Enabling Darwin plugins."
myos_plugins=${darwin_plugins}
@@ -376,11 +365,6 @@ src_configure() {
if has ${plugin} ${myos_plugins}; then
# ... and available in this os
myconf+=" $(use_enable 
collectd_plugins_${plugin} ${plugin})"
-   # ... must we link against libstatgrab? Bug 
#541518
-   if use kernel_FreeBSD && has ${plugin} 
${libstatgrab_plugins}; then
-   einfo "We must link against libstatgrab 
due to plugin \"${plugin}\" ..."
-   need_libstatgrab=1
-   fi
else
# ... and NOT available in this os
if use collectd_plugins_${plugin}; then

diff --git a/app-metrics/collectd/collectd-5.12.0-r2.ebuild 
b/app-metrics/collectd/collectd-5.12.0-r2.ebuild
index c3aaedc933aa..f0ded8dfeb16 100644
--- a/app-metrics/collectd/collectd-5.12.0-r2.ebuild
+++ b/app-metrics/collectd/collectd-5.12.0-r2.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"
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2;
 LICENSE="MIT GPL-2 GPL-2+ GPL-3 GPL-3+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~x86"
-IUSE="contrib debug java kernel_Darwin kernel_FreeBSD kernel_linux perl 
selinux static-libs udev xfs"
+IUSE="contrib debug java kernel_Darwin kernel_linux perl selinux static-libs 
udev xfs"
 
 # The plugin lists have to follow here since they extend IUSE
 
@@ -150,15 +150,7 @@ COMMON_DEPEND="
collectd_plugins_write_redis?   ( dev-libs/hiredis:= )
collectd_plugins_write_stackdriver? ( net-misc/curl:0= 
dev-libs/yajl:= )
collectd_plugins_xencpu?( app-emulation/xen-tools:= )
-
-   kernel_FreeBSD? (
-   collectd_plugins_disk?  ( sys-libs/libstatgrab:= )
-   collectd_plugins_interface? ( sys-libs/libstatgrab:= )
-   collectd_plugins_load?  ( sys-libs/libstatgrab:= )
-   

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/synscan/

2022-01-03 Thread Sam James
commit: 3011c948edc2a5ec31f3bf53b29f79412392148b
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:30:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3011c948

net-analyzer/synscan: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/synscan/synscan-5.02.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/synscan/synscan-5.02.ebuild 
b/net-analyzer/synscan/synscan-5.02.ebuild
index 020b4811326d..fd7ab7d91278 100644
--- a/net-analyzer/synscan/synscan-5.02.ebuild
+++ b/net-analyzer/synscan/synscan-5.02.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
@@ -12,7 +12,7 @@ 
SRC_URI="http://www.digit-labs.org/files/tools/${PN}/releases/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 x86 ~x64-macos"
-IUSE="kernel_Darwin kernel_FreeBSD kernel_linux kernel_SunOS"
+IUSE="kernel_Darwin kernel_linux kernel_SunOS"
 
 RDEPEND="net-libs/libpcap"
 DEPEND="${RDEPEND}"
@@ -31,7 +31,6 @@ src_prepare() {
 src_compile() {
local _target
 
-   use kernel_FreeBSD && _target=freebsd
use kernel_linux && _target=linux
use kernel_SunOS && _target=solaris-sparc-gcc
use kernel_Darwin && _target=macos



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmux/

2022-01-03 Thread Sam James
commit: 53885dea62ab969a7e46939255988a21bb7d9306
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:30:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53885dea

app-misc/tmux: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 app-misc/tmux/tmux-3.1c.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/tmux/tmux-3.1c.ebuild b/app-misc/tmux/tmux-3.1c.ebuild
index 83e054ebd04a..e0b72a2da447 100644
--- a/app-misc/tmux/tmux-3.1c.ebuild
+++ b/app-misc/tmux/tmux-3.1c.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
@@ -20,7 +20,7 @@ fi
 
 LICENSE="ISC"
 SLOT="0"
-IUSE="debug selinux utempter vim-syntax kernel_FreeBSD kernel_linux"
+IUSE="debug selinux utempter vim-syntax kernel_linux"
 
 DEPEND="
dev-libs/libevent:0=



[gentoo-commits] repo/gentoo:master commit in: dev-libs/leveldb/

2022-01-03 Thread Sam James
commit: cd95efbaa237970e042293e4c9841ca905e29be8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 16:10:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:28:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd95efba

dev-libs/leveldb: remove kernel_FreeBSD

Signed-off-by: David Seifert  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 dev-libs/leveldb/leveldb-1.20.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/leveldb/leveldb-1.20.ebuild 
b/dev-libs/leveldb/leveldb-1.20.ebuild
index fbf7e9603eda..6961f094c8cc 100644
--- a/dev-libs/leveldb/leveldb-1.20.ebuild
+++ b/dev-libs/leveldb/leveldb-1.20.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
@@ -13,7 +13,7 @@ LICENSE="BSD"
 # https://github.com/google/leveldb/issues/536
 SLOT="0/1"
 KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="+snappy static-libs kernel_FreeBSD +tcmalloc test"
+IUSE="+snappy static-libs +tcmalloc test"
 RESTRICT="!test? ( test )"
 
 DEPEND="tcmalloc? ( dev-util/google-perftools )
@@ -34,7 +34,7 @@ src_configure() {
tc-export AR CC CXX
export OPT="-DNDEBUG ${CPPFLAGS}"
 
-   TARGET_OS=$(usex kernel_FreeBSD FreeBSD Linux) \
+   TARGET_OS=Linux \
USE_SNAPPY=$(usex snappy) \
USE_TCMALLOC=no \
TMPDIR=${T} \



[gentoo-commits] repo/gentoo:master commit in: dev-python/GitPython/

2022-01-03 Thread Sam James
commit: b270e42c53fbf279b93ed8c64fcc4e56464bc09b
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:22:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:22:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b270e42c

dev-python/GitPython: Stabilize 3.1.24-r1 sparc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/GitPython/GitPython-3.1.24-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/GitPython/GitPython-3.1.24-r1.ebuild 
b/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
index a87491e13d0b..a6442e4b6d63 100644
--- a/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
+++ b/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
@@ -23,7 +23,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-vcs/git



[gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/

2022-01-03 Thread Sam James
commit: fad077f463e7ace0666c1cd1c573ead71482a828
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad077f4

dev-python/pylint: Stabilize 2.12.2 ppc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/pylint/pylint-2.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pylint/pylint-2.12.2.ebuild 
b/dev-python/pylint/pylint-2.12.2.ebuild
index a1f75c1d3df5..dcb53cc2a5ed 100644
--- a/dev-python/pylint/pylint-2.12.2.ebuild
+++ b/dev-python/pylint/pylint-2.12.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="examples"
 
 # Make sure to check https://github.com/PyCQA/pylint/blob/main/setup.cfg#L43 
on bumps



[gentoo-commits] repo/gentoo:master commit in: dev-python/smmap/

2022-01-03 Thread Sam James
commit: efef9d582a2f75fa3bfb83dd9ecf9428d92f2c3c
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:22:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:22:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efef9d58

dev-python/smmap: Stabilize 5.0.0 sparc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/smmap/smmap-5.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/smmap/smmap-5.0.0.ebuild 
b/dev-python/smmap/smmap-5.0.0.ebuild
index 2ce19a400d36..15b290310eea 100644
--- a/dev-python/smmap/smmap-5.0.0.ebuild
+++ b/dev-python/smmap/smmap-5.0.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
 SLOT="0"
 
 distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/ddt/

2022-01-03 Thread Sam James
commit: 1c28afd84b2ec2bff37088960b0b845224fc5514
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c28afd8

dev-python/ddt: Stabilize 1.4.4 ppc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/ddt/ddt-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ddt/ddt-1.4.4.ebuild b/dev-python/ddt/ddt-1.4.4.ebuild
index bf36dbe2687e..37a9260bec96 100644
--- a/dev-python/ddt/ddt-1.4.4.ebuild
+++ b/dev-python/ddt/ddt-1.4.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 
 BDEPEND="
test? (



[gentoo-commits] repo/gentoo:master commit in: dev-python/GitPython/

2022-01-03 Thread Sam James
commit: 1504d11d479e6801107ac2f95ec6f26658e70a23
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1504d11d

dev-python/GitPython: Stabilize 3.1.24-r1 ppc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/GitPython/GitPython-3.1.24-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/GitPython/GitPython-3.1.24-r1.ebuild 
b/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
index 3d2c69324381..a87491e13d0b 100644
--- a/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
+++ b/dev-python/GitPython/GitPython-3.1.24-r1.ebuild
@@ -23,7 +23,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-vcs/git



[gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/

2022-01-03 Thread Sam James
commit: aa2fb0d5587fd4671e2972155b8328a917e8f34d
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:22:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:22:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa2fb0d5

dev-python/pylint: Stabilize 2.12.2 sparc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/pylint/pylint-2.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pylint/pylint-2.12.2.ebuild 
b/dev-python/pylint/pylint-2.12.2.ebuild
index dcb53cc2a5ed..d91fff31251d 100644
--- a/dev-python/pylint/pylint-2.12.2.ebuild
+++ b/dev-python/pylint/pylint-2.12.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="examples"
 
 # Make sure to check https://github.com/PyCQA/pylint/blob/main/setup.cfg#L43 
on bumps



[gentoo-commits] repo/gentoo:master commit in: dev-python/smmap/

2022-01-03 Thread Sam James
commit: ff2b7b2edfc9be82b015e3209da34b7c51751cf8
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff2b7b2e

dev-python/smmap: Stabilize 5.0.0 ppc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/smmap/smmap-5.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/smmap/smmap-5.0.0.ebuild 
b/dev-python/smmap/smmap-5.0.0.ebuild
index e0ed7318d574..2ce19a400d36 100644
--- a/dev-python/smmap/smmap-5.0.0.ebuild
+++ b/dev-python/smmap/smmap-5.0.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 SLOT="0"
 
 distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/

2022-01-03 Thread Sam James
commit: a23820c7af1d1c93382d512475a22029bcd4bbc8
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23820c7

dev-python/typed-ast: Stabilize 1.5.1 ppc, #830547

Signed-off-by: Sam James  gentoo.org>

 dev-python/typed-ast/typed-ast-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/typed-ast/typed-ast-1.5.1.ebuild 
b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
index b1de76560544..262e284602da 100644
--- a/dev-python/typed-ast/typed-ast-1.5.1.ebuild
+++ b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${P/-/_}"
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~x64-macos"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/gitdb/

2022-01-03 Thread Sam James
commit: 9adbe9242b4feeb28cc14e1b1854293296b259c3
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9adbe924

dev-python/gitdb: Stabilize 4.0.8 ppc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/gitdb/gitdb-4.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/gitdb/gitdb-4.0.8.ebuild 
b/dev-python/gitdb/gitdb-4.0.8.ebuild
index 56a76174a288..981569cde400 100644
--- a/dev-python/gitdb/gitdb-4.0.8.ebuild
+++ b/dev-python/gitdb/gitdb-4.0.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 
 RDEPEND="
>=dev-python/smmap-3.0.1[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/gitdb/

2022-01-03 Thread Sam James
commit: 67c8bbef4276f9ac48f475d74f8a61f0f888ef84
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:22:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:22:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67c8bbef

dev-python/gitdb: Stabilize 4.0.8 sparc, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/gitdb/gitdb-4.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/gitdb/gitdb-4.0.8.ebuild 
b/dev-python/gitdb/gitdb-4.0.8.ebuild
index 981569cde400..122743a76098 100644
--- a/dev-python/gitdb/gitdb-4.0.8.ebuild
+++ b/dev-python/gitdb/gitdb-4.0.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/smmap-3.0.1[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-misc/mime-types/

2022-01-03 Thread Sam James
commit: bdc61566740a36f9716dde39faf0ea46900b7368
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:22:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:22:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc61566

app-misc/mime-types: Stabilize 2.1.53 sparc, #830527

Signed-off-by: Sam James  gentoo.org>

 app-misc/mime-types/mime-types-2.1.53.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mime-types/mime-types-2.1.53.ebuild 
b/app-misc/mime-types/mime-types-2.1.53.ebuild
index 42f5aa69fb1a..86f210808cc4 100644
--- a/app-misc/mime-types/mime-types-2.1.53.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.53.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



[gentoo-commits] repo/gentoo:master commit in: sys-block/fio/

2022-01-03 Thread Sam James
commit: 4393586189d9ef587b4fec5c2eaef5774bafdcab
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43935861

sys-block/fio: Stabilize 3.27-r1 ppc64, #811699

Signed-off-by: Sam James  gentoo.org>

 sys-block/fio/fio-3.27-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/fio/fio-3.27-r1.ebuild b/sys-block/fio/fio-3.27-r1.ebuild
index deffaf49e833..0113cae7750f 100644
--- a/sys-block/fio/fio-3.27-r1.ebuild
+++ b/sys-block/fio/fio-3.27-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ia64 ppc ppc64 x86"
 IUSE="aio curl glusterfs gnuplot gtk io-uring numa python rbd rdma static 
tcmalloc test zbc zlib"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
gnuplot? ( python )



[gentoo-commits] repo/gentoo:master commit in: app-misc/mime-types/

2022-01-03 Thread Sam James
commit: 8baa9688b6d7a4528358d60c9d1bb55cb17b67fd
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8baa9688

app-misc/mime-types: Stabilize 2.1.53 ppc, #830527

Signed-off-by: Sam James  gentoo.org>

 app-misc/mime-types/mime-types-2.1.53.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mime-types/mime-types-2.1.53.ebuild 
b/app-misc/mime-types/mime-types-2.1.53.ebuild
index a16cfc2029dd..42f5aa69fb1a 100644
--- a/app-misc/mime-types/mime-types-2.1.53.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.53.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



[gentoo-commits] repo/gentoo:master commit in: app-misc/mime-types/

2022-01-03 Thread Sam James
commit: 190853d614e2a2f693f0ba2483d59d7e1669f96f
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190853d6

app-misc/mime-types: Stabilize 2.1.53 ppc64, #830527

Signed-off-by: Sam James  gentoo.org>

 app-misc/mime-types/mime-types-2.1.53.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mime-types/mime-types-2.1.53.ebuild 
b/app-misc/mime-types/mime-types-2.1.53.ebuild
index d710256edd20..a16cfc2029dd 100644
--- a/app-misc/mime-types/mime-types-2.1.53.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.53.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/

2022-01-03 Thread Sam James
commit: 784fdb570cf69e710c6a7c08a915e5337a707800
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784fdb57

dev-python/fonttools: Stabilize 4.28.4 ppc, #830537

Signed-off-by: Sam James  gentoo.org>

 dev-python/fonttools/fonttools-4.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fonttools/fonttools-4.28.4.ebuild 
b/dev-python/fonttools/fonttools-4.28.4.ebuild
index c2d74e96482b..f8b5de88433d 100644
--- a/dev-python/fonttools/fonttools-4.28.4.ebuild
+++ b/dev-python/fonttools/fonttools-4.28.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 
~x64-macos"
 
 RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/

2022-01-03 Thread Sam James
commit: e8bfaae094fc297cff6c57a1919f8531d06ed901
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:21:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:21:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8bfaae0

dev-python/fonttools: Stabilize 4.28.4 ppc64, #830537

Signed-off-by: Sam James  gentoo.org>

 dev-python/fonttools/fonttools-4.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fonttools/fonttools-4.28.4.ebuild 
b/dev-python/fonttools/fonttools-4.28.4.ebuild
index 1aeadc5032e6..c2d74e96482b 100644
--- a/dev-python/fonttools/fonttools-4.28.4.ebuild
+++ b/dev-python/fonttools/fonttools-4.28.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv sparc 
x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv sparc x86 
~x64-macos"
 
 RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/libarchive-c/

2022-01-03 Thread Sam James
commit: 0cb7e15197d8dfb948ee5ee70a4b84c11e352990
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:19:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:19:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb7e151

dev-python/libarchive-c: Stabilize 3.2-r1 x86, #830541

Signed-off-by: Sam James  gentoo.org>

 dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild 
b/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild
index 147604f129d3..07b3b940883d 100644
--- a/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild
+++ b/dev-python/libarchive-c/libarchive-c-3.2-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/python-${P}
 
 LICENSE="CC0-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 RDEPEND="app-arch/libarchive"
 BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/

2022-01-03 Thread Sam James
commit: 3f026d01eda8d9eecf4b475a918a7596aafa231f
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:17:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:17:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f026d01

dev-python/fonttools: Stabilize 4.28.4 arm, #830537

Signed-off-by: Sam James  gentoo.org>

 dev-python/fonttools/fonttools-4.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fonttools/fonttools-4.28.4.ebuild 
b/dev-python/fonttools/fonttools-4.28.4.ebuild
index b397a908a4ca..778cddae5f2d 100644
--- a/dev-python/fonttools/fonttools-4.28.4.ebuild
+++ b/dev-python/fonttools/fonttools-4.28.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv sparc 
~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv sparc 
~x86 ~x64-macos"
 
 RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/mime-types/

2022-01-03 Thread Sam James
commit: c1ca8ddff7e248ebe791ae9efdeb5ede1accaaef
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:18:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:18:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1ca8ddf

app-misc/mime-types: Stabilize 2.1.53 arm64, #830527

Signed-off-by: Sam James  gentoo.org>

 app-misc/mime-types/mime-types-2.1.53.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mime-types/mime-types-2.1.53.ebuild 
b/app-misc/mime-types/mime-types-2.1.53.ebuild
index 788e442d23f0..d710256edd20 100644
--- a/app-misc/mime-types/mime-types-2.1.53.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.53.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/

2022-01-03 Thread Sam James
commit: 76df4d1f0f0a5f666cbd4d89d3b52d8e5b5fcd3d
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:18:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76df4d1f

dev-python/pylint: Stabilize 2.12.2 arm64, #830544

Signed-off-by: Sam James  gentoo.org>

 dev-python/pylint/pylint-2.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pylint/pylint-2.12.2.ebuild 
b/dev-python/pylint/pylint-2.12.2.ebuild
index 519a8a829e05..a1f75c1d3df5 100644
--- a/dev-python/pylint/pylint-2.12.2.ebuild
+++ b/dev-python/pylint/pylint-2.12.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="examples"
 
 # Make sure to check https://github.com/PyCQA/pylint/blob/main/setup.cfg#L43 
on bumps



[gentoo-commits] repo/gentoo:master commit in: app-misc/mime-types/

2022-01-03 Thread Sam James
commit: f96b658330f8bdae45855542a671eaff036b5bae
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:17:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:17:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f96b6583

app-misc/mime-types: Stabilize 2.1.53 arm, #830527

Signed-off-by: Sam James  gentoo.org>

 app-misc/mime-types/mime-types-2.1.53.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mime-types/mime-types-2.1.53.ebuild 
b/app-misc/mime-types/mime-types-2.1.53.ebuild
index e04adb27c3dc..788e442d23f0 100644
--- a/app-misc/mime-types/mime-types-2.1.53.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.53.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/

2022-01-03 Thread Sam James
commit: ac101c38934c58f4c8f6af98a488a9d936d30b14
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:19:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:19:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac101c38

dev-python/fonttools: Stabilize 4.28.4 x86, #830537

Signed-off-by: Sam James  gentoo.org>

 dev-python/fonttools/fonttools-4.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fonttools/fonttools-4.28.4.ebuild 
b/dev-python/fonttools/fonttools-4.28.4.ebuild
index 778cddae5f2d..1aeadc5032e6 100644
--- a/dev-python/fonttools/fonttools-4.28.4.ebuild
+++ b/dev-python/fonttools/fonttools-4.28.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv sparc 
~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv sparc 
x86 ~x64-macos"
 
 RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/

2022-01-03 Thread Sam James
commit: 46932b483845c3a615c256ff5e0783064d16055b
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:17:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:17:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46932b48

dev-python/typed-ast: Stabilize 1.5.1 arm, #830547

Signed-off-by: Sam James  gentoo.org>

 dev-python/typed-ast/typed-ast-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/typed-ast/typed-ast-1.5.1.ebuild 
b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
index eea9b15aaaea..253af7cff583 100644
--- a/dev-python/typed-ast/typed-ast-1.5.1.ebuild
+++ b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${P/-/_}"
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc 
~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc 
~x86 ~x64-macos"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/

2022-01-03 Thread Sam James
commit: e21fa215f7936c8bde59cbad69d83f58ec10f527
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:19:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:19:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21fa215

dev-python/typed-ast: Stabilize 1.5.1 x86, #830547

Signed-off-by: Sam James  gentoo.org>

 dev-python/typed-ast/typed-ast-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/typed-ast/typed-ast-1.5.1.ebuild 
b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
index f3fdbb8a33be..b1de76560544 100644
--- a/dev-python/typed-ast/typed-ast-1.5.1.ebuild
+++ b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${P/-/_}"
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc 
~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc x86 
~x64-macos"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/

2022-01-03 Thread Sam James
commit: 205e69712999d6d30e923012b9ea214531943d10
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan  4 03:18:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan  4 03:18:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=205e6971

dev-python/typed-ast: Stabilize 1.5.1 arm64, #830547

Signed-off-by: Sam James  gentoo.org>

 dev-python/typed-ast/typed-ast-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/typed-ast/typed-ast-1.5.1.ebuild 
b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
index 253af7cff583..f3fdbb8a33be 100644
--- a/dev-python/typed-ast/typed-ast-1.5.1.ebuild
+++ b/dev-python/typed-ast/typed-ast-1.5.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${P/-/_}"
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc 
~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv sparc 
~x86 ~x64-macos"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: sys-firmware/edk2-ovmf/

2022-01-03 Thread Matthias Maier
commit: dee51fb9e273c98d521b6d7083030f89d8c13ad5
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon Jan  3 23:51:34 2022 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Jan  4 00:02:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee51fb9

sys-firmware/edk2-ovmf: clean up vulnerable

Bug: https://bugs.gentoo.org/797232
Bug: https://bugs.gentoo.org/797703
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthias Maier  gentoo.org>

 sys-firmware/edk2-ovmf/Manifest|   3 -
 sys-firmware/edk2-ovmf/edk2-ovmf-202008.ebuild | 186 -
 2 files changed, 189 deletions(-)

diff --git a/sys-firmware/edk2-ovmf/Manifest b/sys-firmware/edk2-ovmf/Manifest
index 82d355e9d92e..109f312f8e6e 100644
--- a/sys-firmware/edk2-ovmf/Manifest
+++ b/sys-firmware/edk2-ovmf/Manifest
@@ -1,7 +1,4 @@
 DIST brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz 23855739 BLAKE2B 
7406ec5b29ac66afbcd7c1376bb3208f298d19b6592b2869c52173aa64947d58bd443f9a61c67deaf046be910a0e31c0b843e5508e97e0e1f5e7bce100d86904
 SHA512 
df8e90562c4fd7f0e787949df6bc4f5a165b39bd333f442d27874fe65640fbba268f9350d7113e6761a5acceb66d78e75f1a296e5a89b94574edf28109cdc812
-DIST edk2-ovmf-202008-bin.tar.xz 3486024 BLAKE2B 
8283db554ad7024e3a55b62ed0a560ed9f729d728f1dee3806814b1eb8d89dabc4fd70433f7f77656b65d9af7919d036074a53a95190a1aa8b65ab7d73495ffc
 SHA512 
d0c8b249a7a2124e8bb63a4358466e86a3a837e76586565dd4762351998d8561374eabb8a1303dbf71ac269c15552d9e8cff71d65bc6fe8a3a81fb4fb032e0d8
-DIST edk2-ovmf-202008-qemu-firmware.tar.xz 680 BLAKE2B 
176f8e94a3f605acc72850634cbf155619490f5998125521a392a8e9c7d2b78841b841f0cb5ea860f14645b124cf1921256bbe46960efbe3401805d89bbfbed6
 SHA512 
b72f248ab4d49503c3e8e686e22beb77f0e48d2c6c9523f389f20504e0c30fa11fa0fcb5607d7d5bb1ba2433894fa458864c5761335e39de4b2a40b01203f043
-DIST edk2-ovmf-202008.tar.gz 13172590 BLAKE2B 
10acf77d0e70e21ca425ea41c0062f8cebe2cc607b93a2a253bcd87cea1546e791776a34d43fbf4f1040f4fc32e3ee413d44873d0f00b9e523816519cfed634e
 SHA512 
c32340104f27b9b85f79e934cc9eeb739d47b01e13975c88f39b053e9bc5a1ecfe579ab3b63fc7747cc328e104b337b53d41deb4470c3f20dbbd5552173a4666
 DIST edk2-ovmf-202105-qemu-firmware.tar.xz 672 BLAKE2B 
e87845a84c83f65db836fd054c81a4f3062d5e0fcc51aa0ecf9c2d23c8741f218d38ef737d140f5935ce8d9c34508e5f3b9f54bf9c547a391fa63cdc2ecf1233
 SHA512 
6100502f26db26e407dacce57c96b1abfd372bcb31767a068332afa09ac435a092fd2a73db27670d27c6e927c26e88315346bbac70578571108434b9683bd00c
 DIST edk2-ovmf-202105-r1-bin.tar.xz 2633188 BLAKE2B 
93b4bd1c75da69406b5d27ac32d8b7c63dc8248bcd5d54832e520a4b009be4b7f215eb7d489ecb7cb16d31e02452dfa06b8fa709f37c44e59b4ff70a550076c7
 SHA512 
356c2110abce43da9c0654324e222cbbab7085e3aa23d1ba4c98011e4d4992a37d61fa45394305b748d119dba12f65d7c7d630b9f8038065ba4672d758c702be
 DIST edk2-ovmf-202105.tar.gz 13702868 BLAKE2B 
3ec01d467562380ca2fd3bd807d2f6c55e4637c1afd71533f8f5b22cc634dc4c8cb63dab921677f8b315d17b3c9d0b6b00a0e2f3f8da61107033e9e81bf5a64d
 SHA512 
c263345cbb243c63985f974a61f37c577a139d6a7099d2b8c9e1a553e5ebf16de12fb711b72624081c6bf637f8084bbf71731ab99e5747d81da460388ac25791

diff --git a/sys-firmware/edk2-ovmf/edk2-ovmf-202008.ebuild 
b/sys-firmware/edk2-ovmf/edk2-ovmf-202008.ebuild
deleted file mode 100644
index c02cae3b5fcf..
--- a/sys-firmware/edk2-ovmf/edk2-ovmf-202008.ebuild
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit python-any-r1 readme.gentoo-r1
-
-DESCRIPTION="UEFI firmware for 64-bit x86 virtual machines"
-HOMEPAGE="https://github.com/tianocore/edk2;
-
-NON_BINARY_DEPEND="
-   app-emulation/qemu
-   >=dev-lang/nasm-2.0.7
-   >=sys-power/iasl-20160729
-   ${PYTHON_DEPS}
-"
-DEPEND=""
-RDEPEND=""
-if [[ ${PV} == "99" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/tianocore/edk2;
-   DEPEND+="
-   ${NON_BINARY_DEPEND}
-   "
-else
-   BUNDLED_OPENSSL_SUBMODULE_SHA="e2e09d9fba1187f8d6aafaa34d4172f56f1ffb72"
-   BUNDLED_BROTLI_SUBMODULE_SHA="666c3280cc11dc433c303d79a83d4ffbdd12cc8d"
-   # Binary versions taken from fedora:
-   # 
http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/Packages/e/
-   #   edk2-ovmf-20200801stable-1.fc34.noarch.rpm
-
-   # TODO: talk with tamiko about unbundling
-   SRC_URI="
-   !binary? (
-   
https://github.com/tianocore/edk2/archive/edk2-stable${PV}.tar.gz -> ${P}.tar.gz
-   
https://github.com/openssl/openssl/archive/${BUNDLED_OPENSSL_SUBMODULE_SHA}.tar.gz
 -> openssl-${BUNDLED_OPENSSL_SUBMODULE_SHA}.tar.gz
-   
https://github.com/google/brotli/archive/${BUNDLED_BROTLI_SUBMODULE_SHA}.tar.gz 
-> brotli-${BUNDLED_BROTLI_SUBMODULE_SHA}.tar.gz
-   )
-   

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/edk2-ovmf/

2022-01-03 Thread Matthias Maier
commit: 9e44e430b7bf879f821301b93fa5006e9d625097
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Jan  4 00:01:49 2022 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Jan  4 00:02:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e44e430

sys-firmware/edk2-ovmf: workaround: do not install broken qemu config

As a temporary workaround do not install

  /usr/share/qemu/firmware/40-edk2-ovmf-x64-sb-enrolled.json

We are currently not shipping the necessary OVMF_VARS.secboot.fd file

Bug: https://bugs.gentoo.org/830006
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Matthias Maier  gentoo.org>

 sys-firmware/edk2-ovmf/edk2-ovmf-202105-r2.ebuild | 177 ++
 1 file changed, 177 insertions(+)

diff --git a/sys-firmware/edk2-ovmf/edk2-ovmf-202105-r2.ebuild 
b/sys-firmware/edk2-ovmf/edk2-ovmf-202105-r2.ebuild
new file mode 100644
index ..238999b462bb
--- /dev/null
+++ b/sys-firmware/edk2-ovmf/edk2-ovmf-202105-r2.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python3_{8,9,10} )
+
+inherit python-any-r1 readme.gentoo-r1
+
+DESCRIPTION="UEFI firmware for 64-bit x86 virtual machines"
+HOMEPAGE="https://github.com/tianocore/edk2;
+
+BUNDLED_OPENSSL_SUBMODULE_SHA="e2e09d9fba1187f8d6aafaa34d4172f56f1ffb72"
+BUNDLED_BROTLI_SUBMODULE_SHA="666c3280cc11dc433c303d79a83d4ffbdd12cc8d"
+
+# TODO: talk with tamiko about unbundling (mva)
+
+# TODO: the binary 202105 package currently lacks the preseeded
+#   OVMF_VARS.secboot.fd file (that we typically get from fedora)
+
+SRC_URI="
+   !binary? (
+   
https://github.com/tianocore/edk2/archive/edk2-stable${PV}.tar.gz -> ${P}.tar.gz
+   
https://github.com/openssl/openssl/archive/${BUNDLED_OPENSSL_SUBMODULE_SHA}.tar.gz
 -> openssl-${BUNDLED_OPENSSL_SUBMODULE_SHA}.tar.gz
+   
https://github.com/google/brotli/archive/${BUNDLED_BROTLI_SUBMODULE_SHA}.tar.gz 
-> brotli-${BUNDLED_BROTLI_SUBMODULE_SHA}.tar.gz
+   )
+   binary? ( https://dev.gentoo.org/~tamiko/distfiles/${P}-r1-bin.tar.xz )
+   https://dev.gentoo.org/~tamiko/distfiles/${P}-qemu-firmware.tar.xz
+"
+
+LICENSE="BSD-2 MIT"
+SLOT="0"
+KEYWORDS="amd64 arm64 ~ppc ppc64 x86"
+
+IUSE="+binary"
+REQUIRED_USE+="
+   !amd64? ( binary )
+"
+
+NON_BINARY_DEPEND="
+   app-emulation/qemu
+   >=dev-lang/nasm-2.0.7
+   >=sys-power/iasl-20160729
+   ${PYTHON_DEPS}
+"
+
+DEPEND+="
+   !binary? (
+   amd64? (
+   ${NON_BINARY_DEPEND}
+   )
+   )"
+RDEPEND=""
+
+PATCHES=(
+   "${FILESDIR}/${PN}-202105-werror.patch"
+)
+
+S="${WORKDIR}/edk2-edk2-stable${PV}"
+
+DISABLE_AUTOFORMATTING=true
+DOC_CONTENTS="This package contains the tianocore edk2 UEFI firmware for 
64-bit x86
+virtual machines. The firmware is located under
+   /usr/share/edk2-ovmf/OVMF_CODE.fd
+   /usr/share/edk2-ovmf/OVMF_VARS.fd
+   /usr/share/edk2-ovmf/OVMF_CODE.secboot.fd
+
+If USE=binary is enabled, we also install an OVMF variables file (coming from
+fedora) that contains secureboot default keys
+
+   /usr/share/edk2-ovmf/OVMF_VARS.secboot.fd
+
+If you have compiled this package by hand, you need to either populate all
+necessary EFI variables by hand by booting
+   /usr/share/edk2-ovmf/UefiShell.(iso|img)
+or creating OVMF_VARS.secboot.fd by hand:
+   https://github.com/puiterwijk/qemu-ovmf-secureboot
+
+The firmware does not support csm (due to no free csm implementation
+available). If you need a firmware with csm support you have to download
+one for yourself. Firmware blobs are commonly labeled
+   OVMF{,_CODE,_VARS}-with-csm.fd
+
+In order to use the firmware you can run qemu the following way
+
+   $ qemu-system-x86_64 \
+   -drive 
file=/usr/share/edk2-ovmf/OVMF.fd,if=pflash,format=raw,unit=0,readonly=on \
+   ..."
+
+pkg_setup() {
+   [[ ${PV} != "99" ]] && use binary || python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   if use binary; then
+   eapply_user
+   else
+   # Bundled submodules
+   cp -rl "${WORKDIR}/openssl-${BUNDLED_OPENSSL_SUBMODULE_SHA}"/* 
"CryptoPkg/Library/OpensslLib/openssl/"
+   cp -rl "${WORKDIR}/brotli-${BUNDLED_BROTLI_SUBMODULE_SHA}"/* 
"BaseTools/Source/C/BrotliCompress/brotli/"
+   cp -rl "${WORKDIR}/brotli-${BUNDLED_BROTLI_SUBMODULE_SHA}"/* 
"MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/"
+
+   sed -i -r \
+   -e "/function SetupPython3/,/\}/{s,\\\$\(whereis 
python3\),${EPYTHON},g}" \
+   "${S}"/edksetup.sh || die "Fixing for correct Python3 
support failed"
+
+   default
+   fi
+}
+
+src_compile() {
+   TARGET_ARCH=X64
+   

[gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio-modules-bt/

2022-01-03 Thread Pacho Ramos
commit: 49bf3ef9457c00bf8fad1499bafe23ddcf5c93fe
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Jan  3 23:36:17 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Jan  3 23:36:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49bf3ef9

media-sound/pulseaudio-modules-bt: Update pulseaudio dependencies

Closes: https://bugs.gentoo.org/830351
Bug: https://bugs.gentoo.org/782625
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 .../pulseaudio-modules-bt-1.4-r2.ebuild| 82 ++
 1 file changed, 82 insertions(+)

diff --git 
a/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.4-r2.ebuild 
b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.4-r2.ebuild
new file mode 100644
index ..5ce55a2c7a12
--- /dev/null
+++ b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.4-r2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake readme.gentoo-r1
+
+DESCRIPTION="PulseAudio modules for LDAC, aptX, aptX HD, and AAC for Bluetooth"
+HOMEPAGE="https://github.com/EHfive/pulseaudio-modules-bt;
+
+PULSE_VER="15.0"
+SRC_URI="
+   https://github.com/EHfive/pulseaudio-modules-bt/archive/v${PV}.tar.gz 
-> ${P}.tar.gz
+   
https://freedesktop.org/software/pulseaudio/releases/pulseaudio-${PULSE_VER}.tar.xz
+"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="fdk +ffmpeg +ldac +native-headset ofono-headset"
+
+DEPEND="
+   fdk? ( media-libs/fdk-aac:0= )
+   ffmpeg? ( media-video/ffmpeg )
+   media-libs/sbc
+   ldac? ( media-libs/libldac )
+   >=net-wireless/bluez-5
+   >=sys-apps/dbus-1.0.0
+   ofono-headset? ( >=net-misc/ofono-1.13 )
+   >=media-sound/pulseaudio-${PULSE_VER}[-bluetooth,daemon(+)]
+   !media-sound/pulseaudio[bluetooth]
+"
+# Ordinarily media-libs/libldac should be in DEPEND too, but for now upstream 
repo is using a ldac submodule instead.
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+DISABLE_AUTOFORMATTING="no"
+DOC_CONTENTS="
+After getting media-sound/pulseaudio merged without its bluetooth
+support (to not collide with this) you may have removed the loading
+of bluetooth modules in default.pa config file, leading to failure
+to use your bluetooth device (see
+https://github.com/EHfive/pulseaudio-modules-bt/issues/33).
+Please ensure you have this lines present in your /etc/pulse/default.pa
+file:
+
+.ifexists module-bluetooth-policy.so
+load-module module-bluetooth-policy
+.endif
+
+.ifexists module-bluetooth-discover.so
+load-module module-bluetooth-discover
+.endif
+"
+
+src_prepare() {
+   cmake_src_prepare
+
+   # pulseaudio headers needed to build
+   rmdir pa/ || die
+   ln -s ../pulseaudio-${PULSE_VER}/ pa || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCODEC_AAC_FDK=$(usex fdk "ON" "OFF")
+   -DCODEC_APTX_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_APTX_HD_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_LDAC=$(usex ldac "ON" "OFF")
+   -DNATIVE_HEADSET=$(usex native-headset "ON" "OFF")
+   -DOFONO_HEADSET=$(usex ofono-headset "ON" "OFF")
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxx/

2022-01-03 Thread David Seifert
commit: 9f5ef43c8eff3b9fd0a920fa9d235af85a9bb158
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:28 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f5ef43c

sys-libs/libcxx: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 sys-libs/libcxx/libcxx-11.1.0.ebuild  | 4 ++--
 sys-libs/libcxx/libcxx-12.0.1.ebuild  | 4 ++--
 sys-libs/libcxx/libcxx-13.0.0.ebuild  | 4 ++--
 sys-libs/libcxx/libcxx-13.0.1..ebuild | 4 ++--
 sys-libs/libcxx/libcxx-13.0.1_rc1.ebuild  | 4 ++--
 sys-libs/libcxx/libcxx-14.0.0..ebuild | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/sys-libs/libcxx/libcxx-11.1.0.ebuild 
b/sys-libs/libcxx/libcxx-11.1.0.ebuild
index 16172647c295..a976ee77c535 100644
--- a/sys-libs/libcxx/libcxx-11.1.0.ebuild
+++ b/sys-libs/libcxx/libcxx-11.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
+IUSE="+libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-libs/libcxx/libcxx-12.0.1.ebuild 
b/sys-libs/libcxx/libcxx-12.0.1.ebuild
index 32d4aa2d1da6..32417c012865 100644
--- a/sys-libs/libcxx/libcxx-12.0.1.ebuild
+++ b/sys-libs/libcxx/libcxx-12.0.1.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
+IUSE="+libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-libs/libcxx/libcxx-13.0.0.ebuild 
b/sys-libs/libcxx/libcxx-13.0.0.ebuild
index 851870fd9e95..74bdf451ab48 100644
--- a/sys-libs/libcxx/libcxx-13.0.0.ebuild
+++ b/sys-libs/libcxx/libcxx-13.0.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
+IUSE="+libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-libs/libcxx/libcxx-13.0.1..ebuild 
b/sys-libs/libcxx/libcxx-13.0.1..ebuild
index be5566afa3bf..a9c71dc6e041 100644
--- a/sys-libs/libcxx/libcxx-13.0.1..ebuild
+++ b/sys-libs/libcxx/libcxx-13.0.1..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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
+IUSE="+libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-libs/libcxx/libcxx-13.0.1_rc1.ebuild 
b/sys-libs/libcxx/libcxx-13.0.1_rc1.ebuild
index f8fd0e126832..0e230df43a5d 100644
--- a/sys-libs/libcxx/libcxx-13.0.1_rc1.ebuild
+++ b/sys-libs/libcxx/libcxx-13.0.1_rc1.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="elibc_glibc elibc_musl +libcxxabi +libunwind static-libs test"
+IUSE="+libcxxabi +libunwind static-libs test"
 REQUIRED_USE="libunwind? ( libcxxabi )"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-libs/libcxx/libcxx-14.0.0..ebuild 
b/sys-libs/libcxx/libcxx-14.0.0..ebuild
index b804e981e692..ff9cb4ac3d94 100644
--- a/sys-libs/libcxx/libcxx-14.0.0..ebuild
+++ b/sys-libs/libcxx/libcxx-14.0.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxx.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/

2022-01-03 Thread David Seifert
commit: 17eb6939b8acf81d00f363a34bad94fef2d50d1f
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:24 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17eb6939

sys-fs/mtools: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 sys-fs/mtools/mtools-4.0.35.ebuild | 4 ++--
 sys-fs/mtools/mtools-4.0.36.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-fs/mtools/mtools-4.0.35.ebuild 
b/sys-fs/mtools/mtools-4.0.35.ebuild
index 11b85109c45f..74e3d8fd4a01 100644
--- a/sys-fs/mtools/mtools-4.0.35.ebuild
+++ b/sys-fs/mtools/mtools-4.0.35.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"
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos 
~x64-solaris"
-IUSE="X elibc_glibc"
+IUSE="X"
 
 RDEPEND="
!elibc_glibc? ( virtual/libiconv )

diff --git a/sys-fs/mtools/mtools-4.0.36.ebuild 
b/sys-fs/mtools/mtools-4.0.36.ebuild
index 3ebdd3b6df91..52f5d5207032 100644
--- a/sys-fs/mtools/mtools-4.0.36.ebuild
+++ b/sys-fs/mtools/mtools-4.0.36.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"
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x64-macos ~x64-solaris"
-IUSE="X elibc_glibc"
+IUSE="X"
 
 RDEPEND="
!elibc_glibc? ( virtual/libiconv )



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxxabi/

2022-01-03 Thread David Seifert
commit: 5ae36dfb84ccabbe10332843dfc0c041bc7a1bfd
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:26 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae36dfb

sys-libs/libcxxabi: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 sys-libs/libcxxabi/libcxxabi-11.1.0.ebuild  | 4 ++--
 sys-libs/libcxxabi/libcxxabi-12.0.1.ebuild  | 4 ++--
 sys-libs/libcxxabi/libcxxabi-13.0.0.ebuild  | 4 ++--
 sys-libs/libcxxabi/libcxxabi-13.0.1..ebuild | 4 ++--
 sys-libs/libcxxabi/libcxxabi-13.0.1_rc1.ebuild  | 4 ++--
 sys-libs/libcxxabi/libcxxabi-14.0.0..ebuild | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/sys-libs/libcxxabi/libcxxabi-11.1.0.ebuild 
b/sys-libs/libcxxabi/libcxxabi-11.1.0.ebuild
index fa0f31dbb563..60fed4fd01c8 100644
--- a/sys-libs/libcxxabi/libcxxabi-11.1.0.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-11.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/sys-libs/libcxxabi/libcxxabi-12.0.1.ebuild 
b/sys-libs/libcxxabi/libcxxabi-12.0.1.ebuild
index bb4a7e9ab18f..a6a51a0b90b5 100644
--- a/sys-libs/libcxxabi/libcxxabi-12.0.1.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-12.0.1.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/sys-libs/libcxxabi/libcxxabi-13.0.0.ebuild 
b/sys-libs/libcxxabi/libcxxabi-13.0.0.ebuild
index 628752042eea..690b4d4e2681 100644
--- a/sys-libs/libcxxabi/libcxxabi-13.0.0.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-13.0.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~riscv x86 ~x64-macos"
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/sys-libs/libcxxabi/libcxxabi-13.0.1..ebuild 
b/sys-libs/libcxxabi/libcxxabi-13.0.1..ebuild
index 36ccca5e938a..d260ea2e3450 100644
--- a/sys-libs/libcxxabi/libcxxabi-13.0.1..ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-13.0.1..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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/sys-libs/libcxxabi/libcxxabi-13.0.1_rc1.ebuild 
b/sys-libs/libcxxabi/libcxxabi-13.0.1_rc1.ebuild
index 36ccca5e938a..d260ea2e3450 100644
--- a/sys-libs/libcxxabi/libcxxabi-13.0.1_rc1.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-13.0.1_rc1.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/sys-libs/libcxxabi/libcxxabi-14.0.0..ebuild 
b/sys-libs/libcxxabi/libcxxabi-14.0.0..ebuild
index e813f35b0089..2bd92bc0287d 100644
--- a/sys-libs/libcxxabi/libcxxabi-14.0.0..ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-14.0.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
@@ -13,7 +13,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="+libunwind static-libs test elibc_musl"
+IUSE="+libunwind static-libs test"
 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/

2022-01-03 Thread David Seifert
commit: e88cba0c0c8269adac66c5d90ad7ff62bbf49069
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:25 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88cba0c

sys-libs/compiler-rt-sanitizers: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 .../compiler-rt-sanitizers/compiler-rt-sanitizers-11.1.0-r1.ebuild| 4 ++--
 sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1.ebuild  | 4 ++--
 .../compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0-r1.ebuild| 4 ++--
 sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0.ebuild  | 4 ++--
 .../compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.1..ebuild  | 4 ++--
 .../compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.1_rc1.ebuild   | 4 ++--
 .../compiler-rt-sanitizers/compiler-rt-sanitizers-14.0.0..ebuild  | 4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.1.0-r1.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.1.0-r1.ebuild
index e089a94c228c..c56dd239fbd5 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.1.0-r1.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-11.1.0-r1.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
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
 KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~amd64-linux ~ppc-macos ~x64-macos"
-IUSE="+clang test elibc_glibc"
+IUSE="+clang test"
 # base targets
 IUSE+=" +libfuzzer +profile +xray"
 # sanitizer targets, keep in sync with config-ix.cmake

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1.ebuild
index 5d5313171cc8..8e473f55140e 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1.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
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
 KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~amd64-linux ~ppc-macos ~x64-macos"
-IUSE="+clang test elibc_glibc"
+IUSE="+clang test"
 # base targets
 IUSE+=" +libfuzzer +memprof +profile +xray"
 # sanitizer targets, keep in sync with config-ix.cmake

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0-r1.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0-r1.ebuild
index dc6d1d54b523..942810e86916 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0-r1.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0-r1.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
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~ppc-macos 
~x64-macos"
-IUSE="+clang debug test elibc_glibc"
+IUSE="+clang debug test"
 # base targets
 IUSE+=" +libfuzzer +memprof +orc +profile +xray"
 # sanitizer targets, keep in sync with config-ix.cmake

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0.ebuild
index 68f7e7b395dd..0e4e81fde951 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.0.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.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
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="$(ver_cut 1-3)"
 KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~amd64-linux ~ppc-macos ~x64-macos"
-IUSE="+clang debug test elibc_glibc"
+IUSE="+clang debug test"
 # base targets
 IUSE+=" +libfuzzer +memprof +orc +profile +xray"
 # sanitizer targets, keep in sync with config-ix.cmake

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.1..ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.1..ebuild
index f89af63c6d33..6a19654cbc0a 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-13.0.1..ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: virtual/libiconv/

2022-01-03 Thread David Seifert
commit: d30bf2dea1e39ce12a82697b57bd39bad5f9e7dc
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:30 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30bf2de

virtual/libiconv: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 virtual/libiconv/libiconv-0-r1.ebuild | 1 -
 virtual/libiconv/libiconv-0-r2.ebuild | 1 -
 virtual/libiconv/libiconv-0.ebuild| 1 -
 3 files changed, 3 deletions(-)

diff --git a/virtual/libiconv/libiconv-0-r1.ebuild 
b/virtual/libiconv/libiconv-0-r1.ebuild
index 7c7bd290c1a6..d9df8e3c8034 100644
--- a/virtual/libiconv/libiconv-0-r1.ebuild
+++ b/virtual/libiconv/libiconv-0-r1.ebuild
@@ -9,7 +9,6 @@ DESCRIPTION="Virtual for the GNU conversion library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc elibc_musl"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between
 # that and gcc

diff --git a/virtual/libiconv/libiconv-0-r2.ebuild 
b/virtual/libiconv/libiconv-0-r2.ebuild
index 7c7bd290c1a6..d9df8e3c8034 100644
--- a/virtual/libiconv/libiconv-0-r2.ebuild
+++ b/virtual/libiconv/libiconv-0-r2.ebuild
@@ -9,7 +9,6 @@ DESCRIPTION="Virtual for the GNU conversion library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc elibc_musl"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between
 # that and gcc

diff --git a/virtual/libiconv/libiconv-0.ebuild 
b/virtual/libiconv/libiconv-0.ebuild
index c398842b7b32..450c20339629 100644
--- a/virtual/libiconv/libiconv-0.ebuild
+++ b/virtual/libiconv/libiconv-0.ebuild
@@ -7,7 +7,6 @@ DESCRIPTION="Virtual for the GNU conversion library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc elibc_musl"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between
 # that and gcc



[gentoo-commits] repo/gentoo:master commit in: sys-libs/tevent/

2022-01-03 Thread David Seifert
commit: 09ac71c61aca4de5342b9be7e4cbdb42c7f6f9da
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:29 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09ac71c6

sys-libs/tevent: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 sys-libs/tevent/tevent-0.10.2.ebuild | 2 +-
 sys-libs/tevent/tevent-0.11.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/tevent/tevent-0.10.2.ebuild 
b/sys-libs/tevent/tevent-0.10.2.ebuild
index 1d42579147ba..1d14cd94327e 100644
--- a/sys-libs/tevent/tevent-0.10.2.ebuild
+++ b/sys-libs/tevent/tevent-0.10.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://samba.org/ftp/tevent/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
-IUSE="elibc_glibc python"
+IUSE="python"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="test"

diff --git a/sys-libs/tevent/tevent-0.11.0.ebuild 
b/sys-libs/tevent/tevent-0.11.0.ebuild
index 41f97806d229..209aee204c4b 100644
--- a/sys-libs/tevent/tevent-0.11.0.ebuild
+++ b/sys-libs/tevent/tevent-0.11.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://samba.org/ftp/tevent/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x86-linux"
-IUSE="elibc_glibc python"
+IUSE="python"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: virtual/libintl/

2022-01-03 Thread David Seifert
commit: 0554ed55a8b2e7431edf0ebd494708d52f43218d
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:32 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0554ed55

virtual/libintl: remove implicit elibc_* flags

Closes: https://github.com/gentoo/gentoo/pull/23640
Signed-off-by: David Seifert  gentoo.org>

 virtual/libintl/libintl-0-r1.ebuild | 1 -
 virtual/libintl/libintl-0-r2.ebuild | 1 -
 virtual/libintl/libintl-0.ebuild| 1 -
 3 files changed, 3 deletions(-)

diff --git a/virtual/libintl/libintl-0-r1.ebuild 
b/virtual/libintl/libintl-0-r1.ebuild
index 667c67aaee1a..6d540e41d768 100644
--- a/virtual/libintl/libintl-0-r1.ebuild
+++ b/virtual/libintl/libintl-0-r1.ebuild
@@ -9,7 +9,6 @@ DESCRIPTION="Virtual for the GNU Internationalization Library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between 
that and gcc.
 RDEPEND="!elibc_glibc? ( !elibc_musl? ( 
>=sys-devel/gettext-0.18.3.2[${MULTILIB_USEDEP}] ) )"

diff --git a/virtual/libintl/libintl-0-r2.ebuild 
b/virtual/libintl/libintl-0-r2.ebuild
index 42395f8ba812..91d461544289 100644
--- a/virtual/libintl/libintl-0-r2.ebuild
+++ b/virtual/libintl/libintl-0-r2.ebuild
@@ -9,7 +9,6 @@ DESCRIPTION="Virtual for the GNU Internationalization Library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc elibc_musl"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between 
that and gcc.
 RDEPEND="!elibc_glibc? ( !elibc_musl? ( dev-libs/libintl[${MULTILIB_USEDEP}] ) 
)"

diff --git a/virtual/libintl/libintl-0.ebuild b/virtual/libintl/libintl-0.ebuild
index 3ea98a7fbcdd..861f565ad4c3 100644
--- a/virtual/libintl/libintl-0.ebuild
+++ b/virtual/libintl/libintl-0.ebuild
@@ -7,7 +7,6 @@ DESCRIPTION="Virtual for the GNU Internationalization Library"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="elibc_glibc"
 
 # - Don't put elibc_glibc? ( sys-libs/glibc ) to avoid circular deps between 
that and gcc.
 RDEPEND="!elibc_glibc? ( !elibc_musl? ( sys-devel/gettext ) )"



[gentoo-commits] repo/gentoo:master commit in: net-wireless/iwd/

2022-01-03 Thread David Seifert
commit: 7c783eab6993232354adb3e74adcc34b804466e8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:23 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c783eab

net-wireless/iwd: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-wireless/iwd/iwd-1.18.ebuild | 5 ++---
 net-wireless/iwd/iwd-1.19.ebuild | 5 ++---
 net-wireless/iwd/iwd-1.20.ebuild | 5 ++---
 3 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/net-wireless/iwd/iwd-1.18.ebuild b/net-wireless/iwd/iwd-1.18.ebuild
index 92aca7db05e3..a80d0e0f25f2 100644
--- a/net-wireless/iwd/iwd-1.18.ebuild
+++ b/net-wireless/iwd/iwd-1.18.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
@@ -22,8 +22,7 @@ 
HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda elibc_musl +monitor 
ofono
-standalone systemd wired"
+IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda +monitor ofono 
standalone systemd wired"
 
 DEPEND="
sys-apps/dbus

diff --git a/net-wireless/iwd/iwd-1.19.ebuild b/net-wireless/iwd/iwd-1.19.ebuild
index a118b5d4477c..d91aa706aa87 100644
--- a/net-wireless/iwd/iwd-1.19.ebuild
+++ b/net-wireless/iwd/iwd-1.19.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
@@ -22,8 +22,7 @@ 
HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda elibc_musl +monitor 
ofono
-standalone systemd wired"
+IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda +monitor ofono 
standalone systemd wired"
 
 DEPEND="
sys-apps/dbus

diff --git a/net-wireless/iwd/iwd-1.20.ebuild b/net-wireless/iwd/iwd-1.20.ebuild
index cb041b9fb058..311a92a70d1c 100644
--- a/net-wireless/iwd/iwd-1.20.ebuild
+++ b/net-wireless/iwd/iwd-1.20.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
@@ -22,8 +22,7 @@ 
HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda elibc_musl +monitor 
ofono
-standalone systemd wired"
+IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda +monitor ofono 
standalone systemd wired"
 
 DEPEND="
sys-apps/dbus



[gentoo-commits] repo/gentoo:master commit in: net-misc/minidlna/

2022-01-03 Thread David Seifert
commit: 4d392ee7ddb78d269cc3482b2b50f2cb4632033f
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:20 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d392ee7

net-misc/minidlna: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-misc/minidlna/minidlna-1.3.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/minidlna/minidlna-1.3.0-r2.ebuild 
b/net-misc/minidlna/minidlna-1.3.0-r2.ebuild
index 113c81783d7f..37b1bb9ceac0 100644
--- a/net-misc/minidlna/minidlna-1.3.0-r2.ebuild
+++ b/net-misc/minidlna/minidlna-1.3.0-r2.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
@@ -14,7 +14,7 @@ SRC_URI="
 LICENSE="BSD GPL-2"
 SLOT="0"
 KEYWORDS="amd64 arm x86"
-IUSE="elibc_musl netgear readynas zeroconf"
+IUSE="netgear readynas zeroconf"
 
 RDEPEND="
acct-group/minidlna



[gentoo-commits] repo/gentoo:master commit in: net-misc/nx/

2022-01-03 Thread David Seifert
commit: 733732d34a77e3508a1883d4933762d6c346180f
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:21 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=733732d3

net-misc/nx: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-misc/nx/nx-3.5.99.25.ebuild | 3 +--
 net-misc/nx/nx-3.5.99.26.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/net-misc/nx/nx-3.5.99.25.ebuild b/net-misc/nx/nx-3.5.99.25.ebuild
index d3b7370a9078..184060c37318 100644
--- a/net-misc/nx/nx-3.5.99.25.ebuild
+++ b/net-misc/nx/nx-3.5.99.25.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
@@ -12,7 +12,6 @@ 
SRC_URI="https://github.com/ArcticaProject/nx-libs/archive/${PV}.tar.gz -> nx-li
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~ppc x86"
-IUSE="elibc_glibc"
 
 RDEPEND="dev-libs/libxml2
>=media-libs/libpng-1.2.8:0=

diff --git a/net-misc/nx/nx-3.5.99.26.ebuild b/net-misc/nx/nx-3.5.99.26.ebuild
index 6ddb12f1652c..639d0e415a4a 100644
--- a/net-misc/nx/nx-3.5.99.26.ebuild
+++ b/net-misc/nx/nx-3.5.99.26.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
@@ -12,7 +12,6 @@ 
SRC_URI="https://github.com/ArcticaProject/nx-libs/archive/${PV}.tar.gz -> nx-li
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm64 ~ppc x86"
-IUSE="elibc_glibc"
 
 RDEPEND="dev-libs/libxml2
>=media-libs/libpng-1.2.8:0=



[gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/

2022-01-03 Thread David Seifert
commit: bde28334cc3e0ed8f7bd6a0ece1d49e697f86878
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:16 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde28334

net-libs/zeromq: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-libs/zeromq/zeromq-4.3.3-r1.ebuild | 4 ++--
 net-libs/zeromq/zeromq-4.3.4-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-libs/zeromq/zeromq-4.3.3-r1.ebuild 
b/net-libs/zeromq/zeromq-4.3.3-r1.ebuild
index da4a09e97c25..f507ff1b89b5 100644
--- a/net-libs/zeromq/zeromq-4.3.3-r1.ebuild
+++ b/net-libs/zeromq/zeromq-4.3.3-r1.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"
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/5"
 KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x64-macos"
-IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind elibc_Darwin"
+IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind"
 RESTRICT="!test? ( test )"
 
 RDEPEND="

diff --git a/net-libs/zeromq/zeromq-4.3.4-r1.ebuild 
b/net-libs/zeromq/zeromq-4.3.4-r1.ebuild
index a326c9f95e1a..2e385aa17e29 100644
--- a/net-libs/zeromq/zeromq-4.3.4-r1.ebuild
+++ b/net-libs/zeromq/zeromq-4.3.4-r1.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"
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/5"
 KEYWORDS="amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind elibc_Darwin"
+IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind"
 RESTRICT="!test? ( test )"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd/

2022-01-03 Thread David Seifert
commit: 054d27e9d5034bc581dd10ff63f755b7d13461e5
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:19 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=054d27e9

net-misc/dhcpcd: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-misc/dhcpcd/dhcpcd-9.4.0-r1.ebuild | 4 ++--
 net-misc/dhcpcd/dhcpcd-9.4.1.ebuild| 4 ++--
 net-misc/dhcpcd/dhcpcd-.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-misc/dhcpcd/dhcpcd-9.4.0-r1.ebuild 
b/net-misc/dhcpcd/dhcpcd-9.4.0-r1.ebuild
index 996f45958644..2eea3c71b144 100644
--- a/net-misc/dhcpcd/dhcpcd-9.4.0-r1.ebuild
+++ b/net-misc/dhcpcd/dhcpcd-9.4.0-r1.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
@@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd/
 https://roy.marples.name/projects/dhcpcd/;
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="debug elibc_glibc +embedded ipv6 kernel_linux privsep +udev"
+IUSE="debug +embedded ipv6 kernel_linux privsep +udev"
 
 COMMON_DEPEND="udev? ( virtual/udev )"
 DEPEND="${COMMON_DEPEND}"

diff --git a/net-misc/dhcpcd/dhcpcd-9.4.1.ebuild 
b/net-misc/dhcpcd/dhcpcd-9.4.1.ebuild
index 7cebecfb3116..6d04f97031af 100644
--- a/net-misc/dhcpcd/dhcpcd-9.4.1.ebuild
+++ b/net-misc/dhcpcd/dhcpcd-9.4.1.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
@@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd/
 https://roy.marples.name/projects/dhcpcd/;
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="debug elibc_glibc +embedded ipv6 kernel_linux privsep +udev"
+IUSE="debug +embedded ipv6 kernel_linux privsep +udev"
 
 COMMON_DEPEND="udev? ( virtual/udev )"
 DEPEND="${COMMON_DEPEND}"

diff --git a/net-misc/dhcpcd/dhcpcd-.ebuild 
b/net-misc/dhcpcd/dhcpcd-.ebuild
index 7cebecfb3116..6d04f97031af 100644
--- a/net-misc/dhcpcd/dhcpcd-.ebuild
+++ b/net-misc/dhcpcd/dhcpcd-.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
@@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd/
 https://roy.marples.name/projects/dhcpcd/;
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="debug elibc_glibc +embedded ipv6 kernel_linux privsep +udev"
+IUSE="debug +embedded ipv6 kernel_linux privsep +udev"
 
 COMMON_DEPEND="udev? ( virtual/udev )"
 DEPEND="${COMMON_DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-misc/curl/

2022-01-03 Thread David Seifert
commit: 4536f1d025d4acc30cc4c0715a8eed0ed46f4a74
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:18 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4536f1d0

net-misc/curl: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-misc/curl/curl-7.79.1.ebuild | 3 +--
 net-misc/curl/curl-7.80.0.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/net-misc/curl/curl-7.79.1.ebuild b/net-misc/curl/curl-7.79.1.ebuild
index 9a26258ec6b1..cb574d8fbe9f 100644
--- a/net-misc/curl/curl-7.79.1.ebuild
+++ b/net-misc/curl/curl-7.79.1.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"
@@ -15,7 +15,6 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 ~riscv ~s390 s
 IUSE="adns alt-svc brotli +ftp gnutls gopher hsts +http2 idn +imap ipv6 
kerberos ldap mbedtls nss +openssl +pop3 +progress-meter rtmp samba +smtp ssh 
ssl sslv3 static-libs test telnet +tftp threads winssl zstd"
 IUSE+=" curl_ssl_gnutls curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl 
curl_ssl_winssl"
 IUSE+=" nghttp3 quiche"
-IUSE+=" elibc_Winnt"
 
 # c-ares must be disabled for threads
 # only one default ssl provider can be enabled

diff --git a/net-misc/curl/curl-7.80.0.ebuild b/net-misc/curl/curl-7.80.0.ebuild
index eb15e98757d7..f844759cd300 100644
--- a/net-misc/curl/curl-7.80.0.ebuild
+++ b/net-misc/curl/curl-7.80.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"
@@ -15,7 +15,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~
 IUSE="adns alt-svc brotli +ftp gnutls gopher hsts +http2 idn +imap ipv6 
kerberos ldap mbedtls nss +openssl +pop3 +progress-meter rtmp samba +smtp ssh 
ssl sslv3 static-libs test telnet +tftp threads zstd"
 IUSE+=" curl_ssl_gnutls curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl"
 IUSE+=" nghttp3 quiche"
-IUSE+=" elibc_Winnt"
 
 # c-ares must be disabled for threads
 # only one default ssl provider can be enabled



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Date-Manip/

2022-01-03 Thread David Seifert
commit: 467c88aac6c2dcb52a9cf69deaacae2f16359035
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:07 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=467c88aa

dev-perl/Date-Manip: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-perl/Date-Manip/Date-Manip-6.850.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Date-Manip/Date-Manip-6.850.0.ebuild 
b/dev-perl/Date-Manip/Date-Manip-6.850.0.ebuild
index f9b29596fe03..5424ebe53d60 100644
--- a/dev-perl/Date-Manip/Date-Manip-6.850.0.ebuild
+++ b/dev-perl/Date-Manip/Date-Manip-6.850.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
@@ -12,7 +12,7 @@ DESCRIPTION="Perl date manipulation routines"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="elibc_musl test"
+IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-ftp/vsftpd/

2022-01-03 Thread David Seifert
commit: eac5cd9417922b3da8091a271f9370d5f127dec8
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:15 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac5cd94

net-ftp/vsftpd: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-ftp/vsftpd/vsftpd-3.0.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-ftp/vsftpd/vsftpd-3.0.5-r1.ebuild 
b/net-ftp/vsftpd/vsftpd-3.0.5-r1.ebuild
index 707069d713d6..213664f00f1c 100644
--- a/net-ftp/vsftpd/vsftpd-3.0.5-r1.ebuild
+++ b/net-ftp/vsftpd/vsftpd-3.0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://security.appspot.com/downloads/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="elibc_musl pam ssl tcpd"
+IUSE="pam ssl tcpd"
 
 DEPEND="
>=sys-libs/libcap-2



[gentoo-commits] repo/gentoo:master commit in: mail-mta/exim/

2022-01-03 Thread David Seifert
commit: 0c742f20a747562eed42d26713f07bdc412de57b
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:11 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c742f20

mail-mta/exim: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 mail-mta/exim/exim-4.94.2-r4.ebuild | 4 ++--
 mail-mta/exim/exim-4.94.2-r6.ebuild | 4 ++--
 mail-mta/exim/exim-4.95.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/mail-mta/exim/exim-4.94.2-r4.ebuild 
b/mail-mta/exim/exim-4.94.2-r4.ebuild
index 92130e467583..bc3c972ab53c 100644
--- a/mail-mta/exim/exim-4.94.2-r4.ebuild
+++ b/mail-mta/exim/exim-4.94.2-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
 
 inherit db-use toolchain-funcs multilib pam systemd
 
-IUSE="arc +dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl dsn elibc_glibc 
exiscan-acl gnutls idn ipv6 ldap lmtp maildir mbx mysql nis pam perl pkcs11 
postgres +prdr proxy radius redis sasl selinux spf sqlite srs +srs-alt 
srs-native +ssl syslog tcpd +tpda X"
+IUSE="arc +dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl dsn exiscan-acl 
gnutls idn ipv6 ldap lmtp maildir mbx mysql nis pam perl pkcs11 postgres +prdr 
proxy radius redis sasl selinux spf sqlite srs +srs-alt srs-native +ssl syslog 
tcpd +tpda X"
 REQUIRED_USE="
arc? ( dkim spf )
dane? ( ssl !gnutls )

diff --git a/mail-mta/exim/exim-4.94.2-r6.ebuild 
b/mail-mta/exim/exim-4.94.2-r6.ebuild
index fd36c6e44c73..d611d18f89d9 100644
--- a/mail-mta/exim/exim-4.94.2-r6.ebuild
+++ b/mail-mta/exim/exim-4.94.2-r6.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"
@@ -6,7 +6,7 @@ EAPI="7"
 inherit db-use toolchain-funcs multilib pam systemd
 
 IUSE="arc berkdb +dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl
-dsn elibc_glibc exiscan-acl gdbm gnutls idn ipv6 ldap lmtp maildir mbx
+dsn exiscan-acl gdbm gnutls idn ipv6 ldap lmtp maildir mbx
 mysql nis pam perl pkcs11 postgres +prdr proxy radius redis sasl selinux
 socks5 spf sqlite srs +srs-alt srs-native +ssl syslog tdb tcpd +tpda X"
 REQUIRED_USE="

diff --git a/mail-mta/exim/exim-4.95.ebuild b/mail-mta/exim/exim-4.95.ebuild
index 43c4cb4797fe..240cb0969e01 100644
--- a/mail-mta/exim/exim-4.95.ebuild
+++ b/mail-mta/exim/exim-4.95.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"
@@ -6,7 +6,7 @@ EAPI="7"
 inherit db-use toolchain-funcs multilib pam systemd
 
 IUSE="arc berkdb +dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl
-dsn elibc_glibc exiscan-acl gdbm gnutls idn ipv6 ldap lmtp maildir mbx
+dsn exiscan-acl gdbm gnutls idn ipv6 ldap lmtp maildir mbx
 mysql nis pam perl pkcs11 postgres +prdr proxy radius redis sasl selinux
 socks5 spf sqlite srs srs-alt +srs-native +ssl syslog tdb tcpd +tpda X"
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: dev-util/quilt/

2022-01-03 Thread David Seifert
commit: c4d07494663da817b95c624b52345b8eab0d6027
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:09 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d07494

dev-util/quilt: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-util/quilt/quilt-0.66-r1.ebuild | 4 ++--
 dev-util/quilt/quilt-0.66.ebuild| 4 ++--
 dev-util/quilt/quilt-.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-util/quilt/quilt-0.66-r1.ebuild 
b/dev-util/quilt/quilt-0.66-r1.ebuild
index 1c8ce1bedd0f..a6ee73341a56 100644
--- a/dev-util/quilt/quilt-0.66-r1.ebuild
+++ b/dev-util/quilt/quilt-0.66-r1.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="8"
@@ -12,7 +12,7 @@ 
SRC_URI="https://savannah.nongnu.orgdownload/quilt/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-solaris"
-IUSE="emacs graphviz elibc_Darwin elibc_SunOS"
+IUSE="emacs graphviz"
 # unresolved test failures
 RESTRICT="test"
 

diff --git a/dev-util/quilt/quilt-0.66.ebuild b/dev-util/quilt/quilt-0.66.ebuild
index a30b15d0071a..fc703175e976 100644
--- a/dev-util/quilt/quilt-0.66.ebuild
+++ b/dev-util/quilt/quilt-0.66.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="8"
@@ -12,7 +12,7 @@ 
SRC_URI="https://savannah.nongnu.org/download/quilt/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 arm ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-solaris"
-IUSE="emacs graphviz elibc_Darwin elibc_SunOS"
+IUSE="emacs graphviz"
 # unresolved test failures
 RESTRICT="test"
 

diff --git a/dev-util/quilt/quilt-.ebuild b/dev-util/quilt/quilt-.ebuild
index f98ba2775520..b00b7ea1f961 100644
--- a/dev-util/quilt/quilt-.ebuild
+++ b/dev-util/quilt/quilt-.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=8
@@ -17,7 +17,7 @@ LICENSE="GPL-2"
 SLOT="0"
 [[ ${PV} ==  ]] || \
 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-solaris"
-IUSE="graphviz elibc_Darwin elibc_SunOS"
+IUSE="graphviz"
 
 RDEPEND="
dev-util/diffstat



[gentoo-commits] repo/gentoo:master commit in: games-misc/fortune-mod/

2022-01-03 Thread David Seifert
commit: 6cc9d5fca2c7f77125846bd4496cce83b2bc49bf
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:10 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc9d5fc

games-misc/fortune-mod: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 games-misc/fortune-mod/fortune-mod-1.99.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-misc/fortune-mod/fortune-mod-1.99.1-r3.ebuild 
b/games-misc/fortune-mod/fortune-mod-1.99.1-r3.ebuild
index 456beb34b04f..b8fb4741d33d 100644
--- a/games-misc/fortune-mod/fortune-mod-1.99.1-r3.ebuild
+++ b/games-misc/fortune-mod/fortune-mod-1.99.1-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.redellipse.net/code/downloads/${P}.tar.gz;
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~m68k ~mips ppc64 ~riscv x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
-IUSE="offensive elibc_glibc"
+IUSE="offensive"
 
 DEPEND="app-text/recode:0="
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/sslsplit/

2022-01-03 Thread David Seifert
commit: 667b40c22c8925d103c36b103c02618d93eae30d
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:14 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667b40c2

net-analyzer/sslsplit: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-analyzer/sslsplit/sslsplit-0.5.4.ebuild | 4 ++--
 net-analyzer/sslsplit/sslsplit-0.5.5.ebuild | 4 ++--
 net-analyzer/sslsplit/sslsplit-.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-analyzer/sslsplit/sslsplit-0.5.4.ebuild 
b/net-analyzer/sslsplit/sslsplit-0.5.4.ebuild
index f75310908600..db089dcd713e 100644
--- a/net-analyzer/sslsplit/sslsplit-0.5.4.ebuild
+++ b/net-analyzer/sslsplit/sslsplit-0.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.roe.ch/SSLsplit;
 
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="elibc_musl test"
+IUSE="test"
 RESTRICT="!test? ( test )"
 
 if [[ ${PV} == * ]] ; then

diff --git a/net-analyzer/sslsplit/sslsplit-0.5.5.ebuild 
b/net-analyzer/sslsplit/sslsplit-0.5.5.ebuild
index 355f76bc4381..c6f530a49947 100644
--- a/net-analyzer/sslsplit/sslsplit-0.5.5.ebuild
+++ b/net-analyzer/sslsplit/sslsplit-0.5.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.roe.ch/SSLsplit;
 
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="elibc_musl test"
+IUSE="test"
 RESTRICT="!test? ( test )"
 
 if [[ ${PV} == * ]] ; then

diff --git a/net-analyzer/sslsplit/sslsplit-.ebuild 
b/net-analyzer/sslsplit/sslsplit-.ebuild
index 355f76bc4381..c6f530a49947 100644
--- a/net-analyzer/sslsplit/sslsplit-.ebuild
+++ b/net-analyzer/sslsplit/sslsplit-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.roe.ch/SSLsplit;
 
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="elibc_musl test"
+IUSE="test"
 RESTRICT="!test? ( test )"
 
 if [[ ${PV} == * ]] ; then



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/openbsd-netcat/

2022-01-03 Thread David Seifert
commit: 5c7ad58b3d429f519010f4f2982103c04d91b975
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:12 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c7ad58b

net-analyzer/openbsd-netcat: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild| 5 ++---
 net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild | 5 ++---
 net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild| 5 ++---
 3 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild 
b/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild
index 1c797beed02f..859270ce857d 100644
--- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.ebuild
+++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.190.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
@@ -10,10 +10,9 @@ HOMEPAGE="https://cvsweb.openbsd.org/src/usr.bin/nc/
https://salsa.debian.org/debian/netcat-openbsd;
 
SRC_URI="http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}.orig.tar.gz

http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}-2.debian.tar.xz;
+
 LICENSE="BSD"
 SLOT="0"
-IUSE="elibc_Darwin"
-
 KEYWORDS="amd64 arm64 ~ppc64 x86 ~amd64-linux ~x64-macos"
 
 BDEPEND="virtual/pkgconfig"

diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild 
b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild
index 6cf8215e03c8..48dfecb119bd 100644
--- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.ebuild
+++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195-r1.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
@@ -10,10 +10,9 @@ HOMEPAGE="https://cvsweb.openbsd.org/src/usr.bin/nc/
https://salsa.debian.org/debian/netcat-openbsd;
 
SRC_URI="http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}.orig.tar.gz

http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}-2.debian.tar.xz;
+
 LICENSE="BSD"
 SLOT="0"
-IUSE="elibc_Darwin"
-
 KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x64-macos"
 
 BDEPEND="virtual/pkgconfig"

diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild 
b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild
index ee806c763af0..90851a6bcac9 100644
--- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.ebuild
+++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.195.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
@@ -10,10 +10,9 @@ HOMEPAGE="https://cvsweb.openbsd.org/src/usr.bin/nc/
https://salsa.debian.org/debian/netcat-openbsd;
 
SRC_URI="http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}.orig.tar.gz

http://http.debian.net/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${PV}-2.debian.tar.xz;
+
 LICENSE="BSD"
 SLOT="0"
-IUSE="elibc_Darwin"
-
 KEYWORDS="amd64 arm64 ppc64 x86 ~amd64-linux ~x64-macos"
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxslt/

2022-01-03 Thread David Seifert
commit: 1ef06de50a8c591a1b8ab3c18c6ef190c3e165df
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:02 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef06de5

dev-libs/libxslt: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libxslt/libxslt-1.1.34-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libxslt/libxslt-1.1.34-r2.ebuild 
b/dev-libs/libxslt/libxslt-1.1.34-r2.ebuild
index b13785e3e3c7..5239f0691623 100644
--- a/dev-libs/libxslt/libxslt-1.1.34-r2.ebuild
+++ b/dev-libs/libxslt/libxslt-1.1.34-r2.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
@@ -15,7 +15,7 @@ SRC_URI+=" verify-sig? ( 
ftp://xmlsoft.org/${PN}/${P}.tar.gz.asc )"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="crypt debug examples static-libs elibc_Darwin"
+IUSE="crypt debug examples static-libs"
 
 BDEPEND=">=virtual/pkgconfig-1
verify-sig? ( sec-keys/openpgp-keys-danielveillard )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/

2022-01-03 Thread David Seifert
commit: b3059e406f3f9a7e74b1fecd5c96128fc890b94b
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:05 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3059e40

dev-libs/openssl: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/openssl/openssl-1.1.1k-r1.ebuild | 4 ++--
 dev-libs/openssl/openssl-1.1.1l-r1.ebuild | 4 ++--
 dev-libs/openssl/openssl-1.1.1l.ebuild| 4 ++--
 dev-libs/openssl/openssl-1.1.1m.ebuild| 4 ++--
 dev-libs/openssl/openssl-3.0.0.ebuild | 4 ++--
 dev-libs/openssl/openssl-3.0.1.ebuild | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-libs/openssl/openssl-1.1.1k-r1.ebuild 
b/dev-libs/openssl/openssl-1.1.1k-r1.ebuild
index d07d4096d082..a4186f363f17 100644
--- a/dev-libs/openssl/openssl-1.1.1k-r1.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1k-r1.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"
@@ -28,7 +28,7 @@ LICENSE="openssl"
 SLOT="0/1.1" # .so version of libssl/libcrypto
 [[ "${PV}" = *_pre* ]] || \
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
-IUSE="+asm bindist elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 
static-libs test tls-compression tls-heartbeat vanilla"
+IUSE="+asm bindist rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
 RESTRICT="!bindist? ( bindist )
!test? ( test )"
 

diff --git a/dev-libs/openssl/openssl-1.1.1l-r1.ebuild 
b/dev-libs/openssl/openssl-1.1.1l-r1.ebuild
index 8cd17efa4f22..502560ef65a1 100644
--- a/dev-libs/openssl/openssl-1.1.1l-r1.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1l-r1.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"
@@ -15,7 +15,7 @@ LICENSE="openssl"
 SLOT="0/1.1" # .so version of libssl/libcrypto
 [[ "${PV}" = *_pre* ]] || \
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
-IUSE="+asm elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
+IUSE="+asm rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
 RESTRICT="!test? ( test )"
 
 RDEPEND=">=app-misc/c_rehash-1.7-r1

diff --git a/dev-libs/openssl/openssl-1.1.1l.ebuild 
b/dev-libs/openssl/openssl-1.1.1l.ebuild
index d07d4096d082..a4186f363f17 100644
--- a/dev-libs/openssl/openssl-1.1.1l.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1l.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"
@@ -28,7 +28,7 @@ LICENSE="openssl"
 SLOT="0/1.1" # .so version of libssl/libcrypto
 [[ "${PV}" = *_pre* ]] || \
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x86-linux"
-IUSE="+asm bindist elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 
static-libs test tls-compression tls-heartbeat vanilla"
+IUSE="+asm bindist rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
 RESTRICT="!bindist? ( bindist )
!test? ( test )"
 

diff --git a/dev-libs/openssl/openssl-1.1.1m.ebuild 
b/dev-libs/openssl/openssl-1.1.1m.ebuild
index 7e5a73877b48..397cea96f3c9 100644
--- a/dev-libs/openssl/openssl-1.1.1m.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1m.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"
@@ -15,7 +15,7 @@ LICENSE="openssl"
 SLOT="0/1.1" # .so version of libssl/libcrypto
 [[ "${PV}" = *_pre* ]] || \
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
-IUSE="+asm elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
+IUSE="+asm rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla"
 RESTRICT="!test? ( test )"
 
 RDEPEND=">=app-misc/c_rehash-1.7-r1

diff --git a/dev-libs/openssl/openssl-3.0.0.ebuild 
b/dev-libs/openssl/openssl-3.0.0.ebuild
index dad6d1b877b3..e52ca896a3a6 100644
--- a/dev-libs/openssl/openssl-3.0.0.ebuild
+++ b/dev-libs/openssl/openssl-3.0.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"
@@ -22,7 +22,7 @@ fi
 LICENSE="Apache-2.0"
 SLOT="0/3" # .so version 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/

2022-01-03 Thread David Seifert
commit: 1041096bcc34e6314691617b300ba75ebd914976
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:06 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1041096b

dev-libs/xerces-c: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild | 2 +-
 dev-libs/xerces-c/xerces-c-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild 
b/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
index 12e5092bd051..c72408418f20 100644
--- a/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
+++ b/dev-libs/xerces-c/xerces-c-3.2.3-r2.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin examples iconv icu static-libs 
test threads"
+IUSE="cpu_flags_x86_sse2 curl doc examples iconv icu static-libs test threads"
 
 RESTRICT="!test? ( test )"
 

diff --git a/dev-libs/xerces-c/xerces-c-.ebuild 
b/dev-libs/xerces-c/xerces-c-.ebuild
index 99fc6f8cc6ce..880626707f29 100644
--- a/dev-libs/xerces-c/xerces-c-.ebuild
+++ b/dev-libs/xerces-c/xerces-c-.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin examples iconv icu static-libs 
test threads"
+IUSE="cpu_flags_x86_sse2 curl doc examples iconv icu static-libs test threads"
 
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/nspr/

2022-01-03 Thread David Seifert
commit: cd301aeb94b287ea3f1aa415676896936b32f434
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:03 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd301aeb

dev-libs/nspr: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/nspr/nspr-4.30.ebuild | 4 ++--
 dev-libs/nspr/nspr-4.31.ebuild | 4 ++--
 dev-libs/nspr/nspr-4.32.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-libs/nspr/nspr-4.30.ebuild b/dev-libs/nspr/nspr-4.30.ebuild
index 1c632936ea8e..d6db3c7ef9ee 100644
--- a/dev-libs/nspr/nspr-4.30.ebuild
+++ b/dev-libs/nspr/nspr-4.30.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
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz;
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
-IUSE="debug elibc_musl"
+IUSE="debug"
 
 MULTILIB_CHOST_TOOLS=(
/usr/bin/nspr-config

diff --git a/dev-libs/nspr/nspr-4.31.ebuild b/dev-libs/nspr/nspr-4.31.ebuild
index e6c6b0dfafd2..c0dd76d1aa2e 100644
--- a/dev-libs/nspr/nspr-4.31.ebuild
+++ b/dev-libs/nspr/nspr-4.31.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
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz;
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
-IUSE="debug elibc_musl"
+IUSE="debug"
 
 MULTILIB_CHOST_TOOLS=(
/usr/bin/nspr-config

diff --git a/dev-libs/nspr/nspr-4.32.ebuild b/dev-libs/nspr/nspr-4.32.ebuild
index 1c632936ea8e..d6db3c7ef9ee 100644
--- a/dev-libs/nspr/nspr-4.32.ebuild
+++ b/dev-libs/nspr/nspr-4.32.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
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz;
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
-IUSE="debug elibc_musl"
+IUSE="debug"
 
 MULTILIB_CHOST_TOOLS=(
/usr/bin/nspr-config



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libptytty/

2022-01-03 Thread David Seifert
commit: 0cb0b811cc643dd0f37c96eb516537cbdf61bd45
Author: David Seifert  gentoo  org>
AuthorDate: Mon Jan  3 23:26:01 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Jan  3 23:26:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb0b811

dev-libs/libptytty: remove implicit elibc_* flags

Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libptytty/libptytty-2.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-libs/libptytty/libptytty-2.0.ebuild 
b/dev-libs/libptytty/libptytty-2.0.ebuild
index ac7a40e850bf..84050835b54c 100644
--- a/dev-libs/libptytty/libptytty-2.0.ebuild
+++ b/dev-libs/libptytty/libptytty-2.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=8
@@ -12,7 +12,6 @@ SRC_URI="http://dist.schmorp.de/${PN}/${P}.tar.gz;
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="elibc_musl"
 
 PATCHES=(
"${FILESDIR}"/${PN}-2.0-rundir.patch



[gentoo-commits] repo/gentoo:master commit in: net-proxy/obfs4proxy/

2022-01-03 Thread Marek Szuba
commit: 4b856a10216875cdf9981d2739e823bcec60f4a6
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Jan  3 23:01:16 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Jan  3 23:14:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b856a10

net-proxy/obfs4proxy: add 0.0.12

Signed-off-by: Marek Szuba  gentoo.org>

 net-proxy/obfs4proxy/Manifest | 21 
 net-proxy/obfs4proxy/obfs4proxy-0.0.12.ebuild | 70 +++
 2 files changed, 91 insertions(+)

diff --git a/net-proxy/obfs4proxy/Manifest b/net-proxy/obfs4proxy/Manifest
index 292511094050..2da0ad5c8028 100644
--- a/net-proxy/obfs4proxy/Manifest
+++ b/net-proxy/obfs4proxy/Manifest
@@ -1,3 +1,5 @@
+DIST 
filippo.io%2Fedwards25519%2F@v%2Fv1.0.0-rc.1.0.20210721174708-390f27c3be20.mod 
40 BLAKE2B 
895e3b61e3e272387257e288b70e2a7d461c0de2ed2284e1909ac2bf2eedf841246e175ed848174ec510c53ae207d801cff7a39c560fd2b0c0b4dc08c67f4856
 SHA512 
2a56ce66f7ba29cd8f975014291690c2f929738a4a8b93529c2c367c0236b767f92e4f6dfda9fe1fdf981926302d7ab26665f7d64b022a22e5305aea693ad2dc
+DIST 
filippo.io%2Fedwards25519%2F@v%2Fv1.0.0-rc.1.0.20210721174708-390f27c3be20.zip 
50968 BLAKE2B 
3660653454dc8bfae76169617e3e1bc5f1f791314b159331c97e7dc9b19fa1721fba91aa37cda19b902195e8851222010d1b88c02b88597860b91032f2c30f43
 SHA512 
1435eed0de11c7669d224488b9f6b28710a48c7b0a2cdb43b2a9ae4779bda5c23a0c1ff0b854f4c854ed4ec5862a4fdaeffbb28fdc9fcb50092a21e5a6484105
 DIST 
git.schwanenlied.me%2Fyawning%2Fbsaes.git%2F@v%2Fv0.0.0-20190320102049-26d1add596b6.mod
 45 BLAKE2B 
2eaf520004fc4a4a3283bba8b12bca561c042fa9ac35be8d152f232b71f8431b099f452edaa2ecdfc54e56d8de989eaa46f1d21428fbd1431d6e52fe353aaed4
 SHA512 
7f919bb78329c34c2e2c667fd4621885fe8ef3ed7b916de65ceaf4d6fa739fb540c2f453a16cf6f5add0f0540d06e0c7cf1eb92a2d3751bba2cc26ea285756a7
 DIST 
git.schwanenlied.me%2Fyawning%2Fbsaes.git%2F@v%2Fv0.0.0-20190320102049-26d1add596b6.zip
 39367 BLAKE2B 
451710920a0fb77caa7cc1a22284faced216d54eb0fe77d70e375ac063c91d7c5dde17a85bacecd06092f1dce7d28e19ddaa28408a95954e76c6c4d4fb4a2bf2
 SHA512 
6b0f5ab0b9d99f2bd1acf140a8d16ad247743a3989b1a69ef9377aefb860f6d73cae911aaf5c21a251aa668b45da946d6a82321bff9918efb8044794c69d5697
 DIST git.torproject.org%2Fpluggable-transports%2Fgoptlib.git%2F@v%2Fv1.0.0.mod 
59 BLAKE2B 
c741382a34677abe777f42d88210a2da3ba6dfaebc557e28d1a49a5f46822d94838469b7d7b72476b45b55b0c557ec132cbee805173c5607a6cfcd2b2e090c1c
 SHA512 
15340017e0579bd8d102bda61ea62c5b894fcaca9f320efabacd7a2158fc2beb28b686302a3002b53765004e9a0be08deee8618f8ad662ddc2430d0b2d78d91e
@@ -12,16 +14,35 @@ DIST 
github.com%2Fdsnet%2Fgolib%2F@v%2Fv0.0.0-20171103203638-1ea166775780.mod 30
 DIST github.com%2Fklauspost%2Fcompress%2F@v%2Fv1.4.1.mod 37 BLAKE2B 
aee0c04f2b8e92b2b4fb2aed9691b2e55f27eae078ca0d7161866b1f815b14e6b7de03c80c567e6f1407cf9e48606bb097eaa0a26c5b7d46db4a0d18852fd233
 SHA512 
18830e82c89186889b494ac46cc8c4fb398f3aff5416eb1cec3e3b09af281ebd50bb0e8ac7751f6cd89bb1bab3738a354183ba12eb3ea42aa7dab36177b613ec
 DIST github.com%2Fklauspost%2Fcpuid%2F@v%2Fv1.2.0.mod 34 BLAKE2B 
1fea82f0ae24add73e084ada4930a6192f6f1d7afac47e2fd4a018e0167779741e4c948ebe67965751a845fcee894fe88e57a1e42a00a8aba2a6589dc73b30e6
 SHA512 
c71392a06cc0dea75b46dcab30bc5b374eeb432aaffc678213d5896015cd31ef085387446a8086c3275b97bbfb02c93c0180f7b3bac5fc1cdf1fbe5bf7af9887
 DIST github.com%2Fulikunitz%2Fxz%2F@v%2Fv0.5.6.mod 31 BLAKE2B 
f8ed4b103891625af3043d86905f693014b245198a180911efb7e33480d81b93babd35912c5768df62cd26199e3a742f94365a82de619a97385d7407baa22424
 SHA512 
33639405743ddf22f19ca03d348c47d9cf963aa151fdab9e7303679ccd5cec373ceebce456eb96ef52dcf933f96e4ef7d4a8099822dfc183996d8cd4f09cba2e
+DIST 
gitlab.com%2Fyawning%2Fbsaes.git%2F@v%2Fv0.0.0-20190805113838-0a714cd429ec.mod 
106 BLAKE2B 
9698cf1b08dd48a6c3b9b80920d192155b082bd201778854e1ff037ee7147c6fbc978952f6fd2715855717c5a12b8a08ef91d59b8e2c3c16c089a1d8f9e7f4b5
 SHA512 
1c223f68782486addb8088fe4ed2b847f50646691bd8f974feca7727fcd3430e3e7cf91b7af0a5c4c451ea65b249092c1e43ca353c96b972be6af7b6a2424f96
+DIST 
gitlab.com%2Fyawning%2Fbsaes.git%2F@v%2Fv0.0.0-20190805113838-0a714cd429ec.zip 
39071 BLAKE2B 
b4190d9263ae0a1353d6708a1f2774372255d4d83f3b9a7ed2755a28d55e1dd148658c3f8e5537d15d28263b16873b03ac2cd96020dd05b047053fd145fc2b84
 SHA512 
7d3caeba6dcb8ebde89642affb2bbc0712945db87e4a322e777f60b1c4cf142fc1962257250840daea4089dad42239369316aaf3edc5f60039448a9133a9d665
+DIST 
gitlab.com%2Fyawning%2Fedwards25519-extra.git%2F@v%2Fv0.0.0-20211229043746-2f91fcc9fbdb.mod
 194 BLAKE2B 
ef0e8bc542c278ce7b3dd1c62612a609130136c9b1fea83b6d77066273b16c413b5dd78382b03056483cb817f78160afce317a07b62b6dfa3af8eded82ebace8
 SHA512 
42237f8afffd3eda060f17b8da2de9705709037bd514868df28d4b13aee22a3e5aa5827498a3608f50e52b98fa608f454975420d1b142a6384b2e14309c96276
+DIST 
gitlab.com%2Fyawning%2Fedwards25519-extra.git%2F@v%2Fv0.0.0-20211229043746-2f91fcc9fbdb.zip
 52334 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: net-misc/oidc-agent/

2022-01-03 Thread Marek Szuba
commit: 81ee61d1f858dceeae35044cf560255ad51270b6
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Jan  3 23:03:01 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Jan  3 23:14:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ee61d1

net-misc/oidc-agent: add 4.2.5

Signed-off-by: Marek Szuba  gentoo.org>

 net-misc/oidc-agent/Manifest|  1 +
 net-misc/oidc-agent/oidc-agent-4.2.5.ebuild | 78 +
 2 files changed, 79 insertions(+)

diff --git a/net-misc/oidc-agent/Manifest b/net-misc/oidc-agent/Manifest
index 897a3e39eefd..ea2e0728a55b 100644
--- a/net-misc/oidc-agent/Manifest
+++ b/net-misc/oidc-agent/Manifest
@@ -1,2 +1,3 @@
 DIST oidc-agent-4.1.1.tar.gz 801103 BLAKE2B 
dcb82a537787ae6ced577843c67acdd4e3fa315d017222067b2914837dfffccae27ddbdeeeaf4e8ca70c7e2744e03df5964d3ba318efd4460c73252bfd3f8e95
 SHA512 
e383e054623dc3b8fe73ec02df44faa05d4b69aaed47c7925f6f92d25cbc5301173fbc607b6198bc70f99e634e582fbae7c5570812086a8e5694d40ce6d2c2d1
 DIST oidc-agent-4.2.4.tar.gz 823459 BLAKE2B 
71c2fd983031641c5ed39ba3f1771bf283ab56eae6bba426da5308a7c9fcf2ce48103220375b9881e255eeddf05d50d58e2dee047b0b4436451c8d39b0cd55e6
 SHA512 
6f4f79823869197a0b74cd757b72e1d060ed9f1d9be477f815989b723a86285b200bd72b95f07a4698e754b9ad7aae48cee72603e1a6eaab71590cc63c2bae3d
+DIST oidc-agent-4.2.5.tar.gz 823881 BLAKE2B 
533917fdb739ef529c1ca4e06b30a64361710c958b2b6e7a23a6d9c1f1195263ec98f1211cda5dbe9d77f6df7ca0509d29c4e0d595825a908d605ea5ececa8be
 SHA512 
983e59dc3b97b1800733c98fc7ba5e33405a84cb66be7006932c88cb3ccdbfbc9f12d274c1f61294b0fb7ec93fecd2165196f7cc9e056bda0c23a974479f6aa2

diff --git a/net-misc/oidc-agent/oidc-agent-4.2.5.ebuild 
b/net-misc/oidc-agent/oidc-agent-4.2.5.ebuild
new file mode 100644
index ..eb58ba92f64c
--- /dev/null
+++ b/net-misc/oidc-agent/oidc-agent-4.2.5.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Agent and tools for managing OpenID Connect tokens on the command 
line"
+HOMEPAGE="https://github.com/indigo-dc/oidc-agent;
+SRC_URI="https://github.com/indigo-dc/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+IUSE="test"
+
+DEPEND="app-crypt/libsecret
+   dev-libs/libsodium:=
+   media-gfx/qrencode
+   net-libs/libmicrohttpd:=
+   sys-libs/libseccomp"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-libs/check )"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.0.2_makefile-liblist-automagic.patch
+   "${FILESDIR}"/${PN}-4.1.0_install-perms.patch
+   "${FILESDIR}"/${PN}-4.2.4_makefile-toolchain-vars.patch
+)
+
+src_prepare() {
+   default
+   sed -i -e 's|^\(\s\+\)@|\1|' Makefile || die "Failed to increase 
verbosity in Makefile"
+}
+
+src_install() {
+   emake \
+   PREFIX="${ED}" \
+   BIN_AFTER_INST_PATH="/usr" \
+   INCLUDE_PATH="${ED}"/usr/include \
+   LIB_PATH="${ED}"/usr/$(get_libdir) \
+   install
+
+   # This file is not compatible with Gentoo and in any case, we generally
+   # let the users load such agents themselves.
+   rm -f "${ED}"/etc/X11/Xsession.d/91${PN}
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   elog
+   elog "You should use oidc-gen to initially generate your 
account configuration"
+   elog "before it can be loaded into oidc-agent using oidc-add. 
For details, please"
+   elog "consult the man page of oidc-gen, or full documentation 
at"
+   elog "https://indigo-dc.gitbooks.io/oidc-agent/;
+   elog
+   else
+   local new_major_ver old_ver
+   new_major_ver=$(ver_cut 1)
+   for old_ver in ${REPLACING_VERSIONS}; do
+   if [[ $(ver_cut 1 ${old_ver}) != ${new_major_ver} ]]; 
then
+   ewarn
+   ewarn "You are upgrading from a different major 
version. Please restart any running instances of ${PN}"
+   ewarn "to make sure they are compatible with 
the updated clients."
+   ewarn
+   break
+   fi
+   done
+   fi
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/xchm/

2022-01-03 Thread Marek Szuba
commit: 6608b3c86cb94ede801535174eb8ddca68644e24
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Jan  3 23:13:17 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Jan  3 23:14:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6608b3c8

app-text/xchm: add 1.33

Still EAPI 7 for now because switching to 8 results in rather
spectacular linking failures.

Signed-off-by: Marek Szuba  gentoo.org>

 app-text/xchm/Manifest |  1 +
 app-text/xchm/xchm-1.33.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/app-text/xchm/Manifest b/app-text/xchm/Manifest
index 9c6fdafff110..31e62a672456 100644
--- a/app-text/xchm/Manifest
+++ b/app-text/xchm/Manifest
@@ -1 +1,2 @@
 DIST xchm-1.32.tar.gz 986604 BLAKE2B 
f2a1d27ee747bb2d599452f1fa91864afbd2d604e9c27322d70c0925c9c313d4c80ab647ed5bb7ae3672687decfaafb2be23f7b9ed09fb95ae7490b0a65d7cab
 SHA512 
e8250660ff28c80ddda62b886b296d98fb60e8d482ad6791c775a51a860ca78e310222bd0f5baa40c941a3f345c0bb07edb932c0417835ab0b090d14b7b4c0f6
+DIST xchm-1.33.tar.gz 886169 BLAKE2B 
26b6c664307de3ef1bef21d3fd240b5636f5abc8196c5aa1b7cd6b91f12addbbd5a8c54d133de2fd8ce9132ea2677f79f0ef722b1da6c87429cd3df54d208585
 SHA512 
06f5c191ef9f2c608259261839d6641f202a21150a6622b8162e06e3cc857802390f551dcef47f25d048b3d407511c5a8cc6aabd3003942006847366ebb08989

diff --git a/app-text/xchm/xchm-1.33.ebuild b/app-text/xchm/xchm-1.33.ebuild
new file mode 100644
index ..27f28acfd7aa
--- /dev/null
+++ b/app-text/xchm/xchm-1.33.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+WX_GTK_VER="3.0-gtk3"
+
+inherit desktop wxwidgets xdg-utils
+
+DESCRIPTION="Utility for viewing Compiled HTML Help (CHM) files"
+HOMEPAGE="https://github.com/rzvncj/xCHM/;
+SRC_URI="https://github.com/rzvncj/xCHM/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~riscv ~x86"
+IUSE="nls"
+
+RDEPEND=">=dev-libs/chmlib-0.36
+   x11-libs/wxGTK:${WX_GTK_VER}[X]
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}"
+BDEPEND="nls? ( sys-devel/gettext )"
+
+src_configure() {
+   setup-wxwidgets
+   econf $(use_enable nls)
+}
+
+src_install() {
+   default
+
+   domenu "${FILESDIR}"/xchm.desktop
+   insinto /usr/share/mime/packages
+   doins "${FILESDIR}"/xchm.xml
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/julia-bin/

2022-01-03 Thread Georgy Yakovlev
commit: e47602d2cc4139b2ae00162958811386bb0718ac
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jan  3 23:04:17 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jan  3 23:05:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e47602d2

dev-lang/julia-bin: keyword 1.7.1 for ~arm64

Closes: https://bugs.gentoo.org/764518
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/julia-bin/julia-bin-1.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/julia-bin/julia-bin-1.7.1.ebuild 
b/dev-lang/julia-bin/julia-bin-1.7.1.ebuild
index 8ff456dd52b4..9e90980eb76a 100644
--- a/dev-lang/julia-bin/julia-bin-1.7.1.ebuild
+++ b/dev-lang/julia-bin/julia-bin-1.7.1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="${MY_PV}"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 ~arm64 ~x86"
 IUSE="elibc_glibc"
 
 RDEPEND="app-arch/p7zip"



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/m68k/

2022-01-03 Thread James Le Cuirot
commit: 835a00e93b358c28b2f744f0f037c782b00495b7
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jan  3 22:37:32 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jan  3 22:37:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835a00e9

profiles: Mask more Mesa-related USE flags on m68k

Signed-off-by: James Le Cuirot  gentoo.org>

 profiles/arch/m68k/use.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/arch/m68k/use.mask b/profiles/arch/m68k/use.mask
index 2dd6be0699a3..56fb20679473 100644
--- a/profiles/arch/m68k/use.mask
+++ b/profiles/arch/m68k/use.mask
@@ -37,7 +37,12 @@ mpi
 
 # James Le Cuirot  (2021-09-19)
 # I tried Mesa under qemu-system-m68k with VirtIO-GPU. It didn't work.
+egl
+gles1
+gles2
+opencl
 opengl
+vulkan
 
 # James Le Cuirot  (2021-09-17)
 # Ruby just crashes on startup.



[gentoo-commits] repo/gentoo:master commit in: dev-python/zstd/

2022-01-03 Thread Michał Górny
commit: 941c764da413c3d38090bde9c337fe00bb8c77bc
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  3 22:31:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  3 22:31:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=941c764d

dev-python/zstd: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/zstd/Manifest|  1 -
 dev-python/zstd/zstd-1.5.0.2.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest
index 68753008095c..e588b851f0f8 100644
--- a/dev-python/zstd/Manifest
+++ b/dev-python/zstd/Manifest
@@ -1,3 +1,2 @@
-DIST zstd-1.5.0.2.tar.gz 528892 BLAKE2B 
9aaa0beba1a6703d881daf5c5e10d93a8c67923d07773bce5eda3eba652f50c4cb4aa18d2ea9bea304a8742a7e8501568679837aa8bb1e71fe6eff5a5d08d193
 SHA512 
a7a6033e743c5bc0fa5256dfd256c2a9417c200cda5d5c02c6c7a5d5553d188637e21908658a4a948e565b16bb03f85f57c74d51c63a3ae7eb160f8b3bdbd3c3
 DIST zstd-1.5.0.4.tar.gz 535965 BLAKE2B 
6b0440676952f4a50ac23aa3e0c137486a1d9b822ec661510a18882e97aac7c38039d449748a9c029409ae1cdb5275905f0c58a12d151f31f7b99e9d501da533
 SHA512 
aa74b4a60bcbf138b337b13111489212b28b599fbfbfcc7e058ed03a6d6ba539fed8742babae3d37a1790b26e987d9f111fb6430bfb3f72c3de7794b1f23539b
 DIST zstd-1.5.1.0.tar.gz 604039 BLAKE2B 
5f3e2f2848d67d2455bab721d011946fa8138729566243046e2b294e51c1144a0a0576f9e64e15472c8da4b45514a052a751b2ac3d87f17301ab634f560bf19a
 SHA512 
4775f9db3b924116272060fd46885a601ec5153b350974ef5fe41878f10aad0fee428f053ce71aaf881eb73bfc11ae1d89148f65447fc6febe3f53a50ffa0a63

diff --git a/dev-python/zstd/zstd-1.5.0.2.ebuild 
b/dev-python/zstd/zstd-1.5.0.2.ebuild
deleted file mode 100644
index 2c4437f2c8df..
--- a/dev-python/zstd/zstd-1.5.0.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library"
-HOMEPAGE="https://github.com/sergey-dryabzhinsky/python-zstd;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-RDEPEND="
-   app-arch/zstd:=
-   !dev-python/zstandard[${PYTHON_USEDEP}]
-"
-DEPEND=${RDEPEND}
-
-distutils_enable_tests unittest
-
-src_configure() {
-   mydistutilsargs=( --external )
-
-   # for tests
-   export ZSTD_EXTERNAL=1
-   export VERSION=${PV}
-   export PKG_VERSION=${PV}
-   export LEGACY=0
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/raet/

2022-01-03 Thread Michał Górny
commit: d9c0a16ac946a34e01356e25cfa9b882fd8d28db
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  3 22:29:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  3 22:29:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c0a16a

dev-python/raet: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/raet/raet-0.6.8-r2.ebuild | 39 
 1 file changed, 39 deletions(-)

diff --git a/dev-python/raet/raet-0.6.8-r2.ebuild 
b/dev-python/raet/raet-0.6.8-r2.ebuild
deleted file mode 100644
index 4e01ffe5e227..
--- a/dev-python/raet/raet-0.6.8-r2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python3_{7..9})
-inherit distutils-r1
-
-DESCRIPTION="Reliable Asynchronous Event Transport Protocol"
-HOMEPAGE="https://github.com/RaetProtocol/raet;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   >=dev-python/libnacl-1.4.3[${PYTHON_USEDEP}]
-   >=dev-python/ioflo-2.0[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}
-   test? (
-   >=dev-python/msgpack-1.0.0[${PYTHON_USEDEP}]
-   )"
-
-PATCHES=(
-   "${FILESDIR}/raet-0.6.8-msgpack-1.0.patch"
-)
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-   sed -i -e "/setuptools_git/d" setup.py || die
-}
-
-python_test() {
-   pushd "${BUILD_DIR}"/lib || die
-   ${EPYTHON} ${PN}/test/__init__.py || die "tests failed for ${EPYTHON}"
-   popd || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-salt-factories/, dev-python/pytest-salt-factories/files/

2022-01-03 Thread Michał Górny
commit: 56cf1d56651bdd2b8e952fdc890463312ac2ca16
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  3 22:28:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  3 22:29:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56cf1d56

dev-python/pytest-salt-factories: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pytest-salt-factories/Manifest  |   1 -
 .../pytest-salt-factories-0.121.1-tests.patch  | 294 -
 .../pytest-salt-factories-0.121.1-r1.ebuild|  63 -
 3 files changed, 358 deletions(-)

diff --git a/dev-python/pytest-salt-factories/Manifest 
b/dev-python/pytest-salt-factories/Manifest
index 2a5ad00fdc45..65e270229be0 100644
--- a/dev-python/pytest-salt-factories/Manifest
+++ b/dev-python/pytest-salt-factories/Manifest
@@ -1,2 +1 @@
-DIST pytest-salt-factories-0.121.1.tar.gz 102121 BLAKE2B 
92cd5953b11377f1646f01b86a677a50216d16bcb944235a3f04176aecbb005974c415adcbf23cc391aab41b1ee9596984516ab61ecdd8c944d4ce707c39ab00
 SHA512 
32252695c6e8b17ef17d3330c4b0b38bdce89201d5573b4efa3531a72e826ee1fb26fea3ad0408401dec867cee405f21031804c32eb8fe6ceaa00925b17725a1
 DIST pytest-salt-factories-0.911.0.tar.gz 161682 BLAKE2B 
b5a827c9a9acc55c53bc4152b648f96845f513e2d1c8425cbde0862909996a653df4debbf798a3d7461da4fc221acd5fc8e6052e123f3e64e0c8f4345557f141
 SHA512 
bada21cfe990ccb10b0e298cb05a7f3842d0fe24e2c8664352ae991363d0094dd1ff877adea5fcc0c1040e3f20f82ba616607c595511cade93eba336a26b

diff --git 
a/dev-python/pytest-salt-factories/files/pytest-salt-factories-0.121.1-tests.patch
 
b/dev-python/pytest-salt-factories/files/pytest-salt-factories-0.121.1-tests.patch
deleted file mode 100644
index 3e85580c9158..
--- 
a/dev-python/pytest-salt-factories/files/pytest-salt-factories-0.121.1-tests.patch
+++ /dev/null
@@ -1,294 +0,0 @@
-diff --git a/saltfactories/plugin.py b/saltfactories/plugin.py
-index b29a115..9d68c34 100644
 a/saltfactories/plugin.py
-+++ b/saltfactories/plugin.py
-@@ -21,7 +21,7 @@ def pytest_tempdir_temproot():
- tempdir = os.environ.get("TMPDIR") or tempfile.gettempdir()
- else:
- tempdir = "/tmp"
--return os.path.abspath(os.path.realpath(tempdir))
-+return os.path.abspath(tempdir)
- 
- 
- def pytest_tempdir_basename():
-diff --git a/tests/functional/markers/test_requires_network.py 
b/tests/functional/markers/test_requires_network.py
-index 8b57368..d58f0a1 100644
 a/tests/functional/markers/test_requires_network.py
-+++ b/tests/functional/markers/test_requires_network.py
-@@ -9,7 +9,10 @@ from unittest import mock
- from saltfactories.utils import ports
- from saltfactories.utils import socket
- 
-+import pytest
- 
-+
-+@pytest.mark.skip("not compatible with network-sandbox")
- def test_has_local_network(testdir):
- testdir.makepyfile(
- """
-diff --git a/tests/integration/factories/cli/test_salt.py 
b/tests/integration/factories/cli/test_salt.py
-index 17fce6c..7bd2789 100644
 a/tests/integration/factories/cli/test_salt.py
-+++ b/tests/integration/factories/cli/test_salt.py
-@@ -17,6 +17,7 @@ def salt_minion_2(salt_master, salt_minion):
- yield factory
- 
- 
-+@pytest.mark.skip("not compatible with network-sandbox")
- def test_merged_json_out(salt_cli, salt_minion, salt_minion_2):
- ret = salt_cli.run("test.ping", minion_tgt="*")
- assert ret.exitcode == 0, ret
-@@ -27,6 +28,7 @@ def test_merged_json_out(salt_cli, salt_minion, 
salt_minion_2):
- assert ret.json[salt_minion_2.id] is True
- 
- 
-+@pytest.mark.skip("not compatible with network-sandbox")
- def test_merged_json_out_disabled(salt_cli, salt_minion, salt_minion_2):
- ret = salt_cli.run("test.ping", minion_tgt="*", merge_json_output=False)
- assert ret.exitcode == 0, ret
-diff --git a/tests/integration/factories/daemons/api/test_api.py 
b/tests/integration/factories/daemons/api/test_api.py
-index 78b8bb7..e20f28c 100644
 a/tests/integration/factories/daemons/api/test_api.py
-+++ b/tests/integration/factories/daemons/api/test_api.py
-@@ -23,5 +23,6 @@ def salt_api(master):
- yield factory
- 
- 
-+@pytest.mark.skip("not compatible with network-sandbox")
- def test_api(salt_api):
- assert salt_api.is_running()
-diff --git a/tests/integration/factories/daemons/api/test_restarts.py 
b/tests/integration/factories/daemons/api/test_restarts.py
-index a6c5472..dd15c17 100644
 a/tests/integration/factories/daemons/api/test_restarts.py
-+++ b/tests/integration/factories/daemons/api/test_restarts.py
-@@ -16,6 +16,7 @@ def master(salt_factories):
- yield factory
- 
- 
-+@pytest.mark.skip("not compatible with network-sandbox")
- def test_multiple_start_stops(master):
- factory = master.get_salt_api_daemon()
- assert factory.is_running() is False
-diff --git a/tests/integration/factories/daemons/master/test_master.py 
b/tests/integration/factories/daemons/master/test_master.py
-index 2676dfa..cbf598e 100644

[gentoo-commits] repo/gentoo:master commit in: dev-python/ioflo/

2022-01-03 Thread Michał Górny
commit: 3e67fe497799c38a3bec69f6ad6ed9c9f320a86e
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  3 22:27:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  3 22:27:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e67fe49

dev-python/ioflo: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/ioflo/ioflo-2.0.2.ebuild | 38 -
 1 file changed, 38 deletions(-)

diff --git a/dev-python/ioflo/ioflo-2.0.2.ebuild 
b/dev-python/ioflo/ioflo-2.0.2.ebuild
deleted file mode 100644
index a438d7011107..
--- a/dev-python/ioflo/ioflo-2.0.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python3_{7..9})
-inherit distutils-r1
-
-DESCRIPTION="Automated Reasoning Engine and Flow Based Programming Framework"
-HOMEPAGE="https://github.com/ioflo/ioflo/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-
-RDEPEND="
-   $(python_gen_cond_dep '>=dev-lang/python-3.7.4' python3_7)
-"
-BDEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest-salt-factories[${PYTHON_USEDEP}]
-   app-admin/salt[${PYTHON_USEDEP}]
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}/ioflo-1.7.8-network-test.patch"
-   "${FILESDIR}/ioflo-2.0.2-python39.patch"
-)
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die
-   distutils-r1_python_prepare_all
-}



  1   2   3   >