[gentoo-commits] proj/portage:master commit in: lib/portage/

2024-02-11 Thread Zac Medico
commit: 419cce79f9082308c848df0a98f367de4d1c50a3
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb 11 21:58:10 2024 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Feb 12 07:56:10 2024 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=419cce79

process._exec: Use _start_fork for os.fork() error handling

Use _start_fork for os.fork() error handling, ensuring
that if exec fails then the child process will display
a traceback before it exits via os._exit to suppress any
finally blocks from parent's call stack (bug 345289).

Bug: https://bugs.gentoo.org/345289
Bug: https://bugs.gentoo.org/916566
Bug: https://bugs.gentoo.org/924313
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/process.py | 259 -
 1 file changed, 151 insertions(+), 108 deletions(-)

diff --git a/lib/portage/process.py b/lib/portage/process.py
index 6cad250e34..f4758c824c 100644
--- a/lib/portage/process.py
+++ b/lib/portage/process.py
@@ -961,7 +961,13 @@ def _exec(
 if filename is not None:
 libc = LoadLibrary(filename)
 if libc is not None:
-try:
+# unshare() may not be supported by libc
+if not hasattr(libc, "unshare"):
+unshare_net = False
+unshare_ipc = False
+unshare_mount = False
+unshare_pid = False
+else:
 # Since a failed unshare call could corrupt process
 # state, first validate that the call can succeed.
 # The parent process should call _unshare_validate
@@ -992,117 +998,154 @@ def _exec(
 )
 else:
 if unshare_pid:
-main_child_pid = os.fork()
-if main_child_pid == 0:
-# pid namespace requires us to become init
-binary, myargs = (
-portage._python_interpreter,
-[
-portage._python_interpreter,
-os.path.join(portage._bin_path, 
"pid-ns-init"),
-_unicode_encode(
-"" if uid is None else str(uid)
-),
-_unicode_encode(
-"" if gid is None else str(gid)
-),
-_unicode_encode(
-""
-if groups is None
-else ",".join(
-str(group) for group in groups
-)
-),
-_unicode_encode(
-"" if umask is None else str(umask)
-),
-_unicode_encode(
-",".join(str(fd) for fd in 
fd_pipes)
-),
-binary,
-]
-+ myargs,
-)
-uid = None
-gid = None
-groups = None
-umask = None
-else:
-# Execute a supervisor process which will 
forward
-# signals to init and forward exit status to 
the
-# parent process. The supervisor process runs 
in
-# the global pid namespace, so skip /proc 
remount
-# and other setup that's intended only for the
-# init process.
-binary, myargs = portage._python_interpreter, [
+# pid namespace requires us to become init
+binary, myargs = (
+portage._python_interpreter,
+[
 portage._python_interpreter,
 os.path.join(portage._bin_path, 
"pid-ns-init"),
-str(main_child_pid),
+_unicode_encode("" if uid is None else 
str(uid)),
+_unicode_encode("" if gid is None else 
str(gid)),
+

[gentoo-commits] proj/tex-overlay:main commit in: app-text/texlive/

2024-02-11 Thread Florian Schmaus
commit: d9cd71c28267a5ab2eb6b25dcc2a145c978fa6d7
Author: Florian Schmaus  gentoo  org>
AuthorDate: Mon Feb 12 07:55:10 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Feb 12 07:55:10 2024 +
URL:https://gitweb.gentoo.org/proj/tex-overlay.git/commit/?id=d9cd71c2

app-text/texlive: refine tex4ht dependency

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

 app-text/texlive/texlive-2023.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/texlive/texlive-2023.ebuild 
b/app-text/texlive/texlive-2023.ebuild
index e985803..2032182 100644
--- a/app-text/texlive/texlive-2023.ebuild
+++ b/app-text/texlive/texlive-2023.ebuild
@@ -60,7 +60,7 @@ RDEPEND="${DEPEND}
context? ( >=${TEXLIVE_CAT}/texlive-context-${PV} )
games? ( >=${TEXLIVE_CAT}/texlive-games-${PV} )
humanities? ( >=${TEXLIVE_CAT}/texlive-humanities-${PV} )
-   tex4ht? ( >=dev-tex/tex4ht-${PV} )
+   tex4ht? ( >=dev-tex/tex4ht-${PV}_p68735 )
xml? ( >=${TEXLIVE_CAT}/texlive-formatsextra-${PV} )
l10n_af?( >=${TEXLIVE_CAT}/texlive-langother-${PV} )
l10n_ar?( >=${TEXLIVE_CAT}/texlive-langarabic-${PV} )



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

2024-02-11 Thread Hans de Graaff
commit: d4e3bdd8a9a2991f0d602caada1f947132488c11
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:32:25 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:32:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e3bdd8

dev-ruby/httparty: enable ruby33

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

 dev-ruby/httparty/httparty-0.21.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/httparty/httparty-0.21.0.ebuild 
b/dev-ruby/httparty/httparty-0.21.0.ebuild
index 76793979e7e9..7a2dbc6be66d 100644
--- a/dev-ruby/httparty/httparty-0.21.0.ebuild
+++ b/dev-ruby/httparty/httparty-0.21.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2024-02-11 Thread Hans de Graaff
commit: 5b2afe83fb79df7e1655e9ec8c836b70928e805e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:38:24 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:38:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b2afe83

dev-ruby/html-pipeline: enable ruby33

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

 dev-ruby/html-pipeline/html-pipeline-2.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/html-pipeline/html-pipeline-2.14.3.ebuild 
b/dev-ruby/html-pipeline/html-pipeline-2.14.3.ebuild
index 83c9e9e5a104..e2756a54336b 100644
--- a/dev-ruby/html-pipeline/html-pipeline-2.14.3.ebuild
+++ b/dev-ruby/html-pipeline/html-pipeline-2.14.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 



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

2024-02-11 Thread Hans de Graaff
commit: 110ac475f6c962dc5cc4ebdf3840ad06701ac8b6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:41:53 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:41:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110ac475

dev-ruby/kramdown: enable ruby33

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

 dev-ruby/kramdown/kramdown-2.4.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/kramdown/kramdown-2.4.0-r1.ebuild 
b/dev-ruby/kramdown/kramdown-2.4.0-r1.ebuild
index 0aa081d610f0..1e939b97f322 100644
--- a/dev-ruby/kramdown/kramdown-2.4.0-r1.ebuild
+++ b/dev-ruby/kramdown/kramdown-2.4.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
 



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

2024-02-11 Thread Hans de Graaff
commit: c214527701bb02163a7fb1b2cceceec0a6dfe090
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:01:03 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:01:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2145277

dev-ruby/rubytest: enable ruby33

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

 dev-ruby/rubytest/rubytest-0.8.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rubytest/rubytest-0.8.1-r1.ebuild 
b/dev-ruby/rubytest/rubytest-0.8.1-r1.ebuild
index 3912236739f7..97495fe21dd3 100644
--- a/dev-ruby/rubytest/rubytest-0.8.1-r1.ebuild
+++ b/dev-ruby/rubytest/rubytest-0.8.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_RECIPE_DOC="yard"



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

2024-02-11 Thread Hans de Graaff
commit: ee72d8fd3a7781c9233e30429564e1ae3d4b84fd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Feb 12 07:12:41 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Feb 12 07:12:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee72d8fd

dev-ruby/ruby-gettext: enable ruby33

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

 dev-ruby/ruby-gettext/ruby-gettext-3.4.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-gettext/ruby-gettext-3.4.9.ebuild 
b/dev-ruby/ruby-gettext/ruby-gettext-3.4.9.ebuild
index 3b7d7223cfca..2cf8607e5955 100644
--- a/dev-ruby/ruby-gettext/ruby-gettext-3.4.9.ebuild
+++ b/dev-ruby/ruby-gettext/ruby-gettext-3.4.9.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_NAME="${PN/ruby-/}"
 RUBY_FAKEGEM_VERSION="${PV%_*}"



[gentoo-commits] repo/proj/guru:dev commit in: sys-fs/dwarfs-bin/

2024-02-11 Thread Denis Reva
commit: 0fdad3832db7b5b1bc9f82e77871774af045bfab
Author: Denis Reva  gmail  com>
AuthorDate: Mon Feb 12 07:26:58 2024 +
Commit: Denis Reva  gmail  com>
CommitDate: Mon Feb 12 07:26:58 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0fdad383

sys-fs/dwarfs-bin: version bump

Signed-off-by: Denis Reva  gmail.com>

 sys-fs/dwarfs-bin/Manifest| 4 ++--
 .../dwarfs-bin/{dwarfs-bin-0.9.1.ebuild => dwarfs-bin-0.9.3.ebuild}   | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/dwarfs-bin/Manifest b/sys-fs/dwarfs-bin/Manifest
index d81a25af95..944f4b9520 100644
--- a/sys-fs/dwarfs-bin/Manifest
+++ b/sys-fs/dwarfs-bin/Manifest
@@ -1,4 +1,4 @@
 DIST dwarfs-bin-0.8.0-amd64.tar.xz 7444728 BLAKE2B 
ab95665be88d77e5b3ae48d9a6780740a866bb6f75143b953c175742e46ad406538201cfd5d82578a96bde2bc1dd8e1ce61a6e2188006a64bf8fda632b1f9e51
 SHA512 
ea1e0bf0b655b404af8839ce78bedc617e8f3f1dba7f9aa36569345844f0539375d58b7d9726852bcb197b9fca99ec4c7a532be2bfcb14ec335d35efd2544e14
 DIST dwarfs-bin-0.8.0-arm64.tar.gz 6495832 BLAKE2B 
95840404653dce660b34e88510adcc185095d93f2cec30171f96a836ac4cddfef16bf329dc75028ed7de02d1fa3e95b770a25e4b8a8d0096bf16ddde5d7f4838
 SHA512 
8fea6502bf990ebd30e97dc17e2fa17c127bc490a95f39ce279657797effe0549c2ac6e8063a0055ed95dbbb897fd344fbfbb3c4ebb4eb2b14d7e38d7c218396
-DIST dwarfs-bin-0.9.1-amd64.tar.xz 7436484 BLAKE2B 
a4249d5566d89d783d2cc3350918a49c794f2730ff8475325959a433aa3fa4dcc387f98c50eed0a3a73b9b5e75ca35b88903c342d693dac7a5c4daf26df44cde
 SHA512 
61be82f6571bcd4492d5d7769628a4f88a57cda366f3a76e5f667efa1396cec7a2268b3984b74258b2ca44e6adaf9a20e3000c978ae9506978bb1730666b7363
-DIST dwarfs-bin-0.9.1-arm64.tar.gz 6522592 BLAKE2B 
2e7c8f25061921040a12fb662b43f4bffcd9b38816cb466a4f1acdb330ce48f956d563d04bb968e57405557f37e0184140995016c2517d5123e473c42f1cf022
 SHA512 
6d985deb1453eb39b0d297199cb90e74557adaf81a40b7467d9af9f8670e16cc2bc41440702201c455dadd38a59e5597df38bccf9938da0d815588c3a1e38807
+DIST dwarfs-bin-0.9.3-amd64.tar.xz 7597520 BLAKE2B 
d6b48cf0cd6a64c8653db7ebfac543fe0718a13250ea1a0b0d68a9967d512c4e0938a9e861f9cb20635945b99bd7763b0b0bc14a663d4ba725dc8df169acce13
 SHA512 
ef18994ed99a8d62305849b55b8936f4de5e5b60511c1ce8336f85d399132c6e9d19eadf81b541a3a17f4fa61219f73a04faae0401eaabbde17fda124497bb63
+DIST dwarfs-bin-0.9.3-arm64.tar.gz 6621720 BLAKE2B 
22e2f9e239061eec764a763a1c3fd7a44aee505cc1bd93534d079085c160c91a6cc043551b305591d9f323dbbad9f6f48fb521f6309e58ffef5f6bd1ff87e05c
 SHA512 
400791023cc5753f45c7ef4df3feb8e71cb54bef3e306ce1f8be6e5f84c2eed4f15af2fd656ea3701823f7d4b95ced5c49ebc23737734b8f4f9e503dd4dd2cd0

diff --git a/sys-fs/dwarfs-bin/dwarfs-bin-0.9.1.ebuild 
b/sys-fs/dwarfs-bin/dwarfs-bin-0.9.3.ebuild
similarity index 100%
rename from sys-fs/dwarfs-bin/dwarfs-bin-0.9.1.ebuild
rename to sys-fs/dwarfs-bin/dwarfs-bin-0.9.3.ebuild



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

2024-02-11 Thread Sam James
commit: fa67a66af82ec9fd027c01acb862fe6dbd86bf78
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 05:56:45 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 05:57:09 2024 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=fa67a66a

13.2.0: drop 91_all_PR113258_libstdc-Prefer-posix_memalign-for-aligned-new.patch

Backported upstream.

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

 ...tdc-Prefer-posix_memalign-for-aligned-new.patch | 97 --
 13.2.0/gentoo/README.history   |  4 +
 2 files changed, 4 insertions(+), 97 deletions(-)

diff --git 
a/13.2.0/gentoo/91_all_PR113258_libstdc-Prefer-posix_memalign-for-aligned-new.patch
 
b/13.2.0/gentoo/91_all_PR113258_libstdc-Prefer-posix_memalign-for-aligned-new.patch
deleted file mode 100644
index a03f268..000
--- 
a/13.2.0/gentoo/91_all_PR113258_libstdc-Prefer-posix_memalign-for-aligned-new.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-https://gcc.gnu.org/PR113258
-https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=f50f2efae9fb0965d8ccdb62cfdb698336d5a933
-
-From d17158058fee187e7efb918145c87bdfff9cbfa3 Mon Sep 17 00:00:00 2001
-From: Jonathan Wakely 
-Date: Tue, 9 Jan 2024 15:22:46 +
-Subject: [PATCH] libstdc++: Prefer posix_memalign for aligned-new [PR113258]
-
-As described in PR libstdc++/113258 there are old versions of tcmalloc
-which replace malloc and related APIs, but do not repalce aligned_alloc
-because it didn't exist at the time they were released. This means that
-when operator new(size_t, align_val_t) uses aligned_alloc to obtain
-memory, it comes from libc's aligned_alloc not from tcmalloc. But when
-operator delete(void*, size_t, align_val_t) uses free to deallocate the
-memory, that goes to tcmalloc's replacement version of free, which
-doesn't know how to free it.
-
-If we give preference to the older posix_memalign instead of
-aligned_alloc then we're more likely to use a function that will be
-compatible with the replacement version of free. Because posix_memalign
-has been around for longer, it's more likely that old third-party malloc
-replacements will also replace posix_memalign alongside malloc and free.
-
-libstdc++-v3/ChangeLog:
-
-   PR libstdc++/113258
-   * libsupc++/new_opa.cc: Prefer to use posix_memalign if
-   available.
-
-(cherry picked from commit f50f2efae9fb0965d8ccdb62cfdb698336d5a933)

- libstdc++-v3/libsupc++/new_opa.cc | 26 +++---
- 1 file changed, 15 insertions(+), 11 deletions(-)
-
-diff --git a/libstdc++-v3/libsupc++/new_opa.cc 
b/libstdc++-v3/libsupc++/new_opa.cc
-index 6eb136fa8fc7..29767c1cfaad 100644
 a/libstdc++-v3/libsupc++/new_opa.cc
-+++ b/libstdc++-v3/libsupc++/new_opa.cc
-@@ -46,12 +46,12 @@ using std::bad_alloc;
- using std::size_t;
- extern "C"
- {
--# if _GLIBCXX_HAVE_ALIGNED_ALLOC
-+# if _GLIBCXX_HAVE_POSIX_MEMALIGN
-+  void *posix_memalign(void **, size_t alignment, size_t size);
-+# elif _GLIBCXX_HAVE_ALIGNED_ALLOC
-   void *aligned_alloc(size_t alignment, size_t size);
- # elif _GLIBCXX_HAVE__ALIGNED_MALLOC
-   void *_aligned_malloc(size_t size, size_t alignment);
--# elif _GLIBCXX_HAVE_POSIX_MEMALIGN
--  void *posix_memalign(void **, size_t alignment, size_t size);
- # elif _GLIBCXX_HAVE_MEMALIGN
-   void *memalign(size_t alignment, size_t size);
- # else
-@@ -63,13 +63,10 @@ extern "C"
- #endif
- 
- namespace __gnu_cxx {
--#if _GLIBCXX_HAVE_ALIGNED_ALLOC
--using ::aligned_alloc;
--#elif _GLIBCXX_HAVE__ALIGNED_MALLOC
--static inline void*
--aligned_alloc (std::size_t al, std::size_t sz)
--{ return _aligned_malloc(sz, al); }
--#elif _GLIBCXX_HAVE_POSIX_MEMALIGN
-+// Prefer posix_memalign if available, because it's older than aligned_alloc
-+// and so more likely to be provided by replacement malloc libraries that
-+// predate the addition of aligned_alloc. See PR libstdc++/113258.
-+#if _GLIBCXX_HAVE_POSIX_MEMALIGN
- static inline void*
- aligned_alloc (std::size_t al, std::size_t sz)
- {
-@@ -83,6 +80,12 @@ aligned_alloc (std::size_t al, std::size_t sz)
- return ptr;
-   return nullptr;
- }
-+#elif _GLIBCXX_HAVE_ALIGNED_ALLOC
-+using ::aligned_alloc;
-+#elif _GLIBCXX_HAVE__ALIGNED_MALLOC
-+static inline void*
-+aligned_alloc (std::size_t al, std::size_t sz)
-+{ return _aligned_malloc(sz, al); }
- #elif _GLIBCXX_HAVE_MEMALIGN
- static inline void*
- aligned_alloc (std::size_t al, std::size_t sz)
-@@ -128,7 +131,8 @@ operator new (std::size_t sz, std::align_val_t al)
-   if (__builtin_expect (sz == 0, false))
- sz = 1;
- 
--#if _GLIBCXX_HAVE_ALIGNED_ALLOC
-+#if _GLIBCXX_HAVE_POSIX_MEMALIGN
-+#elif _GLIBCXX_HAVE_ALIGNED_ALLOC
- # if defined _AIX || defined __APPLE__
-   /* AIX 7.2.0.0 aligned_alloc incorrectly has posix_memalign's requirement
-* that alignment is a multiple of sizeof(void*).
--- 
-2.43.0

diff --git a/13.2.0/gentoo/README.history b/13.2.0/gentoo/README.history
index 3a6ad75..125a634 100644
--- a/13.2.0/gentoo/README.history
+++ 

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

2024-02-11 Thread Sam James
commit: e6628b8411533cc14470a9404cca9047df81cb0f
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 06:26:19 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 06:26:19 2024 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=e6628b84

14.0.0: drop upstream patches

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

 14.0.0/gentoo/README.history | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/14.0.0/gentoo/README.history b/14.0.0/gentoo/README.history
index dd2e0a0..c175cb7 100644
--- a/14.0.0/gentoo/README.history
+++ b/14.0.0/gentoo/README.history
@@ -1,3 +1,10 @@
+21 12 Feb 2024
+
+   - 75_all_PR113731_fix-ICE-when-moving-statements-to-empty-B.patch
+   - 76_all_PR113750_fix-ICE-when-destination-BB-for-stores-st.patch
+   - 
77_all_PR113808-middle-end-don-t-cache-restart_loop-in-vectorizable.patch
+   - 78_all_PR113776-c-boolean-conversion.patch
+
 20 8 Feb 2024
 
+ 75_all_PR113731_fix-ICE-when-moving-statements-to-empty-B.patch



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

2024-02-11 Thread Sam James
commit: c40f2f0ffb4e45755f153c7c8b27dab6c0d4e6de
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 05:53:59 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 06:35:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40f2f0f

sys-devel/gcc: add 12.3.1_p20240209

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

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-12.3.1_p20240209.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index e4883c64f8a8..8dc598a3c5be 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -17,6 +17,7 @@ DIST gcc-12-20240112.tar.xz 79832228 BLAKE2B 
deec7123b8ffc42ddace51e1f3e8e08d548
 DIST gcc-12-20240119.tar.xz 79829068 BLAKE2B 
822e3730e21d80216c531426688c23cb8d71ff89d230942c1fbd2c406dfd64c714adf77bebd7137675ad4c7bf1e5b32e27904987f7ac484574ef07d9ae0bed88
 SHA512 
768a77877928c1b35cd660b3dd60d26ccc9419c5d670d51d99ae0d4467cfeb9f243993c04c188a6250a5e7e6ab4c6ad89a05d07cfc27da3545482b01d1649e72
 DIST gcc-12-20240126.tar.xz 7988 BLAKE2B 
7bee3799f0655d35773c380996d5cccb7b18a2f12ba45a37e54fd190407583a540a9310fce455b72f35718f8e62f7f47e9b99ff99a8462014978b6d90f7b1013
 SHA512 
b69d6d41038f1c9da982eb4d4e680fe0827a316f8aede741279610108cfd5a8ba7854326cc497850472d3009496ec7b04a0bd0e1a61a96184e7abf54ead95dd4
 DIST gcc-12-20240202.tar.xz 79839620 BLAKE2B 
c79f757042374fd0c2a6980e2b6d3853d1a440b0ace8ac2987b524b8abfb80b30c3a533f1271c5cdea58bfd890a36abfb034a77580a15a563098b8c57bf61224
 SHA512 
3eabe953c14c370e5b8c4293e0a3f041121914ed30788797fd7c7822b2ecc05d7c1b4859d374249cdf26e91ef9d7e8b04235b7d1066730c44d4ae221ddbf06ba
+DIST gcc-12-20240209.tar.xz 79824868 BLAKE2B 
1ae5a646da470f06648c4766c77475ceb287c5f6647d5102f1aef6590f973233d5e7f83b5e0241488d49dba59dd605c211938379e68a393a2dccb3834103ae4b
 SHA512 
9f9a04f4477f41bb2a5662aedef2af75b039de50c2dc99310e504e6080cb7aae06a1255337ea2e563975cb108ddc6766adbbaf4e3d5d5712801d7ba9a5209dbd
 DIST gcc-12.3.0-musl-patches-1.tar.xz 3572 BLAKE2B 
c7bf65f7c9ea8023ddaac821ee2b778622fa310ac72a72b2f7032494a8f304eac86217f9204622e6c21aaef9952bece0d09bc126facd4f42b602927909815ab5
 SHA512 
babc279fea2c1fd4c018815f2f5630214fd46015ce9f365c28af242681d51818eaca30ce298eddcab1eed5ac5f2759e2b47b2335afab9d722b4469a6d4fec326
 DIST gcc-12.3.0-patches-2.tar.xz 14236 BLAKE2B 
06c43662c9abb0fa3cf90d5e2273c69aecb9158e6cf6f23c04754ed5d686be2616e81e2502eb16f4298ddd50518ca7677e13249da9e9b091162d3931ff65e4fe
 SHA512 
b0d4b85dbf1a541997203b872e3106906b4ad49cde57e1428bc22b2f8e2d73b8cb10ae0d0b792aebaf664594da4d1dea04c44ddc34e59047410766db04d1
 DIST gcc-13-20230826.tar.xz 84285788 BLAKE2B 
c25be594e322dd7145245c42ae21b98aa9e3e6ae69f1fa313830e40bf2e8fcb8435762f1c9d3f1ca1dbf31653bdc76a658bec708b7850fe40a7c55504ac30618
 SHA512 
3d47632e90651bd50a881c727c1ef2aa3322b4fc3e082919ae430270901abf8a05a34fe93f8b678c10dc9a0758f93dc3b33ed5947c8743dab453d2b50c063722

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

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

2024-02-11 Thread Sam James
commit: cf8c89af2efcac07134de76fffee65e958adc7a3
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 06:34:57 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 06:35:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf8c89af

sys-devel/gcc: add 14.0.1_pre20240211

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

 sys-devel/gcc/Manifest  |  2 +
 sys-devel/gcc/gcc-14.0.1_pre20240211.ebuild | 64 +
 2 files changed, 66 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 3a8d6d9203cc..8b57c284d522 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -36,12 +36,14 @@ DIST gcc-14-20231217.tar.xz 86943032 BLAKE2B 
8d5ab21fedffad0d4d4e02201c74f3b90cf
 DIST gcc-14-20240121.tar.xz 87469416 BLAKE2B 
a146f6f62775d2ad82f93dba0581b3aee162113cb0a1ed9fa3db6a8cfc0841edb0dd0b24d6f4676b91d644d2096ffe22de3c03c8f88b7d6e480515601737
 SHA512 
af6b623bba274970c58da8cd4a5f329a2b2973cb108e7dc7a910358d7bffb89b8f33437d47d7f10a1ceeafd744f099677621f3c3fac65e54aad1ea4045d19743
 DIST gcc-14-20240128.tar.xz 87528304 BLAKE2B 
d3a3cce5da54b7342a11a3dceb97bfa5f1203327ea5ee5c9ab02d2b5cae2d0c2ba72feaf2da578d74fba05e10fa0f69433ee49501b5e5ef9a5f95f7284446adc
 SHA512 
8ad32c896765a4013e2e812ab26b7dc5d3c13db27cbe40222090f072b2c26c12808175a12484cd4e0d815bc3f9389d5210a9270de9c3b796c6fa2726d0e2ef44
 DIST gcc-14-20240204.tar.xz 87563056 BLAKE2B 
6723206f6cebf347df8a5645f64f05d16c257457cafc915694756af87d71e3265e411659978588591839b36744f045fd5400525434281dbdb3885a8a510c64d1
 SHA512 
d6c245c45bd95d34a41039ee1bb97b817781f5f137e80f88e61e9f2b4109e4cd7aaac67a528030325f96c83272664292b31d58c24153825c98bfc2270224b868
+DIST gcc-14-20240211.tar.xz 87577300 BLAKE2B 
cfee2b4cdb52e96cd5fe752c67c9606b92449c082d31b738f0503bca9d58e9c8da488540aa9bf116fdf6e19fb29f58104340de6314734e135df1112c93846baa
 SHA512 
a315c8e06e3e35b6046e5ae74c6758bd51ca89ad33cb7d7628091ef393a227bb8e2771000d2624377c80145ce69c3f781f9f08166e5e0ac7b0fc7539ceaa023f
 DIST gcc-14.0.0-musl-patches-1.tar.xz 3576 BLAKE2B 
692baee8a7709905d53aeb150d73a3721c4ba47ee5f397cfb1b5be905cf003ca02b60c94ee294d90ac39645cd5cdf186c7a3aa950c47d8cf680c128ed705b807
 SHA512 
0592ab98a7142e404623a6511c67dff61e9ade32c3fb2c0e75b456306e0af3799ad13252b50b3d2fdd31e5815d7f0b16b0ad63ab8386fe4d78729fc9c182d617
 DIST gcc-14.0.0-patches-11.tar.xz 11272 BLAKE2B 
81c63b8aebcfd5b33b698ef4ef8f2d12b94ea2753ecec2b160cf9fab534dccd12875bcb16cfac2aa81211f8d9ff530cfc18f486567721beac487e08daa62363e
 SHA512 
0f51352cbc6815cd1dbc8b73e9c83842a58242220ba712291cc76c08c19b3a612c88a3221b2da437a9c7ecb410a83c2e538aa1984b733f444843bdf79d314a71
 DIST gcc-14.0.0-patches-16.tar.xz 11884 BLAKE2B 
bb47024c766f59222b50c5ff19ed6b763c9867508352cbcfc069d028d323a3b6fb3bbcbb2c08be7830f1ba266f54410842a17c9448c2bd9f101aa876ffb8f6ee
 SHA512 
890a0b63485558eb2f1e9fea6a274e251442d129bcb67fd2ee11715916a6f8ea15bed0b59c72ed055fff5d6d90e2bfc3140ddee4e057af117d86fd6b7615fcbc
 DIST gcc-14.0.0-patches-18.tar.xz 13292 BLAKE2B 
daa75e2a96a816dc61068a4fb35b7bef6651eedeeaedc68e091f6d218f020d42b47389c5e4ded6037c9a1db22d3e3102934c4d96b1c96d894df8e50d25015f93
 SHA512 
35f1ba8624d3038b64c9eb8c83c6658d4f4d38ec12b527d70c044bc2f5a4b8f9749a11ecf506bc6b6720164209caeb285492a9403e78dbe05fd4512b8479eb89
 DIST gcc-14.0.0-patches-19.tar.xz 13348 BLAKE2B 
c006eff626131ff839330cab265c0183cfe04b116d9d1db40ce4126318dc688397b63991fbf014291df00edd533792efd196696de9305a89704ed929beb19f81
 SHA512 
9448bda7a5e932f32a507e7b8844e0d251b8e61911b12001948c10e96a8677147f95997c9aaf5838a6d8b134b513df5c0c0c690e47e7220882254894689289fe
 DIST gcc-14.0.0-patches-20.tar.xz 18184 BLAKE2B 
7f17ca61ed2d7e131b6a742569dafb59058028ba3062e54a235cddccd76c77b9e36fc42efc4ca30e30b6112e08c8435b10d7acfef8191f1e089eb8d0c8b5c9d5
 SHA512 
dbfcab8ca728483d2f291339c6f8f64cd56df96660cce963e3f86b267c42098e3f41c9b9758ad4d85e954466aecfdff8e68073145f52d31a387ef941f611
+DIST gcc-14.0.0-patches-21.tar.xz 13292 BLAKE2B 
8a6c0354a94cc4cd46fc5fe8c3eca0ff6378ab44009bea2457f275e119b0129bd14d3d4a1a37113eea6ed0a44641bdf4bb5c1740ea9a5e0d4c01af1012456966
 SHA512 
bd6c594c17b30f7bc47b48e75c89187e198c9a6a547b69e05e095c1e428400cea702ea01de124ab94bd80451fe762193a8f9047272a130106d4516258cdb08a7
 DIST gcc-8.5.0-patches-4.tar.xz 18616 BLAKE2B 
7594cbaea5daecf1a0b3d526c06aeba0a84c6da66aee2e105a51fda6be8d30a37ccc3814281b284a4582d892a1d556bca063551584edfc2525bed8ea5b6888e7
 SHA512 
1aa5742c361186637e7855f06feb1a4547e7d4d5de6e51f3d049e0ef3c19e2eff179465f52781739f59422035b7f8e4c0efa3844849f920f3c96acfdc37ca6a6
 DIST gcc-8.5.0.tar.xz 63841008 BLAKE2B 
aa81a1a730fd7371360f6abed6ba78b5843fd18c58d5de5687acc320741b9e430e85df3535a1ef7a26051409be8d2f0945f503e5968480d919103123a99d4b12
 SHA512 
92f599680e6b7fbce88bcdda810f468777d541e5fddfbb287f7977d51093de2a5178bd0e6a08dfe37090ea10a0508a43ccd00220041abbbec33f1179bfc174d8
 DIST gcc-9.5.0-patches-2.tar.xz 1432

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

2024-02-11 Thread Sam James
commit: a5e22b3c8d15820b31550166490037f16cee97a4
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 05:52:10 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 06:35:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5e22b3c

sys-devel/gcc: add 11.4.1_p20240208

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

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-11.4.1_p20240208.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 04da61e85911..e4883c64f8a8 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -7,6 +7,7 @@ DIST gcc-11-20240111.tar.xz 76240620 BLAKE2B 
dcf3b2493ca6ba1a9cd0137186cfbf1b962
 DIST gcc-11-20240118.tar.xz 76258832 BLAKE2B 
0474e1890bf618dc6dbb3e8cb90d4aab50666a9406f79d10ffc26f445b44573d365890ed6967c214b6f7d25174b127ff59f9d2b597b98e358c2050e1badd9232
 SHA512 
1a7aa4080cdf007e3f99bdcf6e4dd4a8e91a294b0a69608f8faafbe5dd9ffb68024410a82502c4887a8d01be073a6d21ae90ec8ec53c3521c34908e26009a5f0
 DIST gcc-11-20240125.tar.xz 76243360 BLAKE2B 
ee2b1260cd5de9bc7d4a15bb4b4b2afe651f211c042314b7faa6fcd33f68a931660b215454bd4863f677e4abf38acf33a4f88d4ac98d0384b7ed6b920816
 SHA512 
d269aab6e5effdcfc3090279c56fee6e4ad5a6bda7a65712892fd0fcaedf3249b9fc20e370d00dfcf8442d07332b0af9717425075f33832b6af96078ecb3d5b0
 DIST gcc-11-20240201.tar.xz 76253248 BLAKE2B 
1ccefbc220a9381e83937808602a14bfa59bf38b1f730bae8f9036ca2b4f2a2f4369b3ea87f78ff9edef5e9429a793851d83ac4356c729ed58c02cd12862
 SHA512 
16c22ddf164668be3e365883edacb88607aaf294dc8065a9a722dc7afc0e29d1e879d1c39d77552dfba1c333bfc44258d784d0d06e9c935eaab28802a5756910
+DIST gcc-11-20240208.tar.xz 76276224 BLAKE2B 
efce83c3ea03093546b73d7731ac1051da7a2b0309612ce5b809ae2756bf7a949c94f951f6a77e789f7669051315e1a4e4c33f2b12a2ec1999ee9f1f39f6b13f
 SHA512 
a0e2b4402ff187d0804e3bc2ed0a228cfce48476c1270d57798b060899f65c7e986945651d36c358f9df5eb4b36db13321e141895329b7382c130a0aca6a8962
 DIST gcc-11.4.0-musl-patches-2.tar.xz 4308 BLAKE2B 
a2335e155fc57816fed822a648e0eaefafcba9d04e1ad0fd7baeea5a694ab6f5e3c1678cb406f2a1bd17bab25cb01699d032713a1ccf337948dfda2093844607
 SHA512 
17b84f907cb1bd763873655e6f35fd3ed55a40b602b70a626f04f83b4cc89c6261db1661de78d4d969187a8c56e9f6305b742515a3836b962248a21df0df5d0c
 DIST gcc-11.4.0-patches-10.tar.xz 13852 BLAKE2B 
54937d13e30e2a5303c7e197fae09eeed35ca0b9783625e02578fcee829b5503fb22d664366322b304df7d01ae807d00af7c93db3e3ceebe4851e15647724f87
 SHA512 
31b4d7a2e7cc589e92e12c3583d13d41c523cafbd309bc0532df9b68ea2473c89daef4c0edd3ce2917b5823d81a7792f145b9449f16277d0d64c22ceff50bbb9
 DIST gcc-11.4.0-patches-12.tar.xz 13824 BLAKE2B 
e4df9e0dc9512882022aaf325ebf65c540169454c91dd31f913c6f57f6eb291c79ae919671b53db1549799d4a70c09298bf45ed82ad05eb1f961443cc958369d
 SHA512 
87fed0c3f8e28c9f702443db58350bb615110b27ebe334b5de2ea60678e2548c56cd75cffade210d69634e2ac0a9311f5100ddb45d97645aa76d5688bc421a61

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

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

2024-02-11 Thread Sam James
commit: aeee353edc91767ea0117c98aaf1cb5495925281
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb 12 06:05:34 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb 12 06:35:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeee353e

sys-devel/gcc: add 13.2.1_p20240210

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

 sys-devel/gcc/Manifest|  2 +
 sys-devel/gcc/gcc-13.2.1_p20240210.ebuild | 65 +++
 2 files changed, 67 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 8dc598a3c5be..3a8d6d9203cc 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -26,9 +26,11 @@ DIST gcc-13-20240113.tar.xz 84356052 BLAKE2B 
1fbfffc9f2afe443158e3f26182c8bdc3f3
 DIST gcc-13-20240120.tar.xz 84362612 BLAKE2B 
d8aa2ebd73e2911c143505d2ed91bbab1ca4a11238bd58727ff997311bf679a714f4be7844b2570d467e46ed5a36e8316669603a278502ca7c8fa7af338a49f7
 SHA512 
2c8cc41be30529198c573cc69d1c5c9da1389e1c89f88ba931c7d2475abb8999a22f25f2e1fa75f61550c95e278bb26f2649cba6b298f6cfc8c6d098487552c6
 DIST gcc-13-20240127.tar.xz 84365080 BLAKE2B 
735bcff50272765110a14358d6cddd0a96b059876b5d6eb67cd8145362b51ed72162d9333cbb21849df36ddab52d4b3610d74582d2b25d7f9b5c52158042cd2c
 SHA512 
7ab50e7dd637674d69e71a791043074a6887ee07bcb74ea919d8ab4c0164eae5ceaf0f955dc83473d2976692d28b6d7f802f78dbf90da66aec023658e1e60e59
 DIST gcc-13-20240203.tar.xz 84370060 BLAKE2B 
56dd475e1c12fd7f11b1c35c303547de53998dd8322db47e686e4d37135271a5caa7adfea173c9505b8f7e61e17587c3878fc8de1886fa2d7c81ee901b001a67
 SHA512 
87541b578e29d658d0cd860bdcdb7c577d5a5ec6ab52b495dc44b073695119e8d17c7c154286251942e89f8f6da34a2784b95a21c8fa4972064bbae0a63770a4
+DIST gcc-13-20240210.tar.xz 84354416 BLAKE2B 
5807623d3f7dd751b6dfe164cfd50d57b2f93485c23c3c2228a4a846a9a94cdad52a5e6f2806e5e7ee2a7b5526386ebdb339c44c7ea023d69f8652088a1b114d
 SHA512 
14a01ced7ac2bfd9fc93de4e3819b4d0823fbe129d3f1faabeb707e9e3e2613b4173321b58b3648a7250e3b7ff5d94edfee60e6c38682f31a1f7b57b1c01433f
 DIST gcc-13.2.0-musl-patches-2.tar.xz 5292 BLAKE2B 
c057d6574d03c05854edaa9f3fd40e9149662b04f3ac7a7db3eb078d73a7b535726d1bf52e5b12736dedb2f9898ad731f2e48a6421fcfbf7b90f929dee072fcb
 SHA512 
a691da0c87c443a5e9d23731f4005f27871c5b12bc9102873ffa24d374aa7b9fbd187c4f5635d23fa9ffb17e351e76173c2d3fdf40646e355c4cb314b538de69
 DIST gcc-13.2.0-patches-11.tar.xz 46340 BLAKE2B 
c9f12ccbe7bb7ba3a2afec16695e69b062429779d544f5614e1ef0617751e54d77eb9bb6e19dc8c6132c57e630f0e77e2cc20cf2c77e0e79d03a6e57b9ba53c6
 SHA512 
a09801ecefccc66830607986a622bbcc5f217ba08da4ac9f68436e422b5a19042c60c7d5fcb75d4fe9ad9008ab06278382c9798b319ed9630c2e97fa09c3a344
 DIST gcc-13.2.0-patches-12.tar.xz 47404 BLAKE2B 
ed018bcd7429d1c7aace746cbfc4e59dae409fc0a35231320c1b44c96fff0d912eba5c72109c2deb883f5368159df02148b2d4373396b34da882164c61fe4387
 SHA512 
b7872a03870bce7b633e4af4329b24fe8f3d50d6d9173f63549f606ce062787748af7f79e7ec4afeb768968d6e8462a849bd1b94316ea6bb284551f99e811617
+DIST gcc-13.2.0-patches-13.tar.xz 46404 BLAKE2B 
d11e6ebfed8d1fcba60638240927d57722015ea7cfb0790836c338c023fc01f9f5b3ebf0fe1e0c615b36e0131d38b49e3aee4026f8ed81473572255ccaa74e4b
 SHA512 
4f8bbf9101548d64e78e32f38869ed84e462ce8329d64fbb934132d15bc81f8a9b6f2a075c0263fdc3b32e0dfac6bc032a4176eb06df88cb282fe974bfe102f4
 DIST gcc-13.2.0-patches-7.tar.xz 37064 BLAKE2B 
4a8700a8d44bfaa84926f8bfd0da4c5b0c0377f47fc0679456e909f7c9029b9cf1b72c0ba0bc505d9035d5c38e27f7e5b029727eaf2bc7aca417a6be966b2f43
 SHA512 
f440c97e6782ecb8581d41608e31a648ac426e2d870bc1d171da7794cdeff2fd0546cae0c7214e72fd3a00ead8a5c66f3f633b670b74553a2f3a40378b51f20c
 DIST gcc-14-20231217.tar.xz 86943032 BLAKE2B 
8d5ab21fedffad0d4d4e02201c74f3b90cfabe5c2c1abbc048b6c4d179cbf3977cffc6bfc1b7b679d0276b66f86d58ef5c0b8451a4fcb75b88b7240fd7baf41c
 SHA512 
23d8e6dd76aff0a5d7687ce8753aba7bdc374d3330553314da378af84ad629e67dbb532ba416816ce81812857c4c54e31cc5460d3f86619d7a9fb368328ff11d
 DIST gcc-14-20240121.tar.xz 87469416 BLAKE2B 
a146f6f62775d2ad82f93dba0581b3aee162113cb0a1ed9fa3db6a8cfc0841edb0dd0b24d6f4676b91d644d2096ffe22de3c03c8f88b7d6e480515601737
 SHA512 
af6b623bba274970c58da8cd4a5f329a2b2973cb108e7dc7a910358d7bffb89b8f33437d47d7f10a1ceeafd744f099677621f3c3fac65e54aad1ea4045d19743

diff --git a/sys-devel/gcc/gcc-13.2.1_p20240210.ebuild 
b/sys-devel/gcc/gcc-13.2.1_p20240210.ebuild
new file mode 100644
index ..1496205dad81
--- /dev/null
+++ b/sys-devel/gcc/gcc-13.2.1_p20240210.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+TOOLCHAIN_PATCH_DEV="sam"
+PATCH_GCC_VER="13.2.0"
+PATCH_VER="13"
+MUSL_VER="2"
+MUSL_GCC_VER="13.2.0"
+
+if [[ ${PV} == *. ]] ; then
+   MY_PV_2=$(ver_cut 2)
+   MY_PV_3=1
+   if [[ ${MY_PV_2} == 0 ]] ; then
+   MY_PV_2=0
+   MY_PV_3=0
+   else
+   MY_PV_2=$((${MY_PV_2} - 1))
+   fi
+
+   # e.g. 12.2. -> 12.1.1
+

[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop/

2024-02-11 Thread Yixun Lan
commit: 27412eeb17a5457dc1a635e5890bc43bbe029a9e
Author: Aliaksei Urbanski  gmail  com>
AuthorDate: Sat Feb 10 05:40:21 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Feb 12 06:33:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27412eeb

net-im/telegram-desktop: add 4.14.15

Release:
  - https://github.com/telegramdesktop/tdesktop/releases/tag/v4.14.15

Changelog:
  - https://github.com/telegramdesktop/tdesktop/blob/v4.14.15/changelog.txt

Closes: https://github.com/gentoo/gentoo/pull/35193
Signed-off-by: Aliaksei Urbanski  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 net-im/telegram-desktop/Manifest   |   1 +
 .../telegram-desktop-4.14.15.ebuild| 238 +
 2 files changed, 239 insertions(+)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index f341d61d1fbc..7a556e7bcf26 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -1,3 +1,4 @@
 DIST tdesktop-4.13.1-full.tar.gz 67876971 BLAKE2B 
6743aabae75f06e8691ed77ff22836a0276313756240ec864ac93eba7c04cd2d41c4f844fdea6f89d482e5e0e70793dc7d1fb3f19b788397abab56f631134866
 SHA512 
4cbbfaf6e5ecc90b429fc2207a106988ab839aa42d0d225841069d20bf2152fada489c28e6816eefa143724f5b8ea4db6995a0612f0df195d8dbd5f40d8a63a3
+DIST tdesktop-4.14.15-full.tar.gz 68147116 BLAKE2B 
32e2719260cc48948ed85644e4079014ba5d44d003f00f8c274ea5e9ad6af0f893ffbc56d523e37a382080f13ebd1d46f0059927c6bafe9710f5eee11e44b449
 SHA512 
12812fa1fd067fca03b2e5cb04502ef05e98368b91a4ed5458a61a0bea8b3d6daf6c32b7632c170fe0904acb63eb422f6fa6364e4af18f73e49659e2d50f531b
 DIST tdesktop-4.14.6-full.tar.gz 68061605 BLAKE2B 
aa09760ac148eaac4ba51df14649a77b08fc8fb099eed5ddafb31797a57c0e160c2ebef764ef8a09a36a391b7f7fcad92c6ed52e8d8575870af80fee11d0633d
 SHA512 
fefa645b27950fb0ce47d8430fe3669ed38398fbab37c380c480bb8ec981fe2c32ba29ff99d66f5cd2b59dcab5e6cc062022072a89437c9bf6dfd297c3d4b0ce
 DIST tdesktop-4.14.9-full.tar.gz 68106660 BLAKE2B 
35d9943488e5237e3b95a23e02d7c831eff4aacbe16b1b85b5f0c0873011697767bfd6f6c9028aa2939c0fb517251945dcd9389797de30dd25c4336b8d646ebb
 SHA512 
802ec7eeef75ac97934cb0437c24dab62670f7029a1a5e44866cd77d39d7b572b79106c0b73bd742786548db938c49ba2e559123963ef0201adaa279b4cf9fa4

diff --git a/net-im/telegram-desktop/telegram-desktop-4.14.15.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.14.15.ebuild
new file mode 100644
index ..0d7c5626f90d
--- /dev/null
+++ b/net-im/telegram-desktop/telegram-desktop-4.14.15.ebuild
@@ -0,0 +1,238 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit xdg cmake python-any-r1 optfeature flag-o-matic
+
+DESCRIPTION="Official desktop client for Telegram"
+HOMEPAGE="https://desktop.telegram.org;
+
+MY_P="tdesktop-${PV}-full"
+SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+IUSE="dbus enchant +fonts screencast qt6 qt6-imageformats wayland webkit +X"
+REQUIRED_USE="
+   qt6-imageformats? ( qt6 )
+"
+
+KIMAGEFORMATS_RDEPEND="
+   media-libs/libavif:=
+   media-libs/libheif:=
+   >=media-libs/libjxl-0.8.0:=
+"
+CDEPEND="
+   !net-im/telegram-desktop-bin
+   app-arch/lz4:=
+   dev-cpp/abseil-cpp:=
+   >=dev-cpp/glibmm-2.77:2.68
+   dev-libs/glib:2
+   dev-libs/libdispatch
+   dev-libs/openssl:=
+   dev-libs/protobuf
+   dev-libs/xxhash
+   media-libs/libjpeg-turbo:=
+   ~media-libs/libtgvoip-2.4.4_p20221208
+   media-libs/openal
+   media-libs/opus
+   media-libs/rnnoise
+   ~media-libs/tg_owt-0_pre20230921:=[screencast=,X=]
+   media-video/ffmpeg:=[opus,vpx]
+   sys-libs/zlib:=[minizip]
+   virtual/opengl
+   !enchant? ( >=app-text/hunspell-1.7:= )
+   enchant? ( app-text/enchant:= )
+   !qt6? (
+   >=dev-qt/qtcore-5.15:5=
+   >=dev-qt/qtgui-5.15:5=[dbus?,jpeg,png,wayland?,X?]
+   >=dev-qt/qtimageformats-5.15:5
+   >=dev-qt/qtnetwork-5.15:5[ssl]
+   >=dev-qt/qtsvg-5.15:5
+   >=dev-qt/qtwidgets-5.15:5[png,X?]
+   kde-frameworks/kcoreaddons:5
+   webkit? (
+   >=dev-qt/qtdeclarative-5.15:5
+   >=dev-qt/qtwayland-5.15:5
+   )
+   )
+   qt6? (
+   
>=dev-qt/qtbase-6.5:6=[dbus?,gui,network,opengl,wayland?,widgets,X?]
+   >=dev-qt/qtimageformats-6.5:6
+   >=dev-qt/qtsvg-6.5:6
+   webkit? (
+   >=dev-qt/qtdeclarative-6.5:6
+   >=dev-qt/qtwayland-6.5:6[compositor]
+   )
+   qt6-imageformats? (
+   

[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop/

2024-02-11 Thread Yixun Lan
commit: 200ca4c3c6ece5c73d602cf3331ebf0a1057989d
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Feb 12 00:45:35 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Feb 12 06:33:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=200ca4c3

net-im/telegram-desktop: drop 4.14.6

Signed-off-by: Yixun Lan  gentoo.org>

 net-im/telegram-desktop/Manifest   |   1 -
 .../telegram-desktop-4.14.6.ebuild | 237 -
 2 files changed, 238 deletions(-)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index 7a556e7bcf26..58f373ba1263 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -1,4 +1,3 @@
 DIST tdesktop-4.13.1-full.tar.gz 67876971 BLAKE2B 
6743aabae75f06e8691ed77ff22836a0276313756240ec864ac93eba7c04cd2d41c4f844fdea6f89d482e5e0e70793dc7d1fb3f19b788397abab56f631134866
 SHA512 
4cbbfaf6e5ecc90b429fc2207a106988ab839aa42d0d225841069d20bf2152fada489c28e6816eefa143724f5b8ea4db6995a0612f0df195d8dbd5f40d8a63a3
 DIST tdesktop-4.14.15-full.tar.gz 68147116 BLAKE2B 
32e2719260cc48948ed85644e4079014ba5d44d003f00f8c274ea5e9ad6af0f893ffbc56d523e37a382080f13ebd1d46f0059927c6bafe9710f5eee11e44b449
 SHA512 
12812fa1fd067fca03b2e5cb04502ef05e98368b91a4ed5458a61a0bea8b3d6daf6c32b7632c170fe0904acb63eb422f6fa6364e4af18f73e49659e2d50f531b
-DIST tdesktop-4.14.6-full.tar.gz 68061605 BLAKE2B 
aa09760ac148eaac4ba51df14649a77b08fc8fb099eed5ddafb31797a57c0e160c2ebef764ef8a09a36a391b7f7fcad92c6ed52e8d8575870af80fee11d0633d
 SHA512 
fefa645b27950fb0ce47d8430fe3669ed38398fbab37c380c480bb8ec981fe2c32ba29ff99d66f5cd2b59dcab5e6cc062022072a89437c9bf6dfd297c3d4b0ce
 DIST tdesktop-4.14.9-full.tar.gz 68106660 BLAKE2B 
35d9943488e5237e3b95a23e02d7c831eff4aacbe16b1b85b5f0c0873011697767bfd6f6c9028aa2939c0fb517251945dcd9389797de30dd25c4336b8d646ebb
 SHA512 
802ec7eeef75ac97934cb0437c24dab62670f7029a1a5e44866cd77d39d7b572b79106c0b73bd742786548db938c49ba2e559123963ef0201adaa279b4cf9fa4

diff --git a/net-im/telegram-desktop/telegram-desktop-4.14.6.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.14.6.ebuild
deleted file mode 100644
index 750580bd666e..
--- a/net-im/telegram-desktop/telegram-desktop-4.14.6.ebuild
+++ /dev/null
@@ -1,237 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit xdg cmake python-any-r1 optfeature flag-o-matic
-
-DESCRIPTION="Official desktop client for Telegram"
-HOMEPAGE="https://desktop.telegram.org;
-
-MY_P="tdesktop-${PV}-full"
-SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
-IUSE="dbus enchant +fonts screencast qt6 qt6-imageformats wayland webkit +X"
-REQUIRED_USE="
-   qt6-imageformats? ( qt6 )
-"
-
-KIMAGEFORMATS_RDEPEND="
-   media-libs/libavif:=
-   media-libs/libheif:=
-   >=media-libs/libjxl-0.8.0:=
-"
-CDEPEND="
-   !net-im/telegram-desktop-bin
-   app-arch/lz4:=
-   dev-cpp/abseil-cpp:=
-   >=dev-cpp/glibmm-2.77:2.68
-   dev-libs/glib:2
-   dev-libs/libdispatch
-   dev-libs/openssl:=
-   dev-libs/protobuf
-   dev-libs/xxhash
-   media-libs/libjpeg-turbo:=
-   ~media-libs/libtgvoip-2.4.4_p20221208
-   media-libs/openal
-   media-libs/opus
-   media-libs/rnnoise
-   ~media-libs/tg_owt-0_pre20230921:=[screencast=,X=]
-   media-video/ffmpeg:=[opus,vpx]
-   sys-libs/zlib:=[minizip]
-   virtual/opengl
-   !enchant? ( >=app-text/hunspell-1.7:= )
-   enchant? ( app-text/enchant:= )
-   !qt6? (
-   >=dev-qt/qtcore-5.15:5=
-   >=dev-qt/qtgui-5.15:5=[dbus?,jpeg,png,wayland?,X?]
-   >=dev-qt/qtimageformats-5.15:5
-   >=dev-qt/qtnetwork-5.15:5[ssl]
-   >=dev-qt/qtsvg-5.15:5
-   >=dev-qt/qtwidgets-5.15:5[png,X?]
-   kde-frameworks/kcoreaddons:5
-   webkit? (
-   >=dev-qt/qtdeclarative-5.15:5
-   >=dev-qt/qtwayland-5.15:5
-   )
-   )
-   qt6? (
-   
>=dev-qt/qtbase-6.5:6=[dbus?,gui,network,opengl,wayland?,widgets,X?]
-   >=dev-qt/qtimageformats-6.5:6
-   >=dev-qt/qtsvg-6.5:6
-   webkit? (
-   >=dev-qt/qtdeclarative-6.5:6
-   >=dev-qt/qtwayland-6.5:6[compositor]
-   )
-   qt6-imageformats? (
-   >=dev-qt/qtimageformats-6.5:6=
-   ${KIMAGEFORMATS_RDEPEND}
-   )
-   )
-   X? (
-   x11-libs/libxcb:=
-   x11-libs/xcb-util-keysyms
-   )
-"
-RDEPEND="${CDEPEND}
-   webkit? ( net-libs/webkit-gtk:4.1 

[gentoo-commits] repo/gentoo:master commit in: app-text/zathura-pdf-poppler/

2024-02-11 Thread Matt Jolly
commit: 765f8df2235f93670e0ba87222606f725b7c4a17
Author: andrewpak  gmail  com>
AuthorDate: Fri Feb  9 14:28:22 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Mon Feb 12 05:59:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765f8df2

app-text/zathura-pdf-poppler: drop 0.3.1

Drop 0.3.1

Signed-off-by: andrewpak  gmail.com>
Signed-off-by: Matt Jolly  gentoo.org>

 .../zathura-pdf-poppler-0.3.1.ebuild   | 38 --
 1 file changed, 38 deletions(-)

diff --git a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.1.ebuild 
b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.1.ebuild
deleted file mode 100644
index 226fc00f03c9..
--- a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson xdg-utils
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.pwmt.org/pwmt/zathura-pdf-poppler.git;
-   EGIT_BRANCH="develop"
-else
-   KEYWORDS="amd64 arm ~riscv x86"
-   
SRC_URI="https://github.com/pwmt/zathura-pdf-poppler/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-DESCRIPTION="PDF plug-in for zathura"
-HOMEPAGE="https://pwmt.org/projects/zathura-pdf-poppler;
-
-LICENSE="ZLIB"
-SLOT="0"
-
-DEPEND="app-text/poppler[cairo]
-   >=app-text/zathura-0.3.9:=
-   dev-libs/girara
-   dev-libs/glib:2"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-pkg_postinst() {
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/zathura-pdf-poppler/

2024-02-11 Thread Matt Jolly
commit: 2c4ac0022e297738534bf68c9c636e66929fb022
Author: andrewpak  gmail  com>
AuthorDate: Sat Feb 10 02:48:18 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Mon Feb 12 05:59:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4ac002

app-text/zathura-pdf-poppler: update poppler dependency

update poppler dependency to 21.12.0

Signed-off-by: andrewpak  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35242
Signed-off-by: Matt Jolly  gentoo.org>

 app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild | 2 +-
 app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild 
b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
index 7484f8169dd7..cb0233ebcd83 100644
--- a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
+++ b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://pwmt.org/projects/zathura-pdf-poppler;
 LICENSE="ZLIB"
 SLOT="0"
 
-DEPEND="app-text/poppler[cairo]
+DEPEND=">=app-text/poppler-21.12.0:=[cairo]
>=app-text/zathura-0.5.3:=
dev-libs/girara
dev-libs/glib:2"

diff --git a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild 
b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
index 7484f8169dd7..cb0233ebcd83 100644
--- a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
+++ b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://pwmt.org/projects/zathura-pdf-poppler;
 LICENSE="ZLIB"
 SLOT="0"
 
-DEPEND="app-text/poppler[cairo]
+DEPEND=">=app-text/poppler-21.12.0:=[cairo]
>=app-text/zathura-0.5.3:=
dev-libs/girara
dev-libs/glib:2"



[gentoo-commits] repo/gentoo:master commit in: app-text/zathura-pdf-poppler/

2024-02-11 Thread Matt Jolly
commit: 05ade6b6ff1edacd41d74a98d3b8340d330ac52d
Author: andrewpak  gmail  com>
AuthorDate: Fri Feb  9 07:09:45 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Mon Feb 12 05:59:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ade6b6

app-text/zathura-pdf-poppler: add 0.3.2

Added 0.3.2, updated metadata.xml, and copied template to 

Signed-off-by: andrewpak  gmail.com>
Signed-off-by: Matt Jolly  gentoo.org>

 app-text/zathura-pdf-poppler/Manifest   | 1 +
 app-text/zathura-pdf-poppler/metadata.xml   | 6 +++---
 ...ura-pdf-poppler-.ebuild => zathura-pdf-poppler-0.3.2.ebuild} | 6 +++---
 app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild| 6 +++---
 4 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/app-text/zathura-pdf-poppler/Manifest 
b/app-text/zathura-pdf-poppler/Manifest
index d48f480b353b..0436d6b968a0 100644
--- a/app-text/zathura-pdf-poppler/Manifest
+++ b/app-text/zathura-pdf-poppler/Manifest
@@ -1 +1,2 @@
 DIST zathura-pdf-poppler-0.3.1.tar.gz 9259 BLAKE2B 
c1131d2acc0cf69bf9266969839f6fb4e043664a0a4648d033f9338b1219d75e34576a03380daf54bc8fe52cc8bd2244a93394e15f8ff0bbb980fb903749affc
 SHA512 
a6ea7d61f05cfbc6229ec81580c539841916b44085aeb168668cfabd41aca2e5321e88605f092caaa3efc30bec25a2bb319c687920a22b1f7f53e4b1e470ec34
+DIST zathura-pdf-poppler-0.3.2.tar.gz 10623 BLAKE2B 
985ce9664b74d798c6a5c858a79e9e3a6e82d837818f52e4115e622395ee39e765c356740c099a7f376517c3af81fb9335188950719930b9a902542fccd475e7
 SHA512 
5e6d748f9dfcc9e318ee7947d3a4d9acbbb30d6b45810a7c2fd2d0572d98872f5d594add8683b6579791fb82846a3d7854e84239ac5167c0541e700518a31043

diff --git a/app-text/zathura-pdf-poppler/metadata.xml 
b/app-text/zathura-pdf-poppler/metadata.xml
index 6aa03ae92b6d..35a79df28eb8 100644
--- a/app-text/zathura-pdf-poppler/metadata.xml
+++ b/app-text/zathura-pdf-poppler/metadata.xml
@@ -11,9 +11,9 @@
sebastian+...@ramacher.at
Sebastian Ramacher

-   
http://pwmt.org/projects/zathura/download/
-   http://pwmt.org/projects/zathura/
-   http://bugs.pwmt.org/
+   
https://pwmt.org/projects/zathura/download/
+   https://git.pwmt.org/groups/pwmt/-/issues
+   https://pwmt.org/projects/zathura/
pwmt/zathura-pdf-poppler

 

diff --git a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild 
b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
similarity index 90%
copy from app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
copy to app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
index cda9cd6aa073..7484f8169dd7 100644
--- a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
+++ b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.3.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson xdg-utils
 
@@ -21,7 +21,7 @@ LICENSE="ZLIB"
 SLOT="0"
 
 DEPEND="app-text/poppler[cairo]
-   >=app-text/zathura-0.3.9:=
+   >=app-text/zathura-0.5.3:=
dev-libs/girara
dev-libs/glib:2"
 

diff --git a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild 
b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
index cda9cd6aa073..7484f8169dd7 100644
--- a/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
+++ b/app-text/zathura-pdf-poppler/zathura-pdf-poppler-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson xdg-utils
 
@@ -21,7 +21,7 @@ LICENSE="ZLIB"
 SLOT="0"
 
 DEPEND="app-text/poppler[cairo]
-   >=app-text/zathura-0.3.9:=
+   >=app-text/zathura-0.5.3:=
dev-libs/girara
dev-libs/glib:2"
 



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2024-02-11 Thread Andrey Grozin
commit: ad32b4bc8a4976be3adb6c13fed19cee5aad0a56
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Feb 12 04:52:59 2024 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Feb 12 04:52:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad32b4bc

dev-lisp/sbcl: make USE flag unicode local

Signed-off-by: Andrey Grozin  gentoo.org>

 dev-lisp/sbcl/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lisp/sbcl/metadata.xml b/dev-lisp/sbcl/metadata.xml
index 46f8e1bbbccc..9a9f699bd5e4 100644
--- a/dev-lisp/sbcl/metadata.xml
+++ b/dev-lisp/sbcl/metadata.xml
@@ -25,6 +25,7 @@


Bootstrap SBCL using either 
system SBCL installation or dev-lisp/clisp
+   Make the produced lisp support 
unicode


sbcl



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

2024-02-11 Thread Michał Górny
commit: c653d612febb3a6b48fe0a1fa1f77a8f000d10ae
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:37:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 03:37:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c653d612

dev-python/imageio: Bump to 2.34.0

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

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.34.0.ebuild | 92 
 2 files changed, 93 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 74f9f2837ae9..d43fd6d7485d 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.33.1.gh.tar.gz 413003 BLAKE2B 
33afafcca605388e24920047d80b37e5a100c3a747d862a8fccece9ebd6d2ec53f564b1ce5d37fe7c97b2c4b7d4cf5258331b5824ecbdc4648809de7e763e4e0
 SHA512 
c7fb3ee6df72f4ef93be8a4b21beb15287a644113df2790f0049d6a8dcac6b7762186c4f2b9a07c2b579b3c0d4fbf3037c82889f1911c65fc615b7c8c98c80bb
+DIST imageio-2.34.0.gh.tar.gz 413125 BLAKE2B 
c6f9650265924f370634f5ab87bed94bdb501d078a154b93400d8c89847da3fef7196f18db0682bbfc99ac5c9f4156a113bb2d74f572c010842b9b9593d7c13e
 SHA512 
d28b5b849a8d7fc90c4c4a82b2056431e5351ecce709cd48ccb9aaf58a50964a1b77faf4663d3fdeb4757951fb8a03b5bf632e57f78ddd59d5a9acdb62b78f48
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.34.0.ebuild 
b/dev-python/imageio/imageio-2.34.0.ebuild
new file mode 100644
index ..8a2d4f074917
--- /dev/null
+++ b/dev-python/imageio/imageio-2.34.0.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+   # requires pillow-heif, also possibly Internet
+   tests/test_pillow.py::test_avif_remote
+   tests/test_pillow.py::test_heif_remote
+   # TODO: imageio-ffmpeg seems broken with current ffmpeg?
+   

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

2024-02-11 Thread Michał Górny
commit: a94239d22df2c608a0e9135cd4ced4ac56465698
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:38:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 03:38:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a94239d2

dev-python/twine: Bump to 5.0.0

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

 dev-python/twine/Manifest   |  1 +
 dev-python/twine/twine-5.0.0.ebuild | 78 +
 2 files changed, 79 insertions(+)

diff --git a/dev-python/twine/Manifest b/dev-python/twine/Manifest
index 29b838b50621..108c298357f1 100644
--- a/dev-python/twine/Manifest
+++ b/dev-python/twine/Manifest
@@ -1 +1,2 @@
 DIST twine-4.0.2.gh.tar.gz 214528 BLAKE2B 
c088329a86139eb01d325ec623504c0dfee1231ca8bbbf9ed73d46d4ed9dd79aaac6aaad225cacd64942eb7a3ead19bcb5e224ad9735d9760bd8c9c8e5e69043
 SHA512 
94dec0b08ea8f4cc5900d743b750f02a668c738d402632a80faef24220f87b4b14824966d6d902e9ddaab741e4091d6a370a7660d02ca27fd6fd0d251a473ab5
+DIST twine-5.0.0.gh.tar.gz 218873 BLAKE2B 
0f4f92d3ee9ae0f154c68cbc165ce014cbd5c34d88f8067c5f9ab4b6cfd3fc9d435f9c1ada6911af2f711bef3c5607fdfd969ad454c06e3a9bbce4f23ebc2a07
 SHA512 
a1701844df03f0ca0e4b15eeae97e1a1a5788f13f04bbd5b084a9dc6637c2404aefc354705c974edd53b2f09517e088f5857cb211ed45ed7dbcedecb0f6392d5

diff --git a/dev-python/twine/twine-5.0.0.ebuild 
b/dev-python/twine/twine-5.0.0.ebuild
new file mode 100644
index ..970c1576f1a5
--- /dev/null
+++ b/dev-python/twine/twine-5.0.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of utilities for publishing packages on PyPI"
+HOMEPAGE="
+   https://twine.readthedocs.io/
+   https://github.com/pypa/twine/
+   https://pypi.org/project/twine/
+"
+SRC_URI="
+   https://github.com/pypa/twine/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}]
+   >=dev-python/importlib-metadata-3.6[${PYTHON_USEDEP}]
+   >=dev-python/keyring-15.1[${PYTHON_USEDEP}]
+   >=dev-python/pkginfo-1.8.1[${PYTHON_USEDEP}]
+   >=dev-python/readme-renderer-35.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}]
+   >=dev-python/rfc3986-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/rich-12.0.0[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.26.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/build[${PYTHON_USEDEP}]
+   dev-python/jaraco-envs[${PYTHON_USEDEP}]
+   dev-python/jaraco-functools[${PYTHON_USEDEP}]
+   dev-python/munch[${PYTHON_USEDEP}]
+   dev-python/portend[${PYTHON_USEDEP}]
+   dev-python/pretend[${PYTHON_USEDEP}]
+   dev-python/pypiserver[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # pytest-socket dep relevant only to test_integration, and upstream
+   # disables it anyway
+   sed -i -e '/--disable-socket/d' pytest.ini || die
+   sed -i -e '/--cov/d' pytest.ini || die
+
+   distutils-r1_python_prepare_all
+   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+}
+
+python_test() {
+   local EPYTEST_IGNORE=(
+   # Internet
+   tests/test_integration.py
+   )
+   local EPYTEST_DESELECT=(
+   # Regression due to deps?
+   tests/test_check.py::test_fails_rst_no_content
+   # Avoid needing heavy virtualx
+   tests/test_auth.py::test_warns_for_empty_password
+   )
+
+   local -x COLUMNS=80
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



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

2024-02-11 Thread Michał Górny
commit: 6a843eaee697c7af105a54d4486231e3b727429d
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:40:24 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 03:47:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a843eae

dev-python/pycairo: Bump to 1.26.0

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

 dev-python/pycairo/Manifest  |  1 +
 dev-python/pycairo/pycairo-1.26.0.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
index 7ef49d2916a7..c7bcb5e4215e 100644
--- a/dev-python/pycairo/Manifest
+++ b/dev-python/pycairo/Manifest
@@ -1 +1,2 @@
 DIST pycairo-1.25.1.tar.gz 347088 BLAKE2B 
ba4eedaf47e514bd7c3ad5ea738d099428958988a708255f59df48372d112d0195fe746be03de56aa25ccce9c2366b8898fcdd568b427372d0340c5edd550a5c
 SHA512 
f2b93a09cbe9cd7c2885794ff58a48df6cf59fbe2dbeabf7c6e9d99e68c71ac220abc866ac0d756c7ffb3f821ef63b65dbb8963f0bf7d5bd21ee0efb800e7b23
+DIST pycairo-1.26.0.tar.gz 346850 BLAKE2B 
da6c35c929d372764280e8963a8b66ba533ccb99be9ee2bfa10859c635dd16cc087d542607be9ec6a9ffb942feb892100d4b9017d832d478b35c434aa05b9bb9
 SHA512 
5313f0d408a6e6ce6e70ac92291be5dd8651e01fbf9411d0467061afa21849cde27db273f2a13b4c3c931183f63f75f31fc0f0d3283b8f339ba88e71eab432f1

diff --git a/dev-python/pycairo/pycairo-1.26.0.ebuild 
b/dev-python/pycairo/pycairo-1.26.0.ebuild
new file mode 100644
index ..8b6eb7068906
--- /dev/null
+++ b/dev-python/pycairo/pycairo-1.26.0.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for the cairo library"
+HOMEPAGE="
+   https://www.cairographics.org/pycairo/
+   https://github.com/pygobject/pycairo/
+   https://pypi.org/project/pycairo/
+"
+SRC_URI="
+   https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz
+"
+
+LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+IUSE="examples"
+
+BDEPEND="
+   virtual/pkgconfig
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="
+   >=x11-libs/cairo-1.15.10[svg(+)]
+"
+DEPEND="
+   ${RDEPEND}
+   x11-base/xorg-proto
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-rtd-theme
+distutils_enable_tests pytest
+
+python_test() {
+   esetup.py build_tests
+   epytest
+}
+
+python_install() {
+   distutils-r1_python_install
+
+   # we need to pass --root via install command, sigh
+   cat > "${T}/distutils-extra.cfg" <<-EOF || die
+   [install]
+   root = ${D}
+   EOF
+   local -x DIST_EXTRA_CONFIG=${T}/distutils-extra.cfg
+   esetup.py \
+   install_pkgconfig 
--pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
+}
+
+python_install_all() {
+   if use examples; then
+   dodoc -r examples
+   fi
+
+   distutils-r1_python_install_all
+
+   insinto /usr/include/pycairo
+   doins cairo/py3cairo.h
+}



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

2024-02-11 Thread Michał Górny
commit: 304b50a9082d517a9f8fccaffd9b942491455e79
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:47:17 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 04:11:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=304b50a9

dev-python/ensurepip-setuptools: Bump to 69.1.0

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

 dev-python/ensurepip-setuptools/Manifest   |  1 +
 .../ensurepip-setuptools-69.1.0.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-python/ensurepip-setuptools/Manifest 
b/dev-python/ensurepip-setuptools/Manifest
index 1fd46e152da1..fc967102b9e4 100644
--- a/dev-python/ensurepip-setuptools/Manifest
+++ b/dev-python/ensurepip-setuptools/Manifest
@@ -1 +1,2 @@
 DIST setuptools-69.0.3-py3-none-any.whl 819530 BLAKE2B 
6ecef64755181255d935e234f77db3a4a9ce6426621d5d95196f55820a6bd62ff6bd3efcbf2e66221501b0c7c5296a35f80d275c59a8075392a0e802ee6713f1
 SHA512 
20c68e4f279a133f33ac85885b2c7e05b68c8c2faf15c9bb251229a6668c5c6b54c4065c54a0b711dae36d7fd161d3dc34218c579e739a2b2c573b85ccc79820
+DIST setuptools-69.1.0-py3-none-any.whl 819310 BLAKE2B 
1aface76839a9e77de4b59a366f5aab927b08601f5343e243992b4bcf960d9456b827e296320469dee05ef0212561a25ec3bfad61970129117e86732e04c974a
 SHA512 
40e7c427cb36255639b390b027cc0449006e1c676d8d832f924d2fbd900a433f1011078cb3734a89400deb645dbb4f6be574231597d8d32cf43fc10b3b9579e9

diff --git a/dev-python/ensurepip-setuptools/ensurepip-setuptools-69.1.0.ebuild 
b/dev-python/ensurepip-setuptools/ensurepip-setuptools-69.1.0.ebuild
new file mode 100644
index ..97aca4a61872
--- /dev/null
+++ b/dev-python/ensurepip-setuptools/ensurepip-setuptools-69.1.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit pypi
+
+DESCRIPTION="Shared setuptools wheel for ensurepip Python module"
+HOMEPAGE="https://pypi.org/project/setuptools/;
+SRC_URI="$(pypi_wheel_url "${PN#ensurepip-}")"
+S=${DISTDIR}
+
+LICENSE="MIT"
+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"
+
+RDEPEND="
+   !

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

2024-02-11 Thread Michał Górny
commit: ba04294f6915d0960945d43c09db480a7af4d296
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:47:05 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 04:11:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba04294f

dev-python/setuptools: Bump to 69.1.0

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

 dev-python/setuptools/Manifest |   1 +
 dev-python/setuptools/setuptools-69.1.0.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
index 534fff7d1b11..fb02d64bf077 100644
--- a/dev-python/setuptools/Manifest
+++ b/dev-python/setuptools/Manifest
@@ -1 +1,2 @@
 DIST setuptools-69.0.3.tar.gz 2219609 BLAKE2B 
1a5e7896c7ea82d51b0aa4794435b9899cef871f6ae43d22ae5e08c57d87b70641f3f2abfcc29956a3de515f90b112fd61d3daf793474b4cf33f8567e3a38f4a
 SHA512 
11df934931f4b73f7e07ea5713479593c6baa134d423556b2ae7aff0f1e5bdbdee1f5b516131adb169c838231ceb0293441fbf275ef7030dabecf74122565b6d
+DIST setuptools-69.1.0.tar.gz 2219972 BLAKE2B 
82ba9df6e6234bcf234f6b6659704b208912d05749bd6f34ce456bd356bc65b8ee17f534dc8baaac71b331089d8ca8798101e0c2c91f3bd24e18d406db7ff0e5
 SHA512 
345aa208a446561e7a038cb5021eb6948940f95dde1291c0b1aa037098fcbe782dbc3f0db4bec17f18eca51f236365ddb396bb7441e01e2d2caa2a600360b756

diff --git a/dev-python/setuptools/setuptools-69.1.0.ebuild 
b/dev-python/setuptools/setuptools-69.1.0.ebuild
new file mode 100644
index ..3193a714859d
--- /dev/null
+++ b/dev-python/setuptools/setuptools-69.1.0.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
+EAPI=8
+
+# please bump dev-python/ensurepip-setuptools along with this package!
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_TESTED=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Collection of extensions to Distutils"
+HOMEPAGE="
+   https://github.com/pypa/setuptools/
+   https://pypi.org/project/setuptools/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/jaraco-text-3.7.0-r1[${PYTHON_USEDEP}]
+   >=dev-python/more-itertools-8.12.0-r1[${PYTHON_USEDEP}]
+   >=dev-python/nspektr-0.3.0[${PYTHON_USEDEP}]
+   >=dev-python/ordered-set-4.0.2-r1[${PYTHON_USEDEP}]
+   >=dev-python/packaging-21.3-r2[${PYTHON_USEDEP}]
+   >=dev-python/platformdirs-2.6.2-r1[${PYTHON_USEDEP}]
+   >=dev-python/tomli-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/wheel-0.37.1-r1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/build[${PYTHON_USEDEP}]
+   >=dev-python/ini2toml-0.9[${PYTHON_USEDEP}]
+   >=dev-python/filelock-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-envs-2.2[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-path-3.2.0[${PYTHON_USEDEP}]
+   dev-python/pip[${PYTHON_USEDEP}]
+   dev-python/pip-run[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   >=dev-python/pytest-home-0.5[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   >=dev-python/tomli-w-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/virtualenv-20[${PYTHON_USEDEP}]
+   ' "${PYTHON_TESTED[@]}")
+   )
+"
+# setuptools-scm is here because installing plugins apparently breaks stuff at
+# runtime, so let's pull it early. See bug #663324.
+PDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+   local PATCHES=(
+   # TODO: remove this when we're 100% PEP517 mode
+   "${FILESDIR}"/setuptools-62.4.0-py-compile.patch
+   )
+
+   distutils-r1_src_prepare
+
+   # remove bundled dependencies
+   rm -r */_vendor || die
+
+   # remove the ugly */extern hack that breaks on unvendored deps
+   rm -r */extern || die
+   find -name '*.py' -exec sed \
+   -e 's:from \w*[.]\+extern ::' -e 's:\w*[.]\+extern[.]::' \
+   -i {} + || die
+}
+
+python_test() {
+   if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
+   return
+   fi
+
+   local EPYTEST_DESELECT=(
+   # network
+   # TODO: see if PRE_BUILT_SETUPTOOLS_* helps
+   
setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg
+   
setuptools/tests/integration/test_pip_install_sdist.py::test_install_sdist
+   

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

2024-02-11 Thread Michał Górny
commit: 75243ec52b079d6fd5aea147978ecf02cae00710
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:45:50 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 03:47:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75243ec5

dev-python/pytest-home: New package, v0.5.1

New test dependency of dev-python/setuptools.

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

 dev-python/pytest-home/Manifest |  1 +
 dev-python/pytest-home/metadata.xml | 13 +
 dev-python/pytest-home/pytest-home-0.5.1.ebuild | 26 +
 3 files changed, 40 insertions(+)

diff --git a/dev-python/pytest-home/Manifest b/dev-python/pytest-home/Manifest
new file mode 100644
index ..96f9ab0e2ae5
--- /dev/null
+++ b/dev-python/pytest-home/Manifest
@@ -0,0 +1 @@
+DIST pytest-home-0.5.1.tar.gz 7596 BLAKE2B 
3e0ac21a35bff15e652d710bab0c59855c9beda9a1aa32ca5e3aa9e659dabb5a09bc0e93c56f280e859a1d50159f6e56aaf69ec64ee5268a1a93871bca3b3a23
 SHA512 
6b3ab71f48135d7fe3e0279de598e8067bfeb1f3295d4ab947ff703e8c8c6b61d827ce30f86da15b854a09b813105e459eed02af19da22debd25df20759759b8

diff --git a/dev-python/pytest-home/metadata.xml 
b/dev-python/pytest-home/metadata.xml
new file mode 100644
index ..01af36105bbf
--- /dev/null
+++ b/dev-python/pytest-home/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   
+   pyt...@gentoo.org
+   
+   
+   
+   jaraco/pytest-home
+   pytest-home
+   
+

diff --git a/dev-python/pytest-home/pytest-home-0.5.1.ebuild 
b/dev-python/pytest-home/pytest-home-0.5.1.ebuild
new file mode 100644
index ..c410d62a2400
--- /dev/null
+++ b/dev-python/pytest-home/pytest-home-0.5.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Home directory fixtures"
+HOMEPAGE="
+   https://github.com/jaraco/pytest-home/
+   https://pypi.org/project/pytest-home/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/pytest[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: app-admin/pulumi-bin/

2024-02-11 Thread Alexey Zapparov
commit: 973f1f3974e4788e47c89dfdee4c675ed792bbca
Author: Alexey Zapparov  zapparov  com>
AuthorDate: Mon Feb 12 03:52:27 2024 +
Commit: Alexey Zapparov  zapparov  com>
CommitDate: Mon Feb 12 03:52:27 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=973f1f39

app-admin/pulumi-bin: add 3.105.0, drop 3.102.0

Signed-off-by: Alexey Zapparov  zapparov.com>

 app-admin/pulumi-bin/Manifest   | 2 +-
 .../pulumi-bin/{pulumi-bin-3.102.0.ebuild => pulumi-bin-3.105.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/pulumi-bin/Manifest b/app-admin/pulumi-bin/Manifest
index 57c3c6bbc9..9e6784a172 100644
--- a/app-admin/pulumi-bin/Manifest
+++ b/app-admin/pulumi-bin/Manifest
@@ -1,3 +1,3 @@
-DIST pulumi-v3.102.0-linux-x64.tar.gz 154970812 BLAKE2B 
e5aa0fed9961de13aa22c866881fc4baa3065928c1c52ff57a2504bb6f2f081752d4a25fd02c67b6260d06585b1d8f87ff059e2dffdfd07593fbb66fcbbd05df
 SHA512 
140a2e7f4728790e1abb6f97602e3b2f7c812ceb1ba07f1678b688691a047d640ed0710e1b7d9197aea3e61d6cac9ef529f5843487b960b91f7c5d22b9dfca48
 DIST pulumi-v3.103.1-linux-x64.tar.gz 155023148 BLAKE2B 
adac83d1b00a116de7c170f2db81136932fe268d1051ae8439af0daa2b77910278f2f4e6078fccd0b005cfee72bccc3b2171e08ba74ffcd6873aaca52ca16cf5
 SHA512 
310ffe08b6b32f5e5c1387018f667bad3bbfd1325b085d1e3d22eca501625f5c031037e4c0da0637b7f679d9032b82868eb8713f86dd0905f8c4049ae4de3841
 DIST pulumi-v3.104.2-linux-x64.tar.gz 155082196 BLAKE2B 
f446ae9311b9afa8ff123fa787bd2131c656acc5499eb068eb71d4ff9d6672c6919c4fdd56675a5e11b0ec8244bd6891cdc3e76504a69ed12a90a974b3a8e402
 SHA512 
fccc0cb2011f49ef29aabc9992d9b9993fa41c54eeacc8771d77ff3ba058d7993d1771af70c4c189bfecbc344f311824d88dc93625c94d13afe8f054ddb8eb19
+DIST pulumi-v3.105.0-linux-x64.tar.gz 155107676 BLAKE2B 
29e55bdc259f5fe3c7b02b1c309c12aea5b607c43dd426071b5c9e3bf1cd580b03237d8487c0347ef5f181a814e032e0977c6ef6a38cfbd4a3a0f06f4eaa24e8
 SHA512 
c2c0d3572d26e7f9e3243ce07ac6130c60e8986684ad9c49833b814af07fadee4b7b2371427927c5b094719cfd41ea281fd71c866408a44129e7e35b6341ad3c

diff --git a/app-admin/pulumi-bin/pulumi-bin-3.102.0.ebuild 
b/app-admin/pulumi-bin/pulumi-bin-3.105.0.ebuild
similarity index 100%
rename from app-admin/pulumi-bin/pulumi-bin-3.102.0.ebuild
rename to app-admin/pulumi-bin/pulumi-bin-3.105.0.ebuild



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

2024-02-11 Thread John Helmert III
commit: bb992af9d6c86f4a7a60cca4d086851e05092804
Author: John Helmert III  gentoo  org>
AuthorDate: Mon Feb 12 02:26:59 2024 +
Commit: John Helmert III  gentoo  org>
CommitDate: Mon Feb 12 02:26:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb992af9

app-text/ghostscript-gpl: drop 10.01.1

Bug: https://bugs.gentoo.org/910294
Signed-off-by: John Helmert III  gentoo.org>

 app-text/ghostscript-gpl/Manifest  |   1 -
 .../ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild | 190 -
 2 files changed, 191 deletions(-)

diff --git a/app-text/ghostscript-gpl/Manifest 
b/app-text/ghostscript-gpl/Manifest
index e41ab7e7ba16..d13238bda52a 100644
--- a/app-text/ghostscript-gpl/Manifest
+++ b/app-text/ghostscript-gpl/Manifest
@@ -1,4 +1,3 @@
-DIST ghostscript-10.01.1.tar.xz 67567268 BLAKE2B 
26f14f11362c7cd6e129044b8e094ad421fc607a702e1f5d10ae03b8ebfb1e76fc094281df739d6ebfa815c6080f1b2223036268474c41d795e2a1e5fc66bab2
 SHA512 
d944be9e8aef68d1176d64c40db6fa86d55d0c9e30047f2147c02806ab61cfe9ac2cb00d4e5b218ff3c51cc6ed47ceffe1bac4dd9d4cc1760b7974f30c6c2735
 DIST ghostscript-10.01.2.tar.xz 67571808 BLAKE2B 
d5bedfe058a9b982da3a5a9935617add8d963291f135e047369439eeb0b1587e697511fe4a2a9633cfb49594d3a36467d1df7904125f53c70d8161dc9825ff32
 SHA512 
ee20f0e12f553a3d04578e71a0d45defebc71117ce4dc2c14043985bfe7348ad7f8b2fe98fc9b4f5b935ecb32e50dc340be67d6ef58190542ec6d0f9da1de380
 DIST ghostscript-10.02.0.tar.xz 67955320 BLAKE2B 
4715385d6d05567d09a34d625d707507b6acd88cf6e91bae9a5867cc59871164186fef8124eaa56a2a13df8b3f18ef3f9277e6a0aea88b0e5c30a5312037a0be
 SHA512 
c49344151063e915add55a0a842c2a645d8362a5cbca663bd07638f4bd3699a08cade37a9efe905ad5a41e014353e5e1b1268b7925e43128ad30d5b031396b71
 DIST ghostscript-10.02.1.tar.xz 68017088 BLAKE2B 
b491473f0b3d50121e4373e21af3d8cdf55d9ca4390b240c4cb88d0d44e707e32570a7f1f05cb656d1b65443fcd7e37f5eab404d72a20f83d8fd87370a585467
 SHA512 
ee0f754c1bd8a18428ad14eaa3ead80ff8b96275af5012e7a8384f1f10490da056eec9ae3cc791a7a13a24e16e54df5bccdd109c7d53a14534bbd7360a300b11

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild
deleted file mode 100644
index 4a5ade5ae73c..
--- a/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild
+++ /dev/null
@@ -1,190 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic toolchain-funcs
-
-MY_PN=${PN/-gpl}
-MY_P="${MY_PN}-${PV/_}"
-PVM=$(ver_cut 1-2)
-PVM_S=$(ver_rs 1-2 "")
-
-# Use https://gitweb.gentoo.org/proj/codec/ghostscript-gpl-patches.git/ for 
patches
-# See 'index' branch for README
-MY_PATCHSET="ghostscript-gpl-10.0-patches.tar.xz"
-
-DESCRIPTION="Interpreter for the PostScript language and PDF"
-HOMEPAGE="https://ghostscript.com/ 
https://git.ghostscript.com/?p=ghostpdl.git;a=summary;
-SRC_URI="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz;
-if [[ -n "${MY_PATCHSET}" ]] ; then
-   SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${MY_PATCHSET};
-fi
-
-LICENSE="AGPL-3 CPL-1.0"
-SLOT="0/$(ver_cut 1-2)"
-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="cups dbus gtk l10n_de static-libs unicode X"
-
-LANGS="ja ko zh-CN zh-TW"
-for X in ${LANGS} ; do
-   IUSE="${IUSE} l10n_${X}"
-done
-
-DEPEND="app-text/libpaper:=
-   media-libs/fontconfig
-   >=media-libs/freetype-2.4.9:2=
-   >=media-libs/jbig2dec-0.19:=
-   >=media-libs/lcms-2.6:2
-   >=media-libs/libpng-1.6.2:=
-   media-libs/libjpeg-turbo:=
-   >=media-libs/openjpeg-2.1.0:2=
-   >=media-libs/tiff-4.0.1:=
-   >=sys-libs/zlib-1.2.7
-   cups? ( >=net-print/cups-1.3.8 )
-   dbus? ( sys-apps/dbus )
-   gtk? ( x11-libs/gtk+:3 )
-   unicode? ( net-dns/libidn:= )
-   X? ( x11-libs/libXt x11-libs/libXext )"
-BDEPEND="virtual/pkgconfig"
-# bug #844115 for newer poppler-data dep
-RDEPEND="${DEPEND}
-   >=app-text/poppler-data-0.4.11-r2
-   >=media-fonts/urw-fonts-2.4.9
-   l10n_ja? ( media-fonts/kochi-substitute )
-   l10n_ko? ( media-fonts/baekmuk-fonts )
-   l10n_zh-CN? ( media-fonts/arphicfonts )
-   l10n_zh-TW? ( media-fonts/arphicfonts )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   if [[ -n ${MY_PATCHSET} ]] ; then
-   # apply various patches, many borrowed from Fedora
-   # https://src.fedoraproject.org/rpms/ghostscript
-   # and Debian
-   # 
https://salsa.debian.org/printing-team/ghostscript/-/tree/debian/latest/debian/patches
-   eapply "${WORKDIR}"/${MY_PATCHSET%%.tar*}
-   fi
-
-   default
-
-   # Remove internal copies of various libraries
-   rm -r cups/libs || die
-

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

2024-02-11 Thread Craig Andrews
commit: 7cf4c63974dcbb993ff30b7d757371ec3601ee79
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Feb 12 02:03:57 2024 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb 12 02:04:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf4c639

www-apps/lidarr: add 2.1.7.4030

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

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

diff --git a/www-apps/lidarr/Manifest b/www-apps/lidarr/Manifest
index b99c989ca476..2bb68358f967 100644
--- a/www-apps/lidarr/Manifest
+++ b/www-apps/lidarr/Manifest
@@ -4,3 +4,9 @@ DIST Lidarr.develop.2.1.6.3993.linux-core-x64.tar.gz 97908116 
BLAKE2B e5b36c2498
 DIST Lidarr.develop.2.1.6.3993.linux-musl-core-arm.tar.gz 91867261 BLAKE2B 
6018e579affaeef935d4cb9cfd4432b6a2f73397af5d8905d2016d1560f9e5ca0585ac962e779512e19e7f2a30449537be50cf0c2482320b7840c598362060dd
 SHA512 
605147432616189f3b1078271cbdf010fae0ec3f2f1b16bb7153fdb115267c9f80cd6e16a24a360eab2991450bd26d7e7931e29cdf4f2e6a4f37e489172897a9
 DIST Lidarr.develop.2.1.6.3993.linux-musl-core-arm64.tar.gz 91511430 BLAKE2B 
12dfaa2ca5b02e94789fa10247a770ebcf3a9a45d4ff25a6586bfdccaddfaf303846c19e327a3d3833bb38b7e439e4c86c1a760d2862fdeb1dab1d8d0b54d6a7
 SHA512 
3f0a4c47d5f7c8215e70f44e0962f0867f32a463bc7178f6353ac2b5bdf82846f28cc9dddcd1d1ba59741ad50e2f4fa1f428cd6984c34200f612b9608806074d
 DIST Lidarr.develop.2.1.6.3993.linux-musl-core-x64.tar.gz 96986421 BLAKE2B 
213c84a27b51e9a4c2b7d2b27c997643765b16c95d401bbd0f33b7cf70d6ff72a94a0e1ee24beb87fb169c88dd6f470a49249c6a27daa965a3191a75508ac411
 SHA512 
4e91caea3544e5fb507a77abe6ecdd60b47e35ba1477ff09c1945522a5fd7498f880e21827a8818b809a5fd355d06bf45677e6dc3d271a74344e0ef6159d6311
+DIST Lidarr.master.2.1.7.4030.linux-core-arm.tar.gz 91816732 BLAKE2B 
2b9d7c19138d19b93d73390b37b72c0092ca10ad8820e3bcf754a9276187378dc565a9e4863a0e8f220e601b0e691f8432f0a6f46d58d01dd5925b724f02d7dc
 SHA512 
8d7cec53b45547f9e6f4471e480e71bdee01817cc3112fac235fdcc3be524c47714afed7e64945f6f86f1630f50ba1b7726a3d45d3d8a61fbe1aa51fc1a16670
+DIST Lidarr.master.2.1.7.4030.linux-core-arm64.tar.gz 91458998 BLAKE2B 
545b88fe412f4cdecd8883de9e3b8fb771e32cf01219ecff8e2d6da3f72a6a075d977642a57d819a2b3707018152ccf53325bcdb81d1d3ffdaf80c112ee9378f
 SHA512 
46ea960c020f58599099448debbb6227b61857775ad948258494023b995524b59f35d216c43e2196addd423741aa5c8c08629d717f0a9a1022e91f8d7a21f122
+DIST Lidarr.master.2.1.7.4030.linux-core-x64.tar.gz 97938959 BLAKE2B 
b8806f82fcf5878b55cc224932145722011aca6c01b89dcbb19e714a9f12f6643bc0099f156a0081d713103b7fcbec849f73077adeb2cc2ad74c7b67ec50b8a4
 SHA512 
83df2b0bf93dba3825a40ba7be6eeb5a26bc67a4c38fbcf3da3af575b1692239223697c6838581215f3e733f4ced88dd7f8f01b3dc9e18b34518f9fbd2c71e36
+DIST Lidarr.master.2.1.7.4030.linux-musl-core-arm.tar.gz 91892323 BLAKE2B 
c88d66e2b983a232d1f349638aea716250c52f7bca5630ed58aba551f308d79fa340ccce0a41904d105f5de56c82a2bb909e4b8c2b206298b1deb8f5141dce67
 SHA512 
f4fb34becc8cfe451f4319f68592b0d76d8b0e0b78232f840b339a292e448ca985e83e2cab3db11c2b060609cdfdbeb1fcba9950b64045e3ecf03f020422c61d
+DIST Lidarr.master.2.1.7.4030.linux-musl-core-arm64.tar.gz 91520373 BLAKE2B 
6da3f70b0f3b2766e816a53c294d72fa04090608ad3b91258f0ef6121b422d4ef8a5104120fd7798d3bf91873ed11c2fce4e6d574b288ed4d1d1b2c4edcf712c
 SHA512 
93df667a3ce0837c25144ebd717c16f952a7c6811e86f1fb8f2027643acccd17b6520a92d710c5fba3fa59d1cb8143ffc27a7172b724cc071cc1eddad5b04022
+DIST Lidarr.master.2.1.7.4030.linux-musl-core-x64.tar.gz 96993776 BLAKE2B 
aca9a135474996041f9bc84a5f903f7a4edff2572155703981ae40743bcbd85c5059d22c6c388e59baa68f451d29522728c8d7291bbb4bc9aa945dcf06d31448
 SHA512 
82a6b4e3837b8deb5e04c823daeec8dc22ee24fef9137522ba548c70cb4341acb89fb859c1700e79e0dbc699c977512bcd7e339a18dd13d9b762c38b153b6b4b

diff --git a/www-apps/lidarr/lidarr-2.1.7.4030.ebuild 
b/www-apps/lidarr/lidarr-2.1.7.4030.ebuild
new file mode 100644
index ..5d52daf75d3c
--- /dev/null
+++ b/www-apps/lidarr/lidarr-2.1.7.4030.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 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/lidarr/

2024-02-11 Thread Craig Andrews
commit: b1b151a259093085bdcd4ae06d998995328db8a1
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Feb 12 02:04:02 2024 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Feb 12 02:04:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b151a2

www-apps/lidarr: drop 2.1.6.3993

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

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

diff --git a/www-apps/lidarr/Manifest b/www-apps/lidarr/Manifest
index 2bb68358f967..b21fa5e0f4c1 100644
--- a/www-apps/lidarr/Manifest
+++ b/www-apps/lidarr/Manifest
@@ -1,9 +1,3 @@
-DIST Lidarr.develop.2.1.6.3993.linux-core-arm.tar.gz 91799581 BLAKE2B 
57a1943b70ec6b65125c658d7a81c8caf54c1500ec63b180ac96f5153937679757058b8a13ff48a49ff5a130af2f09da73148705209116a20892e51f97cbdf1b
 SHA512 
bc6f2a56db50f9faf719402117402aa5d9344d56e7f40b42e0ff06301aadd51313c06f822de3f4e2bf98177f18da0accee37798d51cb7b1730ff3b65e5db93f1
-DIST Lidarr.develop.2.1.6.3993.linux-core-arm64.tar.gz 91435162 BLAKE2B 
bec3205e334268f7727f64bc238fb01b8b14b8c464931187a071507fd6ca13b4cedd2e8a8c52f2fe9fe5e2f27c16bcc3a522770b62d3369c5fe76ee847a363f7
 SHA512 
26852d87d87f10517d5c7ad2b2046bfc51b95f275db590e54ec7e2553477f69c81e0f2a8f5d7baf74c7b5b6fb167972584a9ee81e82924c4459b331e48b0305d
-DIST Lidarr.develop.2.1.6.3993.linux-core-x64.tar.gz 97908116 BLAKE2B 
e5b36c2498a6c38e27bdb39cd185160035e5c128301ca68c54fff47c17d1ac4a5cb30a382d2a6356010d07d2d4e99c9928884ff4f9959a2ee03453e44b34edaf
 SHA512 
0880dbb8797667e578bbc4a87d3fa9e1337ff3e9b8d9255ebe7c8bd7979af7ac94b0c511009c33413ed6cc5c8147aa75c315ce65582aefe99a35f42db7819b00
-DIST Lidarr.develop.2.1.6.3993.linux-musl-core-arm.tar.gz 91867261 BLAKE2B 
6018e579affaeef935d4cb9cfd4432b6a2f73397af5d8905d2016d1560f9e5ca0585ac962e779512e19e7f2a30449537be50cf0c2482320b7840c598362060dd
 SHA512 
605147432616189f3b1078271cbdf010fae0ec3f2f1b16bb7153fdb115267c9f80cd6e16a24a360eab2991450bd26d7e7931e29cdf4f2e6a4f37e489172897a9
-DIST Lidarr.develop.2.1.6.3993.linux-musl-core-arm64.tar.gz 91511430 BLAKE2B 
12dfaa2ca5b02e94789fa10247a770ebcf3a9a45d4ff25a6586bfdccaddfaf303846c19e327a3d3833bb38b7e439e4c86c1a760d2862fdeb1dab1d8d0b54d6a7
 SHA512 
3f0a4c47d5f7c8215e70f44e0962f0867f32a463bc7178f6353ac2b5bdf82846f28cc9dddcd1d1ba59741ad50e2f4fa1f428cd6984c34200f612b9608806074d
-DIST Lidarr.develop.2.1.6.3993.linux-musl-core-x64.tar.gz 96986421 BLAKE2B 
213c84a27b51e9a4c2b7d2b27c997643765b16c95d401bbd0f33b7cf70d6ff72a94a0e1ee24beb87fb169c88dd6f470a49249c6a27daa965a3191a75508ac411
 SHA512 
4e91caea3544e5fb507a77abe6ecdd60b47e35ba1477ff09c1945522a5fd7498f880e21827a8818b809a5fd355d06bf45677e6dc3d271a74344e0ef6159d6311
 DIST Lidarr.master.2.1.7.4030.linux-core-arm.tar.gz 91816732 BLAKE2B 
2b9d7c19138d19b93d73390b37b72c0092ca10ad8820e3bcf754a9276187378dc565a9e4863a0e8f220e601b0e691f8432f0a6f46d58d01dd5925b724f02d7dc
 SHA512 
8d7cec53b45547f9e6f4471e480e71bdee01817cc3112fac235fdcc3be524c47714afed7e64945f6f86f1630f50ba1b7726a3d45d3d8a61fbe1aa51fc1a16670
 DIST Lidarr.master.2.1.7.4030.linux-core-arm64.tar.gz 91458998 BLAKE2B 
545b88fe412f4cdecd8883de9e3b8fb771e32cf01219ecff8e2d6da3f72a6a075d977642a57d819a2b3707018152ccf53325bcdb81d1d3ffdaf80c112ee9378f
 SHA512 
46ea960c020f58599099448debbb6227b61857775ad948258494023b995524b59f35d216c43e2196addd423741aa5c8c08629d717f0a9a1022e91f8d7a21f122
 DIST Lidarr.master.2.1.7.4030.linux-core-x64.tar.gz 97938959 BLAKE2B 
b8806f82fcf5878b55cc224932145722011aca6c01b89dcbb19e714a9f12f6643bc0099f156a0081d713103b7fcbec849f73077adeb2cc2ad74c7b67ec50b8a4
 SHA512 
83df2b0bf93dba3825a40ba7be6eeb5a26bc67a4c38fbcf3da3af575b1692239223697c6838581215f3e733f4ced88dd7f8f01b3dc9e18b34518f9fbd2c71e36

diff --git a/www-apps/lidarr/lidarr-2.1.6.3993.ebuild 
b/www-apps/lidarr/lidarr-2.1.6.3993.ebuild
deleted file mode 100644
index ada71be57d53..
--- a/www-apps/lidarr/lidarr-2.1.6.3993.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2024 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: sys-kernel/git-sources/

2024-02-11 Thread Mike Pagano
commit: 0290eea8cce41f5202d0dd24e56bb6e82b231b58
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Feb 12 02:01:35 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Feb 12 02:01:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0290eea8

sys-kernel/git-sources: add 6.8_rc4

Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-6.8_rc4.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index b0dd8189cd60..1828a65909b9 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -2,3 +2,4 @@ DIST linux-6.7.tar.xz 141406528 BLAKE2B 
cecdbd19905e43e485ab73b352ced18b37f2a138
 DIST patch-6.8-rc1.patch 43389839 BLAKE2B 
4aeb6c35ea09960930758160df83ad23caef0f1056c1d134ed0b450802b42619ac44fa0e834a8fb64cf8b1e116be2b179b24d2ccd6620206448e0869590b4a40
 SHA512 
41ec6a69f635197ea87eccab9415c2072389cedf8dec912c491740bba6507bb97dc7597b80944a0dbe51e88a806c5f3020e4916d418314bb4126bde0ae50ad28
 DIST patch-6.8-rc2.patch 43792863 BLAKE2B 
7e5c5d3255d79d6318d115948d9994bbf96bd319f20d29ab9554d05ace516f862ef0cc2cb646707cdf91e93f9fd5c93d4263b7251b0b599c6ca0e03ae9ecabda
 SHA512 
1a53a7a47fb146f4bbee0ac9f55bd28a44c0680aaafa78a76215323443e77214790550622a4ec4b338a1dabe6552e5688c68b3592ac313b409794a86fd70c64c
 DIST patch-6.8-rc3.patch 44394710 BLAKE2B 
626c9569dbc8ff077f5dedd8cf01553f0f9261b28407eaa08c4cf502aaf529441bea97c2c6ae1c01654a9b78feb77be32168a4dd082643b079b1c6379222f70e
 SHA512 
255c0700bb24a3aea781c40a96e48a28583f6266940b4127af93e893361fa7e9a9ab5fdd435648de56d9c18bf06ce5a73cd8013a3c3f20c55f470fdeeca4e6b0
+DIST patch-6.8-rc4.patch 44748761 BLAKE2B 
da6da63a288680039ea72412fad9c51cd0dcabcfec0920a1c82b046c6c616c99a7d602fbe99702817a7216ba502edf230707e3724a1b7667cd6530808d5e0f42
 SHA512 
b41bd3e7f74863350feb1213ef132069ba20a84762e7d8228271b7da311411536901dac287c71df8393ce60646f800ad7668b22ffeb9f6cebae15698bf3ddb0c

diff --git a/sys-kernel/git-sources/git-sources-6.8_rc4.ebuild 
b/sys-kernel/git-sources/git-sources-6.8_rc4.ebuild
new file mode 100644
index ..ca760a458b08
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-6.8_rc4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="6.7"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+K_NODRYRUN="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.6-r4"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2024-02-11 Thread Maciej Barć
commit: e9c47a704998905b4b3996d0099695f141065916
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 23:17:20 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:23:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9c47a70

dev-lang/closure-compiler-bin: update metadata; take up maintainership

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/closure-compiler-bin/metadata.xml | 15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/dev-lang/closure-compiler-bin/metadata.xml 
b/dev-lang/closure-compiler-bin/metadata.xml
index 278d93933d15..d510a7025973 100644
--- a/dev-lang/closure-compiler-bin/metadata.xml
+++ b/dev-lang/closure-compiler-bin/metadata.xml
@@ -1,8 +1,21 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
+
 
-  
+  
+x...@gentoo.org
+Maciej Barć
+  
+  
+The Closure Compiler is a tool for making JavaScript download and run
+faster. It is a true compiler for JavaScript. Instead of compiling from a
+source language to machine code, it compiles from JavaScript to better
+JavaScript. It parses your JavaScript, analyzes it, removes dead code and
+rewrites and minimizes what's left. It also checks syntax, variable
+references, and types, and warns about common JavaScript pitfalls.
+  
   
+https://github.com/google/closure-compiler/issues/
 google/closure-compiler
   
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/coffee-script/

2024-02-11 Thread Maciej Barć
commit: d9f43e93472c839f07e6661c5d5bb209c6e1c05a
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 22:59:02 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:22:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f43e93

dev-lang/coffee-script: update metadata.xml; take up maintainership

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/coffee-script/metadata.xml | 22 --
 1 file changed, 16 insertions(+), 6 deletions(-)

diff --git a/dev-lang/coffee-script/metadata.xml 
b/dev-lang/coffee-script/metadata.xml
index 9e11308796b4..e80b9f6c65b7 100644
--- a/dev-lang/coffee-script/metadata.xml
+++ b/dev-lang/coffee-script/metadata.xml
@@ -1,13 +1,23 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
+
 
-  
+  
+x...@gentoo.org
+Maciej Barć
+  
+  
+CoffeeScript is a little language that compiles into JavaScript. Underneath
+that awkward Java-esque patina, JavaScript has always had a gorgeous heart.
+CoffeeScript is an attempt to expose the good parts of JavaScript in a
+simple way. The golden rule of CoffeeScript is: "It's just JavaScript." The
+code compiles one-to-one into the equivalent JS, and there is no
+interpretation at runtime. You can use any existing JavaScript library
+seamlessly from CoffeeScript (and vice-versa). The compiled output is
+readable, pretty-printed, and tends to run as fast or faster than the
+equivalent handwritten JavaScript.
+  
   
 jashkenas/coffeescript
   
-  
-CoffeeScript is a little language that compiles into JavaScript. 
Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous 
heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a 
simple way.
-
-The golden rule of CoffeeScript is: "It's just JavaScript." The code 
compiles one-to-one into the equivalent JS, and there is no interpretation at 
runtime. You can use any existing JavaScript library seamlessly from 
CoffeeScript (and vice-versa). The compiled output is readable, pretty-printed, 
and tends to run as fast or faster than the equivalent handwritten JavaScript.
-  
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/coffee-script/

2024-02-11 Thread Maciej Barć
commit: c949a5ddc4351726450cac22d82a8ad9abb12f8c
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 23:04:32 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:22:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c949a5dd

dev-lang/coffee-script: rename cake -> coffee-cake

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/coffee-script/coffee-script-2.7.0.ebuild | 13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/dev-lang/coffee-script/coffee-script-2.7.0.ebuild 
b/dev-lang/coffee-script/coffee-script-2.7.0.ebuild
index 7dd220bd7837..2f497e582b0f 100644
--- a/dev-lang/coffee-script/coffee-script-2.7.0.ebuild
+++ b/dev-lang/coffee-script/coffee-script-2.7.0.ebuild
@@ -5,6 +5,8 @@ EAPI=8
 
 MY_PN="coffeescript"
 
+inherit readme.gentoo-r1
+
 DESCRIPTION="A little language that compiles into javascript"
 HOMEPAGE="https://coffeescript.org/;
 SRC_URI="https://github.com/jashkenas/${MY_PN}/archive/${PV}.tar.gz
@@ -23,6 +25,9 @@ RDEPEND="
net-libs/nodejs
 "
 
+DOC_CONTENTS="To enable installation alongside other tools the Gentoo
+maintainer decided to rename the \"cake\" executable to \"coffee-cake\"."
+
 src_install() {
local npm_module_dir="/usr/$(get_libdir)/node/${PN}"
 
@@ -50,6 +55,12 @@ src_install() {
exeinto "${npm_module_dir}/bin"
doexe bin/cake
doexe bin/coffee
-   dosym "${npm_module_dir}/bin/cake" "/usr/bin/cake"
+   dosym "${npm_module_dir}/bin/cake" "/usr/bin/coffee-cake"
dosym "${npm_module_dir}/bin/coffee" "/usr/bin/coffee"
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
 }



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

2024-02-11 Thread Maciej Barć
commit: cb7d81f041269df57b8d788c2b101e1542249bbe
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 22:51:14 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 22:51:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7d81f0

dev-lang/esco: update metadata.xml; take up maintainership

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/esco/metadata.xml | 13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-lang/esco/metadata.xml b/dev-lang/esco/metadata.xml
index f158c7cb6609..fbb57e224338 100644
--- a/dev-lang/esco/metadata.xml
+++ b/dev-lang/esco/metadata.xml
@@ -1,8 +1,13 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
+
 
-   
-   
-   esco
-   
+  
+x...@gentoo.org
+Maciej Barć
+  
+  
+https://sourceforge.net/p/esco/bugs/
+esco
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/coffee-script/

2024-02-11 Thread Maciej Barć
commit: 5af8a4ff2244712447547479d08270f8da3d0821
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 22:57:31 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:22:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af8a4ff

dev-lang/coffee-script: bump to 2.7.0

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/coffee-script/Manifest   |  1 +
 dev-lang/coffee-script/coffee-script-2.7.0.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/dev-lang/coffee-script/Manifest b/dev-lang/coffee-script/Manifest
index 95c44ccf2ecf..a196a6a54634 100644
--- a/dev-lang/coffee-script/Manifest
+++ b/dev-lang/coffee-script/Manifest
@@ -1 +1,2 @@
 DIST coffee-script-2.5.1.tar.gz 2226483 BLAKE2B 
5a2c5f93d46b111aeda63077f60992232a768008187ba0e41bec885184f91014620fca5d8e38cfdb5e88de483425d3d95c87779f27d7450de7cbe62b489b
 SHA512 
99f11f0822ffc841552cf6c78a28d152554f070df6d1b729bdd17df8ba6faae6ed2ba9886f7ee13ccb316de698ab8624370287274611fe90bef033d9f76c5865
+DIST coffee-script-2.7.0.tar.gz 2271083 BLAKE2B 
b79f8a3f3edd60b43e4f09c940a6461819199edf9d16dcb7f555a0230c45a9d7c86d2467a3c126e436c23245adaa4c26518dc820c222ce87118217db1ff2c252
 SHA512 
1a3ce93f67c3361ce8c8c182e4a8170b05019b08557c14285ed7ed7620e501717d97a991f0ebb884845811fdc2d5d76ba5fe4a92adebc3a8b3331b483eded5ab

diff --git a/dev-lang/coffee-script/coffee-script-2.7.0.ebuild 
b/dev-lang/coffee-script/coffee-script-2.7.0.ebuild
new file mode 100644
index ..7dd220bd7837
--- /dev/null
+++ b/dev-lang/coffee-script/coffee-script-2.7.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="coffeescript"
+
+DESCRIPTION="A little language that compiles into javascript"
+HOMEPAGE="https://coffeescript.org/;
+SRC_URI="https://github.com/jashkenas/${MY_PN}/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# This package has a test suite (that works), but it requires a number
+# of NodeJS/NPM packages that aren't in the tree.
+IUSE="doc examples"
+
+RDEPEND="
+   net-libs/nodejs
+"
+
+src_install() {
+   local npm_module_dir="/usr/$(get_libdir)/node/${PN}"
+
+   insinto "${npm_module_dir}"
+   doins *.js package.json
+   doins -r lib
+   dodoc CONTRIBUTING.md README.md
+
+   if use examples ; then
+   # Users should be able to run the examples without having to 
copy
+   # them to another directory and decompress them.
+   docompress -x "/usr/share/doc/${PF}/examples"
+   dodoc -r documentation/examples
+   fi
+
+   if use doc ; then
+   # It looks like "docs/v2" contains the output from all of the 
stuff
+   # under "documentation".
+   docinto "html"
+   dodoc -r docs/v2/*
+   fi
+
+   # The coffee and cake "binaries" use a relative path to find the lib
+   # directory, so we have to symlink them rather than use dobin().
+   exeinto "${npm_module_dir}/bin"
+   doexe bin/cake
+   doexe bin/coffee
+   dosym "${npm_module_dir}/bin/cake" "/usr/bin/cake"
+   dosym "${npm_module_dir}/bin/coffee" "/usr/bin/coffee"
+}



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

2024-02-11 Thread Maciej Barć
commit: 5424ae7d183c99806f3361207d4f3ba2bfa6ef71
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 23:14:57 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:23:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5424ae7d

dev-lang/closure-compiler-bin: bump to EAPI 8; tweaks

Signed-off-by: Maciej Barć  gentoo.org>

 ...ild => closure-compiler-bin-20211107-r1.ebuild} | 27 +-
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild 
b/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
similarity index 50%
rename from dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild
rename to dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
index caecdb89ffdd..1790b462aa70 100644
--- a/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107.ebuild
+++ b/dev-lang/closure-compiler-bin/closure-compiler-bin-20211107-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit java-pkg-2
 
@@ -9,16 +9,18 @@ MY_PN="${PN%-bin}"
 MY_P="${MY_PN}-v${PV}"
 
 DESCRIPTION="JavaScript optimizing compiler"
-HOMEPAGE="https://developers.google.com/closure/compiler/ 
https://github.com/google/closure-compiler;
+HOMEPAGE="https://developers.google.com/closure/compiler/
+   https://github.com/google/closure-compiler/;
 
SRC_URI="https://repo1.maven.org/maven2/com/google/javascript/${MY_PN}/v${PV}/${MY_P}.jar;
+S="${WORKDIR}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND=">=virtual/jre-1.8"
-
-S="${WORKDIR}"
+RDEPEND="
+   >=virtual/jre-1.8:*
+"
 
 src_unpack() {
:
@@ -29,10 +31,13 @@ src_compile() {
 }
 
 src_install() {
-   java-pkg_jarinto /opt/${PN}-${SLOT}/lib
-   java-pkg_newjar "${DISTDIR}"/${MY_P}.jar ${PN}.jar
-   java-pkg_dolauncher \
-   ${MY_PN} \
-   --jar /opt/${PN}-${SLOT}/lib/${PN}.jar \
+   java-pkg_jarinto "/opt/${PN}-${SLOT}/lib"
+   java-pkg_newjar "${DISTDIR}/${MY_P}.jar" "${PN}.jar"
+
+   local -a dolauncher_opts=(
+   "${MY_PN}"
+   --jar "/opt/${PN}-${SLOT}/lib/${PN}.jar"
-into /opt
+   )
+   java-pkg_dolauncher "${dolauncher_opts[@]}"
 }



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

2024-02-11 Thread Maciej Barć
commit: e9a14615bd706c927375582edc822f8410828e91
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 23:18:19 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:23:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a14615

dev-lang/closure-compiler-bin: bump to 20231112

Signed-off-by: Maciej Barć  gentoo.org>

 dev-lang/closure-compiler-bin/Manifest |  1 +
 .../closure-compiler-bin-20231112.ebuild   | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-lang/closure-compiler-bin/Manifest 
b/dev-lang/closure-compiler-bin/Manifest
index 6b07424dc362..9700fdf735d6 100644
--- a/dev-lang/closure-compiler-bin/Manifest
+++ b/dev-lang/closure-compiler-bin/Manifest
@@ -1 +1,2 @@
 DIST closure-compiler-v20211107.jar 13141765 BLAKE2B 
0875fe9cc1963383185d387311ca693857c31cd811605a0896b331ebee92a10bda6182dc6d9b9f4e097b68da278764c56237f398e0042f16a30dea04428d6694
 SHA512 
6fda64ba9233874acd910f3579397b957667e0a19dcc9884cd1c5ed6087b5d2ae66093ac43d0381611a3adeb02be59a750c98704bda481be1b30601c8138aeb1
+DIST closure-compiler-v20231112.jar 14084315 BLAKE2B 
e5623c2c306d8c7ddb700778bc2cea9c96967f17d78e4e3dc31e9dcf1debe73ec6ff1b54b1b89f7407add12c3c16ebe4111b397bfca85d695278744db69f
 SHA512 
e07ff9f57cf7672a79bc72fc8d5f447134df3009b72e50b7bbba644ebb6cbc080b3870f0dd7a47aa85a0b7d1b2e26bbeb0b4d057864e3d29fb5249c1ec8e3e13

diff --git a/dev-lang/closure-compiler-bin/closure-compiler-bin-20231112.ebuild 
b/dev-lang/closure-compiler-bin/closure-compiler-bin-20231112.ebuild
new file mode 100644
index ..1790b462aa70
--- /dev/null
+++ b/dev-lang/closure-compiler-bin/closure-compiler-bin-20231112.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit java-pkg-2
+
+MY_PN="${PN%-bin}"
+MY_P="${MY_PN}-v${PV}"
+
+DESCRIPTION="JavaScript optimizing compiler"
+HOMEPAGE="https://developers.google.com/closure/compiler/
+   https://github.com/google/closure-compiler/;
+SRC_URI="https://repo1.maven.org/maven2/com/google/javascript/${MY_PN}/v${PV}/${MY_P}.jar;
+S="${WORKDIR}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=virtual/jre-1.8:*
+"
+
+src_unpack() {
+   :
+}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   java-pkg_jarinto "/opt/${PN}-${SLOT}/lib"
+   java-pkg_newjar "${DISTDIR}/${MY_P}.jar" "${PN}.jar"
+
+   local -a dolauncher_opts=(
+   "${MY_PN}"
+   --jar "/opt/${PN}-${SLOT}/lib/${PN}.jar"
+   -into /opt
+   )
+   java-pkg_dolauncher "${dolauncher_opts[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/cake/

2024-02-11 Thread Maciej Barć
commit: af57b379f36253ae7e80ae83d8016d551eb0f119
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Feb 11 23:06:21 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Feb 11 23:23:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af57b379

dev-dotnet/cake: block only coffee-script 2.5.1 and lower

Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/cake/{cake-4.0.0.ebuild => cake-4.0.0-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-dotnet/cake/cake-4.0.0.ebuild 
b/dev-dotnet/cake/cake-4.0.0-r1.ebuild
similarity index 99%
rename from dev-dotnet/cake/cake-4.0.0.ebuild
rename to dev-dotnet/cake/cake-4.0.0-r1.ebuild
index 555e38e33a6c..159530ab6cbf 100644
--- a/dev-dotnet/cake/cake-4.0.0.ebuild
+++ b/dev-dotnet/cake/cake-4.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -211,7 +211,7 @@ SLOT="0"
 
 # Collision with dev-lang/coffee, file: cake, bug 
https://bugs.gentoo.org/914496
 RDEPEND="
-   !dev-lang/coffee-script
+   !<=dev-lang/coffee-script-2.5.1
 "
 
 PATCHES=(



[gentoo-commits] repo/proj/guru:dev commit in: net-p2p/dogecoin-qt/

2024-02-11 Thread Victor Skovorodnikov
commit: cf3ffb646d22c6d6a13173c47ee9145487fc90ba
Author: Victor Skovorodnikov  yandex  com>
AuthorDate: Sun Feb 11 23:28:24 2024 +
Commit: Victor Skovorodnikov  yandex  com>
CommitDate: Sun Feb 11 23:41:02 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf3ffb64

net-p2p/dogecoin-qt: intel-ipsec-mb by atom value

- Make cpu_flags_x86_avx2 use specific =app-crypt/intel-ipsec-mb-1.3
  atom because version 1.5 doesn't seem to compile with or without a patch.

Signed-off-by: Victor Skovorodnikov  yandex.com>

 net-p2p/dogecoin-qt/dogecoin-qt-1.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/dogecoin-qt/dogecoin-qt-1.14.6.ebuild 
b/net-p2p/dogecoin-qt/dogecoin-qt-1.14.6.ebuild
index 4d8d5a6a4e..5eb4043566 100644
--- a/net-p2p/dogecoin-qt/dogecoin-qt-1.14.6.ebuild
+++ b/net-p2p/dogecoin-qt/dogecoin-qt-1.14.6.ebuild
@@ -30,7 +30,7 @@ DEPEND="
dev-qt/qtnetwork
dev-qt/qtprintsupport
dev-qt/linguist-tools:=
-   cpu_flags_x86_avx2? ( app-crypt/intel-ipsec-mb )
+   cpu_flags_x86_avx2? ( =app-crypt/intel-ipsec-mb-1.3 )
wallet? ( media-gfx/qrencode )
zmq? ( net-libs/cppzmq )
 "



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

2024-02-11 Thread James Le Cuirot
commit: acb8aca793e6677bb5837991f7abaddad87e9467
Author: Karl-Johan Karlsson  ferretporn  se>
AuthorDate: Sun Feb 11 21:28:40 2024 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Feb 11 22:36:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb8aca7

www-apps/tt-rss: Mark  as compatible with PHP 8.3

Upstream has recommended PHP 8.3 for two months:
https://git.tt-rss.org/fox/tt-rss.git/commit/?id=7883f024e7f0c2262256be310044c7ceb2ff3247

Signed-off-by: Karl-Johan Karlsson  ferretporn.se>
Closes: https://github.com/gentoo/gentoo/pull/35282
Signed-off-by: James Le Cuirot  gentoo.org>

 www-apps/tt-rss/tt-rss-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/tt-rss/tt-rss-.ebuild 
b/www-apps/tt-rss/tt-rss-.ebuild
index 672d457b7504..3ea3d6a0a40a 100644
--- a/www-apps/tt-rss/tt-rss-.ebuild
+++ b/www-apps/tt-rss/tt-rss-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ SLOT="${PV}" # Single live slot.
 IUSE="+acl daemon gd +mysqli postgres"
 REQUIRED_USE="|| ( mysqli postgres )"
 
-PHP_SLOTS="8.2 8.1"
+PHP_SLOTS="8.3 8.2 8.1"
 PHP_USE="gd?,mysqli?,postgres?,curl,fileinfo,intl,json(+),pdo,unicode,xml"
 
 php_rdepend() {



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

2024-02-11 Thread Andreas Sturmlechner
commit: ac6f0bbb8e9510d113126afd3eebf52645dbb354
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:58 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:58 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ac6f0bbb

kde-plasma/libplasma: drop 5.115.0

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

 kde-plasma/libplasma/libplasma-5.115.0.ebuild | 76 ---
 1 file changed, 76 deletions(-)

diff --git a/kde-plasma/libplasma/libplasma-5.115.0.ebuild 
b/kde-plasma/libplasma/libplasma-5.115.0.ebuild
deleted file mode 100644
index 987b3ba756..00
--- a/kde-plasma/libplasma/libplasma-5.115.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_NONGUI="true"
-ECM_QTHELP="true"
-ECM_TEST="true"
-KDE_ORG_TAR_PN="plasma-framework"
-KFMIN=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Plasma library and runtime components based upon KF5 and Qt5"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="gles2-only kf6compat man wayland"
-
-RESTRICT="test"
-
-# kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras
-COMMON_DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5[gles2-only=,X]
-   >=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=dev-qt/qtsql-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   =kde-frameworks/karchive-${KFMIN}*:5
-   =kde-frameworks/kconfig-${KFMIN}*:5[qml]
-   =kde-frameworks/kconfigwidgets-${KFMIN}*:5
-   =kde-frameworks/kcoreaddons-${KFMIN}*:5
-   =kde-frameworks/kdeclarative-${KFMIN}*:5
-   =kde-frameworks/kglobalaccel-${KFMIN}*:5
-   =kde-frameworks/kguiaddons-${KFMIN}*:5
-   =kde-frameworks/ki18n-${KFMIN}*:5
-   =kde-frameworks/kiconthemes-${KFMIN}*:5
-   =kde-frameworks/kio-${KFMIN}*:5
-   =kde-frameworks/kirigami-${KFMIN}*:5
-   =kde-frameworks/knotifications-${KFMIN}*:5
-   =kde-frameworks/kpackage-${KFMIN}*:5
-   =kde-frameworks/kservice-${KFMIN}*:5
-   =kde-frameworks/kwidgetsaddons-${KFMIN}*:5
-   =kde-frameworks/kwindowsystem-${KFMIN}*:5[X]
-   =kde-frameworks/kxmlgui-${KFMIN}*:5
-   =kde-plasma/plasma-activities-${KFMIN}*:5
-   x11-libs/libX11
-   x11-libs/libxcb
-   !gles2-only? ( media-libs/libglvnd[X] )
-   wayland? (
-   =kde-plasma/kwayland-${KFMIN}*:5
-   media-libs/libglvnd
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   x11-base/xorg-proto
-"
-RDEPEND="${COMMON_DEPEND}
-   kf6compat? ( kde-plasma/libplasma:6 )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${KFMIN}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_DESKTOPTHEMES=$(usex !kf6compat)
-   $(cmake_use_find_package !gles2-only OpenGL)
-   $(cmake_use_find_package man KF5DocTools)
-   $(cmake_use_find_package wayland EGL)
-   $(cmake_use_find_package wayland KF5Wayland)
-   )
-
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 7db2c77f7fdb430cd8e8290ab98a15622ec770b0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:01 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:01 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7db2c77f

kde-plasma/plasma-activities-stats: drop 5.115.0

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

 .../plasma-activities-stats-5.115.0.ebuild | 28 --
 1 file changed, 28 deletions(-)

diff --git 
a/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.115.0.ebuild 
b/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.115.0.ebuild
deleted file mode 100644
index 34d3ee318a..00
--- a/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.115.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_NONGUI="true"
-ECM_QTHELP="true"
-ECM_TEST="true"
-KDE_ORG_TAR_PN="kactivities-stats"
-KFMIN=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Library for accessing usage data collected by the activities 
system"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtsql-${QTMIN}:5
-   =kde-frameworks/kconfig-${KFMIN}*:5
-   =kde-plasma/plasma-activities-${KFMIN}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/boost )
-"



[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/.kde-frameworks-5-5.114/, ...

2024-02-11 Thread Andreas Sturmlechner
commit: 9e82cb843d43f99be79816a8132537177c35d19f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:12:51 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:12:51 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9e82cb84

Documentation: Drop KDE Frameworks 5.114

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

 Documentation/maintainers/regenerate-files |  2 +-
 .../.kde-frameworks-5-5.114/_HEADER_   |  2 -
 .../.kde-frameworks-5-5.114/kde-frameworks-5-5.114 |  1 -
 .../kde-frameworks-5-portingaids-5.114 |  1 -
 .../kde-frameworks-5-tier1-5.114   |  1 -
 .../kde-frameworks-5-tier2-5.114   |  1 -
 .../kde-frameworks-5-tier3-5.114   |  1 -
 .../.kde-frameworks-5-5.114/more-deps  |  0
 .../kde-frameworks-5.114.keywords  | 88 --
 Documentation/package.mask/kde-frameworks-5.114| 88 --
 .../.kde-frameworks-5-5.114/_HEADER_   |  2 -
 .../.kde-frameworks-5-5.114/kde-frameworks-5-5.114 |  1 -
 .../kde-frameworks-5-portingaids-5.114 |  1 -
 .../kde-frameworks-5-tier1-5.114   |  1 -
 .../kde-frameworks-5-tier2-5.114   |  1 -
 .../kde-frameworks-5-tier3-5.114   |  1 -
 Documentation/package.unmask/kde-frameworks-5.114  | 88 --
 17 files changed, 1 insertion(+), 279 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 9b787c36b4..be5edecbfa 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -9,7 +9,7 @@ cd "$(dirname $0)"
 SCRIPT=$(basename $0)
 HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 
-KF5_RELEASES="5.113 5.114 5.115"
+KF5_RELEASES="5.113 5.115"
 KF5_RELEASE=${KF5_RELEASE:-5.113}
 
 KF6_RELEASES="5.249"

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/_HEADER_
deleted file mode 100644
index 88d2e82398..00
--- a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/_HEADER_
+++ /dev/null
@@ -1,2 +0,0 @@
-# You can use this file to keyword/unkeyword the KDE Frameworks 5 5.114 
release.
-# Edit Documentation/package.accept_keywords/.kde-frameworks-5-5.114/ files 
instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-5.114
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-5.114
deleted file mode 12
index 519c785b68..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-5.114
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5-5.114
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-portingaids-5.114
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-portingaids-5.114
deleted file mode 12
index ede9755376..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-portingaids-5.114
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5-portingaids-5.114
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier1-5.114
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier1-5.114
deleted file mode 12
index afa753f48d..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier1-5.114
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5-tier1-5.114
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier2-5.114
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier2-5.114
deleted file mode 12
index 1184c02e32..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier2-5.114
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5-tier2-5.114
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier3-5.114
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier3-5.114
deleted file mode 12
index c84fd2dec6..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/kde-frameworks-5-tier3-5.114
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5-tier3-5.114
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5-5.114/more-deps
deleted file mode 100644
index e69de29bb2..00

diff --git 

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

2024-02-11 Thread Andreas Sturmlechner
commit: 9847a4ae9c735d4203a0e3195f82560d9fde8d3f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:13:48 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:13:48 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9847a4ae

sets: Drop KDE Frameworks 5.114

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

 sets/kde-frameworks-5-5.114 |  6 --
 sets/kde-frameworks-5-portingaids-5.114 |  6 --
 sets/kde-frameworks-5-tier1-5.114   | 34 -
 sets/kde-frameworks-5-tier2-5.114   | 16 
 sets/kde-frameworks-5-tier3-5.114   | 27 --
 5 files changed, 89 deletions(-)

diff --git a/sets/kde-frameworks-5-5.114 b/sets/kde-frameworks-5-5.114
deleted file mode 100644
index 4ffcb2a72d..00
--- a/sets/kde-frameworks-5-5.114
+++ /dev/null
@@ -1,6 +0,0 @@
-@kde-frameworks-5-tier1-5.114
-@kde-frameworks-5-tier2-5.114
-@kde-frameworks-5-tier3-5.114
-# Tier 4: Provide extra features to other Frameworks to integrate with Plasma.
-

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

2024-02-11 Thread Andreas Sturmlechner
commit: 3fdf63c5c2887b935212b53d37f61b82cce14792
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:11 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:11 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3fdf63c5

kde-frameworks/kjs: drop 5.115.0

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

 kde-frameworks/kjs/kjs-5.115.0.ebuild | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/kde-frameworks/kjs/kjs-5.115.0.ebuild 
b/kde-frameworks/kjs/kjs-5.115.0.ebuild
deleted file mode 100644
index 3bcb125eec..00
--- a/kde-frameworks/kjs/kjs-5.115.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-ECM_QTHELP="false"
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="ECMAScipt compatible parser and engine"
-LICENSE="BSD-2 LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-BDEPEND="
-   dev-lang/perl
-"
-DEPEND="
-   dev-libs/libpcre
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( src/README )



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

2024-02-11 Thread Andreas Sturmlechner
commit: 32036850c3216b87d9387a56ff1c1d920f1ffd90
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:04 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:04 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=32036850

kde-frameworks/countryflags: drop 5.115.0

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

 .../countryflags/countryflags-5.115.0.ebuild   | 22 --
 1 file changed, 22 deletions(-)

diff --git a/kde-frameworks/countryflags/countryflags-5.115.0.ebuild 
b/kde-frameworks/countryflags/countryflags-5.115.0.ebuild
deleted file mode 100644
index 3183757e4c..00
--- a/kde-frameworks/countryflags/countryflags-5.115.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-KDE_ORG_NAME="kdelibs4support"
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Icons of flags for various countries"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-
-CMAKE_USE_DIR="${S}/src/l10n"
-
-# https://phabricator.kde.org/T13722
-# https://invent.kde.org/frameworks/breeze-icons/-/issues/1
-PATCHES=( "${FILESDIR}/${PN}-5.90.0-standalone.patch" )
-
-RDEPEND="!

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

2024-02-11 Thread Andreas Sturmlechner
commit: fe29fa6acaaffd4d6b8513bb8d070155a75c27c3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:14 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:14 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fe29fa6a

kde-frameworks/kross: drop 5.115.0

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

 kde-frameworks/kross/kross-5.115.0.ebuild | 33 ---
 1 file changed, 33 deletions(-)

diff --git a/kde-frameworks/kross/kross-5.115.0.ebuild 
b/kde-frameworks/kross/kross-5.115.0.ebuild
deleted file mode 100644
index a0a8979ffc..00
--- a/kde-frameworks/kross/kross-5.115.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for embedding scripting into applications"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtscript-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   >=dev-qt/designer-${QTMIN}:5
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: f146e5b67c070fa295e65b5174a67b7127c9cf06
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:09 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:09 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f146e5b6

kde-frameworks/khtml: drop 5.115.0

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

 kde-frameworks/khtml/khtml-5.115.0.ebuild | 73 ---
 1 file changed, 73 deletions(-)

diff --git a/kde-frameworks/khtml/khtml-5.115.0.ebuild 
b/kde-frameworks/khtml/khtml-5.115.0.ebuild
deleted file mode 100644
index 2e0da0ec16..00
--- a/kde-frameworks/khtml/khtml-5.115.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm flag-o-matic frameworks.kde.org
-
-DESCRIPTION="KHTML web rendering engine"
-
-LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="X"
-
-RDEPEND="
-   dev-libs/openssl:0
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kjs-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kwallet-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   media-libs/giflib:=
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:0=
-   >=media-libs/phonon-4.11.0[qt5(+)]
-   sys-libs/zlib
-   X? (
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   x11-libs/libX11
-   )
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
-   X? ( x11-base/xorg-proto )
-"
-BDEPEND="
-   dev-lang/perl
-   dev-util/gperf
-"
-
-src_configure() {
-   filter-lto # bug 921686
-
-   local mycmakeargs=(
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: e95e8825004dbf47061a45821396de10f57ac772
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:29 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:29 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e95e8825

kde-frameworks/knewstuff: drop 5.115.0

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

 kde-frameworks/knewstuff/knewstuff-5.115.0.ebuild | 49 ---
 1 file changed, 49 deletions(-)

diff --git a/kde-frameworks/knewstuff/knewstuff-5.115.0.ebuild 
b/kde-frameworks/knewstuff/knewstuff-5.115.0.ebuild
deleted file mode 100644
index 84ef283464..00
--- a/kde-frameworks/knewstuff/knewstuff-5.115.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for downloading and sharing additional application data"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="opds"
-
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/attica-${PVCUT}*:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kpackage-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   opds? ( =kde-frameworks/syndication-${PVCUT}*:5 )
-"
-RDEPEND="${DEPEND}
-   >=kde-frameworks/kirigami-${PVCUT}:5
-"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package opds KF5Syndication)
-   )
-
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: ac5b817081b027e6ee5439962b943c6fd7762254
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:06 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:10:06 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ac5b8170

kde-frameworks/kdelibs4support: drop 5.115.0

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

 .../kdelibs4support/kdelibs4support-5.115.0.ebuild | 106 -
 1 file changed, 106 deletions(-)

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-5.115.0.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-5.115.0.ebuild
deleted file mode 100644
index cd5a6b4035..00
--- a/kde-frameworks/kdelibs4support/kdelibs4support-5.115.0.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="true"
-ECM_HANDBOOK_DIR="docs"
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework easing the development transition from KDELibs 4 to KF 
5"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="networkmanager X"
-
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-text/docbook-xml-dtd:4.2
-   dev-libs/openssl:0
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qttest-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   >=kde-frameworks/kded-${PVCUT}:5
-   =kde-frameworks/kdoctools-${PVCUT}*:5
-   =kde-frameworks/kemoticons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5[X?]
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kunitconversion-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/solid-${PVCUT}*:5
-   virtual/libintl
-   networkmanager? ( net-misc/networkmanager )
-   X? (
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libxcb
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
-   X? ( x11-base/xorg-proto )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/countryflags-${PVCUT}:5
-   =kde-frameworks/kinit-${PVCUT}*:5
-   =kde-frameworks/kitemmodels-${PVCUT}*:5
-"
-BDEPEND="
-   dev-lang/perl
-   dev-perl/URI
-"
-
-PATCHES=(
-   # downstream patches
-   "${FILESDIR}/${PN}-5.80.0-no-kdesignerplugin.patch" # bug 755956
-   "${FILESDIR}/${PN}-5.86.0-unused-dep.patch" # bug 755956
-)
-
-src_prepare() {
-   ecm_src_prepare
-
-   if ! use handbook; then
-   sed -e "/kdoctools_install/ s/^/#DONT/" -i CMakeLists.txt || die
-   fi
-
-   cmake_run_in src cmake_comment_add_subdirectory l10n
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_X11=$(usex X)
-   $(cmake_use_find_package networkmanager NetworkManager)
-   )
-
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 0551cf50dc1f5de227baf5c45ba71703f26c4ee4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:45 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:45 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0551cf50

kde-frameworks/ktextwidgets: drop 5.115.0

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

 .../ktextwidgets/ktextwidgets-5.115.0.ebuild   | 37 --
 1 file changed, 37 deletions(-)

diff --git a/kde-frameworks/ktextwidgets/ktextwidgets-5.115.0.ebuild 
b/kde-frameworks/ktextwidgets/ktextwidgets-5.115.0.ebuild
deleted file mode 100644
index bcdf8f6f15..00
--- a/kde-frameworks/ktextwidgets/ktextwidgets-5.115.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing an assortment of widgets for displaying and 
editing text"
-LICENSE="LGPL-2+ LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="speech"
-
-DEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   speech? ( >=dev-qt/qtspeech-${QTMIN}:5 )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package speech Qt5TextToSpeech)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] proj/kde:master commit in: kde-frameworks/qqc2-desktop-style/

2024-02-11 Thread Andreas Sturmlechner
commit: 639b8950dc7cec76ee5ed7ca91e256e25a09d85c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:55 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:55 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=639b8950

kde-frameworks/qqc2-desktop-style: drop 5.115.0

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

 .../qqc2-desktop-style-5.115.0.ebuild  | 31 --
 1 file changed, 31 deletions(-)

diff --git 
a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.115.0.ebuild 
b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.115.0.ebuild
deleted file mode 100644
index fe66ca24b1..00
--- a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.115.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Style for QtQuickControls 2 that uses QWidget's QStyle for 
painting"
-
-LICENSE="|| ( GPL-2+ LGPL-3+ )"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5=
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kirigami-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5[qml]
-"
-RDEPEND="${DEPEND}
-   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: 5be3c654955d30480ad87c482c57d5fe157b0d6f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:53 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:53 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5be3c654

kde-frameworks/purpose: drop 5.115.0

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

 kde-frameworks/purpose/purpose-5.115.0.ebuild | 91 ---
 1 file changed, 91 deletions(-)

diff --git a/kde-frameworks/purpose/purpose-5.115.0.ebuild 
b/kde-frameworks/purpose/purpose-5.115.0.ebuild
deleted file mode 100644
index 5445486304..00
--- a/kde-frameworks/purpose/purpose-5.115.0.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="forceoptional"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org optfeature xdg-utils
-
-DESCRIPTION="Library for providing abstractions to get the developer's 
purposes fulfilled"
-LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="bluetooth kaccounts kf6compat"
-
-# requires running environment
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kirigami-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/prison-${PVCUT}*:5
-   kaccounts? (
-   || (
-   kde-apps/kaccounts-integration:6[qt5]
-   kde-apps/kaccounts-integration:5
-   )
-   >=net-libs/accounts-qt-1.16_p20220803[qt5(-)]
-   )
-"
-RDEPEND="${DEPEND}
-   kf6compat? ( kde-frameworks/purpose:6[kaccounts?] )
-   >=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   >=kde-frameworks/kdeclarative-${PVCUT}:5
-   bluetooth? ( =kde-frameworks/bluez-qt-${PVCUT}*:5 )
-   kaccounts? ( >=net-libs/accounts-qml-0.7_p20231028[qt5(-)] )
-"
-BDEPEND="kaccounts? ( dev-util/intltool )"
-
-src_prepare() {
-   ecm_src_prepare
-
-   use bluetooth ||
-   cmake_run_in src/plugins cmake_comment_add_subdirectory 
bluetooth
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package kaccounts KAccounts)
-   )
-
-   ecm_src_configure
-}
-
-src_install() {
-   ecm_src_install
-
-   if use kf6compat; then
-   rm 
"${D}"/usr/share/icons/hicolor/128x128/apps/{reviewboard,phabricator}-purpose.png
 \
-   
"${D}"/usr/share/icons/hicolor/16x16/apps/{reviewboard,phabricator}-purpose.png 
\
-   || die
-   if use kaccounts; then
-   rm 
"${D}"/usr/share/accounts/services/kde/{google-youtube,nextcloud-upload}.service
 \
-   || die
-   fi
-   fi
-}
-
-pkg_postinst() {
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   optfeature "Send through KDE Connect" kde-misc/kdeconnect
-   fi
-   ecm_pkg_postinst
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 75ce763a1e7fcab189a718860346db7604e4580d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:34 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:34 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=75ce763a

kde-frameworks/kparts: drop 5.115.0

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

 kde-frameworks/kparts/kparts-5.115.0.ebuild | 32 -
 1 file changed, 32 deletions(-)

diff --git a/kde-frameworks/kparts/kparts-5.115.0.ebuild 
b/kde-frameworks/kparts/kparts-5.115.0.ebuild
deleted file mode 100644
index fdded8abb0..00
--- a/kde-frameworks/kparts/kparts-5.115.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing elaborate user-interface components"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   >=kde-frameworks/ktextwidgets-${PVCUT}:5
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: 18deb9da4a101d9229896c9624be0f4b79bbf9da
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:47 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:47 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=18deb9da

kde-frameworks/kwallet: drop 5.115.0

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

 kde-frameworks/kwallet/kwallet-5.115.0.ebuild | 60 ---
 1 file changed, 60 deletions(-)

diff --git a/kde-frameworks/kwallet/kwallet-5.115.0.ebuild 
b/kde-frameworks/kwallet/kwallet-5.115.0.ebuild
deleted file mode 100644
index 422b94f04d..00
--- a/kde-frameworks/kwallet/kwallet-5.115.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org optfeature
-
-DESCRIPTION="Framework providing desktop-wide storage for passwords"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="gpg kf6compat +man"
-
-DEPEND="
-   >=app-crypt/qca-2.3.1:2[qt5(+)]
-   dev-libs/libgcrypt:0=
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X]
-   !kf6compat? ( gpg? ( >=app-crypt/gpgme-1.7.1:=[cxx,qt5] ) )
-"
-RDEPEND="${DEPEND}
-   kf6compat? ( kde-frameworks/kwallet:6 )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_KWALLETD=$(usex !kf6compat)
-   -DBUILD_KWALLET_QUERY=$(usex !kf6compat)
-   $(cmake_use_find_package man KF5DocTools)
-   )
-   if ! use kf6compat; then
-   mycmakeargs+=(
-   $(cmake_use_find_package gpg Gpgmepp)
-   )
-   fi
-
-   ecm_src_configure
-}
-
-pkg_postinst() {
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   optfeature "Auto-unlocking after account login" 
"kde-plasma/kwallet-pam:5"
-   optfeature "KWallet management" "kde-apps/kwalletmanager:5"
-   elog "For more information, read 
https://wiki.gentoo.org/wiki/KDE#KWallet;
-   fi
-   ecm_pkg_postinst
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 18e1cf31d566e16e5ec36f8f31fc1707bd7ae0f9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:50 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:50 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=18e1cf31

kde-frameworks/kxmlgui: drop 5.115.0

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

 kde-frameworks/kxmlgui/kxmlgui-5.115.0.ebuild | 45 ---
 1 file changed, 45 deletions(-)

diff --git a/kde-frameworks/kxmlgui/kxmlgui-5.115.0.ebuild 
b/kde-frameworks/kxmlgui/kxmlgui-5.115.0.ebuild
deleted file mode 100644
index 63d293e2d2..00
--- a/kde-frameworks/kxmlgui/kxmlgui-5.115.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for managing menu and toolbar actions in an abstract 
way"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-LICENSE="LGPL-2+"
-IUSE=""
-
-# slot op: includes QtCore/private/qlocale_p.h
-DEPEND="
-   >=dev-qt/qtcore-${QTMIN}:5=
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"
-
-CMAKE_SKIP_TESTS=(
-   # bug 668198: files are missing; whatever.
-   ktoolbar_unittest
-   # bug 650290
-   kxmlgui_unittest
-   # bug 808216
-   ktooltiphelper_unittest
-)



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

2024-02-11 Thread Andreas Sturmlechner
commit: ee59de0aa425fb351c16ad02e10362bed74cc051
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:39 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:39 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ee59de0a

kde-frameworks/kservice: drop 5.115.0

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

 kde-frameworks/kservice/kservice-5.115.0.ebuild | 50 -
 1 file changed, 50 deletions(-)

diff --git a/kde-frameworks/kservice/kservice-5.115.0.ebuild 
b/kde-frameworks/kservice/kservice-5.115.0.ebuild
deleted file mode 100644
index 294e9bc355..00
--- a/kde-frameworks/kservice/kservice-5.115.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Advanced plugin and service introspection"
-
-LICENSE="LGPL-2 LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+man"
-
-# requires running kde environment
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
-"
-BDEPEND="
-   app-alternatives/lex
-   app-alternatives/yacc
-   man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DAPPLICATIONS_MENU_NAME=kf5-applications.menu
-   $(cmake_use_find_package man KF5DocTools)
-   )
-
-   ecm_src_configure
-}
-
-src_install() {
-   ecm_src_install
-
-   # bug 596316
-   dosym kf5-applications.menu /etc/xdg/menus/applications.menu
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 20cd9d3953256709882181e32d7db25786ffcb0d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:32 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:32 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=20cd9d39

kde-frameworks/knotifyconfig: drop 5.115.0

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

 .../knotifyconfig/knotifyconfig-5.115.0.ebuild | 34 --
 1 file changed, 34 deletions(-)

diff --git a/kde-frameworks/knotifyconfig/knotifyconfig-5.115.0.ebuild 
b/kde-frameworks/knotifyconfig/knotifyconfig-5.115.0.ebuild
deleted file mode 100644
index e2c520666f..00
--- a/kde-frameworks/knotifyconfig/knotifyconfig-5.115.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for configuring desktop notifications"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="phonon"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   !phonon? ( media-libs/libcanberra )
-   phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package !phonon Canberra)
-   )
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 08ff6fd7c9c7a93a05d70b93a89c1a7ad82054bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:42 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:42 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=08ff6fd7

kde-frameworks/ktexteditor: drop 5.115.0

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

 .../ktexteditor/ktexteditor-5.115.0.ebuild | 54 --
 1 file changed, 54 deletions(-)

diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.115.0.ebuild 
b/kde-frameworks/ktexteditor/ktexteditor-5.115.0.ebuild
deleted file mode 100644
index 6fc196ea74..00
--- a/kde-frameworks/ktexteditor/ktexteditor-5.115.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing a full text editor component"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+editorconfig"
-
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   =kde-frameworks/syntax-highlighting-${PVCUT}*:5
-   editorconfig? ( app-text/editorconfig-core-c )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( >=kde-frameworks/kservice-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package editorconfig EditorConfig)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/qqc2-desktop-style/

2024-02-11 Thread Andreas Sturmlechner
commit: 962ebf34f5e10bf6222c568bb35b7af8e16e7f4f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:55 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962ebf34

kde-frameworks/qqc2-desktop-style: drop 5.114.0

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

 kde-frameworks/qqc2-desktop-style/Manifest |  1 -
 .../qqc2-desktop-style-5.114.0.ebuild  | 31 --
 2 files changed, 32 deletions(-)

diff --git a/kde-frameworks/qqc2-desktop-style/Manifest 
b/kde-frameworks/qqc2-desktop-style/Manifest
index a640c18b5050..14b402c60fd0 100644
--- a/kde-frameworks/qqc2-desktop-style/Manifest
+++ b/kde-frameworks/qqc2-desktop-style/Manifest
@@ -1,4 +1,3 @@
 DIST qqc2-desktop-style-5.113.0.tar.xz 69468 BLAKE2B 
cb0c3d44dd1d0dc03c98f19ce61a73bd53b8b99cb48e7a5a2982e192d3c3a6d10aa36994209683dfc9fdb5649449845740b23a2d17c30cd4be78c0de198b4bf8
 SHA512 
25e2b28b0c507a27787a4c46d79ee629cadda2c9e78ce9c2714b2411e9513a08bfbb8047d4adfaa255ae59d1bbd4a56f5d03b210a6107de3f5eb3f9f89dc85ca
-DIST qqc2-desktop-style-5.114.0.tar.xz 69452 BLAKE2B 
64092f0069708a46b9498935fd1558229e82cabe122b8baf2bb1b37bb57b207163a787b441a5e0beb2e4f7c71767ee4e5e6395017e472757b6ff3dfe31e5ca0a
 SHA512 
1a6055b314d44f903e3135966f70170b4a3e976323d1c59f114529e3e8630310752a19ef2a898bbb02a7d05093117e72cd0412e86c7c6671470a705c13f85e8c
 DIST qqc2-desktop-style-5.115.0.tar.xz 69448 BLAKE2B 
1164f0a3a3868de02e82d94beaf65c13aab6b28a1945f5b8d539cd2bc7a2a692d96762f007bacb8e542275d7f049d38956a440a6fed1ad07040b19d9cd298a17
 SHA512 
79d3395e687f7e5117997639f05a5358a13dc9f343ce3a007b3d64d1a5a470caa03a8e3d0e11b66ec394d8e1cc1817aea1d337477d741295dac48fec83a9914b
 DIST qqc2-desktop-style-5.249.0.tar.xz 78240 BLAKE2B 
d84bb1b96ce28d672b06d674cb5a2bca37fa3c80ed10b4fc593a6c04c92c0f0d5c0d905f3596fa20e4b17357f1cd68f66ad0085f3566fa0d500447fcf64b0e6d
 SHA512 
22ae634ffaca62926cda4350505a2480550a1b019a0334c0f5b7a06746f69ae40f798229445063294c23f27b115318464aa1f7b89429b3a4f030efc4d776222f

diff --git 
a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.114.0.ebuild 
b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.114.0.ebuild
deleted file mode 100644
index fe66ca24b16e..
--- a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.114.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Style for QtQuickControls 2 that uses QWidget's QStyle for 
painting"
-
-LICENSE="|| ( GPL-2+ LGPL-3+ )"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5=
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kirigami-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5[qml]
-"
-RDEPEND="${DEPEND}
-   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: d42191472a69ecc1d5d4b986730dbaf7c724645e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:27 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:27 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d4219147

kde-frameworks/kio: drop 5.115.0

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

 kde-frameworks/kio/kio-5.115.0.ebuild | 94 ---
 1 file changed, 94 deletions(-)

diff --git a/kde-frameworks/kio/kio-5.115.0.ebuild 
b/kde-frameworks/kio/kio-5.115.0.ebuild
deleted file mode 100644
index fd65c25ad6..00
--- a/kde-frameworks/kio/kio-5.115.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-ECM_HANDBOOK="optional"
-ECM_HANDBOOK_DIR="docs"
-ECM_TEST="forceoptional"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org xdg-utils
-
-DESCRIPTION="Framework providing transparent file and data management"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="acl kerberos kf6compat +kwallet X"
-
-# tests hang
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kbookmarks-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/solid-${PVCUT}*:5
-   sys-power/switcheroo-control
-   acl? (
-   sys-apps/attr
-   virtual/acl
-   )
-   handbook? (
-   dev-libs/libxml2
-   dev-libs/libxslt
-   =kde-frameworks/kdoctools-${PVCUT}*:5
-   )
-   kerberos? ( virtual/krb5 )
-   kf6compat? ( kde-apps/kio-extras:6 )
-   kwallet? ( =kde-frameworks/kwallet-${PVCUT}*:5 )
-   X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
-"
-DEPEND="${RDEPEND}
-   >=dev-qt/qtconcurrent-${QTMIN}:5
-   test? ( sys-libs/zlib )
-"
-PDEPEND=">=kde-frameworks/kded-${PVCUT}:5"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKIO_NO_PUBLIC_QTCONCURRENT=ON
-   $(cmake_use_find_package acl ACL)
-   $(cmake_use_find_package kerberos GSSAPI)
-   $(cmake_use_find_package kwallet KF5Wallet)
-   -DKF6_COMPAT_BUILD=$(usex kf6compat)
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}
-
-pkg_postinst() {
-   ecm_pkg_postinst
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   ecm_pkg_postrm
-   xdg_desktop_database_update
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 2e181ea4893a3109d0afa4a4c6c5abd13d2a33b6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:37 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:37 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2e181ea4

kde-frameworks/krunner: drop 5.115.0

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

 kde-frameworks/krunner/krunner-5.115.0.ebuild | 46 ---
 1 file changed, 46 deletions(-)

diff --git a/kde-frameworks/krunner/krunner-5.115.0.ebuild 
b/kde-frameworks/krunner/krunner-5.115.0.ebuild
deleted file mode 100644
index c44f560514..00
--- a/kde-frameworks/krunner/krunner-5.115.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for providing different actions given a string query"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="activities"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/threadweaver-${PVCUT}*:5
-   =kde-plasma/libplasma-${PVCUT}*:5
-   activities? ( =kde-plasma/plasma-activities-${PVCUT}*:5 )
-"
-RDEPEND="${DEPEND}"
-
-CMAKE_SKIP_TESTS=(
-   # requires virtual dbus, otherwise hangs; bugs #630672
-   dbusrunnertest
-   # bug 789351
-   runnermanagersinglerunnermodetest
-   # bug 838502
-   runnermanagertest
-)
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package activities KF5Activities)
-   )
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 86fc6c72488ef712fa4dfec7052576971a45e2fb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:19 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:19 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=86fc6c72

kde-frameworks/kglobalaccel: drop 5.115.0

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

 .../kglobalaccel/kglobalaccel-5.115.0.ebuild   | 52 --
 1 file changed, 52 deletions(-)

diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.115.0.ebuild 
b/kde-frameworks/kglobalaccel/kglobalaccel-5.115.0.ebuild
deleted file mode 100644
index f9b4b69210..00
--- a/kde-frameworks/kglobalaccel/kglobalaccel-5.115.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework to handle global shortcuts"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="kf6compat"
-
-RESTRICT="test" # requires installed instance
-
-COMMON_DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X]
-   x11-libs/libxcb
-   x11-libs/xcb-util-keysyms
-"
-DEPEND="${COMMON_DEPEND}
-   test? (
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   =kde-frameworks/kdeclarative-${PVCUT}*:5
-   )
-"
-RDEPEND="${COMMON_DEPEND}
-   kf6compat? ( kde-plasma/kglobalacceld:6 )
-"
-BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKF6_COMPAT_BUILD=$(usex kf6compat)
-   )
-   ecm_src_configure
-}
-
-src_test() {
-   XDG_CURRENT_DESKTOP="KDE" ecm_src_test # bug 789342
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 37f71544cf995ed20e24523f3a21b549de085eda
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:24 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:24 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=37f71544

kde-frameworks/kinit: drop 5.115.0

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

 kde-frameworks/kinit/kinit-5.115.0.ebuild | 48 ---
 1 file changed, 48 deletions(-)

diff --git a/kde-frameworks/kinit/kinit-5.115.0.ebuild 
b/kde-frameworks/kinit/kinit-5.115.0.ebuild
deleted file mode 100644
index 54086a9357..00
--- a/kde-frameworks/kinit/kinit-5.115.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Helper library to speed up start of applications on KDE 
workspaces"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+caps +man X"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   caps? ( sys-libs/libcap )
-   X? (
-   x11-libs/libX11
-   x11-libs/libxcb
-   )
-"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package caps Libcap)
-   $(cmake_use_find_package man KF5DocTools)
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}



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

2024-02-11 Thread Andreas Sturmlechner
commit: 7295ffdf106fcde1ae9092c1c3cb671e489c8fd8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:21 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:21 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7295ffdf

kde-frameworks/kiconthemes: drop 5.115.0

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

 .../kiconthemes/kiconthemes-5.115.0.ebuild | 32 --
 1 file changed, 32 deletions(-)

diff --git a/kde-frameworks/kiconthemes/kiconthemes-5.115.0.ebuild 
b/kde-frameworks/kiconthemes/kiconthemes-5.115.0.ebuild
deleted file mode 100644
index 9ea4db6254..00
--- a/kde-frameworks/kiconthemes/kiconthemes-5.115.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for icon theming and configuration"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RESTRICT="test" # bug 574770
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtdeclarative-${QTMIN}:5 )
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: 3a0c26c716bc9819b33546e84d678985289148b4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:16 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:09:16 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3a0c26c7

kde-frameworks/kemoticons: drop 5.115.0

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

 .../kemoticons/kemoticons-5.115.0.ebuild   | 27 --
 1 file changed, 27 deletions(-)

diff --git a/kde-frameworks/kemoticons/kemoticons-5.115.0.ebuild 
b/kde-frameworks/kemoticons/kemoticons-5.115.0.ebuild
deleted file mode 100644
index e9102b984f..00
--- a/kde-frameworks/kemoticons/kemoticons-5.115.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for converting text emoticons to graphical 
representations"
-LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-# requires running kde environment
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-activities-stats/

2024-02-11 Thread Andreas Sturmlechner
commit: 1cdeacd957835a6504d093be04ceffac4446b970
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:01 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cdeacd9

kde-plasma/plasma-activities-stats: drop 5.114.0

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

 kde-plasma/plasma-activities-stats/Manifest|  1 -
 .../plasma-activities-stats-5.114.0.ebuild | 28 --
 2 files changed, 29 deletions(-)

diff --git a/kde-plasma/plasma-activities-stats/Manifest 
b/kde-plasma/plasma-activities-stats/Manifest
index cc7181c2b7e5..ead57f045eea 100644
--- a/kde-plasma/plasma-activities-stats/Manifest
+++ b/kde-plasma/plasma-activities-stats/Manifest
@@ -1,4 +1,3 @@
 DIST kactivities-stats-5.113.0.tar.xz 84592 BLAKE2B 
c0bbd90ba905acb23ebf4516b98e88d32d9cca4b72ae9622fa49369547c0deb9a11bd7a56ab6c0496b270e73466213b79a7344a702a66c9d164ca640a70443c1
 SHA512 
03e555aa0189642b67b7d1f84044970fc67bebd2147c7cf85d77d7d0c9509f9f0c9a99a9f2c3b3398aa6bf5763caf59364a66b8e803939db8cab244737445024
-DIST kactivities-stats-5.114.0.tar.xz 84612 BLAKE2B 
f993f5f3e11054e972c0ab772821fa3778a16344c4a518788a2c05872240710495ec96f40112c257f54b85e9643e379612b9b569dcd576a7dee0543394def399
 SHA512 
3bf09e88dc8c4d5de860f0dded223b4f00757e58d740621220584ce7b3db28d217987c2d11dc244a3661d0827e135341a007b1840c47964ef0ad5ca60743319b
 DIST kactivities-stats-5.115.0.tar.xz 84596 BLAKE2B 
3be9008bde4bd020cb02ce12e659adab977be31af0a8386a938fb91a9736dc414ec051b7bfd62e6feb381a2e3d64c679e97cf2acc6c39924f73b23533f51
 SHA512 
873d9497cb55583659cbf7dfd108991acc473e71803f06128ce33f396b64d86ec60b8e71613da6d7b40d13e4597582370e8ea1e626b33e7d251d982c92825520
 DIST plasma-activities-stats-5.93.0.tar.xz 83140 BLAKE2B 
acf7f0d303137a6f98b7d1e353fb3a4411e8b05bc1b1004f7f68917661f0e66352cc351a4c7c71e4c52f440160a4d4f7aa04256145b1cd8ab2917ad0623dbed8
 SHA512 
0f6ea869004e0bad5e149bea789b1acf85a9f6050dd49edec0182ab39411f4f8061039b7a3a19c243a3762334053c29bf6bcc39ce17858e2c7906ed9d6e75cac

diff --git 
a/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.114.0.ebuild 
b/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.114.0.ebuild
deleted file mode 100644
index 34d3ee318abd..
--- a/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.114.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_NONGUI="true"
-ECM_QTHELP="true"
-ECM_TEST="true"
-KDE_ORG_TAR_PN="kactivities-stats"
-KFMIN=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Library for accessing usage data collected by the activities 
system"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtsql-${QTMIN}:5
-   =kde-frameworks/kconfig-${KFMIN}*:5
-   =kde-plasma/plasma-activities-${KFMIN}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/boost )
-"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/khtml/

2024-02-11 Thread Andreas Sturmlechner
commit: 857ff166ceda36aa98fdcc63d0613b6e44cf15a4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:10 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857ff166

kde-frameworks/khtml: drop 5.114.0

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

 kde-frameworks/khtml/Manifest |  1 -
 kde-frameworks/khtml/khtml-5.114.0.ebuild | 73 ---
 2 files changed, 74 deletions(-)

diff --git a/kde-frameworks/khtml/Manifest b/kde-frameworks/khtml/Manifest
index d44a25e437f0..16cbc156ea13 100644
--- a/kde-frameworks/khtml/Manifest
+++ b/kde-frameworks/khtml/Manifest
@@ -1,3 +1,2 @@
 DIST khtml-5.113.0.tar.xz 4011984 BLAKE2B 
63858d8e652546d4c81f04af062dd15af6febc883ecd1ac71f1d75525e6e8e9e4a635649ddf6507e688f74d7adedd96a7172598c4b2799214b541cc05bc3638a
 SHA512 
5588dd06dfbdfb82032404b7d350485220457d8548b68b6bb032caa444ffe36ccc4fcce7391b66a7b93ee6352e54acf0c3b47e63afd6d780afb1ae64c5de1a27
-DIST khtml-5.114.0.tar.xz 4012000 BLAKE2B 
5130e6ca4d310f134090728cdb195e27f27caa05a7f1ea0e76003c67fe54de6a199d706a669f14b001348901ca01ad140fbc0e62b9dc73d0ac09e7107d8b51e6
 SHA512 
93fba2452c45ca3a2786b1e85e8258f48b38080d0bb8811fd9bf1d5b76f1d399bc0b5d9cebbeb2be16e45e93e2b49361e81ea070ed6b8f083de0a867d28b5a3a
 DIST khtml-5.115.0.tar.xz 4012440 BLAKE2B 
490005551036e3b14cd036af07fed97e2109fa4c6c2782f4086bdf612688652d1992b19b2d83c26efa70d4ea0025f96e6398df9fe0f803f6fee6ae03311379d5
 SHA512 
0141aca1b04a779522fb7a7c93e6ec1795b09cebe7f2b079698b076556b78aff807b90462199784e3fdfcddeb97da23a68910c52542994b39f327c5b4a4f1ddc

diff --git a/kde-frameworks/khtml/khtml-5.114.0.ebuild 
b/kde-frameworks/khtml/khtml-5.114.0.ebuild
deleted file mode 100644
index 2e0da0ec160d..
--- a/kde-frameworks/khtml/khtml-5.114.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm flag-o-matic frameworks.kde.org
-
-DESCRIPTION="KHTML web rendering engine"
-
-LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="X"
-
-RDEPEND="
-   dev-libs/openssl:0
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kjs-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kwallet-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   media-libs/giflib:=
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:0=
-   >=media-libs/phonon-4.11.0[qt5(+)]
-   sys-libs/zlib
-   X? (
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   x11-libs/libX11
-   )
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
-   X? ( x11-base/xorg-proto )
-"
-BDEPEND="
-   dev-lang/perl
-   dev-util/gperf
-"
-
-src_configure() {
-   filter-lto # bug 921686
-
-   local mycmakeargs=(
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/countryflags/

2024-02-11 Thread Andreas Sturmlechner
commit: 9f02582f06cf3eaf45e5dd92ba25ed7dba9e1a95
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:04 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f02582f

kde-frameworks/countryflags: drop 5.114.0

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

 kde-frameworks/countryflags/Manifest   |  1 -
 .../countryflags/countryflags-5.114.0.ebuild   | 22 --
 2 files changed, 23 deletions(-)

diff --git a/kde-frameworks/countryflags/Manifest 
b/kde-frameworks/countryflags/Manifest
index 72fd2113a520..326a5de062fd 100644
--- a/kde-frameworks/countryflags/Manifest
+++ b/kde-frameworks/countryflags/Manifest
@@ -1,3 +1,2 @@
 DIST kdelibs4support-5.113.0.tar.xz 3723084 BLAKE2B 
958d0ba21edffc03d3c2fc8406142c014946e86918c23288aa108904af150844e9697b62d25449affb5442faeff5fce53c82a0df6c00443625749a50ca679720
 SHA512 
71c86d90a7381667c9aadec0299afb64b8f42a6d7366b4eba06ee93613de05de7eeeb249fad3746c55a5a1520bb233306e8a851a7351c0f4ce3edd06511cc8d9
-DIST kdelibs4support-5.114.0.tar.xz 3722276 BLAKE2B 
d825c620ae9a8b7b18cde09e0ec38e64b6145bec5e7ca658583ebeba93099ab28df118d309e262f86ef02f0edc5a0d6ba4fc2d4265b04da6b0781d7304af3a21
 SHA512 
c52460602c12a74ac5082abda9a4d2a9ea84d990065404adad343a6dd1070071c9bbeaf490166bb6082052002d43fa50b90cdf4c1db395ea3c32522cd05ee13c
 DIST kdelibs4support-5.115.0.tar.xz 3723592 BLAKE2B 
efb5a384b71f781d666d78c3157188179eaf54237d6a8c442217273e5b4b1b604d86f5db73cce6528d991f669d6ddb6cf156035d5606d1eb03912c7b99ddf26b
 SHA512 
511e14975c2810217e8f08d14a800cfdd04654399303b04a45d69b2f1959cf482027f2444c9e8202bdda60f1779fe572af0a55fae1b3692ec49cea97beeb894f

diff --git a/kde-frameworks/countryflags/countryflags-5.114.0.ebuild 
b/kde-frameworks/countryflags/countryflags-5.114.0.ebuild
deleted file mode 100644
index 3183757e4c7c..
--- a/kde-frameworks/countryflags/countryflags-5.114.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-KDE_ORG_NAME="kdelibs4support"
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Icons of flags for various countries"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-
-CMAKE_USE_DIR="${S}/src/l10n"
-
-# https://phabricator.kde.org/T13722
-# https://invent.kde.org/frameworks/breeze-icons/-/issues/1
-PATCHES=( "${FILESDIR}/${PN}-5.90.0-standalone.patch" )
-
-RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/ktextwidgets/

2024-02-11 Thread Andreas Sturmlechner
commit: a92e8e1b2c7fc039cb3a43f69a5a356fcdc9ea34
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:43 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a92e8e1b

kde-frameworks/ktextwidgets: drop 5.114.0

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

 kde-frameworks/ktextwidgets/Manifest   |  1 -
 .../ktextwidgets/ktextwidgets-5.114.0.ebuild   | 37 --
 2 files changed, 38 deletions(-)

diff --git a/kde-frameworks/ktextwidgets/Manifest 
b/kde-frameworks/ktextwidgets/Manifest
index f91f200cb7c8..a25721b547ed 100644
--- a/kde-frameworks/ktextwidgets/Manifest
+++ b/kde-frameworks/ktextwidgets/Manifest
@@ -1,4 +1,3 @@
 DIST ktextwidgets-5.113.0.tar.xz 2552480 BLAKE2B 
71bb491f07ec0499d9748e6bc33abeaf4a0a01d5441ca61656aaee69c14d0ffc8caa736fa8dd22e18fe92154fba0f1c2ea841ecdad57712a1205a6a9111f
 SHA512 
978fedf41a1768fee28ae54175fc61070049852a81a14607dacf9155a973ac8d858468087bf62de1a444a7a537e4bf5e519bf3ca8cef116f8d67b8e3f5e8c4d4
-DIST ktextwidgets-5.114.0.tar.xz 2552596 BLAKE2B 
5a8d940a049087d2eb95b42d675e9792b9f93fc3d7a8c4a2ed9d3cf31a2a0d49b4651decc0392e18c0ddf4c2e459d4db12ad28cf4d3157faf02641e9da1c
 SHA512 
3763ed8b591909e6b212dd02ff6dcdff6a7fa7e5030cb76815f14e6436ea8f8ee7db8d258f14cc05b562032011ef7117a3872af0ee21998cf7e0e76da1105d98
 DIST ktextwidgets-5.115.0.tar.xz 2552660 BLAKE2B 
197cad28792c09ad98244c7dd48abf1017b57cebd0ce2763065bced78676a34bf57b8bb2ddb58c95b6114ab50960677de833cfeff192d6522d78c2ded65e5dcd
 SHA512 
ed6091a72b1e2e242652a9dc47a17651a02be642faa96155fe4d602e6b1ed6ea3cb48a5922eece146bb38a570e20fafd550ba4dab161b5eec60f57e980027977
 DIST ktextwidgets-5.249.0.tar.xz 2549316 BLAKE2B 
6acc7ceaa352fff5afe7b589576c732ba4e03f052ab6c557c91028759b66cd1c0c629b0a3a64acd1c8222de0884dab8ddaf3f06ecca80ea00f4f959db4645ad7
 SHA512 
86997d22c28bdf4bc1316928f4260d36062e112e57bca14b80f89465935fb3a399efd60f3f048386028a86456a7535b0d45e66f43335112d29773424b75699b9

diff --git a/kde-frameworks/ktextwidgets/ktextwidgets-5.114.0.ebuild 
b/kde-frameworks/ktextwidgets/ktextwidgets-5.114.0.ebuild
deleted file mode 100644
index bcdf8f6f15fb..
--- a/kde-frameworks/ktextwidgets/ktextwidgets-5.114.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing an assortment of widgets for displaying and 
editing text"
-LICENSE="LGPL-2+ LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="speech"
-
-DEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   speech? ( >=dev-qt/qtspeech-${QTMIN}:5 )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package speech Qt5TextToSpeech)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kjs/

2024-02-11 Thread Andreas Sturmlechner
commit: 73db74af60187456cc2574d0c04cafcfa1e24cab
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:13 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73db74af

kde-frameworks/kjs: drop 5.114.0

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

 kde-frameworks/kjs/Manifest   |  1 -
 kde-frameworks/kjs/kjs-5.114.0.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/kde-frameworks/kjs/Manifest b/kde-frameworks/kjs/Manifest
index 00d8f0a83ffb..66647e64b2d6 100644
--- a/kde-frameworks/kjs/Manifest
+++ b/kde-frameworks/kjs/Manifest
@@ -1,3 +1,2 @@
 DIST kjs-5.113.0.tar.xz 339744 BLAKE2B 
1084e5b2bd14f89826b9904e501265d23cc3c13775131a84837df6ab7c6d76533a793993409cf62c8b720f2b6e7e1e4a723a698e11b733fb9bd5099359cc7b2e
 SHA512 
0a0c57b21143b0f2b808939fd78de036b20680528d398fee8216e385dfa37e869370673bc6c5a5a1179ed9e55fd53171581d651abd5597822f9c47b4b82e0064
-DIST kjs-5.114.0.tar.xz 339848 BLAKE2B 
d5e13a977990401b0a54b723fa0c28aa26b8b9dd15731cc272491f718aa787f7a3632af37df1977d2ad7c2b5f5064f6eea5c63bc657e660fe82b32d93e85749e
 SHA512 
4455cd7ea3d300628ce72be856a774b5f04e3605df85bc0cf7f2278a73a0573e19f848e8a6e83eeabe0e69468bb014b989a5e9e89a2e649338eafd5580a7044f
 DIST kjs-5.115.0.tar.xz 339808 BLAKE2B 
f6a33af1d334e985d05bf9440d04d270149da2fa155eed4b9de404cc0f55afe65ded9f106d933d6a238cf22921e5f90890887e9a76877abf862a80042f706899
 SHA512 
0b95025edf0b3aa3a9f550aeaffe8a43a8a8a265f556aeea80ee9becb50a93aef7c99def609e82db4802771a63474610eabd65b5cbd0965d59a5dd4d30a716fd

diff --git a/kde-frameworks/kjs/kjs-5.114.0.ebuild 
b/kde-frameworks/kjs/kjs-5.114.0.ebuild
deleted file mode 100644
index 3bcb125eec3f..
--- a/kde-frameworks/kjs/kjs-5.114.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-ECM_QTHELP="false"
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="ECMAScipt compatible parser and engine"
-LICENSE="BSD-2 LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-BDEPEND="
-   dev-lang/perl
-"
-DEPEND="
-   dev-libs/libpcre
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( src/README )



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kxmlgui/

2024-02-11 Thread Andreas Sturmlechner
commit: 5b4ce2ff50df261e4e48b2de84f7c390040b84e5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:49 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b4ce2ff

kde-frameworks/kxmlgui: drop 5.114.0

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

 kde-frameworks/kxmlgui/Manifest   |  1 -
 kde-frameworks/kxmlgui/kxmlgui-5.114.0.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/kde-frameworks/kxmlgui/Manifest b/kde-frameworks/kxmlgui/Manifest
index f4aeb4378dde..fd04bd086bc5 100644
--- a/kde-frameworks/kxmlgui/Manifest
+++ b/kde-frameworks/kxmlgui/Manifest
@@ -1,4 +1,3 @@
 DIST kxmlgui-5.113.0.tar.xz 2953380 BLAKE2B 
8b7b3a7c9ab4e24154cd5f38243a57a0227d3890b03a3220d1f70821a86ed5c255d91ae11a3f60c3b6fcde68f85585783d474605b46a18e8b65af29310a70dbd
 SHA512 
35c18ccabcc51b70b12e5b5faa8534e2f6793e916d97fc8ad6a1f5001b500f61f730006741f105fd40f37cef29524677bf2dca76093bbe12277c907378c87624
-DIST kxmlgui-5.114.0.tar.xz 2953292 BLAKE2B 
85ae8bd08ac74feedc1f837bf01c841911dd4e6ba7ba3a9ca36786e85eea9d1c04ab5a85b34664dcabba0b708e67d8b1ef6ee5109d5a0566f38ca6f9f192b361
 SHA512 
da580bbdae78aea22becbfbe2b4ea950d549a4d4022bb9550d7901a4fd97b48a4bf72a8dba51ce9de92488aba6f2a37428acb3c705bbc23c345106a92d5838b3
 DIST kxmlgui-5.115.0.tar.xz 2953252 BLAKE2B 
9ed52b405714abe5e78530d4b71a582ce92151bcbbfd563c92d44cfede58d379f99e387d25c41deb4a70eceead904503af3fca55fbbd7634518f0edc689dbaeb
 SHA512 
4e06d72f509701d969eb77e608bd5a703a80fcd18d4d42a70d26b01b6889ca41b573b8be0a06b98b799e2dc62ff5d0111577e76f363c6f4c3d24828339274236
 DIST kxmlgui-5.249.0.tar.xz 2934292 BLAKE2B 
6dffbbaeb9f5cf9e8f86f8c0398517b98b88153d1b1e8574a6caba87926ffe6aefe1ddc3e43420649c2e11fa52982d1aaf028d1b24fa9697d33d3807bf830b42
 SHA512 
195ef13c92724ec2790cfb955d1fc2d952807b150a3e12a7bc1a1424a8200156cba5516c9900f0dfedb4c16837f8a2f7f4374e50b6c2d3b27963edd1b9474df9

diff --git a/kde-frameworks/kxmlgui/kxmlgui-5.114.0.ebuild 
b/kde-frameworks/kxmlgui/kxmlgui-5.114.0.ebuild
deleted file mode 100644
index 63d293e2d231..
--- a/kde-frameworks/kxmlgui/kxmlgui-5.114.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for managing menu and toolbar actions in an abstract 
way"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-LICENSE="LGPL-2+"
-IUSE=""
-
-# slot op: includes QtCore/private/qlocale_p.h
-DEPEND="
-   >=dev-qt/qtcore-${QTMIN}:5=
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"
-
-CMAKE_SKIP_TESTS=(
-   # bug 668198: files are missing; whatever.
-   ktoolbar_unittest
-   # bug 650290
-   kxmlgui_unittest
-   # bug 808216
-   ktooltiphelper_unittest
-)



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kiconthemes/

2024-02-11 Thread Andreas Sturmlechner
commit: 51b5a9c3f55419f769a1e7b68f91eeac7dd788ba
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:17 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b5a9c3

kde-frameworks/kiconthemes: drop 5.114.0

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

 kde-frameworks/kiconthemes/Manifest|  1 -
 .../kiconthemes/kiconthemes-5.114.0.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/kde-frameworks/kiconthemes/Manifest 
b/kde-frameworks/kiconthemes/Manifest
index 65e94e27dfcc..2f3bc7513e97 100644
--- a/kde-frameworks/kiconthemes/Manifest
+++ b/kde-frameworks/kiconthemes/Manifest
@@ -1,4 +1,3 @@
 DIST kiconthemes-5.113.0.tar.xz 1312212 BLAKE2B 
a8c81f78f3093089f492dc9aa3af01df9754bbdcaaab5c5ae4ae8a65c7e8f30f965b09affb465cfc6e31d629d44acd33acaa1a0f70dd1470afcbc9f9b4561e64
 SHA512 
8945aa9377e2030b2a49d5cbaf573c1f73e497fc266dd9ec21d82cdf4c56a44d74afc977b81f6d4bdaac0e2f1a031ab858ba6a20d0d91fbfdc8d2f7cbacfcb63
-DIST kiconthemes-5.114.0.tar.xz 1312212 BLAKE2B 
72188d5781410e9e641ff3e5c92db8e8819bbe70ad9d656dc235d0b2b529db44a3acd57e91f22bf95e344d85ada6cf0a56c73fae9a15550e391690d450267a9d
 SHA512 
0aa267762d9cbe9982df726647ae94c803c7d617b01facd89172fb0f8efdf88a0909199e58ec4aa2cfb410284c796fe17925379b15e1a9a9f0888ddc091b2009
 DIST kiconthemes-5.115.0.tar.xz 1312068 BLAKE2B 
6e40e89610031f5ed9cffbd4c847c1475ee8229810cb917e82837003db714854f96ceabc1e997e7a6c6197de00d84c946fcb51c4527fd203d9a917058160a871
 SHA512 
7cbfe721f45a9edda811fffdb2599452011b679fd5ffdc9088da009de4e712700a6b31cadf0ce24025fe3c264d5169eaae505a9080da123613dd47a8ffb43b6f
 DIST kiconthemes-5.249.0.tar.xz 1313844 BLAKE2B 
aaba0e6664c0d620cf06014cd76ab111743cd5670f4c49102dd4ce2ce12ab608bfa826d6faca6061472db430ff849cbb6ce8ac720add254782c3006b43a63da5
 SHA512 
ceb4aa094481f69c354be166d672d31744aebf072ccdc783b29cdb7c8702fc3e7e23f78e2219491919efd684069b845c54e1c5581854883eb76f8be68bd8b450

diff --git a/kde-frameworks/kiconthemes/kiconthemes-5.114.0.ebuild 
b/kde-frameworks/kiconthemes/kiconthemes-5.114.0.ebuild
deleted file mode 100644
index 9ea4db625483..
--- a/kde-frameworks/kiconthemes/kiconthemes-5.114.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for icon theming and configuration"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RESTRICT="test" # bug 574770
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtdeclarative-${QTMIN}:5 )
-"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kross/

2024-02-11 Thread Andreas Sturmlechner
commit: ebd1d0e43548235fcf2712a09c83b802f27d47b3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:16 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd1d0e4

kde-frameworks/kross: drop 5.114.0

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

 kde-frameworks/kross/Manifest |  1 -
 kde-frameworks/kross/kross-5.114.0.ebuild | 33 ---
 2 files changed, 34 deletions(-)

diff --git a/kde-frameworks/kross/Manifest b/kde-frameworks/kross/Manifest
index 87376a967d14..1d1ccb731db8 100644
--- a/kde-frameworks/kross/Manifest
+++ b/kde-frameworks/kross/Manifest
@@ -1,3 +1,2 @@
 DIST kross-5.113.0.tar.xz 2439912 BLAKE2B 
f7552cb6e7cb08217917310d40ce9d074ef5c7e49e12001cd956acd6e22f7d31ab4b04645c2e3a52efb85eed09caedc2dc9778f581d1f9b33e0779c6a5c796bb
 SHA512 
e55c415af2eab0ef2dd280a158aac10988c144c287c9a73b807387454ba10af79469e2f3950eb4181b3bf6f9381b53de74370697cdf15a3ab6e6270f793d98b9
-DIST kross-5.114.0.tar.xz 2440100 BLAKE2B 
b8340c855cec0a9920889a00b0a5cd9e2c4ed3eb7f590b090c559812f877bc0067515aaaf1d1203363d92663b1f03bb66d5f60b66400beac9fc780dc2c0b
 SHA512 
e7111c59e9ba423096e1d59b09892dc389330d575eb7e994e370d7e2474788743b26cf67ed1b22b0aba3215e91f0bf8ee88a9dbaf9f9aa98e228f82da44466eb
 DIST kross-5.115.0.tar.xz 2440248 BLAKE2B 
b115cc50eb57f4d418b344360f4547ee0cb692bcac9222f420db4a0a9f0162d44be446e5c34026b4334d763b0bf7d78029ca05f5ded33b39aee80f9a7e4e7ccb
 SHA512 
19c1cbd94cec88df149ddec45ba2c436dae5debce5a126c19f3292a3f1a7724ef04bede63a907e387606d163ae3c2ec7a880df851f5d9db976902303045322bb

diff --git a/kde-frameworks/kross/kross-5.114.0.ebuild 
b/kde-frameworks/kross/kross-5.114.0.ebuild
deleted file mode 100644
index a0a8979ffc7d..
--- a/kde-frameworks/kross/kross-5.114.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for embedding scripting into applications"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtscript-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   >=dev-qt/designer-${QTMIN}:5
-"



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

2024-02-11 Thread Andreas Sturmlechner
commit: bf90cc6a8cf16bd77b411cee6cdb8347992e8b82
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:52 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf90cc6a

kde-frameworks/purpose: drop 5.114.0

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

 kde-frameworks/purpose/Manifest   |  1 -
 kde-frameworks/purpose/purpose-5.114.0.ebuild | 91 ---
 2 files changed, 92 deletions(-)

diff --git a/kde-frameworks/purpose/Manifest b/kde-frameworks/purpose/Manifest
index a28095bc2de2..6b5af2e39f0b 100644
--- a/kde-frameworks/purpose/Manifest
+++ b/kde-frameworks/purpose/Manifest
@@ -1,4 +1,3 @@
 DIST purpose-5.113.0.tar.xz 179544 BLAKE2B 
9c9cf7d17f2c8b270f23052553796ea7403260bab11186ff846d840503efc9ae5fdc1d70730605584f7f14ea1aa9f7258864458f2b813b4ed7e01a466f818bbd
 SHA512 
df7f2b3164caa474100731eb360318c2a6bb8301aeb0729fab3824d95f123ece00e74032c2533ce477c92717c116404ed56f7c320320557c29a5036ecf135f7e
-DIST purpose-5.114.0.tar.xz 179776 BLAKE2B 
19cbc2744ef9e40a53aef90da9511c9d7a342f35b95e3ff0c8a090fdbaa84c44de94c71ff81c8d40e05dfbf52191d3a9440c54c3e1a12f6f11391d693fbfac81
 SHA512 
f56be72e5690da06e35cf339b9d45030f651cf1312a7e1ced850dcc137b06f5227533fa1276e4458fac22d3ff8ffef61d503732ce95957e9ea98cdac6916120f
 DIST purpose-5.115.0.tar.xz 180012 BLAKE2B 
2e5a2805b19384f5e8ce0fdb94fa5cc3a7dbfeaaac027e45d95cc16091ea94e2a626ebb8be34f67838ea48049496005588ee6055f745b332676a64a35450c30e
 SHA512 
b17cd780ed7947582fbc71430de67ebeaf33432113bbb77fba3736bd608d05fb132d40f7783cba4fdfd7ab3eec60f00676d48be0ce9c601c37f8eccc04d4db31
 DIST purpose-5.249.0.tar.xz 174540 BLAKE2B 
4f43501631161b23f8e64c3b42ff839b64f4fb618e03c5fa20c4cb2bd26271b6113bee803d57cb4c1bbecbc0e2e000963581ba872c226ecde8d02a96192df405
 SHA512 
9efa22bbd12297c082ab697202980c586b32d11276b8d682176385a654177f9def23e6ea227da6f43a1b45e10da04cedc323f5039d75694de4201c9fcdd1c527

diff --git a/kde-frameworks/purpose/purpose-5.114.0.ebuild 
b/kde-frameworks/purpose/purpose-5.114.0.ebuild
deleted file mode 100644
index 39bad79d4f2d..
--- a/kde-frameworks/purpose/purpose-5.114.0.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="forceoptional"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org optfeature xdg-utils
-
-DESCRIPTION="Library for providing abstractions to get the developer's 
purposes fulfilled"
-LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="bluetooth kaccounts kf6compat"
-
-# requires running environment
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kirigami-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/prison-${PVCUT}*:5
-   kaccounts? (
-   || (
-   kde-apps/kaccounts-integration:6[qt5]
-   kde-apps/kaccounts-integration:5
-   )
-   net-libs/accounts-qt[qt5(+)]
-   )
-"
-RDEPEND="${DEPEND}
-   kf6compat? ( kde-frameworks/purpose:6[kaccounts?] )
-   >=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   >=kde-frameworks/kdeclarative-${PVCUT}:5
-   bluetooth? ( =kde-frameworks/bluez-qt-${PVCUT}*:5 )
-   kaccounts? ( net-libs/accounts-qml[qt5(+)] )
-"
-BDEPEND="kaccounts? ( dev-util/intltool )"
-
-src_prepare() {
-   ecm_src_prepare
-
-   use bluetooth ||
-   cmake_run_in src/plugins cmake_comment_add_subdirectory 
bluetooth
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package kaccounts KAccounts)
-   )
-
-   ecm_src_configure
-}
-
-src_install() {
-   ecm_src_install
-
-   if use kf6compat; then
-   rm 
"${D}"/usr/share/icons/hicolor/128x128/apps/{reviewboard,phabricator}-purpose.png
 \
-   
"${D}"/usr/share/icons/hicolor/16x16/apps/{reviewboard,phabricator}-purpose.png 
\
-   || die
-   if use kaccounts; then
-   rm 
"${D}"/usr/share/accounts/services/kde/{google-youtube,nextcloud-upload}.service
 \
-   || die
-   fi
-   fi
-}
-
-pkg_postinst() {
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   optfeature "Send through KDE Connect" kde-misc/kdeconnect
-   fi
-   ecm_pkg_postinst
-   

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kdelibs4support/

2024-02-11 Thread Andreas Sturmlechner
commit: 18c0b706ecc99f61732a96a5f3cd8348cf7333c6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:10:07 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c0b706

kde-frameworks/kdelibs4support: drop 5.114.0

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

 kde-frameworks/kdelibs4support/Manifest|   1 -
 .../kdelibs4support/kdelibs4support-5.114.0.ebuild | 106 -
 2 files changed, 107 deletions(-)

diff --git a/kde-frameworks/kdelibs4support/Manifest 
b/kde-frameworks/kdelibs4support/Manifest
index 72fd2113a520..326a5de062fd 100644
--- a/kde-frameworks/kdelibs4support/Manifest
+++ b/kde-frameworks/kdelibs4support/Manifest
@@ -1,3 +1,2 @@
 DIST kdelibs4support-5.113.0.tar.xz 3723084 BLAKE2B 
958d0ba21edffc03d3c2fc8406142c014946e86918c23288aa108904af150844e9697b62d25449affb5442faeff5fce53c82a0df6c00443625749a50ca679720
 SHA512 
71c86d90a7381667c9aadec0299afb64b8f42a6d7366b4eba06ee93613de05de7eeeb249fad3746c55a5a1520bb233306e8a851a7351c0f4ce3edd06511cc8d9
-DIST kdelibs4support-5.114.0.tar.xz 3722276 BLAKE2B 
d825c620ae9a8b7b18cde09e0ec38e64b6145bec5e7ca658583ebeba93099ab28df118d309e262f86ef02f0edc5a0d6ba4fc2d4265b04da6b0781d7304af3a21
 SHA512 
c52460602c12a74ac5082abda9a4d2a9ea84d990065404adad343a6dd1070071c9bbeaf490166bb6082052002d43fa50b90cdf4c1db395ea3c32522cd05ee13c
 DIST kdelibs4support-5.115.0.tar.xz 3723592 BLAKE2B 
efb5a384b71f781d666d78c3157188179eaf54237d6a8c442217273e5b4b1b604d86f5db73cce6528d991f669d6ddb6cf156035d5606d1eb03912c7b99ddf26b
 SHA512 
511e14975c2810217e8f08d14a800cfdd04654399303b04a45d69b2f1959cf482027f2444c9e8202bdda60f1779fe572af0a55fae1b3692ec49cea97beeb894f

diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-5.114.0.ebuild 
b/kde-frameworks/kdelibs4support/kdelibs4support-5.114.0.ebuild
deleted file mode 100644
index cd5a6b4035c0..
--- a/kde-frameworks/kdelibs4support/kdelibs4support-5.114.0.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="true"
-ECM_HANDBOOK_DIR="docs"
-ECM_QTHELP="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework easing the development transition from KDELibs 4 to KF 
5"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="networkmanager X"
-
-RESTRICT="test"
-
-COMMON_DEPEND="
-   app-text/docbook-xml-dtd:4.2
-   dev-libs/openssl:0
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qttest-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   >=kde-frameworks/kded-${PVCUT}:5
-   =kde-frameworks/kdoctools-${PVCUT}*:5
-   =kde-frameworks/kemoticons-${PVCUT}*:5
-   =kde-frameworks/kglobalaccel-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5[X?]
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kunitconversion-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/solid-${PVCUT}*:5
-   virtual/libintl
-   networkmanager? ( net-misc/networkmanager )
-   X? (
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libxcb
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
-   X? ( x11-base/xorg-proto )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/countryflags-${PVCUT}:5
-   =kde-frameworks/kinit-${PVCUT}*:5
-   =kde-frameworks/kitemmodels-${PVCUT}*:5
-"
-BDEPEND="
-   dev-lang/perl
-   dev-perl/URI
-"
-
-PATCHES=(
-   # downstream patches
-   "${FILESDIR}/${PN}-5.80.0-no-kdesignerplugin.patch" # bug 755956
-   "${FILESDIR}/${PN}-5.86.0-unused-dep.patch" # bug 755956
-)
-

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwallet/

2024-02-11 Thread Andreas Sturmlechner
commit: f88fb7fc247818fb21dd9e2dacf52d993ea6b2ae
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:46 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f88fb7fc

kde-frameworks/kwallet: drop 5.114.0

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

 kde-frameworks/kwallet/Manifest   |  1 -
 kde-frameworks/kwallet/kwallet-5.114.0.ebuild | 60 ---
 2 files changed, 61 deletions(-)

diff --git a/kde-frameworks/kwallet/Manifest b/kde-frameworks/kwallet/Manifest
index ad0abb5f5a33..05b0ce091692 100644
--- a/kde-frameworks/kwallet/Manifest
+++ b/kde-frameworks/kwallet/Manifest
@@ -1,4 +1,3 @@
 DIST kwallet-5.113.0.tar.xz 351656 BLAKE2B 
00c1adef54bfd9a662c5aa2ad8d237f0bf9b31d5adcb78338f1d7cdbe4d8de25e596e10efcbbbfa68657d6f557936bcace7ad95e8d90d735b79b8b87da304758
 SHA512 
7f7ce975056b34161e2038ec88a371d1e12913d68cbbe6b3069a5ce4ced9a75f7e82e23ec38c929da6d4ce8dc8e863d32237b80bc47c6ecedaeee8cee42c86ce
-DIST kwallet-5.114.0.tar.xz 351784 BLAKE2B 
74df2c935bb7e8e4e703004521542e366867060092fb1045b5a727f74e1adbb92d6d8d9b30df49d7cf12c2a61ce92d70b912c388094540e8294d5aad2b25
 SHA512 
22077495cd5d00f159017c52080e7d3a471d2434305fad412dfc1cb8528e196a1fa88a315f31f4a90d7b459307f1e45ae025e293f88774842e995ea52234d1a5
 DIST kwallet-5.115.0.tar.xz 353124 BLAKE2B 
18f9d51c52e60e20d44c3385cdd4d2b696d1a2b3a36700f44577d04d3ea652f848a6c680db4626d9516ff0848181a098efcaa0b6e4bbf282f9831c576096
 SHA512 
8870af27ab6dfe5a7f9c60a8199b917e3f0ad81e48524c5ea383c39d6e3ca6a2fbe7bbce9b645a190c33a58bc7e63347e1737b6f55783fefa2a46bf7bab598fe
 DIST kwallet-5.249.0.tar.xz 349452 BLAKE2B 
03813686e928893a38fbbf69fc32f26ca71a043302132b40e9cf48f61c68effd778ca9779c71b76a1781d03526a8b359ccac66c7c775927e8942f9d6caf91c8e
 SHA512 
a5802208c32b5037fbee7531eaf41c056e517acf58036257fab12a2529efa44e28f70847dcae44da62a8f016caf643f8fb370d45ebcd4ff6d82ddb7be58df699

diff --git a/kde-frameworks/kwallet/kwallet-5.114.0.ebuild 
b/kde-frameworks/kwallet/kwallet-5.114.0.ebuild
deleted file mode 100644
index 422b94f04d8d..
--- a/kde-frameworks/kwallet/kwallet-5.114.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org optfeature
-
-DESCRIPTION="Framework providing desktop-wide storage for passwords"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="gpg kf6compat +man"
-
-DEPEND="
-   >=app-crypt/qca-2.3.1:2[qt5(+)]
-   dev-libs/libgcrypt:0=
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X]
-   !kf6compat? ( gpg? ( >=app-crypt/gpgme-1.7.1:=[cxx,qt5] ) )
-"
-RDEPEND="${DEPEND}
-   kf6compat? ( kde-frameworks/kwallet:6 )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_KWALLETD=$(usex !kf6compat)
-   -DBUILD_KWALLET_QUERY=$(usex !kf6compat)
-   $(cmake_use_find_package man KF5DocTools)
-   )
-   if ! use kf6compat; then
-   mycmakeargs+=(
-   $(cmake_use_find_package gpg Gpgmepp)
-   )
-   fi
-
-   ecm_src_configure
-}
-
-pkg_postinst() {
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   optfeature "Auto-unlocking after account login" 
"kde-plasma/kwallet-pam:5"
-   optfeature "KWallet management" "kde-apps/kwalletmanager:5"
-   elog "For more information, read 
https://wiki.gentoo.org/wiki/KDE#KWallet;
-   fi
-   ecm_pkg_postinst
-}



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/libplasma/

2024-02-11 Thread Andreas Sturmlechner
commit: ab55f9fb1f5853389dced7d7506d02dba0f209d4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:58 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab55f9fb

kde-plasma/libplasma: drop 5.114.0

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

 kde-plasma/libplasma/Manifest |  1 -
 kde-plasma/libplasma/libplasma-5.114.0.ebuild | 76 ---
 2 files changed, 77 deletions(-)

diff --git a/kde-plasma/libplasma/Manifest b/kde-plasma/libplasma/Manifest
index 24dd5708144a..60885f3b0619 100644
--- a/kde-plasma/libplasma/Manifest
+++ b/kde-plasma/libplasma/Manifest
@@ -1,4 +1,3 @@
 DIST libplasma-5.93.0.tar.xz 2112000 BLAKE2B 
71e69a2b9f9929b65db3a330262b986c694e5be308ea48289a819d59c912d363297fec3c867b66fc9c54dd32166f3e9b5a3367be1e345f87d886feba36298781
 SHA512 
436f9954b525b5fb9b97f9ee0724b2ac966fee0a674c499270a3faa594c59a89e2853add58be3177ca613621373abbff96cd5d974044a2ab7010e9d042c45ffc
 DIST plasma-framework-5.113.0.tar.xz 3308500 BLAKE2B 
aaab06fdf87b7060e90da17160e653a53e14287eca70a83bdac8c3578b8d12734a3de07a3777f1d9c2b23e1a04b9f03be34a1fdd4aaca8d950784caa787778df
 SHA512 
46a9a249600b53b8f871fb9703584aba5a62bdf93bb826e6171ab8619d2199dbe98831a10e93f47239559fbd499644c2c4b3e3b7155829b0a3aece5ecaa08cab
-DIST plasma-framework-5.114.0.tar.xz 3308372 BLAKE2B 
00c3115d4041c34d123676cf67ed0d3738ef2633931d47619497abb0dc03c267e6ce47dfae127bd9eabe2ddb681b594bbfd8e2cf4a81f02f3c4d753a8d79a190
 SHA512 
bd67a64a5d6e8b37cbdfe4bb6879987a3eccd39e71fa08753f9044f03652be5b4eeb3204de51695f15a32ba8a552b804261177eec564fb41c89a39af83122f24
 DIST plasma-framework-5.115.0.tar.xz 3310792 BLAKE2B 
495d1a5de3839a50a0511099f5c839ecfb498ec3e71181e11a07f339bd4ae057f8ac51f5d8b28b7c96e81f89218b90b259bb31a45ebf202af033599db957ef32
 SHA512 
46ff7c6e93c7be3bb6998010b8b613f7c90cb9b3313290d6ebf0b94ed896e676c245aa090f0beb74c4c68576909f7dc7b6f580e386c18a923be90f74bdc1fbb6

diff --git a/kde-plasma/libplasma/libplasma-5.114.0.ebuild 
b/kde-plasma/libplasma/libplasma-5.114.0.ebuild
deleted file mode 100644
index 987b3ba7565e..
--- a/kde-plasma/libplasma/libplasma-5.114.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_NONGUI="true"
-ECM_QTHELP="true"
-ECM_TEST="true"
-KDE_ORG_TAR_PN="plasma-framework"
-KFMIN=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Plasma library and runtime components based upon KF5 and Qt5"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="gles2-only kf6compat man wayland"
-
-RESTRICT="test"
-
-# kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras
-COMMON_DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5[gles2-only=,X]
-   >=dev-qt/qtquickcontrols-${QTMIN}:5
-   >=dev-qt/qtsql-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   =kde-frameworks/karchive-${KFMIN}*:5
-   =kde-frameworks/kconfig-${KFMIN}*:5[qml]
-   =kde-frameworks/kconfigwidgets-${KFMIN}*:5
-   =kde-frameworks/kcoreaddons-${KFMIN}*:5
-   =kde-frameworks/kdeclarative-${KFMIN}*:5
-   =kde-frameworks/kglobalaccel-${KFMIN}*:5
-   =kde-frameworks/kguiaddons-${KFMIN}*:5
-   =kde-frameworks/ki18n-${KFMIN}*:5
-   =kde-frameworks/kiconthemes-${KFMIN}*:5
-   =kde-frameworks/kio-${KFMIN}*:5
-   =kde-frameworks/kirigami-${KFMIN}*:5
-   =kde-frameworks/knotifications-${KFMIN}*:5
-   =kde-frameworks/kpackage-${KFMIN}*:5
-   =kde-frameworks/kservice-${KFMIN}*:5
-   =kde-frameworks/kwidgetsaddons-${KFMIN}*:5
-   =kde-frameworks/kwindowsystem-${KFMIN}*:5[X]
-   =kde-frameworks/kxmlgui-${KFMIN}*:5
-   =kde-plasma/plasma-activities-${KFMIN}*:5
-   x11-libs/libX11
-   x11-libs/libxcb
-   !gles2-only? ( media-libs/libglvnd[X] )
-   wayland? (
-   =kde-plasma/kwayland-${KFMIN}*:5
-   media-libs/libglvnd
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   x11-base/xorg-proto
-"
-RDEPEND="${COMMON_DEPEND}
-   kf6compat? ( kde-plasma/libplasma:6 )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${KFMIN}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_DESKTOPTHEMES=$(usex !kf6compat)
-   $(cmake_use_find_package !gles2-only OpenGL)
-   $(cmake_use_find_package man KF5DocTools)
-   $(cmake_use_find_package wayland EGL)
-   $(cmake_use_find_package wayland KF5Wayland)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/krunner/

2024-02-11 Thread Andreas Sturmlechner
commit: 3c3d07dcc3c3a67cd130dc4dc64292871390b5eb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:34 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c3d07dc

kde-frameworks/krunner: drop 5.114.0

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

 kde-frameworks/krunner/Manifest   |  1 -
 kde-frameworks/krunner/krunner-5.114.0.ebuild | 46 ---
 2 files changed, 47 deletions(-)

diff --git a/kde-frameworks/krunner/Manifest b/kde-frameworks/krunner/Manifest
index d668aea7e1c6..6be5f6577134 100644
--- a/kde-frameworks/krunner/Manifest
+++ b/kde-frameworks/krunner/Manifest
@@ -1,4 +1,3 @@
 DIST krunner-5.113.0.tar.xz 88936 BLAKE2B 
c2109e0101782bf8e10eacafc691f8d6b54e8db9b8d790c9776d972c481d1c9aab247312499e717853140a9a43eec35cc0d18cb7f4bcb660d0e1bed8424bc3e5
 SHA512 
f8ba6ac6b18844a85d6f3b60a659b4ce2fb5d2bbb118777156672dc77c71e77312df9441303aa184d486ce2b8470be6d052539b30ce2ebfcd9cad6ffe3ac4b19
-DIST krunner-5.114.0.tar.xz 88964 BLAKE2B 
4f98409f1e52e0e9cbe1c85a5219a7a121f00c2d336c1e03b15d748b218de2f7f0760804054ccc241b33698eda4d5b62aad11eaec31a8c47785ccce11d6ea659
 SHA512 
3cef62654ca71574fdd4e96a1883587f717a107840a6da9fefd2c7fb58786e01bcd95e621f115d0cfc203ea0c2c678093af19bada478d7d260358baa15b1522c
 DIST krunner-5.115.0.tar.xz 88964 BLAKE2B 
bc50f60c87ea4b583702f76f7ab38065ffae34da454b999ccac82f197dd047e00bd7973bea7991b5f02740f0c88aa272fa111382448114ed03aff23e5a413bbb
 SHA512 
b0eeed6d7145585a55c29a60618a2be73fc3c9cb3e2167ccf064528994270f628a6d8bc5ef3147e332bff398005ee70d8c3870b076dc90a71d6368c0f9a7c676
 DIST krunner-5.249.0.tar.xz 130608 BLAKE2B 
428e18df3c4e74156d86301b9fe6254a016668182613aa889ea0229968c1502e605765093316540e2764668ad38d4b27019f38ea5254f1cfd2b694372b429ee0
 SHA512 
5f8bb8e94993d3a1493d5fcc0259d886f3c4bd639505075e06b530a4219d062058663cdab76fd6b851b964f66ea6496f01f1ee310f5b94ac240045f78dda9b08

diff --git a/kde-frameworks/krunner/krunner-5.114.0.ebuild 
b/kde-frameworks/krunner/krunner-5.114.0.ebuild
deleted file mode 100644
index c44f5605148a..
--- a/kde-frameworks/krunner/krunner-5.114.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for providing different actions given a string query"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="activities"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/threadweaver-${PVCUT}*:5
-   =kde-plasma/libplasma-${PVCUT}*:5
-   activities? ( =kde-plasma/plasma-activities-${PVCUT}*:5 )
-"
-RDEPEND="${DEPEND}"
-
-CMAKE_SKIP_TESTS=(
-   # requires virtual dbus, otherwise hangs; bugs #630672
-   dbusrunnertest
-   # bug 789351
-   runnermanagersinglerunnermodetest
-   # bug 838502
-   runnermanagertest
-)
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package activities KF5Activities)
-   )
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/ktexteditor/

2024-02-11 Thread Andreas Sturmlechner
commit: 5d085e817012e260f7794d3fef5b24e1d74e4b61
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:40 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d085e81

kde-frameworks/ktexteditor: drop 5.114.0

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

 kde-frameworks/ktexteditor/Manifest|  1 -
 .../ktexteditor/ktexteditor-5.114.0.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/kde-frameworks/ktexteditor/Manifest 
b/kde-frameworks/ktexteditor/Manifest
index e3acf3c80433..2230b7a3f2b7 100644
--- a/kde-frameworks/ktexteditor/Manifest
+++ b/kde-frameworks/ktexteditor/Manifest
@@ -1,4 +1,3 @@
 DIST ktexteditor-5.113.0.tar.xz 2789912 BLAKE2B 
edaabc5acda67eb80f4652a1b59e67b18d83a4103719761b503d30f0272c000a507544b866d201a4dbd4ce0f0c38b469b69fbabca959048dff548c4e7c2e9c91
 SHA512 
fca3fdcfa63860b39e979764c61a839a38b12587e732b0f2d3d72ef3bc897db3f2df503a89cbcf5348ce781d1c0de539d73638d0cb87713d94f0fdc975a2f854
-DIST ktexteditor-5.114.0.tar.xz 2789912 BLAKE2B 
d7b2b25451ab05638eba9015724e6bc5bed51895d65446f7faacf8a4701dad1d54e39472db5ffe700a2940aba1c251c1b710646abc449819280511a075805b98
 SHA512 
95fca66c97bdbfa27007786c51253ed1bcfea89102f28b409b33daa072dac729b403773f402466fb5b4ee6e18e3ade6fee7e5140d0c6e0f57694a0c71d2b3659
 DIST ktexteditor-5.115.0.tar.xz 2791160 BLAKE2B 
8f529cec46d32985cdfe4243390a78ffb7bccc2ac4eb9466fef307160794fce08a53c7c137248c36d4a2e35d7afe092b61b073af88afb8d64dc0fffbd31a73f7
 SHA512 
ce30c8e43d453e02c8f2f36087d145bf29e6f7740340868ce6740670856bb3c5dc10e310934facfcdbeef447a54d11faa96f1ff08b0173283c25f604760607a8
 DIST ktexteditor-5.249.0.tar.xz 2806996 BLAKE2B 
4bfe8a01f148e2eda7ae32b85896cdf04c4dcf9be66f139a5515c9171e4a9d296cec1225c195fcfec436664eb71514f5c0df93f67d02b20e62330bb17454027f
 SHA512 
a776fad2c018cc33c429ccc5106cbd3f590480bc9e0cc9ba84d3bdac7fc6229235736e63a09b41e3230a90dddb9485cfeac785fae94f7cdf793beded01dd90de

diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.114.0.ebuild 
b/kde-frameworks/ktexteditor/ktexteditor-5.114.0.ebuild
deleted file mode 100644
index 6fc196ea749e..
--- a/kde-frameworks/ktexteditor/ktexteditor-5.114.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing a full text editor component"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+editorconfig"
-
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kparts-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/sonnet-${PVCUT}*:5
-   =kde-frameworks/syntax-highlighting-${PVCUT}*:5
-   editorconfig? ( app-text/editorconfig-core-c )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( >=kde-frameworks/kservice-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package editorconfig EditorConfig)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kio/

2024-02-11 Thread Andreas Sturmlechner
commit: 1056ff36365fbae7d101138e461beb0c8f851696
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:23 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1056ff36

kde-frameworks/kio: drop 5.114.0

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

 kde-frameworks/kio/Manifest   |  1 -
 kde-frameworks/kio/kio-5.114.0.ebuild | 94 ---
 2 files changed, 95 deletions(-)

diff --git a/kde-frameworks/kio/Manifest b/kde-frameworks/kio/Manifest
index 67aca702af57..3bd91bc9ba75 100644
--- a/kde-frameworks/kio/Manifest
+++ b/kde-frameworks/kio/Manifest
@@ -1,4 +1,3 @@
 DIST kio-5.113.0.tar.xz 3798768 BLAKE2B 
bd72d5b10cb76ffdb4074684c29764acaca53f9da3d228bf801c8b7365fe1b878b53261ed029e8836cb78a2621443d2c552e8715678d44dd484e9517258d9bff
 SHA512 
25524882e46bec036cb8bd536c758df1570cdfd3dd037f22f9a764801ed2838aa109bf10c17021a1993d78c7f31e45e37b3861764efe47023ebfacfacf5e9024
-DIST kio-5.114.0.tar.xz 3800124 BLAKE2B 
c459166e74911d66580740e21b2050a6a50895ec54ce85ff8ae65800d6aff6dfd129996cb02adef97206deb8335a822ea24bf06b4c1e431fdf3c59801bcacbf2
 SHA512 
75766ee17a3cea1ff3bc1614f2baab71a2c5b3e66376d30a46cb9abfad010e189805a4e94d32449fcb7d32b896e2374602022515e75e2c93dea3385c913c437d
 DIST kio-5.115.0.tar.xz 3799964 BLAKE2B 
020084259a4e41d102e786d34b899420e18d75f27a3f8391dfd05f57d86168676d5ae88b603d84176a8ad963aee7bc5883ef4952c25f6d8ea1b11cd6d04bb470
 SHA512 
014eab017a1a9ba65cf122a9f241764054b3591c5759d5121ccd82593ebfe301eec0ba1f9e08165ef75b0fdf057094ef81293a6ec020ee2100394a68ab80a8d7
 DIST kio-5.249.0.tar.xz 3351372 BLAKE2B 
0c410487082c0ca3d0e85e31b6bbdaa12ba2b2ad777e49a0d01a1c824ec123ad8f21806a3e8c96384398bc8c7b7332c51fafa68058d6e2846cf140150e4f
 SHA512 
eba1cb9bb27161b134fbd1024ef523ee9e32447bb62e35fbe66a21b3fc5578fb9304dd445da158dc2f76ad3527cd0981766c3d0f909fd6d0f6621efbb303c3bc

diff --git a/kde-frameworks/kio/kio-5.114.0.ebuild 
b/kde-frameworks/kio/kio-5.114.0.ebuild
deleted file mode 100644
index fd65c25ad652..
--- a/kde-frameworks/kio/kio-5.114.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-ECM_HANDBOOK="optional"
-ECM_HANDBOOK_DIR="docs"
-ECM_TEST="forceoptional"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org xdg-utils
-
-DESCRIPTION="Framework providing transparent file and data management"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="acl kerberos kf6compat +kwallet X"
-
-# tests hang
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kauth-${PVCUT}*:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kbookmarks-${PVCUT}*:5
-   =kde-frameworks/kcodecs-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kconfigwidgets-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/kguiaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/knotifications-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/ktextwidgets-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   =kde-frameworks/solid-${PVCUT}*:5
-   sys-power/switcheroo-control
-   acl? (
-   sys-apps/attr
-   virtual/acl
-   )
-   handbook? (
-   dev-libs/libxml2
-   dev-libs/libxslt
-   =kde-frameworks/kdoctools-${PVCUT}*:5
-   )
-   kerberos? ( virtual/krb5 )
-   kf6compat? ( kde-apps/kio-extras:6 )
-   kwallet? ( =kde-frameworks/kwallet-${PVCUT}*:5 )
-   X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
-"
-DEPEND="${RDEPEND}
-   >=dev-qt/qtconcurrent-${QTMIN}:5
-   test? ( sys-libs/zlib )
-"
-PDEPEND=">=kde-frameworks/kded-${PVCUT}:5"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKIO_NO_PUBLIC_QTCONCURRENT=ON
-   $(cmake_use_find_package acl ACL)
-   $(cmake_use_find_package kerberos GSSAPI)
-   $(cmake_use_find_package kwallet KF5Wallet)
-   -DKF6_COMPAT_BUILD=$(usex kf6compat)
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}
-

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/knotifyconfig/

2024-02-11 Thread Andreas Sturmlechner
commit: 68b81e28790647cabc2382031ae818993aee05fb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:29 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b81e28

kde-frameworks/knotifyconfig: drop 5.114.0

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

 kde-frameworks/knotifyconfig/Manifest  |  1 -
 .../knotifyconfig/knotifyconfig-5.114.0.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/kde-frameworks/knotifyconfig/Manifest 
b/kde-frameworks/knotifyconfig/Manifest
index fa90b72b6931..71c539f38028 100644
--- a/kde-frameworks/knotifyconfig/Manifest
+++ b/kde-frameworks/knotifyconfig/Manifest
@@ -1,4 +1,3 @@
 DIST knotifyconfig-5.113.0.tar.xz 2401796 BLAKE2B 
83fb31f13df05ca0161e7577c85595d8844a8b8f7054fec60ccd13f33467c38050720c73586d4659a7f0fba85fffc09f89f833ee01f53abf092df9a15be13127
 SHA512 
16ce8a251d100575d5338fc521d8adc5730d41fa30be97d6e613501653b7638e30a0213eefd054618365f511135f0eab030643ec43fb72a5ff375e90edb41976
-DIST knotifyconfig-5.114.0.tar.xz 2402232 BLAKE2B 
965fd8b83e835df0d84917b1dc118e885b9c674f0fd78509e0cc030245a5a5fb1283e09048daaab041813b68c7f62c52a5394d71d9233414f3456249a950e406
 SHA512 
a22618e59263804e3a93d5ca12c805c1ded05e22a6a8bcfa517d1ce98a36ff69558424aa674ddbdcc199300be035073ee61217c9e1338a9c086a6f68581b2380
 DIST knotifyconfig-5.115.0.tar.xz 2401888 BLAKE2B 
7f3ed295a93216f0cb8f7b915a915ee9052c6cbc0c20207898f6d53c39a1951b56d0da94c9a758535f0967297a4f3f6e8359e91aa9f9edf9814255265ad4b38c
 SHA512 
75ca1341a1ec17f28d5e0651d14ca4b17c42d3bc7593d4976920ce8df96c1e9eddc9fd2eeb7564bf5094551729ac29e73c4d0712fc74a09695790c6d206f8500
 DIST knotifyconfig-5.249.0.tar.xz 2396656 BLAKE2B 
3243d1e500bc9f9f097ff9f62a755d2a2ba536c135fc56dad45658de3553ec0f1b6232d3fc3720dab2df213d17edea4eb74016a3cf33974ef787c10add49d1b2
 SHA512 
5c8e29333ab0d68da9b16bc4e6e2c6a2a6f01424a541f4b087b2d603185d743af6b2e1fdf4ac1245f07b2d7b82cff6a311708ada3330f07a5af1450b83783ac8

diff --git a/kde-frameworks/knotifyconfig/knotifyconfig-5.114.0.ebuild 
b/kde-frameworks/knotifyconfig/knotifyconfig-5.114.0.ebuild
deleted file mode 100644
index e2c520666ff6..
--- a/kde-frameworks/knotifyconfig/knotifyconfig-5.114.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for configuring desktop notifications"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="phonon"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   !phonon? ( media-libs/libcanberra )
-   phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package !phonon Canberra)
-   )
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kservice/

2024-02-11 Thread Andreas Sturmlechner
commit: 7e81bb9a8c0579a5787955037b72ef03723ff014
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:37 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e81bb9a

kde-frameworks/kservice: drop 5.114.0

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

 kde-frameworks/kservice/Manifest|  1 -
 kde-frameworks/kservice/kservice-5.114.0.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/kde-frameworks/kservice/Manifest b/kde-frameworks/kservice/Manifest
index e47724de89ab..6024c6736cb1 100644
--- a/kde-frameworks/kservice/Manifest
+++ b/kde-frameworks/kservice/Manifest
@@ -1,4 +1,3 @@
 DIST kservice-5.113.0.tar.xz 2539104 BLAKE2B 
f7562a2ffb7e5be1ef2fd74cfb31e233ba3e41965172b5b03f81dd448cfabc726b0bff99950110edd365d8e366d35ddc4a24e6788a76f1fd48e031a82b1176d9
 SHA512 
ba4bd3e356894ece864ba9a0e83aefd6b79252a19e2ab1dd4a86ab3c791243852a9f1236ae81b8580a321aa00eddb400c9f8e18c4d8a828ce7c7b1deb4765f73
-DIST kservice-5.114.0.tar.xz 253 BLAKE2B 
648788ff20cee0e808b3382edcbd3845ab42f472f3f83284020a7e25eb0031ff7734b73d85450ae8e4483006827f7ce07f5956daaf30a244a6b5145e4ffcdb5d
 SHA512 
2588138c75d1d39871dc34501c2a86d7d47658de9df7055296becb3b7ddcebdbc40e017b2ae72e708caab221aeca0a19a55f9414181d23c927b7047a37330341
 DIST kservice-5.115.0.tar.xz 2539084 BLAKE2B 
d37ff649ad8d8f4b675922be74e8e037dbf1fb0bc1194705e6787905e382c4f7d4026014be8a5c821b100179ef633e59757047b3d1bb68312eefb23088e5a256
 SHA512 
c7a88ee7e36b4f8d8c19259c72402ac573ab3d3e7e536d039d6501c255aa501bc756143f6aee07bfe792c908b802d35c76eae032d95a20e5272770dba64d55d1
 DIST kservice-5.249.0.tar.xz 2449832 BLAKE2B 
c0098afe70b6bf2e7bb76a8904f23d7665f03ef784be5fd0d67b64432021ffa982d8990836a0f4f2eb0a76a5f64ced9fb1c413acdf5f7864a6fca509e3da9221
 SHA512 
c8377e8c4b87788c69ccf1093220cd41ec79191319c70ed4bc31708a595517c07315c219b4482718ea9134e4ee5104827847339ba9e3e26b17568adfe748859f

diff --git a/kde-frameworks/kservice/kservice-5.114.0.ebuild 
b/kde-frameworks/kservice/kservice-5.114.0.ebuild
deleted file mode 100644
index 294e9bc35598..
--- a/kde-frameworks/kservice/kservice-5.114.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Advanced plugin and service introspection"
-
-LICENSE="LGPL-2 LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+man"
-
-# requires running kde environment
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
-"
-BDEPEND="
-   app-alternatives/lex
-   app-alternatives/yacc
-   man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DAPPLICATIONS_MENU_NAME=kf5-applications.menu
-   $(cmake_use_find_package man KF5DocTools)
-   )
-
-   ecm_src_configure
-}
-
-src_install() {
-   ecm_src_install
-
-   # bug 596316
-   dosym kf5-applications.menu /etc/xdg/menus/applications.menu
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/knewstuff/

2024-02-11 Thread Andreas Sturmlechner
commit: 95a37da042b706d3f20b539be4244cf85a647b23
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:26 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a37da0

kde-frameworks/knewstuff: drop 5.114.0

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

 kde-frameworks/knewstuff/Manifest |  1 -
 kde-frameworks/knewstuff/knewstuff-5.114.0.ebuild | 49 ---
 2 files changed, 50 deletions(-)

diff --git a/kde-frameworks/knewstuff/Manifest 
b/kde-frameworks/knewstuff/Manifest
index 8bd60330d9ad..ff5b58b2985c 100644
--- a/kde-frameworks/knewstuff/Manifest
+++ b/kde-frameworks/knewstuff/Manifest
@@ -1,4 +1,3 @@
 DIST knewstuff-5.113.0.tar.xz 3389048 BLAKE2B 
577416c464b745ba508b49b694a9b7d96c78c186458b853dbe5c3295636fbbfea110a56777b96e080c6b6a60fdfa32e02492deddebcd7c1e7c0bb26b61034588
 SHA512 
d532d6c9bb245711ce5d3e9cd22d935d064182e72da85108f8d1ed0a8dfbcaf522e15cba1017807faae21c61c9774f051bdbea0ee41e247dafac4ad0a328f1b2
-DIST knewstuff-5.114.0.tar.xz 3389224 BLAKE2B 
a5f9a9f8cb883e6d8370734d5f9085d3a77b61b2deaeaa5574764b2d4291be110f2830ed66fa3558f97bc9c25775fe3a5207f1cc5a64ffef99de9f19112e5e5c
 SHA512 
91890a7c49e8e214fc175aeb1896fec4d6bd06d859d515a97936d96dacb4914f86268d6076f11e92633326c4dda868d8146423a25af8ac1009d7420b996a564a
 DIST knewstuff-5.115.0.tar.xz 3389164 BLAKE2B 
663e8695f6f5b2f470926737d36fd2117d19661bfcd4e46e2b7a9ea22a2da1b9ddeb7e15d323d13dd1fe2e37ca8bc81f57782d0c9f8fafe4c145752cf34e7182
 SHA512 
32b9d833d20932b7d6b20cc77812db1a3b01db4e581600c145dafc24becf27b7b72efb4c5f20a1b83b598346696198378095bc28efbfaa24f9944a62d5be29e4
 DIST knewstuff-5.249.0.tar.xz 3132700 BLAKE2B 
20527166a79b8e66ba09f994e7d2afd564b7471d0323fb8fd12c5608cb7336b21d13a75865f6c17226577f0b9d34108fb83d824765d2ee724f1a9a0d3774adb5
 SHA512 
2c72b2431915e2e435fe9c1f606737008fe4017e18c55c0adf98491764580ce893f93c31508a91f08cde97a0bde7f7cde2e703f90a1097872c62b45ff4b56b52

diff --git a/kde-frameworks/knewstuff/knewstuff-5.114.0.ebuild 
b/kde-frameworks/knewstuff/knewstuff-5.114.0.ebuild
deleted file mode 100644
index 84ef283464f3..
--- a/kde-frameworks/knewstuff/knewstuff-5.114.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for downloading and sharing additional application data"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="opds"
-
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/attica-${PVCUT}*:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kcompletion-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kitemviews-${PVCUT}*:5
-   =kde-frameworks/kpackage-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-   opds? ( =kde-frameworks/syndication-${PVCUT}*:5 )
-"
-RDEPEND="${DEPEND}
-   >=kde-frameworks/kirigami-${PVCUT}:5
-"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package opds KF5Syndication)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kparts/

2024-02-11 Thread Andreas Sturmlechner
commit: 6297ea53d5b2d055052d33f539a8a8fc12f81cbc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:31 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6297ea53

kde-frameworks/kparts: drop 5.114.0

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

 kde-frameworks/kparts/Manifest  |  1 -
 kde-frameworks/kparts/kparts-5.114.0.ebuild | 32 -
 2 files changed, 33 deletions(-)

diff --git a/kde-frameworks/kparts/Manifest b/kde-frameworks/kparts/Manifest
index 7f8a8410741a..32d812d0c595 100644
--- a/kde-frameworks/kparts/Manifest
+++ b/kde-frameworks/kparts/Manifest
@@ -1,4 +1,3 @@
 DIST kparts-5.113.0.tar.xz 2473672 BLAKE2B 
1256beae4bb5ae6139c8a7f9942d18fb56b01bcb5b67dc8d25d93b845db36f6588f025e3c49ad60f0c38c744c3a5217ef909364936ad4b67ff0e4040bc52edb9
 SHA512 
a7953f82eaf5bb308da13173114c440e96f4de15058de622e5be89571c8bd330d099f5c594c0fddf768d4ef2f3fd1f12eca9a96e836214e9ba78a2437b4ec586
-DIST kparts-5.114.0.tar.xz 2473824 BLAKE2B 
7730ec985c7755e2ebeaeb7dff5a0dd74c0a8ccbe030bc05dfdda61fab46b2863a9dffd76737c0b3a96709ad33f26b38c527d36c8580455ad1a1ac1d8fc212b4
 SHA512 
0423fb4eb4044e492cf368d1d327d9c3e2dafdaac0fa0d6213862453d20efa25cc45f217254c8c036786736f171039954a1d4995501a7f7bbaaa23cd7514a345
 DIST kparts-5.115.0.tar.xz 2473780 BLAKE2B 
cca29730261ce176958a7aab432df61579ab4ae54d1cb49e7e18cb41b4e60771fce7c6840a89f71939958af3a530260a2615692ed24e60745c5806faabf724b4
 SHA512 
3afdc39d75e8f4f6bd43e40c3d23178f1be2cae3606d797bcd544e43e3f105038b587c6c1b0898fc40728c7742ba11f92592c9ce1531225d02dbabfc27e10aad
 DIST kparts-5.249.0.tar.xz 2433444 BLAKE2B 
9f6c68cf232ca84cc27585adfcf9bc2f25828592e6ba87f88475d5c22599bc33fb9fe8eb6ef3c667d94c6402ff7b6c8410962403a472365b1fc1d240b636560d
 SHA512 
a780a3c1b41118892e559939fc16ef72c394ddc4ab957472b0848a255d2b103aad9a1faba39543dd93dffeff2f13f2e110307187379a99ba85f5e8fe682d010a

diff --git a/kde-frameworks/kparts/kparts-5.114.0.ebuild 
b/kde-frameworks/kparts/kparts-5.114.0.ebuild
deleted file mode 100644
index fdded8abb081..
--- a/kde-frameworks/kparts/kparts-5.114.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework providing elaborate user-interface components"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kiconthemes-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kjobwidgets-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-   =kde-frameworks/kxmlgui-${PVCUT}*:5
-"
-DEPEND="${RDEPEND}
-   >=kde-frameworks/ktextwidgets-${PVCUT}:5
-"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kdesu/

2024-02-11 Thread Andreas Sturmlechner
commit: 26538c3b594f63306baf344df9f214f374ca78b7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:08 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26538c3b

kde-frameworks/kdesu: drop 5.114.0

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

 kde-frameworks/kdesu/Manifest |  1 -
 kde-frameworks/kdesu/kdesu-5.114.0.ebuild | 33 ---
 2 files changed, 34 deletions(-)

diff --git a/kde-frameworks/kdesu/Manifest b/kde-frameworks/kdesu/Manifest
index 2e48d5cb10da..67fcb57af9b2 100644
--- a/kde-frameworks/kdesu/Manifest
+++ b/kde-frameworks/kdesu/Manifest
@@ -1,4 +1,3 @@
 DIST kdesu-5.113.0.tar.xz 56804 BLAKE2B 
6307efa31396a4a1cc4794c1a8ddfa52b351208a0d4f60cdb6092c6ca016ac333ee541e73aab54a4eb85f99d40506e34bc2b10ae6b5347e3340ff4c36b68a8be
 SHA512 
42694b3004244a97623aa22a348f3368755e357522686943a49d836a89ed6dc48fb95dbb49861b10ebec23375a6290300ec0c061d7c0e258929471adf6d58534
-DIST kdesu-5.114.0.tar.xz 56788 BLAKE2B 
d48c9b09394b74e670d5dca7d7b9405e886e49ed8c96058279fb04b8e5de8a488e5cbdce48baa2f7c144218dd7be81ec24d3b9a9aabacf87b1417b464411b951
 SHA512 
bc5cdb67f2de29706575bda901c8fbe32fee5db221f3b4d6a92e50dc448e3eb62f0075d345b7d46c640de9dbff072e418ebf95e36948bfef274b05c27de404bf
 DIST kdesu-5.115.0.tar.xz 56812 BLAKE2B 
d37c45d6ff7d0fa1f2dcc452c7ce3bfb1daca057d691c33b91c08aff1eb53686d99a089ba901cc3e001c7f019bb23bde999d66e5b449252c831de8cad8aab682
 SHA512 
097a4ad960fd6f47600a70b6117f8f3517bc627c3bd32616b95acedddb75d49cf44ac07ecd7fad139ac366463741e3358b96e0d2b1af7ab6fc46e009bdbf3e3d
 DIST kdesu-5.249.0.tar.xz 56456 BLAKE2B 
9d0edfb52634bb55e0fe91239ee3094e2ab8d2713e657383a010ad29c1eda6780ce85f160620cd12dd324e5eab90f883f2c388219f41c70aefba27add5749ab3
 SHA512 
95856e9b4a7a96435d4e2f9e111bd855eb04b41620bf20914f9e23344f9d6099c4cd7b93460e319fdd78942dca2dcb897cdd042ee47fe6340143a2ed4e391f05

diff --git a/kde-frameworks/kdesu/kdesu-5.114.0.ebuild 
b/kde-frameworks/kdesu/kdesu-5.114.0.ebuild
deleted file mode 100644
index 7d1b46b82c4e..
--- a/kde-frameworks/kdesu/kdesu-5.114.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="true"
-PVCUT=$(ver_cut 1-2)
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework to handle super user actions"
-
-LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="X"
-
-RDEPEND="
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kpty-${PVCUT}*:5
-   X? ( x11-libs/libX11 )
-"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )
-"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package X X11)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kinit/

2024-02-11 Thread Andreas Sturmlechner
commit: 9e2da13a0e3f9242cb96f5ef12333ab7736be706
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:19 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2da13a

kde-frameworks/kinit: drop 5.114.0

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

 kde-frameworks/kinit/Manifest |  1 -
 kde-frameworks/kinit/kinit-5.114.0.ebuild | 48 ---
 2 files changed, 49 deletions(-)

diff --git a/kde-frameworks/kinit/Manifest b/kde-frameworks/kinit/Manifest
index 80be2c815030..080e63d5d5ec 100644
--- a/kde-frameworks/kinit/Manifest
+++ b/kde-frameworks/kinit/Manifest
@@ -1,3 +1,2 @@
 DIST kinit-5.113.0.tar.xz 2405000 BLAKE2B 
b806be2b11075af4d2700ff77aea0deafbbe4163742e328a8ed8c3e910e07384b62aa168aca40ef9bf62965a77cf294babb487a19ddf6bce408682e903118218
 SHA512 
d7c5630865d25e650ffb96fc42304a97d241be8e5218f78f9517b903835c712c1a88b13a70e66534682e9da5225575fe98e43a73a552412b9744e22c4e668d1f
-DIST kinit-5.114.0.tar.xz 2404952 BLAKE2B 
73567ec7b3d18c0fe653049b1c97b04009dcab6bdee1547614b353472a6fe01312eefbd4dd8c11c06346dd3dbab2c43e22b2db78148c63e37f5de4de79d318f8
 SHA512 
13553f57f8af390ca1dc82bc34d94359359dad206f2cfd077913baedc92fbcb6b98e9d0fe8ef2df5611d1a117503aad4a65540f5de77cfd354fef4bdbccdf421
 DIST kinit-5.115.0.tar.xz 2405120 BLAKE2B 
92bb1ec3437b926942e1fea6133c36f1d7f930d862209b5849736f9d8cc375f6dc527fda13b17f88ee0a5de92a66edc4a3d5297cf6f644e5dfc38b6cbd037919
 SHA512 
bb8026aee90a2be5314ad941c31554f5f9e59ed387fc4cf393486485ad530bdb8a6cb8f020f90472c5241190404730ed0a70025ea24b9536bba5ba5bc123ea7f

diff --git a/kde-frameworks/kinit/kinit-5.114.0.ebuild 
b/kde-frameworks/kinit/kinit-5.114.0.ebuild
deleted file mode 100644
index 54086a9357a4..
--- a/kde-frameworks/kinit/kinit-5.114.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Helper library to speed up start of applications on KDE 
workspaces"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+caps +man X"
-
-RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/ki18n-${PVCUT}*:5
-   =kde-frameworks/kio-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X?]
-   caps? ( sys-libs/libcap )
-   X? (
-   x11-libs/libX11
-   x11-libs/libxcb
-   )
-"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package caps Libcap)
-   $(cmake_use_find_package man KF5DocTools)
-   -DWITH_X11=$(usex X)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kded/

2024-02-11 Thread Andreas Sturmlechner
commit: 37f012751a698f7b0d2325b60e66b9978ad853fb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:05 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f01275

kde-frameworks/kded: drop 5.114.0

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

 kde-frameworks/kded/Manifest|  1 -
 kde-frameworks/kded/kded-5.114.0.ebuild | 37 -
 2 files changed, 38 deletions(-)

diff --git a/kde-frameworks/kded/Manifest b/kde-frameworks/kded/Manifest
index 8a273dd4e2b0..2eb01fda34b5 100644
--- a/kde-frameworks/kded/Manifest
+++ b/kde-frameworks/kded/Manifest
@@ -1,4 +1,3 @@
 DIST kded-5.113.0.tar.xz 41036 BLAKE2B 
7fa0fddc68893665621b1dc2a153788a8c9c43fd1ac22b68992ce0c2e5a1211580643b12b61baae110658bb2197f3c1720cf9a129d89ac5d2d7aa65968bc4544
 SHA512 
a23dbec239959bd0cc1602d08f76cac419c862d6af9f286c5b928c5500eb22dec49ac53b9d0d1966d0e03a7e8f56fc611f2e6b29c3647c200116a67d9cdd855f
-DIST kded-5.114.0.tar.xz 41044 BLAKE2B 
cb1c8fe990bcde66620c484f507d72aa5a16cdb45fb159f9a7d15b7d7496b55bd44dbbe44e4970c62ce5970e2bf883649ad789d335892dfd9f94f3ee5eb25553
 SHA512 
1372cc383627227c330d8e7ef72c80c7316174efbb52f6ac3e315562cdc2a4eee27b5239ace91fe405dca1dc7aa92575f8745723056793187c1bbcbb4fb6
 DIST kded-5.115.0.tar.xz 41064 BLAKE2B 
bbff8afe58d72f43ac6daab92e5b981465ca1b95d2e28089a847301430c958d6fa1f7909b5e05e3422bc219ba2c22ec8ba073b510b45680e0d948af6d5317da7
 SHA512 
880fb068bcd0ebbbc07ec0396a58d763a8b9f5f431874748b4f8d88c79c06d670cd01fc706e60f2f87816a7bc64b4b4e4e367eedc04bc2c160a1a64fe7f68fdb
 DIST kded-5.249.0.tar.xz 32208 BLAKE2B 
4210114ab7b8b38cb7effd4527a55e289dc9330a0ef09a76477a6b6d702e6ade9ff82fe56a8c154bbc8a348a04ccfa35122479af3c38bffd12a349ba9c8a73b9
 SHA512 
6e9b131286fb5b8dae1c6e5c6ecf08def88ef8eb5b625f6e3c71197cd977f58b16b81399ff2807809a4753f5096c9bbca79595583e0700ef7f90e61eb69ad2d3

diff --git a/kde-frameworks/kded/kded-5.114.0.ebuild 
b/kde-frameworks/kded/kded-5.114.0.ebuild
deleted file mode 100644
index a9d509d3aa93..
--- a/kde-frameworks/kded/kded-5.114.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Central daemon of KDE workspaces"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+man"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5[dbus]
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package man KF5DocTools)
-   )
-
-   ecm_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kglobalaccel/

2024-02-11 Thread Andreas Sturmlechner
commit: fca1845df0d3a9f7c62dc621f7fd16e02f96fe8a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:13 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca1845d

kde-frameworks/kglobalaccel: drop 5.114.0

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

 kde-frameworks/kglobalaccel/Manifest   |  1 -
 .../kglobalaccel/kglobalaccel-5.114.0.ebuild   | 52 --
 2 files changed, 53 deletions(-)

diff --git a/kde-frameworks/kglobalaccel/Manifest 
b/kde-frameworks/kglobalaccel/Manifest
index ead6c375ce03..b4cba8b132a0 100644
--- a/kde-frameworks/kglobalaccel/Manifest
+++ b/kde-frameworks/kglobalaccel/Manifest
@@ -1,4 +1,3 @@
 DIST kglobalaccel-5.113.0.tar.xz 2338900 BLAKE2B 
a56f6e2d201a05a0e3c0c27ed081ed9ae149d1123e6e9eee2ef2fa374f989a4f30f3f8a38eae663ed3c2057f25839d2d33df85e575b102e09aa94b536e2bb9f5
 SHA512 
cded1552aafd6002355e8a5cc051b31b5cff88373e55ae5e799a3be34a2faaec5c18492891103dacac64eeaf3a416808219bf385e3fdb57f3dd49c38a7b58020
-DIST kglobalaccel-5.114.0.tar.xz 2339024 BLAKE2B 
036b6e012a3a2a4cc72b532e4ea8d4b4c40a8ef8fc08c73e35175f6481a82678b2869deef6ef12202f90e54d22a5c046c44e1ff04c60ab416d7850d13bd46beb
 SHA512 
c18ad3d46d33f3b73f0b9b906b0c943a6f37ccbc018d7420fb2433368996479907daa436c4e37211731f13a778b4d100c20e3d179215663d3bb77baf0a13274e
 DIST kglobalaccel-5.115.0.tar.xz 2338984 BLAKE2B 
a7c3a5ab9037930bc0b031b1822fc2acf61d859924181b4a1cfad6479876f84c3cd3d13d03e62e8810c21c0c1ef60be0ea754e959b0ef2d2d60c367fd43a2311
 SHA512 
0cf7649637d6aac4fa2e0d99392663593e2781f2b5de2cdf501b5d9ce20fc93febf24e8a452fe3592a566d72af4d266545c386d04f785dc307e6027ee334b312
 DIST kglobalaccel-5.249.0.tar.xz 2303752 BLAKE2B 
adf67df17b6a9d6ca3bbcc7c0554bc5fb23b31d9056c01472d7c10f9cecb9cef5dad3c6fdd6aab64f6509b0cedf352705383a0e52202fd415526571faea434f8
 SHA512 
e7d8689f79323a488eea241b70af5211e68c69a948a43881f721d8f8001ed05c074c7592e00b5df86a18b61babaae3d6c33ff85b98f18bde3ab5f082fb00900f

diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.114.0.ebuild 
b/kde-frameworks/kglobalaccel/kglobalaccel-5.114.0.ebuild
deleted file mode 100644
index f9b4b69210a2..
--- a/kde-frameworks/kglobalaccel/kglobalaccel-5.114.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework to handle global shortcuts"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="kf6compat"
-
-RESTRICT="test" # requires installed instance
-
-COMMON_DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kcrash-${PVCUT}*:5
-   =kde-frameworks/kdbusaddons-${PVCUT}*:5
-   =kde-frameworks/kwindowsystem-${PVCUT}*:5[X]
-   x11-libs/libxcb
-   x11-libs/xcb-util-keysyms
-"
-DEPEND="${COMMON_DEPEND}
-   test? (
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   =kde-frameworks/kdeclarative-${PVCUT}*:5
-   )
-"
-RDEPEND="${COMMON_DEPEND}
-   kf6compat? ( kde-plasma/kglobalacceld:6 )
-"
-BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKF6_COMPAT_BUILD=$(usex kf6compat)
-   )
-   ecm_src_configure
-}
-
-src_test() {
-   XDG_CURRENT_DESKTOP="KDE" ecm_src_test # bug 789342
-}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kemoticons/

2024-02-11 Thread Andreas Sturmlechner
commit: 0e9010f302c2b6f49aa0f9fc5d9d04852fbce1e4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 11 20:09:11 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 11 20:15:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9010f3

kde-frameworks/kemoticons: drop 5.114.0

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

 kde-frameworks/kemoticons/Manifest |  1 -
 .../kemoticons/kemoticons-5.114.0.ebuild   | 27 --
 2 files changed, 28 deletions(-)

diff --git a/kde-frameworks/kemoticons/Manifest 
b/kde-frameworks/kemoticons/Manifest
index 76e997c072af..20338105b0b1 100644
--- a/kde-frameworks/kemoticons/Manifest
+++ b/kde-frameworks/kemoticons/Manifest
@@ -1,3 +1,2 @@
 DIST kemoticons-5.113.0.tar.xz 1700804 BLAKE2B 
5b560594a8335b416ad21d128a7845c2b5e023a23e539d9f8373b504bc73a49039ba148fa363cad61efdd55fe347c81571ed70b79e3c7b26907dd2208182835b
 SHA512 
03572fedcd8b4eca95435118889837b97caef9ec20b9596ae8eebb5983aa98eda0f0da8de439152de29bb591c11285033eafe9990746c2234a9cca760d3f65cf
-DIST kemoticons-5.114.0.tar.xz 1700640 BLAKE2B 
f6d68f4adc4ab06c33a53cd6f1dae835b8541276af27709351a0cb415cca162e545caaf4123350c1ab2d3002caeef0a2e51c0c1b53fab85410bc7e7f26a9
 SHA512 
9e84680cda3f506343f58b90cf033dddeb9e46df66653506eb7ec3c8c79b41df8b6ea73389b09433f41ab3871451ed03e4a7db627c6fc524d96c9b8442424d14
 DIST kemoticons-5.115.0.tar.xz 1700720 BLAKE2B 
06a62962f007e273d8d3dcff9c4bec24c4982707f11931a19a87e8712ce7589fd325bfb42dc974e6907df79078a4445711549522d052834f61f395d93ccc689f
 SHA512 
412729a4c236f27d584d508de5104b7a9ac451758427d5595c44ff07c045b91c69f024ea589b3b1f8eca95eb827deab789870ca36acb5cf6a06b3b22169604dc

diff --git a/kde-frameworks/kemoticons/kemoticons-5.114.0.ebuild 
b/kde-frameworks/kemoticons/kemoticons-5.114.0.ebuild
deleted file mode 100644
index e9102b984fa0..
--- a/kde-frameworks/kemoticons/kemoticons-5.114.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.9
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for converting text emoticons to graphical 
representations"
-LICENSE="LGPL-2.1+"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE=""
-
-# requires running kde environment
-RESTRICT="test"
-
-DEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   =kde-frameworks/karchive-${PVCUT}*:5
-   =kde-frameworks/kconfig-${PVCUT}*:5
-   =kde-frameworks/kcoreaddons-${PVCUT}*:5
-   =kde-frameworks/kservice-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"



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

2024-02-11 Thread Fabian Groffen
commit: 2582b32d9016fdda44afd8cbbfbb198584e14c41
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Feb 11 20:05:31 2024 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Feb 11 20:05:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2582b32d

mail-mta/exim-4.97.1-r3: update regex memory patch

Include 84add256b346 from upstream.

Bug: https://bugs.gentoo.org/922780
Signed-off-by: Fabian Groffen  gentoo.org>

 ...exim-4.97.1-r2.ebuild => exim-4.97.1-r3.ebuild} |  0
 .../files/exim-4.97.1-memory-usage-bug-3047.patch  | 35 +-
 2 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/mail-mta/exim/exim-4.97.1-r2.ebuild 
b/mail-mta/exim/exim-4.97.1-r3.ebuild
similarity index 100%
rename from mail-mta/exim/exim-4.97.1-r2.ebuild
rename to mail-mta/exim/exim-4.97.1-r3.ebuild

diff --git a/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch 
b/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
index 75e5d1a42781..b8f4eb9c5eef 100644
--- a/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
+++ b/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
@@ -10,6 +10,11 @@ Date: Fri, 26 Jan 2024 21:58:59 +
 Subject: [PATCH] ACL: in "regex" condition, release store every thousand
  lines.  Bug 3047
 
+From: Jeremy Harris 
+Date: Sun, 11 Feb 2024 13:57:18 + (+)
+Subject: Use non-releaseable memory for regex match strings. Bug 3047
+Broken-by: 35aacb69f5c8
+
 
 diff --git a/src/src/exim.c b/src/src/exim.c
 --- a/src/exim.c
@@ -110,7 +115,7 @@ diff --git a/src/src/regex.c b/src/src/regex.c
  
  /* precompile our regexes */
  while ((regex_string = string_nextinlist(, , NULL, 0)))
-@@ -58,7 +57,9 @@ while ((regex_string = string_nextinlist(, , NULL, 
0)))
+@@ -58,10 +57,19 @@ while ((regex_string = string_nextinlist(, , 
NULL, 0)))
  ri->pcre_text = regex_string;
  ri->next = re_list_head;
  re_list_head = ri;
@@ -120,6 +125,34 @@ diff --git a/src/src/regex.c b/src/src/regex.c
  return re_list_head;
  }
  
++
++/* Check list of REs against buffer, returning OK for (first) match,
++else FAIL.  On match return allocated result strings in regex_vars[]. 
++
++We use the perm-pool for that, so that our caller can release
++other allocations.
++*/
+ static int
+ matcher(pcre_list * re_list_head, uschar * linebuffer, int len)
+ {
+@@ -75,6 +82,9 @@ for (pcre_list * ri = re_list_head; ri; ri = ri->next)
+   /* try matcher on the line */
+   if ((n = pcre2_match(ri->re, (PCRE2_SPTR)linebuffer, len, 0, 0, md, 
pcre_gen_mtc_ctx)) > 0)
+ {
++int save_pool = store_pool;
++store_pool = POOL_PERM;
++
+ Ustrncpy(regex_match_string_buffer, ri->pcre_text,
+ sizeof(regex_match_string_buffer)-1);
+ regex_match_string = regex_match_string_buffer;
+@@ -87,6 +97,7 @@ for (pcre_list * ri = re_list_head; ri; ri = ri->next)
+   regex_vars[nn-1] = string_copyn(linebuffer + ovec[off], len);
+   }
+ 
++store_pool = save_pool;
+ return OK;
+ }
+   }
 @@ -112,7 +113,8 @@ FILE * mbox_file;
  pcre_list * re_list_head;
  uschar * linebuffer;



[gentoo-commits] proj/portage:master commit in: lib/portage/

2024-02-11 Thread Zac Medico
commit: a1024a6d02ca3a55f86525e0d8d5089e754d3713
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb 11 05:38:58 2024 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb 11 19:46:55 2024 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a1024a6d

spawn_wrapper: Make pre_exec function picklable

Local functions are unpicklable, which triggered this error
with the multiprocessing "spawn" start method:

AttributeError: Can't pickle local object 
'spawn_wrapper.__call__.._pre_exec'

Bug: https://bugs.gentoo.org/924273
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/_selinux.py | 17 -
 lib/portage/process.py  | 26 ++
 2 files changed, 26 insertions(+), 17 deletions(-)

diff --git a/lib/portage/_selinux.py b/lib/portage/_selinux.py
index bf6ad24895..5ae1b4e715 100644
--- a/lib/portage/_selinux.py
+++ b/lib/portage/_selinux.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Don't use the unicode-wrapped os and shutil modules here since
@@ -6,6 +6,7 @@
 import os
 import shutil
 import warnings
+from functools import partial
 
 try:
 import selinux
@@ -134,14 +135,12 @@ class spawn_wrapper:
 
 def __call__(self, *args, **kwargs):
 if self._con is not None:
-pre_exec = kwargs.get("pre_exec")
-
-def _pre_exec():
-if pre_exec is not None:
-pre_exec()
-setexec(self._con)
-
-kwargs["pre_exec"] = _pre_exec
+pre_exec = partial(setexec, self._con)
+kwargs["pre_exec"] = (
+portage.process._chain_pre_exec_fns(pre_exec, 
kwargs["pre_exec"])
+if kwargs.get("pre_exec")
+else pre_exec
+)
 
 return self._spawn_func(*args, **kwargs)
 

diff --git a/lib/portage/process.py b/lib/portage/process.py
index a33e7b4747..6cad250e34 100644
--- a/lib/portage/process.py
+++ b/lib/portage/process.py
@@ -18,7 +18,7 @@ import os as _os
 import warnings
 
 from dataclasses import dataclass
-from functools import lru_cache
+from functools import lru_cache, partial
 from typing import Any, Optional, Callable, Union
 
 from portage import os
@@ -1383,18 +1383,28 @@ def _start_fork(
 return pid
 
 
-class _setup_pipes_after_fork:
-def __init__(self, target, fd_pipes):
+class _chain_pre_exec_fns:
+"""
+Wraps a target function to call pre_exec functions just before
+the original target function.
+"""
+
+def __init__(self, target, *args):
 self._target = target
-self._fd_pipes = fd_pipes
+self._pre_exec_fns = args
 
 def __call__(self, *args, **kwargs):
-for fd in set(self._fd_pipes.values()):
-os.set_inheritable(fd, True)
-_setup_pipes(self._fd_pipes, close_fds=False, inheritable=True)
+for pre_exec in self._pre_exec_fns:
+pre_exec()
 return self._target(*args, **kwargs)
 
 
+def _setup_pipes_after_fork(fd_pipes):
+for fd in set(fd_pipes.values()):
+os.set_inheritable(fd, True)
+_setup_pipes(fd_pipes, close_fds=False, inheritable=True)
+
+
 def _start_proc(
 target: Callable[..., None],
 args: Optional[tuple[Any, ...]] = (),
@@ -1419,7 +1429,7 @@ def _start_proc(
 # which ForkProcess does not handle because its target
 # function does not necessarily exec.
 if fd_pipes and multiprocessing.get_start_method() == "fork":
-target = _setup_pipes_after_fork(target, fd_pipes)
+target = _chain_pre_exec_fns(target, partial(_setup_pipes_after_fork, 
fd_pipes))
 fd_pipes = None
 
 proc = ForkProcess(



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

2024-02-11 Thread Arthur Zamarin
commit: a35428de0b38e47cbf9a3d7c95a90f8f5f524346
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Feb 11 19:48:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Feb 11 19:48:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a35428de

dev-python/sqlalchemy: add 2.0.26

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

 dev-python/sqlalchemy/Manifest |   1 +
 dev-python/sqlalchemy/sqlalchemy-2.0.26.ebuild | 111 +
 2 files changed, 112 insertions(+)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index babf17b71f8a..6fd875bdb62f 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -1,2 +1,3 @@
 DIST SQLAlchemy-1.4.51.tar.gz 8521574 BLAKE2B 
216550225c11d5367e5a50ec321a09078b4677973cf33eee1874beb9f855cfeb629a6df4d05e8ecc5b22052628de5cae2e468d18d50502a4560bd4ca7d85ab7d
 SHA512 
be27a41f442428cdb5cc6a20af2de9424384457475d16a7d7167b718256e208766e2ba8d53bef2b314aafe87b3d9b0c5f9af6e4c03f53fb194671cfaca6e50b5
 DIST SQLAlchemy-2.0.25.tar.gz 9508797 BLAKE2B 
88f8927af1a20bdc3697e90112d515a04c64879bc806ae655d326f22322210853c2995ad884cb510a15d14ae12eb7612d867f701ab8f938ec0227abaab642497
 SHA512 
60b31a167f46a623f76e349f6a3f5a1696e1a04aee8dec2750396c715831a242a96e281ee7fcbfa26f82e6318573ab58e97d21bd93d02bbe3ff962777d809146
+DIST SQLAlchemy-2.0.26.tar.gz 9526590 BLAKE2B 
b68db1bd26106d199559ab80381c33c2bc0fd767f7a25e90216ddb93e2207fae5b85f369536f3531cb2699f6ed815a18f60860f0003c36d74a3c61080faeb1f2
 SHA512 
62532253ba6dee0c8e5c89487459ce783eb3d00cdcaf645efa5b68a03b62cc92ab7b447c791ac05bd552910edd223a390ab930a16b6234afb5dbe6d9c05b997a

diff --git a/dev-python/sqlalchemy/sqlalchemy-2.0.26.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-2.0.26.ebuild
new file mode 100644
index ..f6836f064aa4
--- /dev/null
+++ b/dev-python/sqlalchemy/sqlalchemy-2.0.26.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_REQ_USE="sqlite?"
+
+inherit distutils-r1 multiprocessing optfeature pypi
+
+MY_PN="SQLAlchemy"
+DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
+HOMEPAGE="
+   https://www.sqlalchemy.org/
+   https://pypi.org/project/SQLAlchemy/
+   https://github.com/sqlalchemy/sqlalchemy/
+"
+SRC_URI="$(pypi_sdist_url --no-normalize "${MY_PN}")"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="examples +sqlite test"
+
+RDEPEND="
+   >=dev-python/typing-extensions-4.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   $(python_gen_impl_dep sqlite)
+   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e '/greenlet/d' setup.cfg || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_IGNORE=(
+   test/ext/mypy/test_mypy_plugin_py3k.py
+   test/typing/test_mypy.py
+   # hardcode call counts specific to Python versions
+   test/aaa_profiling
+   )
+   local EPYTEST_DESELECT=(
+   # warning tests are unreliable
+   test/base/test_warnings.py
+   )
+   local sqlite_version=$(sqlite3 --version | cut -d' ' -f1)
+   case ${EPYTHON} in
+   pypy3)
+   EPYTEST_DESELECT+=(
+   
test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
+   
test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_multi_elem_varg
+   
test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_one_elem_varg
+   
test/engine/test_processors.py::PyDateProcessorTest::test_date_invalid_string
+   
test/engine/test_processors.py::PyDateProcessorTest::test_datetime_invalid_string
+   
test/engine/test_processors.py::PyDateProcessorTest::test_time_invalid_string
+   
"test/dialect/test_sqlite.py::TestTypes_sqlite+pysqlite_${sqlite_version//./_}::test_cant_parse_datetime_message"
+   
"test/dialect/test_suite.py::ReturningGuardsTest_sqlite+pysqlite_${sqlite_version//./_}"::test_{delete,insert,update}_single
+   
test/base/test_utils.py::ImmutableDictTest::test_pep584
+   )
+   ;;
+   esac
+   if ! has_version 

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

2024-02-11 Thread Arthur Zamarin
commit: 99456f863f11447689626131de75797c75fe8c94
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Feb 11 19:30:53 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Feb 11 19:30:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99456f86

dev-python/httpx-socks: add 0.8.1

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

 dev-python/httpx-socks/Manifest |  1 +
 dev-python/httpx-socks/httpx-socks-0.8.1.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/dev-python/httpx-socks/Manifest b/dev-python/httpx-socks/Manifest
index 99495a8dec0e..04bf6739b27a 100644
--- a/dev-python/httpx-socks/Manifest
+++ b/dev-python/httpx-socks/Manifest
@@ -1 +1,2 @@
 DIST httpx-socks-0.8.0.gh.tar.gz 15285 BLAKE2B 
1da3b2be273e62452d96c8e07f38cf3c488bb89704ab377565feecafc1f96e9b96b615dfca4c3721c295414005014f868982a440ed47f3454814545aa6c7
 SHA512 
f58555670bc689002633daf3cf373641cbab6417636d16e878d5f9fc796b8bf7111d7c6985909590ccaeedb95793f589676e7f36c217330cbf46b4778319a4b7
+DIST httpx-socks-0.8.1.gh.tar.gz 15289 BLAKE2B 
08a8431c5818ea653ea27a0dbc3de6708cb81a7129cda779e8c8cbe3d497ccdad0ed646faf06c5138f6c136a74d4c1b06e6e3920fc5362d471aa03372721cd33
 SHA512 
804e609826eff4c9e321440b657f3c96d688bf27a4e9a1fdd6b07a410f7f7671fef840403d2231a48b53133a8a4db9522f6c46467e78dc2443270fea4116d66e

diff --git a/dev-python/httpx-socks/httpx-socks-0.8.1.ebuild 
b/dev-python/httpx-socks/httpx-socks-0.8.1.ebuild
new file mode 100644
index ..04525123e363
--- /dev/null
+++ b/dev-python/httpx-socks/httpx-socks-0.8.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Proxy (HTTP, SOCKS) transports for httpx"
+HOMEPAGE="
+   https://github.com/romis2012/httpx-socks/
+   https://pypi.org/project/httpx-socks/
+"
+# no tests in sdist, as of 0.7.6
+SRC_URI="
+   https://github.com/romis2012/httpx-socks/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/httpx-0.21.0[${PYTHON_USEDEP}]
+   >=dev-python/httpcore-0.17.3[${PYTHON_USEDEP}]
+   >=dev-python/python-socks-2.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-python/hypercorn-0.12.0[${PYTHON_USEDEP}]
+   >=dev-python/pytest-asyncio-0.18.3[${PYTHON_USEDEP}]
+   >=dev-python/pytest-trio-0.7.0[${PYTHON_USEDEP}]
+   >=dev-python/starlette-0.19.1[${PYTHON_USEDEP}]
+   >=dev-python/trio-0.18.0[${PYTHON_USEDEP}]
+   >=dev-python/yarl-1.6.3[${PYTHON_USEDEP}]
+   dev-python/tiny-proxy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin dependencies
+   sed -i -e 's:,<[0-9.]*::' setup.py || die
+
+   distutils-r1_src_prepare
+}



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

2024-02-11 Thread Arthur Zamarin
commit: d7faaa6111d3e32665609165c83c09eaad79f8db
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Feb 11 19:14:46 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Feb 11 19:14:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7faaa61

dev-python/cachelib: add 0.12.0

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

 dev-python/cachelib/Manifest   |  1 +
 dev-python/cachelib/cachelib-0.12.0.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/cachelib/Manifest b/dev-python/cachelib/Manifest
index cfb4d02fc754..52ca3c3790dc 100644
--- a/dev-python/cachelib/Manifest
+++ b/dev-python/cachelib/Manifest
@@ -1,2 +1,3 @@
 DIST cachelib-0.10.2.gh.tar.gz 29249 BLAKE2B 
2f15e59f1f3ff2dfabed4076e0e47888d16421b7e94cbe13903a39641d903e044c6879aec3a7ad1673e0bb19d7b668d69316bee9b8f8bb4176125de93bc547df
 SHA512 
7168703bdca228982216c65cd1a765d727813e47a0522d5e84258251b8aebde4d6d561850f97232b4e6c054fe09487e35a251b3992682145ef49c5ff1212488b
 DIST cachelib-0.11.0.gh.tar.gz 29173 BLAKE2B 
f67a33b59d805997c89ee8ec1cbd268b2a12b459a56a3c7161a7fd660e72969c02cd94fd2048f54b256a25e050ce558b20f99d0b44a44dd51ed685894ce0123b
 SHA512 
fd0d271866f09aa93b93579959b92e1d24e220bd3635fc0d16bee93119710afcaa8d7443c6dba5819c3b3ff841d8fe9eff1ebb69db496f9c56a74120644f8e52
+DIST cachelib-0.12.0.gh.tar.gz 30768 BLAKE2B 
5d147e63d0be58c7134f851cea79a002aa89b5364aec5c0e0906bfb9573578b094d71f361265b15eb519da897eed069d4aaeae1a8599176a95c074186018a713
 SHA512 
a35bfa9dfb6db8ae0e6fcdad86e5221d82144d5c0fcdb046b951d193f70f706712800b27c27825f8020314c521eb568131257ce0e20dc820cb3f7f8ffbf2650f

diff --git a/dev-python/cachelib/cachelib-0.12.0.ebuild 
b/dev-python/cachelib/cachelib-0.12.0.ebuild
new file mode 100644
index ..faaba7e5c123
--- /dev/null
+++ b/dev-python/cachelib/cachelib-0.12.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of cache libraries in the same API interface. 
Extracted from werkzeug"
+HOMEPAGE="
+   https://pypi.org/project/cachelib/
+   https://github.com/pallets-eco/cachelib/
+"
+SRC_URI="
+   https://github.com/pallets-eco/cachelib/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+BDEPEND="
+   test? (
+   dev-db/redis
+   dev-python/pylibmc[${PYTHON_USEDEP}]
+   dev-python/pytest-xprocess[${PYTHON_USEDEP}]
+   dev-python/redis[${PYTHON_USEDEP}]
+   net-misc/memcached
+   www-servers/uwsgi[python,${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # bug #818523
+   tests/test_redis_cache.py
+   # requires some test server running
+   # (these tests require dev-python/boto3)
+   tests/test_dynamodb_cache.py
+   # requires mongo test server
+   tests/test_mongodb_cache.py
+)



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

2024-02-11 Thread Arthur Zamarin
commit: 0f485ff9f87f2e85f16e5f478d8ae241908bb379
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Feb 11 18:58:04 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Feb 11 18:58:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f485ff9

dev-python/Levenshtein: add 0.25.0

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

 dev-python/Levenshtein/Levenshtein-0.25.0.ebuild | 48 
 dev-python/Levenshtein/Manifest  |  1 +
 2 files changed, 49 insertions(+)

diff --git a/dev-python/Levenshtein/Levenshtein-0.25.0.ebuild 
b/dev-python/Levenshtein/Levenshtein-0.25.0.ebuild
new file mode 100644
index ..240940a5e549
--- /dev/null
+++ b/dev-python/Levenshtein/Levenshtein-0.25.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+# custom wrapper over setuptools
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Functions for fast computation of Levenshtein distance, and edit 
operations"
+HOMEPAGE="
+   https://pypi.org/project/Levenshtein/
+   https://github.com/rapidfuzz/Levenshtein/
+"
+SRC_URI="
+   https://github.com/rapidfuzz/Levenshtein/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+DEPEND="
+   =dev-cpp/rapidfuzz-cpp-3.0.0
+"
+RDEPEND="
+   =dev-python/rapidfuzz-3.1.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/cython-3.0.2[${PYTHON_USEDEP}]
+   >=dev-python/scikit-build-0.13.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # sterilize build flags
+   sed -i -e '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die
+
+   distutils-r1_src_prepare
+}

diff --git a/dev-python/Levenshtein/Manifest b/dev-python/Levenshtein/Manifest
index c48000bf8204..a7ab94403903 100644
--- a/dev-python/Levenshtein/Manifest
+++ b/dev-python/Levenshtein/Manifest
@@ -1,2 +1,3 @@
 DIST Levenshtein-0.23.0.gh.tar.gz 36891 BLAKE2B 
847772ee88a76881c0974a1a9c1ef252320308f17b30b227f8251b0a8b8454c2289e02a24b2a9cb225d34183c5b6e4dbf574b22a5d37a1b453596ff0cb6e0aa0
 SHA512 
137116f337f576534bf2c12dc49d35f81a3b267eb613e5e6cca6cb80e5701dd0adbfd97c1cec4ea8f1bb4dee2bc67deeb19553474348ea78af4e05b79ce01fdf
 DIST Levenshtein-0.24.0.gh.tar.gz 37197 BLAKE2B 
75dcce68255b3e14e0ff9cb8e67b0381c7463f8b52f5922fcefc860bc638dc42d070e7a3dec8a870f92981dbb2ac8ec0d238845b5a68561d57f10d1c1721c021
 SHA512 
b47b903eb5cee3c8dc38fe5a963f20af3bdf1a8df74c1d2ea6d94810ebd37c1fc0c2adbb4bc951245ea72a6196c509dcf18066f3746b94f5b6d5f4414f296a2a
+DIST Levenshtein-0.25.0.gh.tar.gz 39076 BLAKE2B 
cb3bb55b37b5bfa8dc95d78dc6898154b4d4240c27348c6e03b13cdaa2c8ff19d1e8f2bf3d6b4fcc5c77be917afaa391276e93dcac24c2c19e1b285653a45c72
 SHA512 
e07ea1cef83c19a2a24ae76647ae2c534213ac6044b50a78dd1f2007936eb46032db326728b420471b6cb63ba6ac80a11c575ab277ae77116c592d113daba74c



[gentoo-commits] repo/proj/guru:master commit in: x11-wm/leftwm/files/

2024-02-11 Thread David Roman
commit: 4ee72bfc204e0de9668279435672c852825b12e3
Author: Takuya Wakazono  gmail  com>
AuthorDate: Sat Feb 10 14:42:35 2024 +
Commit: David Roman  gmail  com>
CommitDate: Sat Feb 10 14:44:46 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ee72bfc

x11-wm/leftwm: add a patch description

Signed-off-by: Takuya Wakazono  gmail.com>

 x11-wm/leftwm/files/leftwm-0.5.1-nolefthk.patch | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x11-wm/leftwm/files/leftwm-0.5.1-nolefthk.patch 
b/x11-wm/leftwm/files/leftwm-0.5.1-nolefthk.patch
index cde57a7c52..547fd5c1e3 100644
--- a/x11-wm/leftwm/files/leftwm-0.5.1-nolefthk.patch
+++ b/x11-wm/leftwm/files/leftwm-0.5.1-nolefthk.patch
@@ -1,3 +1,6 @@
+Fix builds with USE=-lefthk
+https://github.com/leftwm/leftwm/commit/e2e35412f113358d9be35e57683d51f5b7008535
+
 --- a/leftwm/src/config/keybind.rs
 +++ b/leftwm/src/config/keybind.rs
 @@ -6,7 +6,6 @@ use crate::Config;



[gentoo-commits] repo/proj/guru:master commit in: phosh-base/phosh/

2024-02-11 Thread David Roman
commit: 78834896f044e87c9203cd91d3286cb96ca2ea98
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sun Feb 11 13:55:34 2024 +
Commit: David Roman  gmail  com>
CommitDate: Sun Feb 11 16:35:35 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78834896

phosh-base/phosh: update metapackage

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

 phosh-base/phosh/{phosh-0.36.0.ebuild => phosh-0.36.0-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/phosh-base/phosh/phosh-0.36.0.ebuild 
b/phosh-base/phosh/phosh-0.36.0-r1.ebuild
similarity index 89%
rename from phosh-base/phosh/phosh-0.36.0.ebuild
rename to phosh-base/phosh/phosh-0.36.0-r1.ebuild
index b1e1533b45..92781e301b 100644
--- a/phosh-base/phosh/phosh-0.36.0.ebuild
+++ b/phosh-base/phosh/phosh-0.36.0-r1.ebuild
@@ -14,8 +14,9 @@ RDEPEND="
app-alternatives/phosh-keyboard
app-misc/geoclue:2.0
dev-libs/feedbackd[daemon]
-   >=gui-wm/phoc-${PV}
+   >=gui-wm/phoc-${PV}-r1
>=phosh-base/phosh-mobile-settings-${PV}
>=phosh-base/phosh-shell-${PV}
>=phosh-base/phosh-tour-${PV}
+   x11-themes/gnome-backgrounds
 "



[gentoo-commits] repo/proj/guru:master commit in: net-misc/peertube-viewer-rs/

2024-02-11 Thread David Roman
commit: d9cecc95916f23604c93a9fa0a619283b50a65ed
Author: Takuya Wakazono  gmail  com>
AuthorDate: Sat Feb 10 14:01:01 2024 +
Commit: David Roman  gmail  com>
CommitDate: Sun Feb 11 10:15:20 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9cecc95

net-misc/peertube-viewer-rs: drop 1.8.4-r1

Signed-off-by: Takuya Wakazono  gmail.com>

 net-misc/peertube-viewer-rs/Manifest   |  96 --
 .../peertube-viewer-rs-1.8.4-r1.ebuild | 139 -
 2 files changed, 235 deletions(-)

diff --git a/net-misc/peertube-viewer-rs/Manifest 
b/net-misc/peertube-viewer-rs/Manifest
index 28cea8c2e5..c2d1ccbe9e 100644
--- a/net-misc/peertube-viewer-rs/Manifest
+++ b/net-misc/peertube-viewer-rs/Manifest
@@ -1,219 +1,123 @@
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
-DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
 DIST anstream-0.6.4.crate 20593 BLAKE2B 
2b617c45d351e01222fc50f52551e57b4a8b0ecf84c6ddf44336c7c9d3b9dde15232b1c4f664d567849295bf8f03612b73ded56f1b3937392eb7718f1e0446c3
 SHA512 
0b983d626c53d1edc184f04cbd2c004eb9c40d14486b23cce86ebf50cbd3d916d32cb0423ae1d67c2b83b966690090af740538538ef846c0b126c686a1ebe159
 DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
 DIST anstyle-parse-0.2.2.crate 24696 BLAKE2B 
979daa24ccc3ea484445216bddc190f148f0ad83b95c997c1becbadfb641b67834980c413bcf5b7ddc2c6883d5e071a9636fbb44f79680ac42f8b73a797e466a
 SHA512 
28039806f87c2bd8266cea834975939b79fdf0cc95a029654806655c0662520aa497d84eefadcd9edce204986e60b62678e76a09cdb38bcc50c91e9d05c4bee9
 DIST anstyle-query-1.0.0.crate 8620 BLAKE2B 
2d296b5066fd6284a2410923215571e6df650c5ef892d6de7a7088a0996ca30608797feabc84f3c325ff4d07001dac80ac5067d2a9c9d15d9ba59a276b399f53
 SHA512 
2781be5c82293b7ae338ec5046fbeb130de9eb2dbf2e4dfaa73ca5233032e1e52c133e141b02f33d4bc36d996a0a3f680ac82d42d614a5305005f60547133c7a
 DIST anstyle-wincon-3.0.1.crate 11279 BLAKE2B 
593de9443b4c612526550285a6c156db26a233815e77a748597c6eea509ae511f41eb8ee736010f8be853695c9f1d94b034a77190e612f0a00bf00385d66ced2
 SHA512 
75ab14081b09e031ee0f559538976f39092aaeb6f561a56de83d12911cc2b45e28eec21068792c86a61e344021921ab55e7139ca79acec78e7d4a796dfa42a2e
-DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
-DIST autocfg-1.0.1.crate 12908 BLAKE2B 
40c53cab298e4f26634c3acff3ece6a3371188d91dbf377ed664eabedcde20536edaa93daf406618f37edde019f049a6e7b9a47f627344587dbd126bee2b5e3a
 SHA512 
630b348acb98b012e97804e6325d03c89abc22f2157762c59144c04e6c733daf550bdc7f0fe0b9f3b50e15dae8c1c3c4bdfce3d805b02f0fc987311f5332419b
-DIST base64-0.13.0.crate 62070 BLAKE2B 
b957f65cdb1e28baeca0cefc92fa98be797409b7dabd15e0e88db6cdfb89779b662cba9f2270fbf3b7b66948fdc46c118b8040a78ab72049c48a928fa802bee0
 SHA512 
991a72999839daa232f508c5b24e7d3225e8a26db8d1d0e747881b115af9e408b92374e163b31e0b0d324c1c2e57e8e38d66861b61eb0a1dba87bb5871940151
 DIST base64-0.21.5.crate 77134 BLAKE2B 
901cf92d7dd8af2bbb789ffbe60972c1fd295b16690ecebbcb500e4613afa057ab2b294bbafdcaa4007f46412825260a0711d89e55664418a503dde02c8afd1a
 SHA512 
40b1d8470a932c8b7f31717e33bf26742c1bf920caae639b8a992f77e64d5e6d287569742c1348daa25b7325f8ca8d8a312754a743dab3932181f37149d91b16
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST bitflags-2.4.1.crate 37043 BLAKE2B 
f61c45b142265e9c2944c7054e01704de47510735e9ee5351cd02b98676cc4eb42d68b1fc4849ad5f54654617a74f20cb533b4207c2fe76516b724ba9318b414
 SHA512 
d3fd7abc95acc1cb5bf16d6acc12dbb8eadd250f069268df13c2e8dc3d5f5c15a929cd17ca931c77393b64dce0516ef8674c469789ed32d78e315b5faada062b
-DIST bumpalo-3.9.1.crate 77507 BLAKE2B 

  1   2   3   >