[gentoo-commits] proj/portage:master commit in: lib/portage/package/ebuild/, bin/, man/, lib/portage/

2023-01-26 Thread Ulrich Müller
commit: 41fdf3ca8bda41c2af4315879c5658a51e126413
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jan 22 08:16:09 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jan 22 17:34:47 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=41fdf3ca

Remove obsolete FEATURES=force-prefix

Reviewed-by: James Le Cuirot  gentoo.org>
Reviewed-by: Fabian Groffen  gentoo.org>
Signed-off-by: Ulrich Müller  gentoo.org>

 bin/dohtml.py|  6 ++
 bin/eapi.sh  |  4 ++--
 lib/portage/const.py |  3 +--
 lib/portage/package/ebuild/config.py | 11 +++
 man/make.conf.5  |  8 +---
 5 files changed, 9 insertions(+), 23 deletions(-)

diff --git a/bin/dohtml.py b/bin/dohtml.py
index 4ebee7779..d1f0e3140 100755
--- a/bin/dohtml.py
+++ b/bin/dohtml.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 #
@@ -146,9 +146,7 @@ class OptionsClass:
 self.PF = os.environ["PF"]
 if self.PF:
 self.PF = normalize_path(self.PF)
-if "force-prefix" not in os.environ.get(
-"FEATURES", ""
-).split() and os.environ.get("EAPI", "0") in ("0", "1", "2"):
+if os.environ.get("EAPI", "0") in ("0", "1", "2"):
 self.ED = os.environ.get("D", "")
 else:
 self.ED = os.environ.get("ED", "")

