[gentoo-commits] repo/gentoo:master commit in: kde-misc/bismuth/

2022-10-09 Thread Georgy Yakovlev
commit: 5932b295d7779ca721a533c19a43f8dab9ce9987
Author: Alfred Wingate  protonmail  com>
AuthorDate: Wed Oct  5 21:13:08 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:58:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5932b295

kde-misc/bismuth: add 3.1.4

Closes: https://github.com/gentoo/gentoo/pull/27649
Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 kde-misc/bismuth/Manifest |  2 ++
 kde-misc/bismuth/bismuth-3.1.4.ebuild | 68 +++
 2 files changed, 70 insertions(+)

diff --git a/kde-misc/bismuth/Manifest b/kde-misc/bismuth/Manifest
index a0ad48eab4e7..e8c0d9d2c233 100644
--- a/kde-misc/bismuth/Manifest
+++ b/kde-misc/bismuth/Manifest
@@ -1,2 +1,4 @@
 DIST bismuth-3.1.3-binary-release.tar.gz 187092 BLAKE2B 
76672973b2102dffc3b5db9a00f49a291ac07e9b79ef282a9fe24a33ddd641cdebbaea20fd149f293625ff80c4bf7aa28f40f62291c94ed3828540728b35
 SHA512 
6c42a4075dd97e3429075e69fd0604ef273afb4a22ec4dc14073ca2e02fd325ad8f6defc3943eec1e3a11a598c6ace41ac8825ba36b8d7d976b98d2d00cc1e73
 DIST bismuth-3.1.3.tar.gz 5473759 BLAKE2B 
fcacf2e6b491bbaccf52ec1227196b3a06535ae23371544762868b28b18ab5fe7cd0540376fd7ee34ac6d3fcd52d3ce61760c0252ff91acd7bc78896602e4c62
 SHA512 
fdfa1074d8c156c24cfe8b97ac99f1252c221f0ee2039d440645a08d6da405b7bf9b0479f1752cfadc9d05c21d3ad86923498cc190d69cc5f278c36888330a0c
+DIST bismuth-3.1.4-binary-release.tar.gz 131470 BLAKE2B 
435ec224ed589300f48bfd0f25aec75cb955ca7b6948ec48cdf0f8b53b92d262366e4159fb02862fde5bf676a99bfce38b521bcb670285fde7bb7dbda3e596d3
 SHA512 
90693137fa9527ed7aca9c0cad18d849491a166d3f6e6d4545f3c325a062589a196e1bfc36569f94551ba8a112e3f0be9a9d14dcb6cad0c8bc4e49bdd61f6488
+DIST bismuth-3.1.4.tar.gz 5456820 BLAKE2B 
397f1f2ab89b92a2d0e9aa37f0cb42282f40b581de499860617ab2333a56e503bd8b76c4e6c909ec16df5ed56eb38019d559333c670898ab3f79fc1ab24310ad
 SHA512 
3318f010dc9bf217536cccf2b9a683637172fae90409c2fbae4152a6b613d1a850cd7c7a03880e46f812aaa3a8d66bb829ba70f028a6a320db7844e254d73cc3

diff --git a/kde-misc/bismuth/bismuth-3.1.4.ebuild 
b/kde-misc/bismuth/bismuth-3.1.4.ebuild
new file mode 100644
index ..aca8196c528f
--- /dev/null
+++ b/kde-misc/bismuth/bismuth-3.1.4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="Tiling window management script for Kwin"
+HOMEPAGE="https://github.com/Bismuth-Forge/bismuth;
+SRC_URI="
+   https://github.com/Bismuth-Forge/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz
+   
https://github.com/Bismuth-Forge/bismuth/releases/download/v${PV}/binary-release.tar.gz
 -> ${P}-binary-release.tar.gz
