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

2023-12-19 Thread Sam James
commit: 82f42ae114edf7ee0b800dd26c70ca68ca59859f
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 07:42:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 07:43:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f42ae1

profiles/base: fix sci-libs/gloo ssl mask

The older version still needs openssl-1.1.x.

Bug: https://bugs.gentoo.org/913685
Fixes: 6ee516c6694ed584f255192125ce1602702162db
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index c321de1dc28c..cbda9d1d110a 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -6,6 +6,11 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Sam James  (2023-12-20)
+# Needs  (2023-12-18)
 # libgrust build is broken for multilib
 # https://gcc.gnu.org/PR113056



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

2023-12-19 Thread Florian Schmaus
commit: ef10f91888cf81071ccdfc6fbedaa27be33ef29f
Author: Florian Schmaus  gentoo  org>
AuthorDate: Wed Dec 20 07:41:25 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Wed Dec 20 07:43:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef10f918

sys-kernel/dracut: add patch to fix resume with systemd 255

Apply the patch from https://github.com/dracutdevs/dracut/pull/2527 to
include the new systemd-hibernate-resume service file of systemd 255 in
the initrd image.

Signed-off-by: Florian Schmaus  gentoo.org>

 sys-kernel/dracut/dracut-059-r7.ebuild | 162 +
 sys-kernel/dracut/dracut-060_pre20231030-r2.ebuild | 155 
 ...tall-new-systemd-hibernate-resume.service.patch |  21 +++
 3 files changed, 338 insertions(+)

diff --git a/sys-kernel/dracut/dracut-059-r7.ebuild 
b/sys-kernel/dracut/dracut-059-r7.ebuild
new file mode 100644
index ..4f5443dcf287
--- /dev/null
+++ b/sys-kernel/dracut/dracut-059-r7.ebuild
@@ -0,0 +1,162 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1 optfeature systemd toolchain-funcs
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/dracutdevs/dracut;
+else
+   if [[ "${PV}" != *_rc* ]]; then
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips 
~ppc ~ppc64 ~riscv ~sparc ~x86"
+   fi
+   
SRC_URI="https://github.com/dracutdevs/dracut/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+DESCRIPTION="Generic initramfs generation tool"
+HOMEPAGE="https://github.com/dracutdevs/dracut/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="selinux test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   app-arch/cpio
+   >=app-shells/bash-4.0:0
+   sys-apps/coreutils[xattr(-)]
+   >=sys-apps/kmod-23[tools]
+   || (
+   >=sys-apps/sysvinit-2.87-r3
+   sys-apps/openrc[sysv-utils(-),selinux?]
+   sys-apps/systemd[sysv-utils]
+   sys-apps/s6-linux-init[sysv-utils(-)]
+   )
+   >=sys-apps/util-linux-2.21
+   virtual/pkgconfig
+   virtual/udev
+
+   elibc_musl? ( sys-libs/fts-standalone )
+   selinux? (
+   sec-policy/selinux-dracut
+   sys-libs/libselinux
+   sys-libs/libsepol
+   )
+"
+DEPEND="
+   >=sys-apps/kmod-23
+   elibc_musl? ( sys-libs/fts-standalone )
+"
+
+BDEPEND="
+   app-text/asciidoc
+   app-text/docbook-xml-dtd:4.5
+   >=app-text/docbook-xsl-stylesheets-1.75.2
+   >=dev-libs/libxslt-1.1.26
+   virtual/pkgconfig
+"
+
+QA_MULTILIB_PATHS="usr/lib/dracut/.*"
+
+PATCHES=(
+   "${FILESDIR}"/gentoo-ldconfig-paths-r1.patch
+   "${FILESDIR}"/gentoo-network-r1.patch
+   "${FILESDIR}"/059-kernel-install-uki.patch
+   "${FILESDIR}"/059-uefi-split-usr.patch
+   "${FILESDIR}"/059-uki-systemd-254.patch
+   "${FILESDIR}"/059-gawk.patch
+   "${FILESDIR}"/dracut-059-dmsquash-live.patch
+   "${FILESDIR}"/059-systemd-pcrphase.patch
+   "${FILESDIR}"/059-systemd-executor.patch
+   
"${FILESDIR}"/dracut-059-install-new-systemd-hibernate-resume.service.patch
+)
+
+src_configure() {
+   local myconf=(
+   --prefix="${EPREFIX}/usr"
+   --sysconfdir="${EPREFIX}/etc"
+   --bashcompletiondir="$(get_bashcompdir)"
+   --systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   )
+
+   tc-export CC PKG_CONFIG
+
+   echo ./configure "${myconf[@]}"
+   ./configure "${myconf[@]}" || die
+
+   if [[ ${PV} !=  && ! -f dracut-version.sh ]] ; then
+   # Source tarball from github doesn't include this file
+   echo "DRACUT_VERSION=${PV}" > dracut-version.sh || die
+   fi
+}
+
+src_test() {
+   if [[ ${EUID} != 0 ]]; then
+   # Tests need root privileges, bug #298014
+   ewarn "Skipping tests: Not running as root."
+   elif [[ ! -w /dev/kvm ]]; then
+   ewarn "Skipping tests: Unable to access /dev/kvm."
+   else
+   emake -C test check
+   fi
+}
+
+src_install() {
+   local DOCS=(
+   AUTHORS
+   NEWS.md
+   README.md
+   docs/README.cross
+   docs/README.generic
+   docs/README.kernel
+   docs/SECURITY.md
+   )
+
+   default
+
+   docinto html
+   dodoc dracut.html
+}
+
+pkg_postinst() {
+   optfeature "Networking support" net-misc/networkmanager
+   optfeature "Legacy networking support" net-misc/curl 
"net-misc/dhcp[client]" \
+   sys-apps/iproute2 "net-misc/iputils[arping]"
+   optfeature "Scan for Btrfs on block devices"  sys-fs/btrfs-progs
+   optfeature "Load kernel modules and drop this privilege for real init" \
+   sys-libs/libcap
+

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

2023-12-19 Thread Sam James
commit: 0b22d07f89b16ac3400e45077702ac4c4492e5a4
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 07:12:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 07:14:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b22d07f

net-misc/openssh: disable problematic -fzero-call-used-regs=*

 --with-hardening adds the following in addition to flags we
 already set in our toolchain:
 * -ftrapv (which is broken with GCC anyway),
 * -ftrivial-auto-var-init=zero (which is nice, but not the end of
the world to not have)
 * -fzero-call-used-regs=used (history of miscompilations with
Clang (bug #872548), ICEs on m68k (bug #920350, gcc PR113086,
gcc PR104820, gcc PR104817, gcc PR110934)).

 Furthermore, OSSH_CHECK_CFLAG_COMPILE does not use AC_CACHE_CHECK,
 so we cannot just disable -fzero-call-used-regs=used.

 Therefore, just pass --without-hardening, given it doesn't negate
 our already hardened toolchain defaults, and avoids adding flags
 which are known-broken in both Clang and GCC and haven't been
 proven reliable.

Bug: https://bugs.gentoo.org/872548
Bug: https://bugs.gentoo.org/920350
Bug: https://bugs.gentoo.org/920292
Bug: https://gcc.gnu.org/PR113086
Bug: https://gcc.gnu.org/PR104820
Bug: https://gcc.gnu.org/PR104817
Bug: https://gcc.gnu.org/PR110934
Signed-off-by: Sam James  gentoo.org>

 net-misc/openssh/openssh-9.6_p1-r1.ebuild | 396 ++
 1 file changed, 396 insertions(+)

diff --git a/net-misc/openssh/openssh-9.6_p1-r1.ebuild 
b/net-misc/openssh/openssh-9.6_p1-r1.ebuild
new file mode 100644
index ..84130f1d6514
--- /dev/null
+++ b/net-misc/openssh/openssh-9.6_p1-r1.ebuild
@@ -0,0 +1,396 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/openssh.org.asc
+inherit user-info flag-o-matic autotools pam systemd toolchain-funcs verify-sig
+
+# Make it more portable between straight releases
+# and _p? releases.
+PARCH=${P/_}
+
+DESCRIPTION="Port of OpenBSD's free SSH release"
+HOMEPAGE="https://www.openssh.com/;
+SRC_URI="
+   mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
+   verify-sig? ( mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz.asc )
+"
+S="${WORKDIR}/${PARCH}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+# Probably want to drop ssl defaulting to on in a future version.
+IUSE="abi_mips_n32 audit debug kerberos ldns libedit livecd pam +pie 
security-key selinux +ssl static test X xmss"
+
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+   ldns? ( ssl )
+   pie? ( !static )
+   static? ( !kerberos !pam )
+   xmss? ( ssl  )
+   test? ( ssl )
+"
+
+# tests currently fail with XMSS
+REQUIRED_USE+="test? ( !xmss )"
+
+LIB_DEPEND="
+   audit? ( sys-process/audit[static-libs(+)] )
+   ldns? (
+   net-libs/ldns[static-libs(+)]
+   net-libs/ldns[ecdsa(+),ssl(+)]
+   )
+   libedit? ( dev-libs/libedit:=[static-libs(+)] )
+   security-key? ( >=dev-libs/libfido2-1.5.0:=[static-libs(+)] )
+   selinux? ( >=sys-libs/libselinux-1.28[static-libs(+)] )
+   ssl? ( >=dev-libs/openssl-1.1.1l-r1:0=[static-libs(+)] )
+   virtual/libcrypt:=[static-libs(+)]
+   >=sys-libs/zlib-1.2.3:=[static-libs(+)]
+"
+RDEPEND="
+   acct-group/sshd
+   acct-user/sshd
+   !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+   pam? ( sys-libs/pam )
+   kerberos? ( virtual/krb5 )
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/os-headers
+   kernel_linux? ( !prefix-guest? ( >=sys-kernel/linux-headers-5.1 ) )
+   static? ( ${LIB_DEPEND} )
+"
+RDEPEND="
+   ${RDEPEND}
+   !net-misc/openssh-contrib
+   pam? ( >=sys-auth/pambase-20081028 )
+   !prefix? ( sys-apps/shadow )
+   X? ( x11-apps/xauth )
+"
+# Weird dep construct for newer gcc-config for bug #872416
+BDEPEND="
+   sys-devel/autoconf
+   virtual/pkgconfig
+   || (
+   >=sys-devel/gcc-config-2.6
+   >=sys-devel/clang-toolchain-symlinks-14-r1:14
+   >=sys-devel/clang-toolchain-symlinks-15-r1:15
+   >=sys-devel/clang-toolchain-symlinks-16-r1:*
+   )
+   verify-sig? ( sec-keys/openpgp-keys-openssh )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-9.3_p1-disable-conch-interop-tests.patch"
+   "${FILESDIR}/${PN}-9.3_p1-fix-putty-tests.patch"
+   
"${FILESDIR}/${PN}-9.3_p1-deny-shmget-shmat-shmdt-in-preauth-privsep-child.patch"
+)
+
+pkg_pretend() {
+   local i enabled_eol_flags disabled_eol_flags
+   for i in hpn sctp X509; do
+   if has_version "net-misc/openssh[${i}]"; then
+   enabled_eol_flags+="${i},"
+   disabled_eol_flags+="-${i},"

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/omniauth/

2023-12-19 Thread Hans de Graaff
commit: e0bae4685597a6fd82001ecfe10b580980911e0f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 20 07:09:27 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 20 07:09:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0bae468

dev-ruby/omniauth: add 2.1.2

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/omniauth/Manifest  |  1 +
 dev-ruby/omniauth/omniauth-2.1.2.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-ruby/omniauth/Manifest b/dev-ruby/omniauth/Manifest
index 048653b8c667..a06ad6dd5df9 100644
--- a/dev-ruby/omniauth/Manifest
+++ b/dev-ruby/omniauth/Manifest
@@ -1 +1,2 @@
 DIST omniauth-2.1.1.tar.gz 31414 BLAKE2B 
180ee40499a61e8b6360dc4c462ca10933dc7bac976f76dd8c9579e73da6618ffae71ed532fab024f0eb65c3830db1e52f866c40b6e160e65c8fa403c7c1ab37
 SHA512 
e86fbd3c1f239b4950f17fdfe4ebd97a9a135831b63892dd009bae97f4372b3a6fa2452233e414c6097c3b835ee4e75821e795599da9613affdaf163d31964a3
+DIST omniauth-2.1.2.tar.gz 31631 BLAKE2B 
73faa82db781c3980eae55f3fa8a099d3ec0769326201f51f57840566a3b2da2331bdaaddd4ef17d957e389ea8863fc7bfdc11f0278753c27f3a7eabc01ec138
 SHA512 
bd0c65af815502f3df2dbb104ede35de093c6cc6f25285e9bbcdd58df3d31ac6c05d410888a40aca86a00b17a4851856d158593b06415e8b69ff426f171b9857

diff --git a/dev-ruby/omniauth/omniauth-2.1.2.ebuild 
b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
new file mode 100644
index ..ebf0636a87e2
--- /dev/null
+++ b/dev-ruby/omniauth/omniauth-2.1.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A generalized Rack framework for multiple-provider authentication"
+HOMEPAGE="https://github.com/omniauth/omniauth;
+SRC_URI="https://github.com/omniauth/omniauth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="~amd64"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-2.2.3
+   dev-ruby/rack-protection
+   >=dev-ruby/hashie-3.4.6:*"
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/rack-test dev-ruby/rack:2.2 )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' \
+   Rakefile ${PN}.gemspec || die "sed failed"
+   sed -e '/RUBY_VERSION/,/^end/ s:^:#: ; /freeze/ s:^:#:' \
+   -e '2igem "rack", "<3"' \
+   -e '/simplecov/,/^end/ s:^:#:' \
+   -i spec/helper.rb || die "sed failed"
+   # maruku fails, resorting to default markdown implementation
+   sed -i -e '/maruku/d' .yardopts || die "sed failed"
+
+   sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   yard || die "yard failed"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/recog/

2023-12-19 Thread Hans de Graaff
commit: a1df6479dd9f4c65ab9ef40a0576a00614070510
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 20 07:13:27 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 20 07:13:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1df6479

dev-ruby/recog: add 3.1.3

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/recog/Manifest   |  1 +
 dev-ruby/recog/recog-3.1.3.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ruby/recog/Manifest b/dev-ruby/recog/Manifest
index 0ce842a34fdd..5bdbe67c6238 100644
--- a/dev-ruby/recog/Manifest
+++ b/dev-ruby/recog/Manifest
@@ -1,3 +1,4 @@
 DIST recog-2.3.23.gem 392704 BLAKE2B 
6b7ccfa2921fb7d643531c66970e757a01478b3990bbb2d05687a5364ed8b57317d16d0b116c2175cf0e667b12ea7a978c947b73d04db16fbd1a9db651ba4abf
 SHA512 
34cb222dbc25f5da0581cb85aa92a3e6fa67b9af9d0b7b99cb3e358b1be5d71a25f582a669a06f4cadd4b6ac464c7f3d2b3856c24d5ecea0d1d6027758905774
 DIST recog-3.1.1.gem 374272 BLAKE2B 
119c2f3cfcb81896ee9151a3504b1c3a451e7ef0bf2ecb4c018c2a1cae85c05737a47fe755ddbc7dd67778deefc341b113659095dc0095a2bf720625ad5f497a
 SHA512 
8110972a3942befac8be154ff83bf22d703ea21bbae60875c512d5e1c668df7dbf4acb00e2e6bc3cd2f9e163352ead24f3ffc80201c5cf376971560de233a6b5
 DIST recog-3.1.2.gem 376320 BLAKE2B 
3f066b735ca683aba72f3b877f91dade7aa356b07ca4ea6519283180e9b2a7a2dfa51410a8d7f673efeecce4a217c37f458f82ce3507213d149e141eb943dd82
 SHA512 
d705607064001c039221376b2912ab41ac90f9f2bd93459eedfe7a988f78687e63225d0d9c551bd7a19954eee88d7b95df893aca9bda8ef1e113d8840e1472d3
+DIST recog-3.1.3.gem 375808 BLAKE2B 
764b099fef0591d39155886683bc70b7a8b50907fa497c5a8ce63e74daf90b2ff202960b21915a85d823c1c7b56a7f890e386cb3884169151020f770612f2712
 SHA512 
1fbbeb35b1a57c66ff4a6f5b85b3165d23341b93f66461a90c3a353a8d4d4b5b8023043aecc6380994640ba1b0804af5c8cb24e896c5b25b634c01147213620f

diff --git a/dev-ruby/recog/recog-3.1.3.ebuild 
b/dev-ruby/recog/recog-3.1.3.ebuild
new file mode 100644
index ..5c67d5b524f1
--- /dev/null
+++ b/dev-ruby/recog/recog-3.1.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="recog"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Pattern recognition for hosts, services, and content"
+HOMEPAGE="https://github.com/rapid7/recog;
+
+LICENSE="BSD-2"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/nokogiri"
+
+ruby_add_bdepend "test? (
+   dev-ruby/regexp_parser
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/

2023-12-19 Thread Hans de Graaff
commit: 12c4f9abab5aac876ae5d5bc52653e6d048f2b41
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 20 07:03:05 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 20 07:03:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c4f9ab

dev-ruby/net-ssh: add 7.2.1

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/net-ssh/Manifest |  1 +
 dev-ruby/net-ssh/net-ssh-7.2.1.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest
index d1e65d213f31..f36b1facab2a 100644
--- a/dev-ruby/net-ssh/Manifest
+++ b/dev-ruby/net-ssh/Manifest
@@ -1,3 +1,4 @@
 DIST net-ssh-git-7.0.1.tgz 227016 BLAKE2B 
98cdbad0c8c52d44f3d4e288de7de0389680c3f77d5cbd33e4a142d1f09881910f2dc74df01ecfed755e2e0ab37440ee19cf436b8aa7c49a3859bf07b3844b15
 SHA512 
3e41537b3b7e34f043c768959c382f72a630bf3ac430bbbd743323d9b0eade6c7b94f8948418b7f3e1aa2422fcb87829387aaa01e1e384ed297e2397cee33feb
 DIST net-ssh-git-7.1.0.tgz 229217 BLAKE2B 
ab3c46d3d8831335495ae72dc60f2659109b66566f04117a16e4fd41085203b6a2d333e65ffcda4e390c96a2b808c68baeb168be1a2e23d4c797ad63b5af93f9
 SHA512 
723f487e77526a7acba8a9c8f09dd85c8c0bb21577d148f6c4280c79d603d3d364e29fb55b2b282064b5c108465efb2b1da061a2ba5872d575b0be264f493745
 DIST net-ssh-git-7.2.0.tgz 232852 BLAKE2B 
e1f9910911cc143c1a621d23f272b123509c4f3ede6498197715260e8d89297a8fed9905a0e73436f7ba37159a7b698ba7fd806d44b8b9ea52271f21b7735785
 SHA512 
b7dd7dc2543d650ba95627c16cac02294f25cc637fcd607f5cc495d51998df958f42cda021708946c9935e1b0da41af359010906340bf96981ff839f6e3278cb
+DIST net-ssh-git-7.2.1.tgz 28 BLAKE2B 
14696b3c5de24219b0e5d5ad345aa46a1576183f4836ccdaf1d5feb78cb932232da1890c55d8c39dbf1d47b1fc0c19acf53eedd1f87bf8acb0d62ae10045e828
 SHA512 
9b13c33ed76a9ac346c610e8eb04fba5b327c9f79d2a28ca7d2c9b6fa94d3979f68b43f3fd2b83eb2ea0e3ada5e200373848b5f7abdee7922d77aa30d148b88b