diff --git a/bin/eapi.sh b/bin/eapi.sh
index d90c3cd2e..ae815f3a6 100644
--- a/bin/eapi.sh
+++ b/bin/eapi.sh
@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
-# Copyright 2012-2022 Gentoo Authors
+# Copyright 2012-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # PHASES
@@ -27,7 +27,7 @@ ___eapi_has_S_WORKDIR_fallback() {
 # VARIABLES
 
 ___eapi_has_prefix_variables() {
-   [[ ! ${1-${EAPI-0}} =~ ^(0|1|2)$ || " ${FEATURES} " == *" force-prefix 
"* ]]
+   [[ ! ${1-${EAPI-0}} =~ ^(0|1|2)$ ]]
 }
 
 ___eapi_has_BROOT() {

diff --git a/lib/portage/const.py b/lib/portage/const.py
index a6f7a2242..99206fe2c 100644
--- a/lib/portage/const.py
+++ b/lib/portage/const.py
@@ -1,5 +1,5 @@
 # portage: Constants
-# Copyright 1998-2021 Gentoo Authors
+# Copyright 1998-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import os
@@ -156,7 +156,6 @@ SUPPORTED_FEATURES = frozenset(
 "fakeroot",
 "fixlafiles",
 "force-mirror",
-"force-prefix",
 "getbinpkg",
 "gpg-keepalive",
 "icecream",

diff --git a/lib/portage/package/ebuild/config.py 
b/lib/portage/package/ebuild/config.py
index 23b524235..f66bf6485 100644
--- a/lib/portage/package/ebuild/config.py
+++ b/lib/portage/package/ebuild/config.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2021 Gentoo Authors
+# Copyright 2010-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 __all__ = [
@@ -3347,14 +3347,9 @@ class config:
 if not (src_like_phase and eapi_attrs.broot):
 mydict.pop("BROOT", None)
 
-# Prefix variables are supported beginning with EAPI 3, or when
-# force-prefix is in FEATURES, since older EAPIs would otherwise be
-# useless with prefix configurations. This brings compatibility with
-# the prefix branch of portage, which also supports EPREFIX for all
-# EAPIs (for obvious reasons).
+# Prefix variables are supported beginning with EAPI 3.
 if phase == "depend" or (
-"force-prefix" not in self.features
-and eapi is not None
+eapi is not None
 and not eapi_supports_prefix(eapi)
 ):
 mydict.pop("ED", None)

diff --git a/man/make.conf.5 b/man/make.conf.5
index 34c3cd5b5..05832ce1c 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -1,4 +1,4 @@
-.TH "MAKE.CONF" "5" "Nov 2021" "Portage VERSION" "Portage"
+.TH "MAKE.CONF" "5" "Jan 2023" "Portage VERSION" "Portage"
 .SH "NAME"
 make.conf \- custom settings for Portage
 .SH "SYNOPSIS"
@@ -522,12 +522,6 @@ fixes (order of flags, duplicated entries, ...)
 Only fetch files from configured mirrors, ignoring \fBSRC_URI\fR,
 except when \fImirror\fR is in the \fBebuild\fR(5) \fBRESTRICT\fR variable.
 .TP
-.B force\-prefix
-Enable prefix support for all ebuilds, regardless of EAPI, since older EAPIs
-would otherwise be useless with prefix configurations. This brings
-compatibility with the prefix branch of portage, which also supports EPREFIX
-for all EAPIs (for obvious reasons).
-.TP
 .B getbinpkg
 Force emerges to always try to fetch files from the \fIPORTAGE_BINHOST\fR.  See
 \fBmake.conf\fR(5) for more information.



[gentoo-commits] repo/gentoo:master commit in: app-doc/kicad-doc/

2023-01-26 Thread Joonas Niilola
commit: 3bc9173e95df87fcafd9fb453f293a4bebe42380
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 07:00:55 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc9173e

app-doc/kicad-doc: drop 5.1.12

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 app-doc/kicad-doc/Manifest|  1 -
 app-doc/kicad-doc/kicad-doc-5.1.12.ebuild | 47 ---
 2 files changed, 48 deletions(-)

diff --git a/app-doc/kicad-doc/Manifest b/app-doc/kicad-doc/Manifest
index 8b2ce78b2cab..867314743350 100644
--- a/app-doc/kicad-doc/Manifest
+++ b/app-doc/kicad-doc/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-doc-5.1.12.tar.bz2 74217615 BLAKE2B 
f0906fdb0cf697348e06b63ef0003630a9035d47732c9a22ed3c4fee2f21c02f85fda51eee5149291b72326adc4899b31198178ee6e6ac0d494361cec6c06208
 SHA512 
db678d91ea5f564ca3f266829c297362cfd6cf35a5dced2ede5e7c9c38a37ca1037b264ee9314fa5c4a9d8197fcd92484ad4cae3668ea9741947d38c7ac7f910
 DIST kicad-doc-6.0.6.tar.gz 80517799 BLAKE2B 
58d1bab65637e65b8ce79f6e8e9e913a1fb0d5d22a1241c7d10f0440c12a6f8ac2b758d6852a1138fe0587bc695905c0f2b2d017e79e7e5283ecb4e49ab1d5ff
 SHA512 
90f809ea5923b59169884e090263ccb2c0a9705ddc4ce3817e78736dbebb820a6189eeca4058919b6a53164d8f75746b49bc7667e5e0e534e0c9d3fa8af1f44a
 DIST kicad-doc-6.0.7.tar.gz 80519836 BLAKE2B 
228f33e23aff2f7229e33c24410c1b604c1edad42ba26a42862d924526967724761d4fb82bc32cfd45c7999317330d411e25d2c46f0ac3faeaf5333f1415d9ab
 SHA512 
4619b8394e7aca7f880ace7dbf46bdc8bf2f794719587db3f550c2f3d7731fdebb4afd5028f59477cf8e0563a9099502f41649f136828a424ebe29fc67e2259d
 DIST kicad-doc-6.0.9.tar.gz 81321926 BLAKE2B 
0885d0210afcc83c2ccaad3a0caac912e8f756e69c4569e543a81440e14b6e3ead68ccc427f4dcd9026ebf86a8e3c45487955479bf8c43ce9bb6680de9da777c
 SHA512 
be8ae3bbebce334d7d7ab0e24bf3712aaa83b078f1a4495b755cdd9a5ff8e55951dbd82c5ac17c5aeba66008a9e6ef1b9f104f51ad340cb7cb88abdd86e5853d

diff --git a/app-doc/kicad-doc/kicad-doc-5.1.12.ebuild 
b/app-doc/kicad-doc/kicad-doc-5.1.12.ebuild
deleted file mode 100644
index 86c28051d6d2..
--- a/app-doc/kicad-doc/kicad-doc-5.1.12.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools manuals"
-HOMEPAGE="https://docs.kicad.org/;
-SRC_URI="https://gitlab.com/kicad/services/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="|| ( GPL-3+ CC-BY-3.0 ) GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="html +pdf"
-
-LANG_USE=" l10n_ca l10n_de l10n_en l10n_es l10n_fr l10n_id l10n_it l10n_ja 
l10n_pl l10n_ru l10n_zh"
-IUSE+=${LANG_USE}
-REQUIRED_USE="|| ( html pdf ) ^^ ( ${LANG_USE} )"
-unset LANG_USE
-
-BDEPEND="
-   >=app-text/asciidoc-8.6.9
-   >=app-text/dblatex-0.3.10
-   >=app-text/po4a-0.45
-   >=sys-devel/gettext-0.18
-   dev-perl/Unicode-LineBreak
-   dev-util/source-highlight
-   l10n_ca? ( dev-texlive/texlive-langspanish )
-   l10n_de? ( dev-texlive/texlive-langgerman )
-   l10n_en? ( dev-texlive/texlive-langenglish )
-   l10n_es? ( dev-texlive/texlive-langspanish )
-   l10n_fr? ( dev-texlive/texlive-langfrench )
-   l10n_it? ( dev-texlive/texlive-langitalian )
-   l10n_ja? ( dev-texlive/texlive-langjapanese media-fonts/vlgothic )
-   l10n_pl? ( dev-texlive/texlive-langpolish )
-   l10n_ru? ( dev-texlive/texlive-langcyrillic )
-   l10n_zh? ( dev-texlive/texlive-langchinese )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_FORMATS="$(usev html);$(usev pdf)"
-   -DSINGLE_LANGUAGE="${L10N}"
-   -DKICAD_DOC_PATH="${EPREFIX}/usr/share/doc/${P}/help"
-   )
-   cmake_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-symbols/

2023-01-26 Thread Joonas Niilola
commit: 1bcd2b358527be613e2b792c0e8f03beb4c4de2c
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:59:33 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bcd2b35

sci-electronics/kicad-symbols: drop 5.1.12

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad-symbols/Manifest   |  1 -
 .../kicad-symbols/kicad-symbols-5.1.12.ebuild| 16 
 2 files changed, 17 deletions(-)

diff --git a/sci-electronics/kicad-symbols/Manifest 
b/sci-electronics/kicad-symbols/Manifest
index 406285e31106..9dee7a97aecd 100644
--- a/sci-electronics/kicad-symbols/Manifest
+++ b/sci-electronics/kicad-symbols/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-symbols-5.1.12.tar.bz2 1815145 BLAKE2B 
e3a74c0e2cb24f4286cdd7fa63b62c72c39575475305680ba8e19d5b3acb5c6cbff1e17d37d169043949ad89ffb9b94f0341e1faf7d063c1cf9872d31b863e21
 SHA512 
32e73b8a43e54779e4b95fc13505d603c7ef70600467a1e38f2685288aa9223ca29cc44a552d8c02e153cbf3048faa59610bc92e81dbbed7a432c16db0bd05f6
 DIST kicad-symbols-6.0.6.tar.gz 4845755 BLAKE2B 
32bf6a03f5f06be09b571e0d5470059bc799d662aefd40554e6d9603f29862af3d75f600218f715026349216bbc1a6ea3000eff5a3a5ef8c66a8643f83872090
 SHA512 
edd8f2d2d34c0431bd23a8ae0433f2ce311aebecef4672ddf7b5d1bfaf71bf4cd8f98f3dcaa9e1662f5a928e204aff834b5e19cea77a31d2e3a23373f760406c
 DIST kicad-symbols-6.0.7.tar.gz 4846798 BLAKE2B 
1691027e1bb9e93ee4e390590e748ff0dc0994d740f999a1220c9897c44deb71b62de2df4a1cb8817cca828317b3d7ac7a678bcff1a9570abedf3b9cce518541
 SHA512 
27b05f46b48de338266a713da92cf96af59918fbc4850de05bce5ddf5ed9b2d7e949cbbf8c23b22663c2388824f8de464bafe1df31e829620c0ff19f4e7f7be2
 DIST kicad-symbols-6.0.9.tar.gz 4854079 BLAKE2B 
ba50c3062dc01145239d0950072bcaa6b61b2dbcf954fcf6e96e0d06c2c9952bd571c81a0e05dcdff462524c38e8c8807752e7d854eb7684397634414b55b8ab
 SHA512 
2cc44ead8029cd502cc5301b4515aa23275d32068e091a0a4a645f6fd9ed88f2b7d329d9faa7e66cde58cedeb47810c66db8e6f9313c2bbfe18e5a272f82a163

diff --git a/sci-electronics/kicad-symbols/kicad-symbols-5.1.12.ebuild 
b/sci-electronics/kicad-symbols/kicad-symbols-5.1.12.ebuild
deleted file mode 100644
index 0af175056d99..
--- a/sci-electronics/kicad-symbols/kicad-symbols-5.1.12.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools symbol libraries"
-HOMEPAGE="https://kicad.github.io/symbols/;
-SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND=">=sci-electronics/kicad-5.1.0"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/opencascade/

2023-01-26 Thread Joonas Niilola
commit: a09299ba9747ac81ed4d8deab8d1e682f34879d1
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 07:06:41 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a09299ba

sci-libs/opencascade: drop 7.5.2-r6

Signed-off-by: Zoltan Puskas  sinustrom.info>
Closes: https://github.com/gentoo/gentoo/pull/29293
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-libs/opencascade/Manifest|   1 -
 sci-libs/opencascade/opencascade-7.5.2-r6.ebuild | 175 ---
 2 files changed, 176 deletions(-)

diff --git a/sci-libs/opencascade/Manifest b/sci-libs/opencascade/Manifest
index ff6ab85b0da3..b0510b20df5f 100644
--- a/sci-libs/opencascade/Manifest
+++ b/sci-libs/opencascade/Manifest
@@ -1,4 +1,3 @@
-DIST opencascade-7.5.2.tar.gz 47812603 BLAKE2B 
86995ea60e24329f91a2cbede26112a70794fb091b34d33614bef412b05b8cc9f1e770aecf78272b54a241c2524422c86f8ff722b3f27b54bf10fa5eda626288
 SHA512 
f951a941043a56f381cfd25e4d78bb9ae08e5cc29a894e6c0c35daf30aeabf1e44ee09af65bb6b7d62d9325be67741ddcf52266b7186b4c336c70ed8bcfa1676
 DIST opencascade-7.5.3.tar.gz 47817862 BLAKE2B 
be438a08997c18c3cb2c08c520fff2f439cc8a406cc3f471be3b24f874ac3bd892c4afe6fa37f742ffb5da21b5a29f9c8f737e3160dcbda35a217286218eb5e1
 SHA512 
2d7cf284a1b3ce8d05151085b41579cc2f4e29489b7920769cd04f86a6d76e49f533b570226d3cf041c75582894ed8a6aff889312c7c507fffae47d3e57c5c47
 DIST opencascade-7.6.3.tar.gz 48216090 BLAKE2B 
ff0b63250e77b0240bd99bba38cd0e6b0a8c88bf39e495f5d51d7913f097e2cad83a5ad121e9d56de11c74008249c99a41f4615269a085b7cf97c3d7f0477d6d
 SHA512 
c708f76edb707ba18bdfe7442ed8fa500894ee6c1cd8d0313eb906b3aa7dfa40a575f04dbccd70e84395d670f2b93fb8529f3d59726449234e627b9f35b9dded
 DIST opencascade-7.7.0.tar.gz 48393806 BLAKE2B 
b41da7bdd07aa6ef52f7833bef3e8a9fc2ca16cbf754773cb7adcc059c11c2a7937d279a2b6cf3096e7af6fbb42c6fdc2a5c98340d6b084d2ba100ba2c538f2a
 SHA512 
6c90e2761f752241417ae6f18d819f51e66b32f3a50a97384f29ed73fa07f4cded84c71a6f6ba302d5e35c57e2fc13001619521eaf45757e4e5ff670d94bbf5c

diff --git a/sci-libs/opencascade/opencascade-7.5.2-r6.ebuild 
b/sci-libs/opencascade/opencascade-7.5.2-r6.ebuild
deleted file mode 100644
index f2acaba15e74..
--- a/sci-libs/opencascade/opencascade-7.5.2-r6.ebuild
+++ /dev/null
@@ -1,175 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic
-
-MY_PV="$(ver_rs 1- '_')"
-PV_MAJ="$(ver_cut 1-2)"
-
-DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and 
data exchange"
-HOMEPAGE="https://www.opencascade.com;
-SRC_URI="https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=refs/tags/V${MY_PV};sf=tgz
 -> ${P}.tar.gz"
-S="${WORKDIR}/occt-V${MY_PV}"
-
-LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
-SLOT="0/${PV_MAJ}"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="debug doc examples ffmpeg freeimage gles2-only json optimize tbb vtk"
-
-REQUIRED_USE="?? ( optimize tbb )"
-
-# There's no easy way to test. Testing needs a rather big environment
-# properly set up.
-RESTRICT="test"
-
-# ffmpeg: 
https://dev.opencascade.org/content/build-error-when-compiling-against-ffmpeg-5
-RDEPEND="
-   !app-eselect/eselect-opencascade
-   dev-lang/tcl:=
-   dev-lang/tk:=
-   dev-tcltk/itcl
-   dev-tcltk/itk
-   dev-tcltk/tix
-   media-libs/fontconfig
-   media-libs/freetype:2
-   media-libs/ftgl
-   virtual/glu
-   virtual/opengl
-   x11-libs/libXmu
-   examples? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtquickcontrols2:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   )
-   ffmpeg? ( media-video/ffmpeg:= )
-   freeimage? ( media-libs/freeimage )
-   tbb? ( =sci-libs/vtk-9.1.0"; then
-   mycmakeargs+=(
-   -D3RDPARTY_VTK_DIR="${ESYSROOT}"/usr
-   
-D3RDPARTY_VTK_INCLUDE_DIR="${ESYSROOT}"/usr/include/vtk-9.1
-   
-D3RDPARTY_VTK_LIBRARY_DIR="${ESYSROOT}"/usr/$(get_libdir)
-   )
-   elif has_version ">=sci-libs/vtk-9.0.0"; then
-   mycmakeargs+=(
-   -D3RDPARTY_VTK_DIR="${ESYSROOT}"/usr
-   
-D3RDPARTY_VTK_INCLUDE_DIR="${ESYSROOT}"/usr/include/vtk-9.0
-   
-D3RDPARTY_VTK_LIBRARY_DIR="${ESYSROOT}"/usr/$(get_libdir)
-   )
-   fi
-   fi
-
-   cmake_src_configure
-
-   # prepare /etc/env.d file
-   sed -e "s|lib/|$(get_libdir)/|" \
-   -e "s|VAR_CASROOT|${EPREFIX}/usr|" \
-   < "${FILESDIR}"/${PN}.env.in > "${T}"/99${PN} || die
-
-   # use TBB for memory allocation optimizations
-   if use tbb; then
-  

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-templates/

2023-01-26 Thread Joonas Niilola
commit: 0a7d0d133307463620e52ead454824e7344c5041
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:59:59 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a7d0d13

sci-electronics/kicad-templates: drop 5.1.12

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad-templates/Manifest |  1 -
 .../kicad-templates/kicad-templates-5.1.12.ebuild| 16 
 2 files changed, 17 deletions(-)

diff --git a/sci-electronics/kicad-templates/Manifest 
b/sci-electronics/kicad-templates/Manifest
index 284c673e81cc..1d4852e0bfa0 100644
--- a/sci-electronics/kicad-templates/Manifest
+++ b/sci-electronics/kicad-templates/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-templates-5.1.12.tar.bz2 1552173 BLAKE2B 
51791729e049aa835f15b80f783d07c099dd177783b1a78209e7c7db709a3b0a18bd22572227ab5193d4da955796bc4c78f502fdedd275f379f84fa49108a324
 SHA512 
4f44816fa78048c0db93ecd10ae980236bc5ef1ed5170270ac761dd5fc32d08a5c8bf733837e6dceecf736f75fa09780326af813de04cbd69345cf376815d430
 DIST kicad-templates-6.0.6.tar.gz 1057646 BLAKE2B 
3bca2c6557ea8879d53a24a9a97872235c7d6289259936744a098745d0aaca9c2e397d471aa738d0007813c77e8a299c2975393bc0c0e62212be293cd210c049
 SHA512 
b9c4df8b7da9f5e3405a942c3afb09f5c387e311927042889211fb3c3a2a4610a1ccdc94ca2c1e1ae06e351617b15882adf5899f6dbfb392611feb5711e5be92
 DIST kicad-templates-6.0.7.tar.gz 1057666 BLAKE2B 
62b6d6b93cf94c6085c69f349259eeaf9d7fdb9aa9faf631c4ee89de20d9f2c3d70e6afa9ff90ccaf9bbb3ad1877907d375ae6777dda3a841d3e263ea9edf2d6
 SHA512 
c04f2754d2ed8e18fdb054ecaa900a80f8f937096513dbe0a9dbd89c341490657ad673488bf9f3a3d0850861c99524127128b8efb1283e2df3feefcea8806d53
 DIST kicad-templates-6.0.9.tar.gz 1057613 BLAKE2B 
c2c0c78093995629216cbcb93c40a05e1494da90a6cb91909e54fcb115fb7d6e10b3015a94200fef61407a6beccdc0f2bea84319531b39562bdf19ccf243a726
 SHA512 
f5e82599dc8532b2f286d62e650084b4d0470308a2cf447831027a85ea1028587342d51d4005018449f17fcbc9bd9f6ed850d7e3818c88692906790ef8981471

diff --git a/sci-electronics/kicad-templates/kicad-templates-5.1.12.ebuild 
b/sci-electronics/kicad-templates/kicad-templates-5.1.12.ebuild
deleted file mode 100644
index 211b692af0c3..
--- a/sci-electronics/kicad-templates/kicad-templates-5.1.12.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools project templates"
-HOMEPAGE="https://github.com/kicad/kicad-templates;
-SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND=">=sci-electronics/kicad-5.1.0"



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/, sci-electronics/kicad/files/, profiles/

2023-01-26 Thread Joonas Niilola
commit: 8c47b89a01cc8cc46121199be8c50e564eb081b6
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:53:00 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c47b89a

sci-electronics/kicad: drop 5.1.12-r3

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 profiles/package.mask  |  14 --
 sci-electronics/kicad/Manifest |   1 -
 sci-electronics/kicad/files/kicad-5.1.5-help.patch | 117 --
 .../kicad/files/kicad-5.1.5-ldflags.patch  |  17 ---
 .../kicad/files/kicad-5.1.5-strict-aliasing.patch  |  25 ---
 .../kicad/files/kicad-5.1.6-metainfo.patch |  30 
 sci-electronics/kicad/kicad-5.1.12-r3.ebuild   | 170 -
 sci-electronics/kicad/metadata.xml |   2 -
 8 files changed, 376 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6551af4f652f..a84f9682ec68 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -963,20 +963,6 @@ dev-qt/qtwebsockets:6
 # meaningless backtrace, debugging (flags, symbols) do not help
 >app-shells/scsh-0.6.9
 
-# Zoltan Puskas  (2022-02-18)
-# Multiple vulnerabilities (CVE-2022-{23803,23804,23946,23947})
-# 5.X series is masked to avoid accidental use, but it's kept for
-# industrial users who are in the process of migrating to the new
-# format of the 6.X series.
- (2022-01-24)
 # Mask experimental software
 =mail-mta/postfix-3.8*

diff --git a/sci-electronics/kicad/Manifest b/sci-electronics/kicad/Manifest
index b1a0ea3ed005..4546d883c102 100644
--- a/sci-electronics/kicad/Manifest
+++ b/sci-electronics/kicad/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-5.1.12.tar.bz2 18581842 BLAKE2B 
f04369fecded6fb07376efa209ddf5fcc693e73018ed728003529cdd0e6ef4a059c28106db1acf18834d938c3fbe4b9df5b5c8e0874989d35f74cf67414e6c76
 SHA512 
c0e5ad5b360ef788b427755aa71eeaec1a19b7520a00bb94fafba47e291f6ba067c598004efd515287800cd41f7da399d0389121e53e9669026c62f21b0a65ea
 DIST kicad-6.0.6.tar.gz 45086249 BLAKE2B 
fbf1f11cbf4838186e1ecb42127f7b182d3cd13b4af147211c85244d361cbf83387f5d102efdc80a63cfff36e343e6c4e07fef7f95dac4c844c5bc9d0ec2
 SHA512 
c472a6b81e3065e0499cad8467527d3531dc4d5861f50079ecb2ae6fccaf2c4d24fbeae8e9fe0cdde5ef548458fcef9615d6539426abe391a629dd539406065a
 DIST kicad-6.0.7.tar.gz 45143677 BLAKE2B 
4ab9132be84cb6c6c566a826e5966f4fe64922dcd66f78c558126b37a276e075af80440da35071c864457298f6f964ba15511d0038424f473c3fb079d5f042e6
 SHA512 
0466650d166becbde23f1202e8bbe73ac7c743b5baad9608252fe4e960f0d15aad363664b69d840ef4568bf6d1c042b94252afce8657594a5f8193c979613e0e
 DIST kicad-6.0.9.tar.gz 4513 BLAKE2B 
e4d45c589a8e76d7c121ac4ab7adefc5fd44d4ccbff7140196caec56c309f6e83d47a3ea9cf79f59de57c3bda43b3d32a2bea82c5850c2a7a58a6e1db27a06a7
 SHA512 
49e6bd3c9f6e0c9839c4fac18dc12dc7ef16183f6fbe8091992e2223c7fb085b3119d46797c0b0cf86fd2813e3c4def9eb1f2adbff1bf072a363f1a501da9354

diff --git a/sci-electronics/kicad/files/kicad-5.1.5-help.patch 
b/sci-electronics/kicad/files/kicad-5.1.5-help.patch
deleted file mode 100644
index 1b37e3013c1e..
--- a/sci-electronics/kicad/files/kicad-5.1.5-help.patch
+++ /dev/null
@@ -1,117 +0,0 @@
-diff -Naur kicad-5.1.5-orig/CMakeLists.txt kicad-5.1.5/CMakeLists.txt
 kicad-5.1.5-orig/CMakeLists.txt2019-11-14 09:09:45.0 -0800
-+++ kicad-5.1.5/CMakeLists.txt 2019-12-15 03:41:57.574995996 -0800
-@@ -442,6 +442,10 @@
- set( KIFACE_PREFIX  "_" )
- #message( STATUS "KIFACE_SUFFIX:${KIFACE_SUFFIX}  
KIFACE_PREFIX:${KIFACE_PREFIX}" )
- 
-+# KICAD_HELP is the location of the help files accessed from the UI
-+# (usually provided via kicad-doc package)
-+set ( KICAD_HELP share/doc/kicad
-+CACHE PATH "Alternative location of KiCad help files.")
- 
- #
- # Locations for install targets.
-diff -Naur kicad-5.1.5-orig/CMakeModules/config.h.cmake 
kicad-5.1.5/CMakeModules/config.h.cmake
 kicad-5.1.5-orig/CMakeModules/config.h.cmake   2019-11-14 
09:09:45.0 -0800
-+++ kicad-5.1.5/CMakeModules/config.h.cmake2019-12-15 03:42:00.368013375 
-0800
-@@ -59,6 +59,10 @@
- /// The install prefix defined during CMake configuration or fall back to 
CMAKE_INSTALL_PREFIX.
- #define DEFAULT_INSTALL_PATH"@DEFAULT_INSTALL_PATH@"
- 
-+/// KiCad help files path can be different on some systems allow adding 
alternative,
-+/// search path for them. Defaults to CMAKE_INSTALL_PREFIX/share/doc/kicad
-+#define KICAD_HELP   "@KICAD_HELP@"
-+
- /// The wxPython version found during configuration.
- #if defined( KICAD_SCRIPTING_WXPYTHON )
- #define WXPYTHON_VERSION"@WXPYTHON_VERSION@"
-diff -Naur kicad-5.1.5-orig/common/searchhelpfilefullpath.cpp 
kicad-5.1.5/common/searchhelpfilefullpath.cpp
 kicad-5.1.5-orig/common/searchhelpfilefullpath.cpp 

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-meta/

2023-01-26 Thread Joonas Niilola
commit: 4dfa9b98fadad65656c0cab57dc72096d288f66d
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:54:04 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dfa9b98

sci-electronics/kicad-meta: drop 5.1.12

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../kicad-meta/kicad-meta-5.1.12.ebuild| 29 --
 1 file changed, 29 deletions(-)

diff --git a/sci-electronics/kicad-meta/kicad-meta-5.1.12.ebuild 
b/sci-electronics/kicad-meta/kicad-meta-5.1.12.ebuild
deleted file mode 100644
index 03f88d62d7d9..
--- a/sci-electronics/kicad-meta/kicad-meta-5.1.12.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Electronic Schematic and PCB design tools (meta package)"
-HOMEPAGE="http://www.kicad.org;
-SRC_URI=""
-
-LICENSE="metapackage"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="doc minimal nls"
-
-RDEPEND="
-   >=sci-electronics/kicad-${PV}
-   >=sci-electronics/kicad-symbols-${PV}
-   >=sci-electronics/kicad-footprints-${PV}
-   doc? (
-   >=app-doc/kicad-doc-${PV}
-   )
-   !minimal? (
-   >=sci-electronics/kicad-packages3d-${PV}
-   >=sci-electronics/kicad-templates-${PV}
-   )
-   nls? (
-   >=sci-electronics/kicad-i18n-${PV}
-   )
-"



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-i18n/

2023-01-26 Thread Joonas Niilola
commit: 640426c0a9e07a831f456ab09150c91e3efe9018
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:57:51 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=640426c0

sci-electronics/kicad-i18n: treeclean

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad-i18n/Manifest |  1 -
 sci-electronics/kicad-i18n/kicad-i18n-5.1.12.ebuild | 17 -
 sci-electronics/kicad-i18n/metadata.xml | 15 ---
 3 files changed, 33 deletions(-)

diff --git a/sci-electronics/kicad-i18n/Manifest 
b/sci-electronics/kicad-i18n/Manifest
deleted file mode 100644
index 5619127f9c88..
--- a/sci-electronics/kicad-i18n/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kicad-i18n-5.1.12.tar.bz2 2934525 BLAKE2B 
7aef8a0e5213be38e5517a539469cba41d67dc2495539c7f5722f6cf7e3a86b8eaefa341d18a621b36c100ddd89466fbf5ac9d8071e5f78587161a8c0bb430d1
 SHA512 
178a17919e762f284aaf1fab75d527085a2bcec8dc6e236a552c6c471aab5ca4f747d297d8f148dbe9cc80a0c4994b712b54da077029ff484006b6c42dc22916

diff --git a/sci-electronics/kicad-i18n/kicad-i18n-5.1.12.ebuild 
b/sci-electronics/kicad-i18n/kicad-i18n-5.1.12.ebuild
deleted file mode 100644
index ec60fdc59456..
--- a/sci-electronics/kicad-i18n/kicad-i18n-5.1.12.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools GUI translations"
-HOMEPAGE="https://gitlab.com/kicad/code/kicad-i18n;
-SRC_URI="https://gitlab.com/kicad/code/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-BDEPEND="sys-devel/gettext"
-RDEPEND=">=sci-electronics/kicad-5.1.6"

diff --git a/sci-electronics/kicad-i18n/metadata.xml 
b/sci-electronics/kicad-i18n/metadata.xml
deleted file mode 100644
index 8cbb9ea9aa19..
--- a/sci-electronics/kicad-i18n/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   zol...@sinustrom.info
-   Zoltan Puskas
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
-   
-   kicad/kicad-i18n
-   
-



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-footprints/

2023-01-26 Thread Joonas Niilola
commit: 8cd76c13dc669da42efdab85cf25f20e4d27da81
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:55:59 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd76c13

sci-electronics/kicad-footprints: drop 5.1.12

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad-footprints/Manifest|  1 -
 .../kicad-footprints/kicad-footprints-5.1.12.ebuild  | 16 
 2 files changed, 17 deletions(-)

diff --git a/sci-electronics/kicad-footprints/Manifest 
b/sci-electronics/kicad-footprints/Manifest
index 6fcf9b0ad44b..27d04ea64168 100644
--- a/sci-electronics/kicad-footprints/Manifest
+++ b/sci-electronics/kicad-footprints/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-footprints-5.1.12.tar.bz2 3382783 BLAKE2B 
6f7725bebd6099d86780ed2582aacfb3abff4db6065a6a17fcd7631782a0c2e1e8a23064f80cd95c79bbaca8da52003f01fce7e398e95596e45f15b144eeef7f
 SHA512 
e717886dc742f37b626226065953a36829b50f9bf203efe1dbeab41d4dbe3a898bd65fbde9fa059ea9374ea92905faeb0ccd19dfb1a62f2d6a445c07f90b89a9
 DIST kicad-footprints-6.0.6.tar.gz 31647789 BLAKE2B 
3af7027987b25c4a3ee19925acaa539cea643656e1662f0b80ec76c807aca9ef7433228fc88cdd0c34b80e7bbb886abd5c11765983e9adc5b347ce01bd4b51c4
 SHA512 
6d93a90bfc0b246c70b336aa9265a051a33d8b490a81271fb85ab73cd19184a031f3429ce8ae9e1650ece475a30f0f283c43c5bb2d1f427b4129d4ed61480ac0
 DIST kicad-footprints-6.0.7.tar.gz 31657956 BLAKE2B 
127ac81c83841919903b300af89c2126e1f53ff1c03d6dcd2466eac8d4733da4f923831e24aa43fca2b5c6d9ee4389bd67f0bd2b4d300adb5356e261b14e897e
 SHA512 
e0959846e057df46e38385d1fe71895930435fc51ad03bbc893481264d969d9739967b069855b59341388fec5458a4f2c71c527b7af7357437c5606c91f5436d
 DIST kicad-footprints-6.0.9.tar.gz 31723499 BLAKE2B 
33856d28a52f8f516c96c38c68aabe3d57c3f7eade5cb654cd0dca15f36263b9860f252468edf0b94f228c2497ef7e862cebfd023e2a166ce1696a89c1cff1e1
 SHA512 
43436a61fb1be66dc6cd6079e49e7af0f7d374f074874fd008eb45c2b3faee596e102173a274064a536f11c4525f223c9e8c2a33969811414811a226e69affaa

diff --git a/sci-electronics/kicad-footprints/kicad-footprints-5.1.12.ebuild 
b/sci-electronics/kicad-footprints/kicad-footprints-5.1.12.ebuild
deleted file mode 100644
index 919b81b50669..
--- a/sci-electronics/kicad-footprints/kicad-footprints-5.1.12.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools footprint libraries"
-HOMEPAGE="https://kicad.github.io/footprints/;
-SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND=">=sci-electronics/kicad-5.1.0"



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-packages3d/

2023-01-26 Thread Joonas Niilola
commit: f3fccacadcf6056ca8a89380c095ed11b4947e3b
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Fri Jan 27 06:58:29 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:42:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fccaca

sci-electronics/kicad-packages3d: drop 5.1.12-r1

Signed-off-by: Zoltan Puskas  sinustrom.info>
Signed-off-by: Joonas Niilola  gentoo.org>

 sci-electronics/kicad-packages3d/Manifest|  1 -
 .../kicad-packages3d-5.1.12-r1.ebuild| 20 
 2 files changed, 21 deletions(-)

diff --git a/sci-electronics/kicad-packages3d/Manifest 
b/sci-electronics/kicad-packages3d/Manifest
index 3e37757bcfbe..dfa28d742530 100644
--- a/sci-electronics/kicad-packages3d/Manifest
+++ b/sci-electronics/kicad-packages3d/Manifest
@@ -1,4 +1,3 @@
-DIST kicad-packages3d-5.1.12.tar.bz2 727191578 BLAKE2B 
534ba480de72ffbc8ac0968e5a7b04f2b7ccfb0ef8bb88bdad7e4e6d90536f9ae7bd101316512e1fa2e27b607fd0dd8e53d0729e48368362177b066c6bab3802
 SHA512 
eb4895e0c46448a74acf10e8c72dee6ea89fee9d53b93c0927d592f4ee944497b642ed575b1b5457ff0db731f654d054d539aff007a17b8d8366c03edb15b6d2
 DIST kicad-packages3d-6.0.6.tar.gz 951710688 BLAKE2B 
16176514519897167807b9c2d6659b16d38574484bc09fd871c97ea943531f8726a8173b5a3d143818397eb1086db0d6bda43add357c95e92bffac05560ec9f2
 SHA512 
f8231c4ce508eb379ceb397cf6e9f963411a0a5cee5d1fa9a9e929c964662d391ab12555c4d3e8bca1b9507338571f3036af7f24e6a4d093f8f2aa3ba93e9345
 DIST kicad-packages3d-6.0.7.tar.gz 952830693 BLAKE2B 
0eec72303c3146f3b11092a2e7129e53b68fefa4a869e9e87302aa04e092d96514f12a2344b8964a13701a1d7198ad39848b5496c81ae0090ce41670b4a7618f
 SHA512 
cbbeaa85df3e2b9a8c8616994607ff446b8d97dc039562b9c3823ad8cf2efabc02eb49f1a34b6ac3545db21dfbb264d79d05f2edeb2c79a13fd1093999f331f9
 DIST kicad-packages3d-6.0.9.tar.gz 953182554 BLAKE2B 
a0f9810d1236c3ef1b0adae3cc2f1d8172fb52add6a9d5666dd32431725a1d3fd0456119ef21b05bd390ec90fce359b46e846f0af063feb4f8d97bc69da57f68
 SHA512 
fe014b35ce9071ed48d00481d509fba678dc0bea5170f626de9b18c0e0285cb441fcc635197da40af869e35c50104a9a69d991348d6031293ee166b734ba7cc9

diff --git a/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.12-r1.ebuild 
b/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.12-r1.ebuild
deleted file mode 100644
index d37150d3243e..
--- a/sci-electronics/kicad-packages3d/kicad-packages3d-5.1.12-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit check-reqs cmake
-
-DESCRIPTION="Electronic Schematic and PCB design tools 3D package libraries"
-HOMEPAGE="https://kicad.github.io/packages3d/;
-SRC_URI="https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/${PV}/kicad-packages3D-${PV}.tar.bz2
 -> ${P}.tar.bz2"
-
-LICENSE="CC-BY-SA-4.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="+occ"
-
-RDEPEND=">=sci-electronics/kicad-5.1.0[occ=]"
-
-CHECKREQS_DISK_BUILD="11G"
-S="${WORKDIR}/${P/3d/3D}"



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

2023-01-26 Thread Joonas Niilola
commit: 44e5fd0de558645ec83b5f2ecd054b6a2d87336a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Jan 27 07:25:21 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44e5fd0d

dev-util/rocm-smi: revbump 5.1.3 due to installed files changing

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

 dev-util/rocm-smi/{rocm-smi-5.1.3.ebuild => rocm-smi-5.1.3-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-util/rocm-smi/rocm-smi-5.1.3.ebuild 
b/dev-util/rocm-smi/rocm-smi-5.1.3-r1.ebuild
similarity index 100%
rename from dev-util/rocm-smi/rocm-smi-5.1.3.ebuild
rename to dev-util/rocm-smi/rocm-smi-5.1.3-r1.ebuild



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

2023-01-26 Thread Joonas Niilola
commit: 112728ebfc75a522ccc009002882c1551244009b
Author: Marcos Rodrigues Gonzalez  gmail  com>
AuthorDate: Wed Jan 18 03:00:27 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112728eb

dev-util/packer: add 1.8.5

Signed-off-by: Marcos Rodrigues Gonzalez  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29152
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/packer/Manifest|  2 ++
 dev-util/packer/packer-1.8.5.ebuild | 35 +++
 2 files changed, 37 insertions(+)

diff --git a/dev-util/packer/Manifest b/dev-util/packer/Manifest
index fb9da559fcf9..6b70c0ad53e9 100644
--- a/dev-util/packer/Manifest
+++ b/dev-util/packer/Manifest
@@ -1,2 +1,4 @@
 DIST packer-1.7.10-deps.tar.xz 628140836 BLAKE2B 
6cfb8409a9a9aef2130e58f2b70b1bb73b491aa9fb2d1f2b59b2c3c9e721465a5f0e6357a58e9eed4d8b024a4fe9a0f20cf9a5b84e7d20f3a8d52ad55e4c
 SHA512 
cd0af0f60029b7b3e887fbe4245e26e12d798fe5c3b650d63774ffeb2d5eab9609d8506a06c35d8ff4d499db1cab69d767b8b386d04136fd65ea43de3940df88
 DIST packer-1.7.10.tar.gz 2414352 BLAKE2B 
7c48aaac8411dd81cae2201cf9b03eab0906b78dcc6aecf654f498b44884a0758f0d5fc10d03b9e526f7753d18db8754b74d8c2eef133b4170b872f41c8261f3
 SHA512 
12f032afef95be92be4f6e98cf2af5548189cb179c25d74b8f7943b4a6af0ab49c5a86523f27385e5eee05624d7e9de8d572fe19442305227c5bddd21a66f97a
+DIST packer-1.8.5-deps.tar.xz 385789132 BLAKE2B 
680852f380bc6b2c74183bf0c32baf8e3c796b5eaee59fd8f395e2fa2765a3aa2ec36d30647ffd90965fad9b1cfe8ea00e4ad684c026cb60a6c4a9df4f5c8501
 SHA512 
a84b2d3287ccb618063ea960773a3ebe306ae8a36c708fd8ca057f6ce70b82ff7590922aa733c1fade93fbbca14f87b0c5ecda530413b573fab8bd981dd254fc
+DIST packer-1.8.5.tar.gz 2278013 BLAKE2B 
0465356e78b62a67e71ef943a7dfb89b5f50b3b3cdb34c3ca41ac6d57e32fad8f40da1316ba8f54d93ae0c25b22627cc9f633f4e488ee9cc66fc6e6080b5769e
 SHA512 
8ffd9e0a755e5e537c63a70454756a6df787d299cb5f3a8d6dea9c7e93dbea744017cd2f2c4fa9a8b6fbc052dedecb702dc6ac656b4c6c293ad5eab1f581872e

diff --git a/dev-util/packer/packer-1.8.5.ebuild 
b/dev-util/packer/packer-1.8.5.ebuild
new file mode 100644
index ..2fe313cded4e
--- /dev/null
+++ b/dev-util/packer/packer-1.8.5.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit go-module
+
+DESCRIPTION="A tool to create identical machine images for multiple platforms"
+HOMEPAGE="https://www.packer.io;
+SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   https://gentoofiles.s3.eu-central-1.amazonaws.com/${P}-deps.tar.xz;
+
+LICENSE="Apache-2.0 BSD-2 BSD-4 MIT MPL-2.0 unicode"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+
+DOCS=( {README,CHANGELOG}.md )
+
+RESTRICT+=" test"
+
+src_compile() {
+   ego build \
+   -mod=readonly \
+   -ldflags "${go_ldflags}" \
+   -work -o "bin/${PN}" ./ || die
+}
+
+src_install() {
+   dobin bin/packer
+
+   einstalldocs
+
+   insinto /usr/share/zsh/site-functions
+   doins contrib/zsh-completion/_packer
+}



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

2023-01-26 Thread Joonas Niilola
commit: 204f6a954c39852d08d6d2648cac50a3a2c2e330
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Jan 27 07:15:38 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204f6a95

dev-util/packer: update EAPI 7 -> 8

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

 dev-util/packer/packer-1.8.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/packer/packer-1.8.5.ebuild 
b/dev-util/packer/packer-1.8.5.ebuild
index 2fe313cded4e..5d2c7f38d9d4 100644
--- a/dev-util/packer/packer-1.8.5.ebuild
+++ b/dev-util/packer/packer-1.8.5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit go-module
 



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

2023-01-26 Thread Joonas Niilola
commit: 0e5f3e7615d2f9ccee3c8dc00d7d1a36c68c5f57
Author: Yiyang Wu  gmail  com>
AuthorDate: Wed Jan 18 12:52:37 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5f3e76

dev-util/rocm-smi: Fix shebang of rocm-smi

The shebang of rocm_smi.py is `/usr/bin/env python3`, thus should be mangled.

Signed-off-by: Yiyang Wu  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/rocm-smi/rocm-smi-5.1.3.ebuild | 2 +-
 dev-util/rocm-smi/rocm-smi-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/rocm-smi/rocm-smi-5.1.3.ebuild 
b/dev-util/rocm-smi/rocm-smi-5.1.3.ebuild
index 90b2396a727d..f2b4fc660707 100644
--- a/dev-util/rocm-smi/rocm-smi-5.1.3.ebuild
+++ b/dev-util/rocm-smi/rocm-smi-5.1.3.ebuild
@@ -57,6 +57,6 @@ src_configure() {
 
 src_install() {
cmake_src_install
-   python_foreach_impl python_newexe python_smi_tools/rocm_smi.py rocm-smi
+   python_foreach_impl python_newscript python_smi_tools/rocm_smi.py 
rocm-smi
python_foreach_impl python_domodule python_smi_tools/rsmiBindings.py
 }

diff --git a/dev-util/rocm-smi/rocm-smi-.ebuild 
b/dev-util/rocm-smi/rocm-smi-.ebuild
index 16c82ecdbbe5..8d35ce910b8b 100644
--- a/dev-util/rocm-smi/rocm-smi-.ebuild
+++ b/dev-util/rocm-smi/rocm-smi-.ebuild
@@ -51,6 +51,6 @@ src_configure() {
 
 src_install() {
cmake_src_install
-   python_foreach_impl python_newexe python_smi_tools/rocm_smi.py rocm-smi
+   python_foreach_impl python_newscript python_smi_tools/rocm_smi.py 
rocm-smi
python_foreach_impl python_domodule python_smi_tools/rsmiBindings.py
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/wildmidi/

2023-01-26 Thread Joonas Niilola
commit: 31da6b0ccc026c0ef62f5c47a88d1720a0aa04ea
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Wed Jan 18 08:46:59 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31da6b0c

media-sound/wildmidi: add 0.4.5

Signed-off-by: Azamat H. Hackimov  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29153
Signed-off-by: Joonas Niilola  gentoo.org>

 media-sound/wildmidi/Manifest  |  1 +
 media-sound/wildmidi/wildmidi-0.4.5.ebuild | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/media-sound/wildmidi/Manifest b/media-sound/wildmidi/Manifest
index ce7887439414..07efe5000c1c 100644
--- a/media-sound/wildmidi/Manifest
+++ b/media-sound/wildmidi/Manifest
@@ -1 +1,2 @@
 DIST wildmidi-0.4.4.tar.gz 197597 BLAKE2B 
5f5b11bec70b24b4798ac39d4d30420916609f3d65497ef88b48ef292f41d0cc81cc8d9c8c47ffc68705d6297a9ce55ef5d7ebdf63f8c18b8b0f7982c1f60bfc
 SHA512 
5b74ee83f1d7ce3b45d2f996aaa30ec6e7d7808eab294a3eaf6fcef77443523df1f54bb0fb1b3105edd0d72d75885fda1a2e97c68defb5bbd687bda5077d3454
+DIST wildmidi-0.4.5.tar.gz 197793 BLAKE2B 
a0b43e19b4e4ced6c4f536dd5e1ac313acd26ad0c3c9deed7068181666a175f4dfdf5cb522d70fdaf0636cc4b3b1af3cedfda54a6c048b05e828a4d1ad185b77
 SHA512 
0229914ecc60091b649b790a82ad5e755a2b9dfab7443fb3e3c19f4ae64b82817cafe74d78c27f05c68c3c8fb30092c96da732d27ff82fbd7dd7d577facc23d6

diff --git a/media-sound/wildmidi/wildmidi-0.4.5.ebuild 
b/media-sound/wildmidi/wildmidi-0.4.5.ebuild
new file mode 100644
index ..a5a398d0f3c0
--- /dev/null
+++ b/media-sound/wildmidi/wildmidi-0.4.5.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake readme.gentoo-r1
+
+DESCRIPTION="MIDI processing library and player using the GUS patch set"
+HOMEPAGE="http://www.mindwerks.net/projects/wildmidi/;
+SRC_URI="https://github.com/Mindwerks/${PN}/archive/${P}.tar.gz;
+
+LICENSE="GPL-3+ LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+IUSE="+alsa openal oss +player"
+
+DEPEND="
+   player? (
+   alsa? ( media-libs/alsa-lib )
+   openal? ( media-libs/openal )
+   )
+"
+RDEPEND="${DEPEND}
+   media-sound/timidity-freepats
+"
+
+REQUIRED_USE="player? ( ^^ ( alsa oss openal ) )"
+
+DOC_CONTENTS="${PN} is using timidity-freepats for midi playback.
+   A default configuration file was placed on /etc/${PN}/${PN}.cfg.
+   For more information please read the ${PN}.cfg manpage."
+
+S="${WORKDIR}/${PN}-${P}"
+
+src_prepare() {
+   cmake_src_prepare
+   # Fix location of media-sound/timidity-freepats
+   # See #749759
+   sed -i -e "s:midi/freepats:timidity/freepats:" cfg/wildmidi.cfg || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DWANT_ALSA=$(usex alsa)
+   -DWANT_OPENAL=$(usex openal)
+   -DWANT_OSS=$(usex oss)
+   -DWANT_PLAYER=$(usex player)
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   insinto /etc/${PN}/
+   doins cfg/wildmidi.cfg
+
+   readme.gentoo_create_doc
+}



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

2023-01-26 Thread Joonas Niilola
commit: 22c48cd7dccb5c69de56408c43d35a1a212c8f31
Author: Yiyang Wu  gmail  com>
AuthorDate: Wed Jan 18 13:38:04 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c48cd7

dev-util/rocm-smi: update patch, LICENSE, PYTHON_COMPAT on 

Use newest patch from version 5.4.2
Clean up unnecessary sed commands like 5.4.2

Closes: https://bugs.gentoo.org/890646
Signed-off-by: Yiyang Wu  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29157
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/rocm-smi/rocm-smi-.ebuild | 25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/dev-util/rocm-smi/rocm-smi-.ebuild 
b/dev-util/rocm-smi/rocm-smi-.ebuild
index 8d35ce910b8b..bc4f8b802371 100644
--- a/dev-util/rocm-smi/rocm-smi-.ebuild
+++ b/dev-util/rocm-smi/rocm-smi-.ebuild
@@ -3,9 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
-inherit cmake multilib prefix python-r1
+inherit cmake python-r1
 
 DESCRIPTION="ROCm System Management Interface Library"
 HOMEPAGE="https://github.com/RadeonOpenCompute/rocm_smi_lib;
@@ -20,7 +20,7 @@ else
S="${WORKDIR}/rocm_smi_lib-rocm-${PV}"
 fi
 
-LICENSE="NCSA-AMD"
+LICENSE="MIT NCSA-AMD"
 SLOT="0/$(ver_cut 1-2)"
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
@@ -29,22 +29,23 @@ DEPEND=""
 RDEPEND="${PYTHON_DEPS}"
 BDEPEND=""
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.0.2-gcc12-memcpy.patch
+   "${FILESDIR}"/${PN}-5.4.2-detect-builtin-amdgpu.patch
+)
+
 src_prepare() {
-   sed -e "/DESTINATION/s,\${OAM_NAME}/lib,$(get_libdir)," \
-   -e "/DESTINATION/s,oam/include/oam,include/oam," -i 
oam/CMakeLists.txt || die
-   sed -e "/link DESTINATION/,+1d" \
-   -e "/DESTINATION/s,\${ROCM_SMI}/lib,$(get_libdir)," \
-   -e "/bindings_link/,+3d" \
-   -e "/rsmiBindings.py/,+1d" \
-   -e "/DESTINATION/s,rocm_smi/include/rocm_smi,include/rocm_smi," 
-i rocm_smi/CMakeLists.txt || die
-   sed -e "/LICENSE.txt/d" -e 
"s,\${ROCM_SMI}/lib/cmake,$(get_libdir)/cmake,g" -i CMakeLists.txt || die
-   sed -e "/^path_librocm = /c\path_librocm = 
'${EPREFIX}/usr/lib64/librocm_smi64.so'" -i python_smi_tools/rsmiBindings.py || 
die
+   sed -e "/LICENSE.txt/d" -i CMakeLists.txt || die
+   sed -e "/^path_librocm = /c\path_librocm = 
'${EPREFIX}/usr/lib64/librocm_smi64.so'" \
+   -i python_smi_tools/rsmiBindings.py || die
cmake_src_prepare
 }
 
 src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
+   -DCMAKE_DISABLE_FIND_PACKAGE_LATEX=ON
+   -DFILE_REORG_BACKWARD_COMPATIBILITY=OFF
)
cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: dev-util/rocm-smi/, dev-util/rocm-smi/files/

2023-01-26 Thread Joonas Niilola
commit: e6d20abad9fbc9a535341c82f5df908324a4a957
Author: Yiyang Wu  gmail  com>
AuthorDate: Wed Jan 18 13:36:49 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 07:33:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d20aba

dev-util/rocm-smi: add 5.4.2

Closes: https://bugs.gentoo.org/886513
Signed-off-by: Yiyang Wu  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/rocm-smi/Manifest |  1 +
 .../rocm-smi-5.4.2-detect-builtin-amdgpu.patch | 26 ++
 dev-util/rocm-smi/rocm-smi-5.4.2.ebuild| 57 ++
 3 files changed, 84 insertions(+)

diff --git a/dev-util/rocm-smi/Manifest b/dev-util/rocm-smi/Manifest
index 9aab44729a91..a37fb72a90db 100644
--- a/dev-util/rocm-smi/Manifest
+++ b/dev-util/rocm-smi/Manifest
@@ -1,2 +1,3 @@
 DIST rocm-smi-5.0.2.tar.gz 1677784 BLAKE2B 
28e136a8b3c630ed7d5b514ad5bf985ff540df8e1fc2378b855032a6ebd2bcbcd4aab5e8a5a9e6462eacd2ac9ada0b8940aed582ce118d1066bded115af42e22
 SHA512 
bbad2bbebb81de42a15d8aa48e4751dbf9b8f9ee74633d16828f6977fadff35e9db0b7c9ee465a61c40a3e8f2f0f99b79cd5c5b142785cf61958d432f13d7f05
 DIST rocm-smi-5.1.3.tar.gz 1701386 BLAKE2B 
c5e779f5c33fec0b1b39b09c758dfadd3c24e28f15381593f2959e5c2fb9f49af3a7ca1f9ab7d6bf34c5af4fbe3f0c0ae20c6c049cbf9421a9184735bb4a64a2
 SHA512 
7bf7af2b42a035c298c2f9009b6123671af41f9ca1a50607cfa362f39dbd82ff88f8c13ece6c4edab585edadd9072ed096a400dd3850851e1beef3633a8eb14e
+DIST rocm-smi-5.4.2.tar.gz 1553259 BLAKE2B 
0560e115028caafb1d5dd8892cfa677431b792714ecd8c75f31451fa7685d1c7070cbd687c894d7eefd112de5e2df9aa7895aa57821db207dffc4e8890898638
 SHA512 
0fd651593df0ebbcb2c2327d030d2674efacdb6e883daa5a8adf733db2bde3e5d16dc304856221f4bb07a3cd834944ffcc7ebd689624f7ba24ffd6c262ba74b8

diff --git a/dev-util/rocm-smi/files/rocm-smi-5.4.2-detect-builtin-amdgpu.patch 
b/dev-util/rocm-smi/files/rocm-smi-5.4.2-detect-builtin-amdgpu.patch
new file mode 100644
index ..1c406c7d042c
--- /dev/null
+++ b/dev-util/rocm-smi/files/rocm-smi-5.4.2-detect-builtin-amdgpu.patch
@@ -0,0 +1,26 @@
+Detect amdgpu module for amdgpu-builtin kernel
+From dc2a4b5b256692e1a6ecef45210682c316b961e0 Mon Sep 17 00:00:00 2001
+From: YiyangWu 
+Date: Sat, 2 Apr 2022 16:40:11 +0800
+Subject: [PATCH] Check /sys/module/amdgpu for ROCk instead of lsmod
+
+Closes: #102
+
+Signed-off-by: YiyangWu 
+---
+ python_smi_tools/rocm_smi.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: rocm_smi_lib-rocm-5.4.2/python_smi_tools/rocm_smi.py
+===
+--- rocm_smi_lib-rocm-5.4.2.orig/python_smi_tools/rocm_smi.py
 rocm_smi_lib-rocm-5.4.2/python_smi_tools/rocm_smi.py
+@@ -66,7 +66,7 @@ def driverInitialized():
+ """
+ driverInitialized = ''
+ try:
+-driverInitialized = str(subprocess.check_output("cat 
/sys/module/amdgpu/initstate |grep live", shell=True))
++driverInitialized = str(subprocess.check_output("test -d 
/sys/module/amdgpu", shell=True))
+ except subprocess.CalledProcessError:
+ pass
+ if len(driverInitialized) > 0:

diff --git a/dev-util/rocm-smi/rocm-smi-5.4.2.ebuild 
b/dev-util/rocm-smi/rocm-smi-5.4.2.ebuild
new file mode 100644
index ..bc4f8b802371
--- /dev/null
+++ b/dev-util/rocm-smi/rocm-smi-5.4.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit cmake python-r1
+
+DESCRIPTION="ROCm System Management Interface Library"
+HOMEPAGE="https://github.com/RadeonOpenCompute/rocm_smi_lib;
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/RadeonOpenCompute/rocm_smi_lib;
+   EGIT_BRANCH="master"
+else
+   
SRC_URI="https://github.com/RadeonOpenCompute/rocm_smi_lib/archive/rocm-${PV}.tar.gz
 -> rocm-smi-${PV}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/rocm_smi_lib-rocm-${PV}"
+fi
+
+LICENSE="MIT NCSA-AMD"
+SLOT="0/$(ver_cut 1-2)"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND=""
+RDEPEND="${PYTHON_DEPS}"
+BDEPEND=""
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.0.2-gcc12-memcpy.patch
+   "${FILESDIR}"/${PN}-5.4.2-detect-builtin-amdgpu.patch
+)
+
+src_prepare() {
+   sed -e "/LICENSE.txt/d" -i CMakeLists.txt || die
+   sed -e "/^path_librocm = /c\path_librocm = 
'${EPREFIX}/usr/lib64/librocm_smi64.so'" \
+   -i python_smi_tools/rsmiBindings.py || die
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
+   -DCMAKE_DISABLE_FIND_PACKAGE_LATEX=ON
+   -DFILE_REORG_BACKWARD_COMPATIBILITY=OFF
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+   python_foreach_impl python_newscript python_smi_tools/rocm_smi.py 
rocm-smi
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/cscope/, dev-util/cscope/files/

2023-01-26 Thread Ulrich Müller
commit: 5921ece59c359b0eeedb990008db786101bb3257
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jan 27 06:52:26 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jan 27 06:52:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5921ece5

dev-util/cscope: Fix xcscope.el with >=emacs-27

Patch from upstream (with whitespace changes removed).

Closes: https://bugs.gentoo.org/892071
Signed-off-by: Ulrich Müller  gentoo.org>

 dev-util/cscope/cscope-15.9-r1.ebuild| 70 
 dev-util/cscope/files/cscope-15.9-emacs-27.patch | 28 ++
 2 files changed, 98 insertions(+)

diff --git a/dev-util/cscope/cscope-15.9-r1.ebuild 
b/dev-util/cscope/cscope-15.9-r1.ebuild
new file mode 100644
index ..f0ca12cf9cfc
--- /dev/null
+++ b/dev-util/cscope/cscope-15.9-r1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools elisp-common toolchain-funcs
+
+DESCRIPTION="Interactively examine a C program"
+HOMEPAGE="https://cscope.sourceforge.net/;
+SRC_URI="mirror://sourceforge/cscope/${P}.tar.gz"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x86-solaris"
+IUSE="emacs"
+
+RDEPEND=">=sys-libs/ncurses-5.2:0=
+   emacs? ( >=app-editors/emacs-23.1:* )"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/flex
+   virtual/pkgconfig
+   app-alternatives/yacc"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+   eapply "${FILESDIR}/${PN}-15.7a-ocs-sysdir.patch" #269305
+   eapply "${FILESDIR}/${PN}-15.9-pkgconfig.patch"
+   eapply "${FILESDIR}/${PN}-15.9-emacs-27.patch"
+   eapply_user
+   mv configure.{in,ac} || die
+   eautoreconf   # prevent maintainer mode later on
+}
+
+src_configure() {
+   econf --with-ncurses="${EPREFIX}"/usr
+}
+
+src_compile() {
+   emake CURSES_LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
+   if use emacs; then
+   cd "${S}"/contrib/xcscope || die
+   elisp-compile *.el
+   fi
+}
+
+src_install() {
+   default
+
+   if use emacs; then
+   cd "${S}"/contrib/xcscope || die
+   elisp-install ${PN} *.el *.elc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   dobin cscope-indexer
+   fi
+
+   cd "${S}"/contrib/webcscope || die
+   docinto webcscope
+   dodoc INSTALL TODO cgi-lib.pl cscope hilite.c
+   docinto webcscope/icons
+   dodoc icons/*.gif
+}
+
+pkg_postinst() {
+   use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}

diff --git a/dev-util/cscope/files/cscope-15.9-emacs-27.patch 
b/dev-util/cscope/files/cscope-15.9-emacs-27.patch
new file mode 100644
index ..48cd7150176d
--- /dev/null
+++ b/dev-util/cscope/files/cscope-15.9-emacs-27.patch
@@ -0,0 +1,28 @@
+https://bugs.gentoo.org/892071
+
+commit eaea31cb93ecddda69a373f83f632e1a450c3c90
+Author: Brock Zheng Techyauld Ltd 
+Date:   Tue Aug 25 20:28:11 2020 +0800
+
+emacs plugin fixup: GNU/Emacs 27.1 removes function 
process-kill-without-query
+
+--- a/contrib/xcscope/xcscope.el
 b/contrib/xcscope/xcscope.el
+@@ -2006,7 +2006,7 @@
+ (set-process-filter cscope-process cscope-filter-func)
+ (set-process-sentinel cscope-process cscope-sentinel-func)
+ (set-marker (process-mark cscope-process) (point))
+-(process-kill-without-query cscope-process)
++  (set-process-query-on-exit-flag cscope-process nil)
+ (if cscope-running-in-xemacs
+ (setq modeline-process ": Searching ..."))
+ (setq buffer-read-only t)
+@@ -2139,7 +2139,7 @@
+  cscope-indexing-script args))
+   (set-process-sentinel cscope-unix-index-process
+   'cscope-unix-index-files-sentinel)
+-  (process-kill-without-query cscope-unix-index-process)
++  (set-process-query-on-exit-flag cscope-unix-index-process nil)
+   )
+ ))
+ 



[gentoo-commits] repo/gentoo:master commit in: net-firewall/ipset/

2023-01-26 Thread Sam James
commit: f9d7aa8dfc17b96eb1aebf2ea931ac7be9f4908f
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:32:22 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:32:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d7aa8d

net-firewall/ipset: Stabilize 7.17 arm64, #892177

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

 net-firewall/ipset/ipset-7.17.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-firewall/ipset/ipset-7.17.ebuild 
b/net-firewall/ipset/ipset-7.17.ebuild
index 450b35c613fc..ff391fab36ee 100644
--- a/net-firewall/ipset/ipset-7.17.ebuild
+++ b/net-firewall/ipset/ipset-7.17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://ipset.netfilter.org/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
>=net-firewall/iptables-1.4.7



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

2023-01-26 Thread Sam James
commit: d6ec6218cbdb5612add8ebd3953620a27f66a2cb
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:31:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:31:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6ec6218

dev-libs/gmp: Stabilize 6.2.1-r5 arm, #892157

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

 dev-libs/gmp/gmp-6.2.1-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r5.ebuild b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
index 8ad086d2e52f..4512e22e2c27 100644
--- a/dev-libs/gmp/gmp-6.2.1-r5.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
@@ -27,7 +27,7 @@ S="${WORKDIR}"/${MY_P%a}
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="+asm doc +cpudetection +cxx pic static-libs"
 REQUIRED_USE="cpudetection? ( asm )"
 RESTRICT="!cpudetection? ( bindist )"



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: 0bd26fcd937e3c62892b560158148f3ea5db3bdb
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:31:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:31:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd26fcd

app-shells/dash: Stabilize 0.5.12 arm64, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index 3c6f595de79f..eaa6df32d1ac 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2023-01-26 Thread Sam James
commit: 5180c68de8de288b10da289dbb23f33447dcd465
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5180c68d

sys-devel/patch: Stabilize 2.7.6-r5 arm, #892189

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

 sys-devel/patch/patch-2.7.6-r5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/patch/patch-2.7.6-r5.ebuild 
b/sys-devel/patch/patch-2.7.6-r5.ebuild
index 09f7c0284f92..08f674ac772d 100644
--- a/sys-devel/patch/patch-2.7.6-r5.ebuild
+++ b/sys-devel/patch/patch-2.7.6-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ SRC_URI+=" verify-sig? ( mirror://gnu/patch/${P}.tar.xz.sig )"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="static test xattr"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: 90d92a19c0f75debac16cf5b536d9da234a50323
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90d92a19

app-portage/elt-patches: Stabilize 20221210 sparc, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index 83b127585ce2..2f3afc21d5cb 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



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

2023-01-26 Thread Sam James
commit: cdc734a546ba7fdff59498f64ddde52200de30ba
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc734a5

sys-devel/patch: Stabilize 2.7.6-r5 arm64, #892189

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

 sys-devel/patch/patch-2.7.6-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/patch/patch-2.7.6-r5.ebuild 
b/sys-devel/patch/patch-2.7.6-r5.ebuild
index 08f674ac772d..803a7e832e09 100644
--- a/sys-devel/patch/patch-2.7.6-r5.ebuild
+++ b/sys-devel/patch/patch-2.7.6-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI+=" verify-sig? ( mirror://gnu/patch/${P}.tar.xz.sig )"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="static test xattr"
 RESTRICT="!test? ( test )"
 



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

2023-01-26 Thread Sam James
commit: b7f9f63bc5c0765406c274543d7751ad54582d2d
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f9f63b

net-misc/pps-tools: Stabilize 1.0.3 x86, #892185

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

 net-misc/pps-tools/pps-tools-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/pps-tools/pps-tools-1.0.3.ebuild 
b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
index b345cf8a330e..ef06268cfc12 100644
--- a/net-misc/pps-tools/pps-tools-1.0.3.ebuild
+++ b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/redlab-i/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc 
x86"
 
 src_configure() {
tc-export CC



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

2023-01-26 Thread Sam James
commit: ccce7403dfc7988e0150ac0ef0955534dcf86d27
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:29 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccce7403

dev-libs/gmp: Stabilize 6.2.1-r5 ppc, #892157

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

 dev-libs/gmp/gmp-6.2.1-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r5.ebuild b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
index c26bb0b6b9c7..8ad086d2e52f 100644
--- a/dev-libs/gmp/gmp-6.2.1-r5.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
@@ -27,7 +27,7 @@ S="${WORKDIR}"/${MY_P%a}
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="+asm doc +cpudetection +cxx pic static-libs"
 REQUIRED_USE="cpudetection? ( asm )"
 RESTRICT="!cpudetection? ( bindist )"



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

2023-01-26 Thread Sam James
commit: 934dee9ee1636d8017ffe9b0de87fc932ca7e13f
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=934dee9e

media-sound/pulseaudio-daemon: Stabilize 16.1-r6 amd64, #892149

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

 media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild 
b/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
index f196d6fc19a2..6b835c0c2088 100644
--- a/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
+++ b/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/pulseaudio/pulseaudio;
 else

SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: aeb4bef161a49d2bd6adbb9b6ff656fd098e4f73
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb4bef1

app-portage/elt-patches: Stabilize 20221210 ppc, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index 93ca55efaf9f..83b127585ce2 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



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

2023-01-26 Thread Sam James
commit: c773f53d1586bfeb269d213183cc38b39d9adb3b
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:30:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:30:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c773f53d

dev-util/pwndbg: Stabilize 20221219-r1 amd64, #892145

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

 dev-util/pwndbg/pwndbg-20221219-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/pwndbg/pwndbg-20221219-r1.ebuild 
b/dev-util/pwndbg/pwndbg-20221219-r1.ebuild
index bcd220f3d9af..a7bd8ceb8dcf 100644
--- a/dev-util/pwndbg/pwndbg-20221219-r1.ebuild
+++ b/dev-util/pwndbg/pwndbg-20221219-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,7 +20,7 @@ else
https://github.com/pwndbg/pwndbg/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz

https://github.com/martinradev/gdb-pt-dump/archive/${GDB_PT_DUMP_COMMIT}.tar.gz 
-> gdb-pt-dump-${GDB_PT_DUMP_COMMIT}.tar.gz
"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
S="${WORKDIR}/${PN}-${MY_PV}"
 fi
 



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

2023-01-26 Thread Sam James
commit: d6010a3d023e536a2362a316a578602a143cae49
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:28:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:28:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6010a3d

media-sound/pulseaudio-daemon: Stabilize 16.1-r6 x86, #892149

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

 media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild 
b/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
index 9356b406dac4..f196d6fc19a2 100644
--- a/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
+++ b/media-sound/pulseaudio-daemon/pulseaudio-daemon-16.1-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -16,7 +16,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/pulseaudio/pulseaudio;
 else

SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 S="${WORKDIR}/${MY_P}"



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

2023-01-26 Thread Sam James
commit: 697ebe71987d9c1fc4ee0e3a3831697ba3949e22
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:28:20 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:28:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=697ebe71

dev-util/strace: Stabilize 6.1 arm64, #892179

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

 dev-util/strace/strace-6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/strace/strace-6.1.ebuild 
b/dev-util/strace/strace-6.1.ebuild
index 0c25b59b7f94..4f2c696b7282 100644
--- a/dev-util/strace/strace-6.1.ebuild
+++ b/dev-util/strace/strace-6.1.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="A useful diagnostic, instructional, and debugging tool"



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

2023-01-26 Thread Sam James
commit: 315197dc712bb8ceec171f5268425720440d9cfd
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:28:22 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:28:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315197dc

net-misc/pps-tools: Stabilize 1.0.3 arm64, #892185

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

 net-misc/pps-tools/pps-tools-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/pps-tools/pps-tools-1.0.3.ebuild 
b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
index 2f8dc1598097..b345cf8a330e 100644
--- a/net-misc/pps-tools/pps-tools-1.0.3.ebuild
+++ b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/redlab-i/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 
 src_configure() {
tc-export CC



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

2023-01-26 Thread Sam James
commit: 5962a81447e9e61d2c6e060c53f7dec3e3ba61f9
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:28:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:28:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5962a814

dev-libs/mpc: Stabilize 1.3.1 arm64, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 250cb1028a7f..ec060322ab5e 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: bcf4b703307348969c70a91c30878f3013ef1e9c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf4b703

app-shells/dash: Stabilize 0.5.12 amd64, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index 05f6aa6cbbff..3c6f595de79f 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: d4b856b9629b1e6264ee41e97cfd9a19a91bced0
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b856b9

app-portage/elt-patches: Stabilize 20221210 amd64, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index b492a14164a8..93ca55efaf9f 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: 9ba2f6ef2030604f04d761e83f7e61b702e16180
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba2f6ef

app-shells/dash: Stabilize 0.5.12 x86, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index b2a8b7ddec38..c30a475698b9 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2023-01-26 Thread Sam James
commit: 4906b3804e1f45a81926aba1e9249f2677a369e4
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4906b380

net-misc/iputils: Stabilize 20221126 arm64, #892175

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

 net-misc/iputils/iputils-20221126.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/iputils/iputils-20221126.ebuild 
b/net-misc/iputils/iputils-20221126.ebuild
index f6a705e611ab..9124b2fec83a 100644
--- a/net-misc/iputils/iputils-20221126.ebuild
+++ b/net-misc/iputils/iputils-20221126.ebuild
@@ -22,7 +22,7 @@ else
https://github.com/iputils/iputils/archive/${PV}.tar.gz -> 
${P}.tar.gz

https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-docs.tar.xz
"
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="Network monitoring tools including ping and ping6"



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

2023-01-26 Thread Sam James
commit: 48faee7e4d7771adc84fbf55874a155ec0346d5c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48faee7e

dev-util/strace: Stabilize 6.1 arm, #892179

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

 dev-util/strace/strace-6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/strace/strace-6.1.ebuild 
b/dev-util/strace/strace-6.1.ebuild
index 49ada010927a..0c25b59b7f94 100644
--- a/dev-util/strace/strace-6.1.ebuild
+++ b/dev-util/strace/strace-6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="A useful diagnostic, instructional, and debugging tool"



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

2023-01-26 Thread Sam James
commit: 5cf99eeb1d945aa2ff4cba4ce6bd06875553062f
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf99eeb

dev-libs/mpc: Stabilize 1.3.1 sparc, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 8b453ef6814f..48290234628a 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: cd34af1c80489e20001b6fd36dce0894898838b2
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd34af1c

app-shells/dash: Stabilize 0.5.12 arm, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index c30a475698b9..05f6aa6cbbff 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2023-01-26 Thread Sam James
commit: 792b5b6468bf65d2ca4a306d09f2268f8cdbc8f7
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=792b5b64

dev-libs/mpc: Stabilize 1.3.1 x86, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 48290234628a..250cb1028a7f 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



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

2023-01-26 Thread Sam James
commit: 78cc80cc0987c60db5a9d6742b1a1a6e43eb3e0f
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cc80cc

net-analyzer/wireshark: Stabilize 4.0.3 arm, #892151

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

 net-analyzer/wireshark/wireshark-4.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-4.0.3.ebuild 
b/net-analyzer/wireshark/wireshark-4.0.3.ebuild
index f1193e6c3693..d807f0bd1401 100644
--- a/net-analyzer/wireshark/wireshark-4.0.3.ebuild
+++ b/net-analyzer/wireshark/wireshark-4.0.3.ebuild
@@ -19,7 +19,7 @@ else
S="${WORKDIR}/${P/_/}"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv 
~x86"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv 
~x86"
fi
 fi
 



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

2023-01-26 Thread Sam James
commit: 72dba0d308c44f419ceeae50e441555d41061213
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72dba0d3

dev-libs/gmp: Stabilize 6.2.1-r5 arm64, #892157

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

 dev-libs/gmp/gmp-6.2.1-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r5.ebuild b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
index 9b476e64b0cb..b7397f83874f 100644
--- a/dev-libs/gmp/gmp-6.2.1-r5.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
@@ -27,7 +27,7 @@ S="${WORKDIR}"/${MY_P%a}
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="+asm doc +cpudetection +cxx pic static-libs"
 REQUIRED_USE="cpudetection? ( asm )"
 RESTRICT="!cpudetection? ( bindist )"



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

2023-01-26 Thread Sam James
commit: 8e65cf46b095cf8b3b015df9be99d47b963f0a99
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e65cf46

dev-libs/mpc: Stabilize 1.3.1 amd64, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 68ec04e9cafe..8b453ef6814f 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: 7de5fa3981505b8e458e333a5d26a437f02139c2
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:20 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7de5fa39

app-shells/dash: Stabilize 0.5.12 ppc64, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index f43486ec81ea..b2a8b7ddec38 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2023-01-26 Thread Sam James
commit: 5d1e75b4126ff6760ce5d2707591cd4ea7505edb
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:26:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:26:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d1e75b4

sys-devel/binutils: filter -mindirect-branch w/ CET

Incompatible with CET.

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

 sys-devel/binutils/binutils-2.40.ebuild | 2 +-
 sys-devel/binutils/binutils-.ebuild | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-devel/binutils/binutils-2.40.ebuild 
b/sys-devel/binutils/binutils-2.40.ebuild
index 95fe27899736..0d5192d3560a 100644
--- a/sys-devel/binutils/binutils-2.40.ebuild
+++ b/sys-devel/binutils/binutils-2.40.ebuild
@@ -171,7 +171,7 @@ src_configure() {
 
# Keep things sane
strip-flags
-
+   use cet && filter-flags -mindirect-branch -mindirect-branch=*
use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152
 
local x

diff --git a/sys-devel/binutils/binutils-.ebuild 
b/sys-devel/binutils/binutils-.ebuild
index eae71c276ce7..c8e0d5f94944 100644
--- a/sys-devel/binutils/binutils-.ebuild
+++ b/sys-devel/binutils/binutils-.ebuild
@@ -171,6 +171,8 @@ src_configure() {
 
# Keep things sane
strip-flags
+   use cet && filter-flags -mindirect-branch -mindirect-branch=*
+   use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152
 
# ideally we want !tc-ld-is-bfd for best future-proofing, but it needs
# https://github.com/gentoo/gentoo/pull/28355



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

2023-01-26 Thread Sam James
commit: 825fa99418a38c28caf8d7e886461ed2afaf8835
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=825fa994

dev-libs/mimalloc: Stabilize 2.0.7 amd64, #892141

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

 dev-libs/mimalloc/mimalloc-2.0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/mimalloc/mimalloc-2.0.7.ebuild 
b/dev-libs/mimalloc/mimalloc-2.0.7.ebuild
index 313ecbb034c5..8f67eb2dad98 100644
--- a/dev-libs/mimalloc/mimalloc-2.0.7.ebuild
+++ b/dev-libs/mimalloc/mimalloc-2.0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/microsoft/mimalloc/archive/refs/tags/v${PV}.tar.gz -
 
 LICENSE="MIT"
 SLOT="0/2"
-KEYWORDS="~amd64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~loong ~riscv ~x86"
 IUSE="hardened test"
 RESTRICT="!test? ( test )"
 



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

2023-01-26 Thread Sam James
commit: ec31264de0c68a2edd37a0961f51bf14ad932dcb
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:27:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:27:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec31264d

dev-libs/gmp: Stabilize 6.2.1-r5 sparc, #892157

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

 dev-libs/gmp/gmp-6.2.1-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r5.ebuild b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
index b7397f83874f..c26bb0b6b9c7 100644
--- a/dev-libs/gmp/gmp-6.2.1-r5.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
@@ -27,7 +27,7 @@ S="${WORKDIR}"/${MY_P%a}
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="+asm doc +cpudetection +cxx pic static-libs"
 REQUIRED_USE="cpudetection? ( asm )"
 RESTRICT="!cpudetection? ( bindist )"



[gentoo-commits] repo/gentoo:master commit in: net-irc/ergo/

2023-01-26 Thread Sam James
commit: 66a048cf8882f581c5e6028b23a529ef68d34048
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:24:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:24:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a048cf

net-irc/ergo: Stabilize 2.11.1 amd64, #892155

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

 net-irc/ergo/ergo-2.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/ergo/ergo-2.11.1.ebuild b/net-irc/ergo/ergo-2.11.1.ebuild
index 39327ace6602..4fcae2f0e0fb 100644
--- a/net-irc/ergo/ergo-2.11.1.ebuild
+++ b/net-irc/ergo/ergo-2.11.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${P/_/-}
 LICENSE="Apache-2.0 BSD-2 BSD ISC MIT MPL-2.0"
 SLOT="0"
 if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~amd64 ~arm ~arm64"
+   KEYWORDS="amd64 ~arm ~arm64"
 fi
 
 # We may even want to package irctest in future?



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

2023-01-26 Thread Sam James
commit: 76f81e2c02f83ba90b64d5405f122d5733bb4ee8
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:23:06 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:23:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f81e2c

app-misc/pax-utils: drop 1.3.6-r1

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

 app-misc/pax-utils/Manifest  |  1 -
 app-misc/pax-utils/pax-utils-1.3.6-r1.ebuild | 77 
 2 files changed, 78 deletions(-)

diff --git a/app-misc/pax-utils/Manifest b/app-misc/pax-utils/Manifest
index ff098ec48bd3..40dd6f42a796 100644
--- a/app-misc/pax-utils/Manifest
+++ b/app-misc/pax-utils/Manifest
@@ -1,3 +1,2 @@
 DIST pax-utils-1.3.5.tar.xz 119764 BLAKE2B 
13bd4dbdadefb382133bf42a2b1e740e84ac11661595b082346c80ff05fc7423f5d75cc01ff8a651d921310ae66c2b39a862d0b9db5d7f18e11d393360627fcf
 SHA512 
f2b1753e15907461cc395abffe033d7f7ab8eb15e296b874e2c9d00507458672347b32d7f2f05d3a8625fc3afbdbf0721543f84e062afce7181a726d967e4836
-DIST pax-utils-1.3.6.tar.xz 113816 BLAKE2B 
de33820acc5cbbace2f7e3f831dc1c4d2ead58e1b0418c96ef42694d7f0cc1d49a37764d6f8b60a00aaa25fd3d40ba64fb4cf1798e07b917936704738e6f1042
 SHA512 
94d6bdcac0109cc7218fc523594100b4bb5877e0709f5443903ae8aca96e8f3f45cf47b28b57ac146caf6713ad7895a6f67adf4364d9a14986c8b7e0399f3865
 DIST pax-utils-1.3.7.tar.xz 113740 BLAKE2B 
d801df9c426f318c871655f238fe27b53e656c2789ef8508019997c98bbc540987b611642d87e76ae9f76a95f6cce1acd0b10e3491a146d1e3b3f727a6f96bdc
 SHA512 
f1b87a564573da838a02c4cc10e0d5f9754c3b004ecb172a6290b48a8179b30695ae556942457dfac3caf07b91dd56eb1d801475c35e9708e4d671aa507f9576

diff --git a/app-misc/pax-utils/pax-utils-1.3.6-r1.ebuild 
b/app-misc/pax-utils/pax-utils-1.3.6-r1.ebuild
deleted file mode 100644
index ed80c34efe39..
--- a/app-misc/pax-utils/pax-utils-1.3.6-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Note: if bumping pax-utils because of syscall changes in glibc, please
-# revbump glibc and update the dependency in its ebuild for the affected
-# versions.
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit meson python-single-r1
-
-DESCRIPTION="ELF utils that can check files for security relevant properties"
-HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities;
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pax-utils.git;
-   inherit git-r3
-else
-   SRC_URI="
-   
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz
-   https://dev.gentoo.org/~vapier/dist/${P}.tar.xz
-   "
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="caps +man python seccomp test"
-REQUIRED_USE="
-   python? ( ${PYTHON_REQUIRED_USE} )
-   test? ( python )
-"
-RESTRICT="!test? ( test )"
-
-MY_PYTHON_DEPS="
-   ${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   dev-python/pyelftools[${PYTHON_USEDEP}]
-   ')
-"
-RDEPEND="
-   caps? ( >=sys-libs/libcap-2.24 )
-   python? ( ${MY_PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   caps? ( virtual/pkgconfig )
-   man? ( app-text/xmlto )
-   python? ( ${MY_PYTHON_DEPS} )
-"
-
-pkg_setup() {
-   if use test || use python; then
-   python-single-r1_pkg_setup
-   fi
-}
-
-src_configure() {
-   local emesonargs=(
-   "-Dlddtree_implementation=$(usex python python sh)"
-   $(meson_feature caps use_libcap)
-   $(meson_feature man build_manpages)
-   $(meson_use seccomp use_seccomp)
-   $(meson_use test tests)
-
-   # fuzzing is currently broken
-   -Duse_fuzzing=false
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-
-   use python && python_fix_shebang "${ED}"/usr/bin/lddtree
-}



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

2023-01-26 Thread Sam James
commit: 89ccaddc97d7d746a0eafbf61a34dfdd1c60677c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:23:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:23:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89ccaddc

dev-libs/mpc: Stabilize 1.3.1 ppc64, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 59e762b3d634..92789271d96c 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



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

2023-01-26 Thread Sam James
commit: 1c307c70ed8229b833d615bafd4aac59ab0e5343
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:23:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:23:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c307c70

dev-libs/mpc: Stabilize 1.3.1 ppc, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index 92789271d96c..68ec04e9cafe 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



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

2023-01-26 Thread Sam James
commit: 051062996bfa7779e850ec53a1b8ab16b3787389
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:23:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:23:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05106299

dev-libs/gmp: Stabilize 6.2.1-r5 x86, #892157

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

 dev-libs/gmp/gmp-6.2.1-r5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/gmp/gmp-6.2.1-r5.ebuild b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
index 566858f65c45..9b476e64b0cb 100644
--- a/dev-libs/gmp/gmp-6.2.1-r5.ebuild
+++ b/dev-libs/gmp/gmp-6.2.1-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -27,7 +27,7 @@ S="${WORKDIR}"/${MY_P%a}
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="+asm doc +cpudetection +cxx pic static-libs"
 REQUIRED_USE="cpudetection? ( asm )"
 RESTRICT="!cpudetection? ( bindist )"



[gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/

2023-01-26 Thread Sam James
commit: 56d5417dfe5de34c49f39a985d06631363ee8d29
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:23:29 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:23:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d5417d

app-forensics/aflplusplus: Stabilize 4.04c-r1 amd64, #892139

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

 app-forensics/aflplusplus/aflplusplus-4.04c-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-forensics/aflplusplus/aflplusplus-4.04c-r1.ebuild 
b/app-forensics/aflplusplus/aflplusplus-4.04c-r1.ebuild
index df8f96ad972f..fc0847fce0e0 100644
--- a/app-forensics/aflplusplus/aflplusplus-4.04c-r1.ebuild
+++ b/app-forensics/aflplusplus/aflplusplus-4.04c-r1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}"/AFLplusplus-${PV}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2023-01-26 Thread Sam James
commit: 2181f01861f5dfbfeeeb188309c75d4dbfb2809b
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:22:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:22:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2181f018

net-misc/iputils: Stabilize 20221126 arm, #892175

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

 net-misc/iputils/iputils-20221126.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/iputils/iputils-20221126.ebuild 
b/net-misc/iputils/iputils-20221126.ebuild
index a23c56b4174c..f6a705e611ab 100644
--- a/net-misc/iputils/iputils-20221126.ebuild
+++ b/net-misc/iputils/iputils-20221126.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # For released versions, we precompile the man/html pages and store
@@ -22,7 +22,7 @@ else
https://github.com/iputils/iputils/archive/${PV}.tar.gz -> 
${P}.tar.gz

https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-docs.tar.xz
"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="Network monitoring tools including ping and ping6"



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

2023-01-26 Thread Sam James
commit: d509da305aca7fd5b680c5e2ad7b33acbaf0
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:22:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:22:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d509da30

net-misc/pps-tools: Stabilize 1.0.3 arm, #892185

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

 net-misc/pps-tools/pps-tools-1.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/pps-tools/pps-tools-1.0.3.ebuild 
b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
index 24021efe31a8..2f8dc1598097 100644
--- a/net-misc/pps-tools/pps-tools-1.0.3.ebuild
+++ b/net-misc/pps-tools/pps-tools-1.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/redlab-i/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~ppc ~ppc64 ~riscv 
~sparc ~x86"
 
 src_configure() {
tc-export CC



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2023-01-26 Thread Sam James
commit: 6ce6c817d5a3bd76b2aca00ea9009ea46f2a16f2
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:22:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:22:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce6c817

app-shells/dash: Stabilize 0.5.12 ppc, #892169

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

 app-shells/dash/dash-0.5.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/dash/dash-0.5.12.ebuild 
b/app-shells/dash/dash-0.5.12.ebuild
index aff6edbe6cec..f43486ec81ea 100644
--- a/app-shells/dash/dash-0.5.12.ebuild
+++ b/app-shells/dash/dash-0.5.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="libedit static"
 
 BDEPEND="virtual/pkgconfig"



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

2023-01-26 Thread Sam James
commit: 50a6db1e9ebe35ded8c8a472154859bbdabc8100
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:22:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:22:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a6db1e

dev-util/git-delta: Stabilize 0.15.1 amd64, #892143

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

 dev-util/git-delta/git-delta-0.15.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/git-delta/git-delta-0.15.1.ebuild 
b/dev-util/git-delta/git-delta-0.15.1.ebuild
index 4cd6a988d833..fcb5244b7a6b 100644
--- a/dev-util/git-delta/git-delta-0.15.1.ebuild
+++ b/dev-util/git-delta/git-delta-0.15.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -190,7 +190,7 @@ LICENSE="MIT"
 # Dependent crate licenses
 LICENSE+=" Apache-2.0 CC0-1.0 LGPL-3+ MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv"
 
 BDEPEND="virtual/pkgconfig"
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: 209f262e5bc4dd347303854dc3fdc832e078b489
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:21:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:21:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=209f262e

app-portage/elt-patches: Stabilize 20221210 arm64, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index 9f065a53acc1..b492a14164a8 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: 7858601dcec46bc7f2128f8a3ccc75e29791b086
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:21:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:21:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7858601d

app-portage/elt-patches: Stabilize 20221210 ppc64, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index 15bab2db652f..1b0a78ca103e 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: 492604b1a58d3c3faf5af14ff703d114c79de9a3
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:21:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:21:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=492604b1

app-portage/elt-patches: Stabilize 20221210 arm, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index 1b0a78ca103e..9f065a53acc1 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: media-libs/libpulse/

2023-01-26 Thread Sam James
commit: 95123566c625c94c0e7b24437c90221d1dc26b3c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:21:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:21:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95123566

media-libs/libpulse: Stabilize 16.1-r2 x86, #892147

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

 media-libs/libpulse/libpulse-16.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libpulse/libpulse-16.1-r2.ebuild 
b/media-libs/libpulse/libpulse-16.1-r2.ebuild
index 5ee6d6fdcbad..dd44a1b76d8a 100644
--- a/media-libs/libpulse/libpulse-16.1-r2.ebuild
+++ b/media-libs/libpulse/libpulse-16.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -16,7 +16,7 @@ if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/pulseaudio/pulseaudio;
 else

SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 S="${WORKDIR}/${MY_P}"



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

2023-01-26 Thread Sam James
commit: 2a8e5883179fcaa610215b35efd822dd14cc6b0c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:21:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:21:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a8e5883

dev-libs/mpc: Stabilize 1.3.1 arm, #892161

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

 dev-libs/mpc/mpc-1.3.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/mpc/mpc-1.3.1.ebuild b/dev-libs/mpc/mpc-1.3.1.ebuild
index f9590eb62d78..59e762b3d634 100644
--- a/dev-libs/mpc/mpc-1.3.1.ebuild
+++ b/dev-libs/mpc/mpc-1.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -23,7 +23,7 @@ SLOT="0/3" # libmpc.so.3
 IUSE="static-libs"
 # 1.3.1_rc1 is identical to 1.3.0-r1 so just keyword it and later RCs
 # contain further build fixes for consumers.
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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"
 
 DEPEND="
>=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2023-01-26 Thread Sam James
commit: 3627b5d1477cf2dd37920390c20fe8bc3e9eaafd
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:20:29 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:20:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3627b5d1

app-portage/elt-patches: Stabilize 20221210 x86, #892171

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

 app-portage/elt-patches/elt-patches-20221210.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/elt-patches/elt-patches-20221210.ebuild 
b/app-portage/elt-patches/elt-patches-20221210.ebuild
index e9ea9fdac84e..15bab2db652f 100644
--- a/app-portage/elt-patches/elt-patches-20221210.ebuild
+++ b/app-portage/elt-patches/elt-patches-20221210.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~arm64-linux ~ppc64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="sys-apps/gentoo-functions"
 BDEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/

2023-01-26 Thread Joonas Niilola
commit: a432830ba017e07fb40c03cf209579be9f0b59dc
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Jan 27 06:17:10 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jan 27 06:17:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a432830b

www-apps/gitea: Stabilize 1.18.3 amd64, #892137

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

 www-apps/gitea/gitea-1.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/gitea/gitea-1.18.3.ebuild 
b/www-apps/gitea/gitea-1.18.3.ebuild
index 14e3dc8458e3..c317c8a02e52 100644
--- a/www-apps/gitea/gitea-1.18.3.ebuild
+++ b/www-apps/gitea/gitea-1.18.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/go-gitea/gitea.git;
 else

SRC_URI="https://github.com/go-gitea/gitea/releases/download/v${PV}/gitea-src-${PV}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
 fi
 
 S="${WORKDIR}/${PN}-src-${PV}"



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

2023-01-26 Thread Sam James
commit: 608ceb5ade7015a520a46297bfaf5e1257af7787
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:08:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:08:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=608ceb5a

media-video/pipewire: add ref re lc3

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

 media-video/pipewire/pipewire-0.3.65-r1.ebuild | 1 +
 media-video/pipewire/pipewire-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/media-video/pipewire/pipewire-0.3.65-r1.ebuild 
b/media-video/pipewire/pipewire-0.3.65-r1.ebuild
index 98b07dfac614..a97ab7ef8c55 100644
--- a/media-video/pipewire/pipewire-0.3.65-r1.ebuild
+++ b/media-video/pipewire/pipewire-0.3.65-r1.ebuild
@@ -235,6 +235,7 @@ multilib_src_configure() {
$(meson_native_use_feature bluetooth libusb) # At least for now 
only used by bluez5 native (quirk detection of adapters)
$(meson_native_use_feature echo-cancel echo-cancel-webrtc) 
#807889
# Not yet packaged.
+   # http://www.bluez.org/le-audio-support-in-pipewire/
-Dbluez5-codec-lc3=disabled
-Dbluez5-codec-lc3plus=disabled
-Dcontrol=enabled # Matches upstream

diff --git a/media-video/pipewire/pipewire-.ebuild 
b/media-video/pipewire/pipewire-.ebuild
index 98b07dfac614..a97ab7ef8c55 100644
--- a/media-video/pipewire/pipewire-.ebuild
+++ b/media-video/pipewire/pipewire-.ebuild
@@ -235,6 +235,7 @@ multilib_src_configure() {
$(meson_native_use_feature bluetooth libusb) # At least for now 
only used by bluez5 native (quirk detection of adapters)
$(meson_native_use_feature echo-cancel echo-cancel-webrtc) 
#807889
# Not yet packaged.
+   # http://www.bluez.org/le-audio-support-in-pipewire/
-Dbluez5-codec-lc3=disabled
-Dbluez5-codec-lc3plus=disabled
-Dcontrol=enabled # Matches upstream



[gentoo-commits] repo/gentoo:master commit in: media-video/pipewire/, media-video/pipewire/files/0.3.65/

2023-01-26 Thread Sam James
commit: cdcf177f1d83ef1515b98dc0bbb29b6f01bf993c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 06:05:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 06:07:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdcf177f

media-video/pipewire: add module-combine-stream patch

I'd meant to include this originally but got distracted.

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

 ...modules-also-install-module-combine-stream.patch | 21 +
 ...wire-0.3.65.ebuild => pipewire-0.3.65-r1.ebuild} |  0
 2 files changed, 21 insertions(+)

diff --git 
a/media-video/pipewire/files/0.3.65/0001-modules-also-install-module-combine-stream.patch
 
b/media-video/pipewire/files/0.3.65/0001-modules-also-install-module-combine-stream.patch
new file mode 100644
index ..6e7dc42c2704
--- /dev/null
+++ 
b/media-video/pipewire/files/0.3.65/0001-modules-also-install-module-combine-stream.patch
@@ -0,0 +1,21 @@
+https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/fba7083f8ceb210c7c20aceafeb5c9a8767cf705
+
+From fba7083f8ceb210c7c20aceafeb5c9a8767cf705 Mon Sep 17 00:00:00 2001
+From: Wim Taymans 
+Date: Thu, 26 Jan 2023 11:57:45 +0100
+Subject: [PATCH] modules: also install module-combine-stream
+
+--- a/src/modules/meson.build
 b/src/modules/meson.build
+@@ -139,7 +139,7 @@ pipewire_module_echo_cancel_sources = [
+ pipewire_module_combine_stream = 
shared_library('pipewire-module-combine-stream',
+   [ 'module-combine-stream.c' ],
+   include_directories : [configinc],
+-  install : false,
++  install : true,
+   install_dir : modules_install_dir,
+   install_rpath: modules_install_dir,
+   dependencies : [spa_dep, dl_lib, pipewire_dep],
+-- 
+2.39.1
+

diff --git a/media-video/pipewire/pipewire-0.3.65.ebuild 
b/media-video/pipewire/pipewire-0.3.65-r1.ebuild
similarity index 100%
rename from media-video/pipewire/pipewire-0.3.65.ebuild
rename to media-video/pipewire/pipewire-0.3.65-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/rt-sources/

2023-01-26 Thread Alice Ferrazzi
commit: 75b23368adae80ae7cf0dc2ba5f6162d8bf31095
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Fri Jan 27 06:00:07 2023 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Fri Jan 27 06:00:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b23368

sys-kernel/rt-sources: add 5.10.162_p79, drop 5.10.162_p78

Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest  | 2 +-
 .../{rt-sources-5.10.162_p78.ebuild => rt-sources-5.10.162_p79.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 61a0f5dfa94f..7d8fc383597f 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -17,7 +17,7 @@ DIST patch-4.19.269-rt119.patch.xz 168232 BLAKE2B 
76917393fe1632e43fd2b0930c9355
 DIST patch-4.19.269.xz 4936456 BLAKE2B 
1e342716abf01afdeb7180c32f7160651919b0d3639852d9fc840802bafe4247cddabf4fb6668985b49cc374de7901c43313b11f6930ea5aa89475d6650ee66f
 SHA512 
820e20a6973573a8320acb0d7692667595a8d147b231f3abe362435b7b272bd769680d073d8c22e8766806eb3097305dc479d02287e07b94b3ed0634e5d2164e
 DIST patch-4.9.327-rt197.patch.xz 169900 BLAKE2B 
432b68f260db4970c3bd844a4d1a8709ceaaee86df6a77bd4be6260f53b1491f900cb63fd59efbcd55161e6c5629274fd555a05d97baef15bd68103194b2c6c1
 SHA512 
acfbe50962fb2fe6b215be10f076427161950098f33278bf5a51c3a28dd70203923e92b2a43b635fb2fe4fb791f4fd532eb4db378b094baa8abaa9fbfeaed822
 DIST patch-4.9.327.xz 4449004 BLAKE2B 
b48aa23af600cafe5117854b76105c9c65adf9f2f026927367781cd360c61c551b174d2ea73eb02543e626408b27bf3bb8cfed62d9c36e9bac6d22c7e1099a48
 SHA512 
d6a5421cfbd70ff20664cbf05f9c955f03b55c3e22306f7adfd87ed760794817fd7d2211e5d92b169df64d8578717a9250c7ea6ca312bf10287a7283bf66d0e6
-DIST patch-5.10.162-rt78.patch.xz 170360 BLAKE2B 
339461f3dd46bebacf5ab57b84a78294a53dff90fde037d3a4001c1caa87bf00ada7d43a5d6dce135c3e9102bdfc89bbd8179c1ce8be9f1a21b993bae0e88703
 SHA512 
388594b6c5d4fd7102273dcdf0a28898683a84470ad5ed8285f64836382cd221dfce6633708aa80c07cf7740edd4994d06db5a3f04007ee6a78c67775ab3befb
+DIST patch-5.10.162-rt79.patch.xz 170456 BLAKE2B 
89614278435c1875cf5a8c51b0cc103616d158f91c8dd16aa56815013da843c6727fec8b7ba5b4bb2ee1872731d55df14ca867cdf262f68fbd2a816573c5e827
 SHA512 
7fe258948fbe2a7d7b0031f983369280854cc4b29fce2b9fa22d82a0718c6ff59d69144e603ccfe4c84de011430c641ccfad1422fcd6ab22326d8586c844f417
 DIST patch-5.10.162.xz 4068192 BLAKE2B 
24a208a7b068585d8950f3e3d00b5f1ea39963d7df754e815431e5f78b0c6520ba15084b0f4c51f5e3f6c2657f649edfcd7f5f8e9703fd13603572f04ba9
 SHA512 
a5424e791fd772ea03975eeacecd6a7d12a7fbbaf7031e25ea6d3f9272f56d6c2f665e85f1df2c0219e424c8cb02463207235c63e902f77ffa5f8dcaf08daa1e
 DIST patch-5.15.86-rt56.patch.xz 77112 BLAKE2B 
0a92210143f617b78f8fc6680431b544d2436c255e7caa5db850e5981c8b412ab7f93b53904c418267451b0899821de4b36debb23f4c14185c8b672fec476a0c
 SHA512 
073d035948e3966a7f1d2759e1e51ce981cf247cedba942a580e5fb95082e928423284046c2dbd13aad6f79b2b8de4c7b20aa2ca880142f8b376aa956fb2ec0f
 DIST patch-5.15.86.xz 3367720 BLAKE2B 
669d633a4540188761e991fa680236853ac01ebece18868b4dfc5607ad281c9ecfa9d9cad3ffcc156ae858ae1961965ab4ec0c799db873a8a356b9d183ef6e9d
 SHA512 
c1552ed1c10a44cbfd6e6d995f05adbaa62554460e4f8bae124eaf30efd49972bc1f5ece5c6bcc20c4f21fd1ff05a3d7b662b3d98cd8e2f3a3a7e186f3aba53b

diff --git a/sys-kernel/rt-sources/rt-sources-5.10.162_p78.ebuild 
b/sys-kernel/rt-sources/rt-sources-5.10.162_p79.ebuild
similarity index 100%
rename from sys-kernel/rt-sources/rt-sources-5.10.162_p78.ebuild
rename to sys-kernel/rt-sources/rt-sources-5.10.162_p79.ebuild



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

2023-01-26 Thread Sam James
commit: 2be3dd5e5c0da26dea1903e0c2379ad966f6f8b0
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:46:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:47:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be3dd5e

app-text/libpaper: add 2.0.5

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

 app-text/libpaper/Manifest  |  1 +
 app-text/libpaper/libpaper-2.0.5.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/app-text/libpaper/Manifest b/app-text/libpaper/Manifest
index fd67632fada4..c6997cfc4d65 100644
--- a/app-text/libpaper/Manifest
+++ b/app-text/libpaper/Manifest
@@ -1,3 +1,4 @@
 DIST libpaper-2.0.3.tar.gz 1286822 BLAKE2B 
c3ac1628cb44155326626ddd5b7858a8192a4d23e888b152045001f3b8395ca46e0c82000838df13dd391dc187e10f82f843f75497dfb4c13e445f3587dea422
 SHA512 
c2af8f98a02b772ef3fb86b4f2bc50277f9fb720a070adc7a90da65881a5fc340b0841b198c50066001f4572123435305e0db4404365f9b9362d08280b7f6dd9
 DIST libpaper-2.0.4.tar.gz 1286975 BLAKE2B 
2751422ca3176d1f47d98c74d948d986e6dcff15acbac126535f526312900650e25fa0a4d68ceebc5d718f5135be22a9f9407d690dc5d5e22eab9dc55b040fc8
 SHA512 
d603a807c8fdc57b704cdfdc90bedf05c54c8a7b67e8cf52f26298c22a6cee5291fcadc6e67d28b00cf9d68f4890a394e56c8e91f0b97c8edfac4662fe4dc8f0
+DIST libpaper-2.0.5.tar.gz 1287165 BLAKE2B 
49577f97e29dd64f08aac30dc22a9e738c7efcd41e9a6c91b512216a19489234c78beea5070033ca27e8314b6b78dee5e5999132e559a69b8d4f874263ecba07
 SHA512 
ce8160d84e61a80ca998f78272e21ced9e3b061396d38c6d75861294b5451337a5abeb36bc5bc91792f7c484d771c601170aa19311d71be1b6db7789b54218df
 DIST libpaper_1.1.28.tar.gz 42356 BLAKE2B 
48c4a28c6ff01bd91e257b6b306e787e5c6112052cff09bdb501d1cc4ddd10964c3588942098a6092d5a44391dfb22e10d5147d4c5012497f473473129ff7422
 SHA512 
3bf6ebb0af89931d2f72ea4a09a7fa958b2facda5f238983ec7bac39652e08614b33f0de3af74a03457b2a4203eee4950bf18a4b726e79aa64093ace6a1fb0bc

diff --git a/app-text/libpaper/libpaper-2.0.5.ebuild 
b/app-text/libpaper/libpaper-2.0.5.ebuild
new file mode 100644
index ..544d83470fe7
--- /dev/null
+++ b/app-text/libpaper/libpaper-2.0.5.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Library for handling paper characteristics"
+HOMEPAGE="https://github.com/rrthomas/libpaper;
+SRC_URI="https://github.com/rrthomas/libpaper/releases/download/v${PV}/${P}.tar.gz;
+
+# See README.
+# paperspecs is public-domain
+LICENSE="LGPL-2.1+ GPL-3+ public-domain"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
+
+BDEPEND="sys-apps/help2man"
+
+# False positive (runs within a conditional)
+QA_AM_MAINTAINER_MODE=".*help2man.*"
+
+src_configure() {
+   econf --enable-relocatable
+}
+
+src_install() {
+   default
+
+   find "${ED}" -type f -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/

2023-01-26 Thread John Helmert III
commit: fffbc707da6152d4a2949246c6594262f84431f0
Author: Tomáš Mózes  gmail  com>
AuthorDate: Wed Jan 25 14:14:00 2023 +
Commit: John Helmert III  gentoo  org>
CommitDate: Fri Jan 27 05:44:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fffbc707

www-apps/gitea: add 1.18.3

Bug: https://bugs.gentoo.org/891983
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29262
Signed-off-by: John Helmert III  gentoo.org>

 www-apps/gitea/Manifest|   1 +
 www-apps/gitea/gitea-1.18.3.ebuild | 125 +
 2 files changed, 126 insertions(+)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index 20a90097fb84..aca60251ce85 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1,2 +1,3 @@
 DIST gitea-1.17.4.tar.gz 52844862 BLAKE2B 
fe5f52be1c9697032fb7b8e84d90be9b540b4cede67ff4dcc3392621eb206efa0f273589e5fcd0f9f7f56de9dbd42804c9117c21ef2538d7aaaf8cbf13b984f4
 SHA512 
1bae6e11d441f4efe0b92882a5c2c1f4ada9015d49e6140bac87be1a103e23fd622543bf2d988fe9e9d57c26545b53c5acca31aac13034e01f41d5731ac02809
 DIST gitea-1.18.0.tar.gz 55508056 BLAKE2B 
bb6a5e98a087bc12e5afafa9c9d95fb381fd96cdd2823e411ab079c3797053c56951bfab1353bcfcee9d58234bb9a63cb029fee03f157b8f00ecc38687f7bb8e
 SHA512 
b205d8d2d957b322e114621ca5c25500d5123d7df874d204e28e3a58c1e101e7849810f380b45957c6f504008d4632b75fc0adbc99ff13e0c8498640da3c42cd
+DIST gitea-1.18.3.tar.gz 55493166 BLAKE2B 
6a0bb385244c212f577b99b54cd621bf4b9b4f7bdd77bf199e2667fcb5b77638136b2c26b0a46d755d5aea359f0eea251762f759b461377d459092c0017ed972
 SHA512 
4dabcafad5f4f9804f369cf248b351db68e80f193a4b2a5901f8c13b7cb6051b6b5ef1f283037376e545c3b76aabe703e947d1780ed4a4e630ec68adffa8afff

diff --git a/www-apps/gitea/gitea-1.18.3.ebuild 
b/www-apps/gitea/gitea-1.18.3.ebuild
new file mode 100644
index ..14e3dc8458e3
--- /dev/null
+++ b/www-apps/gitea/gitea-1.18.3.ebuild
@@ -0,0 +1,125 @@
+# Copyright 2016-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps go-module tmpfiles systemd flag-o-matic
+
+DESCRIPTION="A painless self-hosted Git service"
+HOMEPAGE="https://gitea.io https://github.com/go-gitea/gitea;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/go-gitea/gitea.git;
+else
+   
SRC_URI="https://github.com/go-gitea/gitea/releases/download/v${PV}/gitea-src-${PV}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+fi
+
+S="${WORKDIR}/${PN}-src-${PV}"
+
+LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
+SLOT="0"
+IUSE="+acct pam sqlite pie"
+
+DEPEND="
+   acct? (
+   acct-group/git
+   acct-user/git[gitea] )
+   pam? ( sys-libs/pam )"
+RDEPEND="${DEPEND}
+   dev-vcs/git"
+
+DOCS=(
+   custom/conf/app.example.ini CONTRIBUTING.md README.md
+)
+FILECAPS=(
+   -m 711 cap_net_bind_service+ep usr/bin/gitea
+)
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+
+   local sedcmds=(
+   -e "s#^ROOT =#ROOT = 
${EPREFIX}/var/lib/gitea/gitea-repositories#"
+   -e "s#^ROOT_PATH =#ROOT_PATH = ${EPREFIX}/var/log/gitea#"
+   -e "s#^APP_DATA_PATH = data#APP_DATA_PATH = 
${EPREFIX}/var/lib/gitea/data#"
+   -e "s#^HTTP_ADDR = 0.0.0.0#HTTP_ADDR = 127.0.0.1#"
+   -e "s#^MODE = console#MODE = file#"
+   -e "s#^LEVEL = Trace#LEVEL = Info#"
+   -e "s#^LOG_SQL = true#LOG_SQL = false#"
+   -e "s#^DISABLE_ROUTER_LOG = false#DISABLE_ROUTER_LOG = true#"
+   )
+
+   sed -i "${sedcmds[@]}" custom/conf/app.example.ini || die
+   if use sqlite ; then
+   sed -i -e "s#^DB_TYPE = .*#DB_TYPE = sqlite3#" 
custom/conf/app.example.ini || die
+   fi
+}
+
+src_configure() {
+   # bug 832756 - PIE build issues
+   filter-flags -fPIE
+   filter-ldflags -fPIE -pie
+}
+
+src_compile() {
+   local gitea_tags=(
+   bindata
+   $(usev pam)
+   $(usex sqlite 'sqlite sqlite_unlock_notify' '')
+   )
+   local gitea_settings=(
+   "-X 
code.gitea.io/gitea/modules/setting.CustomConf=${EPREFIX}/etc/gitea/app.ini"
+   "-X 
code.gitea.io/gitea/modules/setting.CustomPath=${EPREFIX}/var/lib/gitea/custom"
+   "-X 
code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea"
+   )
+   local makeenv=(
+   DRONE_TAG="${PV}"
+   LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[*]}"
+   TAGS="${gitea_tags[*]}"
+   )
+
+   GOFLAGS=""
+   if use pie ; then
+   GOFLAGS+="-buildmode=pie"
+   fi
+
+   env "${makeenv[@]}" emake EXTRA_GOFLAGS="${GOFLAGS}" backend
+}
+
+src_install() {
+   dobin gitea
+
+   einstalldocs
+
+   newconfd "${FILESDIR}/gitea.confd-r1" gitea
+   newinitd 

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

2023-01-26 Thread Sam James
commit: 00c0e38af0cff28d88a97262ae545c7cbabaa249
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:42:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:42:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c0e38a

net-fs/samba: add link to upstream commit for musl patch

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

 net-fs/samba/files/samba-4.16.2-fix-musl-without-innetgr.patch | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-fs/samba/files/samba-4.16.2-fix-musl-without-innetgr.patch 
b/net-fs/samba/files/samba-4.16.2-fix-musl-without-innetgr.patch
index c0b1746fc31a..19abe8ffbe33 100644
--- a/net-fs/samba/files/samba-4.16.2-fix-musl-without-innetgr.patch
+++ b/net-fs/samba/files/samba-4.16.2-fix-musl-without-innetgr.patch
@@ -1,3 +1,5 @@
+https://gitlab.com/samba-team/samba/-/commit/fb937ddc838043deb82b6a557dce8f29001d0a19
+
 # Gentoo bug 855047
 --- a/lib/util/access.c
 +++ b/lib/util/access.c



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

2023-01-26 Thread Sam James
commit: 571b578fc333a9bbdd176cc8ae1ee84a9492b196
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:39:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:39:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=571b578f

media-video/pipewire: add 0.3.65

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

 media-video/pipewire/Manifest |  1 +
 .../{pipewire-.ebuild => pipewire-0.3.65.ebuild}  | 19 ---
 media-video/pipewire/pipewire-.ebuild | 19 ---
 3 files changed, 25 insertions(+), 14 deletions(-)

diff --git a/media-video/pipewire/Manifest b/media-video/pipewire/Manifest
index efc0b7003e96..e51e22391355 100644
--- a/media-video/pipewire/Manifest
+++ b/media-video/pipewire/Manifest
@@ -1,2 +1,3 @@
 DIST pipewire-0.3.63.tar.bz2 1485423 BLAKE2B 
8629bce6d11959d4b3930d7db4e0ad201981002d52c6b73b3ee2b0ac141518f553f7b0e47aef4157b3c3ef71c6b544889f60f4be0fadb01b8a35c1d457edb1aa
 SHA512 
0a45e9017bbcd74f21c6a1f388c5b58123deec083bbc9a9e695948ea95e67b6384acfff6e5ab685ea7287b4696e01176e257b73286ecd03c2d2e43d80fd60805
 DIST pipewire-0.3.64.tar.bz2 1490475 BLAKE2B 
9a4d9e23a5d60da7c5788ce5145ce083f13fe771f3f5bcb3dfd1e9560d982f20415f32f756b875081464e1b175ef80af56d7babb3bbbd7a5eaf034c9c43b810a
 SHA512 
4dff77cf1ab9fefffad1b6f7182115dbb5e4f0339f052dcfcc34b62687b461d25a6f891d1ad0246dab5a8cb80ca190d97d358a6494da8c6a8cc64e0b38452093
+DIST pipewire-0.3.65.tar.bz2 1522095 BLAKE2B 
d991820e8780773ccf1cd68baa3156428eb099703b82c3e3ad24a86bc634ad43fb474fe362de5e5704ee8b35832b75995fd56096b6539835e8b1f31710450d08
 SHA512 
0c2402044a04ab6ba724b0808279498e2126dd567920f3241d7d3d5e13ea676e353fc85a73634cf4cae5429454250dfce5cd18ba4a5444a7ed1a5ca2e0ae1eef

diff --git a/media-video/pipewire/pipewire-.ebuild 
b/media-video/pipewire/pipewire-0.3.65.ebuild
similarity index 94%
copy from media-video/pipewire/pipewire-.ebuild
copy to media-video/pipewire/pipewire-0.3.65.ebuild
index ec34788a440c..98b07dfac614 100644
--- a/media-video/pipewire/pipewire-.ebuild
+++ b/media-video/pipewire/pipewire-0.3.65.ebuild
@@ -38,7 +38,7 @@ HOMEPAGE="https://pipewire.org/;
 LICENSE="MIT LGPL-2.1+ GPL-2"
 # ABI was broken in 0.3.42 for 
https://gitlab.freedesktop.org/pipewire/wireplumber/-/issues/49
 SLOT="0/0.4"
-IUSE="bluetooth dbus doc echo-cancel extra flatpak gstreamer gsettings 
jack-client jack-sdk lv2
+IUSE="bluetooth dbus doc echo-cancel extra ffmpeg flatpak gstreamer gsettings 
jack-client jack-sdk lv2
 modemmanager pipewire-alsa readline sound-server ssl system-service systemd 
test v4l X zeroconf"
 
 # Once replacing system JACK libraries is possible, it's likely that
@@ -47,12 +47,14 @@ modemmanager pipewire-alsa readline sound-server ssl 
system-service systemd test
 # JACK's sink - doing so is likely to yield no audio, cause a CPU
 # cycles consuming loop (and may even cause GUI crashes)!
 
-# TODO: There should be "sound-server? ( || ( alsa bluetooth ) )" here, but 
ALSA is always enabled
-# TODO: Pulseaudio alsa plugin performs runtime check that pulseaudio server 
connection will work
-# which provides adequate guarantee that alsa-lib will be able to provide 
audio services.
-# If that works, pulseaudio defaults are loaded into alsa-lib runtime 
replacing default PCM and CTL.
-# When pipewire-alsa will be able to perform similar check, pipewire-alsa can 
be enabled unconditionally.
+# - TODO: There should be "sound-server? ( || ( alsa bluetooth ) )" here, but 
ALSA is always enabled
+# - TODO: Pulseaudio alsa plugin performs runtime check that pulseaudio server 
connection will work
+#   which provides adequate guarantee that alsa-lib will be able to provide 
audio services.
+#   If that works, pulseaudio defaults are loaded into alsa-lib runtime 
replacing default PCM and CTL.
+#   When pipewire-alsa will be able to perform similar check, pipewire-alsa 
can be enabled unconditionally.
+# - ffmpeg is only used for pw-cat. We don't build the spa plugin which 
receives barely any activity.
 REQUIRED_USE="
+   ffmpeg? ( extra )
bluetooth? ( dbus )
jack-sdk? ( !jack-client )
modemmanager? ( bluetooth )
@@ -82,6 +84,7 @@ RDEPEND="
virtual/libintl[${MULTILIB_USEDEP}]
virtual/libudev[${MULTILIB_USEDEP}]
bluetooth? (
+   dev-libs/glib
media-libs/fdk-aac
media-libs/libldac
media-libs/libfreeaptx
@@ -95,6 +98,7 @@ RDEPEND="
extra? (
>=media-libs/libsndfile-1.0.20
)
+   ffmpeg? ( media-video/ffmpeg:= )
flatpak? (
dev-libs/glib
)
@@ -145,7 +149,6 @@ PDEPEND=">=media-video/wireplumber-0.4.8-r3"
 # Present RDEPEND that are currently always disabled due to the PW
 # code using them being required to be disabled by Gentoo guidelines
 # (i.e. developer binaries not meant for users) and unready code
-#  media-video/ffmpeg:=
 #  

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

2023-01-26 Thread Sam James
commit: b446802cc9fe96117cf0541c931c228aacd942bc
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:42:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:42:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b446802c

net-fs/samba: fix musl build for 4.15.x

Closes: https://bugs.gentoo.org/892135
Signed-off-by: Sam James  gentoo.org>

 net-fs/samba/samba-4.15.12-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-fs/samba/samba-4.15.12-r2.ebuild 
b/net-fs/samba/samba-4.15.12-r2.ebuild
index b6f6c92c98e8..eaa3b4805e19 100644
--- a/net-fs/samba/samba-4.15.12-r2.ebuild
+++ b/net-fs/samba/samba-4.15.12-r2.ebuild
@@ -145,6 +145,7 @@ PATCHES=(
"${FILESDIR}/${PN}-4.4.0-pam.patch"
"${FILESDIR}/ldb-2.5.2-skip-wav-tevent-check.patch"
"${FILESDIR}/${PN}-4.15.9-libunwind-automagic.patch"
+   "${FILESDIR}/${PN}-4.16.2-fix-musl-without-innetgr.patch"
"${FILESDIR}/${PN}-4.15.12-configure-clang16.patch"
 )
 



[gentoo-commits] repo/gentoo:master commit in: games-strategy/widelands/, games-strategy/widelands/files/

2023-01-26 Thread Sam James
commit: 3075f396dfd814a3a8b4d2fdba9dd3d88dab1176
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 04:46:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3075f396

games-strategy/widelands: fix build w/ gcc 13

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

 .../widelands/files/widelands-1.1-gcc-13.patch | 124 +
 games-strategy/widelands/widelands-1.1.ebuild  |   4 +
 2 files changed, 128 insertions(+)

diff --git a/games-strategy/widelands/files/widelands-1.1-gcc-13.patch 
b/games-strategy/widelands/files/widelands-1.1-gcc-13.patch
new file mode 100644
index ..c2f2501dff0d
--- /dev/null
+++ b/games-strategy/widelands/files/widelands-1.1-gcc-13.patch
@@ -0,0 +1,124 @@
+https://github.com/widelands/widelands/pull/5765
+
+From 14b9c357073126d11d719fd1a539bb7ef0154791 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Wed, 25 Jan 2023 23:42:42 +0100
+Subject: [PATCH] Fix build with gcc 13 by including 
+
+Like other versions before, gcc 13 moved some includes around and as a
+result  is no longer transitively included. Explicitly include
+it for uint16_t.
+--- a/src/base/md5.h
 b/src/base/md5.h
+@@ -21,6 +21,7 @@
+ #define WL_BASE_MD5_H
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ 
+--- a/src/base/random.h
 b/src/base/random.h
+@@ -20,6 +20,7 @@
+ #define WL_BASE_RANDOM_H
+ 
+ #include 
++#include 
+ #include 
+ 
+ extern const uint32_t rng_sbox[256];
+--- a/src/base/time_string.h
 b/src/base/time_string.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_BASE_TIME_STRING_H
+ #define WL_BASE_TIME_STRING_H
+ 
++#include 
+ #include 
+ 
+ /// Get a string representation conforming to ISO 8601 of the current time (in
+--- a/src/build_info.h
 b/src/build_info.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_BUILD_INFO_H
+ #define WL_BUILD_INFO_H
+ 
++#include 
+ #include 
+ 
+ constexpr uint16_t kWidelandsCopyrightStart = 2002;
+--- a/src/graphic/align.h
 b/src/graphic/align.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_GRAPHIC_ALIGN_H
+ #define WL_GRAPHIC_ALIGN_H
+ 
++#include 
+ #include 
+ 
+ #include "base/rect.h"
+--- a/src/graphic/text/textstream.h
 b/src/graphic/text/textstream.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_GRAPHIC_TEXT_TEXTSTREAM_H
+ #define WL_GRAPHIC_TEXT_TEXTSTREAM_H
+ 
++#include 
+ #include 
+ 
+ namespace RT {
+--- a/src/logic/generic_save_handler.h
 b/src/logic/generic_save_handler.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_LOGIC_GENERIC_SAVE_HANDLER_H
+ #define WL_LOGIC_GENERIC_SAVE_HANDLER_H
+ 
++#include 
+ #include 
+ 
+ #include "io/filesystem/filesystem.h"
+--- a/src/logic/map_revision.h
 b/src/logic/map_revision.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_LOGIC_MAP_REVISION_H
+ #define WL_LOGIC_MAP_REVISION_H
+ 
++#include 
+ #include 
+ 
+ namespace Widelands {
+--- a/src/logic/save_handler.h
 b/src/logic/save_handler.h
+@@ -19,6 +19,8 @@
+ #ifndef WL_LOGIC_SAVE_HANDLER_H
+ #define WL_LOGIC_SAVE_HANDLER_H
+ 
++#include 
++
+ #include "io/filesystem/filesystem.h"
+ 
+ namespace Widelands {
+--- a/src/map_io/map_elemental_packet.h
 b/src/map_io/map_elemental_packet.h
+@@ -19,6 +19,7 @@
+ #ifndef WL_MAP_IO_MAP_ELEMENTAL_PACKET_H
+ #define WL_MAP_IO_MAP_ELEMENTAL_PACKET_H
+ 
++#include 
+ #include 
+ #include 
+ 
+--- a/src/scripting/persistence.h
 b/src/scripting/persistence.h
+@@ -19,6 +19,8 @@
+ #ifndef WL_SCRIPTING_PERSISTENCE_H
+ #define WL_SCRIPTING_PERSISTENCE_H
+ 
++#include 
++
+ #include "scripting/lua.h"
+ 
+ class FileRead;
+-- 
+2.39.1

diff --git a/games-strategy/widelands/widelands-1.1.ebuild 
b/games-strategy/widelands/widelands-1.1.ebuild
index 694f1e6b01d3..4d2e256576f8 100644
--- a/games-strategy/widelands/widelands-1.1.ebuild
+++ b/games-strategy/widelands/widelands-1.1.ebuild
@@ -40,6 +40,10 @@ BDEPEND="
${PYTHON_DEPS}
sys-devel/gettext"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1-gcc-13.patch
+)
+
 src_configure() {
CMAKE_BUILD_TYPE=Release # disables -Werror
 



[gentoo-commits] repo/gentoo:master commit in: games-strategy/wesnoth/, games-strategy/wesnoth/files/

2023-01-26 Thread Sam James
commit: ad08b108753d55f6075c0a5cf6bd506f7b34ab4c
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 04:55:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad08b108

games-strategy/wesnoth: add 1.16.8

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

 games-strategy/wesnoth/Manifest|   1 +
 .../wesnoth/files/wesnoth-1.16.8-gcc-13.patch  |  32 +++
 games-strategy/wesnoth/wesnoth-1.16.8.ebuild   | 106 +
 3 files changed, 139 insertions(+)

diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest
index a621190038af..9cf9ac6ad743 100644
--- a/games-strategy/wesnoth/Manifest
+++ b/games-strategy/wesnoth/Manifest
@@ -1,2 +1,3 @@
 DIST wesnoth-1.16.6.tar.gz 518250360 BLAKE2B 
3fc5f5827beacc309a42d1d135eadefbace57866397eed4e3c5618ba6372ae31fc0350b2180c1323872ae59789ca67cd1b4a973c2257c7fac59508af93e0b758
 SHA512 
fcf9e50ce065f7c8d2b940eec88de27f18c3adbb9c7ae238bf6821eef233a45c2bdc7a58d5cd2abc4f37bcab6e503aa72d46f623c882c711d9f06b2826340bf5
+DIST wesnoth-1.16.8.tar.gz 518468407 BLAKE2B 
9c224757e0d1727acc66a5421266fa6e050bb3727040b457379dd164097c88850f9b2d8b81422ff277548cb8cd51da70f5da63254c2c4ccedc3a45d1789c6037
 SHA512 
9e41e1c574c9744ba9818298d77df1503d7fc70ee24e4bf9d1f59ef17c2bc123f38f0aa21eddccce88cc28b62f2a2d12133ab25dd111655abf5b620f18457bf7
 DIST wesnoth-1.17.11.tar.bz2 421068195 BLAKE2B 
43106bb72c6b4a39b4995fb9804733e5420b636db08254e75e7698c58740b84a33c387194bf048247bddf1808f73d0d07b3816f18687390760fb5fab7c2d8449
 SHA512 
8208ae1c02d5e6a9fe50a2cf533d3b0b207151e5b877c98b003117641ae3c46ad31dbbe4bc46481f4f30382ae65b0183d7636452de5f6d42c8bd48d040f3dd5a

diff --git a/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch 
b/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch
new file mode 100644
index ..f2d79ba6ad06
--- /dev/null
+++ b/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch
@@ -0,0 +1,32 @@
+https://github.com/wesnoth/wesnoth/commit/5fa07ea15c1736f74d89786d5ae449ed0f91c8a8
+
+From 5fa07ea15c1736f74d89786d5ae449ed0f91c8a8 Mon Sep 17 00:00:00 2001
+From: Martin Liska 
+Date: Mon, 23 May 2022 13:44:39 +0200
+Subject: [PATCH] Fix building with GCC 13.
+
+Fixes the following issue:
+base64.hpp:23:49: error: 'uint8_t' was not declared in this scope
+
+and:
+deprecation.hpp:20:22: error: found ':' in nested-name-specifier, expected '::'
+--- a/src/deprecation.hpp
 b/src/deprecation.hpp
+@@ -14,6 +14,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ 
+ /** See https://wiki.wesnoth.org/CompatibilityStandards for more info. */
+--- a/src/serialization/base64.hpp
 b/src/serialization/base64.hpp
+@@ -15,6 +15,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ #include 
+ 

diff --git a/games-strategy/wesnoth/wesnoth-1.16.8.ebuild 
b/games-strategy/wesnoth/wesnoth-1.16.8.ebuild
new file mode 100644
index ..7a0223c3d681
--- /dev/null
+++ b/games-strategy/wesnoth/wesnoth-1.16.8.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic xdg
+
+DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
+HOMEPAGE="http://www.wesnoth.org
+   https://github.com/wesnoth/wesnoth;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+# uneven minor versions are development versions
+if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+IUSE="dbus dedicated doc nls server"
+
+RDEPEND="
+   acct-group/wesnoth
+   acct-user/wesnoth
+   dev-libs/boost:=[bzip2,context,icu,nls]
+   >=media-libs/libsdl2-2.0.4:0[joystick,video,X]
+   !dedicated? (
+   dev-libs/glib:2
+   dev-libs/openssl:0=
+   >=media-libs/fontconfig-2.4.1
+   >=media-libs/sdl2-image-2.0.0[jpeg,png]
+   >=media-libs/sdl2-mixer-2.0.0[vorbis]
+   media-libs/libvorbis
+   >=x11-libs/pango-1.22.0
+   >=x11-libs/cairo-1.10.0
+   sys-libs/readline:0=
+   dbus? ( sys-apps/dbus )
+   )"
+DEPEND="${RDEPEND}
+   x11-libs/libX11
+"
+BDEPEND="
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.16.8-gcc-13.patch
+)
+
+src_prepare() {
+   cmake_src_prepare
+
+   if ! use doc ; then
+   sed -i \
+   -e '/manual/d' \
+   doc/CMakeLists.txt || die
+   fi
+
+   # respect LINGUAS (bug #483316)
+   if [[ ${LINGUAS+set} ]] ; then
+   local lang langs=()
+   for lang in $(cat po/LINGUAS) ; do
+   has ${lang} ${LINGUAS} && langs+=( ${lang} )
+   done
+   echo "${langs[@]}" > po/LINGUAS || die
+   fi
+}
+

[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/, dev-db/mariadb/files/

2023-01-26 Thread Sam James
commit: eea40d6eca14d060225debe3206edc057b7ff975
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:20:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eea40d6e

dev-db/mariadb: fix build w/ gcc 13

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

 dev-db/mariadb/files/mariadb-10.6.11-gcc-13.patch | 71 +++
 dev-db/mariadb/mariadb-10.6.11.ebuild |  3 +-
 2 files changed, 73 insertions(+), 1 deletion(-)

diff --git a/dev-db/mariadb/files/mariadb-10.6.11-gcc-13.patch 
b/dev-db/mariadb/files/mariadb-10.6.11-gcc-13.patch
new file mode 100644
index ..322e5003a1dc
--- /dev/null
+++ b/dev-db/mariadb/files/mariadb-10.6.11-gcc-13.patch
@@ -0,0 +1,71 @@
+https://github.com/MariaDB/server/pull/2460
+https://github.com/facebook/rocksdb/pull/8
+https://github.com/facebook/rocksdb/commit/bda8d93ba95f34aa91ae8578fe7d3454f3324f6a
+
+From e534c26cb5ce4f62d8f413c91d67ef9e214fd30e Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Tue, 24 Jan 2023 14:07:18 +0100
+Subject: [PATCH] Add include for std::runtime_error
+
+--- a/tpool/aio_liburing.cc
 b/tpool/aio_liburing.cc
+@@ -24,6 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
MA 02111 - 1301 USA*/
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ namespace
+ {
+
+From 7e32e24397cf651412113017f9abd133a9d2a600 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Tue, 24 Jan 2023 16:23:03 +0100
+Subject: [PATCH] Fix build with gcc 13 by including 
+
+Like other versions before, gcc 13 moved some includes around and as a
+result  is no longer transitively included [1]. Explicitly include
+it for uint{32,64}_t.
+
+[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
+--- a/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h
 b/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h
+@@ -5,6 +5,8 @@
+ 
+ #pragma once
+ 
++#include 
++
+ #include "rocksdb/rocksdb_namespace.h"
+ 
+ struct CompactionIterationStats {
+--- a/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h
 b/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h
+@@ -8,6 +8,7 @@
+ #pragma once
+ #ifndef ROCKSDB_LITE
+ 
++#include 
+ #include 
+ #include 
+ #include "rocksdb/status.h"
+--- a/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h
 b/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h
+@@ -5,6 +5,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ #include 
+ 
+--- a/storage/rocksdb/rocksdb/util/string_util.h
 b/storage/rocksdb/rocksdb/util/string_util.h
+@@ -6,6 +6,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/dev-db/mariadb/mariadb-10.6.11.ebuild 
b/dev-db/mariadb/mariadb-10.6.11.ebuild
index 55d260617012..52e66368df00 100644
--- a/dev-db/mariadb/mariadb-10.6.11.ebuild
+++ b/dev-db/mariadb/mariadb-10.6.11.ebuild
@@ -208,7 +208,8 @@ src_unpack() {
 src_prepare() {
eapply "${WORKDIR}"/mariadb-patches
eapply "${FILESDIR}"/${PN}-10.6.11-gssapi.patch
-   eapply "${FILESDIR}"/mariadb-10.6.11-include.patch
+   eapply "${FILESDIR}"/${PN}-10.6.11-include.patch
+   eapply "${FILESDIR}"/${PN}-10.6.11-gcc-13.patch
 
eapply_user
 



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

2023-01-26 Thread Sam James
commit: 587f16ea31f4aa7ff03837df936b1f0fe69690c7
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:07:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=587f16ea

dev-libs/rocksdb: add github upstream metadata

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

 dev-libs/rocksdb/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-libs/rocksdb/metadata.xml b/dev-libs/rocksdb/metadata.xml
index bd6443d4a375..fba961702518 100644
--- a/dev-libs/rocksdb/metadata.xml
+++ b/dev-libs/rocksdb/metadata.xml
@@ -5,4 +5,7 @@
chutz...@gentoo.org
Patrick McLean

+   
+   facebook/rocksdb
+   
 



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/riscv/, profiles/arch/arm64/, games-action/supertuxkart/, ...

2023-01-26 Thread Sam James
commit: dacea07651fb867ea3a0e40d069ddc52cc4a0c34
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 04:39:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacea076

games-action/supertuxkart: add 1.4

Closes: https://bugs.gentoo.org/891117
Signed-off-by: Sam James  gentoo.org>

 games-action/supertuxkart/Manifest |   1 +
 .../files/supertuxkart-1.4-gcc-13.patch| 122 +
 games-action/supertuxkart/metadata.xml |   1 +
 games-action/supertuxkart/supertuxkart-1.4.ebuild  |  83 ++
 profiles/arch/arm64/package.use.mask   |   4 +
 profiles/arch/riscv/package.use.mask   |   6 +-
 6 files changed, 216 insertions(+), 1 deletion(-)

diff --git a/games-action/supertuxkart/Manifest 
b/games-action/supertuxkart/Manifest
index df717f644ffd..f6deb1b652f9 100644
--- a/games-action/supertuxkart/Manifest
+++ b/games-action/supertuxkart/Manifest
@@ -1,2 +1,3 @@
 DIST SuperTuxKart-1.3-src.tar.xz 627753500 BLAKE2B 
3ffc86edf80adb27cd17a6ba796fb14d0660a1c14ff21c7908e5f965609c6f6a6b40270a21690cd1318d1003e07d90b4180c292252b1731d4cd6292fe12e6086
 SHA512 
42664390c844ebca0be9b2f2aeb3c9197c0c79a7c604707b32e81ef41aec10fa36f5950f06e1540ea6f75f6c7f8a8f7f80aeda48de3d101d991420f5b20530ed
+DIST SuperTuxKart-1.4-src.tar.xz 650010456 BLAKE2B 
dc85c77cdf8b8f7377b5771eb3b3edbe20f6949c99f710ca70506c09152e7a846b3d3239f185d23c9fdf0477da417bacc644793b3407aed1e68fc41ced41a71e
 SHA512 
e88f3fb5ccdb38d0ef75e92d73b43c5cc7a1f6c76ac9502033df099a00d6dc3e86b2c5442b806237d2420c44ada7dd23a2c90ecf94785a44d2348c933770a5ab
 DIST supertuxkart.png 4435 BLAKE2B 
b48b95e1cdebe930837cc784c4c5e9a089a69077e2fcfed15fe5e8c4d649a0f8024769b2f2102bbaea3a94eb21f4b58b5d291b97493266c3c5c8d7335cf69a80
 SHA512 
a180332f79220431922fa8b351cb476ebc5d9d1df09f20707eb3bdd7002fd264cb027b8190c73c5221050e6e8601beb6758a5809d05aedfb18f0bdb426f47eda

diff --git a/games-action/supertuxkart/files/supertuxkart-1.4-gcc-13.patch 
b/games-action/supertuxkart/files/supertuxkart-1.4-gcc-13.patch
new file mode 100644
index ..bacd046a4771
--- /dev/null
+++ b/games-action/supertuxkart/files/supertuxkart-1.4-gcc-13.patch
@@ -0,0 +1,122 @@
+https://github.com/supertuxkart/stk-code/commit/0163e3fa88b72634c3ddff5304c9086b649f53b1
+
+From 0163e3fa88b72634c3ddff5304c9086b649f53b1 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Thu, 26 Jan 2023 16:35:54 +0100
+Subject: [PATCH] Add missing includes to fix the build with gcc 13
+
+Like other versions before, gcc 13 moved some includes around and as a
+result  and  are no longer transitively included.
+Explicitly include them for std::runtime_error and snprintf.
+--- a/lib/graphics_engine/include/vk_mem_alloc.h
 b/lib/graphics_engine/include/vk_mem_alloc.h
+@@ -2563,6 +2563,7 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString(
+ #undef VMA_IMPLEMENTATION
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/lib/graphics_engine/src/ge_spm_buffer.cpp
 b/lib/graphics_engine/src/ge_spm_buffer.cpp
+@@ -5,6 +5,7 @@
+ #include "ge_vulkan_features.hpp"
+ 
+ #include 
++#include 
+ 
+ #include "mini_glm.hpp"
+ 
+--- a/lib/graphics_engine/src/ge_vulkan_array_texture.cpp
 b/lib/graphics_engine/src/ge_vulkan_array_texture.cpp
+@@ -12,6 +12,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ namespace GE
+ {
+--- a/lib/graphics_engine/src/ge_vulkan_command_loader.cpp
 b/lib/graphics_engine/src/ge_vulkan_command_loader.cpp
+@@ -8,6 +8,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ 
+ #include "../source/Irrlicht/os.h"
+--- a/lib/graphics_engine/src/ge_vulkan_depth_texture.cpp
 b/lib/graphics_engine/src/ge_vulkan_depth_texture.cpp
+@@ -3,6 +3,8 @@
+ #include "ge_main.hpp"
+ #include "ge_vulkan_driver.hpp"
+ 
++#include 
++
+ namespace GE
+ {
+ GEVulkanDepthTexture::GEVulkanDepthTexture(GEVulkanDriver* vk,
+--- a/lib/graphics_engine/src/ge_vulkan_draw_call.cpp
 b/lib/graphics_engine/src/ge_vulkan_draw_call.cpp
+@@ -25,6 +25,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "../source/Irrlicht/os.h"
+ #include "quaternion.h"
+--- a/lib/graphics_engine/src/ge_vulkan_fbo_texture.cpp
 b/lib/graphics_engine/src/ge_vulkan_fbo_texture.cpp
+@@ -6,6 +6,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ namespace GE
+ {
+--- a/lib/graphics_engine/src/ge_vulkan_mesh_cache.cpp
 b/lib/graphics_engine/src/ge_vulkan_mesh_cache.cpp
+@@ -10,6 +10,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include 
+ 
+ namespace GE
+--- a/lib/graphics_engine/src/ge_vulkan_skybox_renderer.cpp
 b/lib/graphics_engine/src/ge_vulkan_skybox_renderer.cpp
+@@ -11,6 +11,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include 
+ 
+ namespace GE
+--- a/lib/graphics_engine/src/ge_vulkan_texture.cpp
 b/lib/graphics_engine/src/ge_vulkan_texture.cpp
+@@ -21,6 +21,7 @@ extern "C"
+ #include 
+ #include 

[gentoo-commits] repo/gentoo:master commit in: dev-util/android-tools/, dev-util/android-tools/files/

2023-01-26 Thread Sam James
commit: 5216d3cd0bf3a81048897d15ba4c00e0559ccf11
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:23:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5216d3cd

dev-util/android-tools: fix build w/ gcc 13

Closes: https://bugs.gentoo.org/875575
Signed-off-by: Sam James  gentoo.org>

 .../android-tools/android-tools-33.0.3-r1.ebuild   |  3 ++-
 .../files/android-tools-33.0.3-adb-gcc-13.patch| 25 ++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/dev-util/android-tools/android-tools-33.0.3-r1.ebuild 
b/dev-util/android-tools/android-tools-33.0.3-r1.ebuild
index 3b9b45c7c8e0..155cf7f10a4b 100644
--- a/dev-util/android-tools/android-tools-33.0.3-r1.ebuild
+++ b/dev-util/android-tools/android-tools-33.0.3-r1.ebuild
@@ -55,8 +55,9 @@ src_prepare() {
 
cd "${S}/vendor/adb" || die
eapply 
"${FILESDIR}/${P}-adb-0023-Update-usage-of-usbdevfs_urb-to-match-new-kernel-UAP.patch"
+   eapply "${FILESDIR}/${P}-adb-gcc-13.patch"
 
-   cd "${S}"
+   cd "${S}" || die
rm -r patches || die
cmake_src_prepare
 }

diff --git a/dev-util/android-tools/files/android-tools-33.0.3-adb-gcc-13.patch 
b/dev-util/android-tools/files/android-tools-33.0.3-adb-gcc-13.patch
new file mode 100644
index ..4ba2c9a49c31
--- /dev/null
+++ b/dev-util/android-tools/files/android-tools-33.0.3-adb-gcc-13.patch
@@ -0,0 +1,25 @@
+https://bugs.gentoo.org/875575
+https://android-review.googlesource.com/c/platform/packages/modules/adb/+/2399311
+
+From ddffab649b12dce1502d63711836b58d007f6a28 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Mon, 23 Jan 2023 23:09:52 +0100
+Subject: [PATCH] Fix build with gcc 13 by including 
+
+Like other versions before, gcc 13 moved some includes around and as a
+result  is no longer transitively included. Explicitly include
+it for uint{32,64}_t.
+
+Test: local build
+Change-Id: I05a27726b05427c486fd01b013dba4d698abac97
+--- a/file_sync_protocol.h
 b/file_sync_protocol.h
+@@ -16,6 +16,8 @@
+ 
+ #pragma once
+ 
++#include 
++
+ #define MKID(a, b, c, d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
+ 
+ #define ID_LSTAT_V1 MKID('S', 'T', 'A', 'T')



[gentoo-commits] repo/gentoo:master commit in: dev-libs/rocksdb/files/, dev-libs/rocksdb/

2023-01-26 Thread Sam James
commit: f7e3d7d5818dad3db8d12a8a6c70c7f2140c994a
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 05:06:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 05:23:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e3d7d5

dev-libs/rocksdb: add 7.9.2

Closes: https://bugs.gentoo.org/774897
Signed-off-by: Sam James  gentoo.org>

 dev-libs/rocksdb/Manifest |  1 +
 dev-libs/rocksdb/files/rocksdb-7.9.2-gcc-13.patch | 42 +
 dev-libs/rocksdb/rocksdb-7.9.2.ebuild | 55 +++
 3 files changed, 98 insertions(+)

diff --git a/dev-libs/rocksdb/Manifest b/dev-libs/rocksdb/Manifest
index b684fdd63187..90462c51e272 100644
--- a/dev-libs/rocksdb/Manifest
+++ b/dev-libs/rocksdb/Manifest
@@ -1,3 +1,4 @@
 DIST rocksdb-6.14.6.tar.gz 6397194 BLAKE2B 
43ad8e7e9fdf0c6c75ff03370f2107899bbcef9fd34630c85408abcf208a8213f5e24ea50407bd6a719220b6c29b9ba29c121e94a5a2701f637b17ccf50b90a4
 SHA512 
609f407b0b2810954541ad8ebad5c754ebfde5021f24ee4b3f1544a5335252c06cbe2b282562e3d084bb9cbe8de239668fdedb2d2d726056c31cf9463db08fe7
 DIST rocksdb-6.15.5.tar.gz 6501252 BLAKE2B 
f85c6b54043019692a7174e41b69625650d072ee4de1f2850628854af4b5672ff7072ab5c41de84bca9ad0713a1eea7ad7c5cca5ba9b3b96c4bd492a01b5e859
 SHA512 
c0918fd48bc1e57be9e30452c5cd0c2ba627a15012ab6922404d6cddffdf80799e4442b14d03cbe13a9a9acbdf1736c505cc6f5406efefbf68aba71ec05cf5f0
 DIST rocksdb-6.17.3.tar.gz 6651009 BLAKE2B 
c032bdf61d93a35e84c65146ad6d1f8639e9f36a323c142fe4131b501051bfb9c4c4edb13b69c86e35740117029996bb4c94887ea690d1957926bdfd347c744a
 SHA512 
085adab94b7eb22859b4119b0356f148231800413571e932a7248967b1866d40a0be4b8265f2a9c6c21c600d3b2254c36e64ce7851171ff7c439a17306a84981
+DIST rocksdb-7.9.2.tar.gz 12058713 BLAKE2B 
76a840565fccdc800eaad055da7698f7a5fc6e217187e078d60420c61cde1236c427cc4ae7d557c69ee5c358cd1ebc7fc4ed52063c04965fcc2c3c35774e9f59
 SHA512 
9cf2a359cedb21ca70fc921e54f19c406fd9aa2a739ad1627842fad2dec0e7dedbfe52aa8e85fbfbe7005c00ca1e7e7013f728d4d9938f3cebdf794504b431cb

diff --git a/dev-libs/rocksdb/files/rocksdb-7.9.2-gcc-13.patch 
b/dev-libs/rocksdb/files/rocksdb-7.9.2-gcc-13.patch
new file mode 100644
index ..513d0da01c29
--- /dev/null
+++ b/dev-libs/rocksdb/files/rocksdb-7.9.2-gcc-13.patch
@@ -0,0 +1,42 @@
+https://github.com/facebook/rocksdb/commit/88edfbfb5e1cac228f7cc31fbec24bb637fe54b1
+
+From 88edfbfb5e1cac228f7cc31fbec24bb637fe54b1 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Wed, 25 Jan 2023 14:30:32 -0800
+Subject: [PATCH] Fix build with gcc 13 by including  (#8)
+
+Summary:
+Like other versions before, gcc 13 moved some includes around and as a result 
 is no longer transitively included [1]. Explicitly include it for 
uint{32,64}_t.
+
+[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
+
+Pull Request resolved: https://github.com/facebook/rocksdb/pull/8
+
+Reviewed By: cbi42
+
+Differential Revision: D42711356
+
+Pulled By: ajkr
+
+fbshipit-source-id: 5ea257b85b7017f40fd8fdbce965336da95c55b2
+--- a/table/block_based/data_block_hash_index.h
 b/table/block_based/data_block_hash_index.h
+@@ -5,6 +5,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ #include 
+ 
+--- a/util/string_util.h
 b/util/string_util.h
+@@ -6,6 +6,7 @@
+ 
+ #pragma once
+ 
++#include 
+ #include 
+ #include 
+ #include 
+

diff --git a/dev-libs/rocksdb/rocksdb-7.9.2.ebuild 
b/dev-libs/rocksdb/rocksdb-7.9.2.ebuild
new file mode 100644
index ..f28536667a0f
--- /dev/null
+++ b/dev-libs/rocksdb/rocksdb-7.9.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Embeddable, persistent key-value store for fast storage"
+HOMEPAGE="http://rocksdb.org https://github.com/facebook/rocksdb/;
+SRC_URI="https://github.com/facebook/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc 
static-libs"
+
+DEPEND="
+   app-arch/bzip2:=
+   app-arch/lz4:=
+   app-arch/snappy:=
+   app-arch/zstd:=
+   dev-cpp/gflags:=
+   sys-libs/liburing:=
+   sys-libs/zlib:=
+   jemalloc? ( dev-libs/jemalloc:= )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-gcc-13.patch
+)
+
+src_configure() {
+   sed -i -e '/find_program(CCACHE_FOUND ccache)/d' CMakeLists.txt || die
+
+   local mycmakeargs=(
+   -DFAIL_ON_WARNINGS=OFF
+   -DFORCE_AVX2=$(usex cpu_flags_x86_avx2 ON OFF)
+   -DFORCE_AVX=$(usex cpu_flags_x86_avx ON OFF)
+   -DFORCE_SSE42=$(usex cpu_flags_x86_sse4_2 ON OFF)
+   -DPORTABLE=ON
+   -DWITH_JEMALLOC=$(usex jemalloc ON OFF)
+   # They're just examples/benchmarks.
+   -DWITH_TESTS=OFF
+   )
+   

[gentoo-commits] repo/proj/guru:dev commit in: dev-crystal/spectator/

2023-01-26 Thread Anna Vyalkova
commit: 687e28352d12f2c8a4360bee659cae7a2dbe9340
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Fri Jan 27 01:29:38 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Fri Jan 27 01:29:38 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=687e2835

dev-crystal/spectator: add 0.11.6, drop 0.11.4

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/spectator/Manifest| 2 +-
 dev-crystal/spectator/metadata.xml| 8 
 .../{spectator-0.11.4.ebuild => spectator-0.11.6.ebuild}  | 8 +++-
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/dev-crystal/spectator/Manifest b/dev-crystal/spectator/Manifest
index 995afbb9d..93417466d 100644
--- a/dev-crystal/spectator/Manifest
+++ b/dev-crystal/spectator/Manifest
@@ -1,2 +1,2 @@
-DIST spectator-0.11.4.tar.gz 148851 BLAKE2B 
28df62b94bb7234bd4a09da19a7a081d172ee879ae26aa9eb982a553a3d366e2b30f92954655f00e81ef64c286db8c851b3c7ba9db68f0a3e866720468c8fad4
 SHA512 
61ee83e774e71010485352cdf208810f07108a4bcad002b0254947fb6aa234547f438388b9cf10d6d77f20c2f408e0e9613d781722bf8496cf8f4c011a1746eb
 DIST spectator-0.11.5.tar.gz 154689 BLAKE2B 
7da8a3af4400b28af47f343cb149257a6fb11b9f04a1074bcbbcc1237127820ca4feca5419e7b358a41f2d7bab2f42886af11525e4b46121a41f8d5918085a44
 SHA512 
c9a24d203826dac8ffc518ac57351bb3cf08f5ba1cee65b233e74bb1a30d35c2074f3186c2dbe67ea502dfb4fc9f0128bc7296f43e80ee95c6b259bcd756f084
+DIST spectator-0.11.6.tar.gz 155945 BLAKE2B 
338942440b04682c0614aeead71b3762663088d9693db7f995ec12067de1c7161672458505d270da2b625553bd6b8495f43c0176bf053891f778948a5f2eeb25
 SHA512 
989fc8131d053fa45eecf9219b4a9bd8715dc3ae3e515734cfddbaf11a6db1a28428505ce738d0d64080185dd5f23f9720bfddeeb2ed6246e72d275f2464f819

diff --git a/dev-crystal/spectator/metadata.xml 
b/dev-crystal/spectator/metadata.xml
new file mode 100644
index 0..7ebbd0334
--- /dev/null
+++ b/dev-crystal/spectator/metadata.xml
@@ -0,0 +1,8 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+

diff --git a/dev-crystal/spectator/spectator-0.11.4.ebuild 
b/dev-crystal/spectator/spectator-0.11.6.ebuild
similarity index 77%
rename from dev-crystal/spectator/spectator-0.11.4.ebuild
rename to dev-crystal/spectator/spectator-0.11.6.ebuild
index d23903ad6..87bc47a85 100644
--- a/dev-crystal/spectator/spectator-0.11.4.ebuild
+++ b/dev-crystal/spectator/spectator-0.11.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,17 +12,15 @@ 
SRC_URI="https://github.com/icy-arctic-fox/${PN}/archive/refs/tags/v${PV}.tar.gz
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 DOCS=( {ARCHITECTURE,CHANGELOG,CONTRIBUTING,README}.md )
 
 CHECKREQS_MEMORY="3G"
 
 pkg_pretend() {
-   use test && check-reqs_pkg_pretend
+   has test "${FEATURES}" && check-reqs_pkg_pretend
 }
 
 pkg_setup() {
-   use test && check-reqs_pkg_setup
+   has test "${FEATURES}" && check-reqs_pkg_setup
 }



[gentoo-commits] repo/proj/guru:dev commit in: app-text/komikku/

2023-01-26 Thread Anna Vyalkova
commit: 331819aa917f496cdd77e2ee33b53a40cf9f2875
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Fri Jan 27 01:27:43 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Fri Jan 27 01:27:43 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=331819aa

app-text/komikku: add 1.10.1, drop 1.9.0

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 app-text/komikku/Manifest| 2 +-
 app-text/komikku/{komikku-1.9.0.ebuild => komikku-1.10.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/komikku/Manifest b/app-text/komikku/Manifest
index 8aea5de18..3343c08fb 100644
--- a/app-text/komikku/Manifest
+++ b/app-text/komikku/Manifest
@@ -1,2 +1,2 @@
+DIST Komikku-v1.10.1.tar.bz2 5048442 BLAKE2B 
f74ea4251c40b8d97c3db2e665a5242ae9c68fb3437e8e044bb5d4f5ddb9f5bbd014a66ed9f03a3e482c104b8b4b07ee747bc10e5dfd0e06aa90fb5631e3fdd1
 SHA512 
bce164e478bbda539c42ff22ed07e51f5da8200123b71c70f110c06925357c44ba551c31452159c4258f5b63ad135382539340754a4f8be3569ec3171b838b90
 DIST Komikku-v1.8.0.tar.bz2 5037222 BLAKE2B 
6e1917ae54a30dc5fdb7ba3b7837354bc489518299a70ebf15b21d466845f1dd5b35794d7f2d6f6af79ccdbf5f8da307c2187279fa72ddce9d22a046ca41e860
 SHA512 
9d5a4f1881a53f5f59901552b1c8b50f94cac7bf4142034477a1dd7f089d07d47358282d41ecb977f55000a54d120a38d132b236e95d07cb4fff44f26fa0dc4c
-DIST Komikku-v1.9.0.tar.bz2 5044590 BLAKE2B 
8243a8d7565c4110a31e0f2a1fda733826bb0d9e8d50b2483e7cad3c7eb325984e3a5607198b409fd2107eb629d0f79b0da4768c17e3f916e854343d1269a33b
 SHA512 
ab85f228519a1c98ff3c0dea9bcde9267d8e0641eeed91901659cefcc6602dae0600ebb0827591ddcf7efac3cc31b01569e3f107fd03a62d146e23faf08ca404

diff --git a/app-text/komikku/komikku-1.9.0.ebuild 
b/app-text/komikku/komikku-1.10.1.ebuild
similarity index 100%
rename from app-text/komikku/komikku-1.9.0.ebuild
rename to app-text/komikku/komikku-1.10.1.ebuild



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

2023-01-26 Thread Arsen Arsenović
commit: e89d5e02e46d40d3ab320a30e8f45a73441e0cc1
Author: Arsen Arsenović  gentoo  org>
AuthorDate: Fri Jan 27 01:30:45 2023 +
Commit: Arsen Arsenović  gentoo  org>
CommitDate: Fri Jan 27 01:34:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89d5e02

profiles/base: Mask sys-block/nbdkit[libguestfs]

This flag is dependency heavy and is blocking the stabilization of
dev-util/poke through a test dependency.

Bug: https://bugs.gentoo.org/891965
Signed-off-by: Arsen Arsenović  gentoo.org>

 profiles/base/package.use.stable.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index 604503271030..20cf4761afd4 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -4,6 +4,12 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in package.use.mask
 
+# Arsen Arsenović  (2023-01-27)
+# Pulls in large amounts of unstable dependencies, blocking
+# stabilization of other packages.
+# Bug #891965.
+sys-block/nbdkit libguestfs
+
 # Andreas Sturmlechner  (2022-12-24)
 # dev-util/hip and its rocm dependencies not stable yet
 sci-physics/lammps hip



[gentoo-commits] repo/gentoo:master commit in: app-emulation/ruffle/

2023-01-26 Thread Ionen Wolkens
commit: ad2a8e8fe9d7ff67146b33d898d32716b19155a0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Jan 27 01:25:54 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Jan 27 01:30:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad2a8e8f

app-emulation/ruffle: minor ebuild nitpick

Just for consistency with how it's always been for dasp+flash-lso,
although this may be clearer the other way around.

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

 app-emulation/ruffle/ruffle-0_p20230125.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/ruffle/ruffle-0_p20230125.ebuild 
b/app-emulation/ruffle/ruffle-0_p20230125.ebuild
index 3228b51b21d2..34f62bcb1e66 100644
--- a/app-emulation/ruffle/ruffle-0_p20230125.ebuild
+++ b/app-emulation/ruffle/ruffle-0_p20230125.ebuild
@@ -503,8 +503,8 @@ RUFFLE_GIT=(
"RustAudio dasp f05a703d247bb504d7e812b51e95f3765d9c5e94 dasp"
"gfx-rs d3d12-rs a990c93ec64eeab78f2292763d0715da9dba1d59 d3d12:."
"gfx-rs naga 1be8024bda3594987b417bead5024b98be9ab521 naga:."
-   "gfx-rs rspirv b969f175d5663258b4891e44b76c1544da9661ab rspirv:rspirv"
-   "gfx-rs wgpu c5851275c59b1d5d949b142d6aa973d0bb638181 wgpu:wgpu"
+   "gfx-rs rspirv b969f175d5663258b4891e44b76c1544da9661ab rspirv"
+   "gfx-rs wgpu c5851275c59b1d5d949b142d6aa973d0bb638181 wgpu"
"grovesNL glow c8a011fcd57a5c68cc917ed394baa484bdefc909 glow:."
"kyren gc-arena 318b2ea594dcdadd01f7789025e3b3940be96b2c 
gc-arena:src/gc-arena"
"ruffle-rs h263-rs 023e14c73e565c4c778d41f66cfbac5ece6419b2 
h263-rs:h263,h263-rs-yuv:yuv"



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

2023-01-26 Thread Sam James
commit: b21919a4c4a6cd6be6eabe2ac984e55b2cef4371
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:28:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:28:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21919a4

dev-libs/sord: add comment re dep versions

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

 dev-libs/sord/sord-0.16.14-r1.ebuild | 1 +
 dev-libs/sord/sord-.ebuild   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-libs/sord/sord-0.16.14-r1.ebuild 
b/dev-libs/sord/sord-0.16.14-r1.ebuild
index cc25549376cd..1042da9067c4 100644
--- a/dev-libs/sord/sord-0.16.14-r1.ebuild
+++ b/dev-libs/sord/sord-0.16.14-r1.ebuild
@@ -25,6 +25,7 @@ BDEPEND="
virtual/pkgconfig
doc? ( app-doc/doxygen )
 "
+# Take care on bumps to check minimum versions!
 RDEPEND="
dev-libs/libpcre
>=dev-libs/serd-0.30.10

diff --git a/dev-libs/sord/sord-.ebuild b/dev-libs/sord/sord-.ebuild
index 1de41eff15c6..5d7f56bff1cc 100644
--- a/dev-libs/sord/sord-.ebuild
+++ b/dev-libs/sord/sord-.ebuild
@@ -25,6 +25,7 @@ BDEPEND="
virtual/pkgconfig
doc? ( app-doc/doxygen )
 "
+# Take care on bumps to check minimum versions!
 RDEPEND="
dev-libs/libpcre
>=dev-libs/serd-0.30.10



[gentoo-commits] repo/gentoo:master commit in: media-libs/sratom/

2023-01-26 Thread Sam James
commit: 9c0659fbaf9c8b5f5883a60841ef1eed57ec255a
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:28:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:28:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c0659fb

media-libs/sratom: add comment re dep versions

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

 media-libs/sratom/sratom-0.6.14-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/sratom/sratom-0.6.14-r1.ebuild 
b/media-libs/sratom/sratom-0.6.14-r1.ebuild
index fdb0acae1dcb..ec0d9cbeb53b 100644
--- a/media-libs/sratom/sratom-0.6.14-r1.ebuild
+++ b/media-libs/sratom/sratom-0.6.14-r1.ebuild
@@ -25,6 +25,7 @@ BDEPEND="
dev-python/sphinx_lv2_theme
 )
 "
+# Take care on bumps to check minimum versions!
 RDEPEND="
>=dev-libs/serd-0.30.10
>=dev-libs/sord-0.16.10



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

2023-01-26 Thread Sam James
commit: 11f9733fab372182d785b31f63022472324921cb
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:27:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:27:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11f9733f

dev-libs/sord: sync live

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

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

diff --git a/dev-libs/sord/sord-.ebuild b/dev-libs/sord/sord-.ebuild
index 6b5bf1e2b1e9..1de41eff15c6 100644
--- a/dev-libs/sord/sord-.ebuild
+++ b/dev-libs/sord/sord-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/drobilla/sord.git;
 else
SRC_URI="https://download.drobilla.net/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc ~x86"
 fi
 
 DESCRIPTION="Library for storing RDF data in memory"
@@ -27,7 +27,7 @@ BDEPEND="
 "
 RDEPEND="
dev-libs/libpcre
-   dev-libs/serd
+   >=dev-libs/serd-0.30.10
 "
 DEPEND="${RDEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/suil/

2023-01-26 Thread Sam James
commit: e06627785b2e821fbf49e7cee8aea0382a9d2be7
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:24:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:24:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0662778

media-libs/suil: fix minimum dep versions

Closes: https://bugs.gentoo.org/892087
Signed-off-by: Sam James  gentoo.org>

 .../suil/{suil-0.10.18.ebuild => suil-0.10.18-r1.ebuild}   | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/suil/suil-0.10.18.ebuild 
b/media-libs/suil/suil-0.10.18-r1.ebuild
similarity index 87%
rename from media-libs/suil/suil-0.10.18.ebuild
rename to media-libs/suil/suil-0.10.18-r1.ebuild
index 80af9b0e7eea..af6be37cfe60 100644
--- a/media-libs/suil/suil-0.10.18.ebuild
+++ b/media-libs/suil/suil-0.10.18-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -23,15 +23,15 @@ BDEPEND="
)
 "
 # This could be way refined, but it's quickly a rabbit hole
-
+# Take care on bumps to check lv2 minimum version!
 RDEPEND="
-   media-libs/lv2
+   >=media-libs/lv2-1.18.3
gtk2? (
-   x11-libs/gtk+:2
+   >=x11-libs/gtk+-2.18.0:2
dev-libs/glib:2
)
gtk? (
-   x11-libs/gtk+:3
+   >=x11-libs/gtk+-3.14.0:3
dev-libs/glib:2
)
qt5? (



[gentoo-commits] repo/gentoo:master commit in: media-libs/lilv/

2023-01-26 Thread Sam James
commit: 4e4db02d88fd880428e87d602b7b94a08ff92c04
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:25:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:25:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e4db02d

media-libs/lilv: add comment re dep versions

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

 media-libs/lilv/lilv-0.24.20-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/lilv/lilv-0.24.20-r1.ebuild 
b/media-libs/lilv/lilv-0.24.20-r1.ebuild
index bf2102322e3e..5149360ebdea 100644
--- a/media-libs/lilv/lilv-0.24.20-r1.ebuild
+++ b/media-libs/lilv/lilv-0.24.20-r1.ebuild
@@ -27,6 +27,7 @@ BDEPEND="
dev-python/sphinx_lv2_theme
)
 "
+# Take care on bumps to check minimum versions!
 RDEPEND="
${PYTHON_DEPS}
>=dev-libs/serd-0.30.10[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: media-libs/suil/

2023-01-26 Thread Sam James
commit: 529c465f780033c63b1fa25f744b80a9f85c3796
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 01:23:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 01:23:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529c465f

media-libs/suil: add gitlab upstream metadata

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

 media-libs/suil/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/media-libs/suil/metadata.xml b/media-libs/suil/metadata.xml
index ef7c2a13b89e..7e45ab6be6bd 100644
--- a/media-libs/suil/metadata.xml
+++ b/media-libs/suil/metadata.xml
@@ -12,4 +12,7 @@
   
 Enable GTK2 based GUI support
   
+  
+lv2/suil
+  
 



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

2023-01-26 Thread Sam James
commit: 84e75bb8dddef8175c3f869ab9de9b00070c44df
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:24:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e75bb8

dev-util/patdiff: unkeyword 0.15.0 for ~riscv

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

 dev-util/patdiff/patdiff-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/patdiff/patdiff-0.15.0.ebuild 
b/dev-util/patdiff/patdiff-0.15.0.ebuild
index 8a8584db976a..f10b7a3ff52a 100644
--- a/dev-util/patdiff/patdiff-0.15.0.ebuild
+++ b/dev-util/patdiff/patdiff-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/patdiff/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/patience_diff/

2023-01-26 Thread Sam James
commit: 340400eca498f3c5c7aa0bd7dccde0e43037230b
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:25:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=340400ec

dev-ml/patience_diff: unkeyword 0.15.0 for ~riscv

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

 dev-ml/patience_diff/patience_diff-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/patience_diff/patience_diff-0.15.0.ebuild 
b/dev-ml/patience_diff/patience_diff-0.15.0.ebuild
index 00760fb0e14f..8d612eb0d5f3 100644
--- a/dev-ml/patience_diff/patience_diff-0.15.0.ebuild
+++ b/dev-ml/patience_diff/patience_diff-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 RDEPEND="dev-ml/core:${SLOT}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/async_kernel/

2023-01-26 Thread Sam James
commit: 4e3b0b2f11e4139c758c0384bba276f466777fb5
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:25:03 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3b0b2f

dev-ml/async_kernel: unkeyword 0.15.0

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

 dev-ml/async_kernel/async_kernel-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/async_kernel/async_kernel-0.15.0.ebuild 
b/dev-ml/async_kernel/async_kernel-0.15.0.ebuild
index 133ca6500abd..883d793c80cd 100644
--- a/dev-ml/async_kernel/async_kernel-0.15.0.ebuild
+++ b/dev-ml/async_kernel/async_kernel-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 RDEPEND="dev-ml/core_kernel:${SLOT}"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt/

2023-01-26 Thread Sam James
commit: 3d40adc41670353ede797ddc59b705f0164d45b4
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:28:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:29:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d40adc4

app-emulation/libvirt: PDEPEND on libvirt-python (deux)

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

 app-emulation/libvirt/libvirt-8.9.0-r1.ebuild | 347 ++
 1 file changed, 347 insertions(+)

diff --git a/app-emulation/libvirt/libvirt-8.9.0-r1.ebuild 
b/app-emulation/libvirt/libvirt-8.9.0-r1.ebuild
new file mode 100644
index ..647a33c33de3
--- /dev/null
+++ b/app-emulation/libvirt/libvirt-8.9.0-r1.ebuild
@@ -0,0 +1,347 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Packages which get releases together:
+# app-emacs/nxml-libvirt-schemas
+# dev-python/libvirt-python
+# dev-perl/Sys-Virt
+# app-emulation/libvirt
+# Please bump them together!
+
+PYTHON_COMPAT=( python3_{9..11} )
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/libvirt.org.asc
+inherit meson linux-info python-any-r1 readme.gentoo-r1 tmpfiles verify-sig
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.com/libvirt/libvirt.git;
+   EGIT_BRANCH="master"
+else
+   SRC_URI="https://libvirt.org/sources/${P}.tar.xz
+   verify-sig? ( https://libvirt.org/sources/${P}.tar.xz.asc )"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="C toolkit to manipulate virtual machines"
+HOMEPAGE="https://www.libvirt.org/ https://gitlab.com/libvirt/libvirt/;
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+IUSE="
+   apparmor audit bash-completion +caps dtrace firewalld fuse glusterfs
+   iscsi iscsi-direct +libvirtd lvm libssh libssh2 lxc nfs nls numa openvz
+   parted pcap policykit +qemu rbd sasl selinux +udev
+   virtualbox +virt-network wireshark-plugins xen zfs
+"
+
+REQUIRED_USE="
+   firewalld? ( virt-network )
+   libvirtd? ( || ( lxc openvz qemu virtualbox xen ) )
+   lxc? ( caps libvirtd )
+   openvz? ( libvirtd )
+   qemu? ( libvirtd )
+   virt-network? ( libvirtd )
+   virtualbox? ( libvirtd )
+   xen? ( libvirtd )"
+
+BDEPEND="
+   app-text/xhtml1
+   dev-lang/perl
+   dev-libs/libxslt
+   dev-perl/XML-XPath
+   dev-python/docutils
+   virtual/pkgconfig
+   net-libs/rpcsvc-proto
+   bash-completion? ( >=app-shells/bash-completion-2.0 )
+   verify-sig? ( sec-keys/openpgp-keys-libvirt )"
+
+# gettext.sh command is used by the libvirt command wrappers, and it's
+# non-optional, so put it into RDEPEND.
+# We can use both libnl:1.1 and libnl:3, but if you have both installed, the
+# package will use 3 by default. Since we don't have slot pinning in an API,
+# we must go with the most recent.
+RDEPEND="
+   acct-user/qemu
+   app-misc/scrub
+   >=dev-libs/glib-2.56.0
+   dev-libs/libgcrypt
+   dev-libs/libnl:3
+   >=dev-libs/libxml2-2.9.1
+   >=net-analyzer/openbsd-netcat-1.105-r1
+   >=net-libs/gnutls-3.2.0:=
+   net-libs/libtirpc:=
+   >=net-misc/curl-7.18.0
+   sys-apps/dbus
+   sys-apps/dmidecode
+   sys-devel/gettext
+   >=sys-libs/readline-7.0:=
+   virtual/acl
+   apparmor? ( sys-libs/libapparmor )
+   audit? ( sys-process/audit )
+   caps? ( sys-libs/libcap-ng )
+   dtrace? ( dev-util/systemtap )
+   firewalld? ( >=net-firewall/firewalld-0.6.3 )
+   fuse? ( sys-fs/fuse:= )
+   glusterfs? ( >=sys-cluster/glusterfs-3.4.1 )
+   iscsi? ( >=sys-block/open-iscsi-1.18.0 )
+   iscsi-direct? ( >=net-libs/libiscsi-1.18.0 )
+   libssh? ( >=net-libs/libssh-0.8.1:= )
+   libssh2? ( >=net-libs/libssh2-1.3 )
+   lvm? ( >=sys-fs/lvm2-2.02.48-r2[lvm] )
+   lxc? ( !sys-apps/systemd[cgroup-hybrid(-)] )
+   nfs? ( net-fs/nfs-utils )
+   numa? (
+   >sys-process/numactl-2.0.2
+   sys-process/numad
+   )
+   parted? (
+   >=sys-block/parted-1.8[device-mapper]
+   sys-fs/lvm2[lvm]
+   )
+   pcap? ( >=net-libs/libpcap-1.8.0 )
+   policykit? (
+   acct-group/libvirt
+   >=sys-auth/polkit-0.9
+   )
+   qemu? (
+   >=app-emulation/qemu-4.2
+   >=dev-libs/yajl-2.0.3:=
+   )
+   rbd? ( sys-cluster/ceph )
+   sasl? ( >=dev-libs/cyrus-sasl-2.1.26 )
+   selinux? ( >=sys-libs/libselinux-2.0.85 )
+   virt-network? (
+   net-dns/dnsmasq[dhcp,ipv6(+),script]
+   net-firewall/ebtables
+   >=net-firewall/iptables-1.4.10[ipv6(+)]
+   net-misc/radvd
+   sys-apps/iproute2[-minimal]
+   )
+   wireshark-plugins? ( >=net-analyzer/wireshark-2.6.0:= )
+   xen? (
+   >=app-emulation/xen-4.9.0
+  

[gentoo-commits] repo/gentoo:master commit in: dev-ml/textutils/

2023-01-26 Thread Sam James
commit: 71af098fde5841697cd5687d54578f160a29e74e
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:24:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71af098f

dev-ml/textutils: unkeyword 0.15.0

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

 dev-ml/textutils/textutils-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/textutils/textutils-0.15.0.ebuild 
b/dev-ml/textutils/textutils-0.15.0.ebuild
index 18d2948c2b90..aa7d2f9396c8 100644
--- a/dev-ml/textutils/textutils-0.15.0.ebuild
+++ b/dev-ml/textutils/textutils-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ppx_jane/

2023-01-26 Thread Sam James
commit: 1b30e184b0101320bb5216ff9adc02d4151e069e
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:24:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b30e184

dev-ml/ppx_jane: unkeyword 0.15.0

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

 dev-ml/ppx_jane/ppx_jane-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ppx_jane/ppx_jane-0.15.0.ebuild 
b/dev-ml/ppx_jane/ppx_jane-0.15.0.ebuild
index c20798f7d4e8..79ebd744d0bb 100644
--- a/dev-ml/ppx_jane/ppx_jane-0.15.0.ebuild
+++ b/dev-ml/ppx_jane/ppx_jane-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/timezone/

2023-01-26 Thread Sam James
commit: 0a27cc01b463f8793c8478ef6bf32534bc1a66d7
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:25:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a27cc01

dev-ml/timezone: unkeyword 0.15.0

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

 dev-ml/timezone/timezone-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/timezone/timezone-0.15.0.ebuild 
b/dev-ml/timezone/timezone-0.15.0.ebuild
index 33f265cc1758..6ed035120625 100644
--- a/dev-ml/timezone/timezone-0.15.0.ebuild
+++ b/dev-ml/timezone/timezone-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 RDEPEND="dev-ml/core:${SLOT}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/core_kernel/

2023-01-26 Thread Sam James
commit: 1684741a3121278d8ff76851b94644407df1e0a3
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:24:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1684741a

dev-ml/core_kernel: unkeyword 0.15.0

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

 dev-ml/core_kernel/core_kernel-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/core_kernel/core_kernel-0.15.0.ebuild 
b/dev-ml/core_kernel/core_kernel-0.15.0.ebuild
index ca705633bcf6..490e12a62333 100644
--- a/dev-ml/core_kernel/core_kernel-0.15.0.ebuild
+++ b/dev-ml/core_kernel/core_kernel-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 # Wants quickcheck_deprecated for now



[gentoo-commits] repo/gentoo:master commit in: dev-ml/base_bigstring/

2023-01-26 Thread Sam James
commit: 124f1c5570e0d50b267aad9fbdc48039af181785
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:24:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=124f1c55

dev-ml/base_bigstring: unkeyword 0.15.0

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

 dev-ml/base_bigstring/base_bigstring-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/base_bigstring/base_bigstring-0.15.0.ebuild 
b/dev-ml/base_bigstring/base_bigstring-0.15.0.ebuild
index 60c915d00330..613685115a2e 100644
--- a/dev-ml/base_bigstring/base_bigstring-0.15.0.ebuild
+++ b/dev-ml/base_bigstring/base_bigstring-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 DEPEND="dev-ml/int_repr:${SLOT}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/core/

2023-01-26 Thread Sam James
commit: aa18a3533ecc6e0c4b25611a0a7ca77e9d1de47e
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan 27 00:25:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan 27 00:28:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa18a353

dev-ml/core: unkeyword 0.15.0

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

 dev-ml/core/core-0.15.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/core/core-0.15.0.ebuild b/dev-ml/core/core-0.15.0.ebuild
index c3dd438a91e0..0540bcd6def8 100644
--- a/dev-ml/core/core-0.15.0.ebuild
+++ b/dev-ml/core/core-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64"
 IUSE="+ocamlopt"
 
 # TODO: Wants quickcheck_deprecated?



  1   2   3   4   >