+"
+
+LICENSE="CC-BY-4.0 LGPL-3+ MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+QTMIN=5.15.0
+KFMIN=5.78.0
+
+DEPEND="
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtquickcontrols2-${QTMIN}:5
+   >=dev-qt/qtsvg-${QTMIN}:5
+   >=dev-qt/qttest-${QTMIN}:5
+   >=kde-frameworks/kcmutils-${KFMIN}:5
+   >=kde-frameworks/kconfig-${KFMIN}:5
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/kdeclarative-${KFMIN}:5
+   >=kde-frameworks/kglobalaccel-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-plasma/kwin-5.24.0:5
+"
+
+RDEPEND="${DEPEND}"
+
+RESTRICT=test # npm + js + hell + network
+
+src_prepare() {
+   # we are not building npm hell or tests
+   cmake_comment_add_subdirectory tests
+   cmake_run_in src cmake_comment_add_subdirectory kwinscript
+   cmake_src_prepare
+}
+
+src_configuire() {
+   # cmake calls git describe --tags --abbrev=0
+   # let's just echo expected output, e.g. v1.2.3
+   git() { echo "v${PV}" ; }
+   export -f git || die
+
+   local mycmakeargs=(
+   -DBUILD_TESTING=OFF
+   -DUSE_NPM=OFF
+   -DUSE_TSC=OFF
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   insinto /usr/share/kwin/scripts
+   doins -r ../share/kwin/scripts/"${PN}"
+}



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

2022-10-09 Thread Georgy Yakovlev
commit: b1e3b136015aeecc30a269e9e907cc055252e547
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct 10 04:51:14 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:51:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e3b136

dev-util/schroot: drop 1.6.10_p12-r2

Bug: https://bugs.gentoo.org/867016
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-util/schroot/Manifest |   2 -
 dev-util/schroot/schroot-1.6.10_p12-r2.ebuild | 148 --
 2 files changed, 150 deletions(-)

diff --git a/dev-util/schroot/Manifest b/dev-util/schroot/Manifest
index 5cb5b20935f0..581a1f01e52a 100644
--- a/dev-util/schroot/Manifest
+++ b/dev-util/schroot/Manifest
@@ -1,4 +1,2 @@
 DIST schroot-1.6.13.tar.gz 687581 BLAKE2B 
5054407e545f39258df7598dbc233a836f6a86a02b4d0f3368109fd3edaea543fde6f81cfc6fedcdd6124490a3d5bc4d3a7e113ebe5ba2cfe7ec2c204f9cd0f4
 SHA512 
a250a02eb2384f1c27a9ff6479b77647a7a19b96b3b4e9d63e32a5dabe6ef3a3b1e2efaf98ddd9db93ded50fc93595ce545b0f0247c4a9e481349adafe806c2d
-DIST schroot_1.6.10-12.debian.tar.xz 83636 BLAKE2B 
0289848f7e64983c06f47a70346e06d7024722c643034ac24745fe4548311b893053ec28891f39264cb0894c12236f4e8523b70cd83553d1a7179cbfc63cbfa3
 SHA512 
77ae2d758593de505e9381e4800eb17a9e14fb949a5bdb07b9235671ae4bd18c668aa9c35a1ba6340af93b308b5c3798afc83f14165e4b19e7cebab92b83fc52
-DIST schroot_1.6.10.orig.tar.xz 797328 BLAKE2B 
1f91531f22c5b0a75e5bb74effc660efe4819acc59b007355c12a01c0a1de12674881dd0fbbcab00575a02629662fca799d48f5b967eb527812ed8c08ff9ad28
 SHA512 
25155989c7811ab4c7bf3cdceaa8d0ffb12f08388143891def96fcd205f1cc401dad9a74f0e9a9ef8610d50174ff8319a8368401431dc87e1a11c0241e61fcbe
 DIST schroot_1.6.13-2.debian.tar.xz 110752 BLAKE2B 
77c877e13541968ffd4edaa04c1a846e9deb19a3670088c19cdf3a217acfc2521d2b8d8dec7b8e6188b107f793af6152d5724fd596a9c62f6c9b57f2c30d57b0
 SHA512 
8fd7e7f95131285ec49bda3d9ccc6ba025976009c382998ef183142d2e3e288b7936e2c8ec6532870b601f62b460d577920d9a801b789f0d1bf7ee31b45356c3

diff --git a/dev-util/schroot/schroot-1.6.10_p12-r2.ebuild 
b/dev-util/schroot/schroot-1.6.10_p12-r2.ebuild
deleted file mode 100644
index 7a42ee74d2ae..
--- a/dev-util/schroot/schroot-1.6.10_p12-r2.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1 cmake pam tmpfiles
-
-MY_P=${PN}_${PV/_p/-}
-
-DESCRIPTION="Utility to execute commands in a chroot environment"
-HOMEPAGE="https://packages.debian.org/source/sid/schroot;
-SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${MY_P/%-*/}.orig.tar.xz
-   mirror://debian/pool/main/${PN::1}/${PN}/${MY_P}.debian.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
-IUSE="btrfs +dchroot debug doc lvm nls pam test zfs"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/boost:=
-   >=sys-apps/util-linux-2.16
-   btrfs? ( >=sys-fs/btrfs-progs-0.19-r2 )
-   lvm? ( sys-fs/lvm2 )
-   pam? ( sys-libs/pam )
-   zfs? ( sys-fs/zfs )
-"
-
-DEPEND="${COMMON_DEPEND}
-   app-arch/xz-utils
-   sys-apps/groff
-   doc? (
-   app-doc/doxygen
-   media-gfx/graphviz
-   )
-   nls? (
-   >=app-text/po4a-0.40
-   sys-devel/gettext
-   )
-   test? ( >=dev-util/cppunit-1.10.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   sys-apps/debianutils
-   dchroot? ( !sys-apps/dchroot )
-   nls? ( virtual/libintl )
-"
-
-S="${WORKDIR}/${PN}-${PV/%_p*/}"
-
-src_unpack() {
-   unpack ${MY_P/%-*/}.orig.tar.xz
-   cd "${S}"
-   unpack ${MY_P}.debian.tar.xz
-}
-
-src_prepare() {
-   sed -i -e 's/warn(/message(WARNING /' man/CMakeLists.txt || die
-   eapply "${S}"/debian/patches/*.patch
-   cmake_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -Dbtrfs-snapshot=$(usex btrfs)
-   -Ddchroot=$(usex dchroot)
-   -Ddchroot-dsa=$(usex dchroot)
-   -Ddebug=$(usex debug)
-   -Ddoxygen=$(usex doc)
-   -Dlvm-snapshot=$(usex lvm)
-   -Dnls=$(usex nls)
-   -Dpam=$(usex pam)
-   -Dtest=$(usex test)
-   -Dzfs-snapshot=$(usex zfs)
-   -Dbash_completion_dir="$(get_bashcompdir)"
-   -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
-   -DCMAKE_INSTALL_LOCALSTATEDIR="${EPREFIX}/var"
-   -DSCHROOT_MOUNT_DIR="${EPREFIX}/run/${PN}/mount"
-   -DBoost_NO_BOOST_CMAKE=ON # https://bugs.gentoo.org/791712 and 
https://bugs.gentoo.org/752120
-   )
-   if ! use nls; then
-   mycmakeargs+=(-DPO4A_EXECUTABLE=NOTFOUND)
-   fi
-
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile all $(usev doc)
-}
-
-src_test() {
-   if [[ ${EUID} -ne 0 ]]; then
-   ewarn "Disabling tests 

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

2022-10-09 Thread Georgy Yakovlev
commit: 9cd9ef2ceba7f848dd112530adb6b811dbf94fbc
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct 10 04:46:02 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:47:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd9ef2c

x11-terms/alacritty: add 0.11.0_rc3, drop 0.11.0_rc2

Bug: https://bugs.gentoo.org/875992
Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-terms/alacritty/Manifest  | 4 ++--
 .../{alacritty-0.11.0_rc2.ebuild => alacritty-0.11.0_rc3.ebuild}  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-terms/alacritty/Manifest b/x11-terms/alacritty/Manifest
index cc2a8c03246f..2fd6e7860b2d 100644
--- a/x11-terms/alacritty/Manifest
+++ b/x11-terms/alacritty/Manifest
@@ -2,7 +2,7 @@ DIST ab_glyph_rasterizer-0.1.4.crate 6641 BLAKE2B 
fc70a45030d969f8af31d1bc3f8306
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST adler32-1.2.0.crate 6411 BLAKE2B 
51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483
 SHA512 
8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
 DIST alacritty-0.10.1.tar.gz 1439045 BLAKE2B 
327fbf7158459dbbc6e2a974184daa540e50613503c227ddd39e6deef6a0cb07a172f9277906615032f0557c9f5b6eb0df6fad37e46e329ad8a5c6cfb5095c5d
 SHA512 
1321cfdf1ecc7210511ed84912e0d7a06951e21931c521decd3db8d0c1f50da4e50c01d9b39b4c77ce3a7ce0187f1f81abf3d3edc27388e6ec2e42c6c679f2d6
-DIST alacritty-0.11.0_rc2.tar.gz 1481291 BLAKE2B 
ecc3060b767b081c14c8726555b88b42e7c84620a0648d7c09608f70206175b78ce4b1f6066a4f717c8d9aaf62928614fa0fc501b33e0f691f295ba0d3b758aa
 SHA512 
12ab60af55809dc492e3705eff8405e863e3f27aab702ac471cae44869e16c87efde3c932e841d2e2593b346102afa7bbe6be43a1b72b36b54054d47cd22fac1
+DIST alacritty-0.11.0_rc3.tar.gz 1481306 BLAKE2B 
dde4d8d7305b27695480b83a38209fa5a43285eb82062325954dbd9462c306799c113280da79222f80d0da9e75375d0b9be0afac39a91a334f959f62c1d823cf
 SHA512 
93b9f4966a871e3d5f522e860c17e173e62ac80723d2de6c6990cb7abfd12fc416c11224046959106979257682e9c1493f0ac93cf99f70cf6ee994b8fed366d2
 DIST alacritty-0.9.0.tar.gz 1422571 BLAKE2B 
0b9531b92e57e36f86ae2a855c9dca4d3789e21b2ade9df2d22d32b9cf0967748df2acd1c79a1defba4d9eac21b2477550b799e5ffc4f9cb1444793ae9ca36e4
 SHA512 
17b53a1f98e8435a3ab120e39040c591d96a05d793b78030732f5624e2b717ab6a06c8de67fb25c6a502f3f3064f08a2a3c64cf7a1b7f3f7fda699e7fd95f931
 DIST andrew-0.3.1.crate 14030 BLAKE2B 
5224eb5a5ad5ba7dd07259a98b8dc04f92154dcc7b5a53c89b4f7fd3c1a12d834093350ce9f7cd69a935d70cff50c0fbc68305eea9f918b334ec1a6e9e979ae2
 SHA512 
c4fc8903d4c2542c91e7f099d5d9d2b9179ade3f4c3e83ccd8027b06cb582ef700777cf440a07c2478311c1b7c2f7ca64d53fb390f9f5753dcb32491003db8d3
 DIST android_glue-0.2.3.crate 1572 BLAKE2B 
8404cc69af7d1c9e851e67a69b5b18195388b50924b6a8afc7203bc5101babe9ae007724e552a929947fa9c639eb8ae13cdae0aedbc2d54b0b8d48373f15b7a3
 SHA512 
16ff1f0e1f50cd120dfbe57d45ebac1725fa75447c964a5b05a1a0565b13b0bc3b6c153edb4a50083ef5d802a889c9f9007e2e21a58dc408f9fb12e9437bd01b
@@ -387,7 +387,7 @@ DIST windows_x86_64_gnu-0.36.1.crate 790934 BLAKE2B 
9dec5d966bdc89efbc81989acca2
 DIST windows_x86_64_msvc-0.36.1.crate 661999 BLAKE2B 
4cf967f10d4ce148bac967598168752d1996b4ddf5278a8fca53360566c37c1a014bfb4dfdc0ae2d96e01196c42eb4906ea80d8e9dd23b9e9f3163631c9e253e
 SHA512 
89c22ed51a74f531662d80ae0fa5e0215728db1e6caf3c13eaeba95a93548b43c00b8474f52553ac866ac83c203b6c22dc44fbc870e882a4c9c97ba54b87c631
 DIST winit-0.24.0.crate 330256 BLAKE2B 
ac43b5bf97201c63cf1ceeb099d29880420205dd10801bd99ca61eab968828594cf28cce107c2181b1082c6c6fc53920836a83c0c880e5137a940d7ea7549de6
 SHA512 
9959fa68897e95580cae8d56cdf7920d4f9f8d717ed3a07851090c897c7f2627686a9fa294acbff536ff3ae9371ecf955cf397bb150813e6d9b6a8ebd2f09130
 DIST winit-0.26.1.crate 333842 BLAKE2B 
6eb454288c278be0817484fb5558e0463b4e31f76f7de73dfbb0295c369d6f2d4f1b8b111a620f30597803f6511d8dcf9b8ab29f1377fd798d662511b8013ea2
 SHA512 
1d9052c301263e5895dde17783600116cc88d972cf505fcfde838f13a93bc61c552b24feccbd0e4c30b64d186c817d21f9ccbb5bb48adebdd18d286bec9bf9ae
-DIST winit-0.27.3.crate 369662 BLAKE2B 
7dd20ce9dd2100c6c4aa733ddf0c1ddbf93727dc45f4da294fa3fabd52f9ff9d9747ae0e04f81549ebd2379546c2e28f7af2640cf58a502c898bb88b263abd97
 SHA512 
56054d067ba78920f00b8ca26e3c48ebd208b4dfbb745ae69c3f8f14ea8b4a76184f4ddb53b3197c192cb9aa50b471cfac64770d999cb6dc6fd852c7a058eed3
+DIST winit-0.27.4.crate 370023 BLAKE2B 
de04a0be0e9641b9132039a29b2452af8e9b10bc8811c3095844ed8ab31d949626238d6fd1d399d28152bf7387df59564c391bc667277f8f730dee5bb256bf18
 SHA512 

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

2022-10-09 Thread Georgy Yakovlev
commit: c6f427afbf0b05a07d68115a5b1ed10159a364e9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct 10 04:46:34 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:47:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6f427af

x11-terms/alacritty: sync live ebuild

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

 x11-terms/alacritty/alacritty-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/alacritty/alacritty-.ebuild 
b/x11-terms/alacritty/alacritty-.ebuild
index f74a43169145..0b31aaf46585 100644
--- a/x11-terms/alacritty/alacritty-.ebuild
+++ b/x11-terms/alacritty/alacritty-.ebuild
@@ -34,7 +34,7 @@ COMMON_DEPEND="
media-libs/fontconfig:=
media-libs/freetype:2
x11-libs/libxkbcommon
-   X? ( x11-libs/libxcb:=[xkb] )
+   X? ( x11-libs/libxcb:= )
 "
 
 DEPEND="



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

2022-10-09 Thread Georgy Yakovlev
commit: b4c4f972b3299fac5c89509d31e26fc8defc81c6
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct 10 04:47:53 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:47:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c4f972

x11-terms/alacritty: Stabilize 0.10.1 arm64, #857783

Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-terms/alacritty/alacritty-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/alacritty/alacritty-0.10.1.ebuild 
b/x11-terms/alacritty/alacritty-0.10.1.ebuild
index 9b571bf4a52f..6ed617c98437 100644
--- a/x11-terms/alacritty/alacritty-0.10.1.ebuild
+++ b/x11-terms/alacritty/alacritty-0.10.1.ebuild
@@ -222,7 +222,7 @@ if [ ${PV} == "" ] ; then
 else

SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> 
${P}.tar.gz
$(cargo_crate_uris)"
-   KEYWORDS="amd64 ~arm64 ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm64 ppc64 ~riscv x86"
 fi
 
 LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 BSD BSD-2 
CC0-1.0 FTL ISC MIT MPL-2.0 Unlicense WTFPL-2 ZLIB"



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

2022-10-09 Thread Georgy Yakovlev
commit: 52c54411a5101f2cea0eb99ab9d9de1ae33a28fb
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Oct 10 04:48:20 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Oct 10 04:48:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c54411

x11-terms/alacritty: drop 0.9.0-r1

Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-terms/alacritty/Manifest  |  88 ---
 x11-terms/alacritty/alacritty-0.9.0-r1.ebuild | 324 --
 2 files changed, 412 deletions(-)

diff --git a/x11-terms/alacritty/Manifest b/x11-terms/alacritty/Manifest
index 2fd6e7860b2d..d0fd99eea012 100644
--- a/x11-terms/alacritty/Manifest
+++ b/x11-terms/alacritty/Manifest
@@ -1,12 +1,8 @@
-DIST ab_glyph_rasterizer-0.1.4.crate 6641 BLAKE2B 
fc70a45030d969f8af31d1bc3f83069acc014b33cde31817063ab1d40f8caebe12f3896b6a249620a8f2a2d0adc149fcc402f2af25b31ebe223ad0779028d843
 SHA512 
a942a3b0848386677ed5c651034b001c0e24c7bd101be6a25bfed815310f3a530c8cb9e67e96ea3c36f4d7f09731552f734d5e73f705e3e8f2bf40d5151a7a91
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST adler32-1.2.0.crate 6411 BLAKE2B 
51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483
 SHA512 
8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
 DIST alacritty-0.10.1.tar.gz 1439045 BLAKE2B 
327fbf7158459dbbc6e2a974184daa540e50613503c227ddd39e6deef6a0cb07a172f9277906615032f0557c9f5b6eb0df6fad37e46e329ad8a5c6cfb5095c5d
 SHA512 
1321cfdf1ecc7210511ed84912e0d7a06951e21931c521decd3db8d0c1f50da4e50c01d9b39b4c77ce3a7ce0187f1f81abf3d3edc27388e6ec2e42c6c679f2d6
 DIST alacritty-0.11.0_rc3.tar.gz 1481306 BLAKE2B 
dde4d8d7305b27695480b83a38209fa5a43285eb82062325954dbd9462c306799c113280da79222f80d0da9e75375d0b9be0afac39a91a334f959f62c1d823cf
 SHA512 
93b9f4966a871e3d5f522e860c17e173e62ac80723d2de6c6990cb7abfd12fc416c11224046959106979257682e9c1493f0ac93cf99f70cf6ee994b8fed366d2
-DIST alacritty-0.9.0.tar.gz 1422571 BLAKE2B 
0b9531b92e57e36f86ae2a855c9dca4d3789e21b2ade9df2d22d32b9cf0967748df2acd1c79a1defba4d9eac21b2477550b799e5ffc4f9cb1444793ae9ca36e4
 SHA512 
17b53a1f98e8435a3ab120e39040c591d96a05d793b78030732f5624e2b717ab6a06c8de67fb25c6a502f3f3064f08a2a3c64cf7a1b7f3f7fda699e7fd95f931
-DIST andrew-0.3.1.crate 14030 BLAKE2B 
5224eb5a5ad5ba7dd07259a98b8dc04f92154dcc7b5a53c89b4f7fd3c1a12d834093350ce9f7cd69a935d70cff50c0fbc68305eea9f918b334ec1a6e9e979ae2
 SHA512 
c4fc8903d4c2542c91e7f099d5d9d2b9179ade3f4c3e83ccd8027b06cb582ef700777cf440a07c2478311c1b7c2f7ca64d53fb390f9f5753dcb32491003db8d3
 DIST android_glue-0.2.3.crate 1572 BLAKE2B 
8404cc69af7d1c9e851e67a69b5b18195388b50924b6a8afc7203bc5101babe9ae007724e552a929947fa9c639eb8ae13cdae0aedbc2d54b0b8d48373f15b7a3
 SHA512 
16ff1f0e1f50cd120dfbe57d45ebac1725fa75447c964a5b05a1a0565b13b0bc3b6c153edb4a50083ef5d802a889c9f9007e2e21a58dc408f9fb12e9437bd01b
-DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 DIST arrayref-0.3.6.crate 10035 BLAKE2B 
88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34
 SHA512 
368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f
 DIST arrayvec-0.5.2.crate 27838 BLAKE2B 
51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f
 SHA512 
1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
@@ -21,73 +17,55 @@ DIST bumpalo-3.11.0.crate 80945 BLAKE2B 
a740a674d0922794cc71b87a8bd686f677f8d0b3
 DIST bumpalo-3.9.1.crate 77507 BLAKE2B 
b248a0c2a9faaf52061f2fe0a82b9fd4efb4dae01da9dbd986493941f3ef2632f1d5608d167f2d088536dc96b4cce28981602220062892a7af51c3ead7a74a4b
 SHA512 
40bf3f0d261aaff1f7c30a539953b9c14f4526f05586af0dbe2e4df4cc042cbe6180e3dcc2fbc6f1802e694066f72e629e74de40bc2951c5527edaf551722a52
 DIST bytemuck-1.12.1.crate 38293 BLAKE2B 

[gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/

2022-10-09 Thread Viorel Munteanu
commit: 3883d7564a1d69cf521de1058ca83cc6d750d9e1
Author: Viorel Munteanu  gmail  com>
AuthorDate: Mon Oct 10 04:43:47 2022 +
Commit: Viorel Munteanu  gmail  com>
CommitDate: Mon Oct 10 04:43:47 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3883d756

app-misc/fastfetch: add 1.7.3

Signed-off-by: Viorel Munteanu  gmail.com>

 app-misc/fastfetch/Manifest  | 1 +
 app-misc/fastfetch/{fastfetch-.ebuild => fastfetch-1.7.3.ebuild} | 3 +++
 app-misc/fastfetch/fastfetch-.ebuild | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index c8d872738..daee64413 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1 +1,2 @@
 DIST fastfetch-1.7.2.tar.gz 426097 BLAKE2B 
5f9714b735605d4cc4cf8179f048c4cff24db0010f91e080f5e6c0f41329cbc155cdb883775ccb98bda77bfd4efb1f2b79f0adad4a2694d338b0027a31f170b1
 SHA512 
9f3051d8b9bc22ef93a2e6993c553c5a18d475c8cbb16a63087706aa823a0a4806c49aabb3cdbf5f240f9c9325ea5cb7db2498adcc87c9e44b77d26f6c28a39f
+DIST fastfetch-1.7.3.tar.gz 449029 BLAKE2B 
220a2c031ffc45ab1783cf6b51887320225aba9787a07026bc80528477790c84dc3d484323a041aae448d22b7122d17f73f6ce456c3cec1525c9eb8833a3a566
 SHA512 
a30d844a84d1da1fa9517793a7ba482b66db92170cb7ec5e2510f562815caff614aec2ef8a8d29a707865488b585a5f785013f7fe7759de5a062085a596e96c1

diff --git a/app-misc/fastfetch/fastfetch-.ebuild 
b/app-misc/fastfetch/fastfetch-1.7.3.ebuild
similarity index 97%
copy from app-misc/fastfetch/fastfetch-.ebuild
copy to app-misc/fastfetch/fastfetch-1.7.3.ebuild
index 4413ff731..ce5cee067 100644
--- a/app-misc/fastfetch/fastfetch-.ebuild
+++ b/app-misc/fastfetch/fastfetch-1.7.3.ebuild
@@ -16,10 +16,12 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
+KEYWORDS="~amd64"
 IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan 
wayland xcb xfce xrandr"
 
 # note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
 RDEPEND="
+   dev-libs/cJSON
sys-libs/zlib
X? ( x11-libs/libX11 )
chafa? ( media-gfx/chafa )
@@ -78,6 +80,7 @@ src_configure() {
-DENABLE_OSMESA=$(usex osmesa)
-DENABLE_OPENCL=$(usex opencl)
-DENABLE_DBUS=$(usex dbus)
+   -DENABLE_LIBCJSON=yes
)
 
cmake_src_configure

diff --git a/app-misc/fastfetch/fastfetch-.ebuild 
b/app-misc/fastfetch/fastfetch-.ebuild
index 4413ff731..971a0b807 100644
--- a/app-misc/fastfetch/fastfetch-.ebuild
+++ b/app-misc/fastfetch/fastfetch-.ebuild
@@ -20,6 +20,7 @@ IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci 
sqlite vulkan wayl
 
 # note - qa-vdb will always report errors because fastfetch loads the libs 
dynamically
 RDEPEND="
+   dev-libs/cJSON
sys-libs/zlib
X? ( x11-libs/libX11 )
chafa? ( media-gfx/chafa )
@@ -78,6 +79,7 @@ src_configure() {
-DENABLE_OSMESA=$(usex osmesa)
-DENABLE_OPENCL=$(usex opencl)
-DENABLE_DBUS=$(usex dbus)
+   -DENABLE_LIBCJSON=yes
)
 
cmake_src_configure



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

2022-10-09 Thread Matt Turner
commit: 85cb0bb9b1d6963dc7b2231f363ac6346d0e519d
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 10 04:21:27 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 04:21:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85cb0bb9

media-video/libva-utils: Version bump to 2.16.0

Signed-off-by: Matt Turner  gentoo.org>

 media-video/libva-utils/Manifest  |  1 +
 media-video/libva-utils/libva-utils-2.16.0.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/media-video/libva-utils/Manifest b/media-video/libva-utils/Manifest
index e8905bbfec08..893fbad39180 100644
--- a/media-video/libva-utils/Manifest
+++ b/media-video/libva-utils/Manifest
@@ -1,2 +1,3 @@
 DIST libva-utils-2.14.0.tar.gz 1241072 BLAKE2B 
17f1e0badb05e39f3979bde652dfe6832e8bfb2accd99fd6c5d972090cfce630e2a93ad96e5d17bc7bd9c393b12c2a7b066cb60a715c2dbb128dd263c480bcca
 SHA512 
631e9becf5b2f6d083906962c004c9080d2e2b2d98b6003638a31dde8ad4e2549606301b97e88822471e29007232fc470a2116be09dc0c55d3cc2df6a45a7be1
 DIST libva-utils-2.15.0.tar.gz 1245559 BLAKE2B 
92fe1e7dbd3c953eecb351625213c2b537ad640f61534f3316d3a46070cb3818b4acafbc7a666e24b51d0900cea044074a7a6519f3c4aba6d2a38cf6ed0b2d66
 SHA512 
90cfa83fb7443fc90558c148c740c9c272796197fba49ff0179af94c40e97c830fc26c534e9a74fa58f597075f9ba68b477aabc784148c14dc09bde07f23cdeb
+DIST libva-utils-2.16.0.tar.gz 1245723 BLAKE2B 
3ce3b54f9b8d1e5960fdb7587da9dc4fa9754f3612155e86d99f2f120e31e0e69a40482d7a4571fefc0a8079ba987303cbb433203de9ef6e203e9419b6d91b91
 SHA512 
d5395c1de4b95f4d0a86621b0338852250a3893b732c6fd69d0622c989bff530461a183c151f322469b1ed7e4815173dbbcf36cc390db9ebbae6fb7d7a90cb9c

diff --git a/media-video/libva-utils/libva-utils-2.16.0.ebuild 
b/media-video/libva-utils/libva-utils-2.16.0.ebuild
new file mode 100644
index ..428cc77cbc2d
--- /dev/null
+++ b/media-video/libva-utils/libva-utils-2.16.0.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Collection of utilities and tests for VA-API"
+HOMEPAGE="https://01.org/linuxmedia/vaapi;
+if [[ ${PV} = * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/intel/libva-utils;
+else
+   SRC_URI="https://github.com/intel/libva-utils/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples putsurface test +vainfo wayland X"
+RESTRICT="test" # Tests must be run manually
+
+REQUIRED_USE="
+   putsurface? ( || ( wayland X ) )
+   || ( examples putsurface test vainfo )
+"
+
+DEPEND="
+   x11-libs/libdrm
+   wayland? ( >=dev-libs/wayland-1.0.6 )
+   X? ( >=x11-libs/libX11-1.6.2 )
+"
+if [[ ${PV} = * ]] ; then
+   DEPEND+="~x11-libs/libva-${PV}:=[drm(+),wayland?,X?]"
+else
+   DEPEND+=">=x11-libs/libva-$(ver_cut 1-2).0:=[drm(+),wayland?,X?]"
+fi
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+
+   local sed_args=()
+
+   if ! use examples ; then
+   sed_args+=(
+   -e "/^subdir('decode')$/d"
+   -e "/^subdir('encode')$/d"
+   -e "/^subdir('videoprocess')$/d"
+   -e "/^subdir('vendor\/intel')$/d"
+   -e "/^subdir('vendor\/intel\/sfcsample')$/d"
+   )
+   fi
+
+   if ! use putsurface ; then
+   sed_args+=(-e "/^subdir('putsurface')$/d")
+   fi
+
+   if ! use vainfo ; then
+   sed_args+=(-e "/^subdir('vainfo')$/d")
+   fi
+
+   if [[ ${#sed_args[@]} -gt 0 ]] ; then
+   sed "${sed_args[@]}" -i meson.build || die
+   fi
+}
+
+src_configure() {
+   local emesonargs=(
+   -Ddrm=true
+   $(meson_use X x11)
+   $(meson_use wayland)
+   $(meson_use test tests)
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+
+   if ! use test ; then
+   rm -f "${ED}"/usr/bin/test_va_api || die
+   fi
+}
+
+pkg_postinst() {
+   if use test ; then
+   elog "Tests must be run manually with the test_va_api binary"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/deja-dup/, profiles/

2022-10-09 Thread Matt Turner
commit: dd1bfbc402a89003990aca7511b6d50e57133c5d
Author: Pascal Jäger  leimstift  de>
AuthorDate: Sun Oct  2 20:56:49 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1bfbc4

app-backup/deja-dup: Version bump to 43.4

Signed-off-by: Pascal Jäger  leimstift.de>
Signed-off-by: Matt Turner  gentoo.org>

 app-backup/deja-dup/Manifest |  1 +
 app-backup/deja-dup/deja-dup-43.4.ebuild | 60 
 profiles/package.mask|  1 +
 3 files changed, 62 insertions(+)

diff --git a/app-backup/deja-dup/Manifest b/app-backup/deja-dup/Manifest
index ef328d5a8735..e7e3e533f344 100644
--- a/app-backup/deja-dup/Manifest
+++ b/app-backup/deja-dup/Manifest
@@ -1,2 +1,3 @@
 DIST deja-dup-42.7.tar.bz2 1384797 BLAKE2B 
f462df835039606b721d935e086e51ee27e861baa1fbc5836bb79952c838921cf5f28d439465451c5259bc2c77fa9cb839488c8b0196c6d176e32d9e42180539
 SHA512 
80c57fe75635346cf2597195e7f7b76e2562aaa6900e78fbfb7ad6ada9c268df36d4e16aa7ca522e1570987f5826586e1cab5fecb7d5ba90e34a23a349b47a74
 DIST deja-dup-42.8.tar.bz2 1467818 BLAKE2B 
6f02fc458890f076bf0a8e1ffdc9d72880fd9f1a692d439ecfa5d8b08234472f3ae27aa801144b3e42e9c8b67b550c0882dc93c23d27e6e428ce1eddd80a912d
 SHA512 
76c98e8635ffae076008efa73a92860c6d4e67d39339d452c253269bb3ed032b819ac40d65c2d8fbf195ecaf304796f516e861b0552be972838f95bf59af0a5c
+DIST deja-dup-43.4.tar.bz2 989830 BLAKE2B 
c67056b4498dbdb8f1346d682449e4a23070f052d6c4b3e205bd10da63148a6327666de79d163bd6450b34c130fedcdccc2053fabf7578a2d7d68decb325f510
 SHA512 
2413a3b1ef891e0151d61ee6fcec00f609f209da0faebe387dc8dba4abb55aa4ed925bdfee5768c7e8e8794bc9a793fb0769947030102aed57ac56983cd78943

diff --git a/app-backup/deja-dup/deja-dup-43.4.ebuild 
b/app-backup/deja-dup/deja-dup-43.4.ebuild
new file mode 100644
index ..b05a0347fbcb
--- /dev/null
+++ b/app-backup/deja-dup/deja-dup-43.4.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson gnome2-utils vala xdg
+
+DESCRIPTION="Simple backup tool using duplicity back-end"
+HOMEPAGE="https://wiki.gnome.org/Apps/DejaDup;
+SRC_URI="https://gitlab.gnome.org/World/deja-dup/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   $(vala_depend)
+   dev-util/intltool
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+   test? ( dev-libs/appstream-glib )
+"
+
+# deja-dup can not recognize duplicity-1.0.0 and throws an error
+# https://gitlab.gnome.org/World/deja-dup/-/issues/334
+DEPEND="
+   >=gui-libs/libadwaita-1.0:1
+   >=dev-libs/glib-2.70.0:2
+   >=dev-libs/libgpg-error-1.33
+   >=gui-libs/gtk-4.6:4
+   >=dev-libs/json-glib-1.2
+   >=dev-libs/glib-2.64:2[dbus]
+   >=app-crypt/libsecret-0.18.6[vala]
+   >=net-libs/libsoup-3.0:3.0
+   >=app-backup/duplicity-0.8.21
+   =app-arch/file-roller-43
+>=app-backup/deja-dup-43
 >=app-text/libgepub-0.7.0
 >=app-misc/tracker-3.4.0-r1
 >=app-misc/tracker-miners-3.4.0-r1



[gentoo-commits] repo/gentoo:master commit in: app-backup/deja-dup/

2022-10-09 Thread Matt Turner
commit: 1cda5334ed6e4671c2a35a296d3c2035d096f020
Author: Pascal Jäger  leimstift  de>
AuthorDate: Mon Oct  3 06:55:20 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:36:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cda5334

app-backup/deja-dup: Drop old versions

Closes: https://github.com/gentoo/gentoo/pull/27583
Signed-off-by: Pascal Jäger  leimstift.de>
Signed-off-by: Matt Turner  gentoo.org>

 app-backup/deja-dup/Manifest|  1 -
 app-backup/deja-dup/deja-dup-42.7-r1.ebuild | 57 -
 2 files changed, 58 deletions(-)

diff --git a/app-backup/deja-dup/Manifest b/app-backup/deja-dup/Manifest
index e7e3e533f344..67759fa21765 100644
--- a/app-backup/deja-dup/Manifest
+++ b/app-backup/deja-dup/Manifest
@@ -1,3 +1,2 @@
-DIST deja-dup-42.7.tar.bz2 1384797 BLAKE2B 
f462df835039606b721d935e086e51ee27e861baa1fbc5836bb79952c838921cf5f28d439465451c5259bc2c77fa9cb839488c8b0196c6d176e32d9e42180539
 SHA512 
80c57fe75635346cf2597195e7f7b76e2562aaa6900e78fbfb7ad6ada9c268df36d4e16aa7ca522e1570987f5826586e1cab5fecb7d5ba90e34a23a349b47a74
 DIST deja-dup-42.8.tar.bz2 1467818 BLAKE2B 
6f02fc458890f076bf0a8e1ffdc9d72880fd9f1a692d439ecfa5d8b08234472f3ae27aa801144b3e42e9c8b67b550c0882dc93c23d27e6e428ce1eddd80a912d
 SHA512 
76c98e8635ffae076008efa73a92860c6d4e67d39339d452c253269bb3ed032b819ac40d65c2d8fbf195ecaf304796f516e861b0552be972838f95bf59af0a5c
 DIST deja-dup-43.4.tar.bz2 989830 BLAKE2B 
c67056b4498dbdb8f1346d682449e4a23070f052d6c4b3e205bd10da63148a6327666de79d163bd6450b34c130fedcdccc2053fabf7578a2d7d68decb325f510
 SHA512 
2413a3b1ef891e0151d61ee6fcec00f609f209da0faebe387dc8dba4abb55aa4ed925bdfee5768c7e8e8794bc9a793fb0769947030102aed57ac56983cd78943

diff --git a/app-backup/deja-dup/deja-dup-42.7-r1.ebuild 
b/app-backup/deja-dup/deja-dup-42.7-r1.ebuild
deleted file mode 100644
index 7dd2294edcba..
--- a/app-backup/deja-dup/deja-dup-42.7-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson gnome2-utils vala xdg
-
-DESCRIPTION="Simple backup tool using duplicity back-end"
-HOMEPAGE="https://wiki.gnome.org/Apps/DejaDup;
-SRC_URI="https://gitlab.gnome.org/World/deja-dup/-/archive/${PV}/${P}.tar.bz2;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   $(vala_depend)
-   dev-util/intltool
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-   test? ( dev-libs/appstream-glib )
-"
-
-DEPEND="
-   >=app-backup/duplicity-0.7.14
-   >=app-crypt/libsecret-0.18.6[vala]
-   >=dev-libs/glib-2.64:2[dbus]
-   >=dev-libs/json-glib-1.2
-   dev-libs/libgpg-error
-   >=gui-libs/libhandy-1.0:1
-   >=net-libs/libsoup-2.48:2.4
-   >=x11-libs/gtk+-3.22:3
-   >=x11-libs/libnotify-0.7
-"
-
-RDEPEND="${DEPEND}
-   gnome-base/dconf
-   gnome-base/gvfs[fuse]
-"
-
-src_prepare() {
-   default
-   vala_src_prepare
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: app-backup/deja-dup/

2022-10-09 Thread Matt Turner
commit: a858f59f36bb3461fbc70b4d8b6c52367b5b0c10
Author: Pascal Jäger  leimstift  de>
AuthorDate: Mon Oct  3 06:53:11 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:36:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a858f59f

app-backup/deja-dup: Require duplicity < 1.0.0

See https://gitlab.gnome.org/World/deja-dup/-/issues/334

Signed-off-by: Pascal Jäger  leimstift.de>
Signed-off-by: Matt Turner  gentoo.org>

 .../deja-dup/{deja-dup-42.8.ebuild => deja-dup-42.8-r1.ebuild}   | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-backup/deja-dup/deja-dup-42.8.ebuild 
b/app-backup/deja-dup/deja-dup-42.8-r1.ebuild
similarity index 84%
rename from app-backup/deja-dup/deja-dup-42.8.ebuild
rename to app-backup/deja-dup/deja-dup-42.8-r1.ebuild
index 77d542c306d4..19087d6d3c7d 100644
--- a/app-backup/deja-dup/deja-dup-42.8.ebuild
+++ b/app-backup/deja-dup/deja-dup-42.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,9 +24,12 @@ BDEPEND="
test? ( dev-libs/appstream-glib )
 "
 
+# deja-dup can not recognize duplicity-1.0.0 and throws an error
+# https://gitlab.gnome.org/World/deja-dup/-/issues/334
 DEPEND="
dev-libs/atk
>=app-backup/duplicity-0.7.14
+   =app-crypt/libsecret-0.18.6[vala]
>=dev-libs/glib-2.64:2[dbus]
>=dev-libs/json-glib-1.2



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voamrwbenc/

2022-10-09 Thread Matt Turner
commit: 6706c25eff5e49024a0e1ea244e15ac9a0b9fd38
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:30 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6706c25e

media-plugins/gst-plugins-voamrwbenc: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-voamrwbenc/Manifest   |  1 -
 .../gst-plugins-voamrwbenc-1.20.2.ebuild| 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-voamrwbenc/Manifest 
b/media-plugins/gst-plugins-voamrwbenc/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-voamrwbenc/Manifest
+++ b/media-plugins/gst-plugins-voamrwbenc/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.20.2.ebuild 
b/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.20.2.ebuild
deleted file mode 100644
index c7570f67a172..
--- a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="AMR-WB audio encoder plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-sbc/

2022-10-09 Thread Matt Turner
commit: 25d245ec3fe789c0cceb585e3511155b941f1915
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:20 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25d245ec

media-plugins/gst-plugins-sbc: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-sbc/Manifest|  1 -
 .../gst-plugins-sbc/gst-plugins-sbc-1.20.2.ebuild | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-sbc/Manifest 
b/media-plugins/gst-plugins-sbc/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-sbc/Manifest
+++ b/media-plugins/gst-plugins-sbc/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-sbc/gst-plugins-sbc-1.20.2.ebuild 
b/media-plugins/gst-plugins-sbc/gst-plugins-sbc-1.20.2.ebuild
deleted file mode 100644
index 73534799643e..
--- a/media-plugins/gst-plugins-sbc/gst-plugins-sbc-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="SBC encoder and decoder plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   media-libs/sbc[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-rtmp/

2022-10-09 Thread Matt Turner
commit: 014bb7cb20b3f042167320e893ae84900479dad9
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:20 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=014bb7cb

media-plugins/gst-plugins-rtmp: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-rtmp/Manifest |  1 -
 .../gst-plugins-rtmp/gst-plugins-rtmp-1.20.2.ebuild | 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-rtmp/Manifest 
b/media-plugins/gst-plugins-rtmp/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-rtmp/Manifest
+++ b/media-plugins/gst-plugins-rtmp/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.20.2.ebuild 
b/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.20.2.ebuild
deleted file mode 100644
index b0cc6fbdd2a4..
--- a/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="RTMP source/sink plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mpeg2enc/

2022-10-09 Thread Matt Turner
commit: e38dade4f6e9e6b32f9ca48363858677793d6c7c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:12 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38dade4

media-plugins/gst-plugins-mpeg2enc: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-mpeg2enc/Manifest |  1 -
 .../gst-plugins-mpeg2enc-1.20.2.ebuild  | 21 -
 2 files changed, 22 deletions(-)

diff --git a/media-plugins/gst-plugins-mpeg2enc/Manifest 
b/media-plugins/gst-plugins-mpeg2enc/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-mpeg2enc/Manifest
+++ b/media-plugins/gst-plugins-mpeg2enc/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.20.2.ebuild 
b/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.20.2.ebuild
deleted file mode 100644
index 3cbd8a64b1cf..
--- a/media-plugins/gst-plugins-mpeg2enc/gst-plugins-mpeg2enc-1.20.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="MPEG-1/2 video encoding plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=media-video/mjpegtools-2.1.0-r1:=[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Dgpl=enabled
-   )
-
-   gstreamer_multilib_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x265/

2022-10-09 Thread Matt Turner
commit: 4e57e53b1dd22f0f02b7d4aa3cb069787aa4d55b
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e57e53b

media-plugins/gst-plugins-x265: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-x265/Manifest|  1 -
 .../gst-plugins-x265-1.20.2.ebuild | 23 --
 2 files changed, 24 deletions(-)

diff --git a/media-plugins/gst-plugins-x265/Manifest 
b/media-plugins/gst-plugins-x265/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-x265/Manifest
+++ b/media-plugins/gst-plugins-x265/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.20.2.ebuild 
b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.20.2.ebuild
deleted file mode 100644
index 58e00d4f2a38..
--- a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.20.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE="gst-plugins-bad"
-
-inherit gstreamer-meson
-
-DESCRIPTION="H.265 encoder plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   media-libs/x265:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Dgpl=enabled
-   )
-
-   gstreamer_multilib_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-kate/

2022-10-09 Thread Matt Turner
commit: 9076c38732e13b9e98fcebb1a724eda09e4e86c0
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:04 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9076c387

media-plugins/gst-plugins-kate: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-kate/Manifest  |  1 -
 .../gst-plugins-kate/gst-plugins-kate-1.20.2.ebuild  | 16 
 2 files changed, 17 deletions(-)

diff --git a/media-plugins/gst-plugins-kate/Manifest 
b/media-plugins/gst-plugins-kate/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-kate/Manifest
+++ b/media-plugins/gst-plugins-kate/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-kate/gst-plugins-kate-1.20.2.ebuild 
b/media-plugins/gst-plugins-kate/gst-plugins-kate-1.20.2.ebuild
deleted file mode 100644
index 9fb2cd02ddfc..
--- a/media-plugins/gst-plugins-kate/gst-plugins-kate-1.20.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Kate overlay codec suppport plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=media-libs/libkate-0.1.7[${MULTILIB_USEDEP}]
-   >=media-libs/libtiger-0.3.2[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-zbar/

2022-10-09 Thread Matt Turner
commit: 663a72dedb15266be87c72d1601bb748f8e0717f
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663a72de

media-plugins/gst-plugins-zbar: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-zbar/Manifest |  1 -
 .../gst-plugins-zbar/gst-plugins-zbar-1.20.2.ebuild | 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-zbar/Manifest 
b/media-plugins/gst-plugins-zbar/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-zbar/Manifest
+++ b/media-plugins/gst-plugins-zbar/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-zbar/gst-plugins-zbar-1.20.2.ebuild 
b/media-plugins/gst-plugins-zbar/gst-plugins-zbar-1.20.2.ebuild
deleted file mode 100644
index 4dd9319efe1c..
--- a/media-plugins/gst-plugins-zbar/gst-plugins-zbar-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Bar codes detection in video streams for GStreamer"
-KEYWORDS="~amd64"
-
-RDEPEND=">=media-gfx/zbar-0.10_p20121015-r2[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voaacenc/

2022-10-09 Thread Matt Turner
commit: e52043b1616a0237171f7e5e45a2b76d078944a5
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:29 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52043b1

media-plugins/gst-plugins-voaacenc: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-voaacenc/Manifest |  1 -
 .../gst-plugins-voaacenc/gst-plugins-voaacenc-1.20.2.ebuild | 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-voaacenc/Manifest 
b/media-plugins/gst-plugins-voaacenc/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-voaacenc/Manifest
+++ b/media-plugins/gst-plugins-voaacenc/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.20.2.ebuild 
b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.20.2.ebuild
deleted file mode 100644
index cfbce4d36571..
--- a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="AAC encoder plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-hls/

2022-10-09 Thread Matt Turner
commit: 5b5f32a8b91bf863e84edcfe90cee4ee5d7ef80a
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:03 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5f32a8

media-plugins/gst-plugins-hls: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-hls/Manifest |  1 -
 .../gst-plugins-hls/gst-plugins-hls-1.20.2.ebuild  | 36 --
 2 files changed, 37 deletions(-)

diff --git a/media-plugins/gst-plugins-hls/Manifest 
b/media-plugins/gst-plugins-hls/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-hls/Manifest
+++ b/media-plugins/gst-plugins-hls/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-hls/gst-plugins-hls-1.20.2.ebuild 
b/media-plugins/gst-plugins-hls/gst-plugins-hls-1.20.2.ebuild
deleted file mode 100644
index 0ee83c8a1705..
--- a/media-plugins/gst-plugins-hls/gst-plugins-hls-1.20.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="HTTP live streaming plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/gst-plugins-bad-1.18.4-use-system-libs-hls.patch
-)
-
-src_prepare() {
-   default
-   gstreamer_system_library gstadaptivedemux_dep:gstadaptivedemux
-   gstreamer_system_package pbutils_dep:gstreamer-pbutils
-   gstreamer_system_package tag_dep:gstreamer-tag
-   gstreamer_system_package video_dep:gstreamer-video
-   gstreamer_system_library gsturidownloader_dep:gsturidownloader
-}
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Dhls-crypto=nettle
-   )
-
-   gstreamer_multilib_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-srt/

2022-10-09 Thread Matt Turner
commit: 53e8413f9481bac30b342a3a68abdc2446d70c00
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:25 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e8413f

media-plugins/gst-plugins-srt: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-srt/Manifest|  1 -
 .../gst-plugins-srt/gst-plugins-srt-1.20.2.ebuild | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-srt/Manifest 
b/media-plugins/gst-plugins-srt/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-srt/Manifest
+++ b/media-plugins/gst-plugins-srt/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-srt/gst-plugins-srt-1.20.2.ebuild 
b/media-plugins/gst-plugins-srt/gst-plugins-srt-1.20.2.ebuild
deleted file mode 100644
index 900b56229995..
--- a/media-plugins/gst-plugins-srt/gst-plugins-srt-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Secure reliable transport (SRT) transfer plugin for GStreamer"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   net-libs/srt:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-dash/

2022-10-09 Thread Matt Turner
commit: f6dc1972b37e25237970524d5bfc080d609374d5
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:47:56 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6dc1972

media-plugins/gst-plugins-dash: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-dash/Manifest|  1 -
 .../gst-plugins-dash-1.20.2.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/media-plugins/gst-plugins-dash/Manifest 
b/media-plugins/gst-plugins-dash/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-dash/Manifest
+++ b/media-plugins/gst-plugins-dash/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-dash/gst-plugins-dash-1.20.2.ebuild 
b/media-plugins/gst-plugins-dash/gst-plugins-dash-1.20.2.ebuild
deleted file mode 100644
index b377f2b1cd6b..
--- a/media-plugins/gst-plugins-dash/gst-plugins-dash-1.20.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="MPEG-DASH plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-   gstreamer_system_library gstadaptivedemux_dep:gstadaptivedemux
-   gstreamer_system_library gstisoff_dep:gstisoff
-   gstreamer_system_package pbutils_dep:gstreamer-pbutils
-   gstreamer_system_package tag_dep:gstreamer-tag
-   gstreamer_system_library gsturidownloader_dep:gsturidownloader
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soundtouch/

2022-10-09 Thread Matt Turner
commit: 24fc742274c3b6ba29d21f909fce0ab10a5e2687
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:24 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24fc7422

media-plugins/gst-plugins-soundtouch: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-soundtouch/Manifest   |  1 -
 .../gst-plugins-soundtouch-1.20.2.ebuild| 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-soundtouch/Manifest 
b/media-plugins/gst-plugins-soundtouch/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-soundtouch/Manifest
+++ b/media-plugins/gst-plugins-soundtouch/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.20.2.ebuild 
b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.20.2.ebuild
deleted file mode 100644
index 00266e4f218b..
--- a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Beats-per-minute detection and pitch controlling plugin for 
GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=media-libs/libsoundtouch-1.7.1[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



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

2022-10-09 Thread Matt Turner
commit: 9c679200f60260832a48fcd725c48354465de180
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:37 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c679200

media-video/pitivi: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-video/pitivi/Manifest|  1 -
 .../files/pitivi-2021.05-meson-compatibility.patch | 45 ---
 media-video/pitivi/pitivi-2021.05-r1.ebuild| 91 --
 3 files changed, 137 deletions(-)

diff --git a/media-video/pitivi/Manifest b/media-video/pitivi/Manifest
index c68de366d021..5bba247d761b 100644
--- a/media-video/pitivi/Manifest
+++ b/media-video/pitivi/Manifest
@@ -1,2 +1 @@
-DIST pitivi-2021.05.tar.xz 11303884 BLAKE2B 
f87f16cc1ab7ea0f97bc92cdd9f1d5993051ed67b26473748aeb327a4cb51bb32510c845e1665ec3eb3b67c3f0f113c05a514076bad4e13d0fadbd725bcb6bb6
 SHA512 
3ecb571d501b634ca3a369d4020954cc0b2bc101ceb12bee74d6b38c9ca8f2bf15fe94030421c43503870128d8218548feca7d32cf25b4afcf610365784ca9bb
 DIST pitivi-2022.06.tar.xz 11352412 BLAKE2B 
f7d14f9bff136a8b50c0ce82e66fad92ba7df429d8cf588c526ae04f673617d882a0cc024c5a21c97471d2b31cb0001cefdeb8e32c9f62e1c6600d9500d1e428
 SHA512 
649c8e61d9545cbf35a0a0c8f648490c14c8bfb6c6637794887c03bffd6998c63cb2cc22102cd2f7a59974f79488a13f29beceadab29ddd1c1c01abff33a85fa

diff --git a/media-video/pitivi/files/pitivi-2021.05-meson-compatibility.patch 
b/media-video/pitivi/files/pitivi-2021.05-meson-compatibility.patch
deleted file mode 100644
index 990f84b06795..
--- a/media-video/pitivi/files/pitivi-2021.05-meson-compatibility.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From ddf2369d1fc6fddd63f676cc905a8b8e96291a4c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= 
-Date: Tue, 25 Jan 2022 15:37:34 +0200
-Subject: [PATCH] Fix compatibility with meson 0.61
-
-Previously positional arguments to i18n.merge_files() were just ignored
-but this became an error.

- data/meson.build | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/data/meson.build b/data/meson.build
-index 2ea82cf12..60d23169b 100644
 a/data/meson.build
-+++ b/data/meson.build
-@@ -6,7 +6,7 @@ install_subdir('audiopresets', install_dir: pkgdatadir)
- install_subdir('videopresets', install_dir: pkgdatadir)
- install_subdir('gstpresets', install_dir: pkgdatadir)
- 
--desktop_file = i18n.merge_file('org.pitivi.Pitivi.desktop',
-+desktop_file = i18n.merge_file(
- type: 'desktop',
- output : 'org.pitivi.Pitivi.desktop',
- input : 'org.pitivi.Pitivi.desktop.in',
-@@ -25,7 +25,7 @@ if desktop_file_validate.found()
-   )
- endif
- 
--appdata_file = i18n.merge_file('org.pitivi.Pitivi.appdata.xml',
-+appdata_file = i18n.merge_file(
- type: 'xml',
- output : 'org.pitivi.Pitivi.appdata.xml',
- input : 'org.pitivi.Pitivi.appdata.xml.in',
-@@ -43,7 +43,7 @@ if appstream_util.found()
-   )
- endif
- 
--i18n.merge_file('org.pitivi.Pitivi-mime.xml',
-+i18n.merge_file(
- output : 'org.pitivi.Pitivi-mime.xml',
- input : 'org.pitivi.Pitivi-mime.xml.in',
- po_dir: podir,
--- 
-GitLab
-

diff --git a/media-video/pitivi/pitivi-2021.05-r1.ebuild 
b/media-video/pitivi/pitivi-2021.05-r1.ebuild
deleted file mode 100644
index 92d0aad1b722..
--- a/media-video/pitivi/pitivi-2021.05-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite"
-
-inherit gnome.org meson python-single-r1 xdg
-
-DESCRIPTION="A non-linear video editor using the GStreamer multimedia 
framework"
-HOMEPAGE="https://www.pitivi.org;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# Do not forget to check pitivi/check.py for dependencies!!!
-# gsound, libav, libnotify and v4l are optional
-GST_VER="1.18.4"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   >=dev-python/pycairo-1.10[${PYTHON_USEDEP}]
-   ')
-   >=x11-libs/cairo-1.10
-
-   >=media-libs/gstreamer-${GST_VER}:1.0[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-libs/glib-2.30.0:2
-
-   >=dev-libs/gobject-introspection-1.34:=
-
-   dev-libs/libpeas[${PYTHON_SINGLE_USEDEP}]
-
-   $(python_gen_cond_dep '
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   >=dev-python/gst-python-1.4:1.0[${PYTHON_USEDEP}]
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}]
-   ')
-
-   gnome-base/librsvg:=
-
-   >=media-libs/gstreamer-editing-services-${GST_VER}:1.0[introspection]
-   >=media-libs/gst-plugins-base-${GST_VER}:1.0[introspection,theora]
-   

[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-webrtc/

2022-10-09 Thread Matt Turner
commit: e12f42d624c10187f6590a48e9bc8e70697ba28e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:32 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12f42d6

media-plugins/gst-plugins-webrtc: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-webrtc/Manifest  |  1 -
 .../gst-plugins-webrtc-1.20.2.ebuild   | 42 --
 2 files changed, 43 deletions(-)

diff --git a/media-plugins/gst-plugins-webrtc/Manifest 
b/media-plugins/gst-plugins-webrtc/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-webrtc/Manifest
+++ b/media-plugins/gst-plugins-webrtc/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.20.2.ebuild 
b/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.20.2.ebuild
deleted file mode 100644
index f37f6385d54d..
--- a/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.20.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="WebRTC plugins for GStreamer"
-KEYWORDS="amd64"
-
-# == ext/webrtc/meson.build
-# dev-libs/glib (eclass): gio_dep
-# net-libs/libnice: libnice_dep
-# media-libs/gst-plugins-base: gstbase_dep, gstsdp_dep, gstapp_dep, gstrtp_dep
-# media-plugins/gst-plugins-sctp: gstsctp_dep
-# == ext/webrtcdsp/meson.build
-# media-libs/gst-plugins-base: gstbase_dep, gstaudio_dep
-# media-libs/gst-plugins-bad: gstbadaudio_dep
-# media-libs/webrtc-audio-processing: webrtc_dep
-# (android): gnustl_dep
-# == gst-libs/gst/webrtc/meson.build
-# media-libs/gst-plugins-base: gstbase_dep, gstsdp_dep
-RDEPEND="
-   >=media-libs/gst-plugins-base-${PV}:1.0[${MULTILIB_USEDEP}]
-   >=media-libs/gst-plugins-bad-${PV}:1.0[${MULTILIB_USEDEP}]
-   >=media-plugins/gst-plugins-sctp-${PV}:1.0[${MULTILIB_USEDEP}]
-   >=media-libs/webrtc-audio-processing-0.2:0[${MULTILIB_USEDEP}]
-   =net-libs/libnice-0.1.17[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-GST_PLUGINS_ENABLED="webrtc webrtcdsp"
-GST_PLUGINS_BUILD_DIR="webrtc webrtcdsp"
-
-src_prepare() {
-   default
-   gstreamer_system_package gstwebrtc_dep:gstreamer-webrtc
-   gstreamer_system_package gstsctp_dep:gstreamer-sctp
-   gstreamer_system_package gstbadaudio_dep:gstreamer-bad-audio
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-dtls/

2022-10-09 Thread Matt Turner
commit: f25b582f86393766fd632c3b6ef132dc79b56ed3
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:47:57 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25b582f

media-plugins/gst-plugins-dtls: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-dtls/Manifest   |  1 -
 .../gst-plugins-dtls/gst-plugins-dtls-1.20.2.ebuild   | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-dtls/Manifest 
b/media-plugins/gst-plugins-dtls/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-dtls/Manifest
+++ b/media-plugins/gst-plugins-dtls/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-dtls/gst-plugins-dtls-1.20.2.ebuild 
b/media-plugins/gst-plugins-dtls/gst-plugins-dtls-1.20.2.ebuild
deleted file mode 100644
index 1ed2f052e089..
--- a/media-plugins/gst-plugins-dtls/gst-plugins-dtls-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="DTLS encoder/decoder with SRTP support plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-libs/openssl-1.0.1:0=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-smoothstreaming/

2022-10-09 Thread Matt Turner
commit: 4254607578dfceaa6f3e692f84f682e629481b37
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:23 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42546075

media-plugins/gst-plugins-smoothstreaming: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-smoothstreaming/Manifest  |  1 -
 .../gst-plugins-smoothstreaming-1.20.2.ebuild   | 21 -
 2 files changed, 22 deletions(-)

diff --git a/media-plugins/gst-plugins-smoothstreaming/Manifest 
b/media-plugins/gst-plugins-smoothstreaming/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-smoothstreaming/Manifest
+++ b/media-plugins/gst-plugins-smoothstreaming/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.20.2.ebuild
 
b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.20.2.ebuild
deleted file mode 100644
index dc567bedad31..
--- 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.20.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Smooth Streaming plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-   gstreamer_system_library gstadaptivedemux_dep:gstadaptivedemux
-   gstreamer_system_package gstcodecparsers_dep:gstreamer-codecparsers
-   gstreamer_system_library gstisoff_dep:gstisoff
-   gstreamer_system_library gsturidownloader_dep:gsturidownloader
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-openh264/

2022-10-09 Thread Matt Turner
commit: 9f00758690749c0422077ec89e0af8da7e20f61f
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:16 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f007586

media-plugins/gst-plugins-openh264: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-openh264/Manifest   |  1 -
 .../gst-plugins-openh264-1.20.2.ebuild| 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-openh264/Manifest 
b/media-plugins/gst-plugins-openh264/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-openh264/Manifest
+++ b/media-plugins/gst-plugins-openh264/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.20.2.ebuild 
b/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.20.2.ebuild
deleted file mode 100644
index c2d5af7e41aa..
--- a/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="H.264 encoder/decoder plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=media-libs/openh264-1.3:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-sctp/

2022-10-09 Thread Matt Turner
commit: 54eeed7df23ab8fc85d08a385d568e85c3069ae1
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:21 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54eeed7d

media-plugins/gst-plugins-sctp: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-sctp/Manifest   |  1 -
 .../gst-plugins-sctp/gst-plugins-sctp-1.20.2.ebuild   | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-sctp/Manifest 
b/media-plugins/gst-plugins-sctp/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-sctp/Manifest
+++ b/media-plugins/gst-plugins-sctp/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-sctp/gst-plugins-sctp-1.20.2.ebuild 
b/media-plugins/gst-plugins-sctp/gst-plugins-sctp-1.20.2.ebuild
deleted file mode 100644
index 82ba2fdda97d..
--- a/media-plugins/gst-plugins-sctp/gst-plugins-sctp-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="SCTP plugins for GStreamer"
-KEYWORDS="amd64"
-
-RDEPEND="
-   >=media-libs/gst-plugins-base-${PV}:1.0[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-uvch264/

2022-10-09 Thread Matt Turner
commit: e77f14de43cf6a36c4627fcce7c6aca248b16f15
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:27 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77f14de

media-plugins/gst-plugins-uvch264: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-uvch264/Manifest  |  1 -
 .../gst-plugins-uvch264-1.20.2.ebuild   | 21 -
 2 files changed, 22 deletions(-)

diff --git a/media-plugins/gst-plugins-uvch264/Manifest 
b/media-plugins/gst-plugins-uvch264/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-uvch264/Manifest
+++ b/media-plugins/gst-plugins-uvch264/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.20.2.ebuild 
b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.20.2.ebuild
deleted file mode 100644
index 20f8ce4b774e..
--- a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.20.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="UVC compliant H264 encoding cameras plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-libs/libgudev:=[${MULTILIB_USEDEP}]
-   virtual/libusb:1[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-   gstreamer_system_library gstbasecamerabin_dep:libgstbasecamerabinsrc
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-lv2/

2022-10-09 Thread Matt Turner
commit: e85158ea99406aa6749e527658d78c592a0cbd39
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:10 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e85158ea

media-plugins/gst-plugins-lv2: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-lv2/Manifest   |  1 -
 .../gst-plugins-lv2/gst-plugins-lv2-1.20.2.ebuild| 16 
 2 files changed, 17 deletions(-)

diff --git a/media-plugins/gst-plugins-lv2/Manifest 
b/media-plugins/gst-plugins-lv2/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-lv2/Manifest
+++ b/media-plugins/gst-plugins-lv2/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-lv2/gst-plugins-lv2-1.20.2.ebuild 
b/media-plugins/gst-plugins-lv2/gst-plugins-lv2-1.20.2.ebuild
deleted file mode 100644
index 8343e46152db..
--- a/media-plugins/gst-plugins-lv2/gst-plugins-lv2-1.20.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Lv2 elements for Gstreamer"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-
-RDEPEND="
-   >=media-libs/lv2-1.14.0-r1[${MULTILIB_USEDEP}]
-   >=media-libs/lilv-0.24.2-r2[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mplex/

2022-10-09 Thread Matt Turner
commit: fc8038d552a1c2c3b3e3543b82c31863ad53cc5d
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:14 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8038d5

media-plugins/gst-plugins-mplex: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-mplex/Manifest|  1 -
 .../gst-plugins-mplex-1.20.2.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/media-plugins/gst-plugins-mplex/Manifest 
b/media-plugins/gst-plugins-mplex/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-mplex/Manifest
+++ b/media-plugins/gst-plugins-mplex/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.20.2.ebuild 
b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.20.2.ebuild
deleted file mode 100644
index 7ab01507df43..
--- a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.20.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="MPEG/DVD/SVCD/VCD video/audio multiplexing plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
-
-RDEPEND=">=media-video/mjpegtools-2.1.0-r1:=[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Dgpl=enabled
-   )
-
-   gstreamer_multilib_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-ladspa/

2022-10-09 Thread Matt Turner
commit: 8cabcd9e0126a212400eaf1e2a90f0f05df684e8
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:05 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cabcd9e

media-plugins/gst-plugins-ladspa: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-ladspa/Manifest|  1 -
 .../gst-plugins-ladspa/gst-plugins-ladspa-1.20.2.ebuild  | 16 
 2 files changed, 17 deletions(-)

diff --git a/media-plugins/gst-plugins-ladspa/Manifest 
b/media-plugins/gst-plugins-ladspa/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-ladspa/Manifest
+++ b/media-plugins/gst-plugins-ladspa/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-ladspa/gst-plugins-ladspa-1.20.2.ebuild 
b/media-plugins/gst-plugins-ladspa/gst-plugins-ladspa-1.20.2.ebuild
deleted file mode 100644
index b80569b2e3df..
--- a/media-plugins/gst-plugins-ladspa/gst-plugins-ladspa-1.20.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Ladspa elements for Gstreamer"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-
-RDEPEND="
-   >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}]
-   media-libs/liblrdf[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libde265/

2022-10-09 Thread Matt Turner
commit: 9fd8a0d293908175a2a25e4efc029b625416c1bd
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:48:07 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fd8a0d2

media-plugins/gst-plugins-libde265: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-libde265/Manifest   |  1 -
 .../gst-plugins-libde265-1.20.2.ebuild| 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-plugins/gst-plugins-libde265/Manifest 
b/media-plugins/gst-plugins-libde265/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-libde265/Manifest
+++ b/media-plugins/gst-plugins-libde265/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-libde265/gst-plugins-libde265-1.20.2.ebuild 
b/media-plugins/gst-plugins-libde265/gst-plugins-libde265-1.20.2.ebuild
deleted file mode 100644
index 05b2ef9fb58a..
--- a/media-plugins/gst-plugins-libde265/gst-plugins-libde265-1.20.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="H.265 decoder plugin for GStreamer"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=media-libs/libde265-0.9[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-colormanagement/

2022-10-09 Thread Matt Turner
commit: 0ea9a98ec483a377c9943b7c870eeec347e9ce74
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:47:56 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea9a98e

media-plugins/gst-plugins-colormanagement: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-colormanagement/Manifest  |  1 -
 .../gst-plugins-colormanagement-1.20.2.ebuild   | 13 -
 2 files changed, 14 deletions(-)

diff --git a/media-plugins/gst-plugins-colormanagement/Manifest 
b/media-plugins/gst-plugins-colormanagement/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-colormanagement/Manifest
+++ b/media-plugins/gst-plugins-colormanagement/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git 
a/media-plugins/gst-plugins-colormanagement/gst-plugins-colormanagement-1.20.2.ebuild
 
b/media-plugins/gst-plugins-colormanagement/gst-plugins-colormanagement-1.20.2.ebuild
deleted file mode 100644
index 7978ea328fef..
--- 
a/media-plugins/gst-plugins-colormanagement/gst-plugins-colormanagement-1.20.2.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="Color management correction GStreamer plugins"
-KEYWORDS="~amd64"
-
-RDEPEND=">=media-libs/lcms-2.7:2[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-dts/

2022-10-09 Thread Matt Turner
commit: f8394e4c0a26182fa859a38584f1fa20c3b04e8f
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:47:58 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 02:34:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8394e4c

media-plugins/gst-plugins-dts: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-dts/Manifest |  1 -
 .../gst-plugins-dts/gst-plugins-dts-1.20.2.ebuild  | 25 --
 2 files changed, 26 deletions(-)

diff --git a/media-plugins/gst-plugins-dts/Manifest 
b/media-plugins/gst-plugins-dts/Manifest
index fdff776ab51a..1b587f180504 100644
--- a/media-plugins/gst-plugins-dts/Manifest
+++ b/media-plugins/gst-plugins-dts/Manifest
@@ -1,2 +1 @@
-DIST gst-plugins-bad-1.20.2.tar.xz 6216208 BLAKE2B 
bbbe77a1255991a2f96696996fb0c99f14f6d63fef455feb1ce90ae518bb9f80fd61bcfb223c20407b8d6240faaa93478495f8e9fda16fab36a311d167e88e25
 SHA512 
3f98973dc07ead745418e0a30f9f6b5c8d328e3d126f54d92c10ab5da04271768a5c5dffc36ea24ccf8fb516b1e3733be9fb18dc0db419dea4d37d17018f8a70
 DIST gst-plugins-bad-1.20.3.tar.xz 6222824 BLAKE2B 
01aae59adbe76b8e50a49fb8bb8037e6f3aa93cbc2b658aab05ebbf30f8d1aef98c1981712caa39e3c9d08f1e0c9d76f2f874f7d2fdd994b3a0735b2809eafdf
 SHA512 
cfcf126eabff550455decd7054a269b73489708c10a6b6090dddb5fde29bfba07ed330c339927ff170e025fa3a08d2ffb822322dc3798679366207a54132c71b

diff --git a/media-plugins/gst-plugins-dts/gst-plugins-dts-1.20.2.ebuild 
b/media-plugins/gst-plugins-dts/gst-plugins-dts-1.20.2.ebuild
deleted file mode 100644
index 587b7f5ac5d1..
--- a/media-plugins/gst-plugins-dts/gst-plugins-dts-1.20.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-GST_ORG_MODULE=gst-plugins-bad
-
-inherit gstreamer-meson
-
-DESCRIPTION="DTS audio decoder plugin for Gstreamer"
-KEYWORDS="amd64 ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv x86"
-IUSE="+orc"
-
-RDEPEND="
-   >=media-libs/libdca-0.0.5-r3[${MULTILIB_USEDEP}]
-   orc? ( >=dev-lang/orc-0.4.17[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Dgpl=enabled
-   )
-
-   gstreamer_multilib_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/files/

2022-10-09 Thread Craig Andrews
commit: 0468c3cfd5be1bf3ed12af647c8d9432a0defb70
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Oct  7 20:23:58 2022 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Oct 10 01:47:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0468c3cf

media-tv/kodi: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27683
Signed-off-by: Craig Andrews  gentoo.org>

 media-tv/kodi/files/kodi-19.1-fmt-8.patch | 28 
 1 file changed, 28 deletions(-)

diff --git a/media-tv/kodi/files/kodi-19.1-fmt-8.patch 
b/media-tv/kodi/files/kodi-19.1-fmt-8.patch
deleted file mode 100644
index ea82d007910d..
--- a/media-tv/kodi/files/kodi-19.1-fmt-8.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://github.com/xbmc/xbmc/pull/19904
-
-From 18ff80a9c169fb969b75e2143d9f1f234b71a730 Mon Sep 17 00:00:00 2001
-From: Craig Andrews 
-Date: Thu, 24 Jun 2021 20:41:11 -0400
-Subject: [PATCH] [utils] include fmt/xchar.h
-
-fmt 8 moved wchar/custom char overloads to xchar.h, so for fmt 8 
compatibility, xchar.h must be included
-
-See 
https://github.com/fmtlib/fmt/commit/76ee490468212f8705a1421b4c88f8f814b2d351

- xbmc/utils/StringUtils.h | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/xbmc/utils/StringUtils.h b/xbmc/utils/StringUtils.h
-index ca6f82953d90a..2dc5c3f03af2f 100644
 a/xbmc/utils/StringUtils.h
-+++ b/xbmc/utils/StringUtils.h
-@@ -36,6 +36,9 @@
- #if FMT_VERSION >= 4
- #include 
- #endif
-+#if FMT_VERSION >= 8
-+#include 
-+#endif
- 
- #include "XBDateTime.h"
- #include "utils/params_check_macros.h"



[gentoo-commits] repo/proj/libressl:master commit in: net-misc/seafile-client/

2022-10-09 Thread Quentin Retornaz
commit: 149249559de63e855d5aca0ca3ebfa243c5dc83f
Author: orbea  riseup  net>
AuthorDate: Sun Oct  9 23:09:49 2022 +
Commit: Quentin Retornaz  retornaz  com>
CommitDate: Sun Oct  9 23:53:07 2022 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=14924955

net-misc/seafile-client: Merge ::gentoo changes

Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/libressl/pull/462
Signed-off-by: Quentin Retornaz  retornaz.com>

 net-misc/seafile-client/seafile-client-8.0.5.ebuild | 3 +++
 net-misc/seafile-client/seafile-client-8.0.6.ebuild | 3 +++
 net-misc/seafile-client/seafile-client-8.0.7.ebuild | 3 +++
 3 files changed, 9 insertions(+)

diff --git a/net-misc/seafile-client/seafile-client-8.0.5.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.5.ebuild
index a51f8ee..8bc4082 100644
--- a/net-misc/seafile-client/seafile-client-8.0.5.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.5.ebuild
@@ -30,6 +30,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -48,5 +49,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }

diff --git a/net-misc/seafile-client/seafile-client-8.0.6.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.6.ebuild
index 624c03a..abbee54 100644
--- a/net-misc/seafile-client/seafile-client-8.0.6.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.6.ebuild
@@ -31,6 +31,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -49,5 +50,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }

diff --git a/net-misc/seafile-client/seafile-client-8.0.7.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.7.ebuild
index 2e2c7fc..4acdf42 100644
--- a/net-misc/seafile-client/seafile-client-8.0.7.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.7.ebuild
@@ -31,6 +31,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -49,5 +50,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }



[gentoo-commits] repo/proj/libressl:master commit in: net-misc/seafile-client/

2022-10-09 Thread Quentin Retornaz
commit: 11a0d9d5170c2a23397b7172267d0b0d4968ef73
Author: orbea  riseup  net>
AuthorDate: Sun Oct  9 23:09:30 2022 +
Commit: Quentin Retornaz  retornaz  com>
CommitDate: Sun Oct  9 23:53:03 2022 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=11a0d9d5

net-misc/seafile-client: Add 8.0.8

Signed-off-by: orbea  riseup.net>
Signed-off-by: Quentin Retornaz  retornaz.com>

 net-misc/seafile-client/Manifest   |  1 +
 .../seafile-client/seafile-client-8.0.8.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/net-misc/seafile-client/Manifest b/net-misc/seafile-client/Manifest
index 5fcbcff..e1718be 100644
--- a/net-misc/seafile-client/Manifest
+++ b/net-misc/seafile-client/Manifest
@@ -1,3 +1,4 @@
 DIST seafile-client-8.0.5.tar.gz 11701650 BLAKE2B 
c9c436f53cf7effa6c2e1cdbb09f5cffd53f7ef8fa6f6b12bb92c0d3c2e54b38858c95a3ab4c511d16774a973c8c2a7e66842825e9535d1332e8589dc201d22a
 SHA512 
1f3eb643dce980a1aa0ff71e0ecca83b3db0848f9983bf7782adae6d181ddc28454a6cd75ebfcf439c17eb2008a5e0d4a684e5cee60fe7b83297e9fce1fcfec9
 DIST seafile-client-8.0.6.tar.gz 11702726 BLAKE2B 
bcba073b9ec17c33f653ae89e518f30f96ec8f9bdb780a9e06ae75d565c223c6b0505fd1ec9475b66bcd8d26f84846a99968fc006514d1eccb4a72b8600f0ae4
 SHA512 
fceb272fa521a7343609285ff5b299f66886b2ea53a1395178c3f05313e9439853422de65d20902669034c4edacdf32eb5674e16e64218b0444221c77cd4256c
 DIST seafile-client-8.0.7.tar.gz 11718265 BLAKE2B 
a48e259d809644cb1949f35e80459aa2267c9772438eb09ba894a795553368935c8b63c78fbabbea2202d3f23eb001836acce0975b086f66ec6d804405c5b534
 SHA512 
b4a6d5896f828e0e8ac4b202c5cc933e0ade4c373074e48e76e3b4ffe670faec0ef62bfcc72607891fb2c8b066fc448976285985077c48c6e3763619f35f4629
+DIST seafile-client-8.0.8.tar.gz 11716136 BLAKE2B 
1e8a25e0ce7ddf3347790cb614e725349c7cdb1b881bba4f229676f9f2e6ba86ed4958fb18c09b63e9c6fbf57c73f3bda68bd39f11ac374c4715bd4f5d036cf2
 SHA512 
9d569152c3e3db2fc142a082a3ca75fb020117eb5a79e7c0daa31207d1b04571ef38782c3afc1dbb205a65b8dd54e4b1ee4aab0715b0bda4bdd308474ce4e51c

diff --git a/net-misc/seafile-client/seafile-client-8.0.8.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
new file mode 100644
index 000..0fab554
--- /dev/null
+++ b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Upstream is moving tags repeatedly, then we use commit hash.
+RELEASE_COMMIT="c8a33cc8f39dd67cf9458585ab19d20ef4656fe9"
+
+inherit xdg cmake
+
+DESCRIPTION="Seafile desktop client"
+HOMEPAGE="https://www.seafile.com/ https://github.com/haiwen/seafile-client/;
+SRC_URI="https://github.com/haiwen/${PN}/archive/${RELEASE_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="shibboleth test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/jansson:=
+   dev-libs/openssl:=
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   >=net-libs/libsearpc-3.2.0_p1
+   ~net-misc/seafile-${PV}
+   sys-libs/zlib
+   virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
+   shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
+DEPEND="${RDEPEND}
+   test? ( dev-qt/qttest:5 )"
+BDEPEND="dev-qt/linguist-tools:5"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-8.0.6-select-qt5.patch"
+   "${FILESDIR}/${PN}-7.0.9-qt-5.15.patch"
+   "${FILESDIR}/${PN}-7.0.9-libressl.patch"
+)
+
+S="${WORKDIR}/${PN}-${RELEASE_COMMIT}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
+   -DBUILD_TESTING="$(usex test)"
+   )
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/osinfo-db-tools/, profiles/

2022-10-09 Thread Matt Turner
commit: cb9c7c82a2ef39fb65a4f470124b9731330fbcc9
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:19:29 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 23:25:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9c7c82

sys-apps/osinfo-db-tools: Add revbump that uses libsoup:3.0

Signed-off-by: Matt Turner  gentoo.org>

 profiles/package.mask  |  1 +
 .../osinfo-db-tools-1.10.0-r1.ebuild   | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 7883a3053eed..f9eb35bff7f5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -513,6 +513,7 @@ net-libs/webkit-gtk:5
 >=net-misc/rygel-0.42
 sci-geosciences/geocode-glib:2
 >=sci-geosciences/gnome-maps-43
+>=sys-apps/osinfo-db-tools-1.10.0-r1
 >=sys-libs/libosinfo-1.10.0-r1
 >=www-client/epiphany-43
 >=x11-wm/mutter-43

diff --git a/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0-r1.ebuild 
b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0-r1.ebuild
new file mode 100644
index ..4bbfc428e588
--- /dev/null
+++ b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit meson python-any-r1
+
+DESCRIPTION="Tools for managing the osinfo database"
+HOMEPAGE="https://libosinfo.org/;
+SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   dev-libs/json-glib
+   >=app-arch/libarchive-3.0.0:=
+   net-libs/libsoup:3.0
+   >=dev-libs/libxml2-2.6.0
+"
+# perl dep is for pod2man (manpages)
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   >=sys-devel/gettext-0.19.8
+   dev-lang/perl
+   test? (
+   $(python_gen_any_dep '
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   ')
+   )
+"
+
+python_check_deps() {
+   python_has_version "dev-python/pytest[${PYTHON_USEDEP}]" && \
+   python_has_version "dev-python/requests[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/osinfo-db-tools/, sys-apps/osinfo-db-tools/files/

2022-10-09 Thread Matt Turner
commit: fe2ea941d7ac1d5d4d04ef9bf71849d30ca970ca
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 23:23:11 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 23:25:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2ea941

sys-apps/osinfo-db-tools: Add patch to force libsoup:2.4

Signed-off-by: Matt Turner  gentoo.org>

 .../osinfo-db-tools/files/1.10.0-use-libsoup-2.4.patch   | 16 
 sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0.ebuild   |  4 
 2 files changed, 20 insertions(+)

diff --git a/sys-apps/osinfo-db-tools/files/1.10.0-use-libsoup-2.4.patch 
b/sys-apps/osinfo-db-tools/files/1.10.0-use-libsoup-2.4.patch
new file mode 100644
index ..a59e451baed9
--- /dev/null
+++ b/sys-apps/osinfo-db-tools/files/1.10.0-use-libsoup-2.4.patch
@@ -0,0 +1,16 @@
+diff --git a/meson.build b/meson.build
+index 1cc5ff5..72b18a8 100644
+--- a/meson.build
 b/meson.build
+@@ -58,11 +58,7 @@ gobject_dep = dependency('gobject-2.0', version: 
glib_version_info)
+ #  everything else
+ json_glib_dep = dependency('json-glib-1.0')
+ libarchive_dep = dependency('libarchive', version: '>= 3.0.0')
+-libsoup_dep = dependency('libsoup-3.0', required: false)
+-#fallback to libsoup2
+-if not libsoup_dep.found()
+   libsoup_dep = dependency('libsoup-2.4')
+-endif
+ libxml_dep = dependency('libxml-2.0', version: '>= 2.6.0')
+ 
+ #  common dependencies

diff --git a/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0.ebuild 
b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0.ebuild
index a202146e59fb..ab5d9f49f3fe 100644
--- a/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0.ebuild
+++ b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.10.0.ebuild
@@ -39,6 +39,10 @@ BDEPEND="
)
 "
 
+PATCHES=(
+   "${FILESDIR}"/${PV}-use-libsoup-2.4.patch
+)
+
 python_check_deps() {
use test && \
has_version "dev-python/pytest[${PYTHON_USEDEP}]" && \



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

2022-10-09 Thread Sam James
commit: 6840b4ee2d9d08d4b5e45a0d5385b7993214d575
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 23:17:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:17:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6840b4ee

media-video/ffmpeg: cleanup libatomic from 5.1.2, 

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

 media-video/ffmpeg/ffmpeg-4.4.3.ebuild |  2 +-
 media-video/ffmpeg/ffmpeg-5.1.2.ebuild | 10 +-
 media-video/ffmpeg/ffmpeg-.ebuild  | 10 +-
 3 files changed, 3 insertions(+), 19 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-4.4.3.ebuild 
b/media-video/ffmpeg/ffmpeg-4.4.3.ebuild
index 6d1dcc3ef576..9823dcd522e1 100644
--- a/media-video/ffmpeg/ffmpeg-4.4.3.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.4.3.ebuild
@@ -498,6 +498,7 @@ multilib_src_configure() {
$(multilib_native_enable manpages)
)
 
+   # Use --extra-libs if needed for LIBS
set -- "${S}/configure" \
--prefix="${EPREFIX}/usr" \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
@@ -513,7 +514,6 @@ multilib_src_configure() {
--ranlib="$(tc-getRANLIB)" \
--pkg-config="$(tc-getPKG_CONFIG)" \
--optflags="${CFLAGS}" \
-   --extra-libs="${extra_libs}" \
$(use_enable static-libs static) \
"${myconf[@]}" \
${EXTRA_FFMPEG_CONF}

diff --git a/media-video/ffmpeg/ffmpeg-5.1.2.ebuild 
b/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
index 04786c9205ad..fe7043c164bc 100644
--- a/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
+++ b/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
@@ -498,14 +498,7 @@ multilib_src_configure() {
$(multilib_native_enable manpages)
)
 
-   # Fixed in 5.0.1? Waiting for verification from someone who hit the 
issue.
-   local extra_libs
-   if use arm || use ppc || use mips || [[ ${CHOST} == *i486* ]] ; then
-   # bug #782811
-   # bug #790590
-   extra_libs+="$(test-flags-CCLD -latomic) "
-   fi
-
+   # Use --extra-libs if needed for LIBS
set -- "${S}/configure" \
--prefix="${EPREFIX}/usr" \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
@@ -521,7 +514,6 @@ multilib_src_configure() {
--ranlib="$(tc-getRANLIB)" \
--pkg-config="$(tc-getPKG_CONFIG)" \
--optflags="${CFLAGS}" \
-   --extra-libs="${extra_libs}" \
$(use_enable static-libs static) \
"${myconf[@]}" \
${EXTRA_FFMPEG_CONF}

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 04786c9205ad..fe7043c164bc 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -498,14 +498,7 @@ multilib_src_configure() {
$(multilib_native_enable manpages)
)
 
-   # Fixed in 5.0.1? Waiting for verification from someone who hit the 
issue.
-   local extra_libs
-   if use arm || use ppc || use mips || [[ ${CHOST} == *i486* ]] ; then
-   # bug #782811
-   # bug #790590
-   extra_libs+="$(test-flags-CCLD -latomic) "
-   fi
-
+   # Use --extra-libs if needed for LIBS
set -- "${S}/configure" \
--prefix="${EPREFIX}/usr" \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
@@ -521,7 +514,6 @@ multilib_src_configure() {
--ranlib="$(tc-getRANLIB)" \
--pkg-config="$(tc-getPKG_CONFIG)" \
--optflags="${CFLAGS}" \
-   --extra-libs="${extra_libs}" \
$(use_enable static-libs static) \
"${myconf[@]}" \
${EXTRA_FFMPEG_CONF}



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

2022-10-09 Thread Sam James
commit: 7c143c4a163720e1339801cdaef472a6c4627885
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 23:18:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:18:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c143c4a

media-video/ffmpeg: sync live

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

 media-video/ffmpeg/ffmpeg-5.0.1.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-5.1.2.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-5.0.1.ebuild 
b/media-video/ffmpeg/ffmpeg-5.0.1.ebuild
index 565f105878be..a4d6e5385b79 100644
--- a/media-video/ffmpeg/ffmpeg-5.0.1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-5.0.1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 # Subslot: libavutil major.libavcodec major.libavformat major
 # Since FFmpeg ships several libraries, subslot is kind of limited here.

diff --git a/media-video/ffmpeg/ffmpeg-5.1.2.ebuild 
b/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
index fe7043c164bc..32bd6b856f20 100644
--- a/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
+++ b/media-video/ffmpeg/ffmpeg-5.1.2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 # Subslot: libavutil major.libavcodec major.libavformat major
 # Since FFmpeg ships several libraries, subslot is kind of limited here.

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index fe7043c164bc..32bd6b856f20 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 # Subslot: libavutil major.libavcodec major.libavformat major
 # Since FFmpeg ships several libraries, subslot is kind of limited here.



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

2022-10-09 Thread Sam James
commit: d5a4045a84c64e480c52497a9bc98ffac15a893a
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 23:12:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:12:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a4045a

sys-apps/iproute2: add 6.0.0

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

 sys-apps/iproute2/Manifest  |   1 +
 sys-apps/iproute2/iproute2-6.0.0.ebuild | 215 
 2 files changed, 216 insertions(+)

diff --git a/sys-apps/iproute2/Manifest b/sys-apps/iproute2/Manifest
index 5e3eca8bba68..451a9b779cf6 100644
--- a/sys-apps/iproute2/Manifest
+++ b/sys-apps/iproute2/Manifest
@@ -1,3 +1,4 @@
 DIST iproute2-5.15.0.tar.xz 858068 BLAKE2B 
bca20ac53e1b2b3ae06186f655ad5073a0e691ed7b3aab25c4fbc118847b72a8a522175732cd22d8ec27480d1ab142319e80a5c3628434bec21260e585e1591d
 SHA512 
e94918fa10e523224b965c7cb5303a101745e89c90d149d2d9876a002b2a894b1c689c519dc22168f3d334c3ee0810c59ec43223baab3d5f4c56f017d6281f22
 DIST iproute2-5.18.0.tar.xz 880456 BLAKE2B 
21b15d84b07199d4ddd12cbf14d94806a073f4eda659958a8459ef2ca8becbef8638dac2550cc53893cd147888b6a3b738256dac074307b37ebec8dbb460e600
 SHA512 
7b43c89741a8ffe8fd529ac4ee19c8eab7dce2f064de494c160c75456ffb960fb5f1e78c868ab98360dafde28d5e2c4d58177135b6d380e80e06eba9e3eaf068
 DIST iproute2-5.19.0.tar.xz 892696 BLAKE2B 
ee287065d7c33c0fa97f0fc130bb3a4a3ad5ac9417ad74ce8489e64ec146ff97749d79bb6563043c8835eab91a51631576441d450693cb50808ad0d37b2ea648
 SHA512 
eb0fffb153f7cecc89b5573b7fc211d67fb1c06789fd3b0aec75ba5032521d53c51ccc52db7367e41397993df50244af84763b0b1d5a76d9dfccf013c010131b
+DIST iproute2-6.0.0.tar.xz 900312 BLAKE2B 
1cfb9b5a7892dec2b35e0eadbd957083e95fdc5077a1aa193329801ff25f9ed90a1fc4152756547be1fab8fe18d9a399001a4c3a61e951f64946156af6a90bae
 SHA512 
be30362b0df6906aa786f935d5f555b8b86c747fe05314066f4180ab2f7c952ae227b7cf04c15e75d8f99ca17bafb7c8dc0fb1c18f3a9e3222d98716bb449f7a

diff --git a/sys-apps/iproute2/iproute2-6.0.0.ebuild 
b/sys-apps/iproute2/iproute2-6.0.0.ebuild
new file mode 100644
index ..46297152d6c6
--- /dev/null
+++ b/sys-apps/iproute2/iproute2-6.0.0.ebuild
@@ -0,0 +1,215 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+if [[ ${PV} ==  ]] ; then
+   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git;
+   inherit git-r3
+else
+   SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="kernel routing and traffic control utilities"
+HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="atm berkdb bpf caps elf +iptables libbsd minimal nfs selinux split-usr"
+
+# We could make libmnl optional, but it's tiny, so eh
+RDEPEND="
+   !net-misc/arpd
+   !minimal? ( net-libs/libmnl:= )
+   atm? ( net-dialup/linux-atm )
+   berkdb? ( sys-libs/db:= )
+   bpf? ( dev-libs/libbpf:= )
+   caps? ( sys-libs/libcap )
+   elf? ( virtual/libelf:= )
+   iptables? ( >=net-firewall/iptables-1.4.20:= )
+   libbsd? ( dev-libs/libbsd )
+   nfs? ( net-libs/libtirpc:= )
+   selinux? ( sys-libs/libselinux )
+"
+# We require newer linux-headers for ipset support (bug #549948) and some 
defines (bug #553876)
+DEPEND="
+   ${RDEPEND}
+   >=sys-kernel/linux-headers-3.16
+"
+BDEPEND="
+   app-arch/xz-utils
+   >=sys-devel/bison-2.4
+   sys-devel/flex
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.1.0-mtu.patch # bug #291907
+   "${FILESDIR}"/${PN}-5.12.0-configure-nomagic.patch # bug #643722
+   #"${FILESDIR}"/${PN}-5.1.0-portability.patch
+   "${FILESDIR}"/${PN}-5.7.0-mix-signal.h-include.patch
+   "${FILESDIR}"/${PN}-default-color-auto.patch
+)
+
+src_prepare() {
+   default
+
+   # Fix version if necessary
+   local versionfile="include/version.h"
+   if [[ ${PV} !=  ]] && ! grep -Fq "${PV}" ${versionfile} ; then
+   einfo "Fixing version string"
+   sed "s@\"[[:digit:]\.]\+\"@\"${PV}\"@" \
+   -i ${versionfile} || die
+   fi
+
+   # echo -n is not POSIX compliant
+   sed 's@echo -n@printf@' -i configure || die
+
+   sed -i \
+   -e '/^CC :\?=/d' \
+   -e "/^LIBDIR/s:=.*:=/$(get_libdir):" \
+   -e "s|-O2|${CFLAGS} ${CPPFLAGS}|" \
+   -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \
+   -e "/^DBM_INCLUDE/s:=.*:=${T}:" \
+   Makefile || die
+
+   # Build against system headers
+   rm -r include/netinet || die #include/linux 
include/ip{,6}tables{,_common}.h include/libiptc
+   sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die
+
+   if use minimal ; then
+ 

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

2022-10-09 Thread Sam James
commit: d179f8bf5364107fbb12c3a558f08b638cdc792a
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 22:54:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d179f8bf

media-video/ffmpeg: drop 5.1.1

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

 media-video/ffmpeg/Manifest|   2 -
 media-video/ffmpeg/ffmpeg-5.1.1.ebuild | 606 -
 2 files changed, 608 deletions(-)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index ac5fe91c8459..aff117b1f8d6 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -6,7 +6,5 @@ DIST ffmpeg-4.4.2.tar.xz 9562968 BLAKE2B 
be044e9895acdd71a237a343a8d047c56db845c
 DIST ffmpeg-4.4.2.tar.xz.asc 520 BLAKE2B 
1ff4a886c7703a05a19499ae5b2b6207df24e05844861cb52f2c56a97f47ab4fefa5011de46a385bab9684964470697ec5e74553098392877f7521a04ffe0fc4
 SHA512 
a4df97a6328fc076b5611023bd61254f1a5043db1ec2f3426bee305206b2b0937047ede9cb51db31a3387a16218fe95a7a40296770574fa32660118938a9d301
 DIST ffmpeg-5.0.1.tar.xz 9812524 BLAKE2B 
0a37d425780f7e15836848048214411829bceb0de12bb7089803feb3dda07a077be9c8e8174b72792558ed86d92224bee9d4db20cc74690ea54312fbf2f10e83
 SHA512 
e5810c7379748a6bbe1a903bf36b4372b67cb3973179727b6af6f0118eef46f4c990155961cc37255e08a5bafdc4b4683503ad410ebb7afe7a35b891c01fa602
 DIST ffmpeg-5.0.1.tar.xz.asc 520 BLAKE2B 
686a8c372d26bd0158a0e79f6cbe8d9c46127bd200df7f4f6e2a4285bfd412cfa9aff865eca125a27a7204f32ba0cca86bcbf769ee4874e5202cc700b0eb4449
 SHA512 
9c4bd404196c3a3808bae92873aefc77f8c26a9419cc6130a3f2359a75c8e83189d206e9aee8ff85c5a7fe4a98da24e11cf607ec351386c18979ec2d5ad3b3ad
-DIST ffmpeg-5.1.1.tar.xz 10001696 BLAKE2B 
d0d62b4ab3032b554f52f10e61bc152bc60c4058df6f1f640101c21f1001bb5b5c7dbc21a0559c13051354346fb951f4abe99a9b07b1d4b2410ce6ec4458c909
 SHA512 
689e38d1a18bfaa8709505bad0c07edabbf02b2f1477dcfcb2fed5e1a3adc654c8e82cb877a92e278c90521242c39ae7e0bbd41e6beb3651de0c96b113d97baa
-DIST ffmpeg-5.1.1.tar.xz.asc 520 BLAKE2B 
8d5848b0807f11c82c3a6eb93aad129c4d3a1acb8eb154c32d20f6696cb6cac0600bb253629169754951af6962199b95dced2842c8c4d011a62173ee0437baa5
 SHA512 
4910dbccd108ffec03d08f96a497261964c22a234c786547de136953f57232d315cfd9790d943ad41a299d529ace259439e628c4e0fe6f4b6ff7363baa9c1be5
 DIST ffmpeg-5.1.2.tar.xz 10004956 BLAKE2B 
4e2682f040205e6344ff1f2cf8ac69c35cac90a14634a2cd4b41fffc0e09264586b014327f7e9cb6417d12210894cdbc180541c07ad02e782bdf79af9f22991f
 SHA512 
04d9ae2a0e9238c469941d2bb9929d59b58f4be3830846cf91b02a440da17803a04b147a4e0168c9ffd6f62ca82187508bc7b53255de9787a97168278e903b9b
 DIST ffmpeg-5.1.2.tar.xz.asc 520 BLAKE2B 
57573afa9157e842efc6a22185aab133e5b5bd461c55d63bbb8b218e99f05fb17f4a679ee9e22c14060205894d7e71f011df7b0ceae15be4c7f5980cff739b32
 SHA512 
6afc898e3898a7d34e21f0f0bd0553765a46257332c6ece6226e3e043b842275a8d885b9ccca34bc90a2f008ae5fa14515276d23f921a518a63a47f6504af115

diff --git a/media-video/ffmpeg/ffmpeg-5.1.1.ebuild 
b/media-video/ffmpeg/ffmpeg-5.1.1.ebuild
deleted file mode 100644
index 04786c9205ad..
--- a/media-video/ffmpeg/ffmpeg-5.1.1.ebuild
+++ /dev/null
@@ -1,606 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Subslot: libavutil major.libavcodec major.libavformat major
-# Since FFmpeg ships several libraries, subslot is kind of limited here.
-# Most consumers will use those three libraries, if a "less used" library
-# changes its soname, consumers will have to be rebuilt the old way
-# (preserve-libs).
-# If, for example, a package does not link to libavformat and only libavformat
-# changes its ABI then this package will be rebuilt needlessly. Hence, such a
-# package is free _not_ to := depend on FFmpeg but I would strongly encourage
-# doing so since such a case is unlikely.
-FFMPEG_SUBSLOT=57.59.59
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_MIN_CLONE_TYPE="single"
-   EGIT_REPO_URI="https://git.ffmpeg.org/ffmpeg.git;
-fi
-
-inherit flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="Complete solution to record/convert/stream audio and video. 
Includes libavcodec"
-HOMEPAGE="https://ffmpeg.org/;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   SRC_URI="mirror://gentoo/${P}.tar.xz"
-else # Release
-   VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/ffmpeg.asc
-   inherit verify-sig
-   SRC_URI="https://ffmpeg.org/releases/${P/_/-}.tar.xz;
-   SRC_URI+=" verify-sig? ( 
https://ffmpeg.org/releases/${P/_/-}.tar.xz.asc )"
-
-   BDEPEND=" verify-sig? ( sec-keys/openpgp-keys-ffmpeg )"
-fi
-FFMPEG_REVISION="${PV#*_p}"
-
-SLOT="0/${FFMPEG_SUBSLOT}"
-LICENSE="
-   !gpl? ( LGPL-2.1 )
-   gpl? ( GPL-2 )
-   amr? (
-   gpl? ( GPL-3 )
-   !gpl? ( LGPL-3 )
-  

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

2022-10-09 Thread Sam James
commit: bd2f623e04e69062fc4c0648def0fe266520f7f3
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 22:12:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2f623e

sys-process/numactl: add 2.0.16

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

 sys-process/numactl/Manifest  |  1 +
 sys-process/numactl/numactl-2.0.16.ebuild | 67 +++
 2 files changed, 68 insertions(+)

diff --git a/sys-process/numactl/Manifest b/sys-process/numactl/Manifest
index 693f91b0dcda..291aeb4b2047 100644
--- a/sys-process/numactl/Manifest
+++ b/sys-process/numactl/Manifest
@@ -1 +1,2 @@
 DIST numactl-2.0.14.tar.gz 439000 BLAKE2B 
5f2abe25061ac29ecad8a6b24fe800d72c3538d9a155358f4b329ed1140053c7dbd93f01891904f76db94ed01113a34b4ebcbbf40e4060caf747958785ac9590
 SHA512 
28b95985d6b2f26c5f6f15fe235224c998c86f534adf5fdaa355a292cf2fd65515c91ba2a76c899d552d439b18ea1209a1712bd6755f8ee3a442f3935993b2e6
+DIST numactl-2.0.16.tar.gz 450003 BLAKE2B 
3ac38129b914d62958182020f57969878f2817bd3155c6b5362a66f96deb2058268fa8004729a2d642c8c0bee73a451030a287958fa145247b7685e426aa
 SHA512 
6e17724567c363a08994fe7f5569b6ec62bd1ae608244945fddcb2d6a212b08140340f0d862595ba4016fcba95193e851cb286798f685d314b4c72687af6d879

diff --git a/sys-process/numactl/numactl-2.0.16.ebuild 
b/sys-process/numactl/numactl-2.0.16.ebuild
new file mode 100644
index ..75c8f3695219
--- /dev/null
+++ b/sys-process/numactl/numactl-2.0.16.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="Utilities and libraries for NUMA systems"
+HOMEPAGE="https://github.com/numactl/numactl;
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/numactl/numactl.git;
+else
+   
SRC_URI="https://github.com/numactl/numactl/releases/download/v${PV}/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="static-libs"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.0.14-numademo-cflags.patch # bug #540856
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+
+   # We need to copy the sources or else tests will fail
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
+}
+
+multilib_src_compile() {
+   multilib_is_native_abi && default || emake libnuma.la
+}
+
+multilib_src_test() {
+   if multilib_is_native_abi ; then
+   if [[ -d /sys/devices/system/node ]] ; then
+   einfo "The only generically safe test is regress2."
+   einfo "The other test cases require 2 NUMA nodes."
+   emake regress2
+   else
+   ewarn "You do not have baseline NUMA support in your 
kernel, skipping tests."
+   fi
+   fi
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" \
+   install$(multilib_is_native_abi || echo "-libLTLIBRARIES 
install-includeHEADERS")
+   find "${ED}"/usr/ -type f -name libnuma.la -delete || die
+}
+
+multilib_src_install_all() {
+   local DOCS=( README.md )
+   einstalldocs
+
+   # Delete man pages provided by the man-pages package, bug #238805
+   rm -r "${ED}"/usr/share/man/man[25] || die
+}



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

2022-10-09 Thread Sam James
commit: f499582f7119a0485f60e1f2cd741eacc58c0fba
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 23:04:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f499582f

media-video/ffmpeg: add 4.4.3

* Drop -latomic workaround added for bug 782811, bug 790590. Fixed
  upstream in 
https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/78062c6d71324fa89708211213b4267d2a57b806.

* Fix UB in ff_seek_frame_binary-crash causing a crash with >= Clang 14.
  Might be the issue hit in bug 858806 (seems very likely).

Bug: https://bugs.gentoo.org/782811
Bug: https://bugs.gentoo.org/790590
Closes: https://bugs.gentoo.org/858806
Signed-off-by: Sam James  gentoo.org>

 media-video/ffmpeg/Manifest|   2 +
 media-video/ffmpeg/ffmpeg-4.4.3.ebuild | 598 +
 ...4.4.3-clang-14-ff_seek_frame_binary-crash.patch |  46 ++
 3 files changed, 646 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index aff117b1f8d6..6daaad98a109 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -4,6 +4,8 @@ DIST ffmpeg-4.2.4.tar.bz2 10959430 BLAKE2B 
932bc0046edab5587063bbc04d6ef0149876b
 DIST ffmpeg-4.2.7.tar.bz2 10966448 BLAKE2B 
91151a3ece19700fbc04f304ebad9f34ffce2de19416992ceccf3a347ab58195f746a0ace0a331cc1f34dafd87e4e8c6467268546b417d3f58a1cbbe41662807
 SHA512 
ab57fc370005d8f33eed2e0f18ac4f418372f47f03d43566c52f9ffc70de27e6ec1ba49faf6e3356fd8a495cff40a8073f8d85a625f6ee21bd7018e19b31734f
 DIST ffmpeg-4.4.2.tar.xz 9562968 BLAKE2B 
be044e9895acdd71a237a343a8d047c56db845c693b8c07877fc8049b630eb254e3430b6e9916330e6b3d53cbdc9f06680d80307a1fea1377bb818f4168bb276
 SHA512 
abce847c607ac6d63fe32ceff8bf8724888acf2b7db9a083cba50e3235590cdcb27feb7e0a314133d0030809fb54d474f64001fc9ab7d896a819159869c09d5a
 DIST ffmpeg-4.4.2.tar.xz.asc 520 BLAKE2B 
1ff4a886c7703a05a19499ae5b2b6207df24e05844861cb52f2c56a97f47ab4fefa5011de46a385bab9684964470697ec5e74553098392877f7521a04ffe0fc4
 SHA512 
a4df97a6328fc076b5611023bd61254f1a5043db1ec2f3426bee305206b2b0937047ede9cb51db31a3387a16218fe95a7a40296770574fa32660118938a9d301
+DIST ffmpeg-4.4.3.tar.xz 9566020 BLAKE2B 
a8b62a37151173f90821b876cf51e6819eb5519d7fb1f47b55b5f3003cb0e3d18d43c9482d70e32ef2bb6f5c6310260ec2c04ee997aad5ef687d598d838e9bc9
 SHA512 
0b232b66555237ed1a061807f88dbc5e6cd156e604c5d611bb6ac0c32b9006414cc4f30d632b482d9cb95f526df98b36efa3af9c863c52e7b7aa1a183545d915
+DIST ffmpeg-4.4.3.tar.xz.asc 520 BLAKE2B 
999785516beb913d246d5f9de6e189ee644d0dba07f64ac90cbec91961ca181e5d6b95d9e097c362a76b543e3498672b1458edd68c23a86c3123ffc8e6c5ff2b
 SHA512 
347abc8d75f4447296d8f6105b188a187daac158fbd972dc157b8a3597919519c20b8f649b7460df4e9aea249d74c6287e35bc389cc99ae5629490a36b345557
 DIST ffmpeg-5.0.1.tar.xz 9812524 BLAKE2B 
0a37d425780f7e15836848048214411829bceb0de12bb7089803feb3dda07a077be9c8e8174b72792558ed86d92224bee9d4db20cc74690ea54312fbf2f10e83
 SHA512 
e5810c7379748a6bbe1a903bf36b4372b67cb3973179727b6af6f0118eef46f4c990155961cc37255e08a5bafdc4b4683503ad410ebb7afe7a35b891c01fa602
 DIST ffmpeg-5.0.1.tar.xz.asc 520 BLAKE2B 
686a8c372d26bd0158a0e79f6cbe8d9c46127bd200df7f4f6e2a4285bfd412cfa9aff865eca125a27a7204f32ba0cca86bcbf769ee4874e5202cc700b0eb4449
 SHA512 
9c4bd404196c3a3808bae92873aefc77f8c26a9419cc6130a3f2359a75c8e83189d206e9aee8ff85c5a7fe4a98da24e11cf607ec351386c18979ec2d5ad3b3ad
 DIST ffmpeg-5.1.2.tar.xz 10004956 BLAKE2B 
4e2682f040205e6344ff1f2cf8ac69c35cac90a14634a2cd4b41fffc0e09264586b014327f7e9cb6417d12210894cdbc180541c07ad02e782bdf79af9f22991f
 SHA512 
04d9ae2a0e9238c469941d2bb9929d59b58f4be3830846cf91b02a440da17803a04b147a4e0168c9ffd6f62ca82187508bc7b53255de9787a97168278e903b9b

diff --git a/media-video/ffmpeg/ffmpeg-4.4.3.ebuild 
b/media-video/ffmpeg/ffmpeg-4.4.3.ebuild
new file mode 100644
index ..6d1dcc3ef576
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-4.4.3.ebuild
@@ -0,0 +1,598 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=56.58.58
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_MIN_CLONE_TYPE="single"
+   EGIT_REPO_URI="https://git.ffmpeg.org/ffmpeg.git;
+fi
+
+inherit flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution 

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

2022-10-09 Thread Sam James
commit: d34bf3a9accfe5a4485f144957890ea509552f58
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 22:53:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d34bf3a9

sys-devel/gcc: add 12.2.1_p20221008

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

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-12.2.1_p20221008.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index bf3859aee7fd..db079eb7b589 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -17,6 +17,7 @@ DIST gcc-11.4.0-patches-2.tar.xz 14224 BLAKE2B 
d3030c19a7bd8bd082fd39b35c3e80883
 DIST gcc-12-20220917.tar.xz 79137544 BLAKE2B 
ddd538b339e57fce4d8ef47e18077a27b35994bb571b5ac8670fc2f833751f87557a05c3f82fc41e3c0c3ac47ac231d8392353835295874cfb24e02aa72a8662
 SHA512 
15071044595fcf22deca3fd4569309f7fa01e2e8d54b1c518c480ff134f1222a652b0137be98e03b495648eed3c21992d906e9c9d12f265a6467581adc2dc1ee
 DIST gcc-12-20220924.tar.xz 79135908 BLAKE2B 
41cbc1d232bfb07a2a84b6fe4bc692f21378661197447c39ef9f4d56015410c8416e3a01da98dff7329fc3392331dc5b6e404fa09a0df1e35598b9bfb41cb814
 SHA512 
ba4d9e73d108088da26fbefe18d9b245b76771ffe752c2b4b31bdf38a2d0b638fbc115c377526c27311d4d7ffd4e0d236a5af5016bd364ccaa11a4989d1401e8
 DIST gcc-12-20221001.tar.xz 79132788 BLAKE2B 
e3ab41f7f31a202380063679f9b233c02ac3ea860a1ef43df943e8ad50c261a72a846486a5f1386a125c379948316eeb4f7cec75998bec7e463b12453d7df0eb
 SHA512 
c838aa1f1ab2df3d0d5e738674b4b5e1dc08118ea7d2c21999e186d3af52e82939acf4c2d752cc7a4b49e710263bdfe8b1020669cf80d9a477a3be283d40f359
+DIST gcc-12-20221008.tar.xz 79145884 BLAKE2B 
ff3d684d887e282c79fe95952a449ed5770d4bd74077553baf31c34dbd77177e680b19ac741c04aab26ac2c9bb2b89924f51f63e2f22b440decf2c65274a7640
 SHA512 
a35a6207e7f4375abca3ae57376c98b082846a88e83522c322d713e759367ceb2b3ad68488bed6f1645e47a106b0bbb2efbca6cb14b077672289acb4373e616f
 DIST gcc-12.2.0-musl-patches-1.tar.xz 3844 BLAKE2B 
004432806696f7d0a32366270ac45695e858abee73a255e44dc6e0a225339e4cad40aab0d51dfe9a55d5aa4b4001f5726064bb2eea3212a0874b2d27e229abd7
 SHA512 
c354edcd641a9dfaf902a0ff4c44c75065d0cf1c36bbf6c3c35c2e23bff22b8f70bcf4458a5a0ef86371e9f2fafca8a54ca822e35820ff442c9458a2819c3606
 DIST gcc-12.2.0-patches-1.tar.xz 12864 BLAKE2B 
a5ae0a85dfc1b6f0bd968f0d5262ebed14ec9cdb3249e3a4c571578c54eda0e53708ee7fe8e03e506366c7f3cf7926eced9b390d9dee948c1249298c0fabd9fb
 SHA512 
f3d793b89a2a0385d596162fb0c653d4acdf21ae418cb792c1786a01fde0391bd0719715dbf07d53636f127168f5cd99108a1dc11cf6cea889b7d82385bcc258
 DIST gcc-12.2.0.tar.xz 84645292 BLAKE2B 
715574af9ad678f9dc8cfd19c866bf910c7edfd479e7e9681337feaa9b54e5d304ddb85483816b8d89754d502405823ae2eff0d1e444538763f40be8e428d8da
 SHA512 
e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173

diff --git a/sys-devel/gcc/gcc-12.2.1_p20221008.ebuild 
b/sys-devel/gcc/gcc-12.2.1_p20221008.ebuild
new file mode 100644
index ..97d104a8472d
--- /dev/null
+++ b/sys-devel/gcc/gcc-12.2.1_p20221008.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+TOOLCHAIN_PATCH_DEV="sam"
+PATCH_VER="1"
+PATCH_GCC_VER="12.2.0"
+MUSL_VER="1"
+MUSL_GCC_VER="12.2.0"
+
+if [[ $(ver_cut 3) ==  ]] ; then
+   MY_PV_2=$(ver_cut 2)
+   if [[ ${MY_PV_2} == 0 ]] ; then
+   MY_PV_2=0
+   else
+   MY_PV_2=$(($(ver_cut 2) - 1))
+   fi
+
+   # e.g. 12.2. -> 12.1.1
+   TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.$(($(ver_cut 3) - 9998))
+elif [[ -n ${TOOLCHAIN_GCC_RC} ]] ; then
+   # Cheesy hack for RCs
+   MY_PV=$(ver_cut 1).$((($(ver_cut 2) + 1))).$((($(ver_cut 3) - 
1)))-RC-$(ver_cut 5)
+   MY_P=${PN}-${MY_PV}
+   
GCC_TARBALL_SRC_URI="https://gcc.gnu.org/pub/gcc/snapshots/${MY_PV}/${MY_P}.tar.xz;
+   TOOLCHAIN_SET_S=no
+   S="${WORKDIR}"/${MY_P}
+fi
+
+inherit toolchain
+
+# Needs to be after inherit (for now?), bug #830908
+EGIT_BRANCH=releases/gcc-$(ver_cut 1)
+
+# Don't keyword live ebuilds
+#if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then
+#  KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+#fi
+
+# Technically only if USE=hardened *too* right now, but no point in 
complicating it further.
+# If GCC is enabling CET by default, we need glibc to be built with support 
for it.
+# bug #830454
+RDEPEND="elibc_glibc? ( sys-libs/glibc[cet(-)?] )"
+DEPEND="${RDEPEND}"
+BDEPEND=">=${CATEGORY}/binutils-2.30[cet(-)?]"
+
+src_prepare() {
+   toolchain_src_prepare
+
+   eapply_user
+}



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

2022-10-09 Thread Sam James
commit: a6eba3eb654acab01f3aa795cfdf008312424899
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 22:14:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6eba3eb

sys-apps/iproute2: add github upstream metadata

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

 sys-apps/iproute2/metadata.xml | 33 +
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/sys-apps/iproute2/metadata.xml b/sys-apps/iproute2/metadata.xml
index 10e4c7acb786..f4d408562814 100644
--- a/sys-apps/iproute2/metadata.xml
+++ b/sys-apps/iproute2/metadata.xml
@@ -1,20 +1,21 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   base-sys...@gentoo.org
-   Gentoo Base System
-
-
-   build programs that use berkdb (just arpd)
-   Use dev-libs/libbpf
-   support loading eBPF programs from ELFs (e.g. LLVM's 
eBPF backend)
-   include support for iptables filtering
-   Use dev-libs/libbsd instead of internal 
funcs
-   only install ip and tc programs, without eBPF 
support
-   Support RPC lookups via net-libs/libtirpc 
in ss
-
-
-   cpe:/a:iproute2_project:iproute2
-
+   
+   base-sys...@gentoo.org
+   Gentoo Base System
+   
+   
+   build programs that use berkdb (just 
arpd)
+   Use dev-libs/libbpf
+   support loading eBPF programs from ELFs (e.g. 
LLVM's eBPF backend)
+   include support for iptables 
filtering
+   Use dev-libs/libbsd instead of 
internal funcs
+   only install ip and tc programs, without 
eBPF support
+   Support RPC lookups via 
net-libs/libtirpc in ss
+   
+   
+   cpe:/a:iproute2_project:iproute2
+   shemminger/iproute2
+   
 



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

2022-10-09 Thread Sam James
commit: 2e8d3818c0d760367637e9781b83dc5d6468fee4
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 22:53:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 23:10:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e8d3818

sys-devel/gcc: add 13.0.0_pre20221009

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

 sys-devel/gcc/Manifest  |  1 +
 sys-devel/gcc/gcc-13.0.0_pre20221009.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index db079eb7b589..c3f3be0dce39 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -23,6 +23,7 @@ DIST gcc-12.2.0-patches-1.tar.xz 12864 BLAKE2B 
a5ae0a85dfc1b6f0bd968f0d5262ebed1
 DIST gcc-12.2.0.tar.xz 84645292 BLAKE2B 
715574af9ad678f9dc8cfd19c866bf910c7edfd479e7e9681337feaa9b54e5d304ddb85483816b8d89754d502405823ae2eff0d1e444538763f40be8e428d8da
 SHA512 
e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173
 DIST gcc-13-20220918.tar.xz 79822640 BLAKE2B 
6c35953290e001352aac3a649de7a6dc696bcad85e5b2905bbb6863fd280ce78cfb5663a95e64a1006c869be0e7892adea85e2b1c9f799c3412f634b23f069d0
 SHA512 
e1b661a483d71f3f8d0dc66bbc2ce6a00bf3b3bb3142b27b07c01d46c10717ad7a95b79d44fa78e3821614032a5ab9194ff444ff280dd3304d4b030373436b6b
 DIST gcc-13-20221002.tar.xz 79899100 BLAKE2B 
e7bde088c380dacd08489541ead97a877a3b7cf514bb8c2e61144a5a953ff1da26342f8d52021983438a06f483f9cd6ac0ea966611801d4e57d3723ea13a09d4
 SHA512 
b47325dd065b579c71b0c2c57282c8d244894c4edd51a39e8ff97898e0a8dc80e920a9ada5ce13204f98c90c61e9015a4ecdae1c04a8417e20d1df93019f147a
+DIST gcc-13-20221009.tar.xz 79944512 BLAKE2B 
436a290bf7cf99eddb636f2f73cf31d5b2f7626007215f83ee72ce995bc24207b627aec2752fd641ffc14ac6e1c809029a08c566cde6a79503e2041a54c9e914
 SHA512 
c2bd85dd1b9a2a8e04609614ff6e8fc959f1ce0b98d4468759d806a44b3ca8fababed722e672588cc87dc18d199891f598dcd36bfe69d7d074b93fa74676b6f4
 DIST gcc-13.0.0-patches-1.tar.xz 11064 BLAKE2B 
82a7ad193dac00475931840bcee82ef7a51718a74af224b03a41f8349e34c2a64a3eb29985b4e2bffde958c58782242eccaedaa54d950e8d51d8bb6f45868e0e
 SHA512 
e04b510f529dd3187a08ae9cb9a894a3d3d30af81f13c43cc082fda7d26c44a3bf19d36ec02024b2ade8b8c193e9730246abeadee603c41b5873c5b785709921
 DIST gcc-8.5.0-patches-2.tar.bz2 16921 BLAKE2B 
619a47f74edf05fa01c9de59d0ff7abb027a01cf0bdec91ac41046166192f4eae561684136c4a6a5e077f64754bb5b0710905129f31b0def21d88f92e6bba7fb
 SHA512 
b6095d4570895e2c4dd58fed5756194aea27391b813e5e2de42b2749cb318c4bea2087eb0ff92c70e7f98ae4482c49d476db57be83d7beb19fd462aa61714ab2
 DIST gcc-8.5.0.tar.xz 63841008 BLAKE2B 
aa81a1a730fd7371360f6abed6ba78b5843fd18c58d5de5687acc320741b9e430e85df3535a1ef7a26051409be8d2f0945f503e5968480d919103123a99d4b12
 SHA512 
92f599680e6b7fbce88bcdda810f468777d541e5fddfbb287f7977d51093de2a5178bd0e6a08dfe37090ea10a0508a43ccd00220041abbbec33f1179bfc174d8

diff --git a/sys-devel/gcc/gcc-13.0.0_pre20221009.ebuild 
b/sys-devel/gcc/gcc-13.0.0_pre20221009.ebuild
new file mode 100644
index ..641ab05e8153
--- /dev/null
+++ b/sys-devel/gcc/gcc-13.0.0_pre20221009.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+TOOLCHAIN_PATCH_DEV="xen0n"
+PATCH_VER="1"
+PATCH_GCC_VER="13.0.0"
+MUSL_GCC_VER="13.0.0"
+
+if [[ $(ver_cut 3) ==  ]] ; then
+   MY_PV_2=$(ver_cut 2)
+   MY_PV_3=$(($(ver_cut 3) - 9998))
+   if [[ ${MY_PV_2} == 0 ]] ; then
+   MY_PV_2=0
+   MY_PV_3=0
+   else
+   MY_PV_2=$(($(ver_cut 2) - 1))
+   fi
+
+   # e.g. 12.2. -> 12.1.1
+   TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.${MY_PV_3}
+fi
+
+inherit toolchain
+# Needs to be after inherit (for now?), bug #830908
+EGIT_BRANCH=master
+
+# Don't keyword live ebuilds
+if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then
+   #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips 
~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~loong"
+fi
+
+# Technically only if USE=hardened *too* right now, but no point in 
complicating it further.
+# If GCC is enabling CET by default, we need glibc to be built with support 
for it.
+# bug #830454
+RDEPEND="elibc_glibc? ( sys-libs/glibc[cet(-)?] )"
+DEPEND="${RDEPEND}"
+BDEPEND="${CATEGORY}/binutils[cet(-)?]"
+
+src_prepare() {
+   local p upstreamed_patches=(
+   # add them here
+   )
+   for p in "${upstreamed_patches[@]}"; do
+   rm -v "${WORKDIR}/patch/${p}" || die
+   done
+
+   toolchain_src_prepare
+
+   eapply_user
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, gnome-extra/gnome-boxes/

2022-10-09 Thread Matt Turner
commit: 378e7c94d14988c295369a302fd2984d3e01ec5b
Author: brahmajit das  protonmail  com>
AuthorDate: Tue Sep 20 16:39:23 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 23:00:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378e7c94

gnome-extra/gnome-boxes: Version bump to 43.0

Closes: https://github.com/gentoo/gentoo/pull/27364
Signed-off-by: brahmajit das  protonmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 gnome-extra/gnome-boxes/Manifest|   1 +
 gnome-extra/gnome-boxes/gnome-boxes-43.0.ebuild | 121 
 profiles/package.mask   |   1 +
 3 files changed, 123 insertions(+)

diff --git a/gnome-extra/gnome-boxes/Manifest b/gnome-extra/gnome-boxes/Manifest
index f7343c50c880..5a899c5e4761 100644
--- a/gnome-extra/gnome-boxes/Manifest
+++ b/gnome-extra/gnome-boxes/Manifest
@@ -1 +1,2 @@
 DIST gnome-boxes-42.3.tar.xz 1235916 BLAKE2B 
69a52117b0ef459b4f6c11287f3961283c0493522875958ae65cf1838d9359b60e1c376bf86c1bc1899e69b6b9aed72a32aa39c7e687afef6a23de50d599b8e8
 SHA512 
2c455830b76cffc647838b797dc7667d9dec0be45658972075b203553bd73bb54dd6b9b22891da9eb12bea7f157b26980a172685a10e1d252f32014f38eb8805
+DIST gnome-boxes-43.0.tar.xz 1232476 BLAKE2B 
be12499c8a155d47d4d0479b33a7947e6df0382eda0be84497c5f60391e2b36c96dca30d48840d9c23034fa79f9f2bbb2fb534403d0da92f0d653ae22382c00c
 SHA512 
64e549694bead564fe0f3754e55576d259cf404f13f3db4fd2f1b56e80ce7c126d0e4c07a91fa168d27c511539cd0cf4b56cb39bea0c758930b61d356f9f110c

diff --git a/gnome-extra/gnome-boxes/gnome-boxes-43.0.ebuild 
b/gnome-extra/gnome-boxes/gnome-boxes-43.0.ebuild
new file mode 100644
index ..7af9bb261f0c
--- /dev/null
+++ b/gnome-extra/gnome-boxes/gnome-boxes-43.0.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+VALA_MIN_API_VERSION="0.40"
+
+inherit gnome.org gnome2-utils linux-info meson readme.gentoo-r1 vala xdg
+
+DESCRIPTION="Simple GNOME application to access remote or virtual systems"
+HOMEPAGE="https://wiki.gnome.org/Apps/Boxes;
+
+LICENSE="LGPL-2+ CC-BY-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+# FIXME: qemu probably needs to depend on spice[smartcard] directly with 
USE=spice
+# FIXME: Check over libvirt USE=libvirtd,qemu and the smartcard/usbredir 
requirements
+# Technically vala itself still ships a libsoup vapi, but that may change, and 
it should be better to use the .vapi from the same libsoup version
+DEPEND="
+   >=app-arch/libarchive-3.0.0:=
+   >=dev-libs/glib-2.52:2
+   >=x11-libs/gtk+-3.24.1:3
+   >=gui-libs/libhandy-1.5.0:1
+   >=sys-libs/libosinfo-1.10.0-r1
+   app-crypt/libsecret
+   net-libs/libsoup:3.0
+   virtual/libusb:1
+   >=app-emulation/libvirt-glib-4.0.0
+   >=dev-libs/libxml2-2.7.8:2
+   >=net-misc/spice-gtk-0.32[gtk3(+),smartcard,usbredir]
+   app-misc/tracker:3
+   >=net-libs/webkit-gtk-2.38.0:4.1
+
+   >=dev-libs/gobject-introspection-1.56:=
+   >=dev-libs/libgudev-165:=
+" # gobject-introspection needed for libovf subproject
+# These are called via exec():
+# sys-fs/mtools mcopy for unattended file copying for files that libarchive 
doesn't support
+# app-cdr/cdrtools mkisofs is needed for unattended installer secondary disk 
image creation
+# app-emulation/libguestfs virt-sysprep is used for VM cloing, if not there, 
it logs debug and doesn't function
+# sys-apps/policycoreutils restorecon is used for checking selinux context
+# app-emulation/libvirt virsh used for various checks (and we need the library 
anyways)
+# sys-auth/polkit used for making all libvirt system disks readable via 
"pkexec chmod a+r" that aren't already readable to the user (libvirt system 
importer)
+# app-emulation/qemu qemu-img used to convert image to QCOW2 format during copy
+RDEPEND="${DEPEND}
+   app-cdr/cdrtools
+   app-misc/tracker-miners:3[iso]
+   app-emulation/spice[smartcard]
+   >=app-emulation/libvirt-0.9.3[libvirtd,qemu]
+   >=app-emulation/qemu-1.3.1[spice,smartcard,usbredir]
+   sys-fs/mtools
+   sys-auth/polkit
+"
+# This is only needed for creating the .vapi file, but gnome-boxes needs it
+BDEPEND="
+   $(vala_depend)
+   sys-libs/libosinfo[vala]
+   app-crypt/libsecret[vala]
+   net-libs/libsoup:3.0[vala]
+   app-emulation/libvirt-glib[vala]
+   net-misc/spice-gtk[vala]
+   x11-libs/vte:2.91[vala]
+   dev-libs/appstream-glib
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="Before running gnome-boxes for local VMs, you will need to load 
the KVM modules.
+If you have an Intel Processor, run:
+# modprobe kvm-intel
+
+If you have an AMD Processor, run:
+# modprobe kvm-amd"
+
+pkg_pretend() {
+   linux-info_get_any_version
+
+   if linux_config_exists; then
+   if ! { 

[gentoo-commits] repo/gentoo:master commit in: app-misc/tracker/, profiles/

2022-10-09 Thread Matt Turner
commit: 91984511be6a839c93b0ce8908ca0e07d788a500
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:52:38 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:56:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91984511

app-misc/tracker: Add revbump that uses libsoup:3.0

Signed-off-by: Matt Turner  gentoo.org>

 app-misc/tracker/tracker-3.4.0-r1.ebuild | 113 +++
 profiles/package.mask|   1 +
 2 files changed, 114 insertions(+)

diff --git a/app-misc/tracker/tracker-3.4.0-r1.ebuild 
b/app-misc/tracker/tracker-3.4.0-r1.ebuild
new file mode 100644
index ..35fbb815057c
--- /dev/null
+++ b/app-misc/tracker/tracker-3.4.0-r1.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit bash-completion-r1 flag-o-matic gnome.org gnome2-utils linux-info 
meson python-any-r1 systemd vala xdg
+
+DESCRIPTION="A tagging metadata database, search tool and indexer"
+HOMEPAGE="https://wiki.gnome.org/Projects/Tracker 
https://gitlab.gnome.org/GNOME/tracker;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="3/0" # libtracker-sparql-3.0 soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="gtk-doc +miners stemmer test"
+RESTRICT="!test? ( test )"
+
+PV_SERIES=$(ver_cut 1-2)
+
+RDEPEND="
+   >=dev-libs/glib-2.52:2
+   >=sys-apps/dbus-1.3.2
+   >=dev-libs/gobject-introspection-1.54:=
+   >=dev-libs/icu-4.8.1.2:=
+   >=dev-libs/json-glib-1.4
+   >=net-libs/libsoup-2.99.2:3.0
+   >=dev-libs/libxml2-2.7
+   >=dev-db/sqlite-3.29.0:3
+   stemmer? ( dev-libs/snowball-stemmer:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/glib-utils
+   app-text/asciidoc
+   dev-libs/libxslt
+   $(vala_depend)
+   gtk-doc? (
+   >=dev-util/gtk-doc-1.8
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/docbook-xml-dtd:4.5
+   )
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   test? (
+   $(python_gen_any_dep 'dev-python/pygobject[${PYTHON_USEDEP}]')
+   $(python_gen_any_dep 'dev-python/tappy[${PYTHON_USEDEP}]')
+   )
+   ${PYTHON_DEPS}
+"
+PDEPEND="miners? ( >=app-misc/tracker-miners-${PV_SERIES} )"
+
+function inotify_enabled() {
+   if linux_config_exists; then
+   if ! linux_chkconfig_present INOTIFY_USER; then
+   ewarn "You should enable the INOTIFY support in your 
kernel."
+   ewarn "Check the 'Inotify support for userland' under 
the 'File systems'"
+   ewarn "option. It is marked as CONFIG_INOTIFY_USER in 
the config"
+   die 'missing CONFIG_INOTIFY'
+   fi
+   else
+   einfo "Could not check for INOTIFY support in your kernel."
+   fi
+}
+
+python_check_deps() {
+   python_has_version -b \
+   "dev-python/pygobject[${PYTHON_USEDEP}]" \
+   "dev-python/tappy[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   linux-info_pkg_setup
+   inotify_enabled
+
+   use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   vala_setup
+   xdg_environment_reset
+}
+
+src_configure() {
+   append-cflags -DTRACKER_DEBUG -DG_DISABLE_CAST_CHECKS
+
+   local emesonargs=(
+   $(meson_use gtk-doc docs)
+   -Dman=true
+   $(meson_feature stemmer)
+   -Dunicode_support=icu
+   -Dbash_completion_dir="$(get_bashcompdir)"
+   -Dsystemd_user_services_dir="$(systemd_get_userunitdir)"
+   $(meson_use test tests)
+   -Dintrospection=enabled
+   -Dsoup=soup3
+   )
+   meson_src_configure
+}
+
+src_test() {
+   dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed'
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}

diff --git a/profiles/package.mask b/profiles/package.mask
index 1e21c70ae3b6..4c82a68cf49b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -475,6 +475,7 @@ sys-devel/automake:1.11
 # Migration to it is expected for GNOME 42, NOT to be unmasked with GNOME 41.
 >=app-arch/file-roller-43
 >=app-text/libgepub-0.7.0
+>=app-misc/tracker-3.4.0-r1
 >=app-misc/tracker-miners-3.4.0-r1
 >=dev-libs/gjs-1.74
 >=dev-libs/libgweather-4.2.0



[gentoo-commits] repo/gentoo:master commit in: app-misc/tracker-miners/, profiles/

2022-10-09 Thread Matt Turner
commit: b3bb71a19b227b22b6c053b6543f006b5e49abd8
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:50:50 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:56:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3bb71a1

app-misc/tracker-miners: Add revbump that uses libosinfo that uses libsoup:3.0

Signed-off-by: Matt Turner  gentoo.org>

 .../tracker-miners/tracker-miners-3.4.0-r1.ebuild  | 169 +
 profiles/package.mask  |   1 +
 2 files changed, 170 insertions(+)

diff --git a/app-misc/tracker-miners/tracker-miners-3.4.0-r1.ebuild 
b/app-misc/tracker-miners/tracker-miners-3.4.0-r1.ebuild
new file mode 100644
index ..de587e96a954
--- /dev/null
+++ b/app-misc/tracker-miners/tracker-miners-3.4.0-r1.ebuild
@@ -0,0 +1,169 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit flag-o-matic gnome.org gnome2-utils meson python-any-r1 systemd xdg
+
+DESCRIPTION="Collection of data extractors for Tracker/Nepomuk"
+HOMEPAGE="https://wiki.gnome.org/Projects/Tracker;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="3"
+IUSE="cue exif ffmpeg gif gsf +gstreamer iptc +iso +jpeg networkmanager +pdf 
+playlist raw +rss seccomp test +tiff upower +xml xmp xps"
+
+REQUIRED_USE="cue? ( gstreamer )" # cue is currently only supported via 
gstreamer, not ffmpeg
+RESTRICT="!test? ( test )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# tracker-2.1.7 currently always depends on ICU (theoretically could be 
libunistring instead); so choose ICU over enca always here for the time being 
(ICU is preferred)
+RDEPEND="
+   >=dev-libs/glib-2.70:2
+   >=app-misc/tracker-3.4.0:3
+   gstreamer? (
+   >=media-libs/gstreamer-1.20:1.0
+   >=media-libs/gst-plugins-base-1.20:1.0
+   >=media-plugins/gst-plugins-meta-1.20:1.0 )
+   !gstreamer? (
+   ffmpeg? ( media-video/ffmpeg:0= ) )
+
+   >=sys-apps/dbus-1.3.1
+   xmp? ( >=media-libs/exempi-2.1.0:= )
+   raw? ( media-libs/gexiv2 )
+   >=dev-libs/icu-4.8.1.2:=
+   cue? ( media-libs/libcue:= )
+   exif? ( >=media-libs/libexif-0.6 )
+   gsf? ( >=gnome-extra/libgsf-1.14.24:= )
+   xps? ( app-text/libgxps )
+   iptc? ( media-libs/libiptcdata )
+   jpeg? ( media-libs/libjpeg-turbo:0= )
+   iso? ( >=sys-libs/libosinfo-1.10.0-r1 )
+   >=media-libs/libpng-1.2:0=
+   seccomp? ( >=sys-libs/libseccomp-2.0 )
+   tiff? ( media-libs/tiff:0 )
+   xml? ( >=dev-libs/libxml2-2.6 )
+   pdf? ( >=app-text/poppler-0.16.0:=[cairo] )
+   playlist? ( >=dev-libs/totem-pl-parser-3:= )
+   upower? ( >=sys-power/upower-0.9.0 )
+   sys-libs/zlib:0
+   gif? ( media-libs/giflib:= )
+
+   networkmanager? ( net-misc/networkmanager )
+
+   rss? ( >=net-libs/libgrss-0.7:0 )
+   app-arch/gzip
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   app-text/asciidoc
+   dev-libs/libxslt
+   dev-util/glib-utils
+   dev-util/gdbus-codegen
+
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   test? (
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/pygobject[${PYTHON_USEDEP}]')
+   $(python_gen_any_dep 'dev-python/tappy[${PYTHON_USEDEP}]')
+   gstreamer? (
+   media-libs/gstreamer:1.0[introspection]
+   || (
+   media-plugins/gst-plugins-libav:1.0
+   media-plugins/gst-plugins-openh264:1.0
+   )
+   )
+   )
+"
+
+python_check_deps() {
+   python_has_version -b \
+   "dev-python/pygobject[${PYTHON_USEDEP}]" \
+   "dev-python/tappy[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   # Avoid gst-inspect calls that may trigger sandbox; instead assume the 
detection will succeed and add the needed test deps for that
+   if use gstreamer; then
+   sed -i -e 's:detect-h264-codec.sh:/bin/true:' 
tests/functional-tests/meson.build || die
+   else
+   sed -i -e 's:detect-h264-codec.sh:/bin/false:' 
tests/functional-tests/meson.build || die
+   fi
+   gnome2_environment_reset # sets gstreamer safety variables
+}
+
+src_configure() {
+   append-cflags -DTRACKER_DEBUG -DG_DISABLE_CAST_CHECKS
+
+   local media_extractor="none"
+   if use gstreamer ; then
+   media_extractor="gstreamer"
+   elif use ffmpeg ; then
+   media_extractor="libav"
+   fi
+
+   local emesonargs=(
+   -Dtracker_core=system
+
+   -Dman=true
+   -Dextract=true
+   $(meson_use test functional_tests)
+   $(meson_use test 

[gentoo-commits] repo/gentoo:master commit in: profiles/, sys-libs/libosinfo/

2022-10-09 Thread Matt Turner
commit: 80b0d90176f99f59fb3ce46f8184f9f3f362eb9e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:48:14 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:48:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80b0d901

sys-libs/libosinfo: Add revbump that uses libsoup:3.0

Signed-off-by: Matt Turner  gentoo.org>

 profiles/package.mask |  1 +
 sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild | 67 +++
 2 files changed, 68 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 3e3eafdff4f5..b0d47f69e10f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -510,6 +510,7 @@ net-libs/webkit-gtk:5
 >=net-misc/rygel-0.42
 sci-geosciences/geocode-glib:2
 >=sci-geosciences/gnome-maps-43
+>=sys-libs/libosinfo-1.10.0-r1
 >=www-client/epiphany-43
 >=x11-wm/mutter-43
 

diff --git a/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild 
b/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild
new file mode 100644
index ..649941fa6286
--- /dev/null
+++ b/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson udev vala xdg
+
+DESCRIPTION="GObject library for managing information about real and virtual 
OSes"
+HOMEPAGE="https://libosinfo.org/;
+SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+
+IUSE="gtk-doc +introspection +vala test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# Unsure about osinfo-db-tools rdep, but at least fedora does it too
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   net-libs/libsoup:3.0
+   >=dev-libs/libxml2-2.6.0
+   >=dev-libs/libxslt-1.0.0
+   sys-apps/hwdata
+   sys-apps/osinfo-db-tools
+   sys-apps/osinfo-db
+   introspection? ( >=dev-libs/gobject-introspection-1.56:= )
+"
+DEPEND="${RDEPEND}"
+# perl dep is for pod2man for automagic manpage building
+BDEPEND="
+   dev-lang/perl
+   dev-util/glib-utils
+   gtk-doc? (
+   >=dev-util/gtk-doc-1.10
+   app-text/docbook-xml-dtd:4.3
+   )
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   vala? ( $(vala_depend) )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PV}-build-Add-option-to-disable-libsoup3.patch
+)
+
+src_prepare() {
+   default
+   use vala && vala_setup
+   xdg_environment_reset
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use gtk-doc enable-gtk-doc)
+   $(meson_feature introspection enable-introspection)
+   $(meson_use test enable-tests)
+   $(meson_feature vala enable-vala)
+   -Dlibsoup3=enabled
+   -Dwith-pci-ids-path="${EPREFIX}"/usr/share/hwdata/pci.ids
+   -Dwith-usb-ids-path="${EPREFIX}"/usr/share/hwdata/usb.ids
+   )
+   meson_src_configure
+}



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

2022-10-09 Thread Matt Turner
commit: 72c9b0b3c1a8aa18a8419e3d0cbf2d6f1b697858
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:42:52 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:43:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c9b0b3

net-libs/phodav: Depend on dev-util/gtk-doc

Closes: https://bugs.gentoo.org/872155
Signed-off-by: Matt Turner  gentoo.org>

 net-libs/phodav/phodav-2.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/phodav/phodav-2.5.ebuild 
b/net-libs/phodav/phodav-2.5.ebuild
index b8bd48f8cf93..4476c7ea8bf5 100644
--- a/net-libs/phodav/phodav-2.5.ebuild
+++ b/net-libs/phodav/phodav-2.5.ebuild
@@ -27,6 +27,7 @@ BDEPEND="
app-text/xmlto
sys-devel/gettext
virtual/pkgconfig
+   gtk-doc? ( dev-util/gtk-doc )
test? ( gnome-base/dconf )
 "
 



[gentoo-commits] repo/gentoo:master commit in: profiles/, net-libs/phodav/

2022-10-09 Thread Matt Turner
commit: 8b76a608fcfcc9507b10b16b23c99636d3e0d12b
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:37:04 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:43:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b76a608

net-libs/phodav: Version bump to 3.0

Signed-off-by: Matt Turner  gentoo.org>

 net-libs/phodav/Manifest  |  1 +
 net-libs/phodav/phodav-3.0.ebuild | 69 +++
 profiles/package.mask |  1 +
 3 files changed, 71 insertions(+)

diff --git a/net-libs/phodav/Manifest b/net-libs/phodav/Manifest
index 01dc91841c08..5e00c15a67b2 100644
--- a/net-libs/phodav/Manifest
+++ b/net-libs/phodav/Manifest
@@ -1 +1,2 @@
 DIST phodav-2.5.tar.xz 62992 BLAKE2B 
aca0141c20c727dd27af3760caf27ec0f7a4936c3c35dbdb60a8a15b5bd75ebd97dfef8bb96f50b266d7a0e53fb8c0e21416dea855ff107b362dba0e89283a64
 SHA512 
4b6cd6a40118bf9c042abcfc3e7cb593b620922aae4dd3daf77682bf9da2030a0958bc0206531d5950f85551ef8f5da21fb21c54b9bd5e56b880f54e0983bc01
+DIST phodav-3.0.tar.xz 65728 BLAKE2B 
c7980fc9c8e5fe3034b16bbb6433d09b4365a5c50188476f4dfcb1d1ae32f4988c22933b4c811dbef44fe5fc4fbebcf6beb8e859a3c9d01fb7075336caaba8ca
 SHA512 
a4720083fd581023ea78cc09e6df4b5d2f90894f916004cf28c7fa557da61d8c7a5539fa6b50647efcd9f771afd09fdc40579a8e860c8ea20540b25eb26a

diff --git a/net-libs/phodav/phodav-3.0.ebuild 
b/net-libs/phodav/phodav-3.0.ebuild
new file mode 100644
index ..417b8f4b9adf
--- /dev/null
+++ b/net-libs/phodav/phodav-3.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org meson systemd udev
+
+DESCRIPTION="WebDav server implementation using libsoup"
+HOMEPAGE="https://wiki.gnome.org/phodav https://gitlab.gnome.org/GNOME/phodav;
+
+LICENSE="LGPL-2.1+"
+SLOT="3.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="gtk-doc systemd test zeroconf"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.51.2:2
+   >=net-libs/libsoup-3.0.0:3.0
+   dev-libs/libxml2
+   zeroconf? ( net-dns/avahi[dbus] )
+
+   !net-libs/phodav:2.0
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   app-text/asciidoc
+   app-text/docbook-xml-dtd:4.5
+   app-text/xmlto
+   sys-devel/gettext
+   virtual/pkgconfig
+   gtk-doc? ( dev-util/gtk-doc )
+   test? ( gnome-base/dconf )
+"
+
+src_prepare() {
+   default
+
+   if ! use zeroconf ; then
+   sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service 
|| die
+   fi
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_feature gtk-doc gtk_doc)
+   $(meson_feature zeroconf avahi)
+   -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)"
+   -Dudevrulesdir="$(get_udevdir)/rules.d"
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+
+   if ! use systemd ; then
+   newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
+   udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
+   fi
+}
+
+pkg_postinst() {
+   udev_reload
+}
+
+pkg_postrm() {
+   udev_reload
+}

diff --git a/profiles/package.mask b/profiles/package.mask
index ad008afa31c7..3e3eafdff4f5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -502,6 +502,7 @@ media-libs/libshumate
 >=net-libs/gssdp-1.6
 >=net-libs/gupnp-1.6
 net-libs/libsoup:3.0
+net-libs/phodav:3.0
 net-libs/rest:1.0
 net-libs/uhttpmock:1.0
 net-libs/webkit-gtk:4.1



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

2022-10-09 Thread Matt Turner
commit: 1959324c90165de008e944d03ec5a3ae6133
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Oct  9 22:35:48 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct  9 22:40:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1959324c

net-libs/phodav: Depend on app-text/docbook-xml-dtd:4.5

Signed-off-by: Matt Turner  gentoo.org>

 net-libs/phodav/phodav-2.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/phodav/phodav-2.5.ebuild 
b/net-libs/phodav/phodav-2.5.ebuild
index 0e03c1c68781..b8bd48f8cf93 100644
--- a/net-libs/phodav/phodav-2.5.ebuild
+++ b/net-libs/phodav/phodav-2.5.ebuild
@@ -23,6 +23,7 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="
app-text/asciidoc
+   app-text/docbook-xml-dtd:4.5
app-text/xmlto
sys-devel/gettext
virtual/pkgconfig



[gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/

2022-10-09 Thread Sergey Torokhov
commit: 5461f983ef3829d153fbdc0ccf2598dd8e990f02
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sun Oct  9 22:28:48 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sun Oct  9 22:28:48 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5461f983

dev-util/ecllipse-parallel-bin: 4.25 version bump

Closes: https://bugs.gentoo.org/859976

Signed-off-by: Sergey Torokhov  yandex.ru>

 dev-util/eclipse-parallel-bin/Manifest |  2 +
 .../eclipse-parallel-bin-4.25.ebuild   | 51 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/eclipse-parallel-bin/Manifest 
b/dev-util/eclipse-parallel-bin/Manifest
index be4fead6d..826cd37aa 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -2,3 +2,5 @@ DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 
322857025 BLAKE2B 4bfcf
 DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 
71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956
 SHA512 
58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
 DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 
30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083
 SHA512 
4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
 DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 
9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5
 SHA512 
c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
+DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 
3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b
 SHA512 
afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48
+DIST eclipse-parallel-2022-09-R-linux-gtk-x86_64.tar.gz 459079255 BLAKE2B 
478dfd07b0e14800e600960d530e32d3589fa67dfa2939a57e2d132f8ad5d9d6b900c9fc12c511073585c5a2b610b89350535ed2a2e22f9f55efe513b0cec927
 SHA512 
fc25b8bb7a4ff8968e81a293f5047cebf888f2c85ed7f5ede872c20078819d53171d6b3c59e700d9d4045692582b9b2333476ff08bc50c1da911f6e77ac9bb33

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild 
b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
new file mode 100644
index 0..5df1d1cfd
--- /dev/null
+++ b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.25.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="eclipse"
+MY_PV="2022-09"
+SRC_BASE="https://www.eclipse.org/downloads/download.php?r=1=/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk;
+
+DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
+HOMEPAGE="https://www.eclipse.org/;
+SRC_URI="
+   amd64? ( ${SRC_BASE}-x86_64.tar.gz )
+   arm64? ( ${SRC_BASE}-aarch64.tar.gz )
+"
+
+S="${WORKDIR}/${MY_PN}"
+
+LICENSE="EPL-2.0"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64"
+RESTRICT="mirror"
+
+RDEPEND="
+   || (
+   dev-java/openjdk:11 dev-java/openjdk:17
+   dev-java/openjdk-bin:11 dev-java/openjdk-bin:17
+   dev-java/openjdk-jre-bin:11
+   )
+   x11-libs/gtk+:3
+"
+
+QA_FLAGS_IGNORED="
+   /opt/eclipse-parallel-bin/eclipse
+   
/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
+   /opt/eclipse-parallel-bin/plugins/*
+"
+
+src_install() {
+   insinto "/opt/${PN}"
+   doins -r "${S}/."
+
+   exeinto "/opt/${PN}"
+   doexe "${S}/${MY_PN}"
+   make_wrapper ${PN%-*} "/opt/${PN}/${MY_PN} -vm /opt/openjdk*/bin/java" 
"" "/opt/${PN}" "/opt/bin"
+
+   doicon -s 48 
plugins/org.eclipse.platform_4.25.0.v20220831-1800/eclipse48.png
+   make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" 
eclipse48 "Development;" || die "Failed making desktop entry!"
+}



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/WebPlotDigitizer-bin/

2022-10-09 Thread Sergey Torokhov
commit: e16366b73c86ef0d6420a48a553ef50aeeac552b
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sun Oct  9 22:15:21 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sun Oct  9 22:15:21 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e16366b7

media-gfx/WebPlotDigitizer-bin: 4.6 version bump

Signed-off-by: Sergey Torokhov  yandex.ru>

 media-gfx/WebPlotDigitizer-bin/Manifest|  1 +
 .../WebPlotDigitizer-bin-4.6.ebuild| 65 ++
 2 files changed, 66 insertions(+)

diff --git a/media-gfx/WebPlotDigitizer-bin/Manifest 
b/media-gfx/WebPlotDigitizer-bin/Manifest
index 071e928ff..d9548b90e 100644
--- a/media-gfx/WebPlotDigitizer-bin/Manifest
+++ b/media-gfx/WebPlotDigitizer-bin/Manifest
@@ -1 +1,2 @@
 DIST WebPlotDigitizer-4.5-linux-x64.zip 103164957 BLAKE2B 
e302c193d998638bea65818f48a7da5cc77ebde2ec32ca98fad7281fefb258d71b702012826f7214476a7c17b73f3e6a92700ecae826d105995ad936f44b2bae
 SHA512 
e3712c2ade930a39c82e1cd430e74b844742089f9f0e2a7e702b45472538d64e601d73890cd407146c155b33e02ed5d7832f20856a79d7981552bc3275bbe9ab
+DIST WebPlotDigitizer-4.6-linux-x64.zip 109834831 BLAKE2B 
5ec14e9498796c28d191023ca9688a5b581033e75607588357e9320614dd02a3098e76cbaa45ab16508273799afaab16c334f50e40b189f8d7cbf70a09f941ab
 SHA512 
635e3c040a42d13c1ac4a83d7e76f5e20b3329dbd375c2177446a4b4232a0edfb3de725c912efc072a9ae5c0bae8ffcb4d6998be40ede554fec8a105f9e654d9

diff --git a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild 
b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild
new file mode 100644
index 0..65a58ebe0
--- /dev/null
+++ b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+MY_PN=${PN%-*}
+
+inherit desktop python-single-r1 xdg
+
+DESCRIPTION="Web based tool to extract data from plots, images, and maps"
+HOMEPAGE="https://automeris.io/WebPlotDigitizer/;
+SRC_URI="https://automeris.io/downloads/${MY_PN}-${PV}-linux-x64.zip;
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+#RESTRICT="strip"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+QA_PREBUILT="
+   */libGLESv2.so
+   */libEGL.so
+   */libffmpeg.so
+   */libvk_swiftshader.so
+   */${MY_PN}-${PV}
+   "
+
+## RDEPEND is still required to be filled with actual runtime-deps:
+## python is just assumed runtime-dependency.
+RDEPEND="
+   ${PYTHON_DEPS}
+   dev-libs/nss
+   x11-libs/gtk+:3[X,cups,introspection]
+"
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/${MY_PN}-${PV}-linux-x64"
+
+QA_FLAGS_IGNORED="
+   /opt/${P}/chrome-sandbox
+   /opt/${P}/libvulkan.*
+"
+
+## It seems media-libs/alsa-lib is required by chrome-sandbox.
+## Actually this library isn't required to work.
+QA_SONAME="
+   /usr/lib64/libasound.so.2
+   /usr/lib64/libxkbcommon.so.0
+"
+
+src_install() {
+   insinto "/opt/${P}"
+   doins -r "${S}/."
+
+   exeinto "/opt/${P}"
+   doexe "/${S}/${MY_PN}-${PV}"
+   dosym ../../opt/"${MY_PN}"-bin-"${PV}/${MY_PN}-${PV}" /usr/bin/"${PN}"
+
+   newicon "/${S}/resources/app/images/icon/icon.png" ${PN}-icon.png
+
+   make_desktop_entry "/opt/${P}/${MY_PN}-${PV}" "${MY_PN}" "${PN}-icon" 
"Graphics"
+   ## After opening via xdg-open the js scripts could not work (i.e. "File 
- Load Image" menu)
+   make_desktop_entry "/usr/bin/xdg-open 
/opt/${P}/resources/app/index.html" "${MY_PN} html" "viewhtml" "Graphics"
+}



[gentoo-commits] repo/gentoo:master commit in: gui-libs/display-manager-init/files/, gui-libs/display-manager-init/

2022-10-09 Thread Piotr Karbowski
commit: 856c7ecf226fcd8803d3e144a0ec97291de87a18
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sun Oct  9 22:08:58 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sun Oct  9 22:10:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856c7ecf

gui-libs/display-manager-init: 1.1 version bump

Following WilliamH suggestion, the init has been redone in a
openrc-friendly way, along with little cleanup and restore
support for nox boot parameter, since nox were with us since
always, good to still support it alongside nogui one.

Closes: https://bugs.gentoo.org/show_bug.cgi?id=774189
Closes: https://bugs.gentoo.org/show_bug.cgi?id=768729
Signed-off-by: Piotr Karbowski  gentoo.org>

 .../display-manager-init-1.1.ebuild|  54 ++
 .../files/display-manager-setup.initd-r1   |  13 ++
 .../files/display-manager.initd-r3 | 201 +
 3 files changed, 268 insertions(+)

diff --git a/gui-libs/display-manager-init/display-manager-init-1.1.ebuild 
b/gui-libs/display-manager-init/display-manager-init-1.1.ebuild
new file mode 100644
index ..adecdb877f9e
--- /dev/null
+++ b/gui-libs/display-manager-init/display-manager-init-1.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="RC init files for starting display and login managers"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:X11;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+S="${WORKDIR}"
+
+RDEPEND="
+   sys-apps/gentoo-functions
+   !<=sys-apps/sysvinit-2.98
+   !<=x11-apps/xinit-1.4.1
+   !<=x11-base/xorg-server-1.20.10
+   !=x11-base/xorg-server-1.20.10-r2
+"
+
+src_install() {
+   newinitd "${FILESDIR}"/display-manager-setup.initd-r1 
display-manager-setup
+   newinitd "${FILESDIR}"/display-manager.initd-r3 display-manager
+   newinitd "${FILESDIR}"/xdm.initd xdm
+   newconfd "${FILESDIR}"/display-manager.confd display-manager
+   newbin "${FILESDIR}"/startDM-r1 startDM
+   # backwards compatibility
+   dosym "${ESYSROOT}"/usr/bin/startDM /etc/X11/startDM.sh
+}
+
+pkg_preinst() {
+   if [[ ${REPLACING_VERSIONS} == "" && -f "${EROOT}"/etc/conf.d/xdm && ! 
-f "${EROOT}"/etc/conf.d/display-manager ]]; then
+   cp -a "${EROOT}"/etc/conf.d/{xdm,display-manager} || die
+   fi
+   local rlevel using_xdm
+   using_xdm=no
+   for rlevel in boot default sysinit; do
+   if [[ -e "${EROOT}"/etc/runlevels/${rlevel}/xdm ]]; then
+   using_xdm=yes
+   fi
+   done
+   if [[ "${using_xdm}" = "yes" ]]; then
+   ewarn "The 'xdm' service has been replaced by new 
'display-manager'"
+   ewarn "service, please switch now:"
+   ewarn
+   ewarn "  # rc-update del xdm default"
+   ewarn "  # rc-update add display-manager default"
+   ewarn
+   ewarn "Remember to run etc-update or dispatch-conf to update 
the"
+   ewarn "config protected service files."
+   fi
+}

diff --git a/gui-libs/display-manager-init/files/display-manager-setup.initd-r1 
b/gui-libs/display-manager-init/files/display-manager-setup.initd-r1
new file mode 100644
index ..a897bf990af8
--- /dev/null
+++ b/gui-libs/display-manager-init/files/display-manager-setup.initd-r1
@@ -0,0 +1,13 @@
+#!/sbin/openrc-run
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+depend() {
+   need localmount
+}
+
+start() {
+   if get_bootparam "nogui" || get_bootparam "nox"; then
+   touch /run/.nogui
+   fi
+}

diff --git a/gui-libs/display-manager-init/files/display-manager.initd-r3 
b/gui-libs/display-manager-init/files/display-manager.initd-r3
new file mode 100644
index ..8e94c2ea637b
--- /dev/null
+++ b/gui-libs/display-manager-init/files/display-manager.initd-r3
@@ -0,0 +1,201 @@
+#!/sbin/openrc-run
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2
+
+retry="TERM/5/TERM/5"
+
+# This is here to serve as a note to myself, and future developers.
+#
+# Any Display manager (gdm,kdm,xdm) has the following problem:  if
+# it is started before any getty, and no vt is specified, it will
+# usually run on vt2.  When the getty on vt2 then starts, and the
+# DM is already started, the getty will take control of the keyboard,
+# leaving us with a "dead" keyboard.
+#
+# Resolution: add the following line to /etc/inittab
+#
+#  x:a:once:/usr/bin/startDM
+#
+# and have /usr/bin/startDM start the DM in daemon mode if
+# a lock is present (with the info of what DM should be started),
+# else just fall through.
+#
+# How this 

[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/WebPlotDigitizer-bin/

2022-10-09 Thread Sergey Torokhov
commit: 931e51484fab448b26081ce0252edc908b830c33
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sun Oct  9 22:05:44 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sun Oct  9 22:05:44 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=931e5148

media-gfx/WebPlotDigitizer-bin: update QA_SONAME (pkg is amd64 only)

Closes: https://bugs.gentoo.org/855338

Signed-off-by: Sergey Torokhov  yandex.ru>

 media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild 
b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
index a5ad401e4..af608c947 100644
--- a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
+++ b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
@@ -45,8 +45,8 @@ QA_FLAGS_IGNORED="
 ## It seems media-libs/alsa-lib is required by chrome-sandbox.
 ## Actually this library isn't required to work.
 QA_SONAME="
-   /usr/lib.*/libasound.so.2
-   /usr/lib.*/libxkbcommon.so.0
+   /usr/lib64/libasound.so.2
+   /usr/lib64/libxkbcommon.so.0
 "
 
 src_install() {



[gentoo-commits] repo/proj/guru:dev commit in: app-office/openoffice-bin/

2022-10-09 Thread Sergey Torokhov
commit: 92cb09f09b4cd262d22ca788070370c0c1a3e94c
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sun Oct  9 22:01:08 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sun Oct  9 22:01:08 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=92cb09f0

app-office/openoffice-bin: drop old 4.1.11

Signed-off-by: Sergey Torokhov  yandex.ru>

 app-office/openoffice-bin/Manifest |  80 
 .../openoffice-bin/openoffice-bin-4.1.11.ebuild| 202 -
 2 files changed, 282 deletions(-)

diff --git a/app-office/openoffice-bin/Manifest 
b/app-office/openoffice-bin/Manifest
index b07126ed9..aa279d05c 100644
--- a/app-office/openoffice-bin/Manifest
+++ b/app-office/openoffice-bin/Manifest
@@ -1,83 +1,3 @@
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_install-rpm_en-US.tar.gz 168975506 
BLAKE2B 
21464729348d924fdffa4d49fdbb484b5716c810d142318f2f5c3a0f3e7211a9cfdee49dea57512821e88dc1e263175b471e7641e6404282044034a425967390
 SHA512 
8cdda4148e97455545e76ccd9a67c1479432eaceb97aabc2fe42c80e776a8f7dc3732dff4cfc7ace447f912890307535fb259e4240cfc2831fbf4c5a13120b49
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_ast.tar.gz 19036938 
BLAKE2B 
b596afb53524c8af26d6f930f9544b7fe6822d25ceeec12dd929873eddf6f8a15ebf2655e7b7d9551e9f21292b7db3ec3a59f6ee385e5859ff34f4422e0cf9d8
 SHA512 
8cfa6caecc4d2ec759e2f6f97af99b6fa51826d55aac970e33230a900b5f78fe4e102a20288a3d7c8dabbe0789e19cc8a1f422f765eedda93c46bafe365bafb9
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_bg.tar.gz 13584468 
BLAKE2B 
066391907702fcb588e4214f83ed0541b5475039289bb97b7a6f76869aba5116bfa03611a9e79c0bd0baa5ebf04037eb2c0687637661cdeeb7ee548701ba75d8
 SHA512 
799631cf4df046339c623b1e505ed5fe3a171a8744661966761100563b3cdaf710fcebd457bd5c649ab5272dc701a945a7c90d91a12cf70c789b4487773cf7bf
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_ca-XV.tar.gz 20528121 
BLAKE2B 
7c3fd047435660f99d0a07febcc2e7499e9a48849e326f23e13ad90d59cdfb822407819d585ca752a5ccf8e5097811e5d4573bceee7a72d45cfe57176ed1f9e7
 SHA512 
1dda95fd37d2e41eaea50a4895f56d1845a29fae1e97d019428c338af31b9f306e619b46d92e487ed6aaaf8b1dc279617a12296f64cfa52ff3e58c26e122c1a1
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_ca.tar.gz 20522207 
BLAKE2B 
ea0d955756ac249f21a7be184a2bbea45ffe7e4925426a350f9c01998de9072305bf1827e71841ad79abc30d73c52d4c28b974a0702da121170e5218737a63c2
 SHA512 
3cb2dc991396afb7b1b60bf1298c6555f341a3cda9c7226c342f2f8667500db3c088d01fa2c17deaf6e0bc51138c9abd52dc26ffb797c1ff64310d73df6e435a
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_cs.tar.gz 12629755 
BLAKE2B 
583c26c80cfbf0e511a0ed4d26d5aafe21076a466df7c135af735f60f5e43a51aa3c2c42784753272e8d7e258824d4c18d884ee8b0a21004069e37b379ec4d4a
 SHA512 
ebf1dd5c2e7411feacc88ff60efab707b7338afc3ad1ae73560e5b7394728f11a5f4d95b0923b4def908d87f5d4d1c20ad91ac8fb6343757aa03d14dee68
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_da.tar.gz 12419338 
BLAKE2B 
829763b3874d903624a158dcdea2e910ef1ce1758607331adf0637124d7dc132ce609ef0f4d2224081a913c35bdac6a6284b122608be0c2a4cd27fe7015c2107
 SHA512 
e8aa0b74c2459b1ebac56723e640f9d708bda253cb82d4af600045f76b8ba6f8caf442036dfbc02a407ab10e2d643bcaffefec4e49fe8cbd5fd098a152270db1
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_de.tar.gz 20726518 
BLAKE2B 
4c74b5c225c2a14105cf58fafde520ffc52e49008aedbdfe0ef703a265c1c017e10990623e91081913530682f0e1d881411c443334944e5e1958681d7cef20ee
 SHA512 
5282091ecba93f623a25578126f4feac44d445101858baad881efe0293d8dc7d9c86a64235904c945144809d3961f889b3e3e8cba61c6dc64b10fbfc030a1b30
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_el.tar.gz 22045971 
BLAKE2B 
d2df4197bd0a6a7e4048b2d10121f5bd5810619d5f84ed55078fb1de6d1caf61228af54adb737425891f6074897a7b8cbcd022309933d56d80685de94476e7db
 SHA512 
af2210692dd4ea54921aa1dfd9718a9c607a835f2d2bf4a7c2a2ac8fd1c55a8c951d606c2eaa0434e90f99f6fa62cc02cd311f67e590e8558aaafb5ac0bf
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_en-GB.tar.gz 11384728 
BLAKE2B 
d1ae08e3385c67ea7b4ef3f39c5409b13db11bd6074408772f3ffaeab9b840445a3b174681e00e537f16863b6993ed9e718cd476dc5246556a4b5b2b3271aa73
 SHA512 
52f478034b7520ea349fa5ffaa7b2f46caac64203982f07924c8ca18565ab11f70805ce649a73de1b97388ef9149d5d23fd045da48421fbe5cced22c656b2875
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_es.tar.gz 12817311 
BLAKE2B 
54752901304a207dacff7ba82dbd207495876d9414adb7b4e5c633f9463ae37ac3aa131bcd86716672d30f3ab1747ee2544fffda545df23136260ee782ca388c
 SHA512 
eb667eef221bb39daffcf57c01f921df32032bc70ac3ac4ab901fff8cafdff98f6121dc153f5b4413e603a6e28fc4ec51f6ce92be2282057e9cd79202a00eb0e
-DIST Apache_OpenOffice_4.1.11_Linux_x86-64_langpack-rpm_eu.tar.gz 12669815 
BLAKE2B 
9790b86737de019190181a4923e17a0ffdddae8757459cc799a91eb920330c0c66fbf0095d8fa3848f77cbb875c8c1ec596327eaddb8c4ff5d37222f295fcf52
 SHA512 

[gentoo-commits] repo/proj/guru:dev commit in: app-misc/doublecmd-bin/

2022-10-09 Thread Sergey Torokhov
commit: 7a5ba717224a0d7430b914ebbee96428cfedcd9f
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sun Oct  9 21:59:08 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sun Oct  9 21:59:08 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a5ba717

app-misc/doublecmd-bin: 1.0.8 version bump

Signed-off-by: Sergey Torokhov  yandex.ru>

 app-misc/doublecmd-bin/Manifest   |  4 ++
 app-misc/doublecmd-bin/doublecmd-bin-1.0.8.ebuild | 65 +++
 2 files changed, 69 insertions(+)

diff --git a/app-misc/doublecmd-bin/Manifest b/app-misc/doublecmd-bin/Manifest
index 27b606316..c13b55572 100644
--- a/app-misc/doublecmd-bin/Manifest
+++ b/app-misc/doublecmd-bin/Manifest
@@ -6,3 +6,7 @@ DIST doublecmd-1.0.7.gtk2.i386.tar.xz 7520284 BLAKE2B 
fb0c1c0585ee27153dfaef6c77
 DIST doublecmd-1.0.7.gtk2.x86_64.tar.xz 8281832 BLAKE2B 
1225d00e744c766ba52f10b1f69cfae4ceeda450e590bde5961960565ed2d7e5eeb8bb63059ddb283da50b95b626d0cbf3296d30df82086b07cf79c0faf2bb7c
 SHA512 
5eab1ddb41ed569671db8f30358873ef7a5bdec3d9d65e296c212bb8282c1382a77123fe4cb58ac2f0b78c4d52a6fde80ed97f8d3278cf4e202f339ad381c585
 DIST doublecmd-1.0.7.qt.i386.tar.xz 7909008 BLAKE2B 
ef5512404d071c1b3780527046109dfa4a2569392e4e89ebdc5ac5eb1304e84d16e1e6d6eb72af51db6463f31158cea46f398c9af7e00a2a838ccc72b940113f
 SHA512 
1186b17eacc87b762d10de23e0ae319ef1282b832e10561633ce6b42916bb97825d8467e8f96b61fcf723c4f21ce401a3f6ae5adc736d023953b1ed733129f25
 DIST doublecmd-1.0.7.qt.x86_64.tar.xz 8609844 BLAKE2B 
47f8e37e9ff20811fae59e00c46bb9a04bc500ca8583f03da9aa8b66ced305bd3eba86b35a725bf17ea47c833167e81982a4b17e0f55a1aea2bddee8f7f77988
 SHA512 
b8f59dc8c8d417bf2491dfb74594d6069f2eebeee7ba3c37dfa047b05e9d8b5383b6f234025f0b6ce4357488900be73f3dc0bea7c0861d6e21c3d28d1d729078
+DIST doublecmd-1.0.8.gtk2.i386.tar.xz 7554164 BLAKE2B 
fac0e94898c8bfd7c20622f351ae687b6fbeb9d1746ca74a3ebf1a5b8a171af061d06885b29c7a063cf644717e0809d8b3afb65f302d38e8949512097a3e44e7
 SHA512 
94a9bf880604c81e6c06ba521bb5a170f2bdc8447d6bff1a2033744aab916bfc4d12975165175cc7afff4f6ece109732e215b13a671e8ba0984718b6fbd765b4
+DIST doublecmd-1.0.8.gtk2.x86_64.tar.xz 8313164 BLAKE2B 
2998badb7b91bb59b5bffdc59c326acf6481ed93279b62d3567e8c0dad736e03de7322a267ea423a4f11f705a0c4c2a3013767fcd200cde24d07a8e813c8f3ed
 SHA512 
7c929c9fd6aef567aca23182c14d1221856874b7f95f4dd39b57129a2282aa8c084aa80f3bd2fb6321f39d1d8d78f596c48f059df45d6435e3021d2689db1762
+DIST doublecmd-1.0.8.qt.i386.tar.xz 7941656 BLAKE2B 
381b932022a202aa3b7b055711f76c4ca335785a692b4fe8e8ee7b5da33bcc0289c9ff1174cf089eb610e181d21c182517cc6dd56efb39603ebb3e1fb2ec
 SHA512 
2503e0b1a28b99a9a497df68711d2b6258c6cd8c9f7d9f0255b1b0554e11231ffed7d1e101a930f4c8f3c2639b608e21c1172a784dcf30e857b124d7197c3aa8
+DIST doublecmd-1.0.8.qt.x86_64.tar.xz 8643436 BLAKE2B 
45044b242497d400b15126820aad4c5cb3607aef8c4ccdcb1114224eed3a83e35a75e27108b780918aaf04b07a49c8ffe71961f8051194ab183986da5ecf9048
 SHA512 
47f01a1dff30d0114ded61403cde7bd962114a87caa710bd97fe7706cc586e538c8f0d72e2b022e6763dca8269bdac302dcd91c1b09d3ab1d14837249fdd75fb

diff --git a/app-misc/doublecmd-bin/doublecmd-bin-1.0.8.ebuild 
b/app-misc/doublecmd-bin/doublecmd-bin-1.0.8.ebuild
new file mode 100644
index 0..70b96f265
--- /dev/null
+++ b/app-misc/doublecmd-bin/doublecmd-bin-1.0.8.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop wrapper xdg
+
+MY_PN="doublecmd"
+DESCRIPTION="Free cross platform open source file manager with two panels side 
by side."
+HOMEPAGE="https://doublecmd.sourceforge.io/;
+
+SRC_URI="amd64? (
+   gtk? ( 
mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.gtk2.x86_64.tar.xz )
+   qt5?  ( 
mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.qt.x86_64.tar.xz )
+   )
+   x86? (
+   gtk? ( 
mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.gtk2.i386.tar.xz )
+   qt5?  ( 
mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.qt.i386.tar.xz )
+   )"
+
+# Licenses for package and plugins
+LICENSE="GPL-2+ LGPL-2-with-linking-exception LGPL-2.1+ LGPL-3 GPL-1 freedist"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+IUSE="gtk qt5"
+REQUIRED_USE=" ^^ ( gtk qt5 ) "
+
+S="${WORKDIR}/${MY_PN}"
+
+QA_PREBUILT="
+   */doublecmd
+   */libQt5Pas.so.1
+"
+
+## "ldd doublecmd" output show linking to some libraries provided by 
sys-libs/glibc:2.2
+## (maybe virtual/libc-1) and no libraries of sys-libs/ncurses (that removed 
here).
+## x11-libs/X11 is optional dependency of dev-qt/qtgui:5 by [xcb] or [X]
+## therefore it is mentioned here explicitly.
+RDEPEND="
+   dev-libs/glib:2
+   sys-apps/dbus
+   x11-libs/libX11
+   virtual/libc
+   gtk? ( x11-libs/gtk+:2 )
+   qt5? (
+   dev-qt/qtgui:5
+   dev-qt/qtx11extras:5
+   )
+"
+
+src_install(){
+   insinto "/opt/${PN}"
+   doins -r "${S}/."
+
+   # Remove 

[gentoo-commits] repo/proj/guru:dev commit in: app-crypt/tpm2-openssl/

2022-10-09 Thread Christopher Byrne
commit: be634817a1fda3a9584482c6d11ff992742f
Author: Christopher Byrne  gmail  com>
AuthorDate: Sun Oct  9 21:39:55 2022 +
Commit: Christopher Byrne  gmail  com>
CommitDate: Sun Oct  9 21:42:50 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be63

app-crypt/tpm2-openssl: drop 1.1.0

Signed-off-by: Christopher Byrne  gmail.com>

 app-crypt/tpm2-openssl/Manifest  |   1 -
 app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild | 112 ---
 2 files changed, 113 deletions(-)

diff --git a/app-crypt/tpm2-openssl/Manifest b/app-crypt/tpm2-openssl/Manifest
index 5bb40e0b3..06860f330 100644
--- a/app-crypt/tpm2-openssl/Manifest
+++ b/app-crypt/tpm2-openssl/Manifest
@@ -1,2 +1 @@
-DIST tpm2-openssl-1.1.0.tar.gz 415118 BLAKE2B 
c82410b1694b5db3e7b6614b1c4e2eef7354c87574334e1e81631bba707398e3d33d975dba2f2cbbf1b09d90f8ae94e7f01531c98b1efd666ca43298a02ead0a
 SHA512 
a57e25d8efcbaa3a898a2803d816169e4227466f9391e5dc7c80a44686865cae0c24ee1973c6376d86d5be8081850f7b35cd0d4cb0b3a8cf654d400d78ae383b
 DIST tpm2-openssl-1.1.1.tar.gz 415093 BLAKE2B 
4f05b04ad059b9e5232bde2426102628927c71360cda5c3a1df02f951a8ecd6e1e036a6373ac5d7fc8209415874c52544eca3195e2361a165bc2c91f99ad85b1
 SHA512 
be4f114b21d15e6baeb7e756a787619d01f20171e86ebc42ea098c98d59ffd2ba648885b345b9d1a9dc3339199eaa6db8335f039587be338c1126e23349b8812

diff --git a/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild 
b/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild
deleted file mode 100644
index 7ac127f02..0
--- a/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="OpenSSL Provider for TPM2 integration"
-
-HOMEPAGE="https://github.com/tpm2-software/tpm2-openssl;
-SRC_URI="https://github.com/tpm2-software/tpm2-openssl/releases/download/${PV}/${P}.tar.gz;
-LICENSE="BSD"
-
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND=">=app-crypt/tpm2-tss-3.2.0:=
-   =dev-libs/openssl-3.0*:0="
-
-DEPEND="${RDEPEND}
-   test? ( app-crypt/swtpm
-   app-crypt/tpm2-abrmd
-   app-crypt/tpm2-tools )"
-
-BDEPEND="sys-devel/autoconf-archive
-virtual/pkgconfig"
-
-RESTRICT="!test? ( test )"
-
-dbus_run() {
-   (
-   # start isolated dbus session bus
-   dbus_data=$(dbus-launch --sh-syntax) || exit
-   eval "${dbus_data}"
-
-   $@
-   ret=${?}
-
-   kill "${DBUS_SESSION_BUS_PID}"
-   exit "${ret}"
-   ) || die
-}
-
-tpm2_run_with_emulator() {
-   export XDG_CONFIG_HOME="${T}/.config/swtpm"
-   "${BROOT}"/usr/share/swtpm/swtpm-create-user-config-files || die
-
-   mkdir -p "${XDG_CONFIG_HOME}/mytpm1" || die
-   swtpm_setup_args=(
-   --tpm2
-   --tpmstate "${XDG_CONFIG_HOME}/mytpm1"
-   --createek
-   --allow-signing
-   --decryption
-   --create-ek-cert
-   --create-platform-cert
-   --lock-nvram
-   --overwrite
-   --display
-   )
-   swtpm_setup "${swtpm_setup_args[@]}" || die
-
-   swtpm_socket_args=(
-   --tpm2
-   --tpmstate dir="${XDG_CONFIG_HOME}/mytpm1"
-   --flags startup-clear
-   --ctrl 
type=unixio,path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket.ctrl"
-   --server 
type=unixio,path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket"
-   --pid file="${XDG_CONFIG_HOME}/mytpm1/swtpm.pid"
-   --daemon
-   )
-   swtpm socket "${swtpm_socket_args[@]}" || die
-
-   tpm2_abrmd_args=(
-   --logger=stdout
-   --tcti=swtpm:path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket"
-   --session
-   --flush-all
-   )
-   tpm2-abrmd "${tpm2_abrmd_args[@]}" &
-
-   export TPM2OPENSSL_TCTI="tabrmd:bus_type=session"
-   export TPM2TOOLS_TCTI="tabrmd:bus_type=session"
-
-   $@ || die
-
-   # When swtpm dies, tmp2-abrmd will exit
-   kill $(< "${XDG_CONFIG_HOME}/mytpm1/swtpm.pid") || die
-}
-
-src_prepare() {
-   # See bug #833887 (and similar); eautoreconf means version information
-   # could be incorrectly embedded
-
-   sed -i \
-   "s/m4_esyscmd_s(\[git describe --tags --always --dirty\])/${PV}/" \
-   "${S}/configure.ac" || die
-   eautoreconf
-   default
-}
-
-src_install() {
-   default
-   find "${ED}" -iname \*.la -delete || die
-
-   # No libtool files are install, so nothing to check for bug #833887
-}
-
-src_test() {
-   dbus_run tpm2_run_with_emulator make check
-}



[gentoo-commits] repo/proj/guru:dev commit in: app-crypt/tpm2-openssl/

2022-10-09 Thread Christopher Byrne
commit: 0ebc305f15be628f1f0c163c6c52796b6a0105b0
Author: Christopher Byrne  gmail  com>
AuthorDate: Sun Oct  9 21:39:37 2022 +
Commit: Christopher Byrne  gmail  com>
CommitDate: Sun Oct  9 21:42:48 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0ebc305f

app-crypt/tpm2-openssl: add 1.1.1

Signed-off-by: Christopher Byrne  gmail.com>

 app-crypt/tpm2-openssl/Manifest  |  1 +
 app-crypt/tpm2-openssl/tpm2-openssl-1.1.1.ebuild | 97 
 2 files changed, 98 insertions(+)

diff --git a/app-crypt/tpm2-openssl/Manifest b/app-crypt/tpm2-openssl/Manifest
index f6034158c..5bb40e0b3 100644
--- a/app-crypt/tpm2-openssl/Manifest
+++ b/app-crypt/tpm2-openssl/Manifest
@@ -1 +1,2 @@
 DIST tpm2-openssl-1.1.0.tar.gz 415118 BLAKE2B 
c82410b1694b5db3e7b6614b1c4e2eef7354c87574334e1e81631bba707398e3d33d975dba2f2cbbf1b09d90f8ae94e7f01531c98b1efd666ca43298a02ead0a
 SHA512 
a57e25d8efcbaa3a898a2803d816169e4227466f9391e5dc7c80a44686865cae0c24ee1973c6376d86d5be8081850f7b35cd0d4cb0b3a8cf654d400d78ae383b
+DIST tpm2-openssl-1.1.1.tar.gz 415093 BLAKE2B 
4f05b04ad059b9e5232bde2426102628927c71360cda5c3a1df02f951a8ecd6e1e036a6373ac5d7fc8209415874c52544eca3195e2361a165bc2c91f99ad85b1
 SHA512 
be4f114b21d15e6baeb7e756a787619d01f20171e86ebc42ea098c98d59ffd2ba648885b345b9d1a9dc3339199eaa6db8335f039587be338c1126e23349b8812

diff --git a/app-crypt/tpm2-openssl/tpm2-openssl-1.1.1.ebuild 
b/app-crypt/tpm2-openssl/tpm2-openssl-1.1.1.ebuild
new file mode 100644
index 0..fff830dd8
--- /dev/null
+++ b/app-crypt/tpm2-openssl/tpm2-openssl-1.1.1.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="OpenSSL Provider for TPM2 integration"
+
+HOMEPAGE="https://github.com/tpm2-software/tpm2-openssl;
+SRC_URI="https://github.com/tpm2-software/tpm2-openssl/releases/download/${PV}/${P}.tar.gz;
+LICENSE="BSD"
+
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND=">=app-crypt/tpm2-tss-3.2.0:=
+   =dev-libs/openssl-3.0*:0="
+
+DEPEND="${RDEPEND}
+   test? ( app-crypt/swtpm
+   app-crypt/tpm2-abrmd
+   app-crypt/tpm2-tools )"
+
+BDEPEND="sys-devel/autoconf-archive
+virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+dbus_run() {
+   (
+   # start isolated dbus session bus
+   dbus_data=$(dbus-launch --sh-syntax) || exit
+   eval "${dbus_data}"
+
+   $@
+   ret=${?}
+
+   kill "${DBUS_SESSION_BUS_PID}"
+   exit "${ret}"
+   ) || die
+}
+
+tpm2_run_with_emulator() {
+   export XDG_CONFIG_HOME="${T}/.config/swtpm"
+   "${BROOT}"/usr/share/swtpm/swtpm-create-user-config-files || die
+
+   mkdir -p "${XDG_CONFIG_HOME}/mytpm1" || die
+   swtpm_setup_args=(
+   --tpm2
+   --tpmstate "${XDG_CONFIG_HOME}/mytpm1"
+   --createek
+   --allow-signing
+   --decryption
+   --create-ek-cert
+   --create-platform-cert
+   --lock-nvram
+   --overwrite
+   --display
+   )
+   swtpm_setup "${swtpm_setup_args[@]}" || die
+
+   swtpm_socket_args=(
+   --tpm2
+   --tpmstate dir="${XDG_CONFIG_HOME}/mytpm1"
+   --flags startup-clear
+   --ctrl 
type=unixio,path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket.ctrl"
+   --server 
type=unixio,path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket"
+   --pid file="${XDG_CONFIG_HOME}/mytpm1/swtpm.pid"
+   --daemon
+   )
+   swtpm socket "${swtpm_socket_args[@]}" || die
+
+   tpm2_abrmd_args=(
+   --logger=stdout
+   --tcti=swtpm:path="${XDG_CONFIG_HOME}/mytpm1/swtpm.socket"
+   --session
+   --flush-all
+   )
+   tpm2-abrmd "${tpm2_abrmd_args[@]}" &
+
+   export TPM2OPENSSL_TCTI="tabrmd:bus_type=session"
+   export TPM2TOOLS_TCTI="tabrmd:bus_type=session"
+
+   $@ || die
+
+   # When swtpm dies, tmp2-abrmd will exit
+   kill $(< "${XDG_CONFIG_HOME}/mytpm1/swtpm.pid") || die
+}
+
+src_install() {
+   default
+   find "${ED}" -iname \*.la -delete || die
+}
+
+src_test() {
+   dbus_run tpm2_run_with_emulator make check
+}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/gpgme/

2022-10-09 Thread Sam James
commit: 1a9a4a206d078813dbae058425f27180f821373d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 21:11:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 21:12:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a9a4a20

app-crypt/gpgme: depend on libgpg-error which installs gpg-error-config

which in turn ensures we provide gpgme-config. See bug for more details.

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

 .../gpgme/{gpgme-1.17.1-r1.ebuild => gpgme-1.17.1-r2.ebuild}  | 8 +++-
 .../gpgme/{gpgme-1.18.0-r1.ebuild => gpgme-1.18.0-r2.ebuild}  | 8 +++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild 
b/app-crypt/gpgme/gpgme-1.17.1-r2.ebuild
similarity index 93%
rename from app-crypt/gpgme/gpgme-1.17.1-r1.ebuild
rename to app-crypt/gpgme/gpgme-1.17.1-r2.ebuild
index 221743c8a6dd..574a602ef261 100644
--- a/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild
+++ b/app-crypt/gpgme/gpgme-1.17.1-r2.ebuild
@@ -29,10 +29,16 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv
 IUSE="common-lisp static-libs +cxx python qt5 test"
 RESTRICT="!test? ( test )"
 
-# Note: On each bump, update dep bounds on each version from configure.ac!
+# - On each bump, update dep bounds on each version from configure.ac!
+# - Quirky libgpg-error dep for bug #699206 (change in recent libgpg-error
+#   made gpgme stop installing gpgme-config)
 RDEPEND=">=app-crypt/gnupg-2
>=dev-libs/libassuan-2.5.3:=
>=dev-libs/libgpg-error-1.36:=
+   || (
+   >=dev-libs/libgpg-error-1.46-r1
+   

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

2022-10-09 Thread Sam James
commit: 1a7829db98365da691866029d1c47062b6528bd6
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 21:09:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 21:09:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7829db

dev-libs/libgpg-error: drop 1.46

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

 dev-libs/libgpg-error/libgpg-error-1.46.ebuild | 75 --
 1 file changed, 75 deletions(-)

diff --git a/dev-libs/libgpg-error/libgpg-error-1.46.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.46.ebuild
deleted file mode 100644
index c2db218d0ecd..
--- a/dev-libs/libgpg-error/libgpg-error-1.46.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Maintainers should:
-# 1. Join the "Gentoo" project at https://dev.gnupg.org/project/view/27/
-# 2. Subscribe to release tasks like https://dev.gnupg.org/T6159
-# (find the one for the current release then subscribe to it +
-# any subsequent ones linked within so you're covered for a while.)
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/gnupg.asc
-inherit autotools multilib-minimal toolchain-funcs prefix verify-sig
-
-DESCRIPTION="Contains error handling functions used by GnuPG software"
-HOMEPAGE="https://www.gnupg.org/related_software/libgpg-error;
-SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
-SRC_URI+=" mirror://gnupg/${PN}/${P}.tar.bz2.sig"
-
-LICENSE="GPL-2 LGPL-2.1"
-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"
-IUSE="common-lisp nls static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   nls? ( sys-devel/gettext )
-   verify-sig? ( sec-keys/openpgp-keys-gnupg )
-"
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/gpg-error.h
-   /usr/include/gpgrt.h
-)
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.44-remove_broken_check.patch"
-)
-
-src_prepare() {
-   default
-
-   if use prefix ; then
-   # don't hardcode /usr/xpg4/bin/sh as shell on Solaris
-   sed -i -e 's/solaris\*/disabled/' configure.ac || die
-   fi
-
-   # only necessary for as long as we run eautoreconf, configure.ac
-   # uses ./autogen.sh to generate PACKAGE_VERSION, but autogen.sh is
-   # not a pure /bin/sh script, so it fails on some hosts
-   hprefixify -w 1 autogen.sh
-   eautoreconf
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   $(multilib_is_native_abi || echo --disable-languages)
-   $(use_enable common-lisp languages)
-   $(use_enable nls)
-   # required for sys-power/suspend[crypt], bug 751568
-   $(use_enable static-libs static)
-   $(use_enable test tests)
-   --enable-threads
-   CC_FOR_BUILD="$(tc-getBUILD_CC)"
-   $("${S}/configure" --help | grep -o -- '--without-.*-prefix')
-   )
-   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   find "${ED}" -type f -name '*.la' -delete || die
-}



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

2022-10-09 Thread Sam James
commit: b88409f46c96ce91536762af9b1401649e00d7e6
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 21:09:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 21:09:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88409f4

dev-libs/libgpg-error: add commentary wrt gpg-error-config & gpgme-config

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

 dev-libs/libgpg-error/libgpg-error-1.46-r1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-libs/libgpg-error/libgpg-error-1.46-r1.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.46-r1.ebuild
index 0e230fcc57db..b8677bb2428b 100644
--- a/dev-libs/libgpg-error/libgpg-error-1.46-r1.ebuild
+++ b/dev-libs/libgpg-error/libgpg-error-1.46-r1.ebuild
@@ -67,7 +67,12 @@ multilib_src_configure() {
# required for sys-power/suspend[crypt], bug 751568
$(use_enable static-libs static)
$(use_enable test tests)
+
+   # See bug #699206 and its duplicates wrt gpgme-config
+   # Upstream no longer install this by default and we should
+   # seek to disable it at some point.
--enable-install-gpg-error-config
+
--enable-threads
CC_FOR_BUILD="$(tc-getBUILD_CC)"
$("${S}/configure" --help | grep -o -- '--without-.*-prefix')



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

2022-10-09 Thread Sam James
commit: 23d1d6c0a3b01780f583e65c8fe02a54006534cb
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 21:03:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 21:04:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d1d6c0

net-firewall/conntrack-tools: add 1.4.7

There's a bunch of implicit. decl warnings but I'm waiting to report
these upstream; had to request an account first via email...

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

 net-firewall/conntrack-tools/Manifest  |   2 +
 .../conntrack-tools/conntrack-tools-1.4.7.ebuild   | 105 +
 2 files changed, 107 insertions(+)

diff --git a/net-firewall/conntrack-tools/Manifest 
b/net-firewall/conntrack-tools/Manifest
index 9b40239296bc..84f2b9f95f22 100644
--- a/net-firewall/conntrack-tools/Manifest
+++ b/net-firewall/conntrack-tools/Manifest
@@ -1,3 +1,5 @@
 DIST conntrack-tools-1.4.5.tar.bz2 479562 BLAKE2B 
229531d1c6c237e539df5b83525dca5ce0b009a76a2a5f873282eabc73cc00095c15c686bc68f9364e81efc846bfa8eac8b08f7fd476199d10d0c25190ca2456
 SHA512 
480fe2cc4420bc8477a2ba67b3d052bcb39c6b3ec000cff27fc12db70b42ec94fa3b5fe12ee35d439e88d9a631a33cd12ae470b69dde6d371d4e53af62a2eed1
 DIST conntrack-tools-1.4.6.tar.bz2 499806 BLAKE2B 
7c1ee1c5fc2b6f9d33c6cf850eca80978b8763317b1a76892cefb776130564f15fbd4e4554fdb08dbba93d9f16b7e4624a1b4dd5a631f747f5fcc0a5b01b8d5e
 SHA512 
a48260308a12b11b584fcf4658ec2c4c1adb2801c9cf9a73fc259e5c30d2fbe401aca21e931972413f03e415f98fbf9bd678d2126faa6c6d5748e8a652e58f1a
 DIST conntrack-tools-1.4.6.tar.bz2.sig 590 BLAKE2B 
b07232389f098baa467f4ca7ad4d61a0cda737b88114be0da1a82ac66d1a6d304ace7687a294cf9c1d0297bc55c219cb6d31f641f51338cb6fb1a1706f63abfd
 SHA512 
83e7373411a041f2af590fc7d4e5456c8f6543c29185f57460aff55bee83936dbd9aa272207db7f33a8c4d79aece38862880eb483ec6250b0c1eff0544e4e89d
+DIST conntrack-tools-1.4.7.tar.bz2 539688 BLAKE2B 
42a3cacf8a32a5b8b688a9fd68f66024c591e9814ef3cc349456691094bab0fae15bb1c00befa178b0f8e845bf6fc00715cbf9db55cd7bf2d155c2dfd55f9b1a
 SHA512 
3d37a6b8cd13fd3c149ab80009d686d2184920ba2d0d5c1b57abed6e92e0dd92cba868bfe22f1a155479fe5ab2e291b8bb8a7e72123a73788032202ac142653b
+DIST conntrack-tools-1.4.7.tar.bz2.sig 566 BLAKE2B 
c513cd59d9aeb76bb33bb8c4e0d25c46b6303a9d3f3e359e20248e2d8dd2822777056e217c12da9005ee075036ea05a74dd1ed9f22a44b7d4745ff6917bda15b
 SHA512 
5a2bcc6da792544029ddf0d3a4caf019b215907e66d491e5d98a4f1189fc9c03ec8aad5ad22166799c5f0c81273284cb757e9368c9d9d3049bc49da47c037e05

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.7.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.7.ebuild
new file mode 100644
index ..87b14e75b1e0
--- /dev/null
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.7.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/netfilter.org.asc
+inherit linux-info systemd verify-sig
+
+DESCRIPTION="Connection tracking userspace tools"
+HOMEPAGE="https://conntrack-tools.netfilter.org;
+SRC_URI="https://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2
+   verify-sig? ( 
https://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2.sig )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+IUSE="doc +cthelper +cttimeout systemd"
+
+RDEPEND="
+   >=net-libs/libmnl-1.0.3
+   >=net-libs/libnetfilter_conntrack-1.0.8
+   >=net-libs/libnetfilter_queue-1.0.2
+   >=net-libs/libnfnetlink-1.0.1
+   net-libs/libtirpc
+   cthelper? (
+   >=net-libs/libnetfilter_cthelper-1.0.0
+   )
+   cttimeout? (
+   >=net-libs/libnetfilter_cttimeout-1.0.0
+   )
+   systemd? (
+   >=sys-apps/systemd-227
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+   doc? (
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/xmlto
+   )
+   verify-sig? ( sec-keys/openpgp-keys-netfilter )
+"
+
+pkg_setup() {
+   linux-info_pkg_setup
+
+   if kernel_is lt 2 6 18 ; then
+   die "${PN} requires at least 2.6.18 kernel version"
+   fi
+
+   # netfilter core team has changed some option names with kernel 2.6.20
+   if kernel_is lt 2 6 20 ; then
+   CONFIG_CHECK="~IP_NF_CONNTRACK_NETLINK"
+   else
+   CONFIG_CHECK="~NF_CT_NETLINK"
+   fi
+   CONFIG_CHECK="${CONFIG_CHECK} ~NF_CONNTRACK
+   ~NETFILTER_NETLINK ~NF_CONNTRACK_EVENTS"
+
+   check_extra_config
+
+   linux_config_exists || \
+   linux_chkconfig_present "NF_CONNTRACK_IPV4" || \
+   linux_chkconfig_present "NF_CONNTRACK_IPV6" || \
+   ewarn "CONFIG_NF_CONNTRACK_IPV4 or CONFIG_NF_CONNTRACK_IPV6 " \
+   "are not set when one at 

[gentoo-commits] proj/gcc-config:master commit in: /

2022-10-09 Thread Sam James
commit: 3ba93fbb30984b59eb99883292f336e6a0b1ea8b
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 20:33:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 20:55:26 2022 +
URL:https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=3ba93fbb

gcc-config: update /etc/clang/gentoo-gcc-install.cfg if exists

* Set '--gcc-install-dir' for Clang to direct it to the currently
  active GCC installation.

* Only write to /etc/clang/gentoo-gcc-install.cfg if it already exists
  to allow us to back out the change gracefully (by stopping installation
  in sys-devel/clang-common) as there's some concerns wrt sysroot compatibility.

Bug: https://github.com/llvm/llvm-project/issues/57570
Bug: https://bugs.gentoo.org/868639
Signed-off-by: Sam James  gentoo.org>

 gcc-config | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/gcc-config b/gcc-config
index dfc01d0..31a7f4a 100755
--- a/gcc-config
+++ b/gcc-config
@@ -783,6 +783,21 @@ switch_profile() {
find "${pkgconfdir}"/libgcj*.pc -xtype l -delete 
2>/dev/null
done
 
+   # Only update the file if it already exists to allow us to
+   # walk it back if necessary by dropping it from clang-common.
+   # See bug #868639 for background.
+   if [[ -f "${EROOT}/etc/clang/gentoo-gcc-install.cfg" ]] ; then
+   local gcc_lib_path="$(get_lib_path)"
+   gcc_lib_path="${gcc_lib_path%%:*}"
+   cat > "${EROOT}/etc/clang/gentoo-gcc-install.cfg.tmp" 
<<-EOF
+   # This file is maintained by gcc-config.
+   # It is used to specify the selected GCC 
installation.
+   --gcc-install-dir="${gcc_lib_path}"
+   EOF
+
+   mv_if_diff 
"${EROOT}/etc/clang/gentoo-gcc-install.cfg.tmp" 
"${EROOT}/etc/clang/gentoo-gcc-install.cfg"
+   fi
+
prefix_copy_gcc_libs
handle_split_usr
: $(( envd_changed += $? ))



[gentoo-commits] repo/proj/guru:dev commit in: games-util/roll/

2022-10-09 Thread Nicola Smaniotto
commit: 2a095809c518ab42e5659344cb54f8a8e89ae483
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Sun Oct  9 20:09:56 2022 +
Commit: Nicola Smaniotto  gmail  com>
CommitDate: Sun Oct  9 20:09:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a095809

games-util/roll: new package, add 2.6.1

Signed-off-by: Nicola Smaniotto  gmail.com>

 games-util/roll/Manifest  |  1 +
 games-util/roll/roll-2.6.1.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/games-util/roll/Manifest b/games-util/roll/Manifest
new file mode 100644
index 0..856a4a9d5
--- /dev/null
+++ b/games-util/roll/Manifest
@@ -0,0 +1 @@
+DIST roll-2.6.1.tar.gz 160521 BLAKE2B 
28ddfced7b3f06087c492345f7192024bd92ed8161cb7d2397f92a8d1fd1ed7814cb3e5c53b900e1d2be025b298c6f06a514e895cfaefe88de7dff62cec8945f
 SHA512 
4a33264687f9b2acd6584574e59aa6b74efb0a01097ab35861bcd0356fa5e067a8b3890849db9cde4911794d55295dc82e82868b7c94f0258d34752af63e2dfd

diff --git a/games-util/roll/roll-2.6.1.ebuild 
b/games-util/roll/roll-2.6.1.ebuild
new file mode 100644
index 0..0fcd5e219
--- /dev/null
+++ b/games-util/roll/roll-2.6.1.ebuild
@@ -0,0 +1,16 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Program to roll dices specified in a simple and intuitive way"
+HOMEPAGE="http://matteocorti.github.io/roll/;
+SRC_URI="https://github.com/matteocorti/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""



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

2022-10-09 Thread Michał Górny
commit: c273403f0950cbaaea87ddf9eeef78ee56742371
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  9 19:48:37 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  9 19:48:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c273403f

sys-devel/clang-common: Move common config into gentoo-common.cfg

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

 ...{clang-common-15.0.2.ebuild => clang-common-15.0.2-r1.ebuild} | 9 +++--
 sys-devel/clang-common/clang-common-15.0.2..ebuild   | 9 +++--
 sys-devel/clang-common/clang-common-16.0.0..ebuild   | 9 +++--
 ...20221006.ebuild => clang-common-16.0.0_pre20221006-r1.ebuild} | 9 +++--
 4 files changed, 28 insertions(+), 8 deletions(-)

diff --git a/sys-devel/clang-common/clang-common-15.0.2.ebuild 
b/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
similarity index 93%
rename from sys-devel/clang-common/clang-common-15.0.2.ebuild
rename to sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
index 71e8aa15b6d8..9962f257ccc0 100644
--- a/sys-devel/clang-common/clang-common-15.0.2.ebuild
+++ b/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
@@ -76,12 +76,17 @@ src_install() {
# It is used to specify the selected GCC installation.
EOF
 
+   newins - gentoo-common.cfg <<-EOF
+   # This file contains flags common to clang, clang++ and 
clang-cpp.
+   @gentoo-runtimes.cfg
+   @gentoo-gcc-install.cfg
+   EOF
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF
# This configuration file is used by ${tool} driver.
-   @gentoo-runtimes.cfg
-   @gentoo-gcc-install.cfg
+   @gentoo-common.cfg
EOF
done
 }

diff --git a/sys-devel/clang-common/clang-common-15.0.2..ebuild 
b/sys-devel/clang-common/clang-common-15.0.2..ebuild
index e318815568c5..0ff52691cc71 100644
--- a/sys-devel/clang-common/clang-common-15.0.2..ebuild
+++ b/sys-devel/clang-common/clang-common-15.0.2..ebuild
@@ -75,12 +75,17 @@ src_install() {
# It is used to specify the selected GCC installation.
EOF
 
+   newins - gentoo-common.cfg <<-EOF
+   # This file contains flags common to clang, clang++ and 
clang-cpp.
+   @gentoo-runtimes.cfg
+   @gentoo-gcc-install.cfg
+   EOF
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF
# This configuration file is used by ${tool} driver.
-   @gentoo-runtimes.cfg
-   @gentoo-gcc-install.cfg
+   @gentoo-common.cfg
EOF
done
 }

diff --git a/sys-devel/clang-common/clang-common-16.0.0..ebuild 
b/sys-devel/clang-common/clang-common-16.0.0..ebuild
index e318815568c5..0ff52691cc71 100644
--- a/sys-devel/clang-common/clang-common-16.0.0..ebuild
+++ b/sys-devel/clang-common/clang-common-16.0.0..ebuild
@@ -75,12 +75,17 @@ src_install() {
# It is used to specify the selected GCC installation.
EOF
 
+   newins - gentoo-common.cfg <<-EOF
+   # This file contains flags common to clang, clang++ and 
clang-cpp.
+   @gentoo-runtimes.cfg
+   @gentoo-gcc-install.cfg
+   EOF
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF
# This configuration file is used by ${tool} driver.
-   @gentoo-runtimes.cfg
-   @gentoo-gcc-install.cfg
+   @gentoo-common.cfg
EOF
done
 }

diff --git a/sys-devel/clang-common/clang-common-16.0.0_pre20221006.ebuild 
b/sys-devel/clang-common/clang-common-16.0.0_pre20221006-r1.ebuild
similarity index 93%
rename from sys-devel/clang-common/clang-common-16.0.0_pre20221006.ebuild
rename to sys-devel/clang-common/clang-common-16.0.0_pre20221006-r1.ebuild
index e318815568c5..0ff52691cc71 100644
--- a/sys-devel/clang-common/clang-common-16.0.0_pre20221006.ebuild
+++ b/sys-devel/clang-common/clang-common-16.0.0_pre20221006-r1.ebuild
@@ -75,12 +75,17 @@ src_install() {
# It is used to specify the selected GCC installation.
EOF
 
+   newins - gentoo-common.cfg <<-EOF
+   # This file contains flags common to clang, clang++ and 
clang-cpp.
+   @gentoo-runtimes.cfg
+   @gentoo-gcc-install.cfg
+   EOF
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF
# This configuration file is used by ${tool} driver.
-   @gentoo-runtimes.cfg
-   @gentoo-gcc-install.cfg
+   @gentoo-common.cfg
   

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

2022-10-09 Thread Michał Górny
commit: 902adb9437dbd55cf4a7e4a1691f6d3b314e1640
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  9 20:07:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  9 20:07:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=902adb94

sys-devel/clang-common: Introduce USE=stricter for more -Werror=

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

 .../clang-common/clang-common-15.0.2-r1.ebuild | 25 +-
 .../clang-common/clang-common-15.0.2..ebuild   | 25 +-
 .../clang-common/clang-common-16.0.0..ebuild   | 25 +-
 .../clang-common-16.0.0_pre20221006-r1.ebuild  | 25 +-
 sys-devel/clang-common/metadata.xml|  1 +
 5 files changed, 97 insertions(+), 4 deletions(-)

diff --git a/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild 
b/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
index 9962f257ccc0..a29bbbc806c9 100644
--- a/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
+++ b/sys-devel/clang-common/clang-common-15.0.2-r1.ebuild
@@ -11,7 +11,10 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos"
-IUSE="default-compiler-rt default-libcxx default-lld llvm-libunwind"
+IUSE="
+   default-compiler-rt default-libcxx default-lld llvm-libunwind
+   stricter
+"
 
 PDEPEND="
sys-devel/clang:*
@@ -82,6 +85,26 @@ src_install() {
@gentoo-gcc-install.cfg
EOF
 
+   if use stricter; then
+   newins - gentoo-stricter.cfg <<-EOF
+   # This file increases the strictness of older clang 
versions
+   # to match the newest upstream version.
+
+   # clang-16 defaults
+   -Werror=implicit-function-declaration
+   -Werror=implicit-int
+   -Werror=incompatible-function-pointer-types
+
+   # constructs banned by C2x
+   -Werror=strict-prototypes
+   -Werror=deprecated-non-prototype
+   EOF
+
+   cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
+   @gentoo-stricter.cfg
+   EOF
+   fi
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF

diff --git a/sys-devel/clang-common/clang-common-15.0.2..ebuild 
b/sys-devel/clang-common/clang-common-15.0.2..ebuild
index 0ff52691cc71..993dddec4bf9 100644
--- a/sys-devel/clang-common/clang-common-15.0.2..ebuild
+++ b/sys-devel/clang-common/clang-common-15.0.2..ebuild
@@ -11,7 +11,10 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
 KEYWORDS=""
-IUSE="default-compiler-rt default-libcxx default-lld llvm-libunwind"
+IUSE="
+   default-compiler-rt default-libcxx default-lld llvm-libunwind
+   stricter
+"
 
 PDEPEND="
sys-devel/clang:*
@@ -81,6 +84,26 @@ src_install() {
@gentoo-gcc-install.cfg
EOF
 
+   if use stricter; then
+   newins - gentoo-stricter.cfg <<-EOF
+   # This file increases the strictness of older clang 
versions
+   # to match the newest upstream version.
+
+   # clang-16 defaults
+   -Werror=implicit-function-declaration
+   -Werror=implicit-int
+   -Werror=incompatible-function-pointer-types
+
+   # constructs banned by C2x
+   -Werror=strict-prototypes
+   -Werror=deprecated-non-prototype
+   EOF
+
+   cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
+   @gentoo-stricter.cfg
+   EOF
+   fi
+
local tool
for tool in clang{,++,-cpp}; do
newins - "${tool}.cfg" <<-EOF

diff --git a/sys-devel/clang-common/clang-common-16.0.0..ebuild 
b/sys-devel/clang-common/clang-common-16.0.0..ebuild
index 0ff52691cc71..993dddec4bf9 100644
--- a/sys-devel/clang-common/clang-common-16.0.0..ebuild
+++ b/sys-devel/clang-common/clang-common-16.0.0..ebuild
@@ -11,7 +11,10 @@ HOMEPAGE="https://llvm.org/;
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
 KEYWORDS=""
-IUSE="default-compiler-rt default-libcxx default-lld llvm-libunwind"
+IUSE="
+   default-compiler-rt default-libcxx default-lld llvm-libunwind
+   stricter
+"
 
 PDEPEND="
sys-devel/clang:*
@@ -81,6 +84,26 @@ src_install() {
@gentoo-gcc-install.cfg
EOF
 
+   if use stricter; then
+   newins - gentoo-stricter.cfg <<-EOF
+   # This file increases the strictness of older clang 
versions
+ 

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

2022-10-09 Thread Georgy Yakovlev
commit: f0906a24963c3bf8185c9c28bb5b2e9856892e02
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:16:49 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:16:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0906a24

sys-kernel/gentoo-kernel: Stabilize 5.15.72 ppc64, #876235

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel/gentoo-kernel-5.15.72.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.72.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.72.ebuild
index 4ea02f952baa..0c79628f9e9d 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.72.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.72.ebuild
@@ -39,7 +39,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )"
 



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

2022-10-09 Thread Georgy Yakovlev
commit: 1930a35fa33960713ee243afcbcf6e3fd8a1d14c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:34 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1930a35f

sys-kernel/gentoo-kernel: Stabilize 5.4.217 ppc64, #876259

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel/gentoo-kernel-5.4.217.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.217.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.217.ebuild
index 5fa543cace37..119074a53aed 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.217.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.217.ebuild
@@ -40,7 +40,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ppc64 ~x86"
 IUSE="debug"
 
 RDEPEND="



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

2022-10-09 Thread Georgy Yakovlev
commit: 50997076feb1cd05eb044e32b452a03e1cee0444
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:35 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50997076

virtual/dist-kernel: Stabilize 5.4.217 ppc64, #876259

Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/dist-kernel/dist-kernel-5.4.217.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.4.217.ebuild 
b/virtual/dist-kernel/dist-kernel-5.4.217.ebuild
index 2e0a7cc6b4b7..d742f50c782d 100644
--- a/virtual/dist-kernel/dist-kernel-5.4.217.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.4.217.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ppc64 ~x86"
 
 RDEPEND="
|| (



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

2022-10-09 Thread Georgy Yakovlev
commit: 7ca43c1c7fbcb737585263b578739582df7f77c8
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:34 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca43c1c

sys-kernel/gentoo-kernel-bin: Stabilize 5.4.217 ppc64, #876259

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.217.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.217.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.217.ebuild
index 7c3bf64cd0e3..3c9408b34f22 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.217.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.217.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



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

2022-10-09 Thread Georgy Yakovlev
commit: de45cc8451c167be4dcaafbcd54e803b517f0c45
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:16:53 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:16:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de45cc84

virtual/dist-kernel: Stabilize 5.15.72 ppc64, #876235

Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/dist-kernel/dist-kernel-5.15.72.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.15.72.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.72.ebuild
index 5594b4186dc8..b622ae6fe880 100644
--- a/virtual/dist-kernel/dist-kernel-5.15.72.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.15.72.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 
 RDEPEND="
|| (



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

2022-10-09 Thread Georgy Yakovlev
commit: 3730984e4b032f653bcd8e238a805b0be9a70482
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:14 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3730984e

sys-kernel/gentoo-kernel-bin: Stabilize 5.10.147 ppc64, #876256

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.147.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.147.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.147.ebuild
index 26eed75d6c06..b7c3a8c336ee 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.147.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.147.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



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

2022-10-09 Thread Georgy Yakovlev
commit: 072534a3862f36f17aa2d271e4da305a43589a60
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:13 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=072534a3

sys-kernel/gentoo-kernel: Stabilize 5.10.147 ppc64, #876256

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel/gentoo-kernel-5.10.147.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.147.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.147.ebuild
index 4824ab95a1fb..57ec36acc0b0 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.147.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.147.ebuild
@@ -40,7 +40,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )"
 



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

2022-10-09 Thread Georgy Yakovlev
commit: 79eb5bfca7af76ea918bfeccb164ad3d62d0b767
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:17:14 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:17:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79eb5bfc

virtual/dist-kernel: Stabilize 5.10.147 ppc64, #876256

Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/dist-kernel/dist-kernel-5.10.147.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.10.147.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.147.ebuild
index 5594b4186dc8..b622ae6fe880 100644
--- a/virtual/dist-kernel/dist-kernel-5.10.147.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.10.147.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 
 RDEPEND="
|| (



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

2022-10-09 Thread Georgy Yakovlev
commit: 101eea0507d203aee2a3740f8d19b988c4881f81
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Oct  9 19:16:52 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Oct  9 19:16:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=101eea05

sys-kernel/gentoo-kernel-bin: Stabilize 5.15.72 ppc64, #876235

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.72.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.72.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.72.ebuild
index 9c843f83530a..c37e96a2c08f 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.72.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.15.72.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-pulseaudio-plugin/

2022-10-09 Thread Michał Górny
commit: 5206d9eced081d5f4d068f3ca486d464b621adef
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct  9 19:03:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct  9 19:03:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5206d9ec

xfce-extra/xfce4-pulseaudio-plugin: Remove old

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

 xfce-extra/xfce4-pulseaudio-plugin/Manifest|  2 -
 .../xfce4-pulseaudio-plugin-0.4.3-r1.ebuild| 63 
 .../xfce4-pulseaudio-plugin-0.4.4.ebuild   | 68 --
 3 files changed, 133 deletions(-)

diff --git a/xfce-extra/xfce4-pulseaudio-plugin/Manifest 
b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
index 43ec845edba1..ba9806d3853e 100644
--- a/xfce-extra/xfce4-pulseaudio-plugin/Manifest
+++ b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
@@ -1,3 +1 @@
-DIST xfce4-pulseaudio-plugin-0.4.3.tar.bz2 431773 BLAKE2B 
2c0de4ea0ab9304b737fe4ce570bcd8427f983845fe898dbe7e053a5fe79793223df6882a931b186664d8c95d4c767daf39ba36a98dc58595ba77e8a18c13a6c
 SHA512 
d3214b2b7c35a0a87ea60a5d843f5027d1b09f320d4d24c6bf89a8936de92226223cb4dc5368edf4c0a1aedb3b8796510981eeadee8e836e764569d9284f0efa
-DIST xfce4-pulseaudio-plugin-0.4.4.tar.bz2 389978 BLAKE2B 
36f990aeac3fb07c19fe421ebe5172bfc5d87b4281d6dc921b7173a0cee70693f9ecfed6675b128bb617d78d4920694aac44d8846bcd1f49d5c4cf415a513074
 SHA512 
5e7f024be6283523d0a0c0c3e7ba1d632b1521c442d9468980e0811a6b4c7bbcdcaff27999410b83a967d16105f6c09f6e0718719654ccc9f1109066d8964b59
 DIST xfce4-pulseaudio-plugin-0.4.5.tar.bz2 394671 BLAKE2B 
facd79419b36741791b91d76da0212a99dfd2e807eedac691a5978b85365052702797cf67d2f0f8af294e9c0141fcedad49a92595acd4bbeadbf470889d7e16b
 SHA512 
9250189af2d40f9b87687ef15e37983a95f797c2ba0aaa18cb8e510b7b1caff7f762a18db4e5a3780001b5cd46e00849d427801e14854c45e849c5d014a1375b

diff --git 
a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3-r1.ebuild 
b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3-r1.ebuild
deleted file mode 100644
index 665b2537dd9e..
--- a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="A panel plug-in for PulseAudio volume control"
-HOMEPAGE="https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv x86"
-IUSE="+keybinder libnotify wnck"
-
-RDEPEND=">=dev-libs/glib-2.42.0:=
-   media-sound/pulseaudio:=[glib]
-   >=x11-libs/gtk+-3.20.0:3=
-   >=xfce-base/exo-0.11:=
-   >=xfce-base/libxfce4ui-4.11.0:=[gtk3(+)]
-   >=xfce-base/libxfce4util-4.9.0:=
-   >=xfce-base/xfce4-panel-4.11.0:=
-   >=xfce-base/xfconf-4.6.0:=
-   keybinder? ( dev-libs/keybinder:3= )
-   libnotify? ( x11-libs/libnotify:= )
-   wnck? ( x11-libs/libwnck:3= )"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-util/intltool
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   $(use_enable keybinder)
-   $(use_enable libnotify)
-   $(use_enable wnck)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-
-   if ! has_version media-sound/pavucontrol; then
-   elog "For the 'audio mixer...' shortcut to work, you need to 
install"
-   elog "an external mixer application. Please either install:"
-   elog
-   elog "  media-sound/pavucontrol"
-   elog
-   elog "or specify another application to use in the 'Properties' 
dialog."
-   fi
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git 
a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.4.ebuild 
b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.4.ebuild
deleted file mode 100644
index e2888ad9c902..
--- a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="A panel plug-in for PulseAudio volume control"
-HOMEPAGE="https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/;
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="+keybinder libnotify wnck"
-
-DEPEND="
-   >=dev-libs/glib-2.42.0
-   media-sound/pulseaudio:=[glib]
-   >=x11-libs/gtk+-3.20.0:3
-   >=xfce-base/exo-0.11:=

[gentoo-commits] repo/gentoo:master commit in: profiles/features/musl/, www-apps/radarr/

2022-10-09 Thread Sam James
commit: d0f94181bef7910b1235745174527b5a37b1be2c
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 18:47:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 18:47:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f94181

www-apps/radarr: depend on glibc (binpkg)

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

 profiles/features/musl/package.mask | 1 +
 www-apps/radarr/radarr-4.1.0.6175-r1.ebuild | 4 +++-
 www-apps/radarr/radarr-4.2.0.6438.ebuild| 4 +++-
 www-apps/radarr/radarr-4.2.2.6503.ebuild| 4 +++-
 www-apps/radarr/radarr-4.2.3.6575.ebuild| 4 +++-
 www-apps/radarr/radarr-4.2.4.6635.ebuild| 4 +++-
 6 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index d42b4e1b97f0..1aa81a9a8509 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -210,6 +210,7 @@ www-apps/chromedriver-bin
 www-apps/grafana-bin
 www-apps/jellyfin
 www-apps/kibana-bin
+www-apps/radarr
 www-apps/readarr
 www-client/chromium-bin
 www-client/google-chrome

diff --git a/www-apps/radarr/radarr-4.1.0.6175-r1.ebuild 
b/www-apps/radarr/radarr-4.1.0.6175-r1.ebuild
index dbfdaf894fae..7233bf2584bd 100644
--- a/www-apps/radarr/radarr-4.1.0.6175-r1.ebuild
+++ b/www-apps/radarr/radarr-4.1.0.6175-r1.ebuild
@@ -25,7 +25,9 @@ RDEPEND="
media-video/mediainfo
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/radarr/radarr-4.2.0.6438.ebuild 
b/www-apps/radarr/radarr-4.2.0.6438.ebuild
index 4de81c02d758..629dbce15810 100644
--- a/www-apps/radarr/radarr-4.2.0.6438.ebuild
+++ b/www-apps/radarr/radarr-4.2.0.6438.ebuild
@@ -25,7 +25,9 @@ RDEPEND="
media-video/mediainfo
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/radarr/radarr-4.2.2.6503.ebuild 
b/www-apps/radarr/radarr-4.2.2.6503.ebuild
index 4de81c02d758..629dbce15810 100644
--- a/www-apps/radarr/radarr-4.2.2.6503.ebuild
+++ b/www-apps/radarr/radarr-4.2.2.6503.ebuild
@@ -25,7 +25,9 @@ RDEPEND="
media-video/mediainfo
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/radarr/radarr-4.2.3.6575.ebuild 
b/www-apps/radarr/radarr-4.2.3.6575.ebuild
index 4de81c02d758..629dbce15810 100644
--- a/www-apps/radarr/radarr-4.2.3.6575.ebuild
+++ b/www-apps/radarr/radarr-4.2.3.6575.ebuild
@@ -25,7 +25,9 @@ RDEPEND="
media-video/mediainfo
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/radarr/radarr-4.2.4.6635.ebuild 
b/www-apps/radarr/radarr-4.2.4.6635.ebuild
index dbfdaf894fae..7233bf2584bd 100644
--- a/www-apps/radarr/radarr-4.2.4.6635.ebuild
+++ b/www-apps/radarr/radarr-4.2.4.6635.ebuild
@@ -25,7 +25,9 @@ RDEPEND="
media-video/mediainfo
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 



[gentoo-commits] repo/gentoo:master commit in: profiles/features/musl/, www-apps/prowlarr/

2022-10-09 Thread Sam James
commit: 47e1c5dd14e062c6cc24df73b1f4d7bd1f722d0c
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 18:48:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 18:48:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e1c5dd

www-apps/prowlarr: depend on glibc (binpkg)

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

 profiles/features/musl/package.mask | 1 +
 www-apps/prowlarr/prowlarr-0.4.2.1879-r1.ebuild | 4 +++-
 www-apps/prowlarr/prowlarr-0.4.3.1921.ebuild| 4 +++-
 www-apps/prowlarr/prowlarr-0.4.4.1947.ebuild| 4 +++-
 www-apps/prowlarr/prowlarr-0.4.5.1960.ebuild| 4 +++-
 www-apps/prowlarr/prowlarr-0.4.6.1969.ebuild| 4 +++-
 6 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index 1aa81a9a8509..7b86d20fdf90 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -210,6 +210,7 @@ www-apps/chromedriver-bin
 www-apps/grafana-bin
 www-apps/jellyfin
 www-apps/kibana-bin
+www-apps/prowlarr
 www-apps/radarr
 www-apps/readarr
 www-client/chromium-bin

diff --git a/www-apps/prowlarr/prowlarr-0.4.2.1879-r1.ebuild 
b/www-apps/prowlarr/prowlarr-0.4.2.1879-r1.ebuild
index c80e40c7bec2..b19e1af8dd7d 100644
--- a/www-apps/prowlarr/prowlarr-0.4.2.1879-r1.ebuild
+++ b/www-apps/prowlarr/prowlarr-0.4.2.1879-r1.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/prowlarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/prowlarr/prowlarr-0.4.3.1921.ebuild 
b/www-apps/prowlarr/prowlarr-0.4.3.1921.ebuild
index c80e40c7bec2..b19e1af8dd7d 100644
--- a/www-apps/prowlarr/prowlarr-0.4.3.1921.ebuild
+++ b/www-apps/prowlarr/prowlarr-0.4.3.1921.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/prowlarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/prowlarr/prowlarr-0.4.4.1947.ebuild 
b/www-apps/prowlarr/prowlarr-0.4.4.1947.ebuild
index c80e40c7bec2..b19e1af8dd7d 100644
--- a/www-apps/prowlarr/prowlarr-0.4.4.1947.ebuild
+++ b/www-apps/prowlarr/prowlarr-0.4.4.1947.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/prowlarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/prowlarr/prowlarr-0.4.5.1960.ebuild 
b/www-apps/prowlarr/prowlarr-0.4.5.1960.ebuild
index c80e40c7bec2..b19e1af8dd7d 100644
--- a/www-apps/prowlarr/prowlarr-0.4.5.1960.ebuild
+++ b/www-apps/prowlarr/prowlarr-0.4.5.1960.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/prowlarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 

diff --git a/www-apps/prowlarr/prowlarr-0.4.6.1969.ebuild 
b/www-apps/prowlarr/prowlarr-0.4.6.1969.ebuild
index c80e40c7bec2..b19e1af8dd7d 100644
--- a/www-apps/prowlarr/prowlarr-0.4.6.1969.ebuild
+++ b/www-apps/prowlarr/prowlarr-0.4.6.1969.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/prowlarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/readarr/, profiles/features/musl/

2022-10-09 Thread Sam James
commit: 312b2e85e812608f2bf567257fa96f6a8c3697bc
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  9 18:46:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 18:46:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312b2e85

www-apps/readarr: depend on glibc (binpkg)

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

 profiles/features/musl/package.mask| 1 +
 www-apps/readarr/readarr-0.1.1.1320.ebuild | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index 9d94803af59a..d42b4e1b97f0 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -210,6 +210,7 @@ www-apps/chromedriver-bin
 www-apps/grafana-bin
 www-apps/jellyfin
 www-apps/kibana-bin
+www-apps/readarr
 www-client/chromium-bin
 www-client/google-chrome
 www-client/google-chrome-beta

diff --git a/www-apps/readarr/readarr-0.1.1.1320.ebuild 
b/www-apps/readarr/readarr-0.1.1.1320.ebuild
index 23747b5fc1ac..786c07257878 100644
--- a/www-apps/readarr/readarr-0.1.1.1320.ebuild
+++ b/www-apps/readarr/readarr-0.1.1.1320.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
acct-user/readarr
dev-libs/icu
dev-util/lttng-ust:0
-   dev-db/sqlite"
+   dev-db/sqlite
+   sys-libs/glibc
+"
 
 QA_PREBUILT="*"
 



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

2022-10-09 Thread Sam James
commit: bc060d549b8ddec7c4cdbe9f740ae7ad3468c5bb
Author: orbea  riseup  net>
AuthorDate: Fri Oct  7 20:48:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 18:44:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc060d54

net-misc/seafile-client: Fix the build with musl

Closes: https://bugs.gentoo.org/863554
Closes: https://github.com/gentoo/gentoo/pull/27690
Signed-off-by: Sam James  gentoo.org>

 net-misc/seafile-client/seafile-client-8.0.5.ebuild | 3 +++
 net-misc/seafile-client/seafile-client-8.0.6.ebuild | 3 +++
 net-misc/seafile-client/seafile-client-8.0.7.ebuild | 3 +++
 net-misc/seafile-client/seafile-client-8.0.8.ebuild | 3 +++
 4 files changed, 12 insertions(+)

diff --git a/net-misc/seafile-client/seafile-client-8.0.5.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.5.ebuild
index 9a427ed646fd..4c52710fbbf8 100644
--- a/net-misc/seafile-client/seafile-client-8.0.5.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.5.ebuild
@@ -30,6 +30,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -47,5 +48,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }

diff --git a/net-misc/seafile-client/seafile-client-8.0.6.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.6.ebuild
index 19c6f924fba8..cf595b8208c9 100644
--- a/net-misc/seafile-client/seafile-client-8.0.6.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.6.ebuild
@@ -31,6 +31,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -48,5 +49,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }

diff --git a/net-misc/seafile-client/seafile-client-8.0.7.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.7.ebuild
index ce469197b9f0..26bf640b97c8 100644
--- a/net-misc/seafile-client/seafile-client-8.0.7.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.7.ebuild
@@ -31,6 +31,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -48,5 +49,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }

diff --git a/net-misc/seafile-client/seafile-client-8.0.8.ebuild 
b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
index e7086c331bca..84395edb38d6 100644
--- a/net-misc/seafile-client/seafile-client-8.0.8.ebuild
+++ b/net-misc/seafile-client/seafile-client-8.0.8.ebuild
@@ -31,6 +31,7 @@ RDEPEND="dev-db/sqlite:3
~net-misc/seafile-${PV}
sys-libs/zlib
virtual/opengl
+   elibc_musl? ( sys-libs/fts-standalone )
shibboleth? ( dev-qt/qtwebengine:5[widgets] )"
 DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )"
@@ -48,5 +49,7 @@ src_configure() {
-DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
-DBUILD_TESTING="$(usex test)"
)
+   # 863554
+   use elibc_musl && mycmakeargs+=( -DCMAKE_CXX_STANDARD_LIBRARIES="-lfts" 
)
cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: sci-libs/pdal/, sci-libs/pdal/files/

2022-10-09 Thread Andreas Sturmlechner
commit: c1484244e59b0cb38f35221f62f971c0898ee6dd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 13:44:06 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1484244

sci-libs/pdal: drop 2.3.0

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/pdal/Manifest |   1 -
 .../pdal-2.3.0-fix_cmake_install_location.patch|  17 
 .../files/pdal-2.3.0-fix_tests_for_proj811.patch   | 110 -
 .../pdal/files/pdal-2.3.0-upgrade_cmake_min.patch  |  77 ---
 sci-libs/pdal/pdal-2.3.0.ebuild|  60 ---
 5 files changed, 265 deletions(-)

diff --git a/sci-libs/pdal/Manifest b/sci-libs/pdal/Manifest
index 0819a558369b..7066dee406c7 100644
--- a/sci-libs/pdal/Manifest
+++ b/sci-libs/pdal/Manifest
@@ -1,2 +1 @@
-DIST PDAL-2.3.0-src.tar.gz 110530128 BLAKE2B 
435997e7ae7fe84ff77d8546e68ce6d32e54a221b5a4bbea45543554355506d7900f65ebb47a4f5333d0f3a44192ffe548178b6b3e8b3b7575d3c104618e288b
 SHA512 
9de87de7370175e76b95d3ec08667eb28b90a63eed8133f144427ff931e575d1f37aa13496f12054577539ee552458475dd054bcbdedfabe52eb0e32c4483d05
 DIST PDAL-2.4.0-src.tar.gz 113449697 BLAKE2B 
8f774555d32ad4f0afe6dd850e6dcaf33b58c02934207ee2224230af762a7d3062a48909e267abf790a97a1d11788bb7543971c99239e5ae742d7945db09bda5
 SHA512 
655fadd2b435ed1cb801ba542028bcc15156da9266eedde93b2210dbadbc50d36b0b6a151062113f2adfb68a2938e2b867438a5a94952a7b3e46f59a53b47623

diff --git a/sci-libs/pdal/files/pdal-2.3.0-fix_cmake_install_location.patch 
b/sci-libs/pdal/files/pdal-2.3.0-fix_cmake_install_location.patch
deleted file mode 100644
index 65e32100d18d..
--- a/sci-libs/pdal/files/pdal-2.3.0-fix_cmake_install_location.patch
+++ /dev/null
@@ -1,17 +0,0 @@
 a/cmake/config.cmake.orig  2022-02-19 13:06:41.654048306 +0100
-+++ b/cmake/config.cmake   2022-02-19 13:07:21.007165692 +0100
-@@ -6,7 +6,7 @@
- configure_package_config_file(
-   PDALConfig.cmake.in
-   ${CMAKE_CURRENT_BINARY_DIR}/PDALConfig.cmake
--  INSTALL_DESTINATION ${LIB_INSTALL_DIR}/cmake/PDAL
-+  INSTALL_DESTINATION ${PDAL_LIB_INSTALL_DIR}/cmake/PDAL
-   PATH_VARS INCLUDE_INSTALL_DIR LIB_INSTALL_DIR)
- 
- write_basic_package_version_file(
-@@ -17,4 +17,4 @@
- install(FILES
-   ${CMAKE_CURRENT_BINARY_DIR}/PDALConfig.cmake
-   ${CMAKE_CURRENT_BINARY_DIR}/PDALConfigVersion.cmake
--  DESTINATION ${LIB_INSTALL_DIR}/cmake/PDAL)
-+  DESTINATION ${PDAL_LIB_INSTALL_DIR}/cmake/PDAL)

diff --git a/sci-libs/pdal/files/pdal-2.3.0-fix_tests_for_proj811.patch 
b/sci-libs/pdal/files/pdal-2.3.0-fix_tests_for_proj811.patch
deleted file mode 100644
index 6a34686330f4..
--- a/sci-libs/pdal/files/pdal-2.3.0-fix_tests_for_proj811.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-From 
https://github.com/PDAL/PDAL/commit/1a7415f67cfe13f816345ce4b7fc1c68f0a45c83
-Bug https://bugs.gentoo.org/833820
-From: Andrew Bell 
-Date: Thu, 7 Oct 2021 11:15:18 -0400
-Subject: [PATCH] Work around test issues with varying versions of PROJ (#3560)
-
-* Add range for crop because of varying proj precision.
-
-* Fix tests for PROJ 8.1.1
-
-* More test workaround for proj.

- test/unit/filters/CropFilterTest.cpp | 10 +++
- test/unit/io/EptReaderTest.cpp   | 41 +++-
- 2 files changed, 50 insertions(+), 1 deletion(-)
-
-diff --git a/test/unit/filters/CropFilterTest.cpp 
b/test/unit/filters/CropFilterTest.cpp
-index 23ccb465bc..f4b825c891 100644
 a/test/unit/filters/CropFilterTest.cpp
-+++ b/test/unit/filters/CropFilterTest.cpp
-@@ -250,7 +250,17 @@ TEST(CropFilterTest, test_crop_polygon_reprojection)
- PointViewSet viewSet = crop.execute(table);
- EXPECT_EQ(viewSet.size(), 1u);
- view = *viewSet.begin();
-+//ABELL - I'd like to do the following, but we don't necessarily have proj.h
-+/**
-+#if defined(PROJ_VERSION_NUMBER) && PROJ_VERSION_NUMBER > 80101
-+EXPECT_EQ(view->size(), 45u);
-+#else
- EXPECT_EQ(view->size(), 47u);
-+#endif
-+**/
-+// So instead...
-+EXPECT_GE(view->size(), 45u);
-+EXPECT_LE(view->size(), 47u);
- 
- FileUtils::closeFile(wkt_stream);
- }
-diff --git a/test/unit/io/EptReaderTest.cpp b/test/unit/io/EptReaderTest.cpp
-index ab5cfdee4a..0d274d4c08 100644
 a/test/unit/io/EptReaderTest.cpp
-+++ b/test/unit/io/EptReaderTest.cpp
-@@ -625,8 +625,21 @@ TEST(EptReaderTest, boundedCrop)
- }
- 
- EXPECT_EQ(eptNp, sourceNp);
-+
-+//ABELL - A change in proj changed the numbers, but we don't necessarily have 
proj.h
-+/**
-+#if defined(PROJ_VERSION_NUMBER) && PROJ_VERSION_NUMBER > 80101
-+EXPECT_EQ(eptNp, 45u);
-+EXPECT_EQ(sourceNp, 45u);
-+#else
- EXPECT_EQ(eptNp, 47u);
- EXPECT_EQ(sourceNp, 47u);
-+#endif
-+**/
-+EXPECT_GE(eptNp, 45u);
-+EXPECT_GE(sourceNp, 45u);
-+EXPECT_LE(eptNp, 47u);
-+EXPECT_LE(sourceNp, 47u);
- }
- 
- TEST(EptReaderTest, polygonAndBoundsCrop)
-@@ 

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qgis/files/, sci-geosciences/qgis/

2022-10-09 Thread Andreas Sturmlechner
commit: 5efebdac3d58d269f9c84d4c54d588b00cbc5c8a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 13:29:46 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5efebdac

sci-geosciences/qgis: drop old versions

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-geosciences/qgis/Manifest  |   5 -
 .../files/qgis-3.22.5-install-grass8-scripts.patch |  17 --
 sci-geosciences/qgis/qgis-3.22.0-r4.ebuild | 205 
 sci-geosciences/qgis/qgis-3.22.5.ebuild| 254 
 sci-geosciences/qgis/qgis-3.22.6.ebuild| 264 -
 sci-geosciences/qgis/qgis-3.22.7-r1.ebuild | 264 -
 sci-geosciences/qgis/qgis-3.22.7-r2.ebuild | 259 
 sci-geosciences/qgis/qgis-3.22.7.ebuild| 264 -
 sci-geosciences/qgis/qgis-3.22.8.ebuild| 259 
 9 files changed, 1791 deletions(-)

diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest
index 0d5861607665..2b7cdae32bd0 100644
--- a/sci-geosciences/qgis/Manifest
+++ b/sci-geosciences/qgis/Manifest
@@ -1,8 +1,3 @@
-DIST qgis-3.22.0.tar.bz2 135469417 BLAKE2B 
54fdd8517e37931dcdc81ef1006859d58d9e60a994a60588109a8337ade68e48710f0f50fe41e6e73c0e095187f00f15209258eb940ea3c80bba4f249d081cd5
 SHA512 
dc214d90c465cc7b8a82196d666b94971d60e64a28e38742aba5cdd86058e27fdf7cc3564bca3b330cf1820c7594d9226576145461db399c458a26ee569e299b
 DIST qgis-3.22.11.tar.bz2 142155708 BLAKE2B 
71b3e0a772fbea1e26d01dff6f65c35981a5ff091b5ea6bee76608f9812c569226f99789333fe39fdd772ee72af02746458c93117d21fb0352851871217a82f6
 SHA512 
0c41fa8e74b3cf54926aedc7a221ac440eabf9d27071bb79a17c5d7826624a8e6010521000f6b55afbc71f079ff18235d8fa5d407fe6b31b1bb705b6eb431424
-DIST qgis-3.22.5.tar.bz2 137731586 BLAKE2B 
d5cad96ca7fadab58e2f680493469496d8c5e06141ac646a09cc1f5fa607b860a0e15e5b6257debb9e787d294d2183bd0b007e96e839aca7e9fb87d81001edd7
 SHA512 
d47bcd743a0c621b3a5a90923d98844056260f396e683b0874625e341cdf84d075505e909130cfc473fc550de37bc078fc5ebb54b437e582572d930e12411dcb
-DIST qgis-3.22.6.tar.bz2 138056354 BLAKE2B 
a1f7681ae71b4f06c8e4542fe1351fbd0fd0c5a07934b1eb5e535d17a5c0432a9df1489db34dfdcbb776c55c233f3f53c8c1aaf957ba0b8445c4738c9a504cf2
 SHA512 
5ef36d6d93e5f7562f4ef2dc2a738057376153e7b34fdef7dd4cf278334d61af0b3380712b22961c3693088036d18167f9b2c2f623f405c668e8b48ef2f93d20
-DIST qgis-3.22.7.tar.bz2 138076419 BLAKE2B 
25e164e9da681dc78546b2492ec85dc97976f8f6e33e41244b8d72ef109edf9c482f00807183338da1e23a0dc9fbf0526953f053f67aff5723dc30ed280daae2
 SHA512 
d85b88a7a9aee17e7f8179c7d715bc60e64de5bdb41498177886ecdf5da2d707e3880715b6eaba4af86398666da4e322b0fac6b03f6aa907c9e39bfe4d93db91
-DIST qgis-3.22.8.tar.bz2 138285002 BLAKE2B 
d9c94c9e9836f342242000279217fcd7ceee63693829306b7927378b61b5cf9a2d6c78d41722e44b515653d73ea89d104ecb0a7f1688e294d75cad52bcf065e0
 SHA512 
80fec733fde090b3be0ba4cad1c8709023dac2fc254d2ed10540d8a929ced3218d7ae69c11b396f9424280b1746a84871d457380aaad8e65ffc62b150c731bd2
 DIST qgis-3.22.9.tar.bz2 138141096 BLAKE2B 
d59d6fd97471397150e594acda1c6072948cc010b4bf4d34c33a642fabdc78a580bd76418785892114aa4997e88cf700f178a9243079ff800c76cb3c25cf
 SHA512 
c33cfe18c542a3be42fa6a08b62f71511a71a7e72ae704177846b66444d90a28df2f1c42d98c53c2c0e43f13bce24224499c52db5d2cbcac5d8a53782f7c124c
 DIST qgis_sample_data-2.8.14.tar.gz 22119181 BLAKE2B 
2d0565e91ec8119382bc9ab8e262dc04227fe8289146794891759ff5a32012245270614ba1119a6329fc45cf56852830c2079589309aa3467873f71f5c608eac
 SHA512 
6b2653d5b57ffc2c2317639dac212429840984ac917ca3e452b39aabb99ea106d1a77c1c1dd967244ef16ede9deae751b170affdf08b72239eafed5b8977da3d

diff --git 
a/sci-geosciences/qgis/files/qgis-3.22.5-install-grass8-scripts.patch 
b/sci-geosciences/qgis/files/qgis-3.22.5-install-grass8-scripts.patch
deleted file mode 100644
index 5c801f23fe8c..
--- a/sci-geosciences/qgis/files/qgis-3.22.5-install-grass8-scripts.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://github.com/qgis/QGIS/pull/47881
-https://github.com/qgis/QGIS/pull/47456
-https://github.com/qgis/QGIS/pull/47456/commits/84e574dcc043e03bb1682d1dfc5bd3b9fbf87b3d
-
-From 84e574dcc043e03bb1682d1dfc5bd3b9fbf87b3d Mon Sep 17 00:00:00 2001
-From: Bas Couwenberg 
-Date: Fri, 18 Mar 2022 18:04:01 +0100
-Subject: [PATCH] Also install scripts for GRASS 8.
-
 a/src/plugins/grass/scripts/CMakeLists.txt
-+++ b/src/plugins/grass/scripts/CMakeLists.txt
-@@ -1,4 +1,4 @@
--if (GRASS_NUM_VERSION6 GREATER 60300 OR GRASS_NUM_VERSION7 GREATER 60300)
-+if (GRASS_NUM_VERSION6 GREATER 60300 OR GRASS_NUM_VERSION7 GREATER 60300 OR 
GRASS_NUM_VERSION8 GREATER 60300)
- file (GLOB MODULE_FILES *.py )
- install (FILES ${MODULE_FILES}
-  DESTINATION ${QGIS_DATA_DIR}/grass/scripts

diff --git a/sci-geosciences/qgis/qgis-3.22.0-r4.ebuild 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/files/, sci-libs/gdal/

2022-10-09 Thread Andreas Sturmlechner
commit: 659e0cd464257436e25d3a9ec6cdfed30ccda2cb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 13:38:39 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659e0cd4

sci-libs/gdal: drop 3.4.1, 3.4.2-r2, 3.4.3-r1, 3.5.0-r3, 3.5.1

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/gdal/Manifest |   5 -
 sci-libs/gdal/files/gdal-2.2.3-soname.patch|  54 ---
 sci-libs/gdal/files/gdal-2.3.0-curl.patch  |  15 -
 sci-libs/gdal/files/gdal-3.3.0-libdir.patch| 392 -
 .../files/gdal-3.4.1-poppler-22.01.0-c++17.patch   |  23 --
 .../gdal/files/gdal-3.4.1-poppler-22.03.0.patch|  54 ---
 sci-libs/gdal/gdal-3.4.1.ebuild| 324 -
 sci-libs/gdal/gdal-3.4.2-r2.ebuild | 329 -
 sci-libs/gdal/gdal-3.4.3-r1.ebuild | 328 -
 sci-libs/gdal/gdal-3.5.0-r3.ebuild | 237 -
 sci-libs/gdal/gdal-3.5.1.ebuild| 238 -
 sci-libs/gdal/metadata.xml |   2 -
 12 files changed, 2001 deletions(-)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 81bf883857e0..b5eee757eae7 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1,10 +1,5 @@
-DIST gdal-3.4.1.tar.xz 13257288 BLAKE2B 
3b01e8345579c9d46fb3d4ff240f5b97cf13eb4b580ecc93044e0ca3d99e2d19fa2a2a52a2342b3158d67525a1de18a9ba77a2033ad891f73fee682b2c10cade
 SHA512 
a66362996f255cb75116693b4ee398337ec8b9699b5cd7fed90105f72832faa20750b77ebbc3e8d59ab72a23b35c4e4e78513cc803bd93e1b7846711ccfb5bff
-DIST gdal-3.4.2.tar.xz 13273280 BLAKE2B 
b40e2978d0841386b52de1ad08cec862c52aab8c015aecd58983bb8c5bbf8d86ca8e4ef5d2bbae39f421b3c78eecd0df1b3cd83d6bf25b1469563b4f9f37d8ca
 SHA512 
7b7e2800b2c23ffe6b7739fbf77748e3be2db9e34b061753da5e175f6ad6ed7f9f91856d3838f071a17a6afab96c258d37a15502e254d2008310d3061031af73
-DIST gdal-3.4.3.tar.xz 13275504 BLAKE2B 
5b1cc2be9c2af7a326dc532d547b1e7d2f9c4af32d8f16998f09332a88a53305243313711cc24fe5d028b8edc131ebccda6daf08b5c67d9a2c55fd4e04fe9cee
 SHA512 
2b97e44b9bd84eb43b4c4894b7b6e748522b2f5e8b6cbecc8247fe5ea862795dd44ba2b52934a83688a949805cee4eef9f1aa66360fb831fea3eae956ab0bef3
 DIST gdal-3.5.0-build-fixes-no-deps.patch.xz 5016 BLAKE2B 
0d0ef0ccae73f8a903b0ccbf992fa775b394df85a89d86f86ad60187bfce6a87eb8b23a573bd65c0173c0e7cffe3df447cef0fd5aebfcedfbed3e6a7716e
 SHA512 
e32c97e3fef948f2fa9c0f4b7116ccb231554e962380d7bebb433083926fb4e1902b0a3bc243f747c81c95813651153ce2751d8c2de4e8abb096778ffe589a2e
 DIST gdal-3.5.0.tar.xz 8826500 BLAKE2B 
7123ff4a7270b309d458e4a7bd32241cdef53953c305c5027873424794f4ed27d2a4838f86c42f9f84b5174ff499ee5539694c41e906509d21d899ccfe38ff99
 SHA512 
15d9675ffe5e76fdcb431bef1dce0ed8c23695f418186f37c63f4c7274322924095662bbbc95232d5b4d700704c1c4922d52b419cef5bb67f3bb64ee59654d8b
-DIST gdal-3.5.1.tar.xz 8844808 BLAKE2B 
38efbc69a386607b10fbe9d0add14716fec68a48c6df60f618c306a25d824b499c8dab6cc3d9f614b57e2e69352be860fbba683c58b5d82970a346aa9699f111
 SHA512 
d731b2b2bd5d300786e2e0eca296d302fda8bc9c76b41d7e78b728f82bb857c55a0d0ba65ae0ccd3b03c6b5812d0afee07940e4133b4b2c852a384c9fe00a8bc
 DIST gdal-3.5.2.tar.xz 8863680 BLAKE2B 
6d3277bde363abb202d8caa715af4d1b4b6d184c961502c9ee6d8367ac722329dc941def8b060c9ecd4f48e9561b60cc14a9cc633ba39ace8d02a2245ae2c5a4
 SHA512 
9515b6709bf3a32f800b38ebba41f1a475946aa7249f072ebe37af0aea896e2b834c9156151f94261366afa400870944fc394637b02e2fd69136af5171715d70
 DIST gdalautotest-3.5.0.tar 50442240 BLAKE2B 
15005f16530690e584e39b036881c339f147e525e3e0dc39b57d027c493ab89027baa2ea3a0ed148c8fa3ebb7cd53cdb4cf4d53c96d068b5a89caf28165e213b
 SHA512 
723c57425dd5f8acd61795be98b450844b5664b9940d47823829d510b8fb84d1d6db9ca880200d7732a83e7b0f1ae6e33269d8ebd91bf0e7d99e887b5f79aad0
-DIST gdalautotest-3.5.1.tar 51005440 BLAKE2B 
b6c927f35598a406c186fb834befb6941d3665f924dae77e69191e1190a74ba20153ddf14a5e9e9e0b65e70f3496a67ec9ab60fcfce5a62d8b71f5ed54fecc35
 SHA512 
50bcaf7dc63c8dc7209b3e6915f5cfd0e6fd6721bc741ac13ef13d485ac7ae4fbf2b59c0e856cbe73b5d9fd787da2859037bf9c3264953bb6fbc8dbbe3662308
 DIST gdalautotest-3.5.2.tar 51046400 BLAKE2B 
bd6f73b98548998d00b5631025abd2dc800c61a8afd16b63505cadd7fa46621c59f7be4eaee43d6cca9dd55684d17fc0e7e08c8540988f48af9e74c649f32dab
 SHA512 
92017d76dc9523b7e24c50dc54b1b1d8856cb4be8a3c8d4fc23bd8a5abaad46c758d606a743cfc30aa4c74a876f203ae105f7e06b66b2873d06de70c2edd1cc2

diff --git a/sci-libs/gdal/files/gdal-2.2.3-soname.patch 
b/sci-libs/gdal/files/gdal-2.2.3-soname.patch
deleted file mode 100644
index 1fee41daeafc..
--- a/sci-libs/gdal/files/gdal-2.2.3-soname.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-Set SONAME and unbreak compilation on Darwin
-
-Author: Fabian Groffen 
-Author: Dennis Schridde 
-
 a/GDALmake.opt.in
-+++ b/GDALmake.opt.in
-@@ -97,6 +97,14 @@
- GDAL_SLIB

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/grass/

2022-10-09 Thread Andreas Sturmlechner
commit: 8ea7589d7b3ae942069a243393d05a2fd7e566f9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 13:43:05 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea7589d

sci-geosciences/grass: drop 7.8.6-r1, 7.8.7, 7.8.7-r2, 8.0.2, 8.0.2-r2

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-geosciences/grass/Manifest  |   3 -
 sci-geosciences/grass/grass-7.8.6-r1.ebuild | 270 --
 sci-geosciences/grass/grass-7.8.7-r2.ebuild | 275 --
 sci-geosciences/grass/grass-7.8.7.ebuild| 269 --
 sci-geosciences/grass/grass-8.0.2-r2.ebuild | 290 
 sci-geosciences/grass/grass-8.0.2.ebuild| 283 ---
 sci-geosciences/grass/metadata.xml  |   1 -
 7 files changed, 1391 deletions(-)

diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest
index 745b3b8081b9..3e0f3220fd5c 100644
--- a/sci-geosciences/grass/Manifest
+++ b/sci-geosciences/grass/Manifest
@@ -1,4 +1 @@
-DIST grass-7.8.6.tar.gz 66331264 BLAKE2B 
bb5a3387f74bc30b7ce3230765cecdc7e61ded8693d888e6cefc2d491022496409d053e170293fcef392a9c9178a41b070767e1ce90b57b448b189c9e16a2761
 SHA512 
6db10a20e5b70f0ce9a8fc4d6966c6f078453a88fa8f0577c1c62303f9787fa3bf3369e281f7ca864280c865e3ef022c51d8805d1258ea04da45e63cd34c27df
-DIST grass-7.8.7.tar.gz 66333084 BLAKE2B 
809daed6992838cd89b7f913c92bb588db05ae933c6e05b6fbd1add135dc36238260222f338df023c402b411b6c0338a56e06268d1fb736e9d9f6779bc2e4c42
 SHA512 
8c890b34a64c3a52285a8d99e2a2ec61b41de0258ae5b70d1876499988a9a8229925b82f4595df6b5cf21b77ecc8529feb75f765d4e92f324a734293dffc7303
-DIST grass-8.0.2.tar.gz 65665825 BLAKE2B 
496dab376b38c74d2206096f8b1bf84c328be3871fca5173042d7368f5c40cdbb6908ed69ec9f2c0669b25f3cfc50b4105f9bb7b375c379b9cc518ebfe8f
 SHA512 
fc6f45f2b6ac2507c70a14baa931d5c66f0b115c914081d24c95f40afa6c266a718026df895f7a182ea837c6abf70da15b09dccba39eedd6a71ba7b6301edf7c
 DIST grass-8.2.0.tar.gz 66819726 BLAKE2B 
e4398368dd8fd26324709202f42556033a0fea12b6bf5b300c9c416e8758472ceacf40e1d3d540b1aefea88199c0f411462a64fc5e09864582e2e4ce743d67f3
 SHA512 
8179b8704ea688ba412496d0e149c5a47b89fd557b613a49f3addb9721f166cd3aa23ff2549832d9940e5065893e3257ce7287e75018a3468aa7847392398930

diff --git a/sci-geosciences/grass/grass-7.8.6-r1.ebuild 
b/sci-geosciences/grass/grass-7.8.6-r1.ebuild
deleted file mode 100644
index c751961cabf0..
--- a/sci-geosciences/grass/grass-7.8.6-r1.ebuild
+++ /dev/null
@@ -1,270 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-PYTHON_REQ_USE="sqlite"  # bug 572440
-WANT_AUTOCONF="2.5"
-WX_GTK_VER="3.0-gtk3"
-
-inherit autotools desktop python-single-r1 toolchain-funcs wxwidgets xdg
-
-MY_PM=${PN}$(ver_cut 1-2 ${PV})
-MY_PM=${MY_PM/.}
-MY_P=${P/_rc/RC}
-
-DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D 
vizualization"
-HOMEPAGE="https://grass.osgeo.org/;
-SRC_URI="https://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/7.8.0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl opengl 
openmp png postgres readline sqlite threads tiff truetype X zstd"
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   opengl? ( X )"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=app-admin/eselect-1.2
-   $(python_gen_cond_dep '
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   ')
-   sci-libs/gdal:=
-   sys-libs/gdbm:=
-   sys-libs/ncurses:0=
-   sci-libs/proj:=
-   sci-libs/xdrfile
-   sys-libs/zlib
-   blas? (
-   virtual/cblas[eselect-ldso(+)]
-   virtual/blas[eselect-ldso(+)]
-   )
-   fftw? ( sci-libs/fftw:3.0= )
-   geos? ( sci-libs/geos:= )
-   lapack? ( virtual/lapack[eselect-ldso(+)] )
-   liblas? ( sci-geosciences/liblas )
-   mysql? ( dev-db/mysql-connector-c:= )
-   netcdf? ( sci-libs/netcdf:= )
-   odbc? ( dev-db/unixODBC )
-   opencl? ( virtual/opencl )
-   opengl? ( virtual/opengl )
-   png? ( media-libs/libpng:0= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   readline? ( sys-libs/readline:0= )
-   sqlite? ( dev-db/sqlite:3 )
-   tiff? ( media-libs/tiff:0= )
-   truetype? ( media-libs/freetype:2 )
-   X? (
-   dev-python/wxpython:4.0
-   x11-libs/cairo[X,opengl?]
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXt
-   )
-   zstd? ( app-arch/zstd )"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex

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

2022-10-09 Thread Andreas Sturmlechner
commit: 0e61b93c62c19ecda01e60fa3d67ac491a365868
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 18:25:26 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e61b93c

profiles: base: Drop obsolete =sci-libs/gdal-3.5.0-r3[jpeg,png] force

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/base/package.use.force | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/base/package.use.force b/profiles/base/package.use.force
index fa17fcb49e12..904108ba96db 100644
--- a/profiles/base/package.use.force
+++ b/profiles/base/package.use.force
@@ -6,12 +6,6 @@
 # so force the flag on until problem fixed upstream
 >=sys-cluster/ceph-17.2.1 system-boost
 
-# Sam James  (2022-05-17)
-# Force on jpeg & png for now until build system fixes are made
-# by upstream. The CMake port is new so it's fairly expected
-# to have a few bumps. bug #844751.
-=sci-libs/gdal-3.5.0-r3 jpeg png
-
 # Esteve Varela Colominas  (2022-02-19)
 # Use the jemalloc allocator for telegram, as recommended by upstream,
 # to reduce memory usage, at least on glibc.



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/ia64/, profiles/arch/powerpc/ppc32/, ...

2022-10-09 Thread Andreas Sturmlechner
commit: 50ba65400b6246a8ba48191adc5a55308dbdcb5d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct  7 18:12:57 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  9 18:29:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ba6540

profiles: Cleanup obsolete sci-libs/gdal[mdb] masks

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/arch/arm/package.use.mask| 4 
 profiles/arch/ia64/package.use.mask   | 4 
 profiles/arch/powerpc/ppc32/package.use.mask  | 4 
 profiles/arch/powerpc/ppc64/32ul/package.use.mask | 4 
 profiles/arch/riscv/package.use.mask  | 2 --
 profiles/base/package.use.stable.mask | 4 
 6 files changed, 22 deletions(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index eb1eb73da177..4e846eeb772b 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -248,10 +248,6 @@ dev-libs/libsecp256k1 -asm
 # DOSBox + OpenGLide is untested on this arch.
 games-emulation/dosbox glide
 
-# Thomas Deutschmann  (2016-12-04)
-# sci-libs/gdal[mdb] requires dev-java/jackcess which is not keyworded
->=sci-libs/gdal-2.0.3 mdb
-
 # Ettore Di Giacinto  (2016-11-10)
 # Dependency has no stable keyword
 # and as for now we have only stable mate versions

diff --git a/profiles/arch/ia64/package.use.mask 
b/profiles/arch/ia64/package.use.mask
index d800ea69b950..bbb3c7276495 100644
--- a/profiles/arch/ia64/package.use.mask
+++ b/profiles/arch/ia64/package.use.mask
@@ -281,10 +281,6 @@ media-video/mplayer dvdnav
 # Requires USE=v4l that is masked in this profile.
 media-video/ffmpeg libv4l
 
-# Sergei Trofimovich  (2017-07-20)
-# pulls in unkeyworded java
-sci-libs/gdal mdb
-
 # Sergei Trofimovich  (2017-07-20)
 # pulls in unkeyworded lapack
 sci-libs/gdal armadillo

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index 9bb115926865..58aaa24e1503 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -191,10 +191,6 @@ sys-devel/clang-runtime openmp sanitize
 # Dropping ppc from sci-libs/armadillo, bug 555896
 sci-libs/gdal armadillo
 
-## Thomas Deutschmann  (2016-12-04)
-# sci-libs/gdal[mdb] requires dev-java/jackcess which is not keyworded
-sci-libs/gdal mdb
-
 # Michał Górny  (2016-11-18)
 # libomp does not support 32-bit PPC, #600148.
 sys-devel/clang-runtime openmp

diff --git a/profiles/arch/powerpc/ppc64/32ul/package.use.mask 
b/profiles/arch/powerpc/ppc64/32ul/package.use.mask
index bfd49a6d6b60..2b0670825720 100644
--- a/profiles/arch/powerpc/ppc64/32ul/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/32ul/package.use.mask
@@ -20,7 +20,3 @@ media-gfx/gimp heif
 # Andreas Sturmlechner  (2019-02-16)
 # app-text/libwpd and app-text/libwpg are not keyworded
 media-gfx/inkscape cdr visio wpg
-
-# Thomas Deutschmann  (2016-12-04)
-# sci-libs/gdal[mdb] requires dev-java/jackcess which is not keyworded
-sci-libs/gdal mdb

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index 4d3bbd739f61..f9fa47ddb21c 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -158,8 +158,6 @@ net-libs/libproxy spidermonkey
 app-text/texlive pdfannotextractor
 #  - JDK
 media-libs/rubberband jni
-#  - dev-java/jackcess
-sci-libs/gdal mdb
 
 # Yixun Lan  (2021-08-05)
 # Boost.Context can be built on riscv

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index ae5446930a55..b897a27630a9 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -188,10 +188,6 @@ dev-php/PEAR-Text_Password test
 # The go flag requires stable masked dev-lang/go[gccgo].
 www-servers/uwsgi go uwsgi_plugins_alarm_xmpp
 
-# Michael Palimaka  (2017-09-30)
-# Required dependeny is not stable
-sci-libs/gdal mdb
-
 # Tim Harder  (2017-09-11)
 # Requires guile-2 which is still unstable.
 >=net-irc/weechat-1.7 guile



[gentoo-commits] repo/proj/libressl:master commit in: net-analyzer/nmap/files/, net-analyzer/nmap/

2022-10-09 Thread Quentin Retornaz
commit: 5d6931369fd8f6b7f2d02cf40b31e13e1d0571d1
Author: orbea  riseup  net>
AuthorDate: Sun Oct  9 15:29:16 2022 +
Commit: Quentin Retornaz  retornaz  com>
CommitDate: Sun Oct  9 18:11:49 2022 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=5d693136

net-analyzer/nmap: Added

Closes: https://github.com/gentoo/libressl/issues/459
Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/libressl/pull/460
Signed-off-by: Quentin Retornaz  retornaz.com>

 net-analyzer/nmap/Manifest |   4 +
 net-analyzer/nmap/files/nls.m4 |  32 +++
 .../nmap/files/nmap-5.10_beta1-string.patch|  11 +
 net-analyzer/nmap/files/nmap-5.21-python.patch |  21 ++
 net-analyzer/nmap/files/nmap-6.25-liblua-ar.patch  |  20 ++
 .../nmap/files/nmap-6.46-uninstaller.patch |  19 ++
 net-analyzer/nmap/files/nmap-7.25-CXXFLAGS.patch   |  11 +
 net-analyzer/nmap/files/nmap-7.25-libpcre.patch|  10 +
 net-analyzer/nmap/files/nmap-7.31-libnl.patch  |  15 ++
 .../nmap/files/nmap-7.80-ac-config-subdirs.patch   |  26 ++
 .../nmap/files/nmap-7.91-no-FORTIFY_SOURCE.patch   |  66 +
 net-analyzer/nmap/files/nmap-7.92-libressl.patch   |  67 +
 .../nmap/files/nmap-7.93-openssl-1.1.patch | 287 +
 .../nmap/files/nmap--netutil-else.patch|  11 +
 net-analyzer/nmap/metadata.xml |  27 ++
 net-analyzer/nmap/nmap-7.92-r2.ebuild  | 143 ++
 net-analyzer/nmap/nmap-7.93.ebuild | 152 +++
 17 files changed, 922 insertions(+)

diff --git a/net-analyzer/nmap/Manifest b/net-analyzer/nmap/Manifest
new file mode 100644
index 000..ba0eb83
--- /dev/null
+++ b/net-analyzer/nmap/Manifest
@@ -0,0 +1,4 @@
+DIST nmap-7.92.tar.bz2 10498200 BLAKE2B 
0f3022e797ffca7d1d3497990c86bb60ac9a80bb93cb4ec7fcfa4f51782cb8d79d4f0aca0fa6119bfd604cfe7b89af3d4223ce13ad3e6c948c021909aebd956b
 SHA512 
7828367f9dc76ff4d1e8c821260e565fb0c3cb6aba0473d24759133a3006cdf2cb087574f0dd7d2ba47a63754ba4f72e0b78cdae1333a58f05c41d428b56ad59
+DIST nmap-7.92.tar.bz2.asc 195 BLAKE2B 
a8052138e58cd8009341a5f3fb3a31f55af9383b9dbb6c7ce858d80541e000b17953c053e9a3a6d86a5551244cf13f181e6e3943095b86335cbb5dae96e20bdd
 SHA512 
300a22ab097bbff67de354de6b22a8e3287f95dd6318fcabd546ba52158e9589b19ede175587c6e31518c47bc118c7dd05db43755def075d810b16945b65e05a
+DIST nmap-7.93.tar.bz2 10823114 BLAKE2B 
e9fa0fe0f219258ab29cf59a98f09142ce1e5e70395f6578d57e644d343ff95764a8208f2fd00a686a14217821adb038a1bb4cdf25f355696e68131773cc1995
 SHA512 
4ec9295e25bd7a215e718c3dbbf09bfe6339b60850f4a8d09b5ad0cbf41a0da8ece0168efc5ca91ba1ecbd83b1d31735d77dacd5f1ec1a9fd212454dd1f0f0fd
+DIST nmap-7.93.tar.bz2.asc 195 BLAKE2B 
0c18200507c8c0901df6f0fa3230330eff72dd5e54f2d862d35a1df26b9ff3b189cebe0b91cdf47c4f87fef523cc6d9c3bcc36a42d8fcc8be7830fc861c64b5f
 SHA512 
9bd8e436a6f7010ba2e3578affc4174fae12e2e7b78e523ceeb94ba44ccd928ac2cf5da52d02a00c4f190f71425671cc817b44a6a2f8d0b42b10d535bb1af3a9

diff --git a/net-analyzer/nmap/files/nls.m4 b/net-analyzer/nmap/files/nls.m4
new file mode 100644
index 000..93df8d3
--- /dev/null
+++ b/net-analyzer/nmap/files/nls.m4
@@ -0,0 +1,32 @@
+# nls.m4 serial 5 (gettext-0.18)
+dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation,
+dnl Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+dnl This file can be used in projects which are not available under
+dnl the GNU General Public License or the GNU Library General Public
+dnl License but which still want to provide support for the GNU gettext
+dnl functionality.
+dnl Please note that the actual code of the GNU gettext library is covered
+dnl by the GNU Library General Public License, and the rest of the GNU
+dnl gettext package is covered by the GNU General Public License.
+dnl They are *not* in the public domain.
+
+dnl Authors:
+dnl   Ulrich Drepper , 1995-2000.
+dnl   Bruno Haible , 2000-2003.
+
+AC_PREREQ([2.50])
+
+AC_DEFUN([AM_NLS],
+[
+  AC_MSG_CHECKING([whether NLS is requested])
+  dnl Default is enabled NLS
+  AC_ARG_ENABLE([nls],
+[  --disable-nls   do not use Native Language Support],
+USE_NLS=$enableval, USE_NLS=yes)
+  AC_MSG_RESULT([$USE_NLS])
+  AC_SUBST([USE_NLS])
+])

diff --git a/net-analyzer/nmap/files/nmap-5.10_beta1-string.patch 
b/net-analyzer/nmap/files/nmap-5.10_beta1-string.patch
new file mode 100644
index 000..df29db3
--- /dev/null
+++ b/net-analyzer/nmap/files/nmap-5.10_beta1-string.patch
@@ -0,0 +1,11 @@
+--- nmap-5.10BETA1/Target.h.org2009-12-08 08:21:59.0 +0100
 nmap-5.10BETA1/Target.h2009-12-08 08:22:02.0 +0100
+@@ -99,6 +99,8 @@
+ 
+ #ifndef NOLUA
+ #include "nse_main.h"
++#else
++#include 
+ #endif
+ 
+ #include "portreasons.h"

diff --git 

[gentoo-commits] repo/proj/libressl:master commit in: dev-lang/python/, dev-lang/python/files/

2022-10-09 Thread Quentin Retornaz
commit: e645f3d5f84b2825e77324bee74bb8d2de3ef350
Author: orbea  riseup  net>
AuthorDate: Sun Oct  9 18:04:52 2022 +
Commit: Quentin Retornaz  retornaz  com>
CommitDate: Sun Oct  9 18:12:14 2022 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=e645f3d5

dev-lang/python: Add 2.7.18_p15-r1

Closes: https://github.com/gentoo/libressl/issues/458

Signed-off-by: orbea  riseup.net>
Signed-off-by: Quentin Retornaz  retornaz.com>

 dev-lang/python/Manifest   |   3 +
 dev-lang/python/files/python-2.7.18-libressl.patch |  15 +
 dev-lang/python/python-2.7.18_p15-r1.ebuild| 313 +
 3 files changed, 331 insertions(+)

diff --git a/dev-lang/python/Manifest b/dev-lang/python/Manifest
index 9a78d10..78fffc0 100644
--- a/dev-lang/python/Manifest
+++ b/dev-lang/python/Manifest
@@ -1,7 +1,10 @@
+DIST Python-2.7.18.tar.xz 12854736 BLAKE2B 
060a621c91dd8e3d321aec99d44c17aa67381998256a1a002d316b38288349884d5960de35c49352d03129ed0bae599e641ec2225898158ebce50a7a2fd74d2c
 SHA512 
a7bb62b51f48ff0b6df0b18f5b0312a523e3110f49c3237936bfe56ed0e26838c0274ff5401bda6fc21bf24337477ccac49e8026c5d651e4b4cafb5eb5086f6c
+DIST Python-2.7.18.tar.xz.asc 833 BLAKE2B 
1d98770e46171971fb4508d238c01d2755281d2f94353314014d9e83e0ec5f0b3e3950ea1fdf5fce9ba6b8f55312355845c2a3fc4291c27ee56fe6215448
 SHA512 
c2a5f5a52f47dec52460ad3275758d4e5de6e7075c3def4353c988d74d563a39b42cae2d5eb24e2a23a6247cef69100f91620b11a49c2359fbf99b203c9cbda8
 DIST Python-3.10.6.tar.xz 19600672 BLAKE2B 
b21398f68e13cf8464077aa2c7f08d9044198cc3d2e2829d12239d420c1c922cbad8427f3e0fae3fe62a4b8ebb7db7eff441266eff82f0c78d7a98a62d8e64c3
 SHA512 
f2bf424bf4f4caa524ee1248b431e8e06d0745c3fc3ba457710d75f3698e653733feb4b059cd124f1de2a9e851c30d847f567aa47abef12898c9dc8a6507b476
 DIST Python-3.10.6.tar.xz.asc 833 BLAKE2B 
ea6546c01a4fbfe3f3e56b2f980da53f0692d9c638534bd25fb96a0f657424f979b6a82a01c77c05ddfded30441b4a0348cc407d5b29290ffc653a508ca32ec8
 SHA512 
9288e2f62f2e8c8208ad176372261545a64e675d737bb616403bcd888bc91177909257632e4cc0b5d688d612bea38a274030ec6989dc7d56c03064e32ad9903e
 DIST Python-3.9.13.tar.xz 19754368 BLAKE2B 
4f583f66c28b791e19cd6d79695fe9eb815fd333542be22aec8bd73d1f4d3f17f2c4e9de198e7b16c1ca6362a613a8a02fb965c7dc7db3e510fd31de15ba2d19
 SHA512 
e9664e7f908092df11236b22465d217531d6f0378e88d889108d19fe77f28f46ffb629b8733f84b41409e255367321893a2b1bd64518930d9d8cae5d1b774d23
 DIST Python-3.9.13.tar.xz.asc 833 BLAKE2B 
db01c01be9d56cd15f9ab4a9e2cfa800faf4ebecb92b01c133865d3b3134bc910258a33b766306c3d01f98e35bbf9c03c7cba697760b7095999cbd63ed6c276c
 SHA512 
9367afe8ec32195adbb64fa32eb9e3881cfdbbb38efcb5e0804a15486232aecbc81ed20a8ffed652f06a881744f3efd2c2df3cc652d70671c94d6668a17a391e
+DIST python-gentoo-patches-2.7.18_p15.tar.xz 34956 BLAKE2B 
d173f276dd9c0ce31004dcc55a0d18e9ce25a47683c2df3c4dd62e967dfbbb35be59a2f08cf20f30a19475a8a2344dd95b17400eafa88b5fdbe9270a12ccbf32
 SHA512 
d9386808265f978808e5c0ffd384cefe54fb0e05aeccfd394167d5227d9cd66e25c8e93c54914762b2cfc3c2dd851b26a7a84d62634c6aa8a0798aacbb7ac25f
 DIST python-gentoo-patches-3.10.6_p2.tar.xz 12040 BLAKE2B 
75c93fab19137a966b3775308bc20142f4d3648bbb9364e82c4eaffae93beda54011192881c52b85d2e2493a06cfe2a90f50675609908c3d5ebdb0103fe41644
 SHA512 
7e451a8a18a62592c2cd7b2db71065b77256960f43e172a0d7856b22b69138dcb1552f53b39bec14585a761cfe729c81613551c1b616fe1ec8d2b59856b11453
 DIST python-gentoo-patches-3.10.6_p3.tar.xz 26712 BLAKE2B 
701a7a4da1a09f71dee8fdf924a45e030b8ae93e469a2789b28b904d2fd6b011589fb940eb0c262e8b19005af523a2f66075d053fb60892d6ebd473159fce718
 SHA512 
ed43ba18735ddf72c434bfe905894d156a144a77f9fb8266378d384e840b376c6220859d8d1af83f304293368bf1dd45881316c1797ba25d618a064daaacab17
 DIST python-gentoo-patches-3.10.6_p4.tar.xz 28612 BLAKE2B 
197ef33c3086cb9efaf09868145826e2889f61d6fb207df8b60ac6cfc4ca637c8a87fd10afa2d8a7a47ae81bcf0ae589085c694523e1ca6f85acdc4e517b7d07
 SHA512 
8bd0aa8f7a775d12914d542dbb04c7b555055228002dd826a815255d4a35392e09c44d560cc5da7df1feae98e2f73e8fbf476e2811ae5269f91120c11cbb6291

diff --git a/dev-lang/python/files/python-2.7.18-libressl.patch 
b/dev-lang/python/files/python-2.7.18-libressl.patch
new file mode 100644
index 000..2f74202
--- /dev/null
+++ b/dev-lang/python/files/python-2.7.18-libressl.patch
@@ -0,0 +1,15 @@
+https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/lang/python/2.7/patches/patch-Modules__hashopenssl_c
+
+Index: Modules/_hashopenssl.c
+--- a/Modules/_hashopenssl.c.orig
 b/Modules/_hashopenssl.c
+@@ -56,7 +56,8 @@
+ #define _OPENSSL_SUPPORTS_SHA2
+ #endif
+ 
+-#if (OPENSSL_VERSION_NUMBER < 0x1010L) || defined(LIBRESSL_VERSION_NUMBER)
++#if (OPENSSL_VERSION_NUMBER < 0x1010L) || \
++(defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 
0x207fL)
+ /* OpenSSL < 1.1.0 */
+ #define EVP_MD_CTX_new EVP_MD_CTX_create
+ #define EVP_MD_CTX_free EVP_MD_CTX_destroy

diff --git a/dev-lang/python/python-2.7.18_p15-r1.ebuild 

[gentoo-commits] repo/proj/libressl:master commit in: dev-lang/python/

2022-10-09 Thread Quentin Retornaz
commit: 67027a60c05f1213b913d7cd767dd517e9a78f30
Author: orbea  riseup  net>
AuthorDate: Sun Oct  9 18:06:09 2022 +
Commit: Quentin Retornaz  retornaz  com>
CommitDate: Sun Oct  9 18:12:14 2022 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=67027a60

dev-lang/python: Remove old version

Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/libressl/pull/461
Signed-off-by: Quentin Retornaz  retornaz.com>

 dev-lang/python/Manifest|   1 -
 dev-lang/python/python-3.9.13_p5.ebuild | 404 
 2 files changed, 405 deletions(-)

diff --git a/dev-lang/python/Manifest b/dev-lang/python/Manifest
index 78fffc0..a89c6ba 100644
--- a/dev-lang/python/Manifest
+++ b/dev-lang/python/Manifest
@@ -9,5 +9,4 @@ DIST python-gentoo-patches-3.10.6_p2.tar.xz 12040 BLAKE2B 
75c93fab19137a966b3775
 DIST python-gentoo-patches-3.10.6_p3.tar.xz 26712 BLAKE2B 
701a7a4da1a09f71dee8fdf924a45e030b8ae93e469a2789b28b904d2fd6b011589fb940eb0c262e8b19005af523a2f66075d053fb60892d6ebd473159fce718
 SHA512 
ed43ba18735ddf72c434bfe905894d156a144a77f9fb8266378d384e840b376c6220859d8d1af83f304293368bf1dd45881316c1797ba25d618a064daaacab17
 DIST python-gentoo-patches-3.10.6_p4.tar.xz 28612 BLAKE2B 
197ef33c3086cb9efaf09868145826e2889f61d6fb207df8b60ac6cfc4ca637c8a87fd10afa2d8a7a47ae81bcf0ae589085c694523e1ca6f85acdc4e517b7d07
 SHA512 
8bd0aa8f7a775d12914d542dbb04c7b555055228002dd826a815255d4a35392e09c44d560cc5da7df1feae98e2f73e8fbf476e2811ae5269f91120c11cbb6291
 DIST python-gentoo-patches-3.9.13_p4.tar.xz 22072 BLAKE2B 
a0e084eff35d075d2255b139d0db114d282cb6c9c0c2ea51a8ecb7f5f1dc8096d6578ae5f804b7583a2b7842152b5723ad802ca816d46813c40aaa756118afc8
 SHA512 
cdf8d43fd5263c4956be234f36c0767215ab2495705d4f2a060b32ecbfbe159e618e31693b0538a1b970f7b27ebe4953063f585930d074dcaf59f2f61486e6b6
-DIST python-gentoo-patches-3.9.13_p5.tar.xz 35660 BLAKE2B 
be3fe3a4db5e94a06c6bcb36eee71fd7e33cf27a4f3a259e5d0bd332b4765e77d5753247ddf5bbc3cbf10647f55e1897c943a7149afc76a9649d634fbfaff682
 SHA512 
7d6f1d215df0e50b1b4837f62c160d3262c6d9a29dad1a3f82590f5f84245defcd9b3de500ec78f01a3308275647b7a5e72a16c7425aec1edb841ba079100e1b
 DIST python-gentoo-patches-3.9.13_p6.tar.xz 37508 BLAKE2B 
6d55aec9ae139cbe6d35b84335174d5fba5784bf52eb665e2d3a27693a2abb843bce1f190c92bfd173359c3782cae06a6b3520932b08aec678332928c5a27277
 SHA512 
1b1dec45d959849bf72b0646329e8cf74301e0f5373d6e2dbefb63d60fdddbe9fc33abda7d2312af8c52feadf3bacd04b627626d876acecc8984d3192a2d029d

diff --git a/dev-lang/python/python-3.9.13_p5.ebuild 
b/dev-lang/python/python-3.9.13_p5.ebuild
deleted file mode 100644
index 1bbe432..000
--- a/dev-lang/python/python-3.9.13_p5.ebuild
+++ /dev/null
@@ -1,404 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-WANT_LIBTOOL="none"
-
-inherit autotools check-reqs flag-o-matic multiprocessing pax-utils
-inherit python-utils-r1 toolchain-funcs verify-sig
-
-MY_PV=${PV/_rc/rc}
-MY_P="Python-${MY_PV%_p*}"
-PYVER=$(ver_cut 1-2)
-PATCHSET="python-gentoo-patches-${MY_PV}"
-
-DESCRIPTION="An interpreted, interactive, object-oriented programming language"
-HOMEPAGE="
-   https://www.python.org/
-   https://github.com/python/cpython/
-"
-SRC_URI="
-   https://www.python.org/ftp/python/${PV%%_*}/${MY_P}.tar.xz
-   https://dev.gentoo.org/~mgorny/dist/python/${PATCHSET}.tar.xz
-   verify-sig? (
-   https://www.python.org/ftp/python/${PV%%_*}/${MY_P}.tar.xz.asc
-   )
-"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="PSF-2"
-SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-IUSE="
-   bluetooth build +ensurepip examples gdbm hardened lto +ncurses pgo
-   +readline +sqlite +ssl test tk +xml
-"
-RESTRICT="!test? ( test )"
-
-# Do not add a dependency on dev-lang/python to this ebuild.
-# If you need to apply a patch which requires python for bootstrapping, please
-# run the bootstrap code on your dev box and include the results in the
-# patchset. See bug 447752.
-
-RDEPEND="
-   app-arch/bzip2:=
-   app-arch/xz-utils:=
-   dev-lang/python-exec[python_targets_python3_9(-)]
-   dev-libs/libffi:=
-   sys-apps/util-linux:=
-   >=sys-libs/zlib-1.1.3:=
-   virtual/libcrypt:=
-   virtual/libintl
-   ensurepip? ( dev-python/ensurepip-wheels )
-   gdbm? ( sys-libs/gdbm:=[berkdb] )
-   ncurses? ( >=sys-libs/ncurses-5.2:= )
-   readline? ( >=sys-libs/readline-4.1:= )
-   sqlite? ( >=dev-db/sqlite-3.3.8:3= )
-   ssl? ( >=dev-libs/openssl-1.1.1:= )
-   tk? (
-   >=dev-lang/tcl-8.0:=
-   >=dev-lang/tk-8.0:=
-   dev-tcltk/blt:=
-   dev-tcltk/tix
-   )
-   xml? ( >=dev-libs/expat-2.1:= )
-"
-# bluetooth requires headers from bluez
-DEPEND="
-   ${RDEPEND}
-   bluetooth? ( net-wireless/bluez )
-   test? ( 

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

2022-10-09 Thread Sam James
commit: b890ebf86f1cbfc2e46aadb2efb272d82bb57c6a
Author: Matoro Mahri  users  noreply  github  
com>
AuthorDate: Sun Oct  9 17:19:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  9 18:02:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b890ebf8

sys-libs/libbacktrace: Keyword 1.0_p20220709 mips, #875803

Signed-off-by: Matoro Mahri  users.noreply.github.com>
Signed-off-by: Sam James  gentoo.org>

 sys-libs/libbacktrace/libbacktrace-1.0_p20220709.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libbacktrace/libbacktrace-1.0_p20220709.ebuild 
b/sys-libs/libbacktrace/libbacktrace-1.0_p20220709.ebuild
index af8565eed742..bcaf60538365 100644
--- a/sys-libs/libbacktrace/libbacktrace-1.0_p20220709.ebuild
+++ b/sys-libs/libbacktrace/libbacktrace-1.0_p20220709.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${COMMITHASH}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2022-10-09 Thread Stephan Hartmann
commit: 1e8098ff475a9a3db44bf6f5d659ea97784f3deb
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Sun Oct  9 16:51:43 2022 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Sun Oct  9 16:51:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e8098ff

www-client/chromium: drop 106.0.5249.61, 106.0.5249.91

Bug: https://bugs.gentoo.org/873817
Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/chromium/Manifest  |2 -
 www-client/chromium/chromium-106.0.5249.61.ebuild | 1189 -
 www-client/chromium/chromium-106.0.5249.91.ebuild | 1189 -
 3 files changed, 2380 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 9124f9a4e521..870d5c2759f2 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,7 +1,5 @@
 DIST chromium-106-patchset-3.tar.xz 6672 BLAKE2B 
4c56702e84c761b5b4e5ea84a3e9bed0c9c81cbf448998c51b149a5f3b745944e8c824384a879798fba284eb96d76ebbc22ce038971daf9a574ea02d52f204b5
 SHA512 
3e58bf2811a6674bbe04ab12c0404faad5e6b17c7a5de213e661a7cc34dd4c3329b8736e3b1ffd43a442eae4ad132ff05b042ef904d451bbe0c9a76554499b61
 DIST chromium-106.0.5249.103.tar.xz 1611232904 BLAKE2B 
8c16faf7b450a9e55e19c607afc7252d6fb013d1735ff1fe8e4d54953fcc3bf7a5a5416ae0bbdf8cb15074841a63ad4485e1ff24fdf557e5b76bafd483f7418d
 SHA512 
a01d34473e2fda00389aceb7a1024573c4346423e7a5de3398508130bf9f2f1aff22c23bbd613cc2bb46f0a907f19887b28decdb9d57bccdb5d3f7a14d1866db
-DIST chromium-106.0.5249.61.tar.xz 1621965008 BLAKE2B 
f15043eeefb898809adf580c6ef9258f9512ec29f9f0688865c226b13a47d6dd8733a51a64c6a0e5ba0b67e5d5b54419e5264401fa4ef96112dcbdfb70c4aa17
 SHA512 
472754e11472d4b6d7545d3dfb784b3ca6ecb951753e6e966b5a2ee18aab35e185872d55bece98a99d4d2c2d1ef38e07a29a4d6989e5a287046108100a799ac1
-DIST chromium-106.0.5249.91.tar.xz 1611228868 BLAKE2B 
75703b23a0538bdae74b2ac42e36e6d13297e3b6aaead6e5a8b97ed8f2cdd2d5883752c6d90f13fd1c2fb68828558f269c0c4f7ece4587de30e2ea8d878a9073
 SHA512 
741e3a3331a7e3f666bdbaa16cc8a1d829d73396bd34cb8f5f030e7704970dd5b5c4e274a1f69d05c1a9cfac148bc7740f56648c53bb20b782e6edd9b248a92c
 DIST chromium-107-patchset-1.tar.xz 5736 BLAKE2B 
581ca307d63635ef91aaa907aeebb8c735be6d6bbfcc3fe064fed7531b8848b5d918e017031ee606ed3bd8f0fc23aa6d2f8af4b36d33483dbeee2b5c8eacac82
 SHA512 
acbfb41c31a510a689cad3b0686e24925b018bd7a2a8f56f74b730dc36d878c266a11b3bb76b131e66f7b859f483ff00e16cbaae1b2b6944010c7396310c03b8
 DIST chromium-107.0.5304.29.tar.xz 1688306728 BLAKE2B 
2e00ce9cdfe41ed20004ccdf11f7d0f5824f1b23ac706e18c3891ff189983815f1ccbd26e1a12862db0688f6bc045fcf49d7694043883a608b182994cd8f2cec
 SHA512 
871c373b44b18167126deef82ec835e33772c27d5c9d89585a1752efdcade8696c3be5d2735999838b13e3ce2e06d431f30f3591e861d1dcd7a80281817851eb
 DIST chromium-108-patchset-2.tar.xz 6480 BLAKE2B 
2a40bb741fdd305b3525b790f82c2b36f6c909680788527a31aa2a11f519ff630aa12ffe7c53553b717f1909978c77e7db07a02a86c8e7d12d63375402802d7a
 SHA512 
3fe182f0f928baaf0f5521efa8763080de765240b5608d5126e84e49335eb5edc788ab406aa71f5fa97c371afe1f6808e93e2e082c7f65169b5f157ff6c3e00b

diff --git a/www-client/chromium/chromium-106.0.5249.61.ebuild 
b/www-client/chromium/chromium-106.0.5249.61.ebuild
deleted file mode 100644
index 37a1fc99c8f8..
--- a/www-client/chromium/chromium-106.0.5249.61.ebuild
+++ /dev/null
@@ -1,1189 +0,0 @@
-# Copyright 2009-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE="xml(+)"
-LLVM_MAX_SLOT=14
-
-CHROMIUM_LANGS="af am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr 
gu he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
-   sv sw ta te th tr uk ur vi zh-CN zh-TW"
-
-VIRTUALX_REQUIRED="pgo"
-
-inherit check-reqs chromium-2 desktop flag-o-matic llvm ninja-utils pax-utils 
python-any-r1 readme.gentoo-r1 toolchain-funcs virtualx xdg-utils
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="https://chromium.org/;
-PATCHSET="3"
-PATCHSET_NAME="chromium-$(ver_cut 1)-patchset-${PATCHSET}"
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
-   
https://github.com/stha09/chromium-patches/releases/download/${PATCHSET_NAME}/${PATCHSET_NAME}.tar.xz
-   pgo? ( https://blackhole.sk/~kabel/src/chromium-profiler-0.1.tar )"
-
-LICENSE="BSD"
-SLOT="0/stable"
-KEYWORDS="amd64 arm64"
-IUSE="+X component-build cups cpu_flags_arm_neon debug gtk4 +hangouts headless 
+js-type-check kerberos libcxx lto +official pgo pic +proprietary-codecs 
pulseaudio screencast selinux +suid +system-ffmpeg +system-harfbuzz +system-icu 
+system-png vaapi wayland widevine"
-REQUIRED_USE="
-   component-build? ( !suid !libcxx )
-   screencast? ( wayland )
-   !headless? ( || ( X wayland ) )
-   pgo? ( X !wayland )
-"
-
-COMMON_X_DEPEND="
-   x11-libs/libXcomposite:=
-   

[gentoo-commits] repo/gentoo:master commit in: gui-wm/sway/

2022-10-09 Thread Matthew Thode
commit: 4f75242713e551d771760cf3d736f8db8f46c62d
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sun Oct  9 07:19:14 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Oct  9 16:43:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f752427

gui-wm/sway: update libpcre dependency

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Matthew Thode  gentoo.org>

 gui-wm/sway/sway-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-wm/sway/sway-.ebuild b/gui-wm/sway/sway-.ebuild
index 8b8ee2335dc1..a84e8282f192 100644
--- a/gui-wm/sway/sway-.ebuild
+++ b/gui-wm/sway/sway-.ebuild
@@ -26,7 +26,7 @@ DEPEND="
>=dev-libs/json-c-0.13:0=
>=dev-libs/libinput-1.6.0:0=
sys-auth/seatd:=
-   dev-libs/libpcre
+   dev-libs/libpcre2
>=dev-libs/wayland-1.20.0
x11-libs/cairo
x11-libs/libxkbcommon



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

2022-10-09 Thread Matthew Thode
commit: 4759bf92eea1d82c5b0bcae8fef400fb7b2ed51f
Author: Uzi Erdenebileg  gmail  com>
AuthorDate: Thu Oct  6 09:51:26 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Oct  9 16:44:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4759bf92

www-apps/novnc: Update HOMEPAGE

Signed-off-by: Ulziibuyan Erdenebileg  gmail.com>

Bug: https://bugs.gentoo.org/876292
Closes: https://bugs.gentoo.org/876292
Closes: https://github.com/gentoo/gentoo/pull/27659
Signed-off-by: Matthew Thode  gentoo.org>

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

diff --git a/www-apps/novnc/novnc-.ebuild b/www-apps/novnc/novnc-.ebuild
index 6b01b8479bea..6ca0e8b5ed54 100644
--- a/www-apps/novnc/novnc-.ebuild
+++ b/www-apps/novnc/novnc-.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{7..10} )
 inherit distutils-r1
 
 DESCRIPTION="noVNC is a VNC client implemented using HTML5 technologies"
-HOMEPAGE="https://kanaka.github.com/noVNC/;
+HOMEPAGE="https://kanaka.github.io/noVNC/;
 
 if [[ ${PV} == * ]] ; then
inherit git-r3



  1   2   3   >