diff --git a/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild 
b/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild
new file mode 100644
index ..fe96307e4440
--- /dev/null
+++ b/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.md THANKS.txt"
+RUBY_FAKEGEM_EXTRAINSTALL="support"
+
+RUBY_FAKEGEM_GEMSPEC="net-ssh.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Non-interactive SSH processing in pure Ruby"
+HOMEPAGE="https://github.com/net-ssh/net-ssh;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
net-ssh-git-${PV}.tgz"
+
+LICENSE="GPL-2"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="chacha20 ed25519 test"
+RESTRICT="!test? ( test )"
+
+ruby_add_rdepend "
+   virtual/ruby-ssl
+   chacha20? ( dev-ruby/rbnacl )
+   ed25519? ( >=dev-ruby/ed25519-1.2:1 dev-ruby/x25519 
dev-ruby/bcrypt_pbkdf:1 )
+"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )"
+
+all_ruby_prepare() {
+   # Avoid bundler dependency
+   sed -i -e '/\(bundler\|:release\)/ s:^:#:' Rakefile || die
+
+   sed -e "s:require_relative ':require './:" \
+   -e 's/git ls-files -z/find -print0/' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+src_test() {
+   # prevent tests from trying to connect to ssh-agent socket and failing
+   unset SSH_AUTH_SOCK
+   if ! use ed25519; then
+   export NET_SSH_NO_ED25519=true
+   fi
+   ruby-ng_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/

2023-12-19 Thread Hans de Graaff
commit: 95241615729a20500fadd90aa0971938f640cc9c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Dec 20 07:05:15 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Dec 20 07:05:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95241615

dev-ruby/net-ssh: drop 7.0.1

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/net-ssh/Manifest |  1 -
 dev-ruby/net-ssh/net-ssh-7.0.1.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest
index f36b1facab2a..1087c37e8fb1 100644
--- a/dev-ruby/net-ssh/Manifest
+++ b/dev-ruby/net-ssh/Manifest
@@ -1,4 +1,3 @@
-DIST net-ssh-git-7.0.1.tgz 227016 BLAKE2B 
98cdbad0c8c52d44f3d4e288de7de0389680c3f77d5cbd33e4a142d1f09881910f2dc74df01ecfed755e2e0ab37440ee19cf436b8aa7c49a3859bf07b3844b15
 SHA512 
3e41537b3b7e34f043c768959c382f72a630bf3ac430bbbd743323d9b0eade6c7b94f8948418b7f3e1aa2422fcb87829387aaa01e1e384ed297e2397cee33feb
 DIST net-ssh-git-7.1.0.tgz 229217 BLAKE2B 
ab3c46d3d8831335495ae72dc60f2659109b66566f04117a16e4fd41085203b6a2d333e65ffcda4e390c96a2b808c68baeb168be1a2e23d4c797ad63b5af93f9
 SHA512 
723f487e77526a7acba8a9c8f09dd85c8c0bb21577d148f6c4280c79d603d3d364e29fb55b2b282064b5c108465efb2b1da061a2ba5872d575b0be264f493745
 DIST net-ssh-git-7.2.0.tgz 232852 BLAKE2B 
e1f9910911cc143c1a621d23f272b123509c4f3ede6498197715260e8d89297a8fed9905a0e73436f7ba37159a7b698ba7fd806d44b8b9ea52271f21b7735785
 SHA512 
b7dd7dc2543d650ba95627c16cac02294f25cc637fcd607f5cc495d51998df958f42cda021708946c9935e1b0da41af359010906340bf96981ff839f6e3278cb
 DIST net-ssh-git-7.2.1.tgz 28 BLAKE2B 
14696b3c5de24219b0e5d5ad345aa46a1576183f4836ccdaf1d5feb78cb932232da1890c55d8c39dbf1d47b1fc0c19acf53eedd1f87bf8acb0d62ae10045e828
 SHA512 
9b13c33ed76a9ac346c610e8eb04fba5b327c9f79d2a28ca7d2c9b6fa94d3979f68b43f3fd2b83eb2ea0e3ada5e200373848b5f7abdee7922d77aa30d148b88b

diff --git a/dev-ruby/net-ssh/net-ssh-7.0.1.ebuild 
b/dev-ruby/net-ssh/net-ssh-7.0.1.ebuild
deleted file mode 100644
index d5c87deb7de9..
--- a/dev-ruby/net-ssh/net-ssh-7.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.md THANKS.txt"
-RUBY_FAKEGEM_EXTRAINSTALL="support"
-
-RUBY_FAKEGEM_GEMSPEC="net-ssh.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Non-interactive SSH processing in pure Ruby"
-HOMEPAGE="https://github.com/net-ssh/net-ssh;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
net-ssh-git-${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
-IUSE="ed25519 test"
-RESTRICT="!test? ( test )"
-
-ruby_add_rdepend "virtual/ruby-ssl ed25519? ( >=dev-ruby/ed25519-1.2:1 
dev-ruby/x25519 dev-ruby/bcrypt_pbkdf:1 )"
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )"
-
-all_ruby_prepare() {
-   # Avoid bundler dependency
-   sed -i -e '/\(bundler\|:release\)/ s:^:#:' Rakefile || die
-
-   sed -e "s:require_relative ':require './:" \
-   -e 's/git ls-files -z/find -print0/' \
-   -i ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-src_test() {
-   # prevent tests from trying to connect to ssh-agent socket and failing
-   unset SSH_AUTH_SOCK
-   if ! use ed25519; then
-   export NET_SSH_NO_ED25519=true
-   fi
-   ruby-ng_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Apache-Reload/

2023-12-19 Thread Sam James
commit: 064c042ebddf7993d75739489e968fe4c64ef94d
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 06:44:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 06:44:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=064c042e

dev-perl/Apache-Reload: add dev-perl/HTML-Parser test dep

It skips tests w/o this.

Bug: https://bugs.gentoo.org/914405
Closes: https://bugs.gentoo.org/920348
Signed-off-by: Sam James  gentoo.org>

 dev-perl/Apache-Reload/Apache-Reload-0.140.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Apache-Reload/Apache-Reload-0.140.0.ebuild 
b/dev-perl/Apache-Reload/Apache-Reload-0.140.0.ebuild
index 21093e610c8e..408af010d6f4 100644
--- a/dev-perl/Apache-Reload/Apache-Reload-0.140.0.ebuild
+++ b/dev-perl/Apache-Reload/Apache-Reload-0.140.0.ebuild
@@ -14,8 +14,10 @@ LICENSE="Apache-2.0"
 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="www-apache/mod_perl"
-BDEPEND="${RDEPEND}
+BDEPEND="
+   ${RDEPEND}
dev-perl/Apache-Test
+   test? ( dev-perl/HTML-Parser )
 "
 
 src_test() {



[gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/

2023-12-19 Thread Arthur Zamarin
commit: 155eeb39656c932d99757a2ab9aae8af6c75befd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155eeb39

net-p2p/amule: Stabilize 2.3.3-r2 x86, #920236

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-p2p/amule/amule-2.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/amule/amule-2.3.3-r2.ebuild 
b/net-p2p/amule/amule-2.3.3-r2.ebuild
index f3b75ec1a21c..94a3f4abbe07 100644
--- a/net-p2p/amule/amule-2.3.3-r2.ebuild
+++ b/net-p2p/amule/amule-2.3.3-r2.ebuild
@@ -13,7 +13,7 @@ else
MY_P="${PN/m/M}-${PV}"
SRC_URI="https://download.sourceforge.net/${PN}/${MY_P}.tar.xz;
S="${WORKDIR}/${MY_P}"
-   KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 DESCRIPTION="aMule, the all-platform eMule p2p client"



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

2023-12-19 Thread Arthur Zamarin
commit: 7c63c8f7058c688b33ba1f33699819c7429febb7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:52 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c63c8f7

media-video/subtitlecomposer: Stabilize 0.8.0 x86, #920342

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild 
b/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
index 8690e51ac51b..68d991328aa7 100644
--- a/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
+++ b/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${KDE_BUILD_TYPE} = release ]]; then
PATCHSET="${PN}-0.7.1-patchset-1"
SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz
https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}.tar.xz;
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 LICENSE="GPL-2"



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

2023-12-19 Thread Arthur Zamarin
commit: 64184b5b9525a0f670f63de17c7d6f6e80ba3089
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64184b5b

net-misc/putty: Stabilize 0.80 ppc, #920340

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/net-misc/putty/putty-0.80.ebuild b/net-misc/putty/putty-0.80.ebuild
index 0e725d8e762b..7038ed53beae 100644
--- a/net-misc/putty/putty-0.80.ebuild
+++ b/net-misc/putty/putty-0.80.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git;
 else
SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ppc64 sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
 fi
 LICENSE="MIT"
 



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

2023-12-19 Thread Arthur Zamarin
commit: 6d00e04b154f82f0f5ba3b5c04d46112a9279fb3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:52 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d00e04b

dev-libs/libical: Stabilize 3.0.17 x86, #920341

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index e7b7b31cee8f..a94709642f56 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Arthur Zamarin
commit: 2e5212e022461a05d1494b577b967fa2399c051a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e5212e0

net-misc/putty: Stabilize 0.80 x86, #920340

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/net-misc/putty/putty-0.80.ebuild b/net-misc/putty/putty-0.80.ebuild
index 7038ed53beae..fe26145e4df8 100644
--- a/net-misc/putty/putty-0.80.ebuild
+++ b/net-misc/putty/putty-0.80.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git;
 else
SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
 fi
 LICENSE="MIT"
 



[gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/

2023-12-19 Thread Arthur Zamarin
commit: c63d6ee3979d82311981db4e1cd9a6aaed4b5168
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c63d6ee3

net-p2p/amule: Stabilize 2.3.3-r2 ppc, #920236

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-p2p/amule/amule-2.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/amule/amule-2.3.3-r2.ebuild 
b/net-p2p/amule/amule-2.3.3-r2.ebuild
index b84556763f9a..bb3c5f6bba0b 100644
--- a/net-p2p/amule/amule-2.3.3-r2.ebuild
+++ b/net-p2p/amule/amule-2.3.3-r2.ebuild
@@ -13,7 +13,7 @@ else
MY_P="${PN/m/M}-${PV}"
SRC_URI="https://download.sourceforge.net/${PN}/${MY_P}.tar.xz;
S="${WORKDIR}/${MY_P}"
-   KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~mips ppc ppc64 ~riscv ~sparc x86"
 fi
 
 DESCRIPTION="aMule, the all-platform eMule p2p client"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/ibm-powerpc-utils/

2023-12-19 Thread Arthur Zamarin
commit: 9c8226649fcda70c98e197a51907678a2a71b3e0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c822664

sys-apps/ibm-powerpc-utils: Stabilize 1.3.10-r1 ppc, #920337

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild 
b/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild
index cd187659e168..5e7ecd9231cc 100644
--- a/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild
+++ b/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${P//ibm-}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~ppc ppc64"
+KEYWORDS="ppc ppc64"
 IUSE="+rtas"
 
 RDEPEND="



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

2023-12-19 Thread Arthur Zamarin
commit: 0f2a3946dfb935eeeb55b93521270413ef55b8f1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2a3946

dev-libs/libical: Stabilize 3.0.17 ppc, #920341

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index f00c4ee44d15..e7b7b31cee8f 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Arthur Zamarin
commit: 51208c78ce136e759fcb9e12bb599af7dfabfeae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51208c78

sys-libs/librtas: Stabilize 2.0.3 ppc, #920338

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/librtas/librtas-2.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/librtas/librtas-2.0.3.ebuild 
b/sys-libs/librtas/librtas-2.0.3.ebuild
index 265a70a7637f..0e6e2879eed3 100644
--- a/sys-libs/librtas/librtas-2.0.3.ebuild
+++ b/sys-libs/librtas/librtas-2.0.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/ibm-power-utilities/${PN}/archive/v${PV}.tar.gz -> $
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~ppc ppc64 ~ppc64-linux"
+KEYWORDS="ppc ppc64 ~ppc64-linux"
 IUSE="static-libs"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/

2023-12-19 Thread Arthur Zamarin
commit: 5e43b63987a29add2a183cbdd7b9d8a461c24d8a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Dec 20 06:23:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Dec 20 06:23:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e43b639

net-p2p/amule: Stabilize 2.3.3-r2 amd64, #920236

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-p2p/amule/amule-2.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/amule/amule-2.3.3-r2.ebuild 
b/net-p2p/amule/amule-2.3.3-r2.ebuild
index 94a3f4abbe07..b84556763f9a 100644
--- a/net-p2p/amule/amule-2.3.3-r2.ebuild
+++ b/net-p2p/amule/amule-2.3.3-r2.ebuild
@@ -13,7 +13,7 @@ else
MY_P="${PN/m/M}-${PV}"
SRC_URI="https://download.sourceforge.net/${PN}/${MY_P}.tar.xz;
S="${WORKDIR}/${MY_P}"
-   KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 DESCRIPTION="aMule, the all-platform eMule p2p client"



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/organicmaps/files/, gui-apps/organicmaps/

2023-12-19 Thread Vitaly Zdanevich
commit: ce9bc345bc6192da5a9c64a407d12dfb5eae18e3
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Wed Dec 20 06:20:17 2023 +
Commit: Vitaly Zdanevich  ya  ru>
CommitDate: Wed Dec 20 06:20:17 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ce9bc345

gui-apps/organicmaps: remove patch, target to desktop, drop tests

Signed-off-by: Vitaly Zdanevich  ya.ru>

 .../organicmaps/files/organicmaps--zlib-compile.patch| 10 --
 gui-apps/organicmaps/organicmaps-.ebuild | 12 +++-
 2 files changed, 7 insertions(+), 15 deletions(-)

diff --git a/gui-apps/organicmaps/files/organicmaps--zlib-compile.patch 
b/gui-apps/organicmaps/files/organicmaps--zlib-compile.patch
deleted file mode 100644
index 953dd01247..00
--- a/gui-apps/organicmaps/files/organicmaps--zlib-compile.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 git/3party/minizip/CMakeLists.txt   2022-06-07 12:52:32.337814533 +0200
-+++ organicmaps/3party/minizip/CMakeLists.txt   2022-05-31 13:38:50.604235282 
+0200
-@@ -15,6 +15,7 @@
- 
- target_compile_definitions(${PROJECT_NAME}
-   PUBLIC
-+OF=_Z_OF
- USE_FILE32API
-   PRIVATE
- NOCRYPT

diff --git a/gui-apps/organicmaps/organicmaps-.ebuild 
b/gui-apps/organicmaps/organicmaps-.ebuild
index c6ffa31784..9245663115 100644
--- a/gui-apps/organicmaps/organicmaps-.ebuild
+++ b/gui-apps/organicmaps/organicmaps-.ebuild
@@ -13,18 +13,17 @@ LICENSE="Apache-2.0"
 SLOT="0"
 
 DEPEND="sys-devel/clang
+   >=dev-util/cmake-3.18.1
+   dev-util/ninja
media-libs/freetype
dev-libs/icu
+   >=dev-qt/qtpositioning-6
sys-libs/libstdc++-v3
dev-qt/qtcore
-   dev-qt/qtpositioning
dev-qt/qtsvg
dev-db/sqlite
sys-libs/zlib[minizip]"
-
-PATCHES=(
-   "${FILESDIR}/${P}-zlib-compile.patch"
-)
+RDEPEND=""
 
 src_prepare() {
eapply_user
@@ -38,6 +37,9 @@ src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=False
-DINSTALL_GTEST=off
+   -DUNITY_DISABLE=on
+   -DPLATFORM_DESKTOP=true
+   -DSKIP_TESTS=on
)
 
echo | ./configure.sh



[gentoo-commits] repo/gentoo:master commit in: app-misc/fastfetch/, app-misc/fastfetch/files/

2023-12-19 Thread Viorel Munteanu
commit: bc99265637446283620eed378bd77cc540566c83
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Dec 20 05:45:52 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Wed Dec 20 05:45:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc992656

app-misc/fastfetch: make `.jsonc` suffix optional

Signed-off-by: Viorel Munteanu  gentoo.org>

 ...etch-2.4.0.ebuild => fastfetch-2.4.0-r1.ebuild} |  4 +++
 .../fastfetch-2.4.0-default-config-suffix.patch| 35 ++
 2 files changed, 39 insertions(+)

diff --git a/app-misc/fastfetch/fastfetch-2.4.0.ebuild 
b/app-misc/fastfetch/fastfetch-2.4.0-r1.ebuild
similarity index 98%
rename from app-misc/fastfetch/fastfetch-2.4.0.ebuild
rename to app-misc/fastfetch/fastfetch-2.4.0-r1.ebuild
index 4af72e9b74c7..4590e479070b 100644
--- a/app-misc/fastfetch/fastfetch-2.4.0.ebuild
+++ b/app-misc/fastfetch/fastfetch-2.4.0-r1.ebuild
@@ -62,6 +62,10 @@ REQUIRED_USE="
chafa? ( imagemagick )
 "
 
+PATCHES=(
+   "${FILESDIR}"/${P}-default-config-suffix.patch
+)
+
 src_configure() {
local fastfetch_enable_imagemagick7=no
local fastfetch_enable_imagemagick6=no

diff --git 
a/app-misc/fastfetch/files/fastfetch-2.4.0-default-config-suffix.patch 
b/app-misc/fastfetch/files/fastfetch-2.4.0-default-config-suffix.patch
new file mode 100644
index ..fcf21ce0af23
--- /dev/null
+++ b/app-misc/fastfetch/files/fastfetch-2.4.0-default-config-suffix.patch
@@ -0,0 +1,35 @@
+Make specifying `.jsonc` suffix for configs optional
+
+https://github.com/fastfetch-cli/fastfetch/commit/456a58c8f57aaf22c51571ec0ead1e7c40c3d860
+
+From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= 
+Date: Tue, 19 Dec 2023 15:26:51 +0800
+Subject: [PATCH] fastfetch: default preset names to `.jsonc`
+
+Fix #666
+--- a/src/fastfetch.c
 b/src/fastfetch.c
+@@ -501,6 +501,11 @@ static void optionParseConfigFile(FFdata* data, const 
char* key, const char* val
+ ffStrbufAppendS(, value);
+ 
+ bool success = isJsonConfig ? parseJsoncFile(absolutePath.chars) : 
parseConfigFile(data, absolutePath.chars);
++if (!success)
++{
++ffStrbufAppendS(, ".jsonc");
++success = parseJsoncFile(absolutePath.chars);
++}
+ 
+ if(success)
+ return;
+@@ -514,6 +519,11 @@ static void optionParseConfigFile(FFdata* data, const 
char* key, const char* val
+ ffStrbufAppendS(, value);
+ 
+ bool success = isJsonConfig ? parseJsoncFile(absolutePath.chars) : 
parseConfigFile(data, absolutePath.chars);
++if (!success)
++{
++ffStrbufAppendS(, ".jsonc");
++success = parseJsoncFile(absolutePath.chars);
++}
+ 
+ if(success)
+ return;



[gentoo-commits] repo/gentoo:master commit in: app-admin/linode-cli/

2023-12-19 Thread Viorel Munteanu
commit: a0f8ec04790612bf798ad8cc3e9a7d4c7c93d3a3
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Dec 20 05:27:01 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Wed Dec 20 05:27:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f8ec04

app-admin/linode-cli: drop 5.46.0

Signed-off-by: Viorel Munteanu  gentoo.org>

 app-admin/linode-cli/Manifest |  1 -
 app-admin/linode-cli/linode-cli-5.46.0.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/app-admin/linode-cli/Manifest b/app-admin/linode-cli/Manifest
index 141a65e55ce7..8528664c4d80 100644
--- a/app-admin/linode-cli/Manifest
+++ b/app-admin/linode-cli/Manifest
@@ -1,3 +1,2 @@
 DIST linode-cli-5.45.2.tar.gz 126870 BLAKE2B 
adfb0862159fbd1dc887726a9d40c2534526b9fe7326c6340c52ed928aff5c9960b20a5961ed6aac7e276201e52a254fd6ba5e6aaa80da7d68e95cc0dc949f27
 SHA512 
9a6697b3306434cc4f59ef695d0b51e33f71b2d1be4d942e369a22328c3cbf78da0efc939f39f8da928ba5fb5bc2bc06a6ee5d0c9a8e0deb78b657738f19501d
-DIST linode-cli-5.46.0.tar.gz 127805 BLAKE2B 
a1ef51195bb853d57c41763c465885e3d3b429ede4cac4abb6408f9375499122780f5fc45c52e83a60772e88f3ed82d3e4e093e419d651e116a7b8430079cc4e
 SHA512 
70751b1609ae6888325937e6a6855763c170682e9dad7ce82303199922fb48cd5eecc5e86bb25b578c1019ae74a6eee9850b10f6c10852154e91095ad6b38e11
 DIST linode-cli-5.47.0.tar.gz 128412 BLAKE2B 
ad5a69d5e736f1287e25d351396322d1c6fc70a8b6ad384c270b8edbcd245ab07bf9006430d41849bd48c518c9df036f2f72feab97b69eba8e5d0b10ee1343c5
 SHA512 
dbc4f5ed3d65603750b659abbe77c52b965ace9f58ad4192a9c824600b8ba92ef2dac0ccdfc4563e7b8c4c73039d89e5011c3fc26c5f57f05b609f7d87d0e31c

diff --git a/app-admin/linode-cli/linode-cli-5.46.0.ebuild 
b/app-admin/linode-cli/linode-cli-5.46.0.ebuild
deleted file mode 100644
index 45ee6333667a..
--- a/app-admin/linode-cli/linode-cli-5.46.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-inherit distutils-r1 pypi
-
-DESCRIPTION="Linode Command Line Interface"
-HOMEPAGE="https://github.com/linode/linode-cli https://www.linode.com/;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-python/boto3[${PYTHON_USEDEP}]
-   dev-python/openapi3[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/rich[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: app-admin/linode-cli/

2023-12-19 Thread Viorel Munteanu
commit: 8fbb701e9241564efa238f50779c16d037dce586
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Dec 20 05:26:47 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Wed Dec 20 05:26:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbb701e

app-admin/linode-cli: add 5.47.0

Signed-off-by: Viorel Munteanu  gentoo.org>

 app-admin/linode-cli/Manifest |  1 +
 app-admin/linode-cli/linode-cli-5.47.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/app-admin/linode-cli/Manifest b/app-admin/linode-cli/Manifest
index 26bcdac27814..141a65e55ce7 100644
--- a/app-admin/linode-cli/Manifest
+++ b/app-admin/linode-cli/Manifest
@@ -1,2 +1,3 @@
 DIST linode-cli-5.45.2.tar.gz 126870 BLAKE2B 
adfb0862159fbd1dc887726a9d40c2534526b9fe7326c6340c52ed928aff5c9960b20a5961ed6aac7e276201e52a254fd6ba5e6aaa80da7d68e95cc0dc949f27
 SHA512 
9a6697b3306434cc4f59ef695d0b51e33f71b2d1be4d942e369a22328c3cbf78da0efc939f39f8da928ba5fb5bc2bc06a6ee5d0c9a8e0deb78b657738f19501d
 DIST linode-cli-5.46.0.tar.gz 127805 BLAKE2B 
a1ef51195bb853d57c41763c465885e3d3b429ede4cac4abb6408f9375499122780f5fc45c52e83a60772e88f3ed82d3e4e093e419d651e116a7b8430079cc4e
 SHA512 
70751b1609ae6888325937e6a6855763c170682e9dad7ce82303199922fb48cd5eecc5e86bb25b578c1019ae74a6eee9850b10f6c10852154e91095ad6b38e11
+DIST linode-cli-5.47.0.tar.gz 128412 BLAKE2B 
ad5a69d5e736f1287e25d351396322d1c6fc70a8b6ad384c270b8edbcd245ab07bf9006430d41849bd48c518c9df036f2f72feab97b69eba8e5d0b10ee1343c5
 SHA512 
dbc4f5ed3d65603750b659abbe77c52b965ace9f58ad4192a9c824600b8ba92ef2dac0ccdfc4563e7b8c4c73039d89e5011c3fc26c5f57f05b609f7d87d0e31c

diff --git a/app-admin/linode-cli/linode-cli-5.47.0.ebuild 
b/app-admin/linode-cli/linode-cli-5.47.0.ebuild
new file mode 100644
index ..45ee6333667a
--- /dev/null
+++ b/app-admin/linode-cli/linode-cli-5.47.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+inherit distutils-r1 pypi
+
+DESCRIPTION="Linode Command Line Interface"
+HOMEPAGE="https://github.com/linode/linode-cli https://www.linode.com/;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/boto3[${PYTHON_USEDEP}]
+   dev-python/openapi3[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
+   

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

2023-12-19 Thread Sam James
commit: 2e299f2b0dae0a3a4681bc5a9bb6f098607551ce
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:44:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:44:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e299f2b

net-misc/putty: Stabilize 0.80 amd64, #920340

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

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

diff --git a/net-misc/putty/putty-0.80.ebuild b/net-misc/putty/putty-0.80.ebuild
index b846bc1a58a4..0e725d8e762b 100644
--- a/net-misc/putty/putty-0.80.ebuild
+++ b/net-misc/putty/putty-0.80.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git;
 else
SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ppc64 sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ppc64 sparc ~x86"
 fi
 LICENSE="MIT"
 



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/libodb-sqlite/

2023-12-19 Thread Sam James
commit: 15ce2a687ddc3acccde171d6103304b6684d1f4c
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:20:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:26:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15ce2a68

dev-cpp/libodb-sqlite: add 2.5.0_beta25

While at it, add some small bump instructions to start.

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

 dev-cpp/libodb-sqlite/Manifest |   2 +
 .../libodb-sqlite-2.5.0_beta25.ebuild  | 124 +
 2 files changed, 126 insertions(+)

diff --git a/dev-cpp/libodb-sqlite/Manifest b/dev-cpp/libodb-sqlite/Manifest
index beffdc9e332d..c8662032c79d 100644
--- a/dev-cpp/libodb-sqlite/Manifest
+++ b/dev-cpp/libodb-sqlite/Manifest
@@ -1,4 +1,6 @@
 DIST build2-toolchain-0.13.0.tar.xz 4218940 BLAKE2B 
ed27290df21e5db843325b3e42c43c6934ce8f2b9b157538b921f9cfe3a7dccc3b56e261053373553cbd7fbff39e912ffe2282f812d0e6f158749ed5748d5e33
 SHA512 
0485872acd40beb700739b2995f76efcc9811dd52a38ee049576e45fcb5a7d7ae9c718beca8aeab9ab3f1c5e0270d3946f2335f88ec19476577c195417c2dbd4
 DIST build2-toolchain-0.14.0.tar.xz 4687616 BLAKE2B 
98b2ec93c18027cbb3294650b3ad5d3dc97c1f06a6580437eac2db0297d3517cf327179f3a7c6efc611bffed5d028a034382d408ca58a976311d50a26534323c
 SHA512 
d238a4ddfce8506b51b3b775738e818e7e0b36961a09ae0912c0c8688057b8393afebd4c0a28c6e6827c2e72ad5b82bc5e1231f798a66c2bb86b2b1e4ece73ef
+DIST build2-toolchain-0.15.0.tar.xz 5122496 BLAKE2B 
6170ccf7e251e189369873ae81a4c24fdfd7b3beb38728da0c40284a8e6329d1dd152e861bbb5d2dbc0b4931af6e72c191c52abe98111c5dbf7922df888b046e
 SHA512 
3dba63813a227a1542bcec52406c98e6d61fb366f0fe2617fac130906d0811d00356330bcd03faabf83f30604044f92e40476669a4b04060f83ede7a4db88ecb
 DIST libodb-sqlite-2.5.0-b.19.tar.gz 74822 BLAKE2B 
e9a5d3be8b453bcdc026b6349572c3bd88eb468329216bee535f4e1ac72bfe6c88b485efe2476303600209df42023099fdda88b410d9295e8cab73ed9dd03fc0
 SHA512 
be6dbc731d9f45dfc7e9246f404edad78d59c9d38cff6599aed56d60d4f0e8391336e2da3608f66d74559f0a8d34243eb38e7e6a1221188959321810193ae901
 DIST libodb-sqlite-2.5.0-b.21.tar.gz 79975 BLAKE2B 
f9dca03ba909276ed137c15cbe32a8227b688f8b1c2d3e98b7040f3463359400fd5116088ae77722651589788e2d8e1367bc135ed2104dbc2d624ff4910f3fce
 SHA512 
a84ea3847c64e5beffcb1f3958583bc02d371a4eb354ad32d0083b01e27362905bdcf09913c9b4cd6fc977eeaba95fd46cf953332e4fd0d673ca2f7521c71a1f
+DIST libodb-sqlite-2.5.0-b.25.tar.gz 77096 BLAKE2B 
594e805428c4b6f20cefa9838175831278166e6d5612be4a79da972ca85ca95f6f8b18adadfd11ba4adcb7751f83bea8b5e3ce1f6e7ae76c5b361fcabfc633be
 SHA512 
886119c8524939fa7c094afc157ada1797dca338d6e1a488aca8552615e2050c9d555e3784226e2d28faee58019a8e51b990ee9df1af1bdfe00d591d7268d673

diff --git a/dev-cpp/libodb-sqlite/libodb-sqlite-2.5.0_beta25.ebuild 
b/dev-cpp/libodb-sqlite/libodb-sqlite-2.5.0_beta25.ebuild
new file mode 100644
index ..c1b349bd0db1
--- /dev/null
+++ b/dev-cpp/libodb-sqlite/libodb-sqlite-2.5.0_beta25.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
+
+# Compare BUILD2_PV with the version in the tarball in the 'manifest' file.
+# e.g. from 2.5.0_beta25's manifest:
+# +depends: * build2 >= 0.15.0
+# +depends: * bpkg >= 0.15.0
+BUILD2_PN=build2-toolchain
+BUILD2_PV="0.15.0"
+BUILD2_P="${BUILD2_PN}-${BUILD2_PV}"
+
+inherit toolchain-funcs multiprocessing
+
+DESCRIPTION="Common ODB runtime library"
+HOMEPAGE="https://codesynthesis.com/products/odb/;
+SRC_URI="
+   https://pkg.cppget.org/1/beta/odb/${MY_P}.tar.gz
+   https://download.build2.org/${BUILD2_PV}/${BUILD2_P}.tar.xz
+"
+BS="${WORKDIR}/${BUILD2_P}"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="|| ( Code-Synthesis-ODB GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   dev-cpp/libodb
+   dev-db/sqlite:3
+"
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+   ${DEPEND}
+   !> \
+   ${i} \
+   || die
+   done
+
+   cd "${BS}" || die
+   eapply "${FILESDIR}"/build2-0.13.0_alpha0_pre20200710-nousrlocal.patch
+   sed \
+   -e 's:libsqlite3[/]\?::' \
+   -i buildfile build/bootstrap.build \
+   || die
+
+   if has_version dev-util/pkgconf; then
+   for i in build2/build2/buildfile build2/libbuild2/buildfile; do
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+   "$($(tc-getPKG_CONFIG) libpkgconf --libs)" \
+   "$($(tc-getPKG_CONFIG) libpkgconf --cflags)" >> 
\
+   "${i}" \
+   || die
+   done
+   sed \
+   -e 's:libpkgconf[/]\?::' \
+   -i buildfile build/bootstrap.build \
+   || die
+   

[gentoo-commits] repo/gentoo:master commit in: metadata/stabilization-groups/

2023-12-19 Thread Sam James
commit: 4d053102a11c64015e48722c445f3400dc7b0e00
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:22:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:44:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d053102

metadata/stabilization-groups: add build2 group

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

 metadata/stabilization-groups/build2 | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/metadata/stabilization-groups/build2 
b/metadata/stabilization-groups/build2
new file mode 100644
index ..b209b34d2d95
--- /dev/null
+++ b/metadata/stabilization-groups/build2
@@ -0,0 +1,3 @@
+dev-cpp/libodb
+dev-cpp/libodb-sqlite
+dev-util/build2



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

2023-12-19 Thread Sam James
commit: be3984ef50b0c59df17d6202f6bd20334f963735
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:21:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:44:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be3984ef

dev-util/build2: add 0.16.0

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

 dev-util/build2/Manifest |   1 +
 dev-util/build2/build2-0.16.0.ebuild | 143 +++
 2 files changed, 144 insertions(+)

diff --git a/dev-util/build2/Manifest b/dev-util/build2/Manifest
index 6b2a52834c2d..025ba8f3b810 100644
--- a/dev-util/build2/Manifest
+++ b/dev-util/build2/Manifest
@@ -1,2 +1,3 @@
 DIST build2-toolchain-0.13.0.tar.xz 4218940 BLAKE2B 
ed27290df21e5db843325b3e42c43c6934ce8f2b9b157538b921f9cfe3a7dccc3b56e261053373553cbd7fbff39e912ffe2282f812d0e6f158749ed5748d5e33
 SHA512 
0485872acd40beb700739b2995f76efcc9811dd52a38ee049576e45fcb5a7d7ae9c718beca8aeab9ab3f1c5e0270d3946f2335f88ec19476577c195417c2dbd4
 DIST build2-toolchain-0.14.0.tar.xz 4687616 BLAKE2B 
98b2ec93c18027cbb3294650b3ad5d3dc97c1f06a6580437eac2db0297d3517cf327179f3a7c6efc611bffed5d028a034382d408ca58a976311d50a26534323c
 SHA512 
d238a4ddfce8506b51b3b775738e818e7e0b36961a09ae0912c0c8688057b8393afebd4c0a28c6e6827c2e72ad5b82bc5e1231f798a66c2bb86b2b1e4ece73ef
+DIST build2-toolchain-0.16.0.tar.xz 5545392 BLAKE2B 
daefa8745cd342b0de7d74c3b66e3811b95fec9b8c14b29b1fd030d796a31586e0ef401b296cdae5a2d27cf9c337092b707e5fb0673356edff35800bb4be5004
 SHA512 
f926f3be07287ae8d0ff44e04fdee8c80982db2fa9e33012afb3fe21ee6973d771a3df33a7b976cc714c905d443020501dc96ea3546c76600760c3574e6ae625

diff --git a/dev-util/build2/build2-0.16.0.ebuild 
b/dev-util/build2/build2-0.16.0.ebuild
new file mode 100644
index ..e823b9f35655
--- /dev/null
+++ b/dev-util/build2/build2-0.16.0.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN=build2-toolchain
+MY_P="${MY_PN}-${PV}"
+
+inherit toolchain-funcs multiprocessing
+
+DESCRIPTION="Cross-platform toolchain for building and packaging C++ code"
+HOMEPAGE="https://build2.org;
+SRC_URI="https://download.build2.org/${PV}/${MY_P}.tar.xz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   ~dev-cpp/libodb-2.5.0_beta25
+   ~dev-cpp/libodb-sqlite-2.5.0_beta25
+   dev-db/sqlite:3
+"
+BDEPEND="virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.14.0-update-for-install.patch
+)
+
+b() {
+   local myargs=(
+   --jobs $(makeopts_jobs)
+   --verbose 3
+   )
+   export 
LD_LIBRARY_PATH="${S}/libbutl/libbutl:${S}/build2/libbuild2:${S}/build2/libbuild2/bash:${S}/build2/libbuild2/in:${S}/build2/libbuild2/bin:${S}/build2/libbuild2/c:${S}/build2/libbuild2/cc:${S}/build2/libbuild2/cxx:${S}/build2/libbuild2/version:${S}/libpkgconf/libpkgconf:${LD_LIBRARY_PATH}"
+   set -- "${S}"/build2/build2/b-boot "${@}" "${myargs[@]}"
+   echo "${@}"
+   "${@}" || die "${@} failed"
+}
+
+src_prepare() {
+   # Unbundle dev-cpp/libodb and dev-cpp/libodb-sqlite
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+   "-L${EPREFIX}/usr/$(get_libdir) $($(tc-getPKG_CONFIG) sqlite3 
--libs)" \
+   "$($(tc-getPKG_CONFIG) sqlite3 --cflags)" >> \
+   libodb-sqlite/buildfile \
+   || die
+   sed -i \
+   -e 's:libsqlite3[/]\?::' \
+   buildfile build/bootstrap.build \
+   || die
+   for i in build2/build2/buildfile build2/libbuild2/buildfile; do
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+  "$($(tc-getPKG_CONFIG) libodb --libs)" \
+  "$($(tc-getPKG_CONFIG) libodb --cflags)" >> \
+  "${i}" \
+   || die
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+  "$($(tc-getPKG_CONFIG) libodb-sqlite --libs)" \
+  "$($(tc-getPKG_CONFIG) libodb-sqlite --cflags)" >> \
+  "${i}" \
+   || die
+   done
+   sed -i \
+   -e 's:libodb-sqlite[/]\?::' \
+   -e 's:libodb[/]\?::' \
+   buildfile build/bootstrap.build \
+   || die
+
+   if has_version dev-util/pkgconf; then
+   for i in build2/build2/buildfile build2/libbuild2/buildfile; do
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+   "$($(tc-getPKG_CONFIG) libpkgconf --libs)" \
+   "$($(tc-getPKG_CONFIG) libpkgconf --cflags)" >> 
\
+   "${i}" \
+   || die
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/libodb/

2023-12-19 Thread Sam James
commit: e07c1f02f6a1f542b8a7a58031d79f3a4fcc2fd0
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:14:05 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:26:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e07c1f02

dev-cpp/libodb: add 2.5.0_beta25

While at it, add some small bump instructions to start.

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

 dev-cpp/libodb/Manifest   |   2 +
 dev-cpp/libodb/libodb-2.5.0_beta25.ebuild | 113 ++
 2 files changed, 115 insertions(+)

diff --git a/dev-cpp/libodb/Manifest b/dev-cpp/libodb/Manifest
index 8d523e99383f..7ea7c38bcc61 100644
--- a/dev-cpp/libodb/Manifest
+++ b/dev-cpp/libodb/Manifest
@@ -1,4 +1,6 @@
 DIST build2-toolchain-0.13.0.tar.xz 4218940 BLAKE2B 
ed27290df21e5db843325b3e42c43c6934ce8f2b9b157538b921f9cfe3a7dccc3b56e261053373553cbd7fbff39e912ffe2282f812d0e6f158749ed5748d5e33
 SHA512 
0485872acd40beb700739b2995f76efcc9811dd52a38ee049576e45fcb5a7d7ae9c718beca8aeab9ab3f1c5e0270d3946f2335f88ec19476577c195417c2dbd4
 DIST build2-toolchain-0.14.0.tar.xz 4687616 BLAKE2B 
98b2ec93c18027cbb3294650b3ad5d3dc97c1f06a6580437eac2db0297d3517cf327179f3a7c6efc611bffed5d028a034382d408ca58a976311d50a26534323c
 SHA512 
d238a4ddfce8506b51b3b775738e818e7e0b36961a09ae0912c0c8688057b8393afebd4c0a28c6e6827c2e72ad5b82bc5e1231f798a66c2bb86b2b1e4ece73ef
+DIST build2-toolchain-0.15.0.tar.xz 5122496 BLAKE2B 
6170ccf7e251e189369873ae81a4c24fdfd7b3beb38728da0c40284a8e6329d1dd152e861bbb5d2dbc0b4931af6e72c191c52abe98111c5dbf7922df888b046e
 SHA512 
3dba63813a227a1542bcec52406c98e6d61fb366f0fe2617fac130906d0811d00356330bcd03faabf83f30604044f92e40476669a4b04060f83ede7a4db88ecb
 DIST libodb-2.5.0-b.19.tar.gz 101239 BLAKE2B 
d6c32e4e5bbacafbecf9e992f91604dac4bb50359d41709b81116f09ce805cd2a3388cf14b47acc60d9b5a52867de0725c1dbbc7603dda8ffaf64589b3057ecb
 SHA512 
0a3e70afd2c2ba573676e1a2630986215b4c8e57a004f7d2f2227f301b6c58f739397a0efc8877902baf88b93aff83c9b67c9f5b5e87cc570d64bb76b7b8f66b
 DIST libodb-2.5.0-b.21.tar.gz 101775 BLAKE2B 
5417c5dd4540ab6014005803ec505e9dfc8f30125f573bac045306470eb8947fe800717fc02d8af138f7dd50bb82d19f01099f28421733809ccd1858bdc0f941
 SHA512 
68fa486b3a6f1254fb57e480bdf8e1d008fe38f29c47d5a4648ff44dc964dd7f3ee9d07510d742db15120f272aa6152bf08ca9d7689e4b34b0f5e5910ea71c0e
+DIST libodb-2.5.0-b.25.tar.gz 100681 BLAKE2B 
8fbb1a4db2fc994ae490f7e72be2109e0973fb6f29a6435535446e8769d7e123e85b4e6a56566e96485c9b36116a0580f2b2d32b68116e39f1a63baa63618842
 SHA512 
f99eba87130f7c3ed0b707e1f4efdb839c97c221fee24056d955072767c36106297abe76e5f82054cf5bc3bf0fda631e7c92e4943645d6ff2be57831006505ef

diff --git a/dev-cpp/libodb/libodb-2.5.0_beta25.ebuild 
b/dev-cpp/libodb/libodb-2.5.0_beta25.ebuild
new file mode 100644
index ..bb378d985315
--- /dev/null
+++ b/dev-cpp/libodb/libodb-2.5.0_beta25.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
+
+# Compare BUILD2_PV with the version in the tarball in the 'manifest' file.
+# e.g. from 2.5.0_beta25's manifest:
+# +depends: * build2 >= 0.15.0
+# +depends: * bpkg >= 0.15.0
+BUILD2_PN=build2-toolchain
+BUILD2_PV="0.15.0"
+BUILD2_P="${BUILD2_PN}-${BUILD2_PV}"
+
+inherit toolchain-funcs multiprocessing
+
+DESCRIPTION="Common ODB runtime library"
+HOMEPAGE="https://codesynthesis.com/products/odb/;
+SRC_URI="
+   https://pkg.cppget.org/1/beta/odb/${MY_P}.tar.gz
+   https://download.build2.org/${BUILD2_PV}/${BUILD2_P}.tar.xz
+"
+BS="${WORKDIR}/${BUILD2_P}"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="|| ( Code-Synthesis-ODB GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="!> \
+   libodb-sqlite/buildfile \
+   || die
+   sed \
+   -e 's:libsqlite3[/]\?::' \
+   -i buildfile build/bootstrap.build \
+   || die
+
+   if has_version dev-util/pkgconf; then
+   for i in build2/build2/buildfile build2/libbuild2/buildfile; do
+   printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
+   "$($(tc-getPKG_CONFIG) libpkgconf --libs)" \
+   "$($(tc-getPKG_CONFIG) libpkgconf --cflags)" >> 
\
+   "${i}" \
+   || die
+   done
+   sed \
+   -e 's:libpkgconf[/]\?::' \
+   -i buildfile build/bootstrap.build \
+   || die
+   fi
+   popd || die
+
+   default
+}
+
+src_configure() {
+   pushd "${BS}" || die
+   emake -C build2 -f bootstrap.gmake \
+   CXX=$(tc-getCXX) \
+   CXXFLAGS="${CXXFLAGS}" \
+   LDFLAGS="${LDFLAGS}"
+   popd || die
+
+   b configure \
+   

[gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/

2023-12-19 Thread Sam James
commit: e71ca896d1db35f4f1344da3172f381001f25001
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 03:44:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 03:44:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e71ca896

net-p2p/amule: Stabilize 2.3.3-r2 ppc64, #920236

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

 net-p2p/amule/amule-2.3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/amule/amule-2.3.3-r2.ebuild 
b/net-p2p/amule/amule-2.3.3-r2.ebuild
index db68d2c2806d..f3b75ec1a21c 100644
--- a/net-p2p/amule/amule-2.3.3-r2.ebuild
+++ b/net-p2p/amule/amule-2.3.3-r2.ebuild
@@ -13,7 +13,7 @@ else
MY_P="${PN/m/M}-${PV}"
SRC_URI="https://download.sourceforge.net/${PN}/${MY_P}.tar.xz;
S="${WORKDIR}/${MY_P}"
-   KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ppc64 ~riscv ~sparc ~x86"
 fi
 
 DESCRIPTION="aMule, the all-platform eMule p2p client"



[gentoo-commits] repo/proj/guru:dev commit in: net-wireless/rtl8821cu/

2023-12-19 Thread Aleksandr Batyuk
commit: 801b910cab373c1cad1badd195428bb87fa13302
Author: Aleksandr Batyuk  gmail  com>
AuthorDate: Wed Dec 20 03:24:30 2023 +
Commit: Aleksandr Batyuk  gmail  com>
CommitDate: Wed Dec 20 03:24:30 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=801b910c

net-wireless/rtl8821cu: Add support kernel 6.7

Signed-off-by: Aleksandr Batyuk  gmail.com>

 net-wireless/rtl8821cu/Manifest | 2 +-
 .../{rtl8821cu-0_pre20230925.ebuild => rtl8821cu-0_pre20231126.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/rtl8821cu/Manifest b/net-wireless/rtl8821cu/Manifest
index 71528c5ccb..282504f95a 100644
--- a/net-wireless/rtl8821cu/Manifest
+++ b/net-wireless/rtl8821cu/Manifest
@@ -1 +1 @@
-DIST rtl8821cu-0_pre20230925.tar.gz 13822406 BLAKE2B 
0e1fe8d2e3cbe7373884390151159b4be80a6d818a2822d2379c8526dc5b3c6b84b91c18d3a3aa4ffb862db7520387f5e5ece2afd66e98c22f7476ab425fcb5c
 SHA512 
99fe2264b21a2163f9d26264026bc36eafbabf1caa7ee78f897027a67d8bb36b325f3f87eb46a76ee6d285dee628f441d1eb5b2598599a0e77c4f9838a9ba8e6
+DIST rtl8821cu-0_pre20231126.tar.gz 13823204 BLAKE2B 
a19a88e10d6709c7ada9130392d2f173d8f7b303ea4c89b67e209e98e65c9ff3388e7416c021a0d3218428d0aa072660822414827d07eb6bc312fd4a660f1f6c
 SHA512 
d033fb81c1231a30a3440710edfce356d81262c070eb09569506042776c6cc37b8f2e5234772028c9d5d85fc22dd73a39efdae9ab4fa0943a6c2277f47ca87eb

diff --git a/net-wireless/rtl8821cu/rtl8821cu-0_pre20230925.ebuild 
b/net-wireless/rtl8821cu/rtl8821cu-0_pre20231126.ebuild
similarity index 92%
rename from net-wireless/rtl8821cu/rtl8821cu-0_pre20230925.ebuild
rename to net-wireless/rtl8821cu/rtl8821cu-0_pre20231126.ebuild
index c97883c774..907a4addac 100644
--- a/net-wireless/rtl8821cu/rtl8821cu-0_pre20230925.ebuild
+++ b/net-wireless/rtl8821cu/rtl8821cu-0_pre20231126.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit linux-mod-r1
 
 MY_PN="8821cu-20210916"
-COMMIT="8e300c0885835b079ad1a99cccd960754a4c849f"
+COMMIT="eb52ece92607394ecc22e96b41671ec3e5b1fa30"
 DESCRIPTION="Realtek 8821CU/RTL8811CU module for Linux kernel"
 HOMEPAGE="https://github.com/morrownr/8821cu-20210916;
 SRC_URI="https://github.com/morrownr/${MY_PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"



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

2023-12-19 Thread Sam James
commit: f717c139e72b0c4e2ea454f0e98ec662326fbb9e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f717c139

dev-libs/libical: Stabilize 3.0.17 arm, #920341

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

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index 118c158f3a0a..7ea9a8e33354 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Sam James
commit: d9089d38eff9a734edf3f7635077b84ac4844853
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9089d38

net-misc/putty: Stabilize 0.80 ppc64, #920340

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

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

diff --git a/net-misc/putty/putty-0.80.ebuild b/net-misc/putty/putty-0.80.ebuild
index 4580c9d93904..b846bc1a58a4 100644
--- a/net-misc/putty/putty-0.80.ebuild
+++ b/net-misc/putty/putty-0.80.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git;
 else
SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ppc64 sparc ~x86"
 fi
 LICENSE="MIT"
 



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

2023-12-19 Thread Sam James
commit: 07c980dafa1cf6d2ac5d9454f9e0f756be7e0909
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:59 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c980da

media-video/subtitlecomposer: Stabilize 0.8.0 amd64, #920342

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

 media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild 
b/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
index b6ea7b759537..8690e51ac51b 100644
--- a/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
+++ b/media-video/subtitlecomposer/subtitlecomposer-0.8.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${KDE_BUILD_TYPE} = release ]]; then
PATCHSET="${PN}-0.7.1-patchset-1"
SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz
https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}.tar.xz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-2"



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

2023-12-19 Thread Sam James
commit: 52454b0ddb0095d2d796294be185001ecf401466
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52454b0d

x11-misc/qps: Stabilize 2.8.0 amd64, #920175

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

 x11-misc/qps/qps-2.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/qps/qps-2.8.0.ebuild b/x11-misc/qps/qps-2.8.0.ebuild
index b54183f51cf5..17fe91de44d1 100644
--- a/x11-misc/qps/qps-2.8.0.ebuild
+++ b/x11-misc/qps/qps-2.8.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2 GPL-2+ LGPL-2.1+ QPL-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 
 BDEPEND="
>=dev-qt/linguist-tools-5.15:5



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

2023-12-19 Thread Sam James
commit: 5adec6a7310579184ca1b6a8005580cfc5f0f266
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5adec6a7

dev-libs/libical: Stabilize 3.0.17 sparc, #920341

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

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index 4f21ebd09c44..bf6eaa20f4ef 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Sam James
commit: abf20a81bf57001de7edf3173a6bbb8534750ba3
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf20a81

net-misc/putty: Stabilize 0.80 sparc, #920340

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

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

diff --git a/net-misc/putty/putty-0.80.ebuild b/net-misc/putty/putty-0.80.ebuild
index 39a91c351eff..4580c9d93904 100644
--- a/net-misc/putty/putty-0.80.ebuild
+++ b/net-misc/putty/putty-0.80.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git;
 else
SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ppc ~ppc64 sparc ~x86"
 fi
 LICENSE="MIT"
 



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

2023-12-19 Thread Sam James
commit: 4a225eab24b7c260dbc2a8c0ba54b4d205b3f423
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a225eab

dev-libs/libical: Stabilize 3.0.17 amd64, #920341

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

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index cf8bcc343343..f00c4ee44d15 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Sam James
commit: 5883fc075d26367ae0a0d933f6351eec35e8102e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5883fc07

dev-libs/libical: Stabilize 3.0.17 ppc64, #920341

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

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index bf6eaa20f4ef..cf8bcc343343 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Sam James
commit: 89f71aae4e4c6daea70756d8e502bc08de900c38
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f71aae

x11-misc/screengrab: Stabilize 2.7.0 amd64, #920175

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

 x11-misc/screengrab/screengrab-2.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/screengrab/screengrab-2.7.0.ebuild 
b/x11-misc/screengrab/screengrab-2.7.0.ebuild
index 85054dbaad43..5788c5c646f2 100644
--- a/x11-misc/screengrab/screengrab-2.7.0.ebuild
+++ b/x11-misc/screengrab/screengrab-2.7.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2 GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 IUSE=""
 
 BDEPEND="dev-qt/linguist-tools:5"



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

2023-12-19 Thread Sam James
commit: 405be05c84b3dbc6d5feaf31be80744586169c32
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=405be05c

dev-libs/libical: Stabilize 3.0.17 arm64, #920341

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

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

diff --git a/dev-libs/libical/libical-3.0.17.ebuild 
b/dev-libs/libical/libical-3.0.17.ebuild
index 7ea9a8e33354..4f21ebd09c44 100644
--- a/dev-libs/libical/libical-3.0.17.ebuild
+++ b/dev-libs/libical/libical-3.0.17.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc examples +glib +introspection static-libs test vala"
 
 REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"



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

2023-12-19 Thread Sam James
commit: 1326168ff680f3541ab159800cb284344b4cec03
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1326168f

media-gfx/lximage-qt: Stabilize 1.4.0 amd64, #920175

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

 media-gfx/lximage-qt/lximage-qt-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/lximage-qt/lximage-qt-1.4.0.ebuild 
b/media-gfx/lximage-qt/lximage-qt-1.4.0.ebuild
index 28536ab0b803..d8f8fd279271 100644
--- a/media-gfx/lximage-qt/lximage-qt-1.4.0.ebuild
+++ b/media-gfx/lximage-qt/lximage-qt-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-2 GPL-2+"



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

2023-12-19 Thread Sam James
commit: 6a9f677e0ab340995da12b4b68feaa2502a4cc0e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a9f677e

x11-terms/qterminal: Stabilize 1.4.0 amd64, #920175

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

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

diff --git a/x11-terms/qterminal/qterminal-1.4.0.ebuild 
b/x11-terms/qterminal/qterminal-1.4.0.ebuild
index 7e969e772422..d16884a8f3ac 100644
--- a/x11-terms/qterminal/qterminal-1.4.0.ebuild
+++ b/x11-terms/qterminal/qterminal-1.4.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-2 GPL-2+"



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

2023-12-19 Thread Sam James
commit: 0f43aa660bfd4b3ae88380fa13a006c552ed91f9
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f43aa66

lxqt-base/lxqt-powermanagement: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.4.0.ebuild 
b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.4.0.ebuild
index cf70d933a82a..1cf173b73a7a 100644
--- a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.4.0.ebuild
+++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libfm-qt/

2023-12-19 Thread Sam James
commit: 7ee5d49c0bc7adb3b57745643323fa6ada33608c
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ee5d49c

x11-libs/libfm-qt: Stabilize 1.4.0 amd64, #920175

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

 x11-libs/libfm-qt/libfm-qt-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libfm-qt/libfm-qt-1.4.0.ebuild 
b/x11-libs/libfm-qt/libfm-qt-1.4.0.ebuild
index fe3fcdd19a8a..d2c67fe6fbdb 100644
--- a/x11-libs/libfm-qt/libfm-qt-1.4.0.ebuild
+++ b/x11-libs/libfm-qt/libfm-qt-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="BSD GPL-2+ LGPL-2.1+"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/pcmanfm-qt/

2023-12-19 Thread Sam James
commit: 7b299beb0d8cef747165dc2488dab0feb3b23bb1
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b299beb

x11-misc/pcmanfm-qt: Stabilize 1.4.0 amd64, #920175

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

 x11-misc/pcmanfm-qt/pcmanfm-qt-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/pcmanfm-qt/pcmanfm-qt-1.4.0.ebuild 
b/x11-misc/pcmanfm-qt/pcmanfm-qt-1.4.0.ebuild
index dbe3ea2468a0..5882b1952a8c 100644
--- a/x11-misc/pcmanfm-qt/pcmanfm-qt-1.4.0.ebuild
+++ b/x11-misc/pcmanfm-qt/pcmanfm-qt-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-2 GPL-2+ LGPL-2.1+"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/qtermwidget/

2023-12-19 Thread Sam James
commit: 6b1fb15536f8cb4fadf280166cd7dc8c2de51a7e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b1fb155

x11-libs/qtermwidget: Stabilize 1.4.0 amd64, #920175

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

 x11-libs/qtermwidget/qtermwidget-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/qtermwidget/qtermwidget-1.4.0.ebuild 
b/x11-libs/qtermwidget/qtermwidget-1.4.0.ebuild
index 1d05e00f94c1..cc4723714258 100644
--- a/x11-libs/qtermwidget/qtermwidget-1.4.0.ebuild
+++ b/x11-libs/qtermwidget/qtermwidget-1.4.0.ebuild
@@ -13,7 +13,7 @@ if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="BSD GPL-2 LGPL-2+"



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

2023-12-19 Thread Sam James
commit: 18019582654c0abfb12f16ec2f1ca616b7445a8e
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18019582

lxqt-base/lxqt-qtplugin: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.4.0.ebuild 
b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.4.0.ebuild
index 1b319db43db5..9526dc2a0717 100644
--- a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.4.0.ebuild
+++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: 71175780217682e9dffd84432c9d593792b502f9
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71175780

lxqt-base/lxqt-sudo: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-sudo/lxqt-sudo-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-sudo/lxqt-sudo-1.4.0.ebuild 
b/lxqt-base/lxqt-sudo/lxqt-sudo-1.4.0.ebuild
index 93e63e6f442b..9a46084e7d65 100644
--- a/lxqt-base/lxqt-sudo/lxqt-sudo-1.4.0.ebuild
+++ b/lxqt-base/lxqt-sudo/lxqt-sudo-1.4.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: 23b8c8969e2ad4933b9db20d4ca2338b5db8b378
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b8c896

lxqt-base/lxqt-runner: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-runner/lxqt-runner-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-runner/lxqt-runner-1.4.0.ebuild 
b/lxqt-base/lxqt-runner/lxqt-runner-1.4.0.ebuild
index cb13a7787bdb..c4029b9b4dc6 100644
--- a/lxqt-base/lxqt-runner/lxqt-runner-1.4.0.ebuild
+++ b/lxqt-base/lxqt-runner/lxqt-runner-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: beadea2ea542215edce64a3c9ba1af8a8c02a759
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beadea2e

lxqt-base/lxqt-panel: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-panel/lxqt-panel-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-panel/lxqt-panel-1.4.0.ebuild 
b/lxqt-base/lxqt-panel/lxqt-panel-1.4.0.ebuild
index 96cac5703f3a..2a3e0b759249 100644
--- a/lxqt-base/lxqt-panel/lxqt-panel-1.4.0.ebuild
+++ b/lxqt-base/lxqt-panel/lxqt-panel-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: 6164b4dec1af5210adb999261b393eb0cc7828cd
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:43 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6164b4de

lxqt-base/lxqt-session: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-session/lxqt-session-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-session/lxqt-session-1.4.0.ebuild 
b/lxqt-base/lxqt-session/lxqt-session-1.4.0.ebuild
index f70701aa5019..7987f41e25bc 100644
--- a/lxqt-base/lxqt-session/lxqt-session-1.4.0.ebuild
+++ b/lxqt-base/lxqt-session/lxqt-session-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 IUSE="+udev"



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

2023-12-19 Thread Sam James
commit: 88b3c74298891ca9a35b11a484cbd2c310406108
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b3c742

lxqt-base/lxqt-policykit: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-policykit/lxqt-policykit-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-1.4.0.ebuild 
b/lxqt-base/lxqt-policykit/lxqt-policykit-1.4.0.ebuild
index 5fa391184852..89e27aadf3cd 100644
--- a/lxqt-base/lxqt-policykit/lxqt-policykit-1.4.0.ebuild
+++ b/lxqt-base/lxqt-policykit/lxqt-policykit-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: f5068f0aff4d5bb9b4b476a8d9e2674c427919d4
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:37 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5068f0a

lxqt-base/lxqt-meta: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-meta/lxqt-meta-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-meta/lxqt-meta-1.4.0.ebuild 
b/lxqt-base/lxqt-meta/lxqt-meta-1.4.0.ebuild
index d4cbaab7e8fb..cf42bb386c5e 100644
--- a/lxqt-base/lxqt-meta/lxqt-meta-1.4.0.ebuild
+++ b/lxqt-base/lxqt-meta/lxqt-meta-1.4.0.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Meta ebuild for LXQt, the Lightweight Desktop 
Environment"
 HOMEPAGE="https://lxqt-project.org/;
 
 if [[ ${PV} != ** ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="metapackage"



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

2023-12-19 Thread Sam James
commit: 0936071a96055f94ae6054be5ce81352d55ed31c
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0936071a

lxqt-base/lxqt-notificationd: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-notificationd/lxqt-notificationd-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.4.0.ebuild 
b/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.4.0.ebuild
index 4f65c2d4b0d3..0ace16573a3f 100644
--- a/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.4.0.ebuild
+++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



[gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-openssh-askpass/

2023-12-19 Thread Sam James
commit: 73c1b823711ef8ca64c16f5a48c8923ce82737bb
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:38:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:38:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c1b823

lxqt-base/lxqt-openssh-askpass: Stabilize 1.4.0 amd64, #920175

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

 lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.4.0.ebuild 
b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.4.0.ebuild
index 774ad3d3fe66..751c8b5f4498 100644
--- a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.4.0.ebuild
+++ b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
 else

SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1 LGPL-2.1+"



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

2023-12-19 Thread Sam James
commit: baa1d6b1ff677977cba2978e234e5f41cf430f54
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 20 01:13:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:13:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa1d6b1

dev-python/cython: add 3.0.7

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

 dev-python/cython/Manifest|  1 +
 dev-python/cython/cython-3.0.7.ebuild | 84 +++
 2 files changed, 85 insertions(+)

diff --git a/dev-python/cython/Manifest b/dev-python/cython/Manifest
index b0866ef9561a..3ce740b2691a 100644
--- a/dev-python/cython/Manifest
+++ b/dev-python/cython/Manifest
@@ -5,3 +5,4 @@ DIST cython-3.0.3.gh.tar.gz 2753188 BLAKE2B 
0e6d40533f1cebf3c4217dc19aeebc2f873a
 DIST cython-3.0.4.gh.tar.gz 2754689 BLAKE2B 
5418b8c374565894deb07e7a3f2fe242e1ef43eed5d716cbd9c6b9fd3d62088d9982eb156c981fa9f6edcf42592f2249f9eb450d16ef908be464e357ee9bbea7
 SHA512 
bc87e38f9c188a5311f75f49ba4b9ec1ee0af00ff9ed655ca69972891f8b0801025265f8cad4521670088275c7da3d6136aeda7ebb6a33554f64cc7aef362c73
 DIST cython-3.0.5.gh.tar.gz 2756583 BLAKE2B 
d9b5af97933030fc1ac49677a5f3fd8194ba6e685dccd257f4ef4af206565ae2fa6f72c1268d8d0604b6fd6f2d8147c542501e8e319588bfdc4a7f40622976ff
 SHA512 
585d3fe810ace55278fcc6ea4508b3b5259320f92998cd688da787cd5f88ac5fc2467025f20da6d968969eb3296ae9c517136d24a4dbb475441271227968f6be
 DIST cython-3.0.6.gh.tar.gz 2759853 BLAKE2B 
fdcbb870418eebfb2e55e28f7223699fee4fb06d52f9f41db55b30fbe6ba6ee3de42af9bbdd8930d418ec790dec195546486ea45c370e2df122d6fada08d38cf
 SHA512 
f1d33775166d0b6541ea98bee5d4186fc6128aad788323224397c1f3ba0a058141ac84a8b3baa4885204dcbf0979141bc4b5316342003e96208952f040f31753
+DIST cython-3.0.7.gh.tar.gz 2761333 BLAKE2B 
f19f920726ee9001ecacd3f9a104ecb44ea2a26f40897e1a8856bc7fdc47b4c9b9386d72f4dabeba02a05412dab0d5ddc5de8167e08489ca31587240d6fcd135
 SHA512 
6d93cfb76265ffe11d4ba6ae2d4e88ce040c64a12b4acc8b236b4b282a82d2f0cc09abdd6149d6b4d0b6c86f182e1185e14ddd4241ebdda899f07524e9833f8e

diff --git a/dev-python/cython/cython-3.0.7.ebuild 
b/dev-python/cython/cython-3.0.7.ebuild
new file mode 100644
index ..001a1bda5642
--- /dev/null
+++ b/dev-python/cython/cython-3.0.7.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_TESTED=( python3_{10..12} )
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 multiprocessing toolchain-funcs
+
+MY_P=${P/_rc/rc}
+DESCRIPTION="A Python to C compiler"
+HOMEPAGE="
+   https://cython.org/
+   https://github.com/cython/cython/
+   https://pypi.org/project/Cython/
+"
+SRC_URI="
+   https://github.com/cython/cython/archive/${PV/_rc/rc}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/numpy[${PYTHON_USEDEP}]
+   ' "${PYTHON_TESTED[@]}")
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.29.22-spawn-multiprocessing.patch"
+   "${FILESDIR}/${PN}-0.29.23-test_exceptions-py310.patch"
+   "${FILESDIR}/${PN}-0.29.23-pythran-parallel-install.patch"
+)
+
+distutils_enable_sphinx docs \
+   dev-python/jinja \
+   dev-python/sphinx-issues \
+   dev-python/sphinx-tabs
+
+python_compile() {
+   # Python gets confused when it is in sys.path before build.
+   local -x PYTHONPATH=
+
+   distutils-r1_python_compile
+}
+
+python_test() {
+   if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
+   einfo "Skipping tests on ${EPYTHON} (xfail)"
+   return
+   fi
+
+   # Needed to avoid confusing cache tests
+   unset CYTHON_FORCE_REGEN
+
+   tc-export CC
+   # https://github.com/cython/cython/issues/1911
+   local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
+   "${PYTHON}" runtests.py \
+   -vv \
+   -j "$(makeopts_jobs)" \
+   --work-dir "${BUILD_DIR}"/tests \
+   --no-examples \
+   --no-code-style \
+   || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+   local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
+   distutils-r1_python_install_all
+}



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

2023-12-19 Thread Sam James
commit: fc9c466cb2cd6177c998f95209b822787bf8fe10
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 19 13:52:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 20 01:13:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9c466c

dev-python/cython: add 0.29.37.1

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

 dev-python/cython/Manifest|  1 +
 dev-python/cython/cython-0.29.37.1.ebuild | 94 +++
 2 files changed, 95 insertions(+)

diff --git a/dev-python/cython/Manifest b/dev-python/cython/Manifest
index 7bd49ccadde4..b0866ef9561a 100644
--- a/dev-python/cython/Manifest
+++ b/dev-python/cython/Manifest
@@ -1,4 +1,5 @@
 DIST cython-0.29.36.gh.tar.gz 2115333 BLAKE2B 
6d43779c7222ff65d7de3a35ec18ef636480807d53480a8f94cc8c92d462fcc2f4d201a3bbf6e840a11fd33025e32c53f85626b05c131d10eed2859cdca7eb2d
 SHA512 
a086fe1a11290cd3c870b891e61a0a0e2595bab9c26888024a758b6950c07059346d682fa9349e46c0af89805abbdd750059b3189960b8ce18007dfb5eb4391a
+DIST cython-0.29.37.1.gh.tar.gz 2115631 BLAKE2B 
b81e527ee1da7d16d074102378b531e4b0c161a3d66e47df46b624b02464cbd5c3d08d0e32f8175d56807ed8c6603108b85953db9f51892cfdf8952b4d287399
 SHA512 
6038499f13914b8a1957eee4d04e0499f448c89c3d519320e5218bf518aacb7d345f3c48614839222eaee016edf549b719520500b0088d28163635a74d35f3c6
 DIST cython-3.0.2.gh.tar.gz 2744583 BLAKE2B 
f631891870a6ce24acf2bcde75ebcb9775cf0df7840fe9d7b138cfdea64d54e9253a53d35d892a9086f251c1294d9414eec8521218d031840a3cd06903fefb86
 SHA512 
f55be138efdca6ca61bd39c6f2fab736244328a170a6f6c9bda87036e022c846930b209e9e9101fad889cb179d6e60034ba6f299f14b3056536d46235b438eb7
 DIST cython-3.0.3.gh.tar.gz 2753188 BLAKE2B 
0e6d40533f1cebf3c4217dc19aeebc2f873a8bacb94e68810e81d1c6d4cd75176de88516f2d82f43b36107656b6cd5e6990547e93bd8436b1aa93c73ccda6eaf
 SHA512 
c27c16abaf0122ad61e0eeb92aa80a33fc491332b8ebec209cd1810d2b0e3bf14fe1e81838803b86f407520a6d6f7ab8b84d97e495e7d91fd6f7702a46980caa
 DIST cython-3.0.4.gh.tar.gz 2754689 BLAKE2B 
5418b8c374565894deb07e7a3f2fe242e1ef43eed5d716cbd9c6b9fd3d62088d9982eb156c981fa9f6edcf42592f2249f9eb450d16ef908be464e357ee9bbea7
 SHA512 
bc87e38f9c188a5311f75f49ba4b9ec1ee0af00ff9ed655ca69972891f8b0801025265f8cad4521670088275c7da3d6136aeda7ebb6a33554f64cc7aef362c73

diff --git a/dev-python/cython/cython-0.29.37.1.ebuild 
b/dev-python/cython/cython-0.29.37.1.ebuild
new file mode 100644
index ..3db83925618c
--- /dev/null
+++ b/dev-python/cython/cython-0.29.37.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_TESTED=( python3_{10..11} )
+# 3.12 not tested yet for https://github.com/cython/cython/issues/5285.
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_12 pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 multiprocessing toolchain-funcs elisp-common
+
+DESCRIPTION="A Python to C compiler"
+HOMEPAGE="
+   https://cython.org/
+   https://github.com/cython/cython/
+   https://pypi.org/project/Cython/
+"
+SRC_URI="
+   https://github.com/cython/cython/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+IUSE="emacs test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   emacs? ( >=app-editors/emacs-23.1:* )
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/numpy[${PYTHON_USEDEP}]
+   ' "${PYTHON_TESTED[@]}")
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.29.22-spawn-multiprocessing.patch"
+   "${FILESDIR}/${PN}-0.29.23-test_exceptions-py310.patch"
+   "${FILESDIR}/${PN}-0.29.23-pythran-parallel-install.patch"
+)
+
+SITEFILE=50cython-gentoo.el
+
+distutils_enable_sphinx docs
+
+python_compile() {
+   # Python gets confused when it is in sys.path before build.
+   local -x PYTHONPATH=
+
+   distutils-r1_python_compile
+}
+
+python_compile_all() {
+   use emacs && elisp-compile Tools/cython-mode.el
+}
+
+python_test() {
+   if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
+   einfo "Skipping tests on ${EPYTHON} (xfail)"
+   return
+   fi
+
+   tc-export CC
+   # https://github.com/cython/cython/issues/1911
+   local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
+   "${PYTHON}" runtests.py -vv -j "$(makeopts_jobs)" --work-dir 
"${BUILD_DIR}"/tests ||
+   die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+   local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
+   distutils-r1_python_install_all
+
+   if use emacs; then
+   elisp-install ${PN} Tools/cython-mode.*
+   elisp-site-file-install 

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

2023-12-19 Thread Leonardo Hernandez
commit: f82a0e5527ac554b2688b41ddd0209f89248025e
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Wed Dec 20 01:11:05 2023 +
Commit: Leonardo Hernandez  proton  me>
CommitDate: Wed Dec 20 01:11:15 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f82a0e55

dev-util/reuse: treeclean, moved to ::gentoo

Signed-off-by: Leonardo Hernández Hernández  proton.me>

 dev-util/reuse/Manifest   |  2 --
 dev-util/reuse/metadata.xml   | 10 
 dev-util/reuse/reuse-2.0.0.ebuild | 50 ---
 dev-util/reuse/reuse-2.1.0.ebuild | 50 ---
 4 files changed, 112 deletions(-)

diff --git a/dev-util/reuse/Manifest b/dev-util/reuse/Manifest
deleted file mode 100644
index b3a8bb0106..00
--- a/dev-util/reuse/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST reuse-2.0.0.tar.gz 222637 BLAKE2B 
abcf7adbf110e7c3721eef26a56741dae3d69f9ccf31025807e158317b9dd0bcee2b38731ca7897a7671afa602040119d275488b2c198b1a74e32b99b8477cdb
 SHA512 
0716fc48c5cf6a8dda3c8c962c518554fdd2d0f71502eaa636dd4effa86a135c5819e6d7e62a1420174fce5c80ad6d7c3174389170b7680006fcc137c35cdb4c
-DIST reuse-2.1.0.tar.gz 224518 BLAKE2B 
328bafdeea1740afa1346d134be38fddd6cb7cedebea25eff4fb46f9935bef6ea0a605092798e4b5e256f43068459c2e4162f13540b6d62d3a3fd2596f5e6ba1
 SHA512 
8353ee53dd503d8dc3e956f0f13a7f0d4d80218e8b59a0bb972ecd4a80ec3b737548ad2c46177a5ba27a1c288af2c0b993befc1e0e88533af663094c3d1bcf38

diff --git a/dev-util/reuse/metadata.xml b/dev-util/reuse/metadata.xml
deleted file mode 100644
index e0bf126da0..00
--- a/dev-util/reuse/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   
-   https://reuse.readthedocs.io/
-   reuse
-   fsfe/reuse-tool
-   
-

diff --git a/dev-util/reuse/reuse-2.0.0.ebuild 
b/dev-util/reuse/reuse-2.0.0.ebuild
deleted file mode 100644
index 5ff64614b8..00
--- a/dev-util/reuse/reuse-2.0.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=poetry
-inherit distutils-r1 pypi
-
-DESCRIPTION="A tool for compliance with the REUSE recommendations"
-HOMEPAGE="
-   https://reuse.software/
-   https://pypi.org/project/reuse/
-   https://github.com/fsfe/reuse-tool
-"
-
-LICENSE="Apache-2.0 CC0-1.0 CC-BY-SA-4.0 GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-python/boolean-py[${PYTHON_USEDEP}]
-   dev-python/binaryornot[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/license-expression[${PYTHON_USEDEP}]
-   dev-python/python-debian[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   sys-devel/gettext
-   test? (
-   dev-vcs/git
-   dev-vcs/mercurial
-   )
-"
-
-DOCS=( AUTHORS.rst CHANGELOG.md README.md )
-
-distutils_enable_tests pytest
-
-# [Errno 2] No such file or directory: '../README.md'
-#distutils_enable_sphinx docs \
-   #dev-python/furo \
-   #dev-python/recommonmark \
-   #dev-python/sphinx-autodoc-typehints \
-   #dev-python/sphinxcontrib-apidoc
-
-python_test() {
-   cd "${T}" || die
-   epytest "${S}"/tests
-}

diff --git a/dev-util/reuse/reuse-2.1.0.ebuild 
b/dev-util/reuse/reuse-2.1.0.ebuild
deleted file mode 100644
index 5ff64614b8..00
--- a/dev-util/reuse/reuse-2.1.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=poetry
-inherit distutils-r1 pypi
-
-DESCRIPTION="A tool for compliance with the REUSE recommendations"
-HOMEPAGE="
-   https://reuse.software/
-   https://pypi.org/project/reuse/
-   https://github.com/fsfe/reuse-tool
-"
-
-LICENSE="Apache-2.0 CC0-1.0 CC-BY-SA-4.0 GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-python/boolean-py[${PYTHON_USEDEP}]
-   dev-python/binaryornot[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/license-expression[${PYTHON_USEDEP}]
-   dev-python/python-debian[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   sys-devel/gettext
-   test? (
-   dev-vcs/git
-   dev-vcs/mercurial
-   )
-"
-
-DOCS=( AUTHORS.rst CHANGELOG.md README.md )
-
-distutils_enable_tests pytest
-
-# [Errno 2] No such file or directory: '../README.md'
-#distutils_enable_sphinx docs \
-   #dev-python/furo \
-   #dev-python/recommonmark \
-   #dev-python/sphinx-autodoc-typehints \
-   #dev-python/sphinxcontrib-apidoc
-
-python_test() {
-   cd "${T}" || die
-   epytest "${S}"/tests
-}



[gentoo-commits] repo/proj/guru:dev commit in: mail-client/mailspring-bin/

2023-12-19 Thread Adel KARA SLIMANE
commit: f80d6fe8f08807aa9aba89348722edad38b53625
Author: Adel KARA SLIMANE  zegrapher  com>
AuthorDate: Wed Dec 20 00:29:14 2023 +
Commit: Adel KARA SLIMANE  karaslimane  com>
CommitDate: Wed Dec 20 00:30:02 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f80d6fe8

mail-client/mailspring-bin: depend on 5.3 SLOT of sys-libs/db

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

Signed-off-by: Adel KARA SLIMANE  zegrapher.com>

 ...mailspring-bin-1.13.2-r2.ebuild => mailspring-bin-1.13.2-r3.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mail-client/mailspring-bin/mailspring-bin-1.13.2-r2.ebuild 
b/mail-client/mailspring-bin/mailspring-bin-1.13.2-r3.ebuild
similarity index 97%
rename from mail-client/mailspring-bin/mailspring-bin-1.13.2-r2.ebuild
rename to mail-client/mailspring-bin/mailspring-bin-1.13.2-r3.ebuild
index 69ce6d49e4..c942e91833 100644
--- a/mail-client/mailspring-bin/mailspring-bin-1.13.2-r2.ebuild
+++ b/mail-client/mailspring-bin/mailspring-bin-1.13.2-r3.ebuild
@@ -28,10 +28,9 @@ RDEPEND="
net-print/cups
sys-apps/dbus
sys-devel/libtool
-   sys-libs/db
+   sys-libs/db:5.3
x11-libs/cairo
x11-libs/gtk+:3
-   x11-libs/gtk+:3
x11-libs/libdrm
x11-libs/libX11
x11-libs/libxcb



[gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/

2023-12-19 Thread James Le Cuirot
commit: 4da57ad96e0c8e21cae00719d1fba20f4c2be046
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Dec 19 23:09:05 2023 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Dec 19 23:09:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da57ad9

media-tv/v4l-utils: Add transitional ebuild before we last-rite this package

I didn't think this would be necessary, but Portage cannot backtrack around
blockers, causing issues for users with v4l-utils in their world file.

Closes: https://bugs.gentoo.org/920321
Signed-off-by: James Le Cuirot  gentoo.org>

 media-tv/v4l-utils/v4l-utils-1.26.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/media-tv/v4l-utils/v4l-utils-1.26.ebuild 
b/media-tv/v4l-utils/v4l-utils-1.26.ebuild
new file mode 100644
index ..4c300a474c80
--- /dev/null
+++ b/media-tv/v4l-utils/v4l-utils-1.26.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Transitional package to be superseded by media-libs/libv4l[utils]"
+HOMEPAGE="https://git.linuxtv.org/v4l-utils.git;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+bpf dvb qt5"
+
+RDEPEND=">=media-libs/libv4l-${PV}[utils,bpf?,dvb?,qt5?]"



[gentoo-commits] repo/gentoo:master commit in: media-sound/zynaddsubfx/files/, media-sound/zynaddsubfx/

2023-12-19 Thread Miroslav Å ulc
commit: c318dc516a2b39839d4c2b026111e87652f5f4f9
Author: Miroslav Å ulc  gentoo  org>
AuthorDate: Tue Dec 19 22:34:13 2023 +
Commit: Miroslav Å ulc  gentoo  org>
CommitDate: Tue Dec 19 22:35:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c318dc51

media-sound/zynaddsubfx: build new UI instead of unmaintained one

Closes: https://bugs.gentoo.org/920178
Closes: https://github.com/gentoo/gentoo/pull/34315
Signed-off-by: Jason A. Donenfeld  gentoo.org>
Signed-off-by: Miroslav Å ulc  gentoo.org>

 media-sound/zynaddsubfx/Manifest   |   1 +
 .../files/zyn-fusion-ui-3.0.6-cflags_ldflags.patch |  19 +++
 .../zyn-fusion-ui-3.0.6-libzest_location.patch |  11 ++
 .../files/zyn-fusion-ui-3.0.6-makefile_find.patch  |  69 ++
 .../zyn-fusion-ui-3.0.6-system_wide_location.patch |  40 ++
 .../zynaddsubfx/files/zynaddsubfx-3.0.6-docs.patch |   2 -
 .../files/zynaddsubfx-3.0.6-libzest_location.patch |  11 ++
 .../files/zynaddsubfx-3.0.6-stdint.patch   | 149 -
 .../zynaddsubfx/zynaddsubfx-3.0.6-r2.ebuild| 113 
 9 files changed, 376 insertions(+), 39 deletions(-)

diff --git a/media-sound/zynaddsubfx/Manifest b/media-sound/zynaddsubfx/Manifest
index 899fdbeb6639..748fcac41684 100644
--- a/media-sound/zynaddsubfx/Manifest
+++ b/media-sound/zynaddsubfx/Manifest
@@ -1 +1,2 @@
+DIST zyn-fusion-ui-src-3.0.6.tar.bz2 5266884 BLAKE2B 
d9715c319bfd313792f550e12a47939dec665eda6ef395f8bb7a175b11f0922a4037428f99dc95fe749c40074ce8976fa9d257b6bc1e8f1feb63ca943c3bdd76
 SHA512 
7f195cf6a193376160441863d725383640bc75ad0c21b8ef7786da67a42fe014be103e3c3d9c29c83ffc3d78b9e11a4031a6b3922d457a336d184228c16077cd
 DIST zynaddsubfx-3.0.6.tar.bz2 10001014 BLAKE2B 
4adbeffb9bc0bd77bf81a6734f5c26fc676426e644e27cebb8e54e8d74d869c0e1b468782cd1a64aacef8f9b788d434a8d30a194944650eea03c4fd146ee7bf7
 SHA512 
86311f00d97e20c7eb22a46c99736c56765ed9737e728ef380a324e4a92c731086ed74f5d7bfeae104b690ab1ee1b40bfb8f240bc4c46f8afd47308ec48cbcea

diff --git 
a/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-cflags_ldflags.patch 
b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-cflags_ldflags.patch
new file mode 100644
index ..005b1733e5e2
--- /dev/null
+++ b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-cflags_ldflags.patch
@@ -0,0 +1,19 @@
+--- i/Makefile
 w/Makefile
+@@ -16,10 +16,14 @@ linux:
+   $(CC) -shared -o libzest.so `find mruby/build/host -type f | grep -v 
mrbc | grep -e "\.o$$" | grep -v bin` ./deps/libnanovg.a \
+   ./deps/libnanovg.a \
+   src/osc-bridge/libosc-bridge.a \
+-  `pkg-config --libs libuv` -lm -lX11 -lGL -lpthread
++  $(CFLAGS) \
++  `pkg-config --libs libuv` -lm -lX11 -lGL -lpthread \
++  $(LDFLAGS)
+   $(CC) test-libversion.c deps/pugl/pugl/pugl_x11.c \
++  $(CFLAGS) \
+ -DPUGL_HAVE_GL \
+--ldl -o zest -lX11 -lGL -lpthread -I deps/pugl -std=gnu99 
-Wno-trigraphs
++-ldl -o zest -lX11 -lGL -lpthread -I deps/pugl -std=gnu99 
-Wno-trigraphs \
++  $(LDFLAGS)
+ 
+ osx: deps/libuv.a
+   ruby ./rebuild-fcache.rb

diff --git 
a/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-libzest_location.patch 
b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-libzest_location.patch
new file mode 100644
index ..a24921196fe6
--- /dev/null
+++ b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-libzest_location.patch
@@ -0,0 +1,11 @@
+--- i/test-libversion.c
 w/test-libversion.c
+@@ -660,7 +660,7 @@ int main(int argc, char **argv)
+ if(!handle)
+ handle = dlopen("libzest.so", RTLD_LAZY);
+ if(!handle)
+-handle = dlopen("/opt/zyn-fusion/libzest.so", RTLD_LAZY);
++handle = dlopen("/usr/lib64/zynaddsubfx/libzest.so", RTLD_LAZY);
+ #endif
+ if(!handle) {
+ printf("[ERROR] Cannot Open libzest.so\n");

diff --git 
a/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-makefile_find.patch 
b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-makefile_find.patch
new file mode 100644
index ..77cc47913f57
--- /dev/null
+++ b/media-sound/zynaddsubfx/files/zyn-fusion-ui-3.0.6-makefile_find.patch
@@ -0,0 +1,69 @@
+From c1f5fcbad97c20b14a35e894477081d69519f6b0 Mon Sep 17 00:00:00 2001
+From: David Runge 
+Date: Sat, 21 May 2022 13:19:48 +0200
+Subject: [PATCH] Use find internals instead of piping into grep
+
+Makefile:
+Use GNU find internals (e.g. `-iname`, `-exec` and conditionals) instead
+of piping into multiple instances of grep.
+Simplify line counting by using wc from find.
+--- a/Makefile
 b/Makefile
+@@ -13,7 +13,7 @@ linux:
+ # force rebuilding all code that depends on hotloading.
+   touch src/mruby-widget-lib/src/api.c  
+   cd mruby && $(HOTLOADING) MRUBY_CONFIG=../build_config.rb 
rake
+-  $(CC) -shared -o libzest.so `find mruby/build/host -type f | grep -v 

[gentoo-commits] proj/kde:master commit in: eclass/

2023-12-19 Thread Andreas Sturmlechner
commit: ac80a202e7cda39783fc6309d3d0ed5c70f6a15e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 22:12:19 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 22:16:07 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ac80a202

gear.kde.org.eclass: Add new KF6 ports to SLOT=5 blocklist

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

 eclass/gear.kde.org.eclass | 61 +-
 1 file changed, 60 insertions(+), 1 deletion(-)

diff --git a/eclass/gear.kde.org.eclass b/eclass/gear.kde.org.eclass
index 4a15eebd71..0ef264ff0c 100644
--- a/eclass/gear.kde.org.eclass
+++ b/eclass/gear.kde.org.eclass
@@ -66,12 +66,23 @@ fi
 # list of applications ported to KF6 in SLOT=6 having to block SLOT=5
 if $(ver_test -gt 24.01.75); then
case ${PN} in
+   akonadi | \
+   akonadi-calendar | \
+   akonadi-contacts | \
+   akonadi-import-wizard | \
+   akonadi-mime | \
+   akonadi-notes | \
+   akonadi-search | \
+   akonadiconsole | \
+   akregator | \
analitza | \
ark | \
baloo-widgets | \
blinken | \
bomber | \
bovo | \
+   calendarjanitor | \
+   calendarsupport | \
dolphin | \
dolphin-plugins-dropbox | \
dolphin-plugins-git | \
@@ -80,11 +91,20 @@ if $(ver_test -gt 24.01.75); then
dolphin-plugins-subversion | \
dragon | \
elisa | \
+   eventviews | \
filelight | \
granatier | \
+   grantlee-editor | \
+   grantleetheme | \
+   incidenceeditor | \
+   kaccounts-integration | \
+   kaccounts-providers | \
+   kaddressbook | \
kajongg | \
+   kalarm | \
kalgebra | \
kamera | \
+   kanagram | \
kapman | \
kapptemplate | \
kate | \
@@ -99,12 +119,15 @@ if $(ver_test -gt 24.01.75); then
kbruch | \
kcachegrind | \
kcalc | \
+   kcalutils | \
kcharselect | \
kcolorchooser | \
kcron | \
kdebugsettings | \
kdegraphics-mobipocket | \
kdenetwork-filesharing | \
+   kdepim-addons | \
+   kdepim-runtime | \
kdf | \
kdialog | \
kdiamond | \
@@ -114,36 +137,55 @@ if $(ver_test -gt 24.01.75); then
kgeography | \
kget | \
kgoldrunner | \
+   khangman | \
khelpcenter | \
+   kidentitymanagement | \
kigo | \
killbots | \
+   kimap | \
kio-extras | \
kiriki | \
kiten | \
+   kitinerary | \
kjumpingcube | \
+   kldap | \
+   kleopatra | \
klettres | \
klickety | \
klines | \
kmag | \
kmahjongg | \
+   kmail | \
+   kmail-account-wizard | \
+   kmailtransport | \
+   kmbox | \
+   kmime | \
kmines | \
kmousetool | \
kmouth | \
knavalbattle | \
knetwalk | \
knights | \
+   knotes | \
kolf | \
kollision | \
konqueror | \
konquest | \
konsole | \
+   konsolekalendar | \
+   kontact | \
+   kontactinterface | \
kontrast | \
+   korganizer | \
kpat | \
+   kpimtextedit | \
+   kpkpass | \
kpmcore | \
kreversi | \
kruler | \
kshisen | \
ksirk | \
+   ksmtp | \
ksnakeduel | \
kspaceduel | \
ksquares | \
@@ -157,21 +199,38 @@ if $(ver_test -gt 24.01.75); then
kubrick | \
kwalletmanager | \
kweather | \
+   kwordquiz | \
kwrite | \
+   libgravatar | \
libkdegames | \
+   libkdepim | \
+   libkgapi | \
+   libkleo | \
libkmahjongg | \
+   libksieve | \
+   libktnef | \
libktorrent | \
lskat | \
+   mailcommon | \
+   mailimporter | \
   

[gentoo-commits] proj/kde:master commit in: kde-apps/ktp-auth-handler/

2023-12-19 Thread Andreas Sturmlechner
commit: 091223cd7dbbb45518e867a675ad26eacaa376b6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:22 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:22 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=091223cd

kde-apps/ktp-auth-handler: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-apps/ktp-auth-handler/ktp-auth-handler-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-apps/ktp-auth-handler/ktp-auth-handler-.ebuild 
b/kde-apps/ktp-auth-handler/ktp-auth-handler-.ebuild
index 051ddbb91d..55aa949947 100644
--- a/kde-apps/ktp-auth-handler/ktp-auth-handler-.ebuild
+++ b/kde-apps/ktp-auth-handler/ktp-auth-handler-.ebuild
@@ -22,7 +22,10 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtnetwork-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-apps/kaccounts-integration-23.08.3:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=kde-apps/ktp-common-internals-${PVCUT}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5



[gentoo-commits] proj/kde:master commit in: kde-apps/khangman/

2023-12-19 Thread Andreas Sturmlechner
commit: 4ee61eafd53e25b19213d2c8831ddb0dc8b3a4a3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:58:38 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:58:38 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4ee61eaf

kde-apps/khangman: Relax kde-apps/kdeedu-data slot dep to :*

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

 kde-apps/khangman/khangman-23.08.49..ebuild | 2 +-
 kde-apps/khangman/khangman-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/khangman/khangman-23.08.49..ebuild 
b/kde-apps/khangman/khangman-23.08.49..ebuild
index 18e4a1e5ea..cc0230d41a 100644
--- a/kde-apps/khangman/khangman-23.08.49..ebuild
+++ b/kde-apps/khangman/khangman-23.08.49..ebuild
@@ -40,5 +40,5 @@ RDEPEND="${DEPEND}
>=dev-qt/qtgraphicaleffects-${QTMIN}:5
>=dev-qt/qtmultimedia-${QTMIN}:5
>=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=kde-apps/kdeedu-data-${PVCUT}:5
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "

diff --git a/kde-apps/khangman/khangman-.ebuild 
b/kde-apps/khangman/khangman-.ebuild
index 7eac24d4ea..27f5ba5721 100644
--- a/kde-apps/khangman/khangman-.ebuild
+++ b/kde-apps/khangman/khangman-.ebuild
@@ -37,5 +37,5 @@ DEPEND="
 RDEPEND="${DEPEND}
>=dev-qt/qt5compat-${QTMIN}:6[qml]
>=dev-qt/qtmultimedia-${QTMIN}:6
-   >=kde-apps/kdeedu-data-${PVCUT}:6
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "



[gentoo-commits] proj/kde:master commit in: kde-apps/parley/

2023-12-19 Thread Andreas Sturmlechner
commit: e2e6bcc52c31116763d3b27f0428ca963f6c550b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:58:45 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:58:45 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e2e6bcc5

kde-apps/parley: Relax kde-apps/kdeedu-data slot dep to :*

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

 kde-apps/parley/parley-23.08.49..ebuild | 2 +-
 kde-apps/parley/parley-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/parley/parley-23.08.49..ebuild 
b/kde-apps/parley/parley-23.08.49..ebuild
index 7557043914..be76272f39 100644
--- a/kde-apps/parley/parley-23.08.49..ebuild
+++ b/kde-apps/parley/parley-23.08.49..ebuild
@@ -46,7 +46,7 @@ DEPEND="
>=kde-frameworks/sonnet-${KFMIN}:5
 "
 RDEPEND="${DEPEND}
-   >=kde-apps/kdeedu-data-${PVCUT}:5
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "
 
 src_prepare() {

diff --git a/kde-apps/parley/parley-.ebuild 
b/kde-apps/parley/parley-.ebuild
index e88eba45de..4e4a869a27 100644
--- a/kde-apps/parley/parley-.ebuild
+++ b/kde-apps/parley/parley-.ebuild
@@ -43,7 +43,7 @@ DEPEND="
>=kde-frameworks/sonnet-${KFMIN}:6
 "
 RDEPEND="${DEPEND}
-   >=kde-apps/kdeedu-data-${PVCUT}:6
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "
 
 src_prepare() {



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-welcome/

2023-12-19 Thread Andreas Sturmlechner
commit: 751c226f312836c5b2e8455047b795797eabd854
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:55 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:55 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=751c226f

kde-plasma/plasma-welcome: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-plasma/plasma-welcome/plasma-welcome-5.27.49..ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-welcome/plasma-welcome-5.27.49..ebuild 
b/kde-plasma/plasma-welcome/plasma-welcome-5.27.49..ebuild
index 478e2527fc..99deb0f74b 100644
--- a/kde-plasma/plasma-welcome/plasma-welcome-5.27.49..ebuild
+++ b/kde-plasma/plasma-welcome/plasma-welcome-5.27.49..ebuild
@@ -33,7 +33,10 @@ DEPEND="
>=kde-frameworks/kservice-${KFMIN}:5
>=kde-frameworks/kwindowsystem-${KFMIN}:5
>=kde-plasma/libplasma-${KFMIN}:5
-   kaccounts? ( kde-apps/kaccounts-integration:5 )
+   kaccounts? ( || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   ) )
telemetry? ( kde-frameworks/kuserfeedback:5 )
 "
 RDEPEND="${DEPEND}



[gentoo-commits] proj/kde:master commit in: kde-apps/kdeedu-meta/

2023-12-19 Thread Andreas Sturmlechner
commit: 6c051871f1a012e828f0e8fa7cbeee11aa7b110c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:58:32 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:58:32 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6c051871

kde-apps/kdeedu-meta: Relax kde-apps/kdeedu-data slot dep to :*

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

 kde-apps/kdeedu-meta/kdeedu-meta-23.08.49..ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdeedu-meta/kdeedu-meta-23.08.49..ebuild 
b/kde-apps/kdeedu-meta/kdeedu-meta-23.08.49..ebuild
index adae801bb2..63d1c392f6 100644
--- a/kde-apps/kdeedu-meta/kdeedu-meta-23.08.49..ebuild
+++ b/kde-apps/kdeedu-meta/kdeedu-meta-23.08.49..ebuild
@@ -18,7 +18,7 @@ RDEPEND="
>=kde-apps/kalzium-${PV}:${SLOT}
>=kde-apps/kanagram-${PV}:${SLOT}
>=kde-apps/kbruch-${PV}:${SLOT}
-   >=kde-apps/kdeedu-data-${PV}:${SLOT}
+   >=kde-apps/kdeedu-data-${PV}:*
>=kde-apps/kgeography-${PV}:${SLOT}
>=kde-apps/khangman-${PV}:${SLOT}
>=kde-apps/kig-${PV}:${SLOT}



[gentoo-commits] proj/kde:master commit in: kde-apps/kanagram/

2023-12-19 Thread Andreas Sturmlechner
commit: 57ee2eda6db305aa411a880e73da73e017e259da
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:58:09 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:58:09 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=57ee2eda

kde-apps/kanagram: Relax kde-apps/kdeedu-data slot dep to :*

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

 kde-apps/kanagram/kanagram-23.08.49..ebuild | 2 +-
 kde-apps/kanagram/kanagram-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kanagram/kanagram-23.08.49..ebuild 
b/kde-apps/kanagram/kanagram-23.08.49..ebuild
index 2b8fd83755..686aa9d1d2 100644
--- a/kde-apps/kanagram/kanagram-23.08.49..ebuild
+++ b/kde-apps/kanagram/kanagram-23.08.49..ebuild
@@ -37,7 +37,7 @@ DEPEND="
 RDEPEND="${DEPEND}
>=dev-qt/qtmultimedia-${QTMIN}:5[qml]
>=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=kde-apps/kdeedu-data-${PVCUT}:5
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "
 
 src_configure() {

diff --git a/kde-apps/kanagram/kanagram-.ebuild 
b/kde-apps/kanagram/kanagram-.ebuild
index 6a93875f6e..ca6949d2d1 100644
--- a/kde-apps/kanagram/kanagram-.ebuild
+++ b/kde-apps/kanagram/kanagram-.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 "
 RDEPEND="${DEPEND}
>=dev-qt/qtmultimedia-${QTMIN}:6[qml]
-   >=kde-apps/kdeedu-data-${PVCUT}:6
+   >=kde-apps/kdeedu-data-${PVCUT}:*
 "
 
 src_configure() {



[gentoo-commits] proj/kde:master commit in: kde-frameworks/purpose/

2023-12-19 Thread Andreas Sturmlechner
commit: 77bea573abaab61d6fc7d83b884996c22754fb46
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:35 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:35 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=77bea573

kde-frameworks/purpose: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-frameworks/purpose/purpose-5.239..ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-frameworks/purpose/purpose-5.239..ebuild 
b/kde-frameworks/purpose/purpose-5.239..ebuild
index 144ac8a093..b9a589cedf 100644
--- a/kde-frameworks/purpose/purpose-5.239..ebuild
+++ b/kde-frameworks/purpose/purpose-5.239..ebuild
@@ -32,7 +32,10 @@ DEPEND="
=kde-frameworks/kservice-${PVCUT}*:5
=kde-frameworks/prison-${PVCUT}*:5
kaccounts? (
-   >=kde-apps/kaccounts-integration-19.04.3:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=net-libs/accounts-qt-1.16-r1[qt5(-)]
)
 "



[gentoo-commits] proj/kde:master commit in: kde-misc/kio-gdrive/

2023-12-19 Thread Andreas Sturmlechner
commit: 48cee61a79be4f305c6a3024b1703854621d222f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:41 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:41 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=48cee61a

kde-misc/kio-gdrive: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-misc/kio-gdrive/kio-gdrive-23.08.49..ebuild | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/kde-misc/kio-gdrive/kio-gdrive-23.08.49..ebuild 
b/kde-misc/kio-gdrive/kio-gdrive-23.08.49..ebuild
index 0fa89a470d..8728a4bd4b 100644
--- a/kde-misc/kio-gdrive/kio-gdrive-23.08.49..ebuild
+++ b/kde-misc/kio-gdrive/kio-gdrive-23.08.49..ebuild
@@ -21,8 +21,11 @@ IUSE="+share"
 COMMON_DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-apps/kaccounts-integration-20.08.3:5
-   >=kde-apps/libkgapi-19.08.0:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
+   kde-apps/libkgapi:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/ki18n-${KFMIN}:5
>=kde-frameworks/kio-${KFMIN}:5
@@ -33,7 +36,7 @@ DEPEND="${COMMON_DEPEND}
>=dev-qt/qtnetwork-${QTMIN}:5
 "
 RDEPEND="${COMMON_DEPEND}
-   >=kde-apps/kaccounts-providers-20.08.3:5
+   kde-apps/kaccounts-providers:5
 "
 BDEPEND="dev-util/intltool"
 



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/

2023-12-19 Thread Andreas Sturmlechner
commit: d479c69bfd616cef57289c632ba0c6e0ca7bcf47
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:48 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:48 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d479c69b

kde-plasma/plasma-desktop: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild
index c3d21097f1..8d3cb22683 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild
@@ -92,7 +92,10 @@ COMMON_DEPEND="
x11-libs/xcb-util-keysyms
)
kaccounts? (
-   kde-apps/kaccounts-integration:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=net-libs/accounts-qt-1.16-r1[qt5(-)]
)
scim? ( app-i18n/scim )



[gentoo-commits] proj/kde:master commit in: kde-apps/akonadi/

2023-12-19 Thread Andreas Sturmlechner
commit: 4ec5a1df2f9532be71795379eacff396d5cefd97
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:41:37 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:41:37 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4ec5a1df

kde-apps/akonadi: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-apps/akonadi/akonadi-23.08.49..ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-apps/akonadi/akonadi-23.08.49..ebuild 
b/kde-apps/akonadi/akonadi-23.08.49..ebuild
index b6773b0863..76e8350b73 100644
--- a/kde-apps/akonadi/akonadi-23.08.49..ebuild
+++ b/kde-apps/akonadi/akonadi-23.08.49..ebuild
@@ -43,7 +43,10 @@ COMMON_DEPEND="
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
>=kde-frameworks/kxmlgui-${KFMIN}:5
kaccounts? (
-   >=kde-apps/kaccounts-integration-20.08.3:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=net-libs/accounts-qt-1.16-r1[qt5]
)
xml? ( dev-libs/libxml2 )



[gentoo-commits] proj/kde:master commit in: kde-apps/kaccounts-integration/

2023-12-19 Thread Andreas Sturmlechner
commit: 8d2ed19804df1fca7c2384299cddaa1ca2430ea2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:38:03 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:38:03 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8d2ed198

kde-apps/kaccounts-integration: Add IUSE qt5

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

 .../kaccounts-integration-.ebuild  | 55 --
 1 file changed, 51 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
index f9bb76b5e2..d0fe2fa698 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
@@ -4,10 +4,12 @@
 EAPI=8
 
 ECM_TEST="forceoptional"
+KF5MIN=5.106.0
 KFMIN=5.246.0
+QT5MIN=5.15.9
 QTMIN=6.6.0
 VIRTUALDBUS_TEST="true"
-inherit ecm gear.kde.org
+inherit ecm gear.kde.org multibuild
 
 DESCRIPTION="Administer web accounts for the sites and services across the 
Plasma desktop"
 HOMEPAGE="https://community.kde.org/KTp;
@@ -15,7 +17,7 @@ HOMEPAGE="https://community.kde.org/KTp;
 LICENSE="LGPL-2.1"
 SLOT="6"
 KEYWORDS=""
-IUSE=""
+IUSE="qt5"
 
 # bug #549444
 RESTRICT="test"
@@ -31,13 +33,29 @@ COMMON_DEPEND="
>=kde-frameworks/kio-${KFMIN}:6
>=kde-frameworks/kpackage-${KFMIN}:6
>=kde-frameworks/kwallet-${KFMIN}:6
-   >=net-libs/accounts-qt-1.16-r1[qt6]
-   >=net-libs/signond-8.61-r1[qt6]
+   >=net-libs/accounts-qt-1.16-r1[qt5?,qt6]
+   >=net-libs/signond-8.61-r1[qt5?,qt6]
+   qt5? (
+   >=dev-qt/qtdeclarative-${QT5MIN}:5
+   >=dev-qt/qtgui-${QT5MIN}:5
+   >=dev-qt/qtwidgets-${QT5MIN}:5
+   >=kde-frameworks/kconfig-${KF5MIN}:5
+   >=kde-frameworks/kcoreaddons-${KF5MIN}:5
+   >=kde-frameworks/kdbusaddons-${KF5MIN}:5
+   >=kde-frameworks/kdeclarative-${KF5MIN}:5
+   >=kde-frameworks/ki18n-${KF5MIN}:5
+   >=kde-frameworks/kio-${KF5MIN}:5
+   >=kde-frameworks/kwallet-${KF5MIN}:5
+   )
 "
 DEPEND="${COMMON_DEPEND}
dev-libs/qcoro
>=kde-frameworks/kcmutils-${KFMIN}:6
kde-plasma/kde-cli-tools:*
+   qt5? (
+   dev-libs/qcoro5
+   >=kde-frameworks/kcmutils-${KF5MIN}:5
+   )
 "
 # KAccountsMacros.cmake needs intltool
 RDEPEND="${COMMON_DEPEND}
@@ -46,4 +64,33 @@ RDEPEND="${COMMON_DEPEND}
 BDEPEND="
>=kde-frameworks/kpackage-${KFMIN}:6
sys-devel/gettext
+   qt5? ( >=kde-frameworks/kpackage-${KF5MIN}:5 )
 "
+
+pkg_setup() {
+   MULTIBUILD_VARIANTS=( $(usev qt5) default )
+}
+
+src_configure() {
+   my_src_configure() {
+   if [[ ${MULTIBUILD_VARIANT} == qt5 ]]; then
+   local mycmakeargs=( -DKF6_COMPAT_BUILD=ON )
+   fi
+
+   ecm_src_configure
+   }
+
+   multibuild_foreach_variant my_src_configure
+}
+
+src_compile() {
+   multibuild_foreach_variant cmake_src_compile
+}
+
+src_test() {
+   multibuild_foreach_variant ecm_src_test
+}
+
+src_install() {
+   multibuild_foreach_variant ecm_src_install
+}



[gentoo-commits] proj/kde:master commit in: kde-apps/ktp-common-internals/

2023-12-19 Thread Andreas Sturmlechner
commit: 7c834af75da82cd969bd30da32291820a3d954c0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:43:29 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:43:29 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7c834af7

kde-apps/ktp-common-internals: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-apps/ktp-common-internals/ktp-common-internals-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-apps/ktp-common-internals/ktp-common-internals-.ebuild 
b/kde-apps/ktp-common-internals/ktp-common-internals-.ebuild
index a0de023b96..a57ffdf900 100644
--- a/kde-apps/ktp-common-internals/ktp-common-internals-.ebuild
+++ b/kde-apps/ktp-common-internals/ktp-common-internals-.ebuild
@@ -46,7 +46,10 @@ RDEPEND="
>=net-libs/libotr-4.0.0
)
sso? (
-   >=kde-apps/kaccounts-integration-23.08.3:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=net-libs/accounts-qt-1.16-r1[qt5(-)]
net-libs/telepathy-accounts-signon
)



[gentoo-commits] proj/kde:master commit in: kde-apps/ktp-accounts-kcm/

2023-12-19 Thread Andreas Sturmlechner
commit: 8c3e02e3fa47748be4b1393b6f3738884c53d80f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:42:26 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:42:26 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8c3e02e3

kde-apps/ktp-accounts-kcm: Accept kde-apps/kaccounts-integration:6[qt5]

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

 kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild 
b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild
index 4d771c7929..2d9f79674e 100644
--- a/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild
+++ b/kde-apps/ktp-accounts-kcm/ktp-accounts-kcm-.ebuild
@@ -20,7 +20,10 @@ COMMON_DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtnetwork-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-apps/kaccounts-integration-23.08.3:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   kde-apps/kaccounts-integration:5
+   )
>=kde-frameworks/kcodecs-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5



[gentoo-commits] proj/kde:master commit in: kde-apps/kaccounts-providers/

2023-12-19 Thread Andreas Sturmlechner
commit: 804ed1654bad4db60d8a2498914bcf7ba485212f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 21:42:08 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 21:42:08 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=804ed165

kde-apps/kaccounts-providers: Accept kde-apps/kaccounts-integration:6[qt5]

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

 .../kaccounts-providers/kaccounts-providers-23.08.49..ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/kde-apps/kaccounts-providers/kaccounts-providers-23.08.49..ebuild 
b/kde-apps/kaccounts-providers/kaccounts-providers-23.08.49..ebuild
index 2377c8944e..639ce917ad 100644
--- a/kde-apps/kaccounts-providers/kaccounts-providers-23.08.49..ebuild
+++ b/kde-apps/kaccounts-providers/kaccounts-providers-23.08.49..ebuild
@@ -20,7 +20,10 @@ DEPEND="
>=dev-qt/qtdeclarative-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
-   >=kde-apps/kaccounts-integration-${PVCUT}:5
+   || (
+   kde-apps/kaccounts-integration:6[qt5]
+   >=kde-apps/kaccounts-integration-${PVCUT}:5
+   )
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/kdeclarative-${KFMIN}:5
>=kde-frameworks/ki18n-${KFMIN}:5



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

2023-12-19 Thread Craig Andrews
commit: f212b534688f8038dd89e56bdce1a693165085a6
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:40:37 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f212b534

net-misc/proxytunnel: add 1.12.0

Signed-off-by: Craig Andrews  gentoo.org>

 net-misc/proxytunnel/Manifest  |  1 +
 net-misc/proxytunnel/proxytunnel-1.12.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/net-misc/proxytunnel/Manifest b/net-misc/proxytunnel/Manifest
index 82769e032db0..60112e8fb086 100644
--- a/net-misc/proxytunnel/Manifest
+++ b/net-misc/proxytunnel/Manifest
@@ -1 +1,2 @@
 DIST proxytunnel-1.11.1.tar.gz 55935 BLAKE2B 
fb24dcf5351eb252d7ba661c667cab25066592f6b7356360225d1492fcb621a39954062ebeb63c5cc1b9b66499538d69b8412ee6a770c88257f4ef0397f627c0
 SHA512 
2cc59285ca63beb063f3408655f31b2e9748f11cfff70e39b07dc3381348dd92c71a66974e83d360565ea107e53d830a57bc375e940a51388ced406ec5907006
+DIST proxytunnel-1.12.0.tar.gz 57664 BLAKE2B 
3d5090a7f8f38fc928d68222e703913fcaade652c4d3cbf28b68682923c3558a7b3e17f00893a60b0cea4e27af185b50cf1ab52064e5125922c50716d5d9c0b7
 SHA512 
1a448728f49b34a3c6de2a876bfbd57b0f328f9f901db70cf8e6570eef81d2c26a0e0dbdfd566f683cea2d1b4816c01abc7049e5688b0335078034ec3f102b83

diff --git a/net-misc/proxytunnel/proxytunnel-1.12.0.ebuild 
b/net-misc/proxytunnel/proxytunnel-1.12.0.ebuild
new file mode 100644
index ..abdb6f3ed56f
--- /dev/null
+++ b/net-misc/proxytunnel/proxytunnel-1.12.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Connect stdin and stdout to a server via an HTTPS proxy"
+HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ 
https://proxytunnel.sourceforge.net/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="static"
+
+RDEPEND="dev-libs/openssl:="
+DEPEND="${RDEPEND}
+   app-text/asciidoc
+   app-text/xmlto
+   "
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CREDITS INSTALL.md KNOWN_ISSUES LICENSE.txt README.md RELNOTES 
TODO )
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86"
+fi
+
+src_prepare() {
+   default
+   sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
+}
+
+src_compile() {
+   use static && append-ldflags -static
+   emake CC="$(tc-getCC)"
+}
+
+src_install() {
+   emake install prefix="${EPREFIX}"/usr DESTDIR="${D}"
+   einstalldocs
+}



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

2023-12-19 Thread Craig Andrews
commit: b2d8cae942bf8aacb8f3c36554e0bca2294f0525
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:40:39 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d8cae9

net-misc/proxytunnel: drop 1.11.1

Signed-off-by: Craig Andrews  gentoo.org>

 net-misc/proxytunnel/Manifest  |  1 -
 net-misc/proxytunnel/proxytunnel-1.11.1.ebuild | 45 --
 2 files changed, 46 deletions(-)

diff --git a/net-misc/proxytunnel/Manifest b/net-misc/proxytunnel/Manifest
index 60112e8fb086..a26c3700e9fb 100644
--- a/net-misc/proxytunnel/Manifest
+++ b/net-misc/proxytunnel/Manifest
@@ -1,2 +1 @@
-DIST proxytunnel-1.11.1.tar.gz 55935 BLAKE2B 
fb24dcf5351eb252d7ba661c667cab25066592f6b7356360225d1492fcb621a39954062ebeb63c5cc1b9b66499538d69b8412ee6a770c88257f4ef0397f627c0
 SHA512 
2cc59285ca63beb063f3408655f31b2e9748f11cfff70e39b07dc3381348dd92c71a66974e83d360565ea107e53d830a57bc375e940a51388ced406ec5907006
 DIST proxytunnel-1.12.0.tar.gz 57664 BLAKE2B 
3d5090a7f8f38fc928d68222e703913fcaade652c4d3cbf28b68682923c3558a7b3e17f00893a60b0cea4e27af185b50cf1ab52064e5125922c50716d5d9c0b7
 SHA512 
1a448728f49b34a3c6de2a876bfbd57b0f328f9f901db70cf8e6570eef81d2c26a0e0dbdfd566f683cea2d1b4816c01abc7049e5688b0335078034ec3f102b83

diff --git a/net-misc/proxytunnel/proxytunnel-1.11.1.ebuild 
b/net-misc/proxytunnel/proxytunnel-1.11.1.ebuild
deleted file mode 100644
index abdb6f3ed56f..
--- a/net-misc/proxytunnel/proxytunnel-1.11.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Connect stdin and stdout to a server via an HTTPS proxy"
-HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ 
https://proxytunnel.sourceforge.net/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="static"
-
-RDEPEND="dev-libs/openssl:="
-DEPEND="${RDEPEND}
-   app-text/asciidoc
-   app-text/xmlto
-   "
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( CHANGES CREDITS INSTALL.md KNOWN_ISSUES LICENSE.txt README.md RELNOTES 
TODO )
-
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86"
-fi
-
-src_prepare() {
-   default
-   sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
-}
-
-src_compile() {
-   use static && append-ldflags -static
-   emake CC="$(tc-getCC)"
-}
-
-src_install() {
-   emake install prefix="${EPREFIX}"/usr DESTDIR="${D}"
-   einstalldocs
-}



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

2023-12-19 Thread Craig Andrews
commit: 84a429f431668b9b2669baeccef5f9dd6e202ea3
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:39:51 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a429f4

www-apps/readarr: add 0.3.12.2327

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/readarr/Manifest   |  6 +++
 www-apps/readarr/readarr-0.3.12.2327.ebuild | 66 +
 2 files changed, 72 insertions(+)

diff --git a/www-apps/readarr/Manifest b/www-apps/readarr/Manifest
index 8714b6007084..857c86ee02a6 100644
--- a/www-apps/readarr/Manifest
+++ b/www-apps/readarr/Manifest
@@ -4,3 +4,9 @@ DIST Readarr.develop.0.3.11.2319.linux-core-x64.tar.gz 92492236 
BLAKE2B 37436e95
 DIST Readarr.develop.0.3.11.2319.linux-musl-core-arm.tar.gz 88282251 BLAKE2B 
4b8c8a029b805ee44cf99a709c2195fbbaeb9c1294f08ebc425d0eea907c01d2a1b10ce6f68787a21e281458f8938b813dfbed31f9822af142a147e68810329c
 SHA512 
51f784ec2afca5a7e696f791aa5b9208087bdb01bdb6d502b8d8391631587f55efe18f2d1065f997a268a1737c135ec08d5f278601c894c4e9b9e74c4e29731c
 DIST Readarr.develop.0.3.11.2319.linux-musl-core-arm64.tar.gz 87552581 BLAKE2B 
f48ceec3952a0d9d67abced4255ba8e956726569b439584012d4c898ce664d79bfff350d0062654963c7205ed66a2670cf92adbd8010a4c1b45ad1da2f0ada42
 SHA512 
60e08dc2389dcad96f73e75998711cc0c928ef5435bfdc4a02e5affb96b3e0bfd7b627dac7e025e7dd9c33b0f3862468c9acf456d259df89462194d02ea2ba76
 DIST Readarr.develop.0.3.11.2319.linux-musl-core-x64.tar.gz 91554833 BLAKE2B 
ff2a4fec760d23118b7503b63d8a0ba866a4404c9caaa3f9d16a768f96c4d6bca36a2f815c9fc00c120d4f1002f9cbc45698a916ab4ccb2a0d6dfe3af8e2c45a
 SHA512 
7491d50fd92fa90b7c9735cdc75397d76b4d5af2903238a75439ced44a3ea4dfef5b4c6053fe05d1ef17b7a91253efd28dc61caf1ca321a15e5cd6091e2a73da
+DIST Readarr.develop.0.3.12.2327.linux-core-arm.tar.gz 88256371 BLAKE2B 
c24df2e7ab68ff0bd4cc8407021743a7eacf900ab3a9d937857624489a5995124daccb1fd178f0759f716d7350db438af2c63b11225f31cfc531b25c374fcaf2
 SHA512 
1cf5c92b1404d090f7b46c98c0ba76cb6a2ad1cc9631670991e43853f7d7c2e3ccb95abc6d21b3b22c9dbad7eb8a8727426945e6b25e8eb4c22f2cc736ea387e
+DIST Readarr.develop.0.3.12.2327.linux-core-arm64.tar.gz 87515823 BLAKE2B 
2804b0824adc107dc0e284cacc77713ab5da441d390a968364cfe046464687778b9c1334abff418f6df749a827f9e81fc43975d72219b1347aba7ddfdaa7a13d
 SHA512 
deacae6df7ebe86bab24615542c7aacd143204e58bba1ca469c9edff56773249833e9204958d1476275580288422899a33cb887cfaa5a4288bf7deb877948053
+DIST Readarr.develop.0.3.12.2327.linux-core-x64.tar.gz 92532510 BLAKE2B 
70d117fd50bf4f5257eaaea61f2a86635b6584e962f4a933a75c82cc978326377c01e90b6cd04452cc8bc6902369e714d1d2514b2a03acadf420cc41b9dc7870
 SHA512 
af92ad83647fe6f7d7d1ff1bed8f158ba88b3a5c055f464e2de6ee1eaa9f60e530a6295a5deab6f9e41c1b8f4fd4413c1e81933a8eb2063eddde25ad2b116d38
+DIST Readarr.develop.0.3.12.2327.linux-musl-core-arm.tar.gz 88308527 BLAKE2B 
1bf95197a0a5cd7c7b52b2d4e8455323325410615731e57c28903b0dcd4e7ad6b8b4250f3ad57925532c5be78b02bef86d738350fdc1d3d03b7121bbc8b70340
 SHA512 
9936d3ae986094569a56893dd58057989b20394fbc6da23920b830d29ba4ce5db24bba1cbaa21f5940970950ea22e63eecf4c335a122742496bba59b81e350fe
+DIST Readarr.develop.0.3.12.2327.linux-musl-core-arm64.tar.gz 87579737 BLAKE2B 
fe41025ebb3e753cc896833f91aa530baee92d93fc41eebbc43c032d7089caeead3a307794245cd2c259bc0c724cc952adcf9fa2c0d9a960385dd80aef651f38
 SHA512 
3cceabfd561801c8ccb7a46f3a987f95fccf8f6cfcdf1985989c9f901a7d0eb4fd0e7fddd25700c45e34f8060bfbfc3170b707bcbbe856fae6e7265b10d0c6ae
+DIST Readarr.develop.0.3.12.2327.linux-musl-core-x64.tar.gz 91593151 BLAKE2B 
258c0defae4dd48aa2bc49bfadfba54d51444a08bcd050dc2e0936a952cf9b968c890a8260c6ddd542aeea0ae7362060c8f1223568fba83be0cf16c1129282ff
 SHA512 
41f345b2cca441e264960ca0a8ac4792dfa541b5a798bdf39e3a34265bf94504eb0378c916c4ee7ea9a79ee50027cbde3bc3828c8023b423ab67e6aecdb6cb6a

diff --git a/www-apps/readarr/readarr-0.3.12.2327.ebuild 
b/www-apps/readarr/readarr-0.3.12.2327.ebuild
new file mode 100644
index ..e70817d4d7f7
--- /dev/null
+++ b/www-apps/readarr/readarr-0.3.12.2327.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? (
+   elibc_glibc? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-x64.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
+   )
+   arm? (
+   elibc_glibc? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-arm.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
+   )
+   arm64? (
+   elibc_glibc? ( 

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

2023-12-19 Thread Craig Andrews
commit: 92249f085d6ba77c38c93b56d304bf4489c60166
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:36:36 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92249f08

www-apps/prowlarr: drop 1.11.1.4146

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/prowlarr/Manifest|  6 ---
 www-apps/prowlarr/prowlarr-1.11.1.4146.ebuild | 66 ---
 2 files changed, 72 deletions(-)

diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr/Manifest
index d39a4cc949ca..4b748c3a1c6e 100644
--- a/www-apps/prowlarr/Manifest
+++ b/www-apps/prowlarr/Manifest
@@ -1,9 +1,3 @@
-DIST Prowlarr.develop.1.11.1.4146.linux-core-arm.tar.gz 87045916 BLAKE2B 
5f95f7728fb11323fb3b1c199e77ec0fc50d3472ca049f3023b9143768f7fcb80a349c79ff91c301fa8bf2fc1f4213e86f6c798dd53496714c552f5ccb704b2a
 SHA512 
0fd9f4cfd12339703083153529c35246af63d9c4c4e2c9ea5ad13f90726288cdeaa0b5f791890aca34349648c82e970855a9f1e8809b74c68060f5f056bb51b7
-DIST Prowlarr.develop.1.11.1.4146.linux-core-arm64.tar.gz 86328049 BLAKE2B 
c243f79a9f1cfa10a17ddef3f161b32d177cdb12a7a1f54e256b5f4554006aeb78e67a43b4819e7c650ff269e15816cbef09c6e0edcc28ddfb3cc572da83a751
 SHA512 
0f8fa9221254d0087884571d5844386a89a4286261b72b1b2ab38d4ada486b9fb25033bbd7754abce2c9df8f6fe8cd274d85476a8b9ca009804bbb5e2b26d5eb
-DIST Prowlarr.develop.1.11.1.4146.linux-core-x64.tar.gz 91353209 BLAKE2B 
ab953ec7cc966b15a7bf54183302325d8e9d7efc8578a367ccc923bb8d63a04213b7c585ba9c0f2d7216810950f3d71b1ec10e5defc631b2d5c1830d7ee1c529
 SHA512 
ea04c4645a51accae5c342d41055439eb30893de57eaee3968b6b20f6f9a42f252f708654aaffbf9b2b3793892b01a86b0ab58c6d57134286a2d90a5148a113e
-DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-arm.tar.gz 87108550 BLAKE2B 
1d5c622e1dc4c7afee58c7c18e8ed621e3eb1dfec625064a99e2b3c4a1e5a9ff6d455b87b56792456d5dc70300e9326c7afa1b22ab4703f63cf97a56086baaec
 SHA512 
092d7c207290e24960f8852462fa1e2eaef63c0ea95d543f22bac1e5c4dd0d563bd827e386e7ce985d528d76a90b304c620707005ff9012e2073e694f645f992
-DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-arm64.tar.gz 86387699 
BLAKE2B 
92c070df4b9c02c2331b654e2f57fef9ef67804785a8aadc50f10aa8ad7d45f75e8c737eeca45f49a7b8bf88ba06ebb2e6746dfaa137c6d7aa17d6a017de9f2d
 SHA512 
db8c28bea959f7334b53964bddf6793f8316c94ca86e401db75b01365d6704ae19abca5c90203a7659738ce59c578c13f03064c12de0ce9f6d961a569d855923
-DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-x64.tar.gz 90421925 BLAKE2B 
ab1a43698d20930b107d8813070b91c0c660700790b6aabf2f16d3b32b29ae4fc9057ad549cfd13323dc025344589776104de7c65254c263c6f30d02a18d5c4a
 SHA512 
c9bd42e721f8811bb38263c32be9a3607099381c1462aa2193765b4926e2431207d0b3dd778d1a303361e07d667e2f47914214ce96f7f92c19f181cb7f3c268e
 DIST Prowlarr.develop.1.11.2.4160.linux-core-arm.tar.gz 87040581 BLAKE2B 
dc1fc904f7d271c5dbbb115eb2f6fb294a8abd1ecf8cc344d6074b5f17416eb26081cbf25baaeff8e96390882cebbc52f01ac0682c579c517a934888183c85ae
 SHA512 
b3b2f306f81ffad1cbc8966112822df389b7a965bc435eb904b6fb73eab2bf834ef803e84a2a4c4c35b0af2d1784ea9dde35389368845786864d5214089cb63c
 DIST Prowlarr.develop.1.11.2.4160.linux-core-arm64.tar.gz 86305625 BLAKE2B 
c8728409ab67709bca49109471eb96ca5015bb08a51604162f926823cb7803314f3bf4117767b7f1dc9c9d09a7958d30431b9570346b6b56a9efc34fc64a78a6
 SHA512 
c7b1ee6a251d25453bd67ba70330f96803093fb0b32091acd563635a9f2431c0c99bf185694365ac13a54a5013d301661568fe1701a922b96ba3049769f42acc
 DIST Prowlarr.develop.1.11.2.4160.linux-core-x64.tar.gz 91309965 BLAKE2B 
cc71ab7598bd9f002edcbf4ef0432a7c608f9b059a90c48e53035ddd61c2e2f37538e96e1298398f939a945fbb2873718a17d7ea9c614a064e3510454df80287
 SHA512 
5b495c3964938067e2f01f154551f5d8bac082a313838385ff1d362bc0f44aa2fb76308b8cfef5be246b704c29ece29d19e2ac04730a14935df25c40a1aec0a4

diff --git a/www-apps/prowlarr/prowlarr-1.11.1.4146.ebuild 
b/www-apps/prowlarr/prowlarr-1.11.1.4146.ebuild
deleted file mode 100644
index 40ad30af1b3a..
--- a/www-apps/prowlarr/prowlarr-1.11.1.4146.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-   amd64? (
-   elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-x64.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
-   )
-   arm? (
-   elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
-   )
-   arm64? (
-   elibc_glibc? ( 

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

2023-12-19 Thread Craig Andrews
commit: 785c486622b3d625a0e9f7182a918ee606fd2844
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:38:02 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785c4866

www-apps/radarr: drop 5.2.4.8328

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/radarr/Manifest |  6 ---
 www-apps/radarr/radarr-5.2.4.8328.ebuild | 67 
 2 files changed, 73 deletions(-)

diff --git a/www-apps/radarr/Manifest b/www-apps/radarr/Manifest
index 8dd09177..24d0c21a3bc4 100644
--- a/www-apps/radarr/Manifest
+++ b/www-apps/radarr/Manifest
@@ -1,9 +1,3 @@
-DIST Radarr.develop.5.2.4.8328.linux-core-arm.tar.gz 94579506 BLAKE2B 
579039866002cf3476986f127a4345ffe6955e4ea155753433544e15293bc5ec1369dfc5c4d316dddab132abc63197f46259ded16b2fea14d96303194839a013
 SHA512 
ab0f5380b9df2c3aecb6623350fc9266cbd91cf8c70db370d4ad3265b3eb2d6c04405f130ba3d432a1a67bd6ba96923e284016733ad516dc77adf0919288
-DIST Radarr.develop.5.2.4.8328.linux-core-arm64.tar.gz 94221186 BLAKE2B 
8328c409615b3c6eed064aff867340e731beba4a9f9e66a32358189b904dbe9ddce8757e05299bb2ce8eb44a2efdf030414354722c0ac8d264c4e34508250207
 SHA512 
ed91841876cb93e153b0f672ea0ad8a15366e2bc723eb5d664559b083dd3eabdf97b6c1971d73c96e1aa580f13f27fee99acdd60569e2af3259c0fddbaa627aa
-DIST Radarr.develop.5.2.4.8328.linux-core-x64.tar.gz 100220445 BLAKE2B 
d4f4755d07abe8aae349e239b42fb53b70ecf1ebe84899e021b5755593abc7474fa92025f252e4413691022ee43e8dcb9bab7b1ad37cdd2c25e642889c2656a3
 SHA512 
5e7aa6ad6e68ce34f4cad762e04a95ed50cc94739202c6deb5640f1f7bbf89e419cc1a5c260bd47272b941c97b4b9716a545daf89aa64a43efc2874975163848
-DIST Radarr.develop.5.2.4.8328.linux-musl-core-arm.tar.gz 94648665 BLAKE2B 
576f7a0b6918c7b1c843f7671bd8bd33ee47823a31ff26a266dba37f5d3041ef9559ff36f86438ad941f7ad27442f1e40fcece3eb6c255f7d52c9ff245bda44c
 SHA512 
0ff7d388e3014ad31c30e494b697cca0f662650406de094b2b25b9ca79c04ca12787fc6847ef8ef1c32b634b0a796bac465439daf42c13e711d6c1b1046e8c83
-DIST Radarr.develop.5.2.4.8328.linux-musl-core-arm64.tar.gz 94277384 BLAKE2B 
ec9e1cbcc11a3aaf601488173a86a989436d369bc3d2347ec5994acbe081fdb66edad9b9195dc535c0cdb3156622b8ff91989b95a6f31978042b4df7050e8e47
 SHA512 
94b524794ae7a08022a69c505e3b6b1710802e94b69e1096609baa1238617a0df5dc420681fe3a3c05b839f2d77fa4048dcaf95649950d596a121a7f9b83db02
-DIST Radarr.develop.5.2.4.8328.linux-musl-core-x64.tar.gz 99276083 BLAKE2B 
aed6e1cb1f388d430473a579a5e721441c99e655267f0d87dd15b0dd89c0130fe9b300faf92083d03044d530612bc94c435d393e38452438801f3c861809cdf2
 SHA512 
00cde3c96c0e8511efa95392ecf2df7893149551e4b49c55f51bffb870f73211440df6687f701eee939e7c6658b502339dd3af61c85cc68f9dc91a6631c01b2e
 DIST Radarr.develop.5.2.5.8361.linux-core-arm.tar.gz 94619156 BLAKE2B 
992ffb0e85dfcb38325b24af4781c8174b841147c183ae9081b4b7d960ea7e0937c04877469c52219642118eaa967365e6b49a168b6339b5b3b586a528e19ce1
 SHA512 
1c0f802a2086a97e23a23f6cc8720c9dd25cac8ff0d5b678ff73b89524d5db8db1169b2c273911d74f3ed354ff0111a7daf04e58d732f3130521246c4d82579f
 DIST Radarr.develop.5.2.5.8361.linux-core-arm64.tar.gz 94283954 BLAKE2B 
465e3c1657f24f9de8d8b13d93a7120ffa723f2568a972de075c33922e138e3650645d311667b093ce2b507f026c0ce70820570132f72068801c0f787e8d91af
 SHA512 
ac3807adcafc14a1a813c664a1b7cad2319a7bdc148cad35ecc676d47aaae107883693f3bb362611e66d1c9f3241233d0c7f8848845a231266b2404706eb246d
 DIST Radarr.develop.5.2.5.8361.linux-core-x64.tar.gz 100289514 BLAKE2B 
96f67cb9a93b40cbb2b478d16792cc1601cad432764255ea43c6172ff4fafb3c1458bdd55cb8e32414c30e62cd38ba47c028d3562efe00e1070bc2550dc9c713
 SHA512 
725a2fad0594e6b6f745556a81f4e801d660cfd760567a5bbbc5ce3d64c9eed04d061a11adde5ccc54d09130b63d414d4e964bfd146e3939d294e48af38a5dca

diff --git a/www-apps/radarr/radarr-5.2.4.8328.ebuild 
b/www-apps/radarr/radarr-5.2.4.8328.ebuild
deleted file mode 100644
index a7041c9c66cd..
--- a/www-apps/radarr/radarr-5.2.4.8328.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-   amd64? (
-   elibc_glibc? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-core-x64.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
-   )
-   arm? (
-   elibc_glibc? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-core-arm.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
-   )
-   arm64? (
-   elibc_glibc? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-core-arm64.tar.gz
 )
-   elibc_musl? ( 

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

2023-12-19 Thread Craig Andrews
commit: 68763d1f7b8d9f8c74104d7b3943917f2056d692
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:39:53 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68763d1f

www-apps/readarr: drop 0.3.11.2319

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/readarr/Manifest   |  6 ---
 www-apps/readarr/readarr-0.3.11.2319.ebuild | 66 -
 2 files changed, 72 deletions(-)

diff --git a/www-apps/readarr/Manifest b/www-apps/readarr/Manifest
index 857c86ee02a6..c64d9cfd2583 100644
--- a/www-apps/readarr/Manifest
+++ b/www-apps/readarr/Manifest
@@ -1,9 +1,3 @@
-DIST Readarr.develop.0.3.11.2319.linux-core-arm.tar.gz 88225854 BLAKE2B 
9d3b95d9741a92429f7243ae5311c7e83a3e031e886ee2ba60fe90cd12231bc2c0a94f31a78549e0047906cc46dc990cef8419b21afec68594b75169c3021f3b
 SHA512 
330263106d683b59d99541298b6ea027c3a46966290e40fccf9a77e6d7e405bdc70a5e5a773fb99acc4a6723827466641d17a047146be0ae1f268fbf91ecacb0
-DIST Readarr.develop.0.3.11.2319.linux-core-arm64.tar.gz 87493230 BLAKE2B 
ff07de6b3ff434f6ce18a281e7a9b6c7fa719409ab88f460623b4a91e31f18140b28d58e5c3654d4f43163188892c3119f85c54c60972b28b6b3f65ed360147e
 SHA512 
da60797d043499d8cf0e69a070b95263b3327c1eeb743a236f28eb33b2afac024c1ab6bbc6f6ffe327ee3026c9c2eb75cb5c808e382974ac215e65e7cc6806f3
-DIST Readarr.develop.0.3.11.2319.linux-core-x64.tar.gz 92492236 BLAKE2B 
37436e953b9ba49e4844e42571b8712997d133f0c31ee8730557a51441a910b39cb091fd76ece643065f951d3c29d8d05e3522ade8215405a58eddee70eb6538
 SHA512 
33e672e3d37326d9787f1e123f0caa5a7702022f55c7dbfdd0fbc56d194cb7f869f1896333ee0152ca6488f628ba11c5d00911dae72f7296612f8a61c53bb5bd
-DIST Readarr.develop.0.3.11.2319.linux-musl-core-arm.tar.gz 88282251 BLAKE2B 
4b8c8a029b805ee44cf99a709c2195fbbaeb9c1294f08ebc425d0eea907c01d2a1b10ce6f68787a21e281458f8938b813dfbed31f9822af142a147e68810329c
 SHA512 
51f784ec2afca5a7e696f791aa5b9208087bdb01bdb6d502b8d8391631587f55efe18f2d1065f997a268a1737c135ec08d5f278601c894c4e9b9e74c4e29731c
-DIST Readarr.develop.0.3.11.2319.linux-musl-core-arm64.tar.gz 87552581 BLAKE2B 
f48ceec3952a0d9d67abced4255ba8e956726569b439584012d4c898ce664d79bfff350d0062654963c7205ed66a2670cf92adbd8010a4c1b45ad1da2f0ada42
 SHA512 
60e08dc2389dcad96f73e75998711cc0c928ef5435bfdc4a02e5affb96b3e0bfd7b627dac7e025e7dd9c33b0f3862468c9acf456d259df89462194d02ea2ba76
-DIST Readarr.develop.0.3.11.2319.linux-musl-core-x64.tar.gz 91554833 BLAKE2B 
ff2a4fec760d23118b7503b63d8a0ba866a4404c9caaa3f9d16a768f96c4d6bca36a2f815c9fc00c120d4f1002f9cbc45698a916ab4ccb2a0d6dfe3af8e2c45a
 SHA512 
7491d50fd92fa90b7c9735cdc75397d76b4d5af2903238a75439ced44a3ea4dfef5b4c6053fe05d1ef17b7a91253efd28dc61caf1ca321a15e5cd6091e2a73da
 DIST Readarr.develop.0.3.12.2327.linux-core-arm.tar.gz 88256371 BLAKE2B 
c24df2e7ab68ff0bd4cc8407021743a7eacf900ab3a9d937857624489a5995124daccb1fd178f0759f716d7350db438af2c63b11225f31cfc531b25c374fcaf2
 SHA512 
1cf5c92b1404d090f7b46c98c0ba76cb6a2ad1cc9631670991e43853f7d7c2e3ccb95abc6d21b3b22c9dbad7eb8a8727426945e6b25e8eb4c22f2cc736ea387e
 DIST Readarr.develop.0.3.12.2327.linux-core-arm64.tar.gz 87515823 BLAKE2B 
2804b0824adc107dc0e284cacc77713ab5da441d390a968364cfe046464687778b9c1334abff418f6df749a827f9e81fc43975d72219b1347aba7ddfdaa7a13d
 SHA512 
deacae6df7ebe86bab24615542c7aacd143204e58bba1ca469c9edff56773249833e9204958d1476275580288422899a33cb887cfaa5a4288bf7deb877948053
 DIST Readarr.develop.0.3.12.2327.linux-core-x64.tar.gz 92532510 BLAKE2B 
70d117fd50bf4f5257eaaea61f2a86635b6584e962f4a933a75c82cc978326377c01e90b6cd04452cc8bc6902369e714d1d2514b2a03acadf420cc41b9dc7870
 SHA512 
af92ad83647fe6f7d7d1ff1bed8f158ba88b3a5c055f464e2de6ee1eaa9f60e530a6295a5deab6f9e41c1b8f4fd4413c1e81933a8eb2063eddde25ad2b116d38

diff --git a/www-apps/readarr/readarr-0.3.11.2319.ebuild 
b/www-apps/readarr/readarr-0.3.11.2319.ebuild
deleted file mode 100644
index e70817d4d7f7..
--- a/www-apps/readarr/readarr-0.3.11.2319.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-   amd64? (
-   elibc_glibc? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-x64.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
-   )
-   arm? (
-   elibc_glibc? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-arm.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
-   )
-   arm64? (
-   elibc_glibc? ( 
https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-arm64.tar.gz
 )
- 

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

2023-12-19 Thread Craig Andrews
commit: 918a2861e30c2578f3dd2e5c0b4ab660e1de9878
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:35:13 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918a2861

www-apps/lidarr: add 2.1.0.3856

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/lidarr/Manifest |  6 +++
 www-apps/lidarr/lidarr-2.1.0.3856.ebuild | 67 
 2 files changed, 73 insertions(+)

diff --git a/www-apps/lidarr/Manifest b/www-apps/lidarr/Manifest
index e4d91d458349..3312b4b206e8 100644
--- a/www-apps/lidarr/Manifest
+++ b/www-apps/lidarr/Manifest
@@ -1,3 +1,9 @@
+DIST Lidarr.develop.2.1.0.3856.linux-core-arm.tar.gz 91507012 BLAKE2B 
a34d4eafd07c871d49a64eecd159dd77420c80117c8bc7d893145272c57674ea5710759d0a0723f91d488fe9e799673e414eee2333ab10ed404e85d35dad41f1
 SHA512 
ae0a034234a22ff4c85f767e4d92e8e422cb0d5da2c6fe4f2172f8a3586bd5bf0aef6654319d4d7d0198db5bba132535c07daf8b21205745a214233cbf172253
+DIST Lidarr.develop.2.1.0.3856.linux-core-arm64.tar.gz 91123930 BLAKE2B 
b5cbaf6a85a6c143bebd7f4a4e0de21e622510e7be12958c7d3a1c50f8c5cc34986aef32af8d842623c0a771e76a7e27428f633d2b0737ba865cc9c906178443
 SHA512 
f139bd80b282283c1c46c6494b819e8b456235bfac76c678ad285b6e4ecaa623f5660223b7015f7438098d7d2b26d808738a6afc21cabff07b125666ce1af7de
+DIST Lidarr.develop.2.1.0.3856.linux-core-x64.tar.gz 97634832 BLAKE2B 
1a4cc47aebfd089882ff4cdabe2f420422133f05d786b508483ac48965da20530dce86e65a8c442e0546f820b0f03b0f81433eacfa6eccfddebd573e7f308e3a
 SHA512 
ded1ec33f4cb9966499f868ac849a82df91fdd7399600220d5b4c543833306c82c19e2ef89aaef9741ed8a404c0e0af8376909bc0c917b3d3cfc87aef8b310bd
+DIST Lidarr.develop.2.1.0.3856.linux-musl-core-arm.tar.gz 91574789 BLAKE2B 
d69b9dd3dbcfcf82642e0c67403349d669c208670e6d66e94732dc975f0bf6897d27e40b1a22272f229510e172a8dc4e1b1f2052e4b7c421f1a41ae484577fa5
 SHA512 
829794da4204874b8ace506a5758feedf683a564a61d48fa81505ea3ed3a276617e27f3d45fe940493bcdfbe7c208d22d37a492b3c20a59ddba0d9635b950f37
+DIST Lidarr.develop.2.1.0.3856.linux-musl-core-arm64.tar.gz 91186265 BLAKE2B 
71ceaaf8587f750ffec2c2cf46875f1f7f5dfb51f1d12f29e31c2d5710d32710941a2275a024c727cdecd2baa6c7c813a4d3dd5753e633f444709474101f436b
 SHA512 
e62589d5b0a53fc9ed30bb6dd0ca376021f1a7d1a8fb2f0bc313441315922c25cae073d6a143689b50a39202b12ceb7181b2f7143f15a409dfda6b93c25a0d57
+DIST Lidarr.develop.2.1.0.3856.linux-musl-core-x64.tar.gz 96702039 BLAKE2B 
6b7ba66a9e8e04bba4f158e9e079eb915e2c6c055df3c279c3c85b22758381b052a61991037ebd6faab33f39d5d131307f9be66c05bb07b7e56d2d9142726111
 SHA512 
1c3e9725d520e6b79221d9c5c5f7185feb9d698e19c66a729c0dcf59057074f5acf2f48ceaf45d1f08c3f609ee978b2c839747595db1817c9c89dbf193be6de2
 DIST Lidarr.master.2.0.7.3849.linux-core-arm.tar.gz 91515788 BLAKE2B 
1ca1f4482a38fba22bd4f334a7c3c60166ea996bc1d7f07ac6cc25d18f58cbc9fb6232585f8de2fe50882bcfdb9ba4af3e9aadb9e5973fc3fc9d87b579cfa3e8
 SHA512 
c49f5dae8180fb156b6e4df5854de7d68d8fecf5e43a845c0037663eef0d57089a03078ac97a1aa00d55b64a617cda5b522716d4770912b7cc9a775e5216a82b
 DIST Lidarr.master.2.0.7.3849.linux-core-arm64.tar.gz 91129573 BLAKE2B 
5d5627ead9bafb6a9af98c35bf535e0ca6b27a73cbb9c92b973c7a66acd3f6cd26ae9d5ab1a8931d827c2c62b7c91419d648684b6732a2d70bd76ebe42283159
 SHA512 
a5e8ae060cfbc31bbb9708e3d8d931b4126b6b3bd60964e117bc029dde5ce4757dc76a6a54882451937da5e330c39d234a9695eff0a238a5eecc5e6ff76eff17
 DIST Lidarr.master.2.0.7.3849.linux-core-x64.tar.gz 97651876 BLAKE2B 
174ac16f4f5d17d8bbb442b80642bc6dfe35245d385290881e8ba09fde9f11960eb5936f5f94ce554f4c6d23e44683c02d9047b474eea5e23c51534758d2b9db
 SHA512 
99b408b5f6a477f53d71f4b2bad2c45856b74fd3259acd3505cd7e8d8e204ff5998e3766bbe7fc539deb9bd7ee3fc9bb6ec5ba83a79cb02fd120f5632c4f06c1

diff --git a/www-apps/lidarr/lidarr-2.1.0.3856.ebuild 
b/www-apps/lidarr/lidarr-2.1.0.3856.ebuild
new file mode 100644
index ..ecfb5b24dcdf
--- /dev/null
+++ b/www-apps/lidarr/lidarr-2.1.0.3856.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? (
+   elibc_glibc? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-x64.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
+   )
+   arm? (
+   elibc_glibc? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-arm.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
+   )
+   arm64? (
+   elibc_glibc? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-arm64.tar.gz
 )
+   elibc_musl? ( 

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

2023-12-19 Thread Craig Andrews
commit: 2e0bd0ca3ef1c60c00ef1db0ebe33c8af20f0358
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:35:27 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0bd0ca

www-apps/lidarr: drop 2.0.7.3849

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/lidarr/Manifest |  6 ---
 www-apps/lidarr/lidarr-2.0.7.3849.ebuild | 67 
 2 files changed, 73 deletions(-)

diff --git a/www-apps/lidarr/Manifest b/www-apps/lidarr/Manifest
index 3312b4b206e8..68936ac6c750 100644
--- a/www-apps/lidarr/Manifest
+++ b/www-apps/lidarr/Manifest
@@ -4,9 +4,3 @@ DIST Lidarr.develop.2.1.0.3856.linux-core-x64.tar.gz 97634832 
BLAKE2B 1a4cc47aeb
 DIST Lidarr.develop.2.1.0.3856.linux-musl-core-arm.tar.gz 91574789 BLAKE2B 
d69b9dd3dbcfcf82642e0c67403349d669c208670e6d66e94732dc975f0bf6897d27e40b1a22272f229510e172a8dc4e1b1f2052e4b7c421f1a41ae484577fa5
 SHA512 
829794da4204874b8ace506a5758feedf683a564a61d48fa81505ea3ed3a276617e27f3d45fe940493bcdfbe7c208d22d37a492b3c20a59ddba0d9635b950f37
 DIST Lidarr.develop.2.1.0.3856.linux-musl-core-arm64.tar.gz 91186265 BLAKE2B 
71ceaaf8587f750ffec2c2cf46875f1f7f5dfb51f1d12f29e31c2d5710d32710941a2275a024c727cdecd2baa6c7c813a4d3dd5753e633f444709474101f436b
 SHA512 
e62589d5b0a53fc9ed30bb6dd0ca376021f1a7d1a8fb2f0bc313441315922c25cae073d6a143689b50a39202b12ceb7181b2f7143f15a409dfda6b93c25a0d57
 DIST Lidarr.develop.2.1.0.3856.linux-musl-core-x64.tar.gz 96702039 BLAKE2B 
6b7ba66a9e8e04bba4f158e9e079eb915e2c6c055df3c279c3c85b22758381b052a61991037ebd6faab33f39d5d131307f9be66c05bb07b7e56d2d9142726111
 SHA512 
1c3e9725d520e6b79221d9c5c5f7185feb9d698e19c66a729c0dcf59057074f5acf2f48ceaf45d1f08c3f609ee978b2c839747595db1817c9c89dbf193be6de2
-DIST Lidarr.master.2.0.7.3849.linux-core-arm.tar.gz 91515788 BLAKE2B 
1ca1f4482a38fba22bd4f334a7c3c60166ea996bc1d7f07ac6cc25d18f58cbc9fb6232585f8de2fe50882bcfdb9ba4af3e9aadb9e5973fc3fc9d87b579cfa3e8
 SHA512 
c49f5dae8180fb156b6e4df5854de7d68d8fecf5e43a845c0037663eef0d57089a03078ac97a1aa00d55b64a617cda5b522716d4770912b7cc9a775e5216a82b
-DIST Lidarr.master.2.0.7.3849.linux-core-arm64.tar.gz 91129573 BLAKE2B 
5d5627ead9bafb6a9af98c35bf535e0ca6b27a73cbb9c92b973c7a66acd3f6cd26ae9d5ab1a8931d827c2c62b7c91419d648684b6732a2d70bd76ebe42283159
 SHA512 
a5e8ae060cfbc31bbb9708e3d8d931b4126b6b3bd60964e117bc029dde5ce4757dc76a6a54882451937da5e330c39d234a9695eff0a238a5eecc5e6ff76eff17
-DIST Lidarr.master.2.0.7.3849.linux-core-x64.tar.gz 97651876 BLAKE2B 
174ac16f4f5d17d8bbb442b80642bc6dfe35245d385290881e8ba09fde9f11960eb5936f5f94ce554f4c6d23e44683c02d9047b474eea5e23c51534758d2b9db
 SHA512 
99b408b5f6a477f53d71f4b2bad2c45856b74fd3259acd3505cd7e8d8e204ff5998e3766bbe7fc539deb9bd7ee3fc9bb6ec5ba83a79cb02fd120f5632c4f06c1
-DIST Lidarr.master.2.0.7.3849.linux-musl-core-arm.tar.gz 91572302 BLAKE2B 
76ae00a6487a6350abb96294ad6998a6ae04bf4d45fcb4772e39ca857cfff0fae0a2d3ad2ef40c80954ba5bdb0ad95fbc916b97465d2872a9fae1e83c2ed1110
 SHA512 
edc3f5aa250c3d91824755ca9481226d1a73ad08700ac1d55db3e3303dcf1678d12dc140b8c67642e704d71d180a8ee6cb366790b78963fa16a26dcd718ef40e
-DIST Lidarr.master.2.0.7.3849.linux-musl-core-arm64.tar.gz 91187435 BLAKE2B 
28ee4c170e74f008037a3cf89b568728bfc33561ceeade363a3f0f8f291b1b21d4869ccf2fdfde9c8164f9990aed9f65b4f73f526ad8497ffbfa4efb495ea739
 SHA512 
6798c86b16a10856c82c35f77fd28c944b59bc539e7fc93cd0568f38271b472acde1e338f97ec814510e84d87bd5297d654455cadad987a1bfe4ac22b6e2701e
-DIST Lidarr.master.2.0.7.3849.linux-musl-core-x64.tar.gz 96719975 BLAKE2B 
6bb3a42605430f179d84fce80e768c345b96be7924ddff236fe2077296fd81ccf9f47fe1cf0206adc5acd04bc248b508da542c2babcbed43016ef809bb6a83a5
 SHA512 
efefbb5cdfe6e50dd0addfb9cd6aa55b389bfb3cea1ef5f8ff9583ac6d4ec914a3f994ad4e0df9851a10d380264324f0e3e95b3883b72e48b0a1a0e3f040eaef

diff --git a/www-apps/lidarr/lidarr-2.0.7.3849.ebuild 
b/www-apps/lidarr/lidarr-2.0.7.3849.ebuild
deleted file mode 100644
index 636bc9303268..
--- a/www-apps/lidarr/lidarr-2.0.7.3849.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-   amd64? (
-   elibc_glibc? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.master.${PV}.linux-core-x64.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.master.${PV}.linux-musl-core-x64.tar.gz
 )
-   )
-   arm? (
-   elibc_glibc? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.master.${PV}.linux-core-arm.tar.gz
 )
-   elibc_musl? ( 
https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.master.${PV}.linux-musl-core-arm.tar.gz
 )
-   )
-   arm64? (
-   elibc_glibc? ( 

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

2023-12-19 Thread Craig Andrews
commit: c6b6ff76eda495b84db76181aa577eae5d9ef0cc
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:38:00 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b6ff76

www-apps/radarr: add 5.2.5.8361

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/radarr/Manifest |  6 +++
 www-apps/radarr/radarr-5.2.5.8361.ebuild | 67 
 2 files changed, 73 insertions(+)

diff --git a/www-apps/radarr/Manifest b/www-apps/radarr/Manifest
index 3616ace3c8a7..8dd09177 100644
--- a/www-apps/radarr/Manifest
+++ b/www-apps/radarr/Manifest
@@ -4,3 +4,9 @@ DIST Radarr.develop.5.2.4.8328.linux-core-x64.tar.gz 100220445 
BLAKE2B d4f4755d0
 DIST Radarr.develop.5.2.4.8328.linux-musl-core-arm.tar.gz 94648665 BLAKE2B 
576f7a0b6918c7b1c843f7671bd8bd33ee47823a31ff26a266dba37f5d3041ef9559ff36f86438ad941f7ad27442f1e40fcece3eb6c255f7d52c9ff245bda44c
 SHA512 
0ff7d388e3014ad31c30e494b697cca0f662650406de094b2b25b9ca79c04ca12787fc6847ef8ef1c32b634b0a796bac465439daf42c13e711d6c1b1046e8c83
 DIST Radarr.develop.5.2.4.8328.linux-musl-core-arm64.tar.gz 94277384 BLAKE2B 
ec9e1cbcc11a3aaf601488173a86a989436d369bc3d2347ec5994acbe081fdb66edad9b9195dc535c0cdb3156622b8ff91989b95a6f31978042b4df7050e8e47
 SHA512 
94b524794ae7a08022a69c505e3b6b1710802e94b69e1096609baa1238617a0df5dc420681fe3a3c05b839f2d77fa4048dcaf95649950d596a121a7f9b83db02
 DIST Radarr.develop.5.2.4.8328.linux-musl-core-x64.tar.gz 99276083 BLAKE2B 
aed6e1cb1f388d430473a579a5e721441c99e655267f0d87dd15b0dd89c0130fe9b300faf92083d03044d530612bc94c435d393e38452438801f3c861809cdf2
 SHA512 
00cde3c96c0e8511efa95392ecf2df7893149551e4b49c55f51bffb870f73211440df6687f701eee939e7c6658b502339dd3af61c85cc68f9dc91a6631c01b2e
+DIST Radarr.develop.5.2.5.8361.linux-core-arm.tar.gz 94619156 BLAKE2B 
992ffb0e85dfcb38325b24af4781c8174b841147c183ae9081b4b7d960ea7e0937c04877469c52219642118eaa967365e6b49a168b6339b5b3b586a528e19ce1
 SHA512 
1c0f802a2086a97e23a23f6cc8720c9dd25cac8ff0d5b678ff73b89524d5db8db1169b2c273911d74f3ed354ff0111a7daf04e58d732f3130521246c4d82579f
+DIST Radarr.develop.5.2.5.8361.linux-core-arm64.tar.gz 94283954 BLAKE2B 
465e3c1657f24f9de8d8b13d93a7120ffa723f2568a972de075c33922e138e3650645d311667b093ce2b507f026c0ce70820570132f72068801c0f787e8d91af
 SHA512 
ac3807adcafc14a1a813c664a1b7cad2319a7bdc148cad35ecc676d47aaae107883693f3bb362611e66d1c9f3241233d0c7f8848845a231266b2404706eb246d
+DIST Radarr.develop.5.2.5.8361.linux-core-x64.tar.gz 100289514 BLAKE2B 
96f67cb9a93b40cbb2b478d16792cc1601cad432764255ea43c6172ff4fafb3c1458bdd55cb8e32414c30e62cd38ba47c028d3562efe00e1070bc2550dc9c713
 SHA512 
725a2fad0594e6b6f745556a81f4e801d660cfd760567a5bbbc5ce3d64c9eed04d061a11adde5ccc54d09130b63d414d4e964bfd146e3939d294e48af38a5dca
+DIST Radarr.develop.5.2.5.8361.linux-musl-core-arm.tar.gz 94673253 BLAKE2B 
db18d5c130fbdaf2749a0abed6a2d9e716dca6bee755e03abc8edd559117bfc759b4572a6322923976ddfa4c68ed8850a44a49864a163dc13dba0da9066591bd
 SHA512 
24abd5eb1595cb9c60f6da3881db8a2ea9f2ad8b471b46fc12fb516b96e1607e9271f2c8f7afa48c27764d18ff86de7a86970d9af73eab3ef2fbcdd4d2146d87
+DIST Radarr.develop.5.2.5.8361.linux-musl-core-arm64.tar.gz 94347651 BLAKE2B 
11a237714a1fa24ddbd57ddb7e3e460b2943db65a69cee1535a9f3bdcd049d5afa76a88f87bc7f560f6e7ba07fe853335e24441eb312c905aef3d518a712b49a
 SHA512 
8844bd96ea64f177b66f122d5fe0dc54ce710f40ab3cd5ac4d8d0e087a1b7a8a9ead71976c233700de799856fb13ad16581df5ca7100420188deec8618cd8944
+DIST Radarr.develop.5.2.5.8361.linux-musl-core-x64.tar.gz 99355007 BLAKE2B 
14fd1b23fdbd76cdaddcd05f9a2fc719aedd10b504beb4755f804279cda1a1c5c7ccc68ff08b265f46966d4194bde83e80bd34beff261a84270805b02aa516c9
 SHA512 
0a7b4edd217c72b3426906a288228079f34674cc7c736a27531e311561d8f580d445ec1911a6f13a8b35442c68c9649c9191145dc72b698e36138ad73c8899dc

diff --git a/www-apps/radarr/radarr-5.2.5.8361.ebuild 
b/www-apps/radarr/radarr-5.2.5.8361.ebuild
new file mode 100644
index ..a7041c9c66cd
--- /dev/null
+++ b/www-apps/radarr/radarr-5.2.5.8361.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? (
+   elibc_glibc? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-core-x64.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
+   )
+   arm? (
+   elibc_glibc? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-core-arm.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
+   )
+   arm64? (
+   elibc_glibc? ( 

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

2023-12-19 Thread Craig Andrews
commit: d2c2e9f8d7d79b8a3bcd1452ea720eb127d092f4
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Dec 19 21:36:34 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Dec 19 21:41:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c2e9f8

www-apps/prowlarr: add 1.11.2.4160

Signed-off-by: Craig Andrews  gentoo.org>

 www-apps/prowlarr/Manifest|  6 +++
 www-apps/prowlarr/prowlarr-1.11.2.4160.ebuild | 66 +++
 2 files changed, 72 insertions(+)

diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr/Manifest
index 83f42b383f76..d39a4cc949ca 100644
--- a/www-apps/prowlarr/Manifest
+++ b/www-apps/prowlarr/Manifest
@@ -4,3 +4,9 @@ DIST Prowlarr.develop.1.11.1.4146.linux-core-x64.tar.gz 
91353209 BLAKE2B ab953ec
 DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-arm.tar.gz 87108550 BLAKE2B 
1d5c622e1dc4c7afee58c7c18e8ed621e3eb1dfec625064a99e2b3c4a1e5a9ff6d455b87b56792456d5dc70300e9326c7afa1b22ab4703f63cf97a56086baaec
 SHA512 
092d7c207290e24960f8852462fa1e2eaef63c0ea95d543f22bac1e5c4dd0d563bd827e386e7ce985d528d76a90b304c620707005ff9012e2073e694f645f992
 DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-arm64.tar.gz 86387699 
BLAKE2B 
92c070df4b9c02c2331b654e2f57fef9ef67804785a8aadc50f10aa8ad7d45f75e8c737eeca45f49a7b8bf88ba06ebb2e6746dfaa137c6d7aa17d6a017de9f2d
 SHA512 
db8c28bea959f7334b53964bddf6793f8316c94ca86e401db75b01365d6704ae19abca5c90203a7659738ce59c578c13f03064c12de0ce9f6d961a569d855923
 DIST Prowlarr.develop.1.11.1.4146.linux-musl-core-x64.tar.gz 90421925 BLAKE2B 
ab1a43698d20930b107d8813070b91c0c660700790b6aabf2f16d3b32b29ae4fc9057ad549cfd13323dc025344589776104de7c65254c263c6f30d02a18d5c4a
 SHA512 
c9bd42e721f8811bb38263c32be9a3607099381c1462aa2193765b4926e2431207d0b3dd778d1a303361e07d667e2f47914214ce96f7f92c19f181cb7f3c268e
+DIST Prowlarr.develop.1.11.2.4160.linux-core-arm.tar.gz 87040581 BLAKE2B 
dc1fc904f7d271c5dbbb115eb2f6fb294a8abd1ecf8cc344d6074b5f17416eb26081cbf25baaeff8e96390882cebbc52f01ac0682c579c517a934888183c85ae
 SHA512 
b3b2f306f81ffad1cbc8966112822df389b7a965bc435eb904b6fb73eab2bf834ef803e84a2a4c4c35b0af2d1784ea9dde35389368845786864d5214089cb63c
+DIST Prowlarr.develop.1.11.2.4160.linux-core-arm64.tar.gz 86305625 BLAKE2B 
c8728409ab67709bca49109471eb96ca5015bb08a51604162f926823cb7803314f3bf4117767b7f1dc9c9d09a7958d30431b9570346b6b56a9efc34fc64a78a6
 SHA512 
c7b1ee6a251d25453bd67ba70330f96803093fb0b32091acd563635a9f2431c0c99bf185694365ac13a54a5013d301661568fe1701a922b96ba3049769f42acc
+DIST Prowlarr.develop.1.11.2.4160.linux-core-x64.tar.gz 91309965 BLAKE2B 
cc71ab7598bd9f002edcbf4ef0432a7c608f9b059a90c48e53035ddd61c2e2f37538e96e1298398f939a945fbb2873718a17d7ea9c614a064e3510454df80287
 SHA512 
5b495c3964938067e2f01f154551f5d8bac082a313838385ff1d362bc0f44aa2fb76308b8cfef5be246b704c29ece29d19e2ac04730a14935df25c40a1aec0a4
+DIST Prowlarr.develop.1.11.2.4160.linux-musl-core-arm.tar.gz 87088960 BLAKE2B 
185a48404f9b50c8d40510a86d6d2c89d2a718883ae60319ed990ddbc2286db06a84d77a25fd034896951a966bef84bff1d62b2d36d7842f72070a1f23c9d03a
 SHA512 
c8f64c6337fda5c2accb28a6d21e5f542e7606eab85c7736c6ef56e481a3801aef1e613908652b9d5b828d2574848877f1a420fa9397544c361c510af3a80dac
+DIST Prowlarr.develop.1.11.2.4160.linux-musl-core-arm64.tar.gz 86361381 
BLAKE2B 
06642bec2f16b17ee7568b2d751bcaec74903e532852db7ad77c8db93b43c27ca4df81280d501789ea9a29c187dd56cfaee1bada4574c8fbb52832df66472888
 SHA512 
1a99f29254f1680e234632de581d766b410b75f228467996c0487f8d2dbf422f627942aba05edf18315ef90c207ca7b0af10ca42fcdaa385da0f890ebd7c8b7f
+DIST Prowlarr.develop.1.11.2.4160.linux-musl-core-x64.tar.gz 90373175 BLAKE2B 
e35e24a2f633ff855decaac7a37088af6772ccc0dc7e6d69f99923ebf00d4872a3657dc8ebbcfc5d2f4eebff8ed219aa77d98c51b049353ebcab1a279adcd38f
 SHA512 
34907a2038bf66e33447ec278003f32b6e08156b713e04b88599ce3e775482d1fc1e059263cfc447dab142577dd062f2e333d88ef5ee7cec2e6d18834e07518b

diff --git a/www-apps/prowlarr/prowlarr-1.11.2.4160.ebuild 
b/www-apps/prowlarr/prowlarr-1.11.2.4160.ebuild
new file mode 100644
index ..40ad30af1b3a
--- /dev/null
+++ b/www-apps/prowlarr/prowlarr-1.11.2.4160.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? (
+   elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-x64.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-musl-core-x64.tar.gz
 )
+   )
+   arm? (
+   elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm.tar.gz
 )
+   elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-musl-core-arm.tar.gz
 )
+   )
+   arm64? (
+   

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

2023-12-19 Thread Jonas Stein
commit: 6b967d8ae919ccf2f341e23d9a5482590b512b06
Author: Jonas Stein  gentoo  org>
AuthorDate: Tue Dec 19 21:31:07 2023 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Tue Dec 19 21:31:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b967d8a

dev-util/reuse: new package, add 2.1.0

Signed-off-by: Jonas Stein  gentoo.org>

 dev-util/reuse/Manifest |  1 +
 dev-util/reuse/files/reuse-2.1.0_docs.patch | 15 +
 dev-util/reuse/metadata.xml | 13 
 dev-util/reuse/reuse-2.1.0.ebuild   | 50 +
 4 files changed, 79 insertions(+)

diff --git a/dev-util/reuse/Manifest b/dev-util/reuse/Manifest
new file mode 100644
index ..9a61e30a670b
--- /dev/null
+++ b/dev-util/reuse/Manifest
@@ -0,0 +1 @@
+DIST reuse-2.1.0.gh.tar.gz 260786 BLAKE2B 
371c1167e10449ecdbaf0a93dbfa7d50c700daaf71394379a48d1baaae0b1be03728e79fd551da75a3743e06cae1a77e744548845d1356a6af3eb39bef46
 SHA512 
912d713b2c68029cc67a5fbebfca61d96165ae8ae9d927bbdd651cf2130104b297d5c0133f1a46442cba3ec84d00ba92c27414bff770d2250f5a2131c7ad4aef

diff --git a/dev-util/reuse/files/reuse-2.1.0_docs.patch 
b/dev-util/reuse/files/reuse-2.1.0_docs.patch
new file mode 100644
index ..a9f19a8ea0a4
--- /dev/null
+++ b/dev-util/reuse/files/reuse-2.1.0_docs.patch
@@ -0,0 +1,15 @@
+--- a/docs/conf.py
 b/docs/conf.py
+@@ -189,9 +189,9 @@
+ """Copy the markdown files from the root of the project into the docs/
+ directory.
+ """
+-copyfile("../README.md", "readme.md")
+-copyfile("../CHANGELOG.md", "history.md")
+-copyfile("../CONTRIBUTING.md", "contributing.md")
++copyfile("README.md", "docs/readme.md")
++copyfile("CHANGELOG.md", "docs/history.md")
++copyfile("CONTRIBUTING.md", "docs/contributing.md")
+ 
+ 
+ def setup(app):

diff --git a/dev-util/reuse/metadata.xml b/dev-util/reuse/metadata.xml
new file mode 100644
index ..22d7a2c8d2d4
--- /dev/null
+++ b/dev-util/reuse/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   jst...@gentoo.org
+   Jonas Stein
+   
+   
+   https://reuse.readthedocs.io/
+   reuse
+   fsfe/reuse-tool
+   
+

diff --git a/dev-util/reuse/reuse-2.1.0.ebuild 
b/dev-util/reuse/reuse-2.1.0.ebuild
new file mode 100644
index ..097ea77f1667
--- /dev/null
+++ b/dev-util/reuse/reuse-2.1.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1
+
+DESCRIPTION="Manage license information according to the SPDX standard"
+HOMEPAGE="https://reuse.software/
+   https://github.com/fsfe/reuse-tool;
+MY_PN="${PN}-tool"
+SRC_URI="https://github.com/fsfe/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="GPL-3+ CC-BY-SA-4.0 CC0-1.0 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/binaryornot-0.4.4[${PYTHON_USEDEP}]
+   >=dev-python/boolean-py-3.8[${PYTHON_USEDEP}]
+   >=dev-python/jinja-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/license-expression-1.0[${PYTHON_USEDEP}]
+   >=dev-python/python-debian-0.1.48[${PYTHON_USEDEP}]"
+
+BDEPEND="sys-devel/gettext
+   test? (
+   dev-vcs/git
+   dev-vcs/mercurial
+   )"
+
+PATCHES=( "${FILESDIR}/reuse-2.1.0_docs.patch" )
+
+DOCS=( AUTHORS.rst CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md )
+
+distutils_enable_tests pytest
+
+# dev-python/sphinx-autodoc-typehints will be dropped after 2.1.0
+distutils_enable_sphinx docs \
+   ">=dev-python/furo-2023.3.27" \
+   ">=dev-python/recommonmark-0.7.1" \
+   ">=dev-python/sphinxcontrib-apidoc-0.3.0" \
+   ">=dev-python/sphinx-autodoc-typehints-1.12.0"
+
+python_test() {
+   cd "${T}" || die
+   epytest "${S}"/tests
+}



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

2023-12-19 Thread Ionen Wolkens
commit: 6c3e94908f9d009c174701f04870914d3804a4a1
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Dec 19 20:50:34 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Dec 19 20:58:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3e9490

dev-python/PyQt6: cleanup unnecessary (-)

Flag was added in qtwebengine-6.5.3 and this PyQt6 version checks
for >=6.6.0, so it does not matter anymore.

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

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

diff --git a/dev-python/PyQt6/PyQt6-6.6.1.ebuild 
b/dev-python/PyQt6/PyQt6-6.6.1.ebuild
index 1bf42ba63ec2..dc80efd5e2f0 100644
--- a/dev-python/PyQt6/PyQt6-6.6.1.ebuild
+++ b/dev-python/PyQt6/PyQt6-6.6.1.ebuild
@@ -61,7 +61,7 @@ DEPEND="
opengl? (
gles2-only? ( media-libs/libglvnd )
)
-   pdfium? ( >=dev-qt/qtwebengine-${QT_PV}[pdfium(-),widgets?] )
+   pdfium? ( >=dev-qt/qtwebengine-${QT_PV}[pdfium,widgets?] )
positioning? ( >=dev-qt/qtpositioning-${QT_PV} )
qml? ( >=dev-qt/qtdeclarative-${QT_PV}[widgets?] )
quick3d? ( >=dev-qt/qtquick3d-${QT_PV} )



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlocation/

2023-12-19 Thread Andreas Sturmlechner
commit: 33b1d5c9ca87b2f0fbeea3d94e6a99d73c4b6ba0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:56:55 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:56:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b1d5c9

dev-qt/qtlocation: drop 5.15.11

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

 dev-qt/qtlocation/Manifest  |  1 -
 dev-qt/qtlocation/qtlocation-5.15.11.ebuild | 58 -
 2 files changed, 59 deletions(-)

diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest
index 6a1749e6bdb3..3f7965e3dcb5 100644
--- a/dev-qt/qtlocation/Manifest
+++ b/dev-qt/qtlocation/Manifest
@@ -1,4 +1,3 @@
-DIST qtlocation-5.15.11-fix-appendChildNode.patch.xz 536 BLAKE2B 
f20566fb1b28cbb6784a270e9687153166779fe70d048dc947a705bb77126c7420b6f714c3135770708a2a0e1b65da385ef3d893f94307f99fa3b39b8abb2b6e
 SHA512 
3a72c142150f65630a209a6d5ca36f796eeb57addae390dc1ae87ecf9d27d07a3a8c799bc4729a3030680bf032a245622037bcba7abaceaf3d1b98091b1eb66b
 DIST qtlocation-5.15.11-patchset.tar.xz 4796 BLAKE2B 
dcfa75bd3fb2e9069e1a530c27e2b4e9ac921fcf0ccb712f0894375b575ba25103948c6e5b85b56a8f9c9f2d7edf7df8e38501e93356e69f060b577a04c2d221
 SHA512 
14bd2864abc6f446dc4fbac03548cb42305685b46db757d856360780144095a021130bc0ebf1d07a516dc7991dc0cfbf733bd0ef6be58237bc15822c21af1d0b
 DIST qtlocation-everywhere-opensource-src-5.15.11.tar.xz 6554216 BLAKE2B 
e882ecdc4f565f48874371e5235dc96769fbded9446a2a7f1afd869217f4bc75a9f42c6c34627311b55fbfc60da9a95fc7472c3ced83fca722799497b437a9d9
 SHA512 
d439d03ff9044fc70165d1ceb5def9ec3290beec56b3e893409a24cd355651a4317e0eadff0266d38203ff84429a5fb8659a200f094669716579b6791a1a0f6d
 DIST qtlocation-everywhere-src-6.6.1.tar.xz 3035980 BLAKE2B 
0221f1d44ff5f0713b93e319989e46af8aaa29178bc8b77081c940c3f7d341701301ac6453f91b2febdcbb67d807ad440eedbd79e5cec5f1ec593ee0f5cef92c
 SHA512 
aa820e84efe3576bf483cd7d64a3b930f731c88324d34cc1486312c1cb0107a726dea91dc226562f017695300f0d656228d947d97374747c3ac6ae597cda6bb5

diff --git a/dev-qt/qtlocation/qtlocation-5.15.11.ebuild 
b/dev-qt/qtlocation/qtlocation-5.15.11.ebuild
deleted file mode 100644
index abe80be3b1e0..
--- a/dev-qt/qtlocation/qtlocation-5.15.11.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qt5-build
-
-DESCRIPTION="Location (places, maps, navigation) library for the Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   MAPBOXGL_COMMIT=4c88f2c0e61daa89f584a8a9a3eba210221c6920
-   SRC_URI+=" 
https://invent.kde.org/qt/qt/${PN}-mapboxgl/-/archive/${MAPBOXGL_COMMIT}/${PN}-mapboxgl-${MAPBOXGL_COMMIT}.tar.gz
 -> ${PN}-mapboxgl-${PV}-${MAPBOXGL_COMMIT:0:8}.tar.gz
-   
https://dev.gentoo.org/~asturm/distfiles/${P}-fix-appendChildNode.patch.xz;
-   KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
-fi
-
-RDEPEND="
-   dev-libs/icu:=
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtdeclarative-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*
-   =dev-qt/qtnetwork-${QT5_PV}*
-   =dev-qt/qtpositioning-${QT5_PV}*[qml]
-   =dev-qt/qtsql-${QT5_PV}*
-   sys-libs/zlib
-"
-DEPEND="${RDEPEND}
-   =dev-qt/qtconcurrent-${QT5_PV}*
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/3rdparty/clipper
-   src/3rdparty/poly2tri
-   src/3rdparty/clip2tri
-   src/3rdparty/mapbox-gl-native
-   src/location
-   src/imports/location
-   src/imports/locationlabs
-   src/plugins/geoservices
-)
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-
-PATCHES=( "${WORKDIR}/${P}-fix-appendChildNode.patch" )
-
-src_prepare() {
-   rm -rf src/3rdparty/mapbox-gl-native/* || die
-   mv "${WORKDIR}"/${PN}-mapboxgl-${MAPBOXGL_COMMIT}/* 
src/3rdparty/mapbox-gl-native || die
-   qt5-build_src_prepare
-}
-fi
-
-src_configure() {
-   # src/plugins/geoservices requires files that are only generated when
-   # qmake is run in the root directory. Bug 633776.
-   qt5_configure_oos_quirk qtlocation-config.pri src/location
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtdeclarative/

2023-12-19 Thread Andreas Sturmlechner
commit: e7aecda56ee7d62b4fe66e95bf7ab1d3c2a2397a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:56:28 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:56:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7aecda5

dev-qt/qtdeclarative: drop 5.15.11-r1

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

 dev-qt/qtdeclarative/Manifest  |  1 -
 .../qtdeclarative/qtdeclarative-5.15.11-r1.ebuild  | 67 --
 2 files changed, 68 deletions(-)

diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest
index 1e60347c6843..a7e02be55d4e 100644
--- a/dev-qt/qtdeclarative/Manifest
+++ b/dev-qt/qtdeclarative/Manifest
@@ -1,4 +1,3 @@
-DIST qtdeclarative-5.15.11-gentoo-kde-2.tar.xz 31064 BLAKE2B 
7e4390fc71b52cc12dc6b6189a655c164441d7ddfaaa689cc203a85f5dd210890f8587b38a324fa3a8123b79f522e2837be116a374a1eca605535207beabe6f0
 SHA512 
e54406a89e3b5d8484dfad6db3c95235e8da8bc81178f1f17ba2e1fc0dbd7633ed900c2ef4d546f2cc0eba9bd5f35ed676a45ea8a4c71b90042d6742dcdcc8d4
 DIST qtdeclarative-5.15.11-gentoo-kde-3.tar.xz 31612 BLAKE2B 
0a7a5310e5a0941b5a0cc73395fbe6bdf487bf75f98c5d0c0bbb7ea0d02c297f34a52c9ac0fad53404188077c531c2bb1096d99807e5810c07cc5900229ecfa4
 SHA512 
0957ad057ba3c3de4e2b5f15af2bc51e2c8333e1c23e48aa0ea213e5f1d7caaeb5bdc83f1c1c60c05563c2e6db7d0bce378b337c7a0b14ff9f5e30459e38b92c
 DIST qtdeclarative-everywhere-opensource-src-5.15.11.tar.xz 21601640 BLAKE2B 
5bb4d6484c54593b3c65f00c070c52e384cd7ff7be115abf54d4b3883e78d42994a4dee502c073ae4738020ada0d375ae1a1b8bb346e13ee28e287c69daeefc5
 SHA512 
08f76c5a1253d6014e48ef8d8c53f65d3087efea0f614f36aa03f37882c6947109b17398ac491157c4fbd0c954762e819c2f074fa5a71e6990f16a54ec7224ae
 DIST qtdeclarative-everywhere-src-6.6.1.tar.xz 34349560 BLAKE2B 
399d11d52cbafdb13a21a39a9d98b314d45f39ec5351265f9e6fd08a335c48907cdcd1fde23da079ade6cf9adeafd48ba5cba2233cd54d2f6f51ae05a4979780
 SHA512 
1a819187519670338df1c308d5980aed985670ee3e79a424e56d8e300855513541f46a1b89d9f595bdab382a0072761f0fda87d78653602041a10a5bd3e7bdcd

diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.15.11-r1.ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-5.15.11-r1.ebuild
deleted file mode 100644
index 73f629ecd4f4..
--- a/dev-qt/qtdeclarative/qtdeclarative-5.15.11-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2009-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=2
-   KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
-fi
-
-PYTHON_COMPAT=( python3_{8..12} )
-inherit flag-o-matic python-any-r1 qt5-build
-
-DESCRIPTION="The QML and Quick modules for the Qt5 framework"
-
-IUSE="gles2-only +jit localstorage vulkan +widgets"
-
-# qtgui[gles2-only=] is needed because of bug 504322
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*:5=[gles2-only=,vulkan=]
-   =dev-qt/qtnetwork-${QT5_PV}*
-   =dev-qt/qttest-${QT5_PV}*
-   media-libs/libglvnd
-   localstorage? ( =dev-qt/qtsql-${QT5_PV}* )
-   widgets? ( =dev-qt/qtwidgets-${QT5_PV}*[gles2-only=] )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-5.14.2-QQuickItemView-fix-maxXY-extent.patch" # 
QTBUG-83890
-)
-
-src_prepare() {
-   qt_use_disable_mod localstorage sql \
-   src/imports/imports.pro
-
-   qt_use_disable_mod widgets widgets \
-   src/src.pro \
-   src/qmltest/qmltest.pro \
-   tests/auto/auto.pro \
-   tools/tools.pro \
-   tools/qmlscene/qmlscene.pro \
-   tools/qml/qml.pro
-
-   qt5-build_src_prepare
-}
-
-src_configure() {
-   replace-flags "-Os" "-O2" # bug 840861
-
-   local myqmakeargs=(
-   --
-   -qml-debug
-   $(qt_use jit feature-qml-jit)
-   )
-   qt5-build_src_configure
-}
-
-src_install() {
-   qt5-build_src_install
-   qt5_symlink_binary_to_path qml 5
-   qt5_symlink_binary_to_path qmleasing 5
-   qt5_symlink_binary_to_path qmlpreview 5
-   qt5_symlink_binary_to_path qmlscene 5
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwidgets/

2023-12-19 Thread Andreas Sturmlechner
commit: 6c1789ae92c9b25e145778f7024f5243a15afed5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:57:16 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:57:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c1789ae

dev-qt/qtwidgets: drop 5.15.11

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

 dev-qt/qtwidgets/Manifest |  1 -
 dev-qt/qtwidgets/qtwidgets-5.15.11.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-qt/qtwidgets/Manifest b/dev-qt/qtwidgets/Manifest
index ec817fb78264..e50e83855ef9 100644
--- a/dev-qt/qtwidgets/Manifest
+++ b/dev-qt/qtwidgets/Manifest
@@ -1,4 +1,3 @@
 DIST qtbase-5.15-gentoo-patchset-4.tar.xz 4884 BLAKE2B 
ef1f11ea63084b834e19a9bd4c4a146e0d47f10e6c1f540a23db64ba6b0d42f46d63f54f93587deae9ac528f6824fa0e88177fe109a53aaee7d8328d49e364cd
 SHA512 
1ae6630cef6bead9187aaaf7c420566b2c1f946bfa22cb983c52267c098e9b1c7b82c99204cbd3eed5eb6ebde0359726e260fd449618802735af465ca39f0a1d
-DIST qtbase-5.15.11-gentoo-kde-1.tar.xz 324008 BLAKE2B 
3ccd8645b5b727e4794fe4cb605d3db97159bf196b8e3e342ade364b701d6eb41e8e83ed608ec996480d7a82a43ddac098844dcecc9f122d63e9072abc21e9db
 SHA512 
d145af982de89a34eaa15c5dc48ed927b5757e6a6d9bfa064a5cef40618465d7d6139ecaccb71944eac43926b977031034f6c22d4986f1e4a704007de9cb325d
 DIST qtbase-5.15.11-gentoo-kde-3.tar.xz 330732 BLAKE2B 
2f783249ebbc2381861f1edec560877113a6f63977b856385977b114b654a21d3dd5d7daa8f2d93ab4549266ca75071dfc4f6fe3a7f8e2b3087e45001f5bb53f
 SHA512 
df53c45bcf8f9dbcc8de91748c9b28b7d3d26b401800620ddc1cf244f6b500dd7e867394272f04348f58aa7aaed6e4e8c2edce694b6a6f465542d609f05ebd6e
 DIST qtbase-everywhere-opensource-src-5.15.11.tar.xz 50825756 BLAKE2B 
663d370d46a17939b984ef4c541414b81acdb98a2b7e67bb202c46891f9675e921723a025cef88b54b6111f235d94e273b97e1b55e2ca52b91e3eebca5ff7161
 SHA512 
4136092eec7bdceba661eee0187b7952ed6ba819148295979c0fd0392c17b0178165fa20136bdf460509a815c96f43892403294ba6e5322c54c51459c358fb7f

diff --git a/dev-qt/qtwidgets/qtwidgets-5.15.11.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.15.11.ebuild
deleted file mode 100644
index 37e22466f060..
--- a/dev-qt/qtwidgets/qtwidgets-5.15.11.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
-fi
-
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="Set of components for creating classic desktop-style UIs for the 
Qt5 framework"
-
-# keep IUSE defaults in sync with qtgui
-IUSE="dbus gles2-only gtk +png +X"
-REQUIRED_USE="gtk? ( dbus )"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   =dev-qt/qtgui-${QT5_PV}*:5=[gles2-only=,png=,X?]
-   dbus? ( =dev-qt/qtdbus-${QT5_PV}* )
-   gtk? (
-   dev-libs/glib:2
-   =dev-qt/qtgui-${QT5_PV}*:5=[dbus]
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11
-   x11-libs/pango
-   )
-"
-RDEPEND="${DEPEND}"
-
-QT5_TARGET_SUBDIRS=(
-   src/tools/uic
-   src/widgets
-   src/plugins/platformthemes
-)
-
-QT5_GENTOO_CONFIG=(
-   dbus:xdgdesktopportal:
-   gtk:gtk3:
-   ::widgets
-   !:no-widgets:
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :widgets
-)
-
-src_configure() {
-   local myconf=(
-   -opengl $(usex gles2-only es2 desktop)
-   $(usev dbus -dbus-linked)
-   $(qt_use gtk)
-   -gui
-   $(qt_use png libpng system)
-   -widgets
-   $(qt_use X xcb)
-   $(usev X '-xcb-xlib -xkbcommon')
-   )
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsql/

2023-12-19 Thread Andreas Sturmlechner
commit: e5ab756884098e6392cc5c7f26df239e1952068b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:57:04 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:57:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ab7568

dev-qt/qtsql: drop 5.15.11

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

 dev-qt/qtsql/Manifest |  1 -
 dev-qt/qtsql/qtsql-5.15.11.ebuild | 56 ---
 2 files changed, 57 deletions(-)

diff --git a/dev-qt/qtsql/Manifest b/dev-qt/qtsql/Manifest
index ec817fb78264..e50e83855ef9 100644
--- a/dev-qt/qtsql/Manifest
+++ b/dev-qt/qtsql/Manifest
@@ -1,4 +1,3 @@
 DIST qtbase-5.15-gentoo-patchset-4.tar.xz 4884 BLAKE2B 
ef1f11ea63084b834e19a9bd4c4a146e0d47f10e6c1f540a23db64ba6b0d42f46d63f54f93587deae9ac528f6824fa0e88177fe109a53aaee7d8328d49e364cd
 SHA512 
1ae6630cef6bead9187aaaf7c420566b2c1f946bfa22cb983c52267c098e9b1c7b82c99204cbd3eed5eb6ebde0359726e260fd449618802735af465ca39f0a1d
-DIST qtbase-5.15.11-gentoo-kde-1.tar.xz 324008 BLAKE2B 
3ccd8645b5b727e4794fe4cb605d3db97159bf196b8e3e342ade364b701d6eb41e8e83ed608ec996480d7a82a43ddac098844dcecc9f122d63e9072abc21e9db
 SHA512 
d145af982de89a34eaa15c5dc48ed927b5757e6a6d9bfa064a5cef40618465d7d6139ecaccb71944eac43926b977031034f6c22d4986f1e4a704007de9cb325d
 DIST qtbase-5.15.11-gentoo-kde-3.tar.xz 330732 BLAKE2B 
2f783249ebbc2381861f1edec560877113a6f63977b856385977b114b654a21d3dd5d7daa8f2d93ab4549266ca75071dfc4f6fe3a7f8e2b3087e45001f5bb53f
 SHA512 
df53c45bcf8f9dbcc8de91748c9b28b7d3d26b401800620ddc1cf244f6b500dd7e867394272f04348f58aa7aaed6e4e8c2edce694b6a6f465542d609f05ebd6e
 DIST qtbase-everywhere-opensource-src-5.15.11.tar.xz 50825756 BLAKE2B 
663d370d46a17939b984ef4c541414b81acdb98a2b7e67bb202c46891f9675e921723a025cef88b54b6111f235d94e273b97e1b55e2ca52b91e3eebca5ff7161
 SHA512 
4136092eec7bdceba661eee0187b7952ed6ba819148295979c0fd0392c17b0178165fa20136bdf460509a815c96f43892403294ba6e5322c54c51459c358fb7f

diff --git a/dev-qt/qtsql/qtsql-5.15.11.ebuild 
b/dev-qt/qtsql/qtsql-5.15.11.ebuild
deleted file mode 100644
index d4bfc51740fa..
--- a/dev-qt/qtsql/qtsql-5.15.11.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
-fi
-
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="SQL abstraction library for the Qt5 framework"
-
-SLOT=5/${QT5_PV} # bug 639140
-IUSE="freetds mysql oci8 odbc postgres +sqlite"
-REQUIRED_USE="
-   || ( freetds mysql oci8 odbc postgres sqlite )
-"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   freetds? ( dev-db/freetds )
-   mysql? ( dev-db/mysql-connector-c:= )
-   oci8? ( dev-db/oracle-instantclient:=[sdk] )
-   odbc? ( dev-db/unixODBC )
-   postgres? ( dev-db/postgresql:* )
-   sqlite? ( dev-db/sqlite:3 )
-"
-RDEPEND="${DEPEND}"
-
-QT5_TARGET_SUBDIRS=(
-   src/sql
-   src/plugins/sqldrivers
-)
-
-QT5_GENTOO_PRIVATE_CONFIG=(
-   :sql
-)
-
-src_configure() {
-   local myconf=(
-   $(qt_use freetds  sql-tdsplugin)
-   $(qt_use mysqlsql-mysql  plugin)
-   $(qt_use oci8 sql-ociplugin)
-   $(qt_use odbc sql-odbc   plugin)
-   $(qt_use postgres sql-psql   plugin)
-   $(qt_use sqlite   sql-sqlite plugin)
-   $(usev sqlite -system-sqlite)
-   )
-
-   use oci8 && myconf+=("-I${ORACLE_HOME}/include" 
"-L${ORACLE_HOME}/$(get_libdir)")
-
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qdoc/

2023-12-19 Thread Andreas Sturmlechner
commit: 5bc8b3327cb54ad45921a15a3d7cf26e07174632
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:55:56 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:55:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc8b332

dev-qt/qdoc: drop 5.15.11

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

 dev-qt/qdoc/Manifest|  1 -
 dev-qt/qdoc/qdoc-5.15.11.ebuild | 40 
 2 files changed, 41 deletions(-)

diff --git a/dev-qt/qdoc/Manifest b/dev-qt/qdoc/Manifest
index e445bb66ba96..6c94666e0fe5 100644
--- a/dev-qt/qdoc/Manifest
+++ b/dev-qt/qdoc/Manifest
@@ -1,3 +1,2 @@
-DIST qttools-5.15.11-gentoo-kde-1.tar.xz 3188 BLAKE2B 
0ec418efb257f9d32e1a245bbdf9321e2070bae0e0b1d1306cde2a748cce1a0cc73a5631631c50b202320d8357fa132d645abbb7da42d38b5d212033aa74a5cd
 SHA512 
eb03030070c3ef87b9a29f7a77f918514e4565f506fc5f39030ffb54aeec3b7fd87fae720595158527288cd152e0d179714159e03819f1cc4efa82650a7054fe
 DIST qttools-5.15.11-gentoo-kde-2.tar.xz 3928 BLAKE2B 
404fbd0df29a93a60e1d38ae415b31625ba17a8c0149105e44b44ebe0e08804424cf0f282ecf199c383d0fd97b5b90bf47ebf2887df85cf4c0967f25c64e222c
 SHA512 
500561fa2a2d155a20b30a618e9afdaba1ab42e100f6f107e113a0524cdf9065ae1865147a1c0cfa0e92d16fc6772b137dc81ff23d7e75d8b378f6cac9695158
 DIST qttools-everywhere-opensource-src-5.15.11.tar.xz 8898428 BLAKE2B 
88e3e313f2377819345c67cd9e6ff90ca96961662e0e24640a04eda37f46fb444f958c69fb3a5e279da679cd6a25f8b232038d13eb9023cfad79fbd9ea53ae56
 SHA512 
7aa66964dfc4bd144ee828a5c278b3127c5b269c6fb0e5363e7d2377ba19165e04719636659cb30fee471de26740d3d8692068459e1764d9f84a7737f24c4884

diff --git a/dev-qt/qdoc/qdoc-5.15.11.ebuild b/dev-qt/qdoc/qdoc-5.15.11.ebuild
deleted file mode 100644
index c642056b0917..
--- a/dev-qt/qdoc/qdoc-5.15.11.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=1
-   KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-fi
-
-QT5_MODULE="qttools"
-inherit qt5-build
-
-DESCRIPTION="Qt documentation generator"
-
-IUSE="qml"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   sys-devel/clang:=
-   qml? ( =dev-qt/qtdeclarative-${QT5_PV}* )
-"
-RDEPEND="${DEPEND}"
-
-QT5_TARGET_SUBDIRS=(
-   src/qdoc
-)
-
-src_prepare() {
-   qt_use_disable_mod qml qmldevtools-private \
-   src/qdoc/qdoc.pro
-
-   qt5-build_src_prepare
-}
-
-src_configure() {
-   # qt5_tools_configure() not enough here, needs another fix, bug 676948
-   qt5_configure_oos_quirk qtqdoc-config.pri src/qdoc
-   qt5-build_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtgui/

2023-12-19 Thread Andreas Sturmlechner
commit: 5e396c52f490f1af952961f0ddd6fb59dd350254
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:56:13 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:56:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e396c52

dev-qt/qtgui: drop 5.15.11

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

 dev-qt/qtgui/Manifest |   1 -
 dev-qt/qtgui/qtgui-5.15.11.ebuild | 178 --
 2 files changed, 179 deletions(-)

diff --git a/dev-qt/qtgui/Manifest b/dev-qt/qtgui/Manifest
index fc8b17a256b5..e50e83855ef9 100644
--- a/dev-qt/qtgui/Manifest
+++ b/dev-qt/qtgui/Manifest
@@ -1,4 +1,3 @@
 DIST qtbase-5.15-gentoo-patchset-4.tar.xz 4884 BLAKE2B 
ef1f11ea63084b834e19a9bd4c4a146e0d47f10e6c1f540a23db64ba6b0d42f46d63f54f93587deae9ac528f6824fa0e88177fe109a53aaee7d8328d49e364cd
 SHA512 
1ae6630cef6bead9187aaaf7c420566b2c1f946bfa22cb983c52267c098e9b1c7b82c99204cbd3eed5eb6ebde0359726e260fd449618802735af465ca39f0a1d
-DIST qtbase-5.15.11-gentoo-kde-2.tar.xz 327120 BLAKE2B 
38cf4106d620b28ab690de52dce7bbcf2da9de1009a0b126a68e19949013458ba788edd92a050410f9e33522be77e09eeeb95d4d696c3e482156dce5e120ee70
 SHA512 
235fb3baf660c551415300b5cc8a0d6091c7edd0a6f2c28bfb4e14bc63ada50203c0108cd8bd84b931860ee196cf83f68ec82a34509515c439ab989d80167d26
 DIST qtbase-5.15.11-gentoo-kde-3.tar.xz 330732 BLAKE2B 
2f783249ebbc2381861f1edec560877113a6f63977b856385977b114b654a21d3dd5d7daa8f2d93ab4549266ca75071dfc4f6fe3a7f8e2b3087e45001f5bb53f
 SHA512 
df53c45bcf8f9dbcc8de91748c9b28b7d3d26b401800620ddc1cf244f6b500dd7e867394272f04348f58aa7aaed6e4e8c2edce694b6a6f465542d609f05ebd6e
 DIST qtbase-everywhere-opensource-src-5.15.11.tar.xz 50825756 BLAKE2B 
663d370d46a17939b984ef4c541414b81acdb98a2b7e67bb202c46891f9675e921723a025cef88b54b6111f235d94e273b97e1b55e2ca52b91e3eebca5ff7161
 SHA512 
4136092eec7bdceba661eee0187b7952ed6ba819148295979c0fd0392c17b0178165fa20136bdf460509a815c96f43892403294ba6e5322c54c51459c358fb7f

diff --git a/dev-qt/qtgui/qtgui-5.15.11.ebuild 
b/dev-qt/qtgui/qtgui-5.15.11.ebuild
deleted file mode 100644
index f44112b35872..
--- a/dev-qt/qtgui/qtgui-5.15.11.ebuild
+++ /dev/null
@@ -1,178 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} != ** ]]; then
-   QT5_KDEPATCHSET_REV=2
-   KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
-fi
-
-QT5_MODULE="qtbase"
-inherit qt5-build
-
-DESCRIPTION="The GUI module and platform plugins for the Qt5 framework"
-
-SLOT=5/${QT5_PV} # bug 707658
-IUSE="accessibility dbus egl eglfs evdev gles2-only ibus jpeg +libinput
-   linuxfb +png tslib tuio +udev vnc vulkan wayland +X"
-REQUIRED_USE="
-   || ( eglfs linuxfb vnc wayland X )
-   accessibility? ( dbus X )
-   eglfs? ( egl )
-   ibus? ( dbus )
-   libinput? ( udev )
-   X? ( gles2-only? ( egl ) )
-"
-
-RDEPEND="
-   dev-libs/glib:2
-   =dev-qt/qtcore-${QT5_PV}*:5=
-   dev-util/gtk-update-icon-cache
-   media-libs/fontconfig
-   media-libs/freetype:2
-   media-libs/harfbuzz:=
-   sys-libs/zlib:=
-   dbus? ( =dev-qt/qtdbus-${QT5_PV}* )
-   eglfs? (
-   media-libs/mesa[gbm(+)]
-   x11-libs/libdrm
-   )
-   evdev? ( sys-libs/mtdev )
-   jpeg? ( media-libs/libjpeg-turbo:= )
-   gles2-only? ( media-libs/libglvnd )
-   !gles2-only? ( media-libs/libglvnd[X] )
-   libinput? (
-   dev-libs/libinput:=
-   x11-libs/libxkbcommon
-   )
-   png? ( media-libs/libpng:= )
-   tslib? ( >=x11-libs/tslib-1.21 )
-   tuio? ( =dev-qt/qtnetwork-${QT5_PV}* )
-   udev? ( virtual/libudev:= )
-   vnc? ( =dev-qt/qtnetwork-${QT5_PV}* )
-   vulkan? ( dev-util/vulkan-headers )
-   X? (
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libxcb:=
-   x11-libs/libxkbcommon[X]
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-keysyms
-   x11-libs/xcb-util-renderutil
-   x11-libs/xcb-util-wm
-   )
-"
-DEPEND="${RDEPEND}
-   evdev? ( sys-kernel/linux-headers )
-   linuxfb? ( sys-kernel/linux-headers )
-   udev? ( sys-kernel/linux-headers )
-   X? ( x11-base/xorg-proto )
-"
-PDEPEND="
-   ibus? ( app-i18n/ibus )
-   wayland? ( =dev-qt/qtwayland-${QT5_PV}* )
-"
-
-QT5_TARGET_SUBDIRS=(
-   src/tools/qvkgen
-   src/gui
-   src/openglextensions
-   src/platformheaders
-   src/platformsupport
-   src/plugins/generic
-   src/plugins/imageformats
-   src/plugins/platforms
-   src/plugins/platforminputcontexts
-)
-
-QT5_GENTOO_CONFIG=(
-   accessibility:accessibility-atspi-bridge
-   egl:egl:
-   eglfs:eglfs:
-   eglfs:eglfs_egldevice:
-   eglfs:eglfs_gbm:
-   

[gentoo-commits] proj/kde:master commit in: Documentation/maintainers/, Documentation/package.mask/, ...

2023-12-19 Thread Andreas Sturmlechner
commit: 2cc21377dea2dc8787447f7e1bed5291fb2de905
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:48:33 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:48:33 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2cc21377

Documentation: Drop KDE Gear 23.04

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

 Documentation/maintainers/regenerate-files |   2 +-
 .../.kde-gear-23.04.49./_HEADER_   |   2 -
 .../.kde-gear-23.04.49./kde-baseapps-23.04 |   5 -
 .../.kde-gear-23.04.49./kde-gear-23.04 |  10 -
 .../.kde-gear-23.04.49./kdeaccessibility-23.04 |   5 -
 .../.kde-gear-23.04.49./kdeadmin-23.04 |   3 -
 .../.kde-gear-23.04.49./kdeedu-23.04   |  26 ---
 .../.kde-gear-23.04.49./kdegames-23.04 |  43 
 .../.kde-gear-23.04.49./kdegraphics-23.04  |  18 --
 .../.kde-gear-23.04.49./kdemultimedia-23.04|  15 --
 .../.kde-gear-23.04.49./kdenetwork-23.04   |  20 --
 .../.kde-gear-23.04.49./kdepim-23.04   |  57 -
 .../.kde-gear-23.04.49./kdesdk-23.04   |  19 --
 .../.kde-gear-23.04.49./kdeutils-23.04 |  25 ---
 .../.kde-gear-23.04.49./more-deps  |   0
 .../.kde-gear-23.04/_HEADER_   |   2 -
 .../.kde-gear-23.04/kde-baseapps-23.04 |   1 -
 .../.kde-gear-23.04/kde-gear-23.04 |   1 -
 .../.kde-gear-23.04/kdeaccessibility-23.04 |   1 -
 .../.kde-gear-23.04/kdeadmin-23.04 |   1 -
 .../.kde-gear-23.04/kdeedu-23.04   |   1 -
 .../.kde-gear-23.04/kdegames-23.04 |   1 -
 .../.kde-gear-23.04/kdegraphics-23.04  |   1 -
 .../.kde-gear-23.04/kdemultimedia-23.04|   1 -
 .../.kde-gear-23.04/kdenetwork-23.04   |   1 -
 .../.kde-gear-23.04/kdepim-23.04   |   1 -
 .../.kde-gear-23.04/kdesdk-23.04   |   1 -
 .../.kde-gear-23.04/kdeutils-23.04 |   1 -
 .../.kde-gear-23.04/more-deps  |   0
 .../kde-gear-23.04.49..keywords| 249 -
 .../kde-gear-23.04.keywords| 249 -
 Documentation/package.mask/kde-gear-23.04  | 249 -
 .../package.unmask/.kde-gear-23.04/_HEADER_|   2 -
 .../.kde-gear-23.04/kde-baseapps-23.04 |   1 -
 .../package.unmask/.kde-gear-23.04/kde-gear-23.04  |   1 -
 .../.kde-gear-23.04/kdeaccessibility-23.04 |   1 -
 .../package.unmask/.kde-gear-23.04/kdeadmin-23.04  |   1 -
 .../package.unmask/.kde-gear-23.04/kdeedu-23.04|   1 -
 .../package.unmask/.kde-gear-23.04/kdegames-23.04  |   1 -
 .../.kde-gear-23.04/kdegraphics-23.04  |   1 -
 .../.kde-gear-23.04/kdemultimedia-23.04|   1 -
 .../.kde-gear-23.04/kdenetwork-23.04   |   1 -
 .../package.unmask/.kde-gear-23.04/kdepim-23.04|   1 -
 .../package.unmask/.kde-gear-23.04/kdesdk-23.04|   1 -
 .../package.unmask/.kde-gear-23.04/kdeutils-23.04  |   1 -
 Documentation/package.unmask/kde-gear-23.04| 249 -
 46 files changed, 1 insertion(+), 1273 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 05a6aa12be..8a303d3d1d 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -18,7 +18,7 @@ KF6_RELEASE=${KF6_RELEASE:-}
 PLASMA_RELEASES="5.27"
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.27}
 
-GEAR_RELEASES="23.04 23.08"
+GEAR_RELEASES="23.08"
 GEAR_RELEASE=${GEAR_RELEASE:-23.08}
 
 # regenerate keywords

diff --git 
a/Documentation/package.accept_keywords/.kde-gear-23.04.49./_HEADER_ 
b/Documentation/package.accept_keywords/.kde-gear-23.04.49./_HEADER_
deleted file mode 100644
index 5088eb592a..00
--- a/Documentation/package.accept_keywords/.kde-gear-23.04.49./_HEADER_
+++ /dev/null
@@ -1,2 +0,0 @@
-# You can use this file to keyword/unkeyword the KDE Gear 23.04 release.
-# Edit Documentation/package.accept_keywords/.kde-gear-23.04/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-gear-23.04.49./kde-baseapps-23.04
 
b/Documentation/package.accept_keywords/.kde-gear-23.04.49./kde-baseapps-23.04
deleted file mode 100644
index ef30d587be..00
--- 
a/Documentation/package.accept_keywords/.kde-gear-23.04.49./kde-baseapps-23.04
+++ /dev/null
@@ -1,5 +0,0 @@
-~kde-apps/kdialog-23.04.49. **
-~kde-apps/keditbookmarks-23.04.49. **
-~kde-apps/kfind-23.04.49. **
-~kde-apps/konqueror-23.04.49. **
-~www-client/falkon-23.04.49. **

diff --git 
a/Documentation/package.accept_keywords/.kde-gear-23.04.49./kde-gear-23.04 
b/Documentation/package.accept_keywords/.kde-gear-23.04.49./kde-gear-23.04
deleted file mode 100644
index 

[gentoo-commits] proj/kde:master commit in: sets/

2023-12-19 Thread Andreas Sturmlechner
commit: db0793aa95bdf9217d2e7d5474160c4f40776224
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:49:27 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:49:27 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=db0793aa

sets: Drop KDE Gear 23.04

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

 sets/kde-baseapps-23.04 |  5 
 sets/kde-gear-23.04 | 21 -
 sets/kdeaccessibility-23.04 |  5 
 sets/kdeadmin-23.04 |  3 ---
 sets/kdeedu-23.04   | 26 -
 sets/kdegames-23.04 | 43 --
 sets/kdegraphics-23.04  | 18 --
 sets/kdemultimedia-23.04| 15 
 sets/kdenetwork-23.04   | 20 
 sets/kdepim-23.04   | 57 -
 sets/kdesdk-23.04   | 19 ---
 sets/kdeutils-23.04 | 25 
 12 files changed, 257 deletions(-)

diff --git a/sets/kde-baseapps-23.04 b/sets/kde-baseapps-23.04
deleted file mode 100644
index ccd1442e22..00
--- a/sets/kde-baseapps-23.04
+++ /dev/null
@@ -1,5 +0,0 @@
-

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

2023-12-19 Thread Andreas Sturmlechner
commit: 68b085f33d1b59fcb56d6e535e233d1673d3a37f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 19:56:17 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:44:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b085f3

sys-block/partitionmanager: drop 23.04.3

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

 sys-block/partitionmanager/Manifest|  1 -
 .../partitionmanager-23.04.3.ebuild| 37 --
 2 files changed, 38 deletions(-)

diff --git a/sys-block/partitionmanager/Manifest 
b/sys-block/partitionmanager/Manifest
index 0b45c8d14d41..f820f467d767 100644
--- a/sys-block/partitionmanager/Manifest
+++ b/sys-block/partitionmanager/Manifest
@@ -1,3 +1,2 @@
-DIST partitionmanager-23.04.3.tar.xz 2143336 BLAKE2B 
79208e759ada12a45a1d8b56bc1127e0f8a294acc0baac617a6990dcb13c4c3544dc362490fda5620cb66ab052b01a4c436079e653bbc94b3304e552feab4f34
 SHA512 
29a2af3beb0189ff7a5f54aca393834b185dcbc538ac3ad0319198d59e239394cf8c54479d3596f246e6bc18682c03155896b41ccb0cf434bd8f1e43aeda42b7
 DIST partitionmanager-23.08.3.tar.xz 2147812 BLAKE2B 
595deda9d654af0c319d2e092d7c690dd2a53071ac37007dcd0199fee16d9e40b16fd64dc429bc84b334a3622b3171c36427bbfdc8e3316fbd75e696f6693ee0
 SHA512 
61c97abde57f197fc60751e43ac58427f5e86afc21b426582b538d92804bd8d9f6817ac9021bdff183744b8ae229e75a02966217bc8176cef3440a56ba6b00ae
 DIST partitionmanager-23.08.4.tar.xz 2147916 BLAKE2B 
64820a51556ceec91f596ee94413fdbbdcdd38b76076fd1b9c18dd54ef6b51f9adaf9e841f8134f09d70be8b96b9245a9558d581acc596cbed2ad632f7d06a94
 SHA512 
be16629fffa21d9422868b845670db9d9103b40ace239bb10182d2ab570ae5c980af2995b3e62bf1098626ea4b1a6abf00b5547bffb17c4d857adbdcf7aa0738

diff --git a/sys-block/partitionmanager/partitionmanager-23.04.3.ebuild 
b/sys-block/partitionmanager/partitionmanager-23.04.3.ebuild
deleted file mode 100644
index 03f161e486e4..
--- a/sys-block/partitionmanager/partitionmanager-23.04.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-KFMIN=5.106.0
-PVCUT=$(ver_cut 1-3)
-QTMIN=5.15.9
-inherit ecm gear.kde.org
-
-DESCRIPTION="Utility for management of disks, partitions and file systems"
-HOMEPAGE="https://apps.kde.org/partitionmanager/;
-
-LICENSE="GPL-3"
-SLOT="5"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kjobwidgets-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-   >=sys-auth/polkit-qt-0.113.0[qt5(+)]
-   >=sys-libs/kpmcore-${PVCUT}:5=
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kwalletmanager/

2023-12-19 Thread Andreas Sturmlechner
commit: 09fc83e732458ee0813bd7b8faa720e9b0ed8923
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 19:55:55 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:44:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fc83e7

kde-apps/kwalletmanager: drop 23.04.3

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

 kde-apps/kwalletmanager/Manifest   |  1 -
 .../kwalletmanager/kwalletmanager-23.04.3.ebuild   | 45 --
 2 files changed, 46 deletions(-)

diff --git a/kde-apps/kwalletmanager/Manifest b/kde-apps/kwalletmanager/Manifest
index 37962856b190..d302155a1d10 100644
--- a/kde-apps/kwalletmanager/Manifest
+++ b/kde-apps/kwalletmanager/Manifest
@@ -1,3 +1,2 @@
-DIST kwalletmanager-23.04.3.tar.xz 850608 BLAKE2B 
c5126518c8f4ee9f53666c185170a7e450c981257fc0708f357e47e822b0d37d4df03176b27d47ef24c3196615d519c173b410ab4c397ad058ab7f4f7a02e48a
 SHA512 
1a127da59023663e183ab9b38f8a22a9a1ec8f75de70a81809a12c4036b05ea4ae6da72f8bcd3ad140f4b6100f2db84052593d31677a07dd90aea1a13cf937e2
 DIST kwalletmanager-23.08.3.tar.xz 851372 BLAKE2B 
60d09ef787eca0b956dca3c17275c9f83b3cc8c92d775eab542745952174ac333d947ef7e8f7656ebc67dfc499dc4e5bb3c13be84bc10a2e556aab08e6b2c420
 SHA512 
c74e53107a18cce6dedfbaa8d3cf0e79bcc67f24afc069dec078a30bd0d70666941baadb44d99dd2588b5c4ef684b493e074b40424a92fb3af0549f3f30caf50
 DIST kwalletmanager-23.08.4.tar.xz 852868 BLAKE2B 
6c85a6baed4eca372c2a21a957049c9cc3384e81f37b1d6ad85cdace94b1d850928437e326123f2ed8fe97fd56bac72606bbd6188346a240334c3e297228e7bb
 SHA512 
7f25ed4ce17ccab4eb0af1758b8221f419f06aa185e55800ec7735bb283e991127420896a23d6439c1facf83e4e932abf0258ba8446f3d2c2e468d20dabb05be

diff --git a/kde-apps/kwalletmanager/kwalletmanager-23.04.3.ebuild 
b/kde-apps/kwalletmanager/kwalletmanager-23.04.3.ebuild
deleted file mode 100644
index 28f41aae08f0..
--- a/kde-apps/kwalletmanager/kwalletmanager-23.04.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-KFMIN=5.106.0
-QTMIN=5.15.9
-inherit ecm gear.kde.org
-
-DESCRIPTION="Tool to manage the passwords on your system using KDE Wallet"
-HOMEPAGE="https://apps.kde.org/kwalletmanager5/;
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/karchive-${KFMIN}:5
-   >=kde-frameworks/kauth-${KFMIN}:5
-   >=kde-frameworks/kcmutils-${KFMIN}:5
-   >=kde-frameworks/kcodecs-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kitemviews-${KFMIN}:5
-   >=kde-frameworks/kjobwidgets-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/kservice-${KFMIN}:5
-   >=kde-frameworks/ktextwidgets-${KFMIN}:5
-   >=kde-frameworks/kwallet-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/ktimer/

2023-12-19 Thread Andreas Sturmlechner
commit: 43b5c96a48d00da58f07113734a155e972f7764e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 19:55:52 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:44:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43b5c96a

kde-apps/ktimer: drop 23.04.3

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

 kde-apps/ktimer/Manifest  |  1 -
 kde-apps/ktimer/ktimer-23.04.3.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/kde-apps/ktimer/Manifest b/kde-apps/ktimer/Manifest
index e69c6fd46302..caa8c6fff216 100644
--- a/kde-apps/ktimer/Manifest
+++ b/kde-apps/ktimer/Manifest
@@ -1,3 +1,2 @@
-DIST ktimer-23.04.3.tar.xz 404448 BLAKE2B 
f8a24ed6313b99b46e4de3a917be14140189f3dab76d05ad937d9fcb9423e744837ea6eed013758a6e683edf5ed61face3fb41a17ec2d45e2ef62cf1a3d2a28f
 SHA512 
f3d13e469113d2d999821c11a910ec3ce37862a555e8d3982198d6a01ceb247d9e14aea0a4c95e68e201afd93c5edb3363b8f8bc39ae5c9d929cf8514df3c687
 DIST ktimer-23.08.3.tar.xz 405808 BLAKE2B 
02b260988661e20a3be9907b1d5ac4222f81902d1bd442d7a8953ffe69a73fb65c56c22400cc608716b88c207de27b45b6e294fcc5e20f936646fe59644c4919
 SHA512 
dffa299c171c0c676ab1e912c8f4636195a6d75cce69e13cb4d279b0248be7d6608a6d76f3f55d5966f0399b8b5c574e259a85025bb4b815853caa67e833c271
 DIST ktimer-23.08.4.tar.xz 406380 BLAKE2B 
4a09cef0a0af2f6a25bd4e1cf4642fbffcb1e3e1d9a6b8ffe145ec233590432444da915a5103a1a251821e42f0e2b53110fa132da9da37f3f19fc4f1b8107951
 SHA512 
0ee6040a4943131d6b5f4ba9910fd241b0690d3d91414974e02a3208271d2057981b31d6a8056f292d46ed499b1d2142e821b3812805c3fd2a2068be1b04abf0

diff --git a/kde-apps/ktimer/ktimer-23.04.3.ebuild 
b/kde-apps/ktimer/ktimer-23.04.3.ebuild
deleted file mode 100644
index ae0c808a7249..
--- a/kde-apps/ktimer/ktimer-23.04.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-KFMIN=5.106.0
-QTMIN=5.15.9
-inherit ecm gear.kde.org
-
-DESCRIPTION="Little tool to execute programs after some time"
-HOMEPAGE="https://apps.kde.org/ktimer/;
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/umbrello/

2023-12-19 Thread Andreas Sturmlechner
commit: 0dbfbf30764f3c3e3dd3bf1aeab525ba937db33c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 20:28:12 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:44:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dbfbf30

kde-apps/umbrello: drop 23.04.0

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

 kde-apps/umbrello/Manifest|  1 -
 kde-apps/umbrello/umbrello-23.04.0.ebuild | 71 ---
 2 files changed, 72 deletions(-)

diff --git a/kde-apps/umbrello/Manifest b/kde-apps/umbrello/Manifest
index 31709a0ee386..958a958e9b39 100644
--- a/kde-apps/umbrello/Manifest
+++ b/kde-apps/umbrello/Manifest
@@ -1,3 +1,2 @@
-DIST umbrello-23.04.0.tar.xz 5774008 BLAKE2B 
25b8ab6c63c5d5813e3348da7d7e08bbdb4b3648891d769f2a6c590935b52eee29f08014f5944fdd76080bb286ed9df1ae437f04dc9967ff0b37b584f79f9094
 SHA512 
aca07d2bdea918ed3d3b12cc3a8dd0bbd875200f7326e6a1d011ee04a98feefb49e23b015aa0bb089b3f1e9bc0d05029fad597ec8206020bb7f8e72bf20127fd
 DIST umbrello-23.08.3.tar.xz 5774944 BLAKE2B 
5df58dbd21c04f5ffc9a20777c979c9e40a8c742bc5de2b70beba92c4f4aee1b128a6f4e3bd293f958a9b9c3e9fc3aa049b4f0889b77ab0c06d8b97a3200
 SHA512 
03a8da5d75fe6ddca6e05f92ecb9950c45ef87e1dbbf497e20a6dbb4f343a59ef53cf5d9ce3c4ed98b2b10ded3ba5ab4c401087a10ea896f7a83c98ee9bea502
 DIST umbrello-23.08.4.tar.xz 5775132 BLAKE2B 
6fb05a3b0f5f9ca479f5b689bbcba04ea5cd4c0aee9796da9781b6e27f2e034fef88f49ba51431e5ddca2e5cef7c5c9a4034890899846488b3de80ba63daad5e
 SHA512 
c45f581518a68e1314481e81d48577a140490a40de6a0f18ee21687ac1872fae5134fb057a191bdca7c5fee4fe9bcf6045578ab286d3a82bcda0e9bcba002d65

diff --git a/kde-apps/umbrello/umbrello-23.04.0.ebuild 
b/kde-apps/umbrello/umbrello-23.04.0.ebuild
deleted file mode 100644
index 71c1be3e0433..
--- a/kde-apps/umbrello/umbrello-23.04.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_QTHELP="false" # TODO: figure out install error
-ECM_TEST="forceoptional"
-KFMIN=5.104.0
-QTMIN=5.15.5
-VIRTUALX_REQUIRED="test"
-inherit ecm gear.kde.org
-
-DESCRIPTION="KDE UML Modeller"
-HOMEPAGE="https://apps.kde.org/umbrello/ https://umbrello.kde.org;
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="amd64 arm64 x86"
-IUSE="php"
-
-RDEPEND="
-   dev-libs/libxml2
-   dev-libs/libxslt
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/karchive-${KFMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kiconthemes-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kjobwidgets-${KFMIN}:5
-   >=kde-frameworks/ktexteditor-${KFMIN}:5
-   >=kde-frameworks/ktextwidgets-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-   php? (
-   dev-util/kdevelop:5=
-   dev-util/kdevelop-pg-qt:5
-   dev-util/kdevelop-php:5
-   )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-23.03.80-gentoo-docbundledir.patch # fix hardcoded 
path
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ 
ECM_QTHELP
-   -DBUILD_APIDOC=OFF
-   -DBUILD_PHP_IMPORT=$(usex php)
-   -DBUILD_unittests=$(usex test)
-   )
-   use test && mycmakeargs+=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_LLVM=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Clang=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_CLANG=ON
-   )
-
-   ecm_src_configure
-}



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

2023-12-19 Thread Andreas Sturmlechner
commit: 9a80da10686bfc54ffbc37fa81a6480a73805b3b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Dec 19 19:56:11 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Dec 19 20:44:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a80da10

kde-misc/kweather: drop 23.04.3

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

 kde-misc/kweather/Manifest|  1 -
 kde-misc/kweather/kweather-23.04.3.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/kde-misc/kweather/Manifest b/kde-misc/kweather/Manifest
index ba9b3f07a038..dbff7746eeea 100644
--- a/kde-misc/kweather/Manifest
+++ b/kde-misc/kweather/Manifest
@@ -1,3 +1,2 @@
-DIST kweather-23.04.3.tar.xz 1019320 BLAKE2B 
ddb4591edba02c7170543139c00bd65a4e4f5d9a736ed617ba159037f2fb115cb2df7248721e1604927b3a1ee66a50010e1a0db1d8af02e54aa11b15c85cf962
 SHA512 
0fda09bc1d3211604b314eb6e7b75629218572751c782c19fd0f594329775e9d233462329427f9fb2a8152484275f58a6e0adfe0fe46dfdb233f4b96553cf800
 DIST kweather-23.08.3.tar.xz 946512 BLAKE2B 
b4732429e4ce1cfa581b7626ae347d5b532528f45e8834bc6413f9d62a98f1c791361a9ff8f5ecce9dff9878c3e673c28dab0e84e4aa804812e8f0b20fc90221
 SHA512 
21df82a737ba155115a35327831eaf8199260492efaa80a2df609d1da0494370df6fa2fc06cc1c20e594e998e30212467613a5166268ab3058cb815bac64
 DIST kweather-23.08.4.tar.xz 946972 BLAKE2B 
5c95568c73603667f9ee6b68cf7ffd82355a799dcc96a931736af627d842207f82bea9a193b719a756c4927c2af0e3e0dcbfbf4b48b75979596595d5598dc3fe
 SHA512 
699e536757e057c35b76f59cb425c82b809af055887963a1e49359d2c254515d1bcc1334ed21b5f5aa9dfafbfd122998ff14fb17998fae1ad1d4e66ac1be5890

diff --git a/kde-misc/kweather/kweather-23.04.3.ebuild 
b/kde-misc/kweather/kweather-23.04.3.ebuild
deleted file mode 100644
index f5735ea9824a..
--- a/kde-misc/kweather/kweather-23.04.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KDE_ORG_CATEGORY="utilities"
-ECM_TEST="false"
-KFMIN=5.106.0
-QTMIN=5.15.9
-inherit ecm gear.kde.org
-
-DESCRIPTION="Weather forecast application for Plasma with flat and 
dynamic/animated views"
-HOMEPAGE="https://apps.kde.org/kweather/;
-
-LICENSE="GPL-2+"
-SLOT="5"
-KEYWORDS="amd64 arm64 ~loong ~ppc64 x86"
-
-DEPEND="
-   >=dev-libs/kirigami-addons-0.6:5
-   >=dev-libs/kweathercore-0.6:5
-   >=dev-qt/qtcharts-${QTMIN}:5[qml]
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kholidays-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kirigami-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-plasma/libplasma-${KFMIN}:5
-"
-RDEPEND="${DEPEND}
-   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
-   >=dev-qt/qtpositioning-${QTMIN}:5[geoclue]
-"
-
-src_prepare() {
-   ecm_src_prepare
-
-   sed -e "/include(ECMCheckOutboundLicense)/s/^/#DONT /" \
-   -e "/ecm_check_outbound_license/s/^/#DONT /" \
-   -i CMakeLists.txt || die # avoid cmake spam about python, 
reusetool
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_PLASMOID=ON
-   )
-   ecm_src_configure
-}



  1   2   3   >