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

2023-11-25 Thread Yixun Lan
commit: aa51076be76820a2e7ef7074c6c0289d8e3b5f87
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sun Nov 26 02:19:53 2023 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Nov 26 07:45:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa51076b

gui-wm/hyprland: remove git buildtime dependency

* Hasn't been a strict requirement since
  
https://github.com/hyprwm/Hyprland/commit/914851b91aeb450592e2d62749169298ac48fb0c.

Closes: https://bugs.gentoo.org/918585
Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 gui-wm/hyprland/hyprland-0.31.0-r1.ebuild | 1 -
 gui-wm/hyprland/hyprland-0.32.3.ebuild| 1 -
 gui-wm/hyprland/hyprland-.ebuild  | 1 -
 3 files changed, 3 deletions(-)

diff --git a/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild 
b/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
index f45aa9267075..66a99b216480 100644
--- a/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
+++ b/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
@@ -74,7 +74,6 @@ BDEPEND="
app-misc/jq
dev-util/cmake
dev-util/wayland-scanner
-   dev-vcs/git
virtual/pkgconfig
 "
 

diff --git a/gui-wm/hyprland/hyprland-0.32.3.ebuild 
b/gui-wm/hyprland/hyprland-0.32.3.ebuild
index c77204ea1933..6b96eb93bc80 100644
--- a/gui-wm/hyprland/hyprland-0.32.3.ebuild
+++ b/gui-wm/hyprland/hyprland-0.32.3.ebuild
@@ -74,7 +74,6 @@ BDEPEND="
app-misc/jq
dev-util/cmake
dev-util/wayland-scanner
-   dev-vcs/git
virtual/pkgconfig
 "
 

diff --git a/gui-wm/hyprland/hyprland-.ebuild 
b/gui-wm/hyprland/hyprland-.ebuild
index a63c7522ef43..6132918ba23b 100644
--- a/gui-wm/hyprland/hyprland-.ebuild
+++ b/gui-wm/hyprland/hyprland-.ebuild
@@ -80,7 +80,6 @@ BDEPEND="
app-misc/jq
dev-util/cmake
dev-util/wayland-scanner
-   dev-vcs/git
virtual/pkgconfig
 "
 



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

2023-11-25 Thread Yixun Lan
commit: 31168cb79e9e17cf75fd1dcf8ae8ed13869622c4
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sun Nov 26 02:25:05 2023 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Nov 26 07:46:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31168cb7

gui-wm/hyprland: Expand on comments

* Otherwise someone may try simplify without grasping the implications.

Closes: https://github.com/gentoo/gentoo/pull/33995
Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 gui-wm/hyprland/hyprland-0.31.0-r1.ebuild | 2 ++
 gui-wm/hyprland/hyprland-0.32.3.ebuild| 2 ++
 gui-wm/hyprland/hyprland-.ebuild  | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild 
b/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
index 66a99b216480..cdf924368947 100644
--- a/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
+++ b/gui-wm/hyprland/hyprland-0.31.0-r1.ebuild
@@ -119,7 +119,9 @@ src_configure() {
 }
 
 src_install() {
+   # First install everything except wlroots to avoid conflicts.
meson_src_install --skip-subprojects wlroots
+   # Then install development files (mainly wlroots) for bug #916760.
meson_src_install --tags devel
 
# Wlroots headers are required by hyprland-plugins and the pkgconfig 
file expects

diff --git a/gui-wm/hyprland/hyprland-0.32.3.ebuild 
b/gui-wm/hyprland/hyprland-0.32.3.ebuild
index 6b96eb93bc80..1bb1156e24e4 100644
--- a/gui-wm/hyprland/hyprland-0.32.3.ebuild
+++ b/gui-wm/hyprland/hyprland-0.32.3.ebuild
@@ -115,7 +115,9 @@ src_configure() {
 }
 
 src_install() {
+   # First install everything except wlroots to avoid conflicts.
meson_src_install --skip-subprojects wlroots
+   # Then install development files (mainly wlroots) for bug #916760.
meson_src_install --tags devel
 
# Wlroots headers are required by hyprland-plugins and the pkgconfig 
file expects

diff --git a/gui-wm/hyprland/hyprland-.ebuild 
b/gui-wm/hyprland/hyprland-.ebuild
index 6132918ba23b..795779f199ad 100644
--- a/gui-wm/hyprland/hyprland-.ebuild
+++ b/gui-wm/hyprland/hyprland-.ebuild
@@ -121,7 +121,9 @@ src_configure() {
 }
 
 src_install() {
+   # First install everything except wlroots to avoid conflicts.
meson_src_install --skip-subprojects wlroots
+   # Then install development files (mainly wlroots) for bug #916760.
meson_src_install --tags devel
 
# Wlroots headers are required by hyprland-plugins and the pkgconfig 
file expects



[gentoo-commits] repo/gentoo:master commit in: app-emacs/vhdl-mode/

2023-11-25 Thread Maciej Barć
commit: 3b466184226b9d447a87b258c6aa8bc13076f9f6
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 07:37:12 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 07:37:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b466184

app-emacs/vhdl-mode: drop old 3.38.3

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

 app-emacs/vhdl-mode/Manifest|  1 -
 app-emacs/vhdl-mode/vhdl-mode-3.38.3.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/app-emacs/vhdl-mode/Manifest b/app-emacs/vhdl-mode/Manifest
index e3f22c762e79..3738c4ed57a2 100644
--- a/app-emacs/vhdl-mode/Manifest
+++ b/app-emacs/vhdl-mode/Manifest
@@ -1,2 +1 @@
-DIST vhdl-mode-3.38.3.tar.gz 319205 BLAKE2B 
ec64bd5fb783ef5e295319ca86ef147a021ffce352ddca49f19dcdc6b79c5bc9ed9350ad154321dbf40a84f501d9da70ffd685d2376a8da98cd2426b9df4bd36
 SHA512 
4738927daa424c5d66bc69e021e6b624cc23a3bf70a6f78ea5a7fc07ad0bd0aaf5429594b6ff71067edbf48802d7d77f38d607708541fb59e259cc1a4221fb60
 DIST vhdl-mode-3.39.2.tar.gz 320568 BLAKE2B 
3babb589911dd6bc83109f4de1a17f8d45a549216ca85604caef9470b6965766bdccf0c7e0963c17fbf310fa4a2f1d1e6e11f1dff6308328ad7f395a8bbe3d1d
 SHA512 
e4486e3f7836c6c55179b389d6537bc7f2265b402aafb4e600ea87056f05de2af5f7ed38d59f023d73f8668e1b8594be82e057eb47569d9f09aa4d0200b41922

diff --git a/app-emacs/vhdl-mode/vhdl-mode-3.38.3.ebuild 
b/app-emacs/vhdl-mode/vhdl-mode-3.38.3.ebuild
deleted file mode 100644
index bcd146711d0f..
--- a/app-emacs/vhdl-mode/vhdl-mode-3.38.3.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="VHDL-mode for Emacs"
-HOMEPAGE="https://iis-people.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html;
-SRC_URI="https://iis-people.ee.ethz.ch/~zimmi/emacs/${P}.tar.gz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-emacs-28.patch
-   "${FILESDIR}"/${PN}-info-dir-gentoo.patch
-)
-ELISP_REMOVE="site-start.*"
-SITEFILE="50${PN}-gentoo.el"
-DOCS="ChangeLog README"
-
-src_install() {
-   elisp_src_install
-   doinfo vhdl-mode.info
-}



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

2023-11-25 Thread Maciej Barć
commit: 55cf00615d61b867757f94730ac378cc211dde27
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 07:36:31 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 07:37:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55cf0061

net-misc/ytmdl: bump to 2023.11.26

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

 net-misc/ytmdl/Manifest|  1 +
 net-misc/ytmdl/ytmdl-2023.11.26.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/net-misc/ytmdl/Manifest b/net-misc/ytmdl/Manifest
index 9f5dedd7d16a..5f63266448a4 100644
--- a/net-misc/ytmdl/Manifest
+++ b/net-misc/ytmdl/Manifest
@@ -1 +1,2 @@
+DIST ytmdl-2023.11.26.gh.tar.gz 1120208 BLAKE2B 
145f8e24305f4978f1ed0655e5511c6b17b94ea23301309c31bbafaec60b2184216ef0866aed478eda95763ab4ec0cd43eac176acf849871e58c3505b09ea231
 SHA512 
df8ed294f0092d4078fba8b64abcd2524e0d8331a42dfee6e1869e3a418cf2d54f95d7c300d83e4392295ea4116ec989d418b0292b0895ef474bf93338a980e7
 DIST ytmdl-2023.7.27.tar.gz 53737 BLAKE2B 
8f01a8cd9b666904fe29871f5f595bae8dd0d29741c5e7c77886d0444a9b23fbf99e1c0efdadb3a62fa0c37425271724327ad655bd2bfb9a53b81a3cf4705289
 SHA512 
b300590f1aae0378c3672df24b766c6729b034711f83102881f0bd81d7d383825f3187c6f28611c38ad634542b8eb4bbe2c4fcb8a946b7eef9be492a3bfee927

diff --git a/net-misc/ytmdl/ytmdl-2023.11.26.ebuild 
b/net-misc/ytmdl/ytmdl-2023.11.26.ebuild
new file mode 100644
index ..c0d47ca80f69
--- /dev/null
+++ b/net-misc/ytmdl/ytmdl-2023.11.26.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2023 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 bash-completion-r1 distutils-r1 edo
+
+DESCRIPTION="Simple app to get songs from youtube in mp3 format"
+HOMEPAGE="https://ytmdl.deepjyoti30.dev/
+   https://github.com/deepjyoti30/ytmdl/;
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/deepjyoti30/${PN}.git;
+else
+   SRC_URI="https://github.com/deepjyoti30/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   >=net-misc/yt-dlp-2022.3.8.2[${PYTHON_USEDEP}]
+   dev-python/PySocks[${PYTHON_USEDEP}]
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/ffmpeg-python[${PYTHON_USEDEP}]
+   dev-python/itunespy[${PYTHON_USEDEP}]
+   dev-python/musicbrainzngs[${PYTHON_USEDEP}]
+   dev-python/pyDes[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
+   dev-python/simber[${PYTHON_USEDEP}]
+   dev-python/spotipy[${PYTHON_USEDEP}]
+   dev-python/unidecode[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/youtube-search-python[${PYTHON_USEDEP}]
+   dev-python/ytmusicapi[${PYTHON_USEDEP}]
+   media-libs/mutagen[${PYTHON_USEDEP}]
+   net-misc/downloader-cli[${PYTHON_USEDEP}]
+"
+
+python_compile() {
+   distutils-r1_python_compile
+
+   edo "${EPYTHON}" ./utils/completion.py
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   newbashcomp "${PN}.bash" "${PN}"
+}



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

2023-11-25 Thread Joonas Niilola
commit: 0abb5770f29ec29021747dbd2c161d8d50154d39
Author: Alexey Lunev  gmail  com>
AuthorDate: Sat Nov 25 12:12:28 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Nov 26 07:02:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0abb5770

net-p2p/qbittorrent: add 4.6.1

Closes: https://bugs.gentoo.org/916447
Signed-off-by: Alexey Lunev  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33978
Signed-off-by: Joonas Niilola  gentoo.org>

 net-p2p/qbittorrent/Manifest |   1 +
 net-p2p/qbittorrent/qbittorrent-4.6.1.ebuild | 132 +++
 2 files changed, 133 insertions(+)

diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
index ee5526699755..b73321d9d11c 100644
--- a/net-p2p/qbittorrent/Manifest
+++ b/net-p2p/qbittorrent/Manifest
@@ -2,3 +2,4 @@ DIST qbittorrent-4.5.2.tar.gz 8890525 BLAKE2B 
48585b703ce6edf862ea3c8cfad6cab2ed
 DIST qbittorrent-4.5.4.tar.gz 8791236 BLAKE2B 
70b3194d6c4819655998406e0a13d22f3a5068e724048010daebd83d8b8db9e17daee943ca8dabaacd92a0fbc5249257de6d175b35287c748dc2d15395bd71fc
 SHA512 
2e7988922137c9fade99e90236cc0c5b8b30f09021472f8ffc9048a7a2d989925eed7bfab4d79c93ca7d0f21acfde2e7feee5e6c43b557bf2c6f472fd52fbcea
 DIST qbittorrent-4.5.5.tar.gz 8802492 BLAKE2B 
1d20d7900b5b65603c5cf13452fb5aebe396473290d4904641b78867c5345d783482c46edc7042a2e86e79afd790e8c470df62131595eba288f195cc5e716eec
 SHA512 
8b5c2654b3bc03c0b4de77e8388ee543c3892ef9453749ea737aaee999a16d50bd1b30ebe0519a86d7ab8ffc6224d7d9cf678464aebf96433cd71dd57b46dd53
 DIST qbittorrent-4.6.0.tar.gz 9024538 BLAKE2B 
5addeee21c9a5f05ca4b33a908c6480948dd22cc03524baf8f06429c2f1abb3c88115a53d434023e379561dda27ae43336068071c7f92949c550f6f8b4336a87
 SHA512 
217b3efe9c8e98eb5c9457d9aede91034b27f85a57ff93d57f51485b5224e85c63b51645b3f5126a51e48894d5065ed2ae3929dcabfcbbe6b036270286ffef3a
+DIST qbittorrent-4.6.1.tar.gz 9054911 BLAKE2B 
ace2f102f21287d7005fdd383bd44bed17894ad370ec7782684669f07c537e0c773acc90e89105794c02c023a4116dbe00fc99ba4ffae49c18159854baca9e5d
 SHA512 
ed6db8174562cd2b96fec1e0c1532a65507cb7034841c9424f654a33866cbf9edc5974f101f0c01cd6c8fd7d76380b4252c4a804ee9776b34ec8ad1b386bdcd1

diff --git a/net-p2p/qbittorrent/qbittorrent-4.6.1.ebuild 
b/net-p2p/qbittorrent/qbittorrent-4.6.1.ebuild
new file mode 100644
index ..af2d2004687f
--- /dev/null
+++ b/net-p2p/qbittorrent/qbittorrent-4.6.1.ebuild
@@ -0,0 +1,132 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake edo multibuild systemd xdg
+
+DESCRIPTION="BitTorrent client in C++ and Qt"
+HOMEPAGE="https://www.qbittorrent.org;
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/qbittorrent/qBittorrent.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/qbittorrent/qBittorrent/archive/release-${PV}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+   S="${WORKDIR}"/qBittorrent-release-${PV}
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+dbus +gui qt6 systemd test webui"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="|| ( gui webui )"
+
+RDEPEND="
+   acct-group/qbittorrent
+   acct-user/qbittorrent
+   >=dev-libs/openssl-1.1.1:=
+   >=net-libs/libtorrent-rasterbar-1.2.18:=
+   >=sys-libs/zlib-1.2.11
+   qt6? ( dev-qt/qtbase:6[network,ssl,sql,sqlite,xml] )
+   !qt6? (
+   dev-qt/qtcore:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtxml:5
+   )
+   gui? (
+   !qt6? (
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dbus? ( dev-qt/qtdbus:5 )
+   )
+   qt6? (
+   dev-qt/qtbase:6[dbus?,gui,widgets]
+   dev-qt/qtsvg:6
+   )
+   )"
+DEPEND="
+   ${RDEPEND}
+   dev-libs/boost
+   test? (
+   !qt6? ( dev-qt/qttest:5 )
+   qt6? ( dev-qt/qtbase:6[test] )
+   )"
+BDEPEND="
+   !qt6? ( dev-qt/linguist-tools:5 )
+   qt6? ( dev-qt/qttools:6[linguist] )
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS Changelog CONTRIBUTING.md README.md )
+
+src_prepare() {
+   MULTIBUILD_VARIANTS=()
+   use gui && MULTIBUILD_VARIANTS+=( gui )
+   use webui && MULTIBUILD_VARIANTS+=( nogui )
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   my_src_configure() {
+   local mycmakeargs=(
+   # musl lacks execinfo.h
+   -DSTACKTRACE=$(usex !elibc_musl)
+   # More verbose build logs are preferable for bug reports
+   -DVERBOSE_CONFIGURE=ON
+   -DQT6=$(usex qt6)
+   -DWEBUI=$(usex webui)
+   -DTESTING=$(usex test)
+   )
+
+   

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

2023-11-25 Thread Michał Górny
commit: 74b1825854301ccc63cac01da1d32e28f8b30647
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 26 03:07:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 26 03:07:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b18258

dev-python/ytmusicapi: Remove old

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

 dev-python/ytmusicapi/Manifest   |  2 --
 dev-python/ytmusicapi/ytmusicapi-1.2.1-r1.ebuild | 22 --
 dev-python/ytmusicapi/ytmusicapi-1.3.0-r1.ebuild | 22 --
 3 files changed, 46 deletions(-)

diff --git a/dev-python/ytmusicapi/Manifest b/dev-python/ytmusicapi/Manifest
index f5b3aefd49b7..a5703d01fde3 100644
--- a/dev-python/ytmusicapi/Manifest
+++ b/dev-python/ytmusicapi/Manifest
@@ -1,4 +1,2 @@
-DIST ytmusicapi-1.2.1.tar.gz 71105 BLAKE2B 
852015adc0b15a34a1a808810c37bb15d6a2ed7bf1fbcd1dfa8dc3559115842a325b9ce45630ed620f15c113d1f75b3811ab4d9b2cb4416ae4b08903ca1c91c7
 SHA512 
758050e30f6e328aeb0a43b440cd9bab9719730203073def810a33071f7b5c01a34b83ed3615cf4010f54c29b768f166b4a76ab6a49306f8d299f4a933af21aa
-DIST ytmusicapi-1.3.0.tar.gz 71560 BLAKE2B 
168f120e9306f52f61fcaf6945be89625f6438e89d3b490d2b3430bc7d5cebd74ef9ce56b379879084794ff37fb845bbd167c73a7f4fa5880b04c147e95d1981
 SHA512 
d1e29a6d7908ca83263ce16874774c33a611229f0e33965dc6294820a6871d7804a43239ee88ed4b683b3565be728b7ac3a2f83ef0de9310590509514578d155
 DIST ytmusicapi-1.3.1.tar.gz 71721 BLAKE2B 
573f3987805e2eb8cabdc1b04648de4c95d17ee66690c6f0d4832cb008430ab1eb758e1ba8bf62ab4f6a92351e74efe7c4c99a96c81e815e6a352a44f0e70334
 SHA512 
f68efbdd1178e7fd1c1f2a77cfcda9bce395aba6f2898fcc0694701be31c6aa7795d196845da5b03cce5222d2592e9bcd4ea2c620dae32a4878b60e9c45f522b
 DIST ytmusicapi-1.3.2.tar.gz 71732 BLAKE2B 
957c2b88ea2c9e59c81401762e4dfd4a52a2f5d3ba59653d2556c3d29225ab4bd92155070e75812f302430b453a5c32a2f44fb508b24905a8f0d16c6fe51299b
 SHA512 
c9ccf7999d668502549e4b5393682192d1db2851660444b6255d5bfb2c0c994ab4715800b669bf57d60866aef7c5529ece374c1eda8d945c7008477438dd0fdd

diff --git a/dev-python/ytmusicapi/ytmusicapi-1.2.1-r1.ebuild 
b/dev-python/ytmusicapi/ytmusicapi-1.2.1-r1.ebuild
deleted file mode 100644
index 25bb762afaca..
--- a/dev-python/ytmusicapi/ytmusicapi-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2023 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 pypi
-
-DESCRIPTION="Unofficial API for YouTube Music"
-HOMEPAGE="https://ytmusicapi.readthedocs.io/
-   https://github.com/sigma67/ytmusicapi/;
-
-LICENSE="MIT"
-KEYWORDS="amd64 ~x86"
-SLOT="0"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-
-distutils_enable_sphinx docs/source \
-   dev-python/sphinx-rtd-theme

diff --git a/dev-python/ytmusicapi/ytmusicapi-1.3.0-r1.ebuild 
b/dev-python/ytmusicapi/ytmusicapi-1.3.0-r1.ebuild
deleted file mode 100644
index 75a0cdb04926..
--- a/dev-python/ytmusicapi/ytmusicapi-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2023 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 pypi
-
-DESCRIPTION="Unofficial API for YouTube Music"
-HOMEPAGE="https://ytmusicapi.readthedocs.io/
-   https://github.com/sigma67/ytmusicapi/;
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-
-distutils_enable_sphinx docs/source \
-   dev-python/sphinx-rtd-theme



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

2023-11-25 Thread Michał Górny
commit: af4ce2400df388ef5c728e66e9d2617865f18b17
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 26 04:03:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 26 04:04:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af4ce240

sys-fs/duperemove: Bump to 0.14.1

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

 sys-fs/duperemove/Manifest |  1 +
 sys-fs/duperemove/duperemove-0.14.1.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
index 0c96065c3acb..b2a614a195f3 100644
--- a/sys-fs/duperemove/Manifest
+++ b/sys-fs/duperemove/Manifest
@@ -1,2 +1,3 @@
 DIST duperemove-0.12.gh.tar.gz 162458 BLAKE2B 
53dae9df2b45cb9ede8041e8a7a827c22c725da51d6df74acc96b464d4bfcc3a14b8adcd4b9ada68e2cf1411a5f015be27476e088a655998b0cc9d1f19acfae8
 SHA512 
7b5f464615f4ba850733657239dd4d68120d592424b6be56687b7ad4f6fd2dee67fd7729a1cd47c803dd77864dee033d8eef2f7f6774dc0f657b0d52aeb5559c
+DIST duperemove-0.14.1.gh.new.tar.gz 167968 BLAKE2B 
74d5ed6c452a24103d9ca0050ee1d1fdbb4eb4df5c2e86f84e6a1c70abf54d2caf27597d2088a5130d696bebaf07f93dd5f47e9c414af9ce3d19f096b872a02a
 SHA512 
16af9fb002d6e51ce469869507d5d4b8f9576620746337252ad733e6f74ae275c1e83da6af1c203543b9d19890180952d87f9fad4a02d4c4e0a25577ce569191
 DIST duperemove-0.14.gh.new.tar.gz 167912 BLAKE2B 
819a86d8846106b701164425080f33e69e6239b7c7fe5df560fdb700b7d1275491d4a53c9f8e91fb29dc5c6381ba8a3f0a202f4cde5dadb4ebce328edd5d3764
 SHA512 
e193af84e729eb1bfb1cd1c5b965243bbefb93e0cba192ef5389916093dc84ad9e793031ecca06dc1173a673282aa16beb4d956b1a9acfc68d15d89798067d22

diff --git a/sys-fs/duperemove/duperemove-0.14.1.ebuild 
b/sys-fs/duperemove/duperemove-0.14.1.ebuild
new file mode 100644
index ..70b420ad6623
--- /dev/null
+++ b/sys-fs/duperemove/duperemove-0.14.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Btrfs and xfs deduplication utility"
+HOMEPAGE="https://github.com/markfasheh/duperemove/;
+# XXX: drop .new on bump after 0.14, added for respin
+SRC_URI="
+   https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz
+   -> ${P/_/.}.gh.new.tar.gz
+"
+S=${WORKDIR}/${P/_/.}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+DEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+"
+RDEPEND="
+   ${DEPEND}
+"
+
+src_compile() {
+   emake VERSION="${PV}" IS_RELEASE=1 CC="$(tc-getCC)" CFLAGS="${CFLAGS} 
-Wall"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-timezone-field/

2023-11-25 Thread Michał Górny
commit: 65565fc4dc6ad12a411ada32236761a388083cc3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 26 04:01:52 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 26 04:01:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65565fc4

dev-python/django-timezone-field: Bump to 6.1.0

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

 dev-python/django-timezone-field/Manifest  |  1 +
 .../django-timezone-field-6.1.0.ebuild | 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/django-timezone-field/Manifest 
b/dev-python/django-timezone-field/Manifest
index a500e3683d3b..74cd8e52b622 100644
--- a/dev-python/django-timezone-field/Manifest
+++ b/dev-python/django-timezone-field/Manifest
@@ -1 +1,2 @@
 DIST django-timezone-field-6.0.1.gh.tar.gz 35800 BLAKE2B 
f3b46970bbe234f786988d8c71a016c382ea3d82b798eaf78e685f86a80b3ebd3ee495d0f0230afb84f594b443548d9bc1e8891ea37c08be478bab388edfd70b
 SHA512 
e6d1631af6a4d93f2fae236cf12d8fda15dfd6d70ee01c496364c3e5e141fff2bb5982f607adf474617a86b9f0f611306a17d1d892556a087424110ee3de541d
+DIST django-timezone-field-6.1.0.gh.tar.gz 36029 BLAKE2B 
5177b440e0537fbde12e0dd4bf92e65c983996f7ef1393212b0f4c24efecfc0d4d24e1bbc8447295b565d8b9921c0c05f6cc4baa11db3ccc9b60c33c48e76fb2
 SHA512 
b070e55a2a5196de1fcae4bd19979caf9d84c234a4e379d82dab843541cf99a0acced9a6996e35afe6b40d1bf737d522d34b91df10596e7365f85cfbe0597015

diff --git 
a/dev-python/django-timezone-field/django-timezone-field-6.1.0.ebuild 
b/dev-python/django-timezone-field/django-timezone-field-6.1.0.ebuild
new file mode 100644
index ..a51019e8569a
--- /dev/null
+++ b/dev-python/django-timezone-field/django-timezone-field-6.1.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="A Django app providing database and form fields for timezone 
objects"
+HOMEPAGE="
+   https://github.com/mfogel/django-timezone-field/
+   https://pypi.org/project/django-timezone-field/
+"
+SRC_URI="
+   https://github.com/mfogel/django-timezone-field/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND="
+   =dev-python/django-2.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/djangorestframework[${PYTHON_USEDEP}]
+   dev-python/pytest-django[${PYTHON_USEDEP}]
+   dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x DB_ENGINE=sqlite
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/clojure-mode/

2023-11-25 Thread Maciej Barć
commit: a143da8cd2c4f53245b0428f17146bff50676008
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 02:55:39 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 02:55:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a143da8c

app-emacs/clojure-mode: drop old 5.17.0

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

 app-emacs/clojure-mode/Manifest   |  1 -
 app-emacs/clojure-mode/clojure-mode-5.17.0.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/app-emacs/clojure-mode/Manifest b/app-emacs/clojure-mode/Manifest
index ab28977f320c..a2772c1aac4a 100644
--- a/app-emacs/clojure-mode/Manifest
+++ b/app-emacs/clojure-mode/Manifest
@@ -1,3 +1,2 @@
-DIST clojure-mode-5.17.0.tar.gz 23409187 BLAKE2B 
58cf80924467dfa523bc1049463b1ab67199deb3da90476fb44e2e477b52470e0fb7607b2cb21457607b18a04f77b4a5a93c447bb5d511f81dc984a20df4f882
 SHA512 
33575215c1f1a8000bfb6741a8a27fadc092b53244dc743a44bfbcdd15cd12e9b8918ecb015e35a380539916cfa112cdbde593b266e3221869bf13f2b9cfda19
 DIST clojure-mode-5.18.0.tar.gz 23409229 BLAKE2B 
03664c4693aaa45a846b4a2fadb18fe7351c8599a06690798c497aca3b9a044c030f4601ccd7de3bbe6ee3e1c45da3eb0e57b9daceaec88a74359733d59dfc76
 SHA512 
493f258d2a95c146da297949daeb0505467e18e111a312041ea3a121306e56b9265ed0ce44a7c30c97b0c369b96cc4584c8a1b0478f937e924ddfe06201c83e6
 DIST clojure-mode-5.18.1.tar.gz 23408800 BLAKE2B 
6a96f5c7f92700b303e8abf440088d19a7f428999aa5faeb6e17dc67267f34f8c1c4bd2d7082e8557975e71afef38c864b3662630612806174f13ab8dd14c9e1
 SHA512 
b0440682fd28eaa02da6c62f44e2fbc405d370dadea95b072b1c5d43d569b0eb82bff4228bce02346d94a2e65110e326f4b382b06b091e8dd25cfc004b461496

diff --git a/app-emacs/clojure-mode/clojure-mode-5.17.0.ebuild 
b/app-emacs/clojure-mode/clojure-mode-5.17.0.ebuild
deleted file mode 100644
index 3fd67bd1f3f2..
--- a/app-emacs/clojure-mode/clojure-mode-5.17.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Major mode for Clojure code"
-HOMEPAGE="https://github.com/clojure-emacs/clojure-mode/;
-SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-KEYWORDS="amd64 ~x86"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   test? (
-   app-emacs/s
-   app-emacs/buttercup
-   app-emacs/paredit
-   )
-"
-
-DOCS=( README.md doc )
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
-   buttercup -L . -L test --traceback full || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ebuild-snippets/

2023-11-25 Thread Maciej Barć
commit: 5e96a3ab23a38bfd93bb84f92960cb9aa26c16f1
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 02:56:14 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 02:56:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e96a3ab

app-emacs/emacs-ebuild-snippets: drop old 2.1.0

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

 app-emacs/emacs-ebuild-snippets/Manifest   |  1 -
 .../emacs-ebuild-snippets-2.1.0.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/app-emacs/emacs-ebuild-snippets/Manifest 
b/app-emacs/emacs-ebuild-snippets/Manifest
index aa91a0b09f0e..a59d42b981fd 100644
--- a/app-emacs/emacs-ebuild-snippets/Manifest
+++ b/app-emacs/emacs-ebuild-snippets/Manifest
@@ -1,2 +1 @@
-DIST emacs-ebuild-snippets-2.1.0.tar.bz2 12381 BLAKE2B 
2681b73049dec8e6bb5b3704dfd1619ea2ca5ab6757ad04c0f9530dc734b57a9d885a10b991b0973cfd12349cd100e25c554b2e55c4c84976c3390f4cbbc77e7
 SHA512 
d492941a20a3e5f01b3b39d2c90b17473f2b4470b6cd80153a2b8c1df3074aa95d9e14384ea1fba3348026c1704ebe2096ee8fe27227afa1ea6512c6fae7c6dc
 DIST emacs-ebuild-snippets-2.2.0.tar.bz2 13180 BLAKE2B 
aeb01a50b1cdaa7833b7573a91863d9fc9efc7abf71aafaccdf9d8f209e8e9e6a1f6bb7f4e781b2bb220bd5d62e59c33a3cf50589a4939298651522894dc5094
 SHA512 
51ce064101e6e9987dcdd91c490a46aa6758605d3a84f6ce38a4661315f032e2bfe61da53c13a6d5d2ff21470f500b5a3e3c7e593bfc07098689b8533e6fb5fd

diff --git a/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.1.0.ebuild 
b/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.1.0.ebuild
deleted file mode 100644
index d99432c3e378..
--- a/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.1.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Yasnippets for editing ebuilds and eclasses"
-HOMEPAGE="https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://gitweb.gentoo.org/proj/${PN}.git;
-else
-   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-RDEPEND="
-   app-emacs/ebuild-mode
-   app-emacs/yasnippet
-"
-BDEPEND="${RDEPEND}"
-
-src_prepare() {
-   sh ./scripts/changeme.sh "${EPREFIX}${SITEETC}/${PN}" || die
-
-   default
-}
-
-src_install() {
-   elisp-install ${PN} *.el{,c}
-   elisp-site-file-install "${S}"/gentoo/50${PN}-gentoo.el
-
-   insinto "${SITEETC}/${PN}"
-   doins -r snippets
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cider/

2023-11-25 Thread Maciej Barć
commit: 712054bbc8d8ac6f63fd140f942488812a6fb782
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 02:55:15 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 02:55:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712054bb

app-emacs/cider: drop old 1.7.0

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

 app-emacs/cider/Manifest   |  1 -
 app-emacs/cider/cider-1.7.0.ebuild | 50 --
 2 files changed, 51 deletions(-)

diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index d48a4115804b..ca4fe8163ba6 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -1,4 +1,3 @@
 DIST cider-1.11.1.tar.gz 7290496 BLAKE2B 
c061652616341003241ecdb9001e4addcbae5b3b60161b121d3e6ff9408396e7907e8b13effedd706b08c9e541c694ae0f06c043f136a7bf83ed7870f4df88aa
 SHA512 
b59120c6acc43856ad8d6c573d8dfab7bb93453b435d482719d1e4b2591e286b450695ea5ae6d11bc9b8c5a2163e877d7cbe7ffdc034d611415a799a0363e235
 DIST cider-1.12.0.tar.gz 7291772 BLAKE2B 
b98c48e903981a55af935982cd9499fd017f5f49c8f20b4d7eb8a0b8ee133402ea1378363e33e1807305e116091197334de72bb480641c427b71835cb29a29ce
 SHA512 
5568d8985865bdf249f90e491c0289e41ba48f01a1e372588cb3562b6b44c9b118993711261fe5414ec7c7099b4097a9ae9c92aee065ca5482cfad63845df3f0
-DIST cider-1.7.0.tar.gz 6731090 BLAKE2B 
f569491c3279f34f07abb84c76d81fe61917d0d438a94bd7e6a1d55a20194d38c85566a12d23d4255feef54c9df22fcd5a5946226f18051571354fae0ff9dd8a
 SHA512 
f86cb5791c8949bf175dc27d59c324163d2d05c63d19b2e2a563b9a870bf78bf0832a895f28a30b6f76385e3d86142178820cde4b9dcd2c91c54e879b6b9cd19
 DIST cider-1.8.3.tar.gz 7282998 BLAKE2B 
a0c596decbed17fd7056d371cf68de1939d29256fc4e0180fb8bd8ed41f37803b3aa4ad533aedd6321ebc1547ee645bb6e503e0dba939c1ec694137e87d1ba65
 SHA512 
b703c0a35e27f7de4d87b0e4a58d5a6b3fcdae41262ca47dab22ad74ecce73510d57f3ab135e83edd7df447a91fbaaa994c60f5dbcec611feb3c7b5e8141b42f

diff --git a/app-emacs/cider/cider-1.7.0.ebuild 
b/app-emacs/cider/cider-1.7.0.ebuild
deleted file mode 100644
index c252926eddaf..
--- a/app-emacs/cider/cider-1.7.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=26
-
-inherit elisp optfeature
-
-DESCRIPTION="Clojure Interactive Development Environment for GNU Emacs"
-HOMEPAGE="https://cider.mx/
-   https://github.com/clojure-emacs/cider/;
-SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-KEYWORDS="amd64"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   app-emacs/clojure-mode
-   app-emacs/parseedn
-   app-emacs/queue
-   app-emacs/sesman
-   app-emacs/spinner
-"
-BDEPEND="
-   ${RDEPEND}
-   test? ( app-emacs/buttercup )
-"
-
-ELISP_REMOVE="
-   test/${PN}-jar-test.el
-   test/integration/integration-tests.el
-"
-DOCS=( CHANGELOG.md README.md ROADMAP.md refcard )
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
-   buttercup -L . -L test --traceback full || die "tests failed"
-}
-
-src_install() {
-   elisp_src_install
-
-   optfeature "Connecting to leiningen REPL"   \
-   dev-java/leiningen dev-java/leiningen-bin
-}



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

2023-11-25 Thread Maciej Barć
commit: 6cc1c1f4995e7187eb68fb0bb3aaeb65c2a25782
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 02:54:43 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 02:54:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc1c1f4

virtual/pwsh: bump to 7.4

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

 virtual/pwsh/pwsh-7.4.ebuild | 16 
 1 file changed, 16 insertions(+)

diff --git a/virtual/pwsh/pwsh-7.4.ebuild b/virtual/pwsh/pwsh-7.4.ebuild
new file mode 100644
index ..f2011e485aef
--- /dev/null
+++ b/virtual/pwsh/pwsh-7.4.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Virtual for PowerShell"
+
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64"
+
+RDEPEND="
+   || (
+   app-shells/pwsh-bin:${SLOT}
+   app-shells/pwsh:${SLOT}
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/osm/

2023-11-25 Thread Maciej Barć
commit: 1d6535ef18cf0d484643e2fedd114b1ea7ff64fe
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Nov 26 02:55:55 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 02:55:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d6535ef

app-emacs/osm: drop old 0.13

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

 app-emacs/osm/Manifest|  1 -
 app-emacs/osm/osm-0.13.ebuild | 40 
 2 files changed, 41 deletions(-)

diff --git a/app-emacs/osm/Manifest b/app-emacs/osm/Manifest
index 933440d4b753..a8ee5aecedd6 100644
--- a/app-emacs/osm/Manifest
+++ b/app-emacs/osm/Manifest
@@ -1,2 +1 @@
-DIST osm-0.13.tar.gz 32400 BLAKE2B 
0b97d1adb67510f393dc13b8f314e8b8cc089d1b5d4e440331a2c8ddf42799c5e04b6448eb35d3acd55c8fc363f82415d8b8cdf83e06fa3ceaa07ffd68e4
 SHA512 
4313ccb42c6c7a7fc582d5f2a476ff09890306c82bf0554654443906e593509692450d0db4b6ef4fde906aa750d925bd3156e74d8fcf6f780eb37a3761aa20e6
 DIST osm-0.14.tar.gz 32982 BLAKE2B 
0c6672aa259c840d0da628bcc8dbac86e9801a18cec70fff997c34af54a7f1d0f4c1a746069347cca1af8a3282de59e3604c5c7faf52a646bbf718f4544425e6
 SHA512 
e8f294d449f1863653d7a2b6105bc21917b616e734c7014bd8b15299dbf79d764f3bfbe92512088934e069d4be6397f4b8687f1be105053ec4b2f32458ea02ec

diff --git a/app-emacs/osm/osm-0.13.ebuild b/app-emacs/osm/osm-0.13.ebuild
deleted file mode 100644
index b4b3876d52d5..
--- a/app-emacs/osm/osm-0.13.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=27.1
-
-inherit elisp
-
-DESCRIPTION="OpenStreetMap tile-based viewer for GNU Emacs"
-HOMEPAGE="https://github.com/minad/osm/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/minad/${PN}.git;
-else
-   SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-BDEPEND="
-   >=app-editors/emacs-${NEED_EMACS}:*[jpeg,json,libxml2,png,svg]
-   >=app-emacs/compat-29.1.4.0
-"
-RDEPEND="
-   ${BDEPEND}
-   net-misc/curl[ssl]
-"
-
-DOCS=( README.org )
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-   elisp_src_compile
-   elisp-make-autoload-file
-}



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

2023-11-25 Thread Andreas Sturmlechner
commit: 9fd651fac0744a5f582d73e61953264ddde20088
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 26 01:35:03 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 26 01:35:03 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9fd651fa

kde-plasma/kwayland-integration: Add missing PVCUT initialisation

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

 kde-plasma/kwayland-integration/kwayland-integration-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/kwayland-integration/kwayland-integration-.ebuild 
b/kde-plasma/kwayland-integration/kwayland-integration-.ebuild
index 5b321867b3..fcb2c26ef8 100644
--- a/kde-plasma/kwayland-integration/kwayland-integration-.ebuild
+++ b/kde-plasma/kwayland-integration/kwayland-integration-.ebuild
@@ -4,6 +4,7 @@
 EAPI=8
 
 KFMIN=5.106.0
+PVCUT=$(ver_cut 1-3)
 QTMIN=5.15.9
 inherit ecm plasma.kde.org
 



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

2023-11-25 Thread Sam James
commit: 7558b9b3cb0bc3fcad7eeecbb355b255d4e2f813
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 01:06:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 01:06:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7558b9b3

sys-auth/pam_mktemp: add github upstream metadata

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

 sys-auth/pam_mktemp/metadata.xml | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/sys-auth/pam_mktemp/metadata.xml b/sys-auth/pam_mktemp/metadata.xml
index 4f7d72b1b44b..b8ee607692f8 100644
--- a/sys-auth/pam_mktemp/metadata.xml
+++ b/sys-auth/pam_mktemp/metadata.xml
@@ -1,10 +1,13 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-swege...@gentoo.org
-
-
-If supported, set EXT2_APPEND_FL on /tmp/.private 
to prevent temporary directories from being removed
-
+   
+   swege...@gentoo.org
+   
+   
+   If supported, set EXT2_APPEND_FL 
on /tmp/.private to prevent temporary directories from being removed
+   
+   
+   openwall/pam_mktemp
+   
 



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

2023-11-25 Thread Sam James
commit: 3b2e4ee0085b6e98785c92e2f22f1e4540b3c3a5
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 01:06:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 01:06:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b2e4ee0

dev-libs/log4cpp: Stabilize 1.1.3-r3 amd64, #917359

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

 dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild 
b/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild
index 0c849abac195..69d249e4e206 100644
--- a/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild
+++ b/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}"
 
 LICENSE="LGPL-2.1"
 SLOT="0/5"
-KEYWORDS="~amd64 ~arm ~ppc ~riscv ~s390 ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~riscv ~s390 ~x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] proj/kde:master commit in: Documentation/package.mask/, profiles/updates/, kde-plasma/libplasma/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: c71339b9047dce55e8c198a18a3a76835acd39a4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 23:55:17 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 26 00:04:01 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c71339b9

kde-frameworks/kwayland: pkgmove to kde-plasma/kwayland

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

 .../.kde-frameworks-5-live/kde-frameworks-5-tier1-live| 2 +-
 Documentation/package.accept_keywords/kde-frameworks-5-live.keywords  | 2 +-
 Documentation/package.accept_keywords/kde-frameworks-5.110.keywords   | 2 +-
 Documentation/package.accept_keywords/kde-frameworks-5.112.keywords   | 2 +-
 Documentation/package.mask/kde-frameworks-5.110   | 2 +-
 Documentation/package.mask/kde-frameworks-5.112   | 2 +-
 Documentation/package.unmask/kde-frameworks-5.110 | 2 +-
 Documentation/package.unmask/kde-frameworks-5.112 | 2 +-
 kde-apps/krfb/krfb-23.08.49..ebuild   | 2 +-
 kde-apps/krfb/krfb-.ebuild| 2 +-
 kde-apps/yakuake/metadata.xml | 2 +-
 kde-apps/yakuake/yakuake-23.08.49..ebuild | 2 +-
 kde-apps/yakuake/yakuake-.ebuild  | 2 +-
 kde-misc/latte-dock/latte-dock-.ebuild| 2 +-
 kde-plasma/kpipewire/kpipewire-5.27.49..ebuild| 2 +-
 kde-plasma/kpipewire/kpipewire-.ebuild| 2 +-
 kde-plasma/kscreenlocker/kscreenlocker-5.27.49..ebuild| 2 +-
 kde-plasma/kscreenlocker/kscreenlocker-.ebuild| 2 +-
 .../kwayland-integration/kwayland-integration-5.27.49..ebuild | 2 +-
 kde-plasma/kwayland-integration/kwayland-integration-.ebuild  | 2 +-
 {kde-frameworks => kde-plasma}/kwayland/kwayland-5..ebuild| 4 +++-
 {kde-frameworks => kde-plasma}/kwayland/metadata.xml  | 2 +-
 kde-plasma/kwin/kwin-5.27.49..ebuild  | 2 +-
 kde-plasma/kwin/kwin-.ebuild  | 2 +-
 kde-plasma/libkscreen/libkscreen-5.27.49..ebuild  | 2 +-
 kde-plasma/libkscreen/libkscreen-.ebuild  | 2 +-
 kde-plasma/libplasma/libplasma-5..ebuild  | 2 +-
 kde-plasma/plasma-bigscreen/plasma-bigscreen-.ebuild  | 2 +-
 kde-plasma/plasma-integration/plasma-integration-.ebuild  | 2 +-
 kde-plasma/plasma-workspace/plasma-workspace-5.27.49..ebuild  | 2 +-
 kde-plasma/plasma-workspace/plasma-workspace-.ebuild  | 2 +-
 .../xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.27.49..ebuild | 2 +-
 kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-.ebuild  | 2 +-
 profiles/updates/4Q-2023  | 1 +
 sets/kde-frameworks-5-tier1   | 2 +-
 sets/kde-frameworks-5-tier1-5.110 | 2 +-
 sets/kde-frameworks-5-tier1-5.112 | 2 +-
 sets/kde-frameworks-5-tier1-live  | 2 +-
 38 files changed, 40 insertions(+), 37 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier1-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier1-live
index b577b24921..040d9a624d 100644
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier1-live
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier1-live
@@ -21,7 +21,6 @@
 ~kde-frameworks/kitemviews-5. **
 ~kde-frameworks/kplotting-5. **
 ~kde-frameworks/kquickcharts-5. **
-~kde-frameworks/kwayland-5. **
 ~kde-frameworks/kwidgetsaddons-5. **
 ~kde-frameworks/kwindowsystem-5. **
 ~kde-frameworks/modemmanager-qt-5. **
@@ -32,3 +31,4 @@
 ~kde-frameworks/sonnet-5. **
 ~kde-frameworks/syntax-highlighting-5. **
 ~kde-frameworks/threadweaver-5. **
+~kde-plasma/kwayland-5. **

diff --git 
a/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
index 85a08eff13..147b1243a9 100644
--- a/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
+++ b/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
@@ -32,7 +32,6 @@
 ~kde-frameworks/kitemviews-5. **
 ~kde-frameworks/kplotting-5. **
 ~kde-frameworks/kquickcharts-5. **
-~kde-frameworks/kwayland-5. **
 ~kde-frameworks/kwidgetsaddons-5. **
 ~kde-frameworks/kwindowsystem-5. **
 ~kde-frameworks/modemmanager-qt-5. **
@@ -43,6 +42,7 @@
 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kpipewire/, profiles/updates/, kde-plasma/xdg-desktop-portal-kde/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: 347b890d7d5990eb94edc5328945abab684443ba
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 26 00:07:23 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov 26 01:04:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=347b890d

kde-frameworks/kwayland: pkgmove to kde-plasma/kwayland

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

 app-crypt/pinentry/pinentry-1.2.1-r3.ebuild   | 2 +-
 app-crypt/pinentry/pinentry-1.2.1-r4.ebuild   | 2 +-
 kde-apps/krfb/krfb-23.04.3-r1.ebuild  | 2 +-
 kde-apps/krfb/krfb-23.08.3.ebuild | 2 +-
 kde-apps/yakuake/metadata.xml | 2 +-
 kde-apps/yakuake/yakuake-23.04.3.ebuild   | 2 +-
 kde-apps/yakuake/yakuake-23.08.3.ebuild   | 2 +-
 kde-misc/latte-dock/latte-dock-0.10.77_p20230115.ebuild   | 2 +-
 kde-plasma/kpipewire/kpipewire-5.27.8.ebuild  | 2 +-
 kde-plasma/kpipewire/kpipewire-5.27.9.ebuild  | 2 +-
 kde-plasma/kscreenlocker/kscreenlocker-5.27.8-r1.ebuild   | 2 +-
 kde-plasma/kscreenlocker/kscreenlocker-5.27.9.ebuild  | 2 +-
 kde-plasma/kwayland-integration/kwayland-integration-5.27.8.ebuild| 2 +-
 kde-plasma/kwayland-integration/kwayland-integration-5.27.9.ebuild| 2 +-
 {kde-frameworks => kde-plasma}/kwayland/Manifest  | 0
 {kde-frameworks => kde-plasma}/kwayland/kwayland-5.110.0.ebuild   | 4 +++-
 {kde-frameworks => kde-plasma}/kwayland/kwayland-5.112.0.ebuild   | 4 +++-
 {kde-frameworks => kde-plasma}/kwayland/metadata.xml  | 0
 kde-plasma/kwin/kwin-5.27.8-r3.ebuild | 2 +-
 kde-plasma/kwin/kwin-5.27.9-r1.ebuild | 2 +-
 kde-plasma/libkscreen/libkscreen-5.27.8-r1.ebuild | 2 +-
 kde-plasma/libkscreen/libkscreen-5.27.9.ebuild| 2 +-
 kde-plasma/libplasma/libplasma-5.110.0.ebuild | 2 +-
 kde-plasma/libplasma/libplasma-5.112.0.ebuild | 2 +-
 kde-plasma/plasma-workspace/plasma-workspace-5.27.8-r1.ebuild | 2 +-
 kde-plasma/plasma-workspace/plasma-workspace-5.27.9.1.ebuild  | 2 +-
 .../xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.27.8-r1.ebuild| 2 +-
 .../xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.27.9.ebuild   | 2 +-
 profiles/updates/4Q-2023  | 1 +
 29 files changed, 31 insertions(+), 26 deletions(-)

diff --git a/app-crypt/pinentry/pinentry-1.2.1-r3.ebuild 
b/app-crypt/pinentry/pinentry-1.2.1-r3.ebuild
index f0e6942d4e0f..b86cc8d3ea50 100644
--- a/app-crypt/pinentry/pinentry-1.2.1-r3.ebuild
+++ b/app-crypt/pinentry/pinentry-1.2.1-r3.ebuild
@@ -27,7 +27,7 @@ DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
-   wayland? ( kde-frameworks/kwayland:5 )
+   wayland? ( kde-plasma/kwayland:5 )
X? (
dev-qt/qtx11extras:5
x11-libs/libX11

diff --git a/app-crypt/pinentry/pinentry-1.2.1-r4.ebuild 
b/app-crypt/pinentry/pinentry-1.2.1-r4.ebuild
index 1b9f5f1728b6..df4649ad6bfd 100644
--- a/app-crypt/pinentry/pinentry-1.2.1-r4.ebuild
+++ b/app-crypt/pinentry/pinentry-1.2.1-r4.ebuild
@@ -27,7 +27,7 @@ DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
-   wayland? ( kde-frameworks/kwayland:5 )
+   wayland? ( kde-plasma/kwayland:5 )
X? (
dev-qt/qtx11extras:5
x11-libs/libX11

diff --git a/kde-apps/krfb/krfb-23.04.3-r1.ebuild 
b/kde-apps/krfb/krfb-23.04.3-r1.ebuild
index 8f0f96766fb4..0a8767ec5798 100644
--- a/kde-apps/krfb/krfb-23.04.3-r1.ebuild
+++ b/kde-apps/krfb/krfb-23.04.3-r1.ebuild
@@ -46,7 +46,7 @@ COMMON_DEPEND="
>=dev-qt/qtgui-${QTMIN}:5[X]
)
>=dev-qt/qtwayland-${QTMIN}:5
-   >=kde-frameworks/kwayland-${KFMIN}:5
+   >=kde-plasma/kwayland-${KFMIN}:5
kde-plasma/kpipewire:5
media-libs/libepoxy
media-libs/mesa[gbm(+)]

diff --git a/kde-apps/krfb/krfb-23.08.3.ebuild 
b/kde-apps/krfb/krfb-23.08.3.ebuild
index 8dcadc1999d8..a5887b16e707 100644
--- a/kde-apps/krfb/krfb-23.08.3.ebuild
+++ b/kde-apps/krfb/krfb-23.08.3.ebuild
@@ -46,7 +46,7 @@ COMMON_DEPEND="
>=dev-qt/qtgui-${QTMIN}:5[X]
)
>=dev-qt/qtwayland-${QTMIN}:5
-   >=kde-frameworks/kwayland-${KFMIN}:5
+   >=kde-plasma/kwayland-${KFMIN}:5
kde-plasma/kpipewire:5
)
 "

diff --git 

[gentoo-commits] repo/gentoo:master commit in: app-containers/buildah/

2023-11-25 Thread Sam James
commit: abdd2d72fe2d922006ece39a5dd2e71e19e67dd3
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:54:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:54:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abdd2d72

app-containers/buildah: Stabilize 1.32.2 arm64, #917485

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

 app-containers/buildah/buildah-1.32.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/buildah/buildah-1.32.2.ebuild 
b/app-containers/buildah/buildah-1.32.2.ebuild
index 819e3535fea9..11f6c5af0dad 100644
--- a/app-containers/buildah/buildah-1.32.2.ebuild
+++ b/app-containers/buildah/buildah-1.32.2.ebuild
@@ -28,7 +28,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/containers/buildah.git;
 else
SRC_URI="https://github.com/containers/buildah/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64"
+   KEYWORDS="~amd64 arm64"
 fi
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-containers/earthly/

2023-11-25 Thread Sam James
commit: 75b446d6d63c4289f265499036615156e141
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:11:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:11:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b4

app-containers/earthly: Stabilize 0.7.21 amd64, #918565

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

 app-containers/earthly/earthly-0.7.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/earthly/earthly-0.7.21.ebuild 
b/app-containers/earthly/earthly-0.7.21.ebuild
index f2aea31a3a87..c7e5a355fab4 100644
--- a/app-containers/earthly/earthly-0.7.21.ebuild
+++ b/app-containers/earthly/earthly-0.7.21.ebuild
@@ -23,7 +23,7 @@ SRC_URI="
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
|| (



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cider/

2023-11-25 Thread Sam James
commit: 6a561a661390596ace48aa7024a4ca67997f43d6
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:11:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:11:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a561a66

app-emacs/cider: Stabilize 1.8.3 amd64, #918572

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

 app-emacs/cider/cider-1.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/cider/cider-1.8.3.ebuild 
b/app-emacs/cider/cider-1.8.3.ebuild
index 0159835af876..1ee4fa950467 100644
--- a/app-emacs/cider/cider-1.8.3.ebuild
+++ b/app-emacs/cider/cider-1.8.3.ebuild
@@ -19,7 +19,7 @@ else
SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 LICENSE="GPL-3+"



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

2023-11-25 Thread Sam James
commit: b3f7c618df7b1e959cb9655697b29deddc92d180
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:11:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:11:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f7c618

dev-lang/luau: Stabilize 0.600 amd64, #918569

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

 dev-lang/luau/luau-0.600.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/luau/luau-0.600.ebuild b/dev-lang/luau/luau-0.600.ebuild
index 77e0be9d3f59..05fa0c98f903 100644
--- a/dev-lang/luau/luau-0.600.ebuild
+++ b/dev-lang/luau/luau-0.600.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == ** ]] ; then
 else
SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="MIT"



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

2023-11-25 Thread Sam James
commit: 6285af00f5b22fdfe0a49aaa806f29a52632f13f
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:11:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:11:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6285af00

dev-lang/fuzion: Stabilize 0.084 amd64, #918568

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

 dev-lang/fuzion/fuzion-0.084.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/fuzion/fuzion-0.084.ebuild 
b/dev-lang/fuzion/fuzion-0.084.ebuild
index ad9ea106d3a1..33cad58c2ef8 100644
--- a/dev-lang/fuzion/fuzion-0.084.ebuild
+++ b/dev-lang/fuzion/fuzion-0.084.ebuild
@@ -17,7 +17,7 @@ else

SRC_URI="https://github.com/tokiwa-software/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3"



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

2023-11-25 Thread Sam James
commit: 921c567a769f7d8429c18e46e7e26d29a4f10527
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 26 00:11:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 26 00:11:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=921c567a

dev-lang/algol68g: Stabilize 3.4.3 amd64, #918566

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

 dev-lang/algol68g/algol68g-3.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/algol68g/algol68g-3.4.3.ebuild 
b/dev-lang/algol68g/algol68g-3.4.3.ebuild
index f1c0cc53d018..bff3227720c0 100644
--- a/dev-lang/algol68g/algol68g-3.4.3.ebuild
+++ b/dev-lang/algol68g/algol68g-3.4.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://jmvdveer.home.xs4all.nl/${P}.tar.gz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline"
 
 RDEPEND="



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

2023-11-25 Thread Maciej Barć
commit: b6777837973c43ca4a02f9a61d16b71bb9fa3314
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:44:01 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6777837

app-shells/pwsh: bump to 7.4.0

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

 app-shells/pwsh/Manifest  |  86 +
 app-shells/pwsh/pwsh-7.4.0.ebuild | 381 ++
 2 files changed, 467 insertions(+)

diff --git a/app-shells/pwsh/Manifest b/app-shells/pwsh/Manifest
index 5bf767c9b98b..a83b243ed670 100644
--- a/app-shells/pwsh/Manifest
+++ b/app-shells/pwsh/Manifest
@@ -1,6 +1,11 @@
 DIST dotnetanalyzers.documentationanalyzers.1.0.0-beta.59.nupkg 14410 BLAKE2B 
1a8b2431c6ecada6995d14a244b6a9b346ddbbef5f142afa4097b1167e6e7a4eb177eef52b4cbc2c2abfdf1383d65e822d95e28c124353d51b156e77f014af6f
 SHA512 
b3a943f1a2a5c2dfc67650e13e4b0437d9e2892cb90a76576ece80a2ce74d080545135165b39c8a6c6e2d9a6ea9b8a9671044c8e4dd877a4c4134af46634dfaf
 DIST dotnetanalyzers.documentationanalyzers.unstable.1.0.0.59.nupkg 148293 
BLAKE2B 
2aa4ed104a4c0e14c010106c204c6d31419a41b55a3df8655b61b65577a1ac4a2d84894ca352be7ef31bd590d749b368889124a7e00ac8fa41366791166d7b22
 SHA512 
904ddfff355e901719c30fdac37aa31c8fcc80b2e16433da14484a356717de45ce8fca241c4797d09c5f09efcdf2251f19a59d7edebb9b00f80b7f2854de9174
+DIST jetbrains.annotations.2021.2.0.nupkg 127455 BLAKE2B 
ec5ae4d52ec8f670c918f1074ce43c71f773d104e545e5267b5d65f5a6e53af7831f986acc5e47d587caf68e289e6d2fc6ea74415b9ede84dd5a4240cdaa10be
 SHA512 
e4f1e8a7a6890b2116a2a5b4483346e1bdd0ac7b30d67b5c026b8596c5150a86868bb2d3eaca22d0e22e80dbcfeeedae755ec1c29258c8895acfc3f9710517c5
+DIST json.more.net.1.9.0.nupkg 48832 BLAKE2B 
daab7196e7c8c528b5c4971a5b34ea1c9a73427299743f0cd16a9b30ae067e57a68baaece4d60e0e0469ce019c154fc5ea86da752786f089bc69afcb6ab3bebe
 SHA512 
b1eb68f44425f6fa875b92fa59abc1e6148f520558c86e9f090884019c8524eac863a96f21d97a589bb613a173c888c58349301b642acce3b9a0065b3b42a7ed
+DIST jsonpointer.net.3.0.3.nupkg 43717 BLAKE2B 
ccb054b8ba2fcc06906df9f70fa92cb3f82ca09ae6a7b18df967538f31db4489f2982c36259cf74fcba32bc4b02baa387f0c7084141cc421ff16eb6651bdf211
 SHA512 
d3a88febae2b165bea48a15bd785d63db062c5a6d19a5748b2bb882aabc515d9d2362695a75004fef2419d45dce887f99a68f9823e36fe57429259171a9857cc
+DIST jsonschema.net.5.2.6.nupkg 142553 BLAKE2B 
645bd7d1fdd9fd708c717dbfc33c04b10155677127f6ff594fb25b289befe92420b44ec4db27db981c1adf3e192e5fad003e83ba6f994acb20b1ae0bfcacbf73
 SHA512 
f00112c3e2162cde966408e88e8886a8a9c453853c063ced753fd873fa6be939666c5f06cf69b0eb06226f2dda560fa895c8305e5901a7697734c2b12c87a32c
 DIST markdig.signed.0.31.0.nupkg 890019 BLAKE2B 
0eefc64a8f43e595a5d08970f876f39b948b65c30f4e22b1d794fc3c9a977c463ee91e2aceb5c5881555ac0c893b55ef6f61f8cbe9a696e1a349452d18df3fb6
 SHA512 
9f965c3c1ae1d7752a33c93335132d542a27dcc6b5d9d9d0821af0d58e6870d7d418a2d0d891047af8987d1859ad9fd8995d29de2b3390f9dc4b01df0059a43c
+DIST markdig.signed.0.33.0.nupkg 890574 BLAKE2B 
bf8d357fba12947114f8f499759fc958b3e6e68f76d2f17bcce270b49503eb23bf605e58d163cf15d9b597c1193374bdb733349105a437f0aec6c86af4f4995f
 SHA512 
a5872831d94628712dadeedc793514278c46b3428ebd2da7e78cd301833b609c9dcad30f57fb15578654d0fff678ea5e91edcdd998760484309437af6bd7ec70
 DIST microsoft.applicationinsights.2.21.0.nupkg 1703530 BLAKE2B 
f896013855b114aaf565c6e61e478df7371e07ce3ae28f2600c7bec38ba029aec32a8b11b6e01620c419d51d35e8585b5c6feae3f4bf696460c5f2af22b4c28d
 SHA512 
9f1d6b795b083e493ccca927d5f5ca0a09a5acfb808b70906e764798bd28a4da81d2ac58ddd9577ee75a800e2a682f7e059d47a85c71254c10be152a68f1f6c4
 DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.5.nupkg 10806144 BLAKE2B 
c2305cde423b51359ca4ecaec6925ff4afd378b992d775ee89598543da4ae530d5ce533e22cddebded18509653e886b97d33269e8d2bb79ad81ba2e79f895212
 SHA512 
2ba63d7eea0758fc109f947e687e6265089c4c7a6f3dc44cee269139cd5171e027125afacf5bc9d21c63292b9419d776b513149547efeb6acbb6c31f37ededc3
 DIST microsoft.aspnetcore.app.runtime.linux-arm64.7.0.5.nupkg 10608885 BLAKE2B 
26b47d72cdaacc31deb47657ef77a56274d23f98186a998541db19efb9ef4505eec605dbd54f3daa36153d640d0d584807da32be09498766e79aa1721f156521
 SHA512 
ee24fd027ee33f3d2fb4f571d141da02b66b994dec40c7ae1c485a85adb9a442a04b9590a495ae2fbd61c334cb10d21a633f6937babc6ca903a88cf3e379ba47
@@ -8,21 +13,31 @@ DIST 
microsoft.aspnetcore.app.runtime.linux-musl-arm.7.0.5.nupkg 10807297 BLAKE2
 DIST microsoft.aspnetcore.app.runtime.linux-musl-arm64.7.0.5.nupkg 10611724 
BLAKE2B 
ee569efa4e8d2ff201d6bc5322ba88f39f3a11ba809720420b67ca7a97a42358b9869202a10d4c92b92b61043757bf18e8ef7b163756f933de1a76f30f1cb087
 SHA512 
b912293ab6cec69764b74ebaa02adc659cbb8712084e38ea97a7e57c92c8161b1a28db19dbb6d401bbfe9240bda82a55d8cb6609f543094032cf57ab4d106913
 DIST microsoft.aspnetcore.app.runtime.linux-musl-x64.7.0.5.nupkg 10864992 
BLAKE2B 

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

2023-11-25 Thread Maciej Barć
commit: 058da8bad830aff23d38870efe251f67d47eee33
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:06:12 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058da8ba

dev-dotnet/dotnet-runtime-nugets: drop old 6.0.12

Bug: https://bugs.gentoo.org/918418
Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/dotnet-runtime-nugets/Manifest  | 20 
 .../dotnet-runtime-nugets-6.0.12.ebuild| 59 --
 2 files changed, 79 deletions(-)

diff --git a/dev-dotnet/dotnet-runtime-nugets/Manifest 
b/dev-dotnet/dotnet-runtime-nugets/Manifest
index bb3c782af426..d8076760e216 100644
--- a/dev-dotnet/dotnet-runtime-nugets/Manifest
+++ b/dev-dotnet/dotnet-runtime-nugets/Manifest
@@ -1,5 +1,4 @@
 DIST microsoft.aspnetcore.app.ref.3.1.10.nupkg 2535203 BLAKE2B 
de332022234864a337f7430966fa98dad3cde28f3a5bc049365636855b51054e4a3d452474a61c4df647c9f6eb33db80c155d442c5df41770d93e25b2dabe852
 SHA512 
ca88eb03020d22daa23a9d5761ce7401a9112c49c94ce2d28021dd58c102234f4d07edb98b678bfe06957067c2ff5f7ce9bb0619afc07ddf39b5ca45b2e52749
-DIST microsoft.aspnetcore.app.ref.6.0.12.nupkg 3341830 BLAKE2B 
460b1f8a5bb4a49b494f8582c8f06792b48d1e5f24d990456c4510189881cb995d9cf0de0f4a464105a3dce0a59e9efd7c6a73aaad95d83518cbd595df8b7014
 SHA512 
9d795bf58747b8deb8ae12a2e10c27f3f5c40b3202dcb38a45d18476df737bacb942bb019ad45cc997602a797dc4b6af6e5aecd43d0d9b9114ab8c654bf97fe1
 DIST microsoft.aspnetcore.app.ref.6.0.22.nupkg 3355776 BLAKE2B 
532aadfc9f58212bd3f150755795de20e32e0352ce3a034c12dd10fcf010986dbad428c6f4e2ad36d8737eade972c988fa7efa1c253dcee983cdfd4dd2fbc572
 SHA512 
7cbf8adf657852015dcf7b9eb2e0e216c567826962735826766b84ab458e43fdfe678267b01b050ba232277786e637f640f925d1b5436a5d048718e50ec73ac0
 DIST microsoft.aspnetcore.app.ref.6.0.24.nupkg 3357520 BLAKE2B 
d39dbfa5a098ffa215dff28d44051fd3f5e38a4058efcd51756d7b0c52b15f2733bb43eb758e19573b4d8473f604bdc51ed2835413e35e5373dc6ca98c099547
 SHA512 
acc6d7fe65d8bcfbc0b59e630c53c51e006e32395eed7db9d484974f56a9c1fcd2e782b8bcdbde21ed31b069aacbc4b1669f87fcc6dd1cfb6e2297dea48c5198
 DIST microsoft.aspnetcore.app.ref.6.0.25.nupkg 3356722 BLAKE2B 
7808c6b0a3b3cebd5a1968314b89d8b38c798c7480aad4dc53172a004bfa9ad807304afd9657b3a9710d72863f70674f02ef39588783b93245195f3f2829b29b
 SHA512 
bba75505fce0302817e984b9d6faa71479f2761ca929c9b9a8d8c5329dcd607aa15e3d0dbaaecb03185a9a0fea689b17ba3c47872063220e8d8153ca547c43d9
@@ -8,7 +7,6 @@ DIST microsoft.aspnetcore.app.ref.7.0.13.nupkg 3568616 BLAKE2B 
e9caaebe92ba5e265
 DIST microsoft.aspnetcore.app.ref.7.0.14.nupkg 3572772 BLAKE2B 
d13fdf2957220158e22cba3f9a33b60e3775fa22254d21183d38d7bcc9e4220c5cbc2de5a586baa3a40345c3be58c3df38af2406b6b5d8cf59ce29e021b16e12
 SHA512 
b44f46dcd29ab33e860ef04da42b0151b96f95a9375ae1225c96b6c9af3ae12470962b4dd9c3d33f70bb7f8237a8c8d0edaeb0d17bd5c8d9cd8fcf0d70ddb221
 DIST microsoft.aspnetcore.app.ref.8.0.0.nupkg 4390168 BLAKE2B 
4e5f6607c156a3e765f4af464d7f29be5b9382446595f7dcde7ed213c21f6b006f93de46bc5a95434a69b3af806a0e72287ede28552348010ab3f0091578ce86
 SHA512 
079f4a3ace3070ed88bb85ab8876f69df662de5fead0d1cb42a8852f140b7631bee92f79bd75ff1354c609acc36f08b529e95c8b8339dd1da82eb5198c7ac1f2
 DIST microsoft.aspnetcore.app.runtime.linux-arm.3.1.32.nupkg 9422779 BLAKE2B 
1fc5426e790842ad03ee9dadd62447c59cbb6cc462acfda2d3688e75c68581f478a69a2f5b3b2648b17e8a637f89f7fc45b0ef09423d8a3ae8bc8dfa4870b5ce
 SHA512 
e78723244e58607f2eec74a0103825a730405397611ca4621cd07f47f109980698e4e595218c6239e181821f670dd12d5ffc36c9fdecb2fe72c2b95778642d62
-DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.12.nupkg 10095058 BLAKE2B 
abd9ac8ed867b2e2e827e8c80dd0d8303262daf9076e80892caac268cc54656982a0b3ad67877e8a7c845ec3f6638f3122a25340609d5a34580de03be23c0f9c
 SHA512 
da79851f855740ae1a54b1a8efecfc7e47ba77af73ba347d4ffb29c5a73f69450f655b24c0f608c3e2acec59c532953cd40f9e5d04951a1fdcb6169947825eb7
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.22.nupkg 10110813 BLAKE2B 
6b2e1e8d2236b940b3d66a53039b99929cd3031d54e5be9e2309dd1c635da4b45d32314a98684739a4ff9cab9ee1f889e72140c5c8141ff7a6858e0ab1b8f813
 SHA512 
c6df2eb95d1192956caf9cc69630c377a3d412a6090b5262ea1f12c60f36b220985c2467dc12a85fbe6d5037cd6a34c2c8c26ad62eaf11aac22fc1ddd5d8db75
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.24.nupkg 10127746 BLAKE2B 
bf525130249f48ee2a0089f1e2b5a41d37541a26c56610614d3361075ea246da8f64258202a038a3ed211c24ed350179655ce79d2559f137c52d3c7e81d0070e
 SHA512 
9b8969b38d474ca925d1183db18b4359a4fe01fa7e83dd237d5bdaec484534618633c45585fb1e8c7f08d116abddacc030ce1cb50d5ef5af6c665ce168052313
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.25.nupkg 10120602 BLAKE2B 
79f907afbe46d74bf102fb6010632763b93492e03ce2db0231fca4c6c63c7708b320039a7b0edc54afbd3ada7b1a564ad4779c6a2e50d877ef0fcd42ba30fa4d
 SHA512 

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

2023-11-25 Thread Maciej Barć
commit: cfeb81bd5e4dfb200174c8f78aa2f79ee1baec62
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:06:46 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfeb81bd

dev-dotnet/dotnet-runtime-nugets: drop old 6.0.22

Bug: https://bugs.gentoo.org/918418
Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/dotnet-runtime-nugets/Manifest  | 20 
 .../dotnet-runtime-nugets-6.0.22.ebuild| 59 --
 2 files changed, 79 deletions(-)

diff --git a/dev-dotnet/dotnet-runtime-nugets/Manifest 
b/dev-dotnet/dotnet-runtime-nugets/Manifest
index d8076760e216..3c8443d2bfec 100644
--- a/dev-dotnet/dotnet-runtime-nugets/Manifest
+++ b/dev-dotnet/dotnet-runtime-nugets/Manifest
@@ -1,5 +1,4 @@
 DIST microsoft.aspnetcore.app.ref.3.1.10.nupkg 2535203 BLAKE2B 
de332022234864a337f7430966fa98dad3cde28f3a5bc049365636855b51054e4a3d452474a61c4df647c9f6eb33db80c155d442c5df41770d93e25b2dabe852
 SHA512 
ca88eb03020d22daa23a9d5761ce7401a9112c49c94ce2d28021dd58c102234f4d07edb98b678bfe06957067c2ff5f7ce9bb0619afc07ddf39b5ca45b2e52749
-DIST microsoft.aspnetcore.app.ref.6.0.22.nupkg 3355776 BLAKE2B 
532aadfc9f58212bd3f150755795de20e32e0352ce3a034c12dd10fcf010986dbad428c6f4e2ad36d8737eade972c988fa7efa1c253dcee983cdfd4dd2fbc572
 SHA512 
7cbf8adf657852015dcf7b9eb2e0e216c567826962735826766b84ab458e43fdfe678267b01b050ba232277786e637f640f925d1b5436a5d048718e50ec73ac0
 DIST microsoft.aspnetcore.app.ref.6.0.24.nupkg 3357520 BLAKE2B 
d39dbfa5a098ffa215dff28d44051fd3f5e38a4058efcd51756d7b0c52b15f2733bb43eb758e19573b4d8473f604bdc51ed2835413e35e5373dc6ca98c099547
 SHA512 
acc6d7fe65d8bcfbc0b59e630c53c51e006e32395eed7db9d484974f56a9c1fcd2e782b8bcdbde21ed31b069aacbc4b1669f87fcc6dd1cfb6e2297dea48c5198
 DIST microsoft.aspnetcore.app.ref.6.0.25.nupkg 3356722 BLAKE2B 
7808c6b0a3b3cebd5a1968314b89d8b38c798c7480aad4dc53172a004bfa9ad807304afd9657b3a9710d72863f70674f02ef39588783b93245195f3f2829b29b
 SHA512 
bba75505fce0302817e984b9d6faa71479f2761ca929c9b9a8d8c5329dcd607aa15e3d0dbaaecb03185a9a0fea689b17ba3c47872063220e8d8153ca547c43d9
 DIST microsoft.aspnetcore.app.ref.7.0.11.nupkg 3571104 BLAKE2B 
649e58ef5533ddf7cc57868ec59fe3fd925176742d7f20ef3d06c4213f6009493fe3aee6be8adf00eb4c12da5a9146e1fc453c12e4a0c6f49864efae26415f35
 SHA512 
d8f5e2748b038a786311f2d81a487aa5e06e9dff1fba945e15b7bd8461cbbd7732b10fe0c9629a4be399417599628f3a87762f2e3c5608d83faa1c44b5f1c413
@@ -7,7 +6,6 @@ DIST microsoft.aspnetcore.app.ref.7.0.13.nupkg 3568616 BLAKE2B 
e9caaebe92ba5e265
 DIST microsoft.aspnetcore.app.ref.7.0.14.nupkg 3572772 BLAKE2B 
d13fdf2957220158e22cba3f9a33b60e3775fa22254d21183d38d7bcc9e4220c5cbc2de5a586baa3a40345c3be58c3df38af2406b6b5d8cf59ce29e021b16e12
 SHA512 
b44f46dcd29ab33e860ef04da42b0151b96f95a9375ae1225c96b6c9af3ae12470962b4dd9c3d33f70bb7f8237a8c8d0edaeb0d17bd5c8d9cd8fcf0d70ddb221
 DIST microsoft.aspnetcore.app.ref.8.0.0.nupkg 4390168 BLAKE2B 
4e5f6607c156a3e765f4af464d7f29be5b9382446595f7dcde7ed213c21f6b006f93de46bc5a95434a69b3af806a0e72287ede28552348010ab3f0091578ce86
 SHA512 
079f4a3ace3070ed88bb85ab8876f69df662de5fead0d1cb42a8852f140b7631bee92f79bd75ff1354c609acc36f08b529e95c8b8339dd1da82eb5198c7ac1f2
 DIST microsoft.aspnetcore.app.runtime.linux-arm.3.1.32.nupkg 9422779 BLAKE2B 
1fc5426e790842ad03ee9dadd62447c59cbb6cc462acfda2d3688e75c68581f478a69a2f5b3b2648b17e8a637f89f7fc45b0ef09423d8a3ae8bc8dfa4870b5ce
 SHA512 
e78723244e58607f2eec74a0103825a730405397611ca4621cd07f47f109980698e4e595218c6239e181821f670dd12d5ffc36c9fdecb2fe72c2b95778642d62
-DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.22.nupkg 10110813 BLAKE2B 
6b2e1e8d2236b940b3d66a53039b99929cd3031d54e5be9e2309dd1c635da4b45d32314a98684739a4ff9cab9ee1f889e72140c5c8141ff7a6858e0ab1b8f813
 SHA512 
c6df2eb95d1192956caf9cc69630c377a3d412a6090b5262ea1f12c60f36b220985c2467dc12a85fbe6d5037cd6a34c2c8c26ad62eaf11aac22fc1ddd5d8db75
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.24.nupkg 10127746 BLAKE2B 
bf525130249f48ee2a0089f1e2b5a41d37541a26c56610614d3361075ea246da8f64258202a038a3ed211c24ed350179655ce79d2559f137c52d3c7e81d0070e
 SHA512 
9b8969b38d474ca925d1183db18b4359a4fe01fa7e83dd237d5bdaec484534618633c45585fb1e8c7f08d116abddacc030ce1cb50d5ef5af6c665ce168052313
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.25.nupkg 10120602 BLAKE2B 
79f907afbe46d74bf102fb6010632763b93492e03ce2db0231fca4c6c63c7708b320039a7b0edc54afbd3ada7b1a564ad4779c6a2e50d877ef0fcd42ba30fa4d
 SHA512 
931dbebcd3e4de64c0c9090d9fe1af732cd319f5b5d0572e551f838c1e3944f838be5da7880019e3b571afc735f93c79803b0337ee7cd9b8b338a8e3319e245f
 DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.11.nupkg 10831915 BLAKE2B 
ba58786acb21eea078cb8c482ddb381a89864e83d1d1da7b0788cde6f00f238146160d93eebef3941b96462db287e6b32114885c511f5957ad546fbbdfd143ac
 SHA512 

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

2023-11-25 Thread Maciej Barć
commit: a1529a3e2b823c25dff0ea6c34e857c3c84c8c9e
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:48:05 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1529a3e

app-shells/pwsh: cleanup 7.3.9's NUGETS

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

 app-shells/pwsh/Manifest  | 18 --
 app-shells/pwsh/pwsh-7.3.9.ebuild | 18 --
 2 files changed, 36 deletions(-)

diff --git a/app-shells/pwsh/Manifest b/app-shells/pwsh/Manifest
index a83b243ed670..c5beada980fc 100644
--- a/app-shells/pwsh/Manifest
+++ b/app-shells/pwsh/Manifest
@@ -7,12 +7,6 @@ DIST jsonschema.net.5.2.6.nupkg 142553 BLAKE2B 
645bd7d1fdd9fd708c717dbfc33c04b10
 DIST markdig.signed.0.31.0.nupkg 890019 BLAKE2B 
0eefc64a8f43e595a5d08970f876f39b948b65c30f4e22b1d794fc3c9a977c463ee91e2aceb5c5881555ac0c893b55ef6f61f8cbe9a696e1a349452d18df3fb6
 SHA512 
9f965c3c1ae1d7752a33c93335132d542a27dcc6b5d9d9d0821af0d58e6870d7d418a2d0d891047af8987d1859ad9fd8995d29de2b3390f9dc4b01df0059a43c
 DIST markdig.signed.0.33.0.nupkg 890574 BLAKE2B 
bf8d357fba12947114f8f499759fc958b3e6e68f76d2f17bcce270b49503eb23bf605e58d163cf15d9b597c1193374bdb733349105a437f0aec6c86af4f4995f
 SHA512 
a5872831d94628712dadeedc793514278c46b3428ebd2da7e78cd301833b609c9dcad30f57fb15578654d0fff678ea5e91edcdd998760484309437af6bd7ec70
 DIST microsoft.applicationinsights.2.21.0.nupkg 1703530 BLAKE2B 
f896013855b114aaf565c6e61e478df7371e07ce3ae28f2600c7bec38ba029aec32a8b11b6e01620c419d51d35e8585b5c6feae3f4bf696460c5f2af22b4c28d
 SHA512 
9f1d6b795b083e493ccca927d5f5ca0a09a5acfb808b70906e764798bd28a4da81d2ac58ddd9577ee75a800e2a682f7e059d47a85c71254c10be152a68f1f6c4
-DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.5.nupkg 10806144 BLAKE2B 
c2305cde423b51359ca4ecaec6925ff4afd378b992d775ee89598543da4ae530d5ce533e22cddebded18509653e886b97d33269e8d2bb79ad81ba2e79f895212
 SHA512 
2ba63d7eea0758fc109f947e687e6265089c4c7a6f3dc44cee269139cd5171e027125afacf5bc9d21c63292b9419d776b513149547efeb6acbb6c31f37ededc3
-DIST microsoft.aspnetcore.app.runtime.linux-arm64.7.0.5.nupkg 10608885 BLAKE2B 
26b47d72cdaacc31deb47657ef77a56274d23f98186a998541db19efb9ef4505eec605dbd54f3daa36153d640d0d584807da32be09498766e79aa1721f156521
 SHA512 
ee24fd027ee33f3d2fb4f571d141da02b66b994dec40c7ae1c485a85adb9a442a04b9590a495ae2fbd61c334cb10d21a633f6937babc6ca903a88cf3e379ba47
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm.7.0.5.nupkg 10807297 
BLAKE2B 
c9d5de17d1a1940d808f927637e9f5a3e7fdbfb12060ee4afc0dc77cfdb1ebb5069c4231eac33c1b300d790bc4bbf79d7d75372146e4ac2285b782c1b0def57b
 SHA512 
96720fbc38cc26c33ee71b926b5dbac7822a38291c1f9ae9f4db8aadab2b90447a64797772fc4a7a50acc82702b7a16839a89164438098be09a37605fba1050b
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm64.7.0.5.nupkg 10611724 
BLAKE2B 
ee569efa4e8d2ff201d6bc5322ba88f39f3a11ba809720420b67ca7a97a42358b9869202a10d4c92b92b61043757bf18e8ef7b163756f933de1a76f30f1cb087
 SHA512 
b912293ab6cec69764b74ebaa02adc659cbb8712084e38ea97a7e57c92c8161b1a28db19dbb6d401bbfe9240bda82a55d8cb6609f543094032cf57ab4d106913
-DIST microsoft.aspnetcore.app.runtime.linux-musl-x64.7.0.5.nupkg 10864992 
BLAKE2B 
1255fd0b4d928c755d0e3caff28dc61ac801514c81c8e929a24c8913afb876bf13b1d5b26634eb950460b45a70abac3042321f8edb0781eab04845bc05d577c9
 SHA512 
ef48ebf80a4b2e356b358d40341b9e2ab087fe8e2743d611a2d9748d3d25dc1c318d29c0e7b9df805e70799ea3fd4bd81aef1194908d143a0436929ac2c4a794
-DIST microsoft.aspnetcore.app.runtime.linux-x64.7.0.5.nupkg 10862693 BLAKE2B 
211520fb7e9bd9fcfd1471c2e138f97a322ab0b846f3eafae10a46742230aba7d5ccec7c411d63db79666409b6ad65cb87256790b760aadf108f79dce7dcfc9c
 SHA512 
edf2e134549550574dc753a075e359871be6c0c881527a6242394171958617c345ddaa8c5fab5b1d4b180e384842960e37e3998459ee642189c7b6c68aa6d7d9
 DIST microsoft.bcl.asyncinterfaces.5.0.0.nupkg 74074 BLAKE2B 
8e27e56988f0120d2b8e17e05dc6b801bfcb237b700dab5054049473db34d6a2fa4f59eeef7c857c31002488a882910ea7f44be2187b85dd5d1a96edcaddd234
 SHA512 
cea6febc03e3ddd6fc8ad31ebe92fc3f7134f81cc1fef8fb079ec3cd72f8a31120e836c8c39bf16109abd2253919371e2462b9570a2fd6525ad9dfd1f9929a28
 DIST microsoft.bcl.asyncinterfaces.7.0.0.nupkg 95839 BLAKE2B 
057f789af840dcb18f3e2a823f8e16725fdecf93986a469544876d66854e541fcbda2031f8379fc22489d5a8a1fd9f766285b99cae88b7ef8412cb4befb0fabe
 SHA512 
35bf41d65c4269bd0b662d228cd2c4a70e21830b745a5f1040cd43c488494b6a2d0a102d21531fc86ad89776337528eca6f0583e588996bd240ad8b334055edf
 DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 022 BLAKE2B 
8704bf2c8a57bdca4ad3d5a2531ff47b0b44d2461ce3c8eec4b58f5cb38f9371fe5aaeb8026a3abbf6299fe30b3f059c892ee6dd239a03eb8b36462f132a2b4b
 SHA512 
0d4896db8aff9d731c5b1c8f73a4b37460c3f08080fbeac0ecf169abf5bdff9c9a994778f453816b888e939d9d0d615245c91a2e4ba31f85d2ea8de222767104
@@ -38,18 +32,6 @@ DIST 
microsoft.management.infrastructure.runtime.win.2.0.0.nupkg 3341096 BLAKE2B
 DIST 

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

2023-11-25 Thread Maciej Barć
commit: 8c0ee0df611c52f753d2e07a1525642380392cfe
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:06:56 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c0ee0df

dev-dotnet/dotnet-runtime-nugets: drop old 7.0.11

Bug: https://bugs.gentoo.org/918418
Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/dotnet-runtime-nugets/Manifest  | 20 
 .../dotnet-runtime-nugets-7.0.11.ebuild| 59 --
 2 files changed, 79 deletions(-)

diff --git a/dev-dotnet/dotnet-runtime-nugets/Manifest 
b/dev-dotnet/dotnet-runtime-nugets/Manifest
index 3c8443d2bfec..908efcf3fbc1 100644
--- a/dev-dotnet/dotnet-runtime-nugets/Manifest
+++ b/dev-dotnet/dotnet-runtime-nugets/Manifest
@@ -1,137 +1,117 @@
 DIST microsoft.aspnetcore.app.ref.3.1.10.nupkg 2535203 BLAKE2B 
de332022234864a337f7430966fa98dad3cde28f3a5bc049365636855b51054e4a3d452474a61c4df647c9f6eb33db80c155d442c5df41770d93e25b2dabe852
 SHA512 
ca88eb03020d22daa23a9d5761ce7401a9112c49c94ce2d28021dd58c102234f4d07edb98b678bfe06957067c2ff5f7ce9bb0619afc07ddf39b5ca45b2e52749
 DIST microsoft.aspnetcore.app.ref.6.0.24.nupkg 3357520 BLAKE2B 
d39dbfa5a098ffa215dff28d44051fd3f5e38a4058efcd51756d7b0c52b15f2733bb43eb758e19573b4d8473f604bdc51ed2835413e35e5373dc6ca98c099547
 SHA512 
acc6d7fe65d8bcfbc0b59e630c53c51e006e32395eed7db9d484974f56a9c1fcd2e782b8bcdbde21ed31b069aacbc4b1669f87fcc6dd1cfb6e2297dea48c5198
 DIST microsoft.aspnetcore.app.ref.6.0.25.nupkg 3356722 BLAKE2B 
7808c6b0a3b3cebd5a1968314b89d8b38c798c7480aad4dc53172a004bfa9ad807304afd9657b3a9710d72863f70674f02ef39588783b93245195f3f2829b29b
 SHA512 
bba75505fce0302817e984b9d6faa71479f2761ca929c9b9a8d8c5329dcd607aa15e3d0dbaaecb03185a9a0fea689b17ba3c47872063220e8d8153ca547c43d9
-DIST microsoft.aspnetcore.app.ref.7.0.11.nupkg 3571104 BLAKE2B 
649e58ef5533ddf7cc57868ec59fe3fd925176742d7f20ef3d06c4213f6009493fe3aee6be8adf00eb4c12da5a9146e1fc453c12e4a0c6f49864efae26415f35
 SHA512 
d8f5e2748b038a786311f2d81a487aa5e06e9dff1fba945e15b7bd8461cbbd7732b10fe0c9629a4be399417599628f3a87762f2e3c5608d83faa1c44b5f1c413
 DIST microsoft.aspnetcore.app.ref.7.0.13.nupkg 3568616 BLAKE2B 
e9caaebe92ba5e265d4b4a9e541b2ace5d7bc0e47213479f57f69b6bc66dfe02362e976effc85e0fcc6a2eae945f062416a48e67377051a8b9d0b27836e6e3a3
 SHA512 
9c428bbf4ed8ffe338abefcb00547167b1fdc82e576656792ebbbe1b9eddd98b2842abaa2b4a307c2e725fe1c5692ff849b027de8675e7fbb44bc8ad7ad1f76f
 DIST microsoft.aspnetcore.app.ref.7.0.14.nupkg 3572772 BLAKE2B 
d13fdf2957220158e22cba3f9a33b60e3775fa22254d21183d38d7bcc9e4220c5cbc2de5a586baa3a40345c3be58c3df38af2406b6b5d8cf59ce29e021b16e12
 SHA512 
b44f46dcd29ab33e860ef04da42b0151b96f95a9375ae1225c96b6c9af3ae12470962b4dd9c3d33f70bb7f8237a8c8d0edaeb0d17bd5c8d9cd8fcf0d70ddb221
 DIST microsoft.aspnetcore.app.ref.8.0.0.nupkg 4390168 BLAKE2B 
4e5f6607c156a3e765f4af464d7f29be5b9382446595f7dcde7ed213c21f6b006f93de46bc5a95434a69b3af806a0e72287ede28552348010ab3f0091578ce86
 SHA512 
079f4a3ace3070ed88bb85ab8876f69df662de5fead0d1cb42a8852f140b7631bee92f79bd75ff1354c609acc36f08b529e95c8b8339dd1da82eb5198c7ac1f2
 DIST microsoft.aspnetcore.app.runtime.linux-arm.3.1.32.nupkg 9422779 BLAKE2B 
1fc5426e790842ad03ee9dadd62447c59cbb6cc462acfda2d3688e75c68581f478a69a2f5b3b2648b17e8a637f89f7fc45b0ef09423d8a3ae8bc8dfa4870b5ce
 SHA512 
e78723244e58607f2eec74a0103825a730405397611ca4621cd07f47f109980698e4e595218c6239e181821f670dd12d5ffc36c9fdecb2fe72c2b95778642d62
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.24.nupkg 10127746 BLAKE2B 
bf525130249f48ee2a0089f1e2b5a41d37541a26c56610614d3361075ea246da8f64258202a038a3ed211c24ed350179655ce79d2559f137c52d3c7e81d0070e
 SHA512 
9b8969b38d474ca925d1183db18b4359a4fe01fa7e83dd237d5bdaec484534618633c45585fb1e8c7f08d116abddacc030ce1cb50d5ef5af6c665ce168052313
 DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.25.nupkg 10120602 BLAKE2B 
79f907afbe46d74bf102fb6010632763b93492e03ce2db0231fca4c6c63c7708b320039a7b0edc54afbd3ada7b1a564ad4779c6a2e50d877ef0fcd42ba30fa4d
 SHA512 
931dbebcd3e4de64c0c9090d9fe1af732cd319f5b5d0572e551f838c1e3944f838be5da7880019e3b571afc735f93c79803b0337ee7cd9b8b338a8e3319e245f
-DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.11.nupkg 10831915 BLAKE2B 
ba58786acb21eea078cb8c482ddb381a89864e83d1d1da7b0788cde6f00f238146160d93eebef3941b96462db287e6b32114885c511f5957ad546fbbdfd143ac
 SHA512 
5c80ed625d5a8f3d9718dbdc40b31cbd5538ef0f76e962971e75471a0604efc3f99b63d3a8cf618f1700dbb7669f5fcd39351186bc2dd109cffb5edc9166cd92
 DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.13.nupkg 10838809 BLAKE2B 
3de6cf1a20e00456bfcb2f1644310a5831b25f948e4ab6535dfc9ec4e51c1710e8729fc74407d82ae3749367f8d1f4d49dd676cb3f7936f78f3772bbecdd
 SHA512 
29630aa03919e3ddaa4ff62f42f76f2940d715c9122c231d28a37578f3e6364e95390bacd217aad37fa59bc88940957fc6949081bc3e4d11d1e743824f62
 DIST microsoft.aspnetcore.app.runtime.linux-arm.7.0.14.nupkg 10832780 BLAKE2B 

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

2023-11-25 Thread Maciej Barć
commit: 81e1776a55a74cc49787ba8f1a9c910393af206f
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:08:49 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e1776a

app-shells/pwsh: drop old 7.3.6-r1

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

 app-shells/pwsh/Manifest |   7 -
 app-shells/pwsh/pwsh-7.3.6-r1.ebuild | 404 ---
 2 files changed, 411 deletions(-)

diff --git a/app-shells/pwsh/Manifest b/app-shells/pwsh/Manifest
index 3a489b6f68c0..5bf767c9b98b 100644
--- a/app-shells/pwsh/Manifest
+++ b/app-shells/pwsh/Manifest
@@ -12,7 +12,6 @@ DIST microsoft.bcl.asyncinterfaces.7.0.0.nupkg 95839 BLAKE2B 
057f789af840dcb18f3
 DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 022 BLAKE2B 
8704bf2c8a57bdca4ad3d5a2531ff47b0b44d2461ce3c8eec4b58f5cb38f9371fe5aaeb8026a3abbf6299fe30b3f059c892ee6dd239a03eb8b36462f132a2b4b
 SHA512 
0d4896db8aff9d731c5b1c8f73a4b37460c3f08080fbeac0ecf169abf5bdff9c9a994778f453816b888e939d9d0d615245c91a2e4ba31f85d2ea8de222767104
 DIST microsoft.codeanalysis.common.4.4.0.nupkg 4688165 BLAKE2B 
076ebf835f71b445d58ba7b7317f0787ad3ce44026779ded73dce9b3cc347a07c764bfc890d1e51cdb621e8f0d44ad986798645021e47823760aaab99e3617e9
 SHA512 
564fe62e3a4b98770b5bdcc1ca119189ba96e3c52df9c5f5d150de8b3d1bf6e058ac7a3c5cd85f6fc9db3ec91e0666d93566c763a5b2913b3c58589f557a6d29
 DIST microsoft.codeanalysis.csharp.4.4.0.nupkg 10750699 BLAKE2B 
9dc364fb0c577d3dabcc8f1637ff1ebd182842217c684aa2914bb2e62069a40ebe6bc3b331e5342d7c14bfb3336339e0e8b601b550b22f3906cd2ba10574d045
 SHA512 
fe0f852202c1934df0a5fe5aae60f303685035a93b9ea955c326dc0e53d8d1fd2469dfa813cc0a235b9668fb642a56a18b63eda6ad5fccb58a694abb5fb8953b
-DIST microsoft.codeanalysis.netanalyzers.7.0.3-preview1.23267.1.nupkg 4258949 
BLAKE2B 
4183d97a35c4a1ab1503d2920ee784bbe264285f886c58a927574413af7dd97c18691044756f8985c8f085d81469319fd306b8ed0305e00e8fe507dadf4fec06
 SHA512 
97745b4146c0fc755b6c2bf3807c4c9a0640a90e8ec6eba096ee82d36155dff5954813d1ca7fa1d5eb1969a65db8160ccb93319e1a8aa98b8307925292dd64a2
 DIST microsoft.codeanalysis.netanalyzers.7.0.4.nupkg 4258611 BLAKE2B 
510526748bf69bde6c87d6112fdd15841e16b8f419f4baf7d58c2603cacdb2d70883ef9ee068e9b37651eef0ba61b48719112ca640a040c5fa28eb43e262426f
 SHA512 
d7634922cc408bf5ae79cea31b0d54887aa71f2bfb146fa5737707312ce7278457f8b1c4c0e371cf8589f515cee66942d114831e21a180be8125dd973cc2aa6a
 DIST microsoft.codecoverage.17.3.3.nupkg 8943778 BLAKE2B 
db2047b51bf3465899f478f370f5b8ed88446dc8dbac46a306cb7dd81dc316df3fcf8d76e476e618854bf6b5507914c772d7b1abfae2527ea83967d3d8b22f20
 SHA512 
733998b098201aec1f94962790700dbca009009eb9e6d9e1247366e61d6fae38b057f676a8bedc35c03ee4760cd70269434f8ebf4759dfcc281199b9d27ddbca
 DIST microsoft.csharp.4.0.1.nupkg 462346 BLAKE2B 
209ccebc9103b803d26ea1f0232245c3cd231078b03a83a0011a2a79a1a8a324a72c5b3fda94b2686fff170932f366e165f81a36a70df590a39c45d70778e4be
 SHA512 
c0e75a9162f28ba4c4572c8fac4fd4c8c97d6d3505a37683646ba5f7e5f6ac0da69d5200d2646054de90e8e08f893a10e514591b69b8273640842b2cf90bddec
@@ -20,7 +19,6 @@ DIST microsoft.csharp.4.3.0.nupkg 462324 BLAKE2B 
c6cbdfc136e3895429e8d941ff1fd40
 DIST microsoft.csharp.4.7.0.nupkg 627100 BLAKE2B 
114a5af7151feb80785619d54caf5f928558a034254b5c2e185820a441f017705c933b0d66a31d395ce516a81f97655cfeca46e37397082b1b5d6ac6f507301a
 SHA512 
2c96988515f95714d4b83f5650f183dc6a564e0b3cf5255fa0e3ef48476debab4bde542f9f2f6c47f6620b7a71d6a515e4415e6d2e388b60817a29621d5690df
 DIST microsoft.extensions.objectpool.7.0.11.nupkg 82380 BLAKE2B 
794cc26cc0f736212d08975c7d88ade9ee587370e08b851a984dd1ad0a81d247cefe2f1cfd276a4d2e4ad7eee8b95511854d9fbbc4a8604d6ce368548c4b3304
 SHA512 
74115a70ad4713f683a784fe0b4662365d856e71e48db55e8eef5b1c611d9121df80e01e7beed8cef587781e86a033fa391530a46bfd87d06a38700acabfedfa
 DIST microsoft.extensions.objectpool.7.0.13.nupkg 83932 BLAKE2B 
15f6b9ee4de66f042a3100b125eeab8ede121d3f379b757ce81af924cf1e99b4b83f3255004b52c67f08b63443c61c971a7563c35fd3d5870826d3e9b93f926b
 SHA512 
37aea40332817dcb38cc85ff8953143a17e7f17bf761ed50a4b192f08512a421daf95c61d99b1d0e2a9dd18da6eebc8f53a154d8b3939d9fb4ca69a6f37bc2eb
-DIST microsoft.extensions.objectpool.7.0.9.nupkg 82109 BLAKE2B 
eab5894da4ab77505db8c2580b6b2a3eda72903f13b6d33c042b44d0ffdf7cc1e4c340d256f4951ab44c7c1eb1966f62b1b6745fcac54a5a474da42afedd5245
 SHA512 
b5e8b122061f714e1bc9182e55dfd5844acaf646468f9fe9d4d9906f87577766332664d0fbd966a25bf937a188513f9a1e2fc287f15f8d8c40406741a019a164
 DIST microsoft.management.infrastructure.2.0.0.nupkg 92871 BLAKE2B 
4e09a785ceb108766f7753a052d6d2a3634c474cc3a3baf6b04891f8bc3f57d5cba60c06797999cecf7cbf634bf5366eab631553a33d0d9bc001ad3585278065
 SHA512 
49b35acb4eafe76d69519bb2f85d8862d18b79e1f168f964ba6669d64ef560ed75945a88ab7d30f30711b6ab3fe7459cb594da51a52feace56cb471e4d3e0af5
 DIST microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg 99289 
BLAKE2B 

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

2023-11-25 Thread Maciej Barć
commit: 74cb9874dae15417023b6f6675599413bbb41fa7
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:08:04 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74cb9874

dev-dotnet/csharp-gentoodotnetinfo: drop old 1.0.0

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

 dev-dotnet/csharp-gentoodotnetinfo/Manifest|  1 -
 .../csharp-gentoodotnetinfo-1.0.0.ebuild   | 50 --
 2 files changed, 51 deletions(-)

diff --git a/dev-dotnet/csharp-gentoodotnetinfo/Manifest 
b/dev-dotnet/csharp-gentoodotnetinfo/Manifest
index 34fdff466853..055efa2f14f7 100644
--- a/dev-dotnet/csharp-gentoodotnetinfo/Manifest
+++ b/dev-dotnet/csharp-gentoodotnetinfo/Manifest
@@ -1,4 +1,3 @@
-DIST csharp-gentoodotnetinfo-1.0.0.tar.bz2 11273 BLAKE2B 
dc813e3af220b8a348716e3fd95640cd284083a463b007e5943b0f335161d3491637e47f894f276dd45b8dae74b2d057874425beef1bf3463b50eee9e480b495
 SHA512 
3900dd435cc122e2c368c4040413f64f5f232cb374d672f843b73c41a9a1aef2903db53f5688c223f478a521908001c025d74fbf1d59bb7608be26cf780eaf38
 DIST csharp-gentoodotnetinfo-1.1.1.tar.bz2 19051 BLAKE2B 
e55042c43c956d7a7cef999f92ce131aaeccc10db6a248d154aabd01f9072d71baed29f1ccfdd8c3f96d094f3eab491e4a9e04e1239ae23ba22695363cd35e6a
 SHA512 
372a61251a3a8f0df2cf2b5dc83fc6348b7551c3101646ad10086cd324363e63589d056d7f260058c5ab2f01ba759d231b078c923a592f7d11a7b81b6004fcd1
 DIST microsoft.dotnet.platformabstractions.3.1.6.nupkg 72146 BLAKE2B 
08d852b5e6558b499f2d780284aa747e5cf39886d86fa378128fae9f71741bd57c5bc75c0077948f193b7e8ea03a520d8ef3bd3b4fc80779adb4a84a4b44fe8c
 SHA512 
55b87f544874686bed96889953b7e99e43426b79b0fac31cc452e0f4a27ca5cc08522c0ac967bf9df649f7c04137a5e2553d134ad79d5c1e69578367c2b4b4c6
 DIST system.commandline.2.0.0-beta4.22272.1.nupkg 616636 BLAKE2B 
5252560598c4cd67348520cea086c37b4151b984a61238de1984838975340247b16050113422b1765931bdfc1dee38e226789b6427e56ab7c3a36bf07d0bcc20
 SHA512 
979a7e66ba29e17bc5bec42e926ed15362e23ae403e498c955e09dffc4d3baa14777a06f95e25d591fc9757a0eaa18deb9e4662a1ca1663fa300f509a4a0383c

diff --git 
a/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.0.0.ebuild 
b/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.0.0.ebuild
deleted file mode 100644
index 31877c28a815..
--- a/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.0.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOTNET_PKG_COMPAT=7.0
-NUGETS="
-system.commandline@2.0.0-beta4.22272.1
-"
-
-inherit dotnet-pkg
-
-DESCRIPTION=".NET information tool for Gentoo"
-HOMEPAGE="https://gitlab.gentoo.org/dotnet/csharp-gentoodotnetinfo/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://gitlab.gentoo.org/dotnet/${PN}.git;
-else
-   
SRC_URI="https://gitlab.gentoo.org/dotnet/${PN}/-/archive/${PV}/${P}.tar.bz2;
-
-   KEYWORDS="~amd64 ~arm ~arm64"
-fi
-
-SRC_URI+=" ${NUGET_URIS} "
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-DOTNET_PKG_PROJECTS=(
-   
Source/v1/gentoo-dotnet-info-app/GentooDotnetInfo/GentooDotnetInfo.csproj
-)
-
-src_unpack() {
-   dotnet-pkg_src_unpack
-
-   if [[ -n ${EGIT_REPO_URI} ]] ; then
-   git-r3_src_unpack
-   fi
-}
-
-src_install() {
-   local launcher_dll="/usr/share/${P}/GentooDotnetInfo.dll"
-
-   dotnet-pkg-base_install
-   dotnet-pkg-base_dolauncher_portable "${launcher_dll}" gentoo-dotnet-info
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cider/

2023-11-25 Thread Maciej Barć
commit: b7afaadc802d56a8aeb4f7d8dc5cfb019c3f6b49
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:00:45 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7afaadc

app-emacs/cider: bump to 1.12.0

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

 app-emacs/cider/Manifest|  1 +
 app-emacs/cider/cider-1.12.0.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index 758324bd5d3d..d48a4115804b 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -1,3 +1,4 @@
 DIST cider-1.11.1.tar.gz 7290496 BLAKE2B 
c061652616341003241ecdb9001e4addcbae5b3b60161b121d3e6ff9408396e7907e8b13effedd706b08c9e541c694ae0f06c043f136a7bf83ed7870f4df88aa
 SHA512 
b59120c6acc43856ad8d6c573d8dfab7bb93453b435d482719d1e4b2591e286b450695ea5ae6d11bc9b8c5a2163e877d7cbe7ffdc034d611415a799a0363e235
+DIST cider-1.12.0.tar.gz 7291772 BLAKE2B 
b98c48e903981a55af935982cd9499fd017f5f49c8f20b4d7eb8a0b8ee133402ea1378363e33e1807305e116091197334de72bb480641c427b71835cb29a29ce
 SHA512 
5568d8985865bdf249f90e491c0289e41ba48f01a1e372588cb3562b6b44c9b118993711261fe5414ec7c7099b4097a9ae9c92aee065ca5482cfad63845df3f0
 DIST cider-1.7.0.tar.gz 6731090 BLAKE2B 
f569491c3279f34f07abb84c76d81fe61917d0d438a94bd7e6a1d55a20194d38c85566a12d23d4255feef54c9df22fcd5a5946226f18051571354fae0ff9dd8a
 SHA512 
f86cb5791c8949bf175dc27d59c324163d2d05c63d19b2e2a563b9a870bf78bf0832a895f28a30b6f76385e3d86142178820cde4b9dcd2c91c54e879b6b9cd19
 DIST cider-1.8.3.tar.gz 7282998 BLAKE2B 
a0c596decbed17fd7056d371cf68de1939d29256fc4e0180fb8bd8ed41f37803b3aa4ad533aedd6321ebc1547ee645bb6e503e0dba939c1ec694137e87d1ba65
 SHA512 
b703c0a35e27f7de4d87b0e4a58d5a6b3fcdae41262ca47dab22ad74ecce73510d57f3ab135e83edd7df447a91fbaaa994c60f5dbcec611feb3c7b5e8141b42f

diff --git a/app-emacs/cider/cider-1.12.0.ebuild 
b/app-emacs/cider/cider-1.12.0.ebuild
new file mode 100644
index ..0159835af876
--- /dev/null
+++ b/app-emacs/cider/cider-1.12.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=26
+
+inherit elisp optfeature
+
+DESCRIPTION="Clojure Interactive Development Environment for GNU Emacs"
+HOMEPAGE="https://cider.mx/
+   https://github.com/clojure-emacs/cider/;
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/clojure-emacs/${PN}.git;
+else
+   SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   app-emacs/clojure-mode
+   app-emacs/parseedn
+   app-emacs/queue
+   app-emacs/sesman
+   app-emacs/spinner
+"
+BDEPEND="
+   ${RDEPEND}
+   test? ( app-emacs/buttercup )
+"
+
+ELISP_REMOVE="
+   test/${PN}-jar-tests.el
+   test/enrich/${PN}-docstring-tests.el
+   test/integration/integration-tests.el
+"
+DOCS=( CHANGELOG.md README.md ROADMAP.md refcard )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+   buttercup -L . -L test --traceback full || die "tests failed"
+}
+
+src_install() {
+   elisp_src_install
+
+   optfeature "Connecting to leiningen REPL"   \
+   dev-java/leiningen dev-java/leiningen-bin
+}



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

2023-11-25 Thread Maciej Barć
commit: 82386225e26a9f0b4833cef20153f07a9c1c9cca
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:05:32 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82386225

dev-dotnet/dotnet-sdk-bin: drop old 7.0.401-r1

Bug: https://bugs.gentoo.org/918418
Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/dotnet-sdk-bin/Manifest |  6 --
 .../dotnet-sdk-bin-7.0.401-r1.ebuild   | 71 --
 2 files changed, 77 deletions(-)

diff --git a/dev-dotnet/dotnet-sdk-bin/Manifest 
b/dev-dotnet/dotnet-sdk-bin/Manifest
index cb013c89cfb6..99e664d35238 100644
--- a/dev-dotnet/dotnet-sdk-bin/Manifest
+++ b/dev-dotnet/dotnet-sdk-bin/Manifest
@@ -4,12 +4,6 @@ DIST dotnet-sdk-6.0.417-linux-musl-arm.tar.gz 182168816 
BLAKE2B b5e149074cb6076e
 DIST dotnet-sdk-6.0.417-linux-musl-arm64.tar.gz 180078950 BLAKE2B 
cfc3c11ce237da87aa1a85d06fa9d2c10c606c6642f56310729e26cf1701e774918de49d738dd636b9e970db2e62b9926f5a7d5b71308d1baba28376457f5baf
 SHA512 
0b3504a026d580303d4524ab3558e9e45b8785d2b7c3f4c7dba52ff4e3abe9fdc8d186227f7f3327b698c5799f38b8743ad7b14517395b5c7ad38d858e0e29df
 DIST dotnet-sdk-6.0.417-linux-musl-x64.tar.gz 185652013 BLAKE2B 
70995eabd48fe756aa3af38202f29a476fae513b6cd4643e374f1a9a7da35e14af3b1f6daa347b7c07a7ca46582f849a7b7bc6fa505085045bbf8dab38d06d9c
 SHA512 
caa0dbe8e9ca3ebdb5d98dd68b7d5606b70a0d8d586ff906f0a9e761155f26a2c7d70cd71eb5d48901342913985f862ac01f7142c717eefffb98fb5576bb1067
 DIST dotnet-sdk-6.0.417-linux-x64.tar.gz 186250370 BLAKE2B 
7a285c81cfa5e153aa8971b44b484204be982c7a2dad548cf5e518a22509a07d5599b93b09b2df3cefdc9d35132d274d0b860f003c4aab0c5aed4a9ad9dc372c
 SHA512 
997caff60dbad7259db7e3dd89886fc86b733fa6c1bd3864c8199f704eb24ee59395e327c43bb7c0ed74e57ec412bd616ea26f02f8f8668d04423d6f8e0a8a33
-DIST dotnet-sdk-7.0.401-linux-arm.tar.gz 214146328 BLAKE2B 
6291452e36442f44a459aa03e7418e693c098349e68e866e1a1a3a718118f5ea1b359911858288fbaa41a02cd5ea3e91da74bc40dfbaf9e631e5173b318b0a13
 SHA512 
baa82f57a16996b1e9a73261e23b74181c251399a4ecb09ceb95bcfcc8e3bf89e31ff26b0e0a8e87cb77406ad097719e8e392b684b2e00cdb81f2ba6f5134f1f
-DIST dotnet-sdk-7.0.401-linux-arm64.tar.gz 214008457 BLAKE2B 
33cd31d7950e8d7dafd503a7d760f4d82e5af254bcd42ca344635869218a1a2fae65490c41e655d5bbc75d84821f64edf4de2e1d8b18a2eb4364ece9dfa47d08
 SHA512 
7c6ba2047998c906353f8e8d7fa73589867f46cbc2d4ece6cc7ee4ca3402b6a18717089b98002c7d15e16ca6fd5b11e42037b5fb0e25aff39075d67d8be49e25
-DIST dotnet-sdk-7.0.401-linux-musl-arm.tar.gz 214138371 BLAKE2B 
bbb12a92bf5d3b88521c8397fe9419263906297feef9a6904bf32c325e8bbb5274ae0fc404975cb74179b31b8d1f7590f210c79400d72135566eca2b093f5a87
 SHA512 
a15e482abe9acf9b094f306edd5b6c84cc7e46c1da5496dd589471d5758304da99408d2c6510da99ad790a4593995ef09ac157a58a844201da23d6736736ffd8
-DIST dotnet-sdk-7.0.401-linux-musl-arm64.tar.gz 213974901 BLAKE2B 
444b86f4899c3979db257c229b3d717851b83e51156ea55e9c2004e41ed6a59f5c241ece7697c9ae40abd4b5557f00e51f4ce45c458990a238023750807fd597
 SHA512 
4c8e0ba9e6c4e0ff71c563a6a25d470c47d11270e7b166b8c2f1a41337dead0b5765fda17a9a332ba55ff3faaa7aadfa39142cb1e6d32d20c6b826ef521125e1
-DIST dotnet-sdk-7.0.401-linux-musl-x64.tar.gz 218584001 BLAKE2B 
c4a8fc3397796e20c3998633d858a506a6d87d409c082bb6bb6d45e5714ad3ca3075fd4f0d9cfc10d9417e1a2d86250a205126724bc08d34426c99e52e714515
 SHA512 
77a33605b815a50e2b79b110c1617f69668c7e802919ea954ac45aad4208750436c6fe0d71aad367a610846633a8da56e3f1f4f82460f801eb3b9437bf2051a0
-DIST dotnet-sdk-7.0.401-linux-x64.tar.gz 219152408 BLAKE2B 
69f1b10ffb3decdb81b99c08ecd3aeb8bed8415de1251e49d9cfe7cfe1d266e3a0807677bafd7e0be318c8ca5a70420fc911a9112e57b512114e7447e2eeccf1
 SHA512 
2544f58c7409b1fd8fe2c7f600f6d2b6a1929318071f16789bd6abf6deea00bd496dd6ba7f2573bbf17c891c4f56a372a073e57712acfd3e80ea3eb1b3f9c3d0
 DIST dotnet-sdk-7.0.404-linux-arm.tar.gz 214327326 BLAKE2B 
42e171b1b0abfed3d587dd4ac29966804be50e9dd01a7ff2a2d3929731ae5c55608f3bbfafb59385fe67b793e3c08a12bc0ccd39bef2b323bfffa86f1d7d224c
 SHA512 
25a5a4ba918be181fbe58b4e5c5b385c4825837ed0e3778b01754c35f0d2651ec71873697f8781e91adad9177c366a179c34378418d4736366c978115ca0a32b
 DIST dotnet-sdk-7.0.404-linux-arm64.tar.gz 213920418 BLAKE2B 
980a5f685290d5cffc6478e4add36cb3848b5893d33665348496c0dff000cd30437799a7a57d3d9d2d891a8c27f8880b909e21e1812446f44681d66e1840dd6f
 SHA512 
b7131829d08dadbfd3b55a509e2d9a9de90b7447e27187bd717cebf1b134bd0ddfcb9285032f2ce08bd427487125e8b3e9cdc99b7f92436901e803e65f1581de
 DIST dotnet-sdk-7.0.404-linux-musl-arm.tar.gz 214217752 BLAKE2B 
32d392dfd4d4e60b3a3fc1d6dcd0ab6fe888fdf2776e234835af26842299f28bae69f106c50affe82da648c707453a0bfd0864714d19dacc4aef679b91968185
 SHA512 
fdd975f762ff757f81b0cb9eb0063c32cd46d8c0fc45a1e29f1bffef2756b31cc725313e1e9b29c4908f0e7027970e594217af01cc909a0db0adec2384b6b916

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.401-r1.ebuild 

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

2023-11-25 Thread Maciej Barć
commit: 7721f8e50183ca6da2972e3c6806e04c805c4756
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:04:59 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7721f8e5

dev-dotnet/dotnet-sdk-bin: drop old 6.0.404-r1

Bug: https://bugs.gentoo.org/918418
Signed-off-by: Maciej Barć  gentoo.org>

 dev-dotnet/dotnet-sdk-bin/Manifest |  6 --
 .../dotnet-sdk-bin-6.0.404-r1.ebuild   | 70 --
 2 files changed, 76 deletions(-)

diff --git a/dev-dotnet/dotnet-sdk-bin/Manifest 
b/dev-dotnet/dotnet-sdk-bin/Manifest
index e6e102228ffd..cb013c89cfb6 100644
--- a/dev-dotnet/dotnet-sdk-bin/Manifest
+++ b/dev-dotnet/dotnet-sdk-bin/Manifest
@@ -1,9 +1,3 @@
-DIST dotnet-sdk-6.0.404-linux-arm.tar.gz 181563995 BLAKE2B 
ff359d26264f0298d6210a2b7ae8cd0f1b577bf9937aaff09805f361e54349bdab5338182b674c81c8cb330c90f7a17a601ccce899e63f2e837a90bfd02c3726
 SHA512 
1b9b5e0c45f90a4c752bf6990e5dda4110403a62392dc78abf9145c69b1d329b2630945a88cb4d7756322b188b7f4a9334bfc376067edff5dcfabfd85098d7d8
-DIST dotnet-sdk-6.0.404-linux-arm64.tar.gz 180324700 BLAKE2B 
33780337294f427da0b8d44d8a3819c4276c0b01ffefe5a846cc5524039a5af203a231fe5893c63dce5b1557cd1288c4cb3e1d93505320a49eeccd4fd22cefe7
 SHA512 
7c58595aa57b655ff5a268ae4fc680ff3fb15a84dcc0ce84ae7eb25ba27bf66f0c5273c985f15034583f5b05437a5354db68c4064953030dc4caebb11339ac76
-DIST dotnet-sdk-6.0.404-linux-musl-arm.tar.gz 182613890 BLAKE2B 
f0475535f703a80c23a881ef578eeac87923586b27bcc7ed018b75aa88dccc84dcbd9e20543b1e502e0e800b947afd8e6bbc3a44b4101ad786674d0ad2fb196a
 SHA512 
d7818ea567db81832cfeed5057c42255d2f19750a741a2cbc57e2d7134267a27e9937f86846b30f393c6f0ad2dbf0f4c73a902ed78b0de56138f077f62f34686
-DIST dotnet-sdk-6.0.404-linux-musl-arm64.tar.gz 180323728 BLAKE2B 
ff32a89653f265df2fda39dc0bb2ff6853e6fced029fb1a16096436a7876ad061e55a1d45fd29f395e4d6585f67cde2e5d95b0c0c2bbaec2b073cfd2785c87e5
 SHA512 
999220f7247881d44c7f5a429b25c04d31044a1b91af5ede3f899df142af2d9f056a4ac6058c9e56f14b014a479f3a7455bd499f42f8e0f9b4fcacfeabc023b5
-DIST dotnet-sdk-6.0.404-linux-musl-x64.tar.gz 185037621 BLAKE2B 
0ff97d56c4d061cb5f227c745afb34cf462c286f4c0347224885360cec861dfd59f90a6ef85571c49aa79b12d558111b07a29ac48451739f721e5b13d45f94c1
 SHA512 
5313d8cbb41e27f462a141914f852e3d3e729886ce063be82778e1444df2d44dadcd2829f60ae97ae300d19798fab9d3b3932a7d9b9d00e948a80ccebbf5e106
-DIST dotnet-sdk-6.0.404-linux-x64.tar.gz 185546757 BLAKE2B 
ce8447f82b93880c6491e06fd35d556b880f59403fd7c6161d228271de6bffc6c74810e5ec5d834e35a715b9bc6173cb028aeb443bd28717a2d8838b543eec9f
 SHA512 
7a0f4b308d3fe98df9b426b0f8f8fb7bd7247244af3570e867a3969349c62c7ea4c6da81a1a2280788e300784167a2933db523f461985aef0681e0cf14bf8f0d
 DIST dotnet-sdk-6.0.417-linux-arm.tar.gz 182268907 BLAKE2B 
fef6b9845d6ba6fd19cbe580f3a868ad48872fc919d119123886a9c975281ed0ab407cfe24421da1fb6bc6cc907c3d693278e0a3ab05f4382c10203095710c6e
 SHA512 
f14d5d24d6611139cff313275599923856307c3afe57d2439eb95e2a89da5fb54fdb6ce5b0d7a243f2d031af4eb0c277ce1914725f8b9dcff4002fcc05489f08
 DIST dotnet-sdk-6.0.417-linux-arm64.tar.gz 179979647 BLAKE2B 
069d6afc216b6ed3ebe3093e933f88af4d51f6a994fc4aeaae85658583a5cabf5e8ab08a0e1cfe53f7f19743769a9183b9e3d64b5464d6d96288ba51d983f261
 SHA512 
39cada75d9b92797de304987437498d853e1a525b38fa72d0d2949932a092fcf6036b055678686db42682b5b79cdc5ec5995cb01aa186762e081eb1ed38d2364
 DIST dotnet-sdk-6.0.417-linux-musl-arm.tar.gz 182168816 BLAKE2B 
b5e149074cb6076e03aaa90545d3916c072e9d1c46f6831633786658424fb8cbf12e72c3f497cb49755696668acb027534606152514f09d3417336aa7eb44eab
 SHA512 
86bff3ab8cecfd16f3d9d26da87b6cbeffd2041d474c56602ee5d77f6883fa64cfe85a19291fdc5afaab438fa5871e366f754b211ece161887f53c637473b661

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.404-r1.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.404-r1.ebuild
deleted file mode 100644
index b83a3190703b..
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.404-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION=".NET is a free, cross-platform, open-source developer platform"
-HOMEPAGE="https://dotnet.microsoft.com/;
-SRC_URI="
-amd64? (
-   elibc_glibc? ( 
https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-x64.tar.gz
 )
-   elibc_musl? ( 
https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-musl-x64.tar.gz
 )
-)
-arm? (
-   elibc_glibc? ( 
https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-arm.tar.gz
 )
-   elibc_musl? ( 
https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-musl-arm.tar.gz
 )
-)
-arm64? (
-   elibc_glibc? ( 
https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-arm64.tar.gz
 )
-   elibc_musl? ( 

[gentoo-commits] repo/gentoo:master commit in: app-emacs/php-mode/

2023-11-25 Thread Maciej Barć
commit: 0f4422f96a0326f497e9840d4180bac6f715df62
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:02:59 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4422f9

app-emacs/php-mode: bump to 1.25.1

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

 app-emacs/php-mode/Manifest   |  1 +
 app-emacs/php-mode/php-mode-1.25.1.ebuild | 34 +++
 2 files changed, 35 insertions(+)

diff --git a/app-emacs/php-mode/Manifest b/app-emacs/php-mode/Manifest
index b434925c791b..f93c6be1ec71 100644
--- a/app-emacs/php-mode/Manifest
+++ b/app-emacs/php-mode/Manifest
@@ -1 +1,2 @@
 DIST php-mode-1.25.0.tar.gz 139596 BLAKE2B 
59eb3e7ab533e464a713f7c983acaf613678cbc6137b673c1d142abeb23db00748de579521fe6c729b890d0b59571b0538c4511df33c6e5aac6b039bd7ca45b3
 SHA512 
d49f3e8fccef271369f0b86cd7245adafa9a3a862349a19a407aa9ee41f10ec3bf519cb3db4792166adffe8125866dd6cff1c9f2e71bee9ddebedcd197c856a4
+DIST php-mode-1.25.1.tar.gz 131105 BLAKE2B 
9672d3e71ead28cc7db78ca5c148340b1e1e2552804c172ac14003384c72c3eccf56f5c258da8f0b6e218976100a374af8f2f0c68595ee6b4a2a90d965b60644
 SHA512 
4e1acf92a95b7e836893160ae3a3bd7a510d7fa0af5f7a6eb3cc8141c6a90b803a339b5d49527ace4f6ec06364ca794f4b834b7391617420a3219dc95fbf61cc

diff --git a/app-emacs/php-mode/php-mode-1.25.1.ebuild 
b/app-emacs/php-mode/php-mode-1.25.1.ebuild
new file mode 100644
index ..a4c5626eb7ec
--- /dev/null
+++ b/app-emacs/php-mode/php-mode-1.25.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="GNU Emacs major mode for editing PHP code"
+HOMEPAGE="https://github.com/emacs-php/php-mode/;
+
+if [[ ${PV} == ** ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/emacs-php/${PN}.git;
+else
+   SRC_URI="https://github.com/emacs-php/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+fi
+
+S="${WORKDIR}"/${P}/lisp
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+DOCS=( ../AUTHORS.md ../CHANGELOG.md ../CONTRIBUTING.md ../README{,.ja}.md 
../docs )
+SITEFILE="50${PN}-gentoo.el"
+
+elisp-enable-tests ert "${S}" -L ../tests -l ../tests/php-mode-test.el
+
+src_test() {
+   touch ../tests/project/1/.git || die
+
+   elisp_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/php-mode/

2023-11-25 Thread Maciej Barć
commit: b8ea6389cd25e766beb722fce4bb7324ebd84977
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:02:01 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ea6389

app-emacs/php-mode: drop old 1.24.3

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

 app-emacs/php-mode/Manifest   |  1 -
 app-emacs/php-mode/php-mode-1.24.3.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/app-emacs/php-mode/Manifest b/app-emacs/php-mode/Manifest
index 80fbf11f2f98..b434925c791b 100644
--- a/app-emacs/php-mode/Manifest
+++ b/app-emacs/php-mode/Manifest
@@ -1,2 +1 @@
-DIST php-mode-1.24.3.tar.gz 139037 BLAKE2B 
07cd54f10f89a937481c523f1f6e4bbe0f006da80dabaf6ce245f9da89d8fc19a7703a6f05ac721eeec46c13e7ac2c6a7a754c731d4a4b7411030b7725c3b36c
 SHA512 
50568799e894c6aafd07416680a3011406a0ef6e906cd5780684c327a696f13411bd01dc71919f12663a8dd7b000435dd8259248e4db56d0a6a7807d8387be29
 DIST php-mode-1.25.0.tar.gz 139596 BLAKE2B 
59eb3e7ab533e464a713f7c983acaf613678cbc6137b673c1d142abeb23db00748de579521fe6c729b890d0b59571b0538c4511df33c6e5aac6b039bd7ca45b3
 SHA512 
d49f3e8fccef271369f0b86cd7245adafa9a3a862349a19a407aa9ee41f10ec3bf519cb3db4792166adffe8125866dd6cff1c9f2e71bee9ddebedcd197c856a4

diff --git a/app-emacs/php-mode/php-mode-1.24.3.ebuild 
b/app-emacs/php-mode/php-mode-1.24.3.ebuild
deleted file mode 100644
index 417386e9..
--- a/app-emacs/php-mode/php-mode-1.24.3.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="GNU Emacs major mode for editing PHP code"
-HOMEPAGE="https://github.com/emacs-php/php-mode/;
-SRC_URI="https://github.com/emacs-php/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-S="${WORKDIR}"/${P}/lisp
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-DOCS=( ../AUTHORS.md ../CHANGELOG.md ../CONTRIBUTING.md ../README{,.ja}.md 
../docs )
-SITEFILE="50${PN}-gentoo.el"
-
-elisp-enable-tests ert "${S}" -L ../tests -l ../tests/php-mode-test.el
-
-src_test() {
-   touch ../tests/project/1/.git || die
-
-   elisp_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/apheleia/

2023-11-25 Thread Maciej Barć
commit: a4e5a2404299cb8ccf55d922955820f25b4c942d
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 22:58:43 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e5a240

app-emacs/apheleia: bump to 4.0

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

 app-emacs/apheleia/Manifest|  1 +
 app-emacs/apheleia/apheleia-4.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/app-emacs/apheleia/Manifest b/app-emacs/apheleia/Manifest
index f7da0df3e01d..e2ddcb00377c 100644
--- a/app-emacs/apheleia/Manifest
+++ b/app-emacs/apheleia/Manifest
@@ -1 +1,2 @@
 DIST apheleia-3.2.tar.gz 44587 BLAKE2B 
b09764cedfe03d4b6086dba0cca7262253e2e03c401c237f82fbc773eeddd3e121471a35277f321175405c0cdedae9417240b80b5690b4a55b29e0067b312e14
 SHA512 
b351ef48f914500d04de20badb56a09657493702d95dbd5a5bbeec847cb79ee2977e5fdb8a26e25765b4308d2cee4b95cb2601da8022cda4b32adc64a660453c
+DIST apheleia-4.0.tar.gz 170327 BLAKE2B 
82e5b545045ef8e5e17dd6930efe21c6eb5d04f6e22d0ce07e13af7c09237b93c09ff756e8e024751ecfc46d0809e408bfdc14e192cd9ded5cce955cd67a66bb
 SHA512 
5cc5a12a8418372ade1ba968e34d8eae067d2c3401aeabd860b562a66a6efd1cc1b21eba6ff1d1e96a4e7aff18d26097e8758774f3fa2d5e663bdb9407647936

diff --git a/app-emacs/apheleia/apheleia-4.0.ebuild 
b/app-emacs/apheleia/apheleia-4.0.ebuild
new file mode 100644
index ..6876690f67dd
--- /dev/null
+++ b/app-emacs/apheleia/apheleia-4.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=26
+
+inherit elisp
+
+DESCRIPTION="Reformat GNU Emacs buffers stably without moving point"
+HOMEPAGE="https://github.com/radian-software/apheleia/;
+SRC_URI="https://github.com/radian-software/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=( README.md CHANGELOG.md )
+SITEFILE="50${PN}-gentoo.el"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/clojure-mode/

2023-11-25 Thread Maciej Barć
commit: bc0ab2e499bbfd5f8eac5d8a3162c1910721fd9b
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 23:01:39 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc0ab2e4

app-emacs/clojure-mode: bump to 5.18.1

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

 app-emacs/clojure-mode/Manifest   |  1 +
 app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/app-emacs/clojure-mode/Manifest b/app-emacs/clojure-mode/Manifest
index 0555098e6b31..ab28977f320c 100644
--- a/app-emacs/clojure-mode/Manifest
+++ b/app-emacs/clojure-mode/Manifest
@@ -1,2 +1,3 @@
 DIST clojure-mode-5.17.0.tar.gz 23409187 BLAKE2B 
58cf80924467dfa523bc1049463b1ab67199deb3da90476fb44e2e477b52470e0fb7607b2cb21457607b18a04f77b4a5a93c447bb5d511f81dc984a20df4f882
 SHA512 
33575215c1f1a8000bfb6741a8a27fadc092b53244dc743a44bfbcdd15cd12e9b8918ecb015e35a380539916cfa112cdbde593b266e3221869bf13f2b9cfda19
 DIST clojure-mode-5.18.0.tar.gz 23409229 BLAKE2B 
03664c4693aaa45a846b4a2fadb18fe7351c8599a06690798c497aca3b9a044c030f4601ccd7de3bbe6ee3e1c45da3eb0e57b9daceaec88a74359733d59dfc76
 SHA512 
493f258d2a95c146da297949daeb0505467e18e111a312041ea3a121306e56b9265ed0ce44a7c30c97b0c369b96cc4584c8a1b0478f937e924ddfe06201c83e6
+DIST clojure-mode-5.18.1.tar.gz 23408800 BLAKE2B 
6a96f5c7f92700b303e8abf440088d19a7f428999aa5faeb6e17dc67267f34f8c1c4bd2d7082e8557975e71afef38c864b3662630612806174f13ab8dd14c9e1
 SHA512 
b0440682fd28eaa02da6c62f44e2fbc405d370dadea95b072b1c5d43d569b0eb82bff4228bce02346d94a2e65110e326f4b382b06b091e8dd25cfc004b461496

diff --git a/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild 
b/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild
new file mode 100644
index ..56641b38dafa
--- /dev/null
+++ b/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="Major mode for Clojure code"
+HOMEPAGE="https://github.com/clojure-emacs/clojure-mode/;
+SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   test? (
+   app-emacs/s
+   app-emacs/buttercup
+   app-emacs/paredit
+   )
+"
+
+DOCS=( README.md doc )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+   buttercup -L . -L test --traceback full || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cider/

2023-11-25 Thread Maciej Barć
commit: ae52bb1b3cd1ad2657dfb7e9367a1a1a5fe99634
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 22:59:50 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae52bb1b

app-emacs/cider: drop old 1.9.0

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

 app-emacs/cider/Manifest   |  1 -
 app-emacs/cider/cider-1.9.0.ebuild | 59 --
 2 files changed, 60 deletions(-)

diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index af37742a6783..410958ce557f 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -2,4 +2,3 @@ DIST cider-1.10.0.tar.gz 7287469 BLAKE2B 
6f369bad59ef5ba2a847488c8500d298321f8ea
 DIST cider-1.11.1.tar.gz 7290496 BLAKE2B 
c061652616341003241ecdb9001e4addcbae5b3b60161b121d3e6ff9408396e7907e8b13effedd706b08c9e541c694ae0f06c043f136a7bf83ed7870f4df88aa
 SHA512 
b59120c6acc43856ad8d6c573d8dfab7bb93453b435d482719d1e4b2591e286b450695ea5ae6d11bc9b8c5a2163e877d7cbe7ffdc034d611415a799a0363e235
 DIST cider-1.7.0.tar.gz 6731090 BLAKE2B 
f569491c3279f34f07abb84c76d81fe61917d0d438a94bd7e6a1d55a20194d38c85566a12d23d4255feef54c9df22fcd5a5946226f18051571354fae0ff9dd8a
 SHA512 
f86cb5791c8949bf175dc27d59c324163d2d05c63d19b2e2a563b9a870bf78bf0832a895f28a30b6f76385e3d86142178820cde4b9dcd2c91c54e879b6b9cd19
 DIST cider-1.8.3.tar.gz 7282998 BLAKE2B 
a0c596decbed17fd7056d371cf68de1939d29256fc4e0180fb8bd8ed41f37803b3aa4ad533aedd6321ebc1547ee645bb6e503e0dba939c1ec694137e87d1ba65
 SHA512 
b703c0a35e27f7de4d87b0e4a58d5a6b3fcdae41262ca47dab22ad74ecce73510d57f3ab135e83edd7df447a91fbaaa994c60f5dbcec611feb3c7b5e8141b42f
-DIST cider-1.9.0.tar.gz 7285662 BLAKE2B 
ad26406cbcb7c63519cc0b46ca289acd50a07cbd56b33e7a555456dfebc4381ad4a25dcd2510f8c54437dcf1a4724e48883e271d8f5b52e4b1929dbfbb522906
 SHA512 
636e0eb82671e9e8e9eebd456a7ff5d4798a21e89127948a295d19853198d304b6b47fdb6c8f269ef77d0c3a9d89296e7a847d8ec6e32bf90e7978f1ae5d9d62

diff --git a/app-emacs/cider/cider-1.9.0.ebuild 
b/app-emacs/cider/cider-1.9.0.ebuild
deleted file mode 100644
index 0159835af876..
--- a/app-emacs/cider/cider-1.9.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=26
-
-inherit elisp optfeature
-
-DESCRIPTION="Clojure Interactive Development Environment for GNU Emacs"
-HOMEPAGE="https://cider.mx/
-   https://github.com/clojure-emacs/cider/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/clojure-emacs/${PN}.git;
-else
-   SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   app-emacs/clojure-mode
-   app-emacs/parseedn
-   app-emacs/queue
-   app-emacs/sesman
-   app-emacs/spinner
-"
-BDEPEND="
-   ${RDEPEND}
-   test? ( app-emacs/buttercup )
-"
-
-ELISP_REMOVE="
-   test/${PN}-jar-tests.el
-   test/enrich/${PN}-docstring-tests.el
-   test/integration/integration-tests.el
-"
-DOCS=( CHANGELOG.md README.md ROADMAP.md refcard )
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
-   buttercup -L . -L test --traceback full || die "tests failed"
-}
-
-src_install() {
-   elisp_src_install
-
-   optfeature "Connecting to leiningen REPL"   \
-   dev-java/leiningen dev-java/leiningen-bin
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/cider/

2023-11-25 Thread Maciej Barć
commit: 38b7241c45a09ee6564dd33d2f22344c72c504bf
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Nov 25 22:59:59 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Nov 26 00:04:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b7241c

app-emacs/cider: drop old 1.10.0

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

 app-emacs/cider/Manifest|  1 -
 app-emacs/cider/cider-1.10.0.ebuild | 59 -
 2 files changed, 60 deletions(-)

diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index 410958ce557f..758324bd5d3d 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -1,4 +1,3 @@
-DIST cider-1.10.0.tar.gz 7287469 BLAKE2B 
6f369bad59ef5ba2a847488c8500d298321f8eabda96bf687ceaf03ef6d4ba46553c9eed786a40350f6371ffc3354b49a1767bc845609d4a69b4a0435e545bd3
 SHA512 
7697b56088b84af2b8dc1e9eb2ddbb6542b708d6981359ae237eb3f2c0a4fa11bbd8fae2b048e5fc1b224a5c3c99cb46118666a638bcfb635812708a66a46aa5
 DIST cider-1.11.1.tar.gz 7290496 BLAKE2B 
c061652616341003241ecdb9001e4addcbae5b3b60161b121d3e6ff9408396e7907e8b13effedd706b08c9e541c694ae0f06c043f136a7bf83ed7870f4df88aa
 SHA512 
b59120c6acc43856ad8d6c573d8dfab7bb93453b435d482719d1e4b2591e286b450695ea5ae6d11bc9b8c5a2163e877d7cbe7ffdc034d611415a799a0363e235
 DIST cider-1.7.0.tar.gz 6731090 BLAKE2B 
f569491c3279f34f07abb84c76d81fe61917d0d438a94bd7e6a1d55a20194d38c85566a12d23d4255feef54c9df22fcd5a5946226f18051571354fae0ff9dd8a
 SHA512 
f86cb5791c8949bf175dc27d59c324163d2d05c63d19b2e2a563b9a870bf78bf0832a895f28a30b6f76385e3d86142178820cde4b9dcd2c91c54e879b6b9cd19
 DIST cider-1.8.3.tar.gz 7282998 BLAKE2B 
a0c596decbed17fd7056d371cf68de1939d29256fc4e0180fb8bd8ed41f37803b3aa4ad533aedd6321ebc1547ee645bb6e503e0dba939c1ec694137e87d1ba65
 SHA512 
b703c0a35e27f7de4d87b0e4a58d5a6b3fcdae41262ca47dab22ad74ecce73510d57f3ab135e83edd7df447a91fbaaa994c60f5dbcec611feb3c7b5e8141b42f

diff --git a/app-emacs/cider/cider-1.10.0.ebuild 
b/app-emacs/cider/cider-1.10.0.ebuild
deleted file mode 100644
index 0159835af876..
--- a/app-emacs/cider/cider-1.10.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=26
-
-inherit elisp optfeature
-
-DESCRIPTION="Clojure Interactive Development Environment for GNU Emacs"
-HOMEPAGE="https://cider.mx/
-   https://github.com/clojure-emacs/cider/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/clojure-emacs/${PN}.git;
-else
-   SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   app-emacs/clojure-mode
-   app-emacs/parseedn
-   app-emacs/queue
-   app-emacs/sesman
-   app-emacs/spinner
-"
-BDEPEND="
-   ${RDEPEND}
-   test? ( app-emacs/buttercup )
-"
-
-ELISP_REMOVE="
-   test/${PN}-jar-tests.el
-   test/enrich/${PN}-docstring-tests.el
-   test/integration/integration-tests.el
-"
-DOCS=( CHANGELOG.md README.md ROADMAP.md refcard )
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
-   buttercup -L . -L test --traceback full || die "tests failed"
-}
-
-src_install() {
-   elisp_src_install
-
-   optfeature "Connecting to leiningen REPL"   \
-   dev-java/leiningen dev-java/leiningen-bin
-}



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

2023-11-25 Thread Andreas Sturmlechner
commit: 306d1be4b48b586196f00210f5f46f0c496eeae9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 18 22:56:55 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:25:47 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=306d1be4

ecm.eclass: Enforce QT_MAJOR_VERSION=6 for packages w/ KFMIN >= 5.240

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

 eclass/ecm.eclass | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 39780f422f..6b870688a1 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -148,7 +148,8 @@ fi
 # @DESCRIPTION:
 # Minimum version of Frameworks to require. Default value for kde-frameworks
 # is ${PV} and 5.106.0 baseline for everything else.
-# If set to >=5.240, KF6/Qt6 will be assumed thus SLOT=6 dependencies added.
+# If set to >=5.240, KF6/Qt6 is assumed thus SLOT=6 dependencies added and
+# -DQT_MAJOR_VERSION=6 added to cmake args.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
: "${KFMIN:=$(ver_cut 1-2)}"
 fi
@@ -542,6 +543,10 @@ ecm_src_configure() {
 
local cmakeargs
 
+   if [[ ${_KFSLOT} == 6 ]]; then
+   cmakeargs+=( -DQT_MAJOR_VERSION=6 )
+   fi
+
if in_iuse test && ! use test ; then
cmakeargs+=( -DBUILD_TESTING=OFF )
 



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

2023-11-25 Thread Andreas Sturmlechner
commit: 1b8dd72d8fac079ef760faddc4e352d2089628e0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 18 23:10:06 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:26:49 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1b8dd72d

kde-apps/*meta: Prepare for gradual switching to KF6

Which means meta ebuilds must not enforce SLOTs but minimum version only.

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

 kde-apps/kde-apps-meta/kde-apps-meta-.ebuild   |  22 ++---
 .../kdeaccessibility-meta-.ebuild  |   8 +-
 kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild   |   4 +-
 kde-apps/kdecore-meta/kdecore-meta-.ebuild |  20 ++--
 kde-apps/kdeedu-meta/kdeedu-meta-.ebuild   |  50 +-
 kde-apps/kdegames-meta/kdegames-meta-.ebuild   |  84 
 .../kdegraphics-meta/kdegraphics-meta-.ebuild  |  32 +++
 .../kdemultimedia-meta-.ebuild |  24 ++---
 .../kdenetwork-meta/kdenetwork-meta-.ebuild|  22 ++---
 kde-apps/kdepim-meta/kdepim-meta-.ebuild   | 106 ++---
 kde-apps/kdesdk-meta/kdesdk-meta-.ebuild   |  36 +++
 kde-apps/kdeutils-meta/kdeutils-meta-.ebuild   |  42 
 12 files changed, 225 insertions(+), 225 deletions(-)

diff --git a/kde-apps/kde-apps-meta/kde-apps-meta-.ebuild 
b/kde-apps/kde-apps-meta/kde-apps-meta-.ebuild
index 211903ea4d..b3b2a3edfd 100644
--- a/kde-apps/kde-apps-meta/kde-apps-meta-.ebuild
+++ b/kde-apps/kde-apps-meta/kde-apps-meta-.ebuild
@@ -12,15 +12,15 @@ KEYWORDS=""
 IUSE="accessibility +admin +education +games +graphics +multimedia +network 
pim sdk +utils"
 
 RDEPEND="
-   >=kde-apps/kdecore-meta-${PV}:${SLOT}
-   accessibility? ( >=kde-apps/kdeaccessibility-meta-${PV}:${SLOT} )
-   admin? ( >=kde-apps/kdeadmin-meta-${PV}:${SLOT} )
-   education? ( >=kde-apps/kdeedu-meta-${PV}:${SLOT} )
-   games? ( >=kde-apps/kdegames-meta-${PV}:${SLOT} )
-   graphics? ( >=kde-apps/kdegraphics-meta-${PV}:${SLOT} )
-   multimedia? ( >=kde-apps/kdemultimedia-meta-${PV}:${SLOT} )
-   network? ( >=kde-apps/kdenetwork-meta-${PV}:${SLOT} )
-   pim? ( >=kde-apps/kdepim-meta-${PV}:${SLOT} )
-   sdk? ( >=kde-apps/kdesdk-meta-${PV}:${SLOT} )
-   utils? ( >=kde-apps/kdeutils-meta-${PV}:${SLOT} )
+   >=kde-apps/kdecore-meta-${PV}:*
+   accessibility? ( >=kde-apps/kdeaccessibility-meta-${PV}:* )
+   admin? ( >=kde-apps/kdeadmin-meta-${PV}:* )
+   education? ( >=kde-apps/kdeedu-meta-${PV}:* )
+   games? ( >=kde-apps/kdegames-meta-${PV}:* )
+   graphics? ( >=kde-apps/kdegraphics-meta-${PV}:* )
+   multimedia? ( >=kde-apps/kdemultimedia-meta-${PV}:* )
+   network? ( >=kde-apps/kdenetwork-meta-${PV}:* )
+   pim? ( >=kde-apps/kdepim-meta-${PV}:* )
+   sdk? ( >=kde-apps/kdesdk-meta-${PV}:* )
+   utils? ( >=kde-apps/kdeutils-meta-${PV}:* )
 "

diff --git a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild 
b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
index 20daf45665..a235d70888 100644
--- a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
+++ b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
@@ -12,8 +12,8 @@ KEYWORDS=""
 IUSE=""
 
 RDEPEND="
-   >=app-accessibility/kontrast-${PV}:${SLOT}
-   >=kde-apps/kmag-${PV}:${SLOT}
-   >=kde-apps/kmousetool-${PV}:${SLOT}
-   >=kde-apps/kmouth-${PV}:${SLOT}
+   >=app-accessibility/kontrast-${PV}:*
+   >=kde-apps/kmag-${PV}:*
+   >=kde-apps/kmousetool-${PV}:*
+   >=kde-apps/kmouth-${PV}:*
 "

diff --git a/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild 
b/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
index a721d3ea2d..1fa7c725c3 100644
--- a/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
+++ b/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
@@ -12,6 +12,6 @@ KEYWORDS=""
 IUSE="+cron"
 
 RDEPEND="
-   >=kde-apps/ksystemlog-${PV}:${SLOT}
-   cron? ( >=kde-apps/kcron-${PV}:${SLOT} )
+   >=kde-apps/ksystemlog-${PV}:*
+   cron? ( >=kde-apps/kcron-${PV}:* )
 "

diff --git a/kde-apps/kdecore-meta/kdecore-meta-.ebuild 
b/kde-apps/kdecore-meta/kdecore-meta-.ebuild
index b1334f3ab0..d7989354ef 100644
--- a/kde-apps/kdecore-meta/kdecore-meta-.ebuild
+++ b/kde-apps/kdecore-meta/kdecore-meta-.ebuild
@@ -12,23 +12,23 @@ KEYWORDS=""
 IUSE="+handbook +share +thumbnail +webengine"
 
 RDEPEND="
-   >=kde-apps/dolphin-${PV}:${SLOT}
-   >=kde-apps/kdialog-${PV}:${SLOT}
-   >=kde-apps/keditbookmarks-${PV}:${SLOT}
-   >=kde-apps/kfind-${PV}:${SLOT}
-   >=kde-apps/konsole-${PV}:${SLOT}
-   >=kde-apps/kwrite-${PV}:${SLOT}
-   handbook? ( >=kde-apps/khelpcenter-${PV}:${SLOT} )
+   >=kde-apps/dolphin-${PV}:*
+   >=kde-apps/kdialog-${PV}:*
+   >=kde-apps/keditbookmarks-${PV}:*
+   >=kde-apps/kfind-${PV}:*
+   

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

2023-11-25 Thread Andreas Sturmlechner
commit: fd96841bc1b90711c204d7e6589c0d9a3e260921
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 23:10:03 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:26:49 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fd96841b

sets: kde-frameworks-5-tier1 manually pin ECM to SLOT=0 for now

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

 sets/kde-frameworks-5-tier1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sets/kde-frameworks-5-tier1 b/sets/kde-frameworks-5-tier1
index 16dec22468..c9426a4078 100644
--- a/sets/kde-frameworks-5-tier1
+++ b/sets/kde-frameworks-5-tier1
@@ -4,7 +4,7 @@ kde-frameworks/attica:5
 kde-frameworks/bluez-qt:5
 kde-frameworks/breeze-icons:5
 kde-frameworks/breeze-icons-rcc:5
-kde-frameworks/extra-cmake-modules:5
+kde-frameworks/extra-cmake-modules:0
 kde-frameworks/kapidox:5
 kde-frameworks/karchive:5
 kde-frameworks/kcalendarcore:5



[gentoo-commits] proj/kde:master commit in: kde-plasma/breeze-plymouth/, profiles/updates/, kde-frameworks/breeze-icons/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: 787b3eade8d8ca27b27dcde436f711c6b347c75a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 22:01:23 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:25:47 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=787b3ead

kde-frameworks/extra-cmake-modules: slotmove 5 to 0

See also:
https://community.kde.org/Frameworks/6.0_Release_notes#Coinstallability

"Only one version of extra-cmake-modules can be installed. The KF6
version is backwards compatible and should also be used for KF5 builds."

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

 kde-apps/kdeedu-data/kdeedu-data-23.08.49..ebuild   | 2 +-
 kde-apps/kdeedu-data/kdeedu-data-.ebuild| 2 +-
 kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5..ebuild  | 2 +-
 kde-frameworks/breeze-icons/breeze-icons-5..ebuild  | 2 +-
 kde-frameworks/oxygen-icons/oxygen-icons-5..ebuild  | 2 +-
 kde-plasma/breeze-plymouth/breeze-plymouth-5.27.49..ebuild  | 2 +-
 kde-plasma/breeze-plymouth/breeze-plymouth-.ebuild  | 2 +-
 .../plasma-workspace-wallpapers-5.27.49..ebuild | 2 +-
 .../plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild | 2 +-
 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.27.49..ebuild| 2 +-
 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild| 2 +-
 media-sound/kid3/kid3-.ebuild   | 2 +-
 profiles/updates/4Q-2023| 1 +
 13 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/kde-apps/kdeedu-data/kdeedu-data-23.08.49..ebuild 
b/kde-apps/kdeedu-data/kdeedu-data-23.08.49..ebuild
index 0b30513140..97cfdea8a7 100644
--- a/kde-apps/kdeedu-data/kdeedu-data-23.08.49..ebuild
+++ b/kde-apps/kdeedu-data/kdeedu-data-23.08.49..ebuild
@@ -14,5 +14,5 @@ IUSE=""
 
 BDEPEND="
dev-qt/qtcore:5
-   kde-frameworks/extra-cmake-modules:5
+   kde-frameworks/extra-cmake-modules:0
 "

diff --git a/kde-apps/kdeedu-data/kdeedu-data-.ebuild 
b/kde-apps/kdeedu-data/kdeedu-data-.ebuild
index 0b30513140..97cfdea8a7 100644
--- a/kde-apps/kdeedu-data/kdeedu-data-.ebuild
+++ b/kde-apps/kdeedu-data/kdeedu-data-.ebuild
@@ -14,5 +14,5 @@ IUSE=""
 
 BDEPEND="
dev-qt/qtcore:5
-   kde-frameworks/extra-cmake-modules:5
+   kde-frameworks/extra-cmake-modules:0
 "

diff --git a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5..ebuild 
b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5..ebuild
index 2ca996be5b..369ddc4c9a 100644
--- a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5..ebuild
+++ b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5..ebuild
@@ -19,7 +19,7 @@ DEPEND="test? ( dev-qt/qttest:5 )"
 BDEPEND="${PYTHON_DEPS}
$(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]')
dev-qt/qtcore:5
-   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:0
test? ( app-misc/fdupes )
 "
 

diff --git a/kde-frameworks/breeze-icons/breeze-icons-5..ebuild 
b/kde-frameworks/breeze-icons/breeze-icons-5..ebuild
index 66fdb2069e..5ffe9f472f 100644
--- a/kde-frameworks/breeze-icons/breeze-icons-5..ebuild
+++ b/kde-frameworks/breeze-icons/breeze-icons-5..ebuild
@@ -19,7 +19,7 @@ DEPEND="test? ( dev-qt/qttest:5 )"
 BDEPEND="${PYTHON_DEPS}
$(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]')
dev-qt/qtcore:5
-   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:0
test? ( app-misc/fdupes )
 "
 

diff --git a/kde-frameworks/oxygen-icons/oxygen-icons-5..ebuild 
b/kde-frameworks/oxygen-icons/oxygen-icons-5..ebuild
index 3ac1ddded9..f6acd1dc8c 100644
--- a/kde-frameworks/oxygen-icons/oxygen-icons-5..ebuild
+++ b/kde-frameworks/oxygen-icons/oxygen-icons-5..ebuild
@@ -18,7 +18,7 @@ RESTRICT="!test? ( test )"
 
 BDEPEND="
>=dev-qt/qtcore-${QTMIN}:5
-   >=kde-frameworks/extra-cmake-modules-${PVCUT}:5
+   >=kde-frameworks/extra-cmake-modules-${PVCUT}:0
test? ( app-misc/fdupes )
 "
 DEPEND="test? ( >=dev-qt/qttest-${QTMIN}:5 )"

diff --git a/kde-plasma/breeze-plymouth/breeze-plymouth-5.27.49..ebuild 
b/kde-plasma/breeze-plymouth/breeze-plymouth-5.27.49..ebuild
index e4c281ed59..9680357809 100644
--- a/kde-plasma/breeze-plymouth/breeze-plymouth-5.27.49..ebuild
+++ b/kde-plasma/breeze-plymouth/breeze-plymouth-5.27.49..ebuild
@@ -14,7 +14,7 @@ SLOT="5"
 KEYWORDS=""
 IUSE=""
 
-BDEPEND=">=kde-frameworks/extra-cmake-modules-${KFMIN}:5"
+BDEPEND=">=kde-frameworks/extra-cmake-modules-${KFMIN}:0"
 DEPEND="sys-boot/plymouth"
 RDEPEND="${DEPEND}"
 

diff --git a/kde-plasma/breeze-plymouth/breeze-plymouth-.ebuild 

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

2023-11-25 Thread Andreas Sturmlechner
commit: 3988b47f84f5051001afbfa6b30b5c97c4fd72ea
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 15 21:33:29 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:25:47 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3988b47f

frameworks.kde.org.eclass: Define SLOT=6 for >=5.240, set ECM to SLOT=0

Exclude 5. from SLOT=6.

git master was set to 5.240 for KF6 ports, unstable KF6 releases use
numbers 5.245 and above.

Also do it with less lines and no intermediate vars.

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

 eclass/frameworks.kde.org.eclass | 21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/eclass/frameworks.kde.org.eclass b/eclass/frameworks.kde.org.eclass
index 456902d39c..5d54b736c9 100644
--- a/eclass/frameworks.kde.org.eclass
+++ b/eclass/frameworks.kde.org.eclass
@@ -35,18 +35,19 @@ inherit kde.org
 
 HOMEPAGE="https://develop.kde.org/products/frameworks/;
 
-_SLOT=6
-_SUBSLOT=${PV}
-if [[ ${KDE_BUILD_TYPE} == release ]]; then
-   _SUBSLOT=$(ver_cut 1-2)
-else
-   _SUBSLOT=
+SLOT=6
+if [[ ${PV} == 5. ]] || ver_test ${PV} -lt 5.240; then
+   SLOT=5
 fi
-if [[ ${PV/.*} == 5 ]]; then
-   _SLOT=5
+if [[ ${PN} == extra-cmake-modules ]]; then
+   SLOT=0
+else
+   if [[ ${KDE_BUILD_TYPE} == release ]]; then
+   SLOT=${SLOT}/$(ver_cut 1-2)
+   else
+   SLOT=${SLOT}/
+   fi
 fi
-SLOT=${_SLOT}/${_SUBSLOT}
-unset _SLOT _SUBSLOT
 
 # @ECLASS_VARIABLE: KDE_ORG_SCHEDULE_URI
 # @INTERNAL



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

2023-11-25 Thread Andreas Sturmlechner
commit: 8265ebedad8ae06f1889f03ed258d9322055fa58
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 15 21:04:07 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:25:47 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8265ebed

ecm.eclass: Relax kde-frameworks/extra-cmake-modules SLOT dep to :*

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

 eclass/ecm.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index b31fbf479f..39780f422f 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -270,8 +270,8 @@ case ${ECM_TEST} in
 esac
 
 BDEPEND+="
-   >=kde-frameworks/extra-cmake-modules-${KFMIN}:${_KFSLOT}
dev-libs/libpcre2:*
+   >=kde-frameworks/extra-cmake-modules-${KFMIN}:*
 "
 RDEPEND+=" >=kde-frameworks/kf-env-4"
 if [[ ${_KFSLOT} == 6 ]]; then



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

2023-11-25 Thread Andreas Sturmlechner
commit: 45e6c18e9550643b5dfe337f06a46910290cf0c4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 19 12:28:03 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:25:47 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=45e6c18e

ecm.eclass: Use _KFSLOT to aptly configure KF5/KF6 based packages

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

 eclass/ecm.eclass | 46 +-
 1 file changed, 25 insertions(+), 21 deletions(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 6b870688a1..6e194c97e2 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -87,26 +87,27 @@ fi
 # Will accept "true", "false", "optional", "forceoptional". If set to "false",
 # do nothing.
 # Otherwise, add "+handbook" to IUSE, add the appropriate dependency, and let
-# KF5DocTools generate and install the handbook from docbook file(s) found in
-# ECM_HANDBOOK_DIR. However if !handbook, disable build of ECM_HANDBOOK_DIR
-# in CMakeLists.txt.
-# If set to "optional", build with -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON
-# when !handbook. In case package requires KF5KDELibs4Support, see next:
-# If set to "forceoptional", remove a KF5DocTools dependency from the root
-# CMakeLists.txt in addition to the above.
+# KF${_KFSLOT}DocTools generate and install the handbook from docbook file(s)
+# found in ECM_HANDBOOK_DIR. However if !handbook, disable build of
+# ECM_HANDBOOK_DIR in CMakeLists.txt.
+# If set to "optional", build with
+# -DCMAKE_DISABLE_FIND_PACKAGE_KF${_KFSLOT}DocTools=ON when !handbook. In case
+# package requires KF5KDELibs4Support, see next:
+# If set to "forceoptional", remove a KF${_KFSLOT}DocTools dependency from the
+# root CMakeLists.txt in addition to the above.
 : "${ECM_HANDBOOK:=false}"
 
 # @ECLASS_VARIABLE: ECM_HANDBOOK_DIR
 # @DESCRIPTION:
 # Specifies the directory containing the docbook file(s) relative to ${S} to
-# be processed by KF5DocTools (kdoctools_install).
+# be processed by KF${_KFSLOT}DocTools (kdoctools_install).
 : "${ECM_HANDBOOK_DIR:=doc}"
 
 # @ECLASS_VARIABLE: ECM_PO_DIRS
 # @DESCRIPTION:
 # Specifies directories of l10n files relative to ${S} to be processed by
-# KF5I18n (ki18n_install). If IUSE nls exists and is disabled then disable
-# build of these directories in CMakeLists.txt.
+# KF${_KFSLOT}I18n (ki18n_install). If IUSE nls exists and is disabled then
+# disable build of these directories in CMakeLists.txt.
 : "${ECM_PO_DIRS:="po poqm"}"
 
 # @ECLASS_VARIABLE: ECM_QTHELP
@@ -128,14 +129,14 @@ fi
 # "forceoptional-recursive".
 # Default value is "false", except for CATEGORY=kde-frameworks where it is
 # set to "true". If set to "false", do nothing.
-# For any other value, add "test" to IUSE and DEPEND on dev-qt/qttest:5.
-# If set to "optional", build with -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Test=ON
-# when USE=!test.
-# If set to "forceoptional", punt Qt5Test dependency and ignore "autotests",
+# For any other value, add "test" to IUSE and DEPEND on dev-qt/qtbase:6[test]
+# (for KF5: dev-qt/qttest:5). If set to "optional", build with
+# -DCMAKE_DISABLE_FIND_PACKAGE_Qt${_KFSLOT}Test=ON when USE=!test. If set
+# to "forceoptional", punt Qt${_KFSLOT}Test dependency and ignore "autotests",
 # "test", "tests" subdirs from top-level CMakeLists.txt when USE=!test.
-# If set to "forceoptional-recursive", punt Qt5Test dependencies and make
-# autotest(s), unittest(s) and test(s) subdirs from *any* CMakeLists.txt in
-# ${S} and below conditional on BUILD_TESTING when USE=!test. This is always
+# If set to "forceoptional-recursive", punt Qt${_KFSLOT}Test dependencies and
+# make autotest(s), unittest(s) and test(s) subdirs from *any* CMakeLists.txt
+# in ${S} and below conditional on BUILD_TESTING when USE=!test. This is always
 # meant as a short-term fix and creates ${T}/${P}-tests-optional.patch to
 # refine and submit upstream.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
@@ -158,7 +159,10 @@ fi
 # @ECLASS_VARIABLE: _KFSLOT
 # @INTERNAL
 # @DESCRIPTION:
-# KDE Frameworks and Qt slot dependency, implied by KFMIN version.
+# KDE Frameworks and Qt main slot dependency, implied by KFMIN version, *not*
+# necessarily the package's SLOT. This is being used throughout the eclass to
+# depend on either :5 or :6 Qt/KF packages as well as setting correctly
+# prefixed cmake args.
 : "${_KFSLOT:=5}"
 if [[ ${CATEGORY} == kde-frameworks ]]; then
if [[ ${PV} != 5. ]] && $(ver_test ${KFMIN} -ge 5.240); then
@@ -489,7 +493,7 @@ ecm_src_prepare() {
# always install unconditionally for kconfigwidgets - if you use
# language X as system language, and there is a combobox with 
language
# names, the translated language name for language Y is taken 
from
-   # /usr/share/locale/Y/kf5_entry.desktop
+   # /usr/share/locale/Y/kf${_KFSLOT}_entry.desktop
[[ ${PN} != kconfigwidgets ]] && 

[gentoo-commits] repo/gentoo:master commit in: app-i18n/kcm-fcitx/, games-action/prismlauncher/, media-sound/kid3/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: 4396c608794f2d2760ef53df83426c52aef59704
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 20:22:17 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4396c608

kde-frameworks/extra-cmake-modules: slotmove 5 to 0

See also:
https://community.kde.org/Frameworks/6.0_Release_notes#Coinstallability

"Only one version of extra-cmake-modules can be installed. The KF6
version is backwards compatible and should also be used for KF5 builds."

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

 app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild | 2 +-
 app-i18n/fcitx-qt5/fcitx-qt5-1.2.5.ebuild   | 2 +-
 app-i18n/fcitx-qt5/fcitx-qt5-4..ebuild  | 2 +-
 app-i18n/fcitx/fcitx-4.2.9.8.ebuild | 2 +-
 app-i18n/fcitx/fcitx-4..ebuild  | 2 +-
 app-i18n/kcm-fcitx/kcm-fcitx-0.5.6.ebuild   | 2 +-
 app-i18n/kcm-fcitx/kcm-fcitx-4.5..ebuild| 2 +-
 dev-util/heaptrack/heaptrack-1.5.0.ebuild   | 2 +-
 dev-util/heaptrack/heaptrack-.ebuild| 2 +-
 games-action/prismlauncher/prismlauncher-7.2-r1.ebuild  | 2 +-
 games-action/prismlauncher/prismlauncher-8.0.ebuild | 2 +-
 games-action/prismlauncher/prismlauncher-.ebuild| 2 +-
 games-emulation/melonds/melonds-0.9.5-r4.ebuild | 2 +-
 games-emulation/melonds/melonds-.ebuild | 2 +-
 kde-apps/kdeedu-data/kdeedu-data-23.04.3.ebuild | 2 +-
 kde-apps/kdeedu-data/kdeedu-data-23.08.3.ebuild | 2 +-
 kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.110.0.ebuild | 2 +-
 kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.112.0.ebuild | 2 +-
 kde-frameworks/breeze-icons/breeze-icons-5.110.0.ebuild | 2 +-
 kde-frameworks/breeze-icons/breeze-icons-5.112.0.ebuild | 2 +-
 kde-frameworks/oxygen-icons/oxygen-icons-5.110.0.ebuild | 2 +-
 kde-frameworks/oxygen-icons/oxygen-icons-5.112.0.ebuild | 2 +-
 kde-misc/kshutdown/kshutdown-5.2.ebuild | 2 +-
 kde-plasma/breeze-plymouth/breeze-plymouth-5.27.8.ebuild| 2 +-
 kde-plasma/breeze-plymouth/breeze-plymouth-5.27.9.ebuild| 2 +-
 .../plasma-workspace-wallpapers-5.27.8.ebuild   | 2 +-
 .../plasma-workspace-wallpapers-5.27.9.ebuild   | 2 +-
 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.27.8.ebuild  | 2 +-
 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.27.9.ebuild  | 2 +-
 media-fonts/oxygen-fonts/oxygen-fonts-5.4.3-r1.ebuild   | 2 +-
 media-sound/kid3/kid3-3.9.4.ebuild  | 2 +-
 net-irc/kvirc/kvirc-5.2_pre2022062900.ebuild| 2 +-
 net-irc/kvirc/kvirc-.ebuild | 2 +-
 net-irc/quassel/quassel-0.14.0-r1.ebuild| 2 +-
 net-irc/quassel/quassel-0.14.0-r2.ebuild| 2 +-
 net-irc/quassel/quassel-.ebuild | 2 +-
 profiles/updates/4Q-2023| 1 +
 x11-misc/copyq/copyq-6.4.0.ebuild   | 2 +-
 x11-misc/copyq/copyq-7.0.0.ebuild   | 2 +-
 x11-misc/sddm/sddm-0.18.1-r8.ebuild | 2 +-
 x11-misc/sddm/sddm-0.20.0-r1.ebuild | 2 +-
 x11-themes/qtcurve/qtcurve-1.9.0_p20210412.ebuild   | 2 +-
 x11-themes/qtcurve/qtcurve-.ebuild  | 2 +-
 43 files changed, 43 insertions(+), 42 deletions(-)

diff --git a/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild 
b/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild
index 7e3626488cb3..de70b12dcde9 100644
--- a/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild
+++ b/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild
@@ -35,7 +35,7 @@ DEPEND="
 RDEPEND="${DEPEND}
x11-themes/hicolor-icon-theme
 "
-BDEPEND="kde-frameworks/extra-cmake-modules:5"
+BDEPEND="kde-frameworks/extra-cmake-modules:0"
 
 PATCHES=(

"${FILESDIR}/0002-settings-disable-checking-for-updates-by-default.patch"

diff --git a/app-i18n/fcitx-qt5/fcitx-qt5-1.2.5.ebuild 
b/app-i18n/fcitx-qt5/fcitx-qt5-1.2.5.ebuild
index a95e8874b964..4dc0c8089588 100644
--- a/app-i18n/fcitx-qt5/fcitx-qt5-1.2.5.ebuild
+++ b/app-i18n/fcitx-qt5/fcitx-qt5-1.2.5.ebuild
@@ -28,7 +28,7 @@ BDEPEND=">=app-i18n/fcitx-4.2.9:4
dev-qt/qtcore:5
dev-qt/qtdbus:5

[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: cbe4689429d7ad1e6e28d24faafab9ec5ade7b4f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 15 21:04:07 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbe46894

ecm.eclass: Relax kde-frameworks/extra-cmake-modules SLOT dep to :*

We do not need to pin to 0 right away to let overlays catch up.

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

 eclass/ecm.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index b58a38be027f..3c102d669caf 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -276,7 +276,7 @@ esac
 
 BDEPEND+="
dev-libs/libpcre2:*
-   >=kde-frameworks/extra-cmake-modules-${KFMIN}:${KFSLOT}
+   >=kde-frameworks/extra-cmake-modules-${KFMIN}:*
 "
 RDEPEND+=" >=kde-frameworks/kf-env-4"
 if [[ ${_KFSLOT} == 6 ]]; then



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/

2023-11-25 Thread Andreas Sturmlechner
commit: 1bd3a098d72b7795e35c772dba06e2182575101d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 21:52:00 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd3a098

kde-frameworks/extra-cmake-modules: Revbump dropping subslot

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

 ...e-modules-5.110.0.ebuild => extra-cmake-modules-5.110.0-r1.ebuild} | 4 +---
 ...e-modules-5.112.0.ebuild => extra-cmake-modules-5.112.0-r1.ebuild} | 0
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git 
a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0-r1.ebuild
similarity index 97%
rename from 
kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0.ebuild
rename to 
kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0-r1.ebuild
index 6e5ad27851a6..01fab67c74db 100644
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0.ebuild
+++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.110.0-r1.ebuild
@@ -16,6 +16,7 @@ IUSE="doc test"
 
 RESTRICT="!test? ( test )"
 
+RDEPEND="app-arch/libarchive[bzip2]"
 BDEPEND="
doc? (
${PYTHON_DEPS}
@@ -27,9 +28,6 @@ BDEPEND="
>=dev-qt/qtcore-${QTMIN}:5
)
 "
-RDEPEND="
-   app-arch/libarchive[bzip2]
-"
 
 PATCHES=(
"${FILESDIR}/${PN}-5.49.0-no-fatal-warnings.patch"

diff --git 
a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.112.0.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.112.0-r1.ebuild
similarity index 100%
rename from 
kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.112.0.ebuild
rename to 
kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.112.0-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: ca48f7c92ccdddb4d65e094d5e8e19102e3413f3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov 19 12:28:03 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca48f7c9

ecm.eclass: Use _KFSLOT to aptly configure KF5/KF6 based packages

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

 eclass/ecm.eclass | 46 +-
 1 file changed, 25 insertions(+), 21 deletions(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 46cc53afd5cb..b58a38be027f 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -87,26 +87,27 @@ fi
 # Will accept "true", "false", "optional", "forceoptional". If set to "false",
 # do nothing.
 # Otherwise, add "+handbook" to IUSE, add the appropriate dependency, and let
-# KF5DocTools generate and install the handbook from docbook file(s) found in
-# ECM_HANDBOOK_DIR. However if !handbook, disable build of ECM_HANDBOOK_DIR
-# in CMakeLists.txt.
-# If set to "optional", build with -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON
-# when !handbook. In case package requires KF5KDELibs4Support, see next:
-# If set to "forceoptional", remove a KF5DocTools dependency from the root
-# CMakeLists.txt in addition to the above.
+# KF${_KFSLOT}DocTools generate and install the handbook from docbook file(s)
+# found in ECM_HANDBOOK_DIR. However if !handbook, disable build of
+# ECM_HANDBOOK_DIR in CMakeLists.txt.
+# If set to "optional", build with
+# -DCMAKE_DISABLE_FIND_PACKAGE_KF${_KFSLOT}DocTools=ON when !handbook. In case
+# package requires KF5KDELibs4Support, see next:
+# If set to "forceoptional", remove a KF${_KFSLOT}DocTools dependency from the
+# root CMakeLists.txt in addition to the above.
 : "${ECM_HANDBOOK:=false}"
 
 # @ECLASS_VARIABLE: ECM_HANDBOOK_DIR
 # @DESCRIPTION:
 # Specifies the directory containing the docbook file(s) relative to ${S} to
-# be processed by KF5DocTools (kdoctools_install).
+# be processed by KF${_KFSLOT}DocTools (kdoctools_install).
 : "${ECM_HANDBOOK_DIR:=doc}"
 
 # @ECLASS_VARIABLE: ECM_PO_DIRS
 # @DESCRIPTION:
 # Specifies directories of l10n files relative to ${S} to be processed by
-# KF5I18n (ki18n_install). If IUSE nls exists and is disabled then disable
-# build of these directories in CMakeLists.txt.
+# KF${_KFSLOT}I18n (ki18n_install). If IUSE nls exists and is disabled then
+# disable build of these directories in CMakeLists.txt.
 : "${ECM_PO_DIRS:="po poqm"}"
 
 # @ECLASS_VARIABLE: ECM_QTHELP
@@ -128,14 +129,14 @@ fi
 # "forceoptional-recursive".
 # Default value is "false", except for CATEGORY=kde-frameworks where it is
 # set to "true". If set to "false", do nothing.
-# For any other value, add "test" to IUSE and DEPEND on dev-qt/qttest:5.
-# If set to "optional", build with -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Test=ON
-# when USE=!test.
-# If set to "forceoptional", punt Qt5Test dependency and ignore "autotests",
+# For any other value, add "test" to IUSE and DEPEND on dev-qt/qtbase:6[test]
+# (for KF5: dev-qt/qttest:5). If set to "optional", build with
+# -DCMAKE_DISABLE_FIND_PACKAGE_Qt${_KFSLOT}Test=ON when USE=!test. If set
+# to "forceoptional", punt Qt${_KFSLOT}Test dependency and ignore "autotests",
 # "test", "tests" subdirs from top-level CMakeLists.txt when USE=!test.
-# If set to "forceoptional-recursive", punt Qt5Test dependencies and make
-# autotest(s), unittest(s) and test(s) subdirs from *any* CMakeLists.txt in
-# ${S} and below conditional on BUILD_TESTING when USE=!test. This is always
+# If set to "forceoptional-recursive", punt Qt${_KFSLOT}Test dependencies and
+# make autotest(s), unittest(s) and test(s) subdirs from *any* CMakeLists.txt
+# in ${S} and below conditional on BUILD_TESTING when USE=!test. This is always
 # meant as a short-term fix and creates ${T}/${P}-tests-optional.patch to
 # refine and submit upstream.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
@@ -158,7 +159,10 @@ fi
 # @ECLASS_VARIABLE: _KFSLOT
 # @INTERNAL
 # @DESCRIPTION:
-# KDE Frameworks and Qt slot dependency, implied by KFMIN version.
+# KDE Frameworks and Qt main slot dependency, implied by KFMIN version, *not*
+# necessarily the package's SLOT. This is being used throughout the eclass to
+# depend on either :5 or :6 Qt/KF packages as well as setting correctly
+# prefixed cmake args.
 : "${_KFSLOT:=5}"
 if [[ ${CATEGORY} == kde-frameworks ]]; then
if [[ ${PV} != 5. ]] && $(ver_test ${KFMIN} -ge 5.240); then
@@ -489,7 +493,7 @@ ecm_src_prepare() {
# always install unconditionally for kconfigwidgets - if you use
# language X as system language, and there is a combobox with 
language
# names, the translated language name for language Y is taken 
from
-   # /usr/share/locale/Y/kf5_entry.desktop
+   # /usr/share/locale/Y/kf${_KFSLOT}_entry.desktop
[[ ${PN} != kconfigwidgets ]] 

[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: 5c3bfa331387b445ac36c3fe71ec6c956e9ffe6c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 11 17:57:31 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c3bfa33

frameworks.kde.org.eclass: Support KF6, set ECM to SLOT=0

Define SLOT=6 properly for >=5.240, excluding 5.

git master was set to 5.240 for KF6 ports, unstable KF6 releases use
numbers 5.245 and above.

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

 eclass/frameworks.kde.org.eclass | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/eclass/frameworks.kde.org.eclass b/eclass/frameworks.kde.org.eclass
index af8e7b86f5a2..5d54b736c91b 100644
--- a/eclass/frameworks.kde.org.eclass
+++ b/eclass/frameworks.kde.org.eclass
@@ -35,8 +35,19 @@ inherit kde.org
 
 HOMEPAGE="https://develop.kde.org/products/frameworks/;
 
-SLOT=5/${PV}
-[[ ${KDE_BUILD_TYPE} == release ]] && SLOT=$(ver_cut 1)/$(ver_cut 1-2)
+SLOT=6
+if [[ ${PV} == 5. ]] || ver_test ${PV} -lt 5.240; then
+   SLOT=5
+fi
+if [[ ${PN} == extra-cmake-modules ]]; then
+   SLOT=0
+else
+   if [[ ${KDE_BUILD_TYPE} == release ]]; then
+   SLOT=${SLOT}/$(ver_cut 1-2)
+   else
+   SLOT=${SLOT}/
+   fi
+fi
 
 # @ECLASS_VARIABLE: KDE_ORG_SCHEDULE_URI
 # @INTERNAL



[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: a11feb4b6d5e640375c2f15ecab79b61f1077419
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu May 18 20:28:51 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11feb4b

ecm.eclass: Add SLOT=6 dependencies if KFMIN is >=5.240

- Excluding KDE Frameworks 5. from KFMIN>=5.240 check
- Enforce QT_MAJOR_VERSION=6 for packages w/ KFMIN >= 5.240

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

 eclass/ecm.eclass | 19 ---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 1bf11a946363..46cc53afd5cb 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -148,7 +148,8 @@ fi
 # @DESCRIPTION:
 # Minimum version of Frameworks to require. Default value for kde-frameworks
 # is ${PV} and 5.106.0 baseline for everything else.
-# Version will also be used to differentiate between KF5/Qt5 and KF6/Qt6.
+# If set to >=5.240, KF6/Qt6 is assumed thus SLOT=6 dependencies added and
+# -DQT_MAJOR_VERSION=6 added to cmake args.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
: "${KFMIN:=$(ver_cut 1-2)}"
 fi
@@ -158,8 +159,16 @@ fi
 # @INTERNAL
 # @DESCRIPTION:
 # KDE Frameworks and Qt slot dependency, implied by KFMIN version.
-: ${_KFSLOT:=5}
-[[ ${KFMIN/.*} == 6 ]] && _KFSLOT=6
+: "${_KFSLOT:=5}"
+if [[ ${CATEGORY} == kde-frameworks ]]; then
+   if [[ ${PV} != 5. ]] && $(ver_test ${KFMIN} -ge 5.240); then
+   _KFSLOT=6
+   fi
+else
+   if [[ ${KFMIN/.*} == 6 ]] || $(ver_test ${KFMIN} -ge 5.240); then
+   _KFSLOT=6
+   fi
+fi
 
 case ${ECM_NONGUI} in
true) ;;
@@ -534,6 +543,10 @@ ecm_src_configure() {
 
local cmakeargs
 
+   if [[ ${_KFSLOT} == 6 ]]; then
+   cmakeargs+=( -DQT_MAJOR_VERSION=6 )
+   fi
+
if in_iuse test && ! use test ; then
cmakeargs+=( -DBUILD_TESTING=OFF )
 



[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: f1bc09d2cf978bf4005f8aede9bda2e6d9699f3d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 11 18:50:30 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:27:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1bc09d2

ecm.eclass: Initial support for Qt6-based consumers

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

 eclass/ecm.eclass | 37 ++---
 1 file changed, 26 insertions(+), 11 deletions(-)

diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass
index 0331273faae1..1bf11a946363 100644
--- a/eclass/ecm.eclass
+++ b/eclass/ecm.eclass
@@ -154,11 +154,12 @@ if [[ ${CATEGORY} = kde-frameworks ]]; then
 fi
 : "${KFMIN:=5.106.0}"
 
-# @ECLASS_VARIABLE: KFSLOT
+# @ECLASS_VARIABLE: _KFSLOT
 # @INTERNAL
 # @DESCRIPTION:
 # KDE Frameworks and Qt slot dependency, implied by KFMIN version.
-: "${KFSLOT:=5}"
+: ${_KFSLOT:=5}
+[[ ${KFMIN/.*} == 6 ]] && _KFSLOT=6
 
 case ${ECM_NONGUI} in
true) ;;
@@ -189,7 +190,11 @@ esac
 case ${ECM_DESIGNERPLUGIN} in
true)
IUSE+=" designer"
-   BDEPEND+=" designer? ( dev-qt/designer:${KFSLOT} )"
+   if [[ ${_KFSLOT} == 6 ]]; then
+   BDEPEND+=" designer? ( 
dev-qt/qttools:${_KFSLOT}[designer] )"
+   else
+   BDEPEND+=" designer? ( dev-qt/designer:${_KFSLOT} )"
+   fi
;;
false) ;;
*)
@@ -212,7 +217,7 @@ esac
 case ${ECM_HANDBOOK} in
true|optional|forceoptional)
IUSE+=" +handbook"
-   BDEPEND+=" handbook? ( 
>=kde-frameworks/kdoctools-${KFMIN}:${KFSLOT} )"
+   BDEPEND+=" handbook? ( 
>=kde-frameworks/kdoctools-${KFMIN}:${_KFSLOT} )"
;;
false) ;;
*)
@@ -224,11 +229,13 @@ esac
 case ${ECM_QTHELP} in
true)
IUSE+=" doc"
-   COMMONDEPEND+=" doc? ( dev-qt/qt-docs:${KFSLOT} )"
-   BDEPEND+=" doc? (
-   >=app-doc/doxygen-1.8.13-r1
-   dev-qt/qthelp:${KFSLOT}
-   )"
+   COMMONDEPEND+=" doc? ( dev-qt/qt-docs:${_KFSLOT} )"
+   BDEPEND+=" doc? ( >=app-doc/doxygen-1.8.13-r1 )"
+   if [[ ${_KFSLOT} == 6 ]]; then
+   BDEPEND+=" dev-qt/qttools:${_KFSLOT}[assistant]"
+   else
+   BDEPEND+=" doc? ( dev-qt/qthelp:${_KFSLOT} )"
+   fi
;;
false) ;;
*)
@@ -240,7 +247,11 @@ esac
 case ${ECM_TEST} in
true|optional|forceoptional|forceoptional-recursive)
IUSE+=" test"
-   DEPEND+=" test? ( dev-qt/qttest:${KFSLOT} )"
+   if [[ ${_KFSLOT} == 6 ]]; then
+   DEPEND+=" test? ( dev-qt/qtbase:${_KFSLOT}[test] )"
+   else
+   DEPEND+=" test? ( dev-qt/qttest:${_KFSLOT} )"
+   fi
RESTRICT+=" !test? ( test )"
;;
false) ;;
@@ -255,7 +266,11 @@ BDEPEND+="
>=kde-frameworks/extra-cmake-modules-${KFMIN}:${KFSLOT}
 "
 RDEPEND+=" >=kde-frameworks/kf-env-4"
-COMMONDEPEND+=" dev-qt/qtcore:${KFSLOT}"
+if [[ ${_KFSLOT} == 6 ]]; then
+   COMMONDEPEND+=" dev-qt/qtbase:${_KFSLOT}"
+else
+   COMMONDEPEND+=" dev-qt/qtcore:${_KFSLOT}"
+fi
 
 DEPEND+=" ${COMMONDEPEND}"
 RDEPEND+=" ${COMMONDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: eclass/

2023-11-25 Thread Andreas Sturmlechner
commit: 3c980b4f715ca6f362e2e1c47f2c6cc26fe300f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  8 11:11:15 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:33:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c980b4f

frameworks.kde.org.eclass: Switch 5. to kf5 branch

See also:
https://mail.kde.org/pipermail/kde-frameworks-devel/2023-January/123124.html

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

 eclass/frameworks.kde.org.eclass | 43 
 1 file changed, 26 insertions(+), 17 deletions(-)

diff --git a/eclass/frameworks.kde.org.eclass b/eclass/frameworks.kde.org.eclass
index 5201464a76c8..af8e7b86f5a2 100644
--- a/eclass/frameworks.kde.org.eclass
+++ b/eclass/frameworks.kde.org.eclass
@@ -50,23 +50,32 @@ KDE_ORG_SCHEDULE_URI+="/Frameworks"
 # Helper variable to construct release group specific SRC_URI.
 _KDE_SRC_URI="mirror://kde/"
 
-if [[ ${KDE_BUILD_TYPE} != live && -z ${KDE_ORG_COMMIT} ]]; then
-   _KDE_SRC_URI+="stable/frameworks/$(ver_cut 1-2)/"
-   case ${KDE_ORG_NAME} in
-   kdelibs4support | \
-   kdesignerplugin | \
-   kdewebkit | \
-   khtml | \
-   kjs | \
-   kjsembed | \
-   kmediaplayer | \
-   kross | \
-   kxmlrpcclient)
-   _KDE_SRC_URI+="portingAids/"
-   ;;
-   esac
+case ${KDE_BUILD_TYPE} in
+   live)
+   if [[ ${PV} == 5. ]]; then
+   EGIT_BRANCH="kf5"
+   fi
+   ;;
+   *)
+   if [[ -z ${KDE_ORG_COMMIT} ]]; then
+   _KDE_SRC_URI+="stable/frameworks/$(ver_cut 1-2)/"
+   case ${KDE_ORG_NAME} in
+   kdelibs4support | \
+   kdesignerplugin | \
+   kdewebkit | \
+   khtml | \
+   kjs | \
+   kjsembed | \
+   kmediaplayer | \
+   kross | \
+   kxmlrpcclient)
+   _KDE_SRC_URI+="portingAids/"
+   ;;
+   esac
 
-   SRC_URI="${_KDE_SRC_URI}${KDE_ORG_NAME}-${PV}.tar.xz"
-fi
+   SRC_URI="${_KDE_SRC_URI}${KDE_ORG_NAME}-${PV}.tar.xz"
+   fi
+   ;;
+esac
 
 fi



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

2023-11-25 Thread Andreas Sturmlechner
commit: ba25152c65ff41114125d31cdddbdf35d813
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 23:23:54 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:24:55 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ba25152c

Documentation: regenerate-files: Support foreign categories in kde-frameworks 
sets

Also support high KF5/6 version numbers

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

 Documentation/maintainers/regenerate-files | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 1b4b4cdfc6..526428a26e 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -203,14 +203,14 @@ pushd ../../sets/ > /dev/null
 for set in *frameworks-5*${KF5_RELEASE}; do
newfile=${set/%-${KF5_RELEASE}}
echo -e "${HEADER}" > "${newfile}"
-   sed -r 
"/@/s/-${KF5_RELEASE}//g;/5\.$/s/~//;s/> "${newfile}"
+   sed -r 
"/@/s/-${KF5_RELEASE}//g;/5\.$/s/~//;s/> "${newfile}"
 done
 
 if [[ -n ${KF6_RELEASE} ]]; then
for set in *frameworks-6*${KF6_RELEASE}; do
newfile=${set/%-${KF6_RELEASE}}
echo -e "${HEADER}" > "${newfile}"
-   sed -r 
"/@/s/-${KF6_RELEASE}//g;/$/s/~//;s/> "${newfile}"
+   sed -r 
"/@/s/-${KF6_RELEASE}//g;/$/s/~//;s/> "${newfile}"
done
 fi
 



[gentoo-commits] repo/user/dlang:master commit in: dev-util/dlang-tools/, dev-lang/dmd/

2023-11-25 Thread Horodniceanu Andrei
commit: a00206144b36a51a5a4f48c64e93abba19a69c85
Author: Horodniceanu Andrei  proton  me>
AuthorDate: Sat Nov 25 23:12:35 2023 +
Commit: Horodniceanu Andrei  proton  me>
CommitDate: Sat Nov 25 23:12:35 2023 +
URL:https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=a0020614

dev-lang/dmd: add 2.105.3

Signed-off-by: Horodniceanu Andrei  proton.me>

 dev-lang/dmd/Manifest   | 2 +-
 dev-lang/dmd/{dmd-2.105.2.ebuild => dmd-2.105.3.ebuild} | 0
 dev-util/dlang-tools/Manifest   | 2 +-
 .../{dlang-tools-2.105.2.ebuild => dlang-tools-2.105.3.ebuild}  | 0
 4 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/dmd/Manifest b/dev-lang/dmd/Manifest
index 1e8a979..8d1880b 100644
--- a/dev-lang/dmd/Manifest
+++ b/dev-lang/dmd/Manifest
@@ -39,4 +39,4 @@ DIST dmd.2.101.2.linux.tar.xz 22666828 BLAKE2B 
8233d9f375291d73530a677cd5180153b
 DIST dmd.2.102.2.linux.tar.xz 22699620 BLAKE2B 
b0a8fc0650bfe5df4a40ccf20d160765a8ed7804915a1049366ff8b4044d7036ca7f27c8bc71146dc33bf60bf03bc09a9bd8758b9850b020480774f130325abd
 SHA512 
a2dab6efe46176bed0dca98fcf590c6823be9e4d5ca89bce0ff088e7c59a63f8eb4bb3742df1975cc90b5efd78c11377e682b0083fe44c394a73161cbb2b3aa3
 DIST dmd.2.103.1.linux.tar.xz 22747324 BLAKE2B 
b00f41b4ab48be9c5467342314995e69332d4c8bff86083474a940431721d179d5e5ef64734f355df2d96637983de2262d45516594434ad3ad6c4d57a0d7a54c
 SHA512 
854cf08d715506bd36d791c1471f2dd1d834f439bdf4489b4addf0cc5abdecbefceb966baeb764eb5ca816a5830ac7374818ba6fbcad24668d011d56a32a1f15
 DIST dmd.2.104.2.linux.tar.xz 22478264 BLAKE2B 
6af63d7a5c976ae251bb16d4b48fc354d429730d00ef33a1f81ef4ec9e491486f49e120c376b2c26f3e57a13f956ccf2c31d1511f4d59db399ae613aa62ec785
 SHA512 
a0e6bb94887950977743545a908d80d040b2a69c48139164f61c591d1678399636538c75c1aba4d9c25cc163ee60023872f6a50c8b84cc6c09394d33c66c1367
-DIST dmd.2.105.2.linux.tar.xz 22585512 BLAKE2B 
569aae4d3b4cd559953c7adaa4a5e3b7904cc26719ef53bd7d56b3b2e8b89550a06d635c5225c82ad61ec8b4d179f0b8eb79e135c3cb4e06bbe6a600b453ce4d
 SHA512 
89a6d275e5702415831b2621ca213ca26afab72170b3e67f69c16a54a6e95e1b8a4165a2b30b0fcce8c3af85af5c85621facb2cd23ee904b9190b199763dd461
+DIST dmd.2.105.3.linux.tar.xz 22582468 BLAKE2B 
bbff951452a3fa0ba8fd30ad4a24720ee2df9538abf123931366f4c596e2a224d2a3792e9d03370f3a285bf3b4f29b126b49a88874da912ea862da8eaf0d5d73
 SHA512 
6dc46d1d84cac5964eb0027cdae656525601e4e16ecaba8540f7f403182696300c2293e3971886fff6ad966bd440243acd5a1824a66638c8a09f584476b825a8

diff --git a/dev-lang/dmd/dmd-2.105.2.ebuild b/dev-lang/dmd/dmd-2.105.3.ebuild
similarity index 100%
rename from dev-lang/dmd/dmd-2.105.2.ebuild
rename to dev-lang/dmd/dmd-2.105.3.ebuild

diff --git a/dev-util/dlang-tools/Manifest b/dev-util/dlang-tools/Manifest
index 7408506..b3525c4 100644
--- a/dev-util/dlang-tools/Manifest
+++ b/dev-util/dlang-tools/Manifest
@@ -39,4 +39,4 @@ DIST dlang-tools-2.101.2.tar.gz 129467 BLAKE2B 
04a2240693ba9e04f796d367e2f10e11d
 DIST dlang-tools-2.102.2.tar.gz 129480 BLAKE2B 
1eba640a429ab6812bf7f2c5a15ced31f603c8abaecb9ab729369e2519424784e20243b57de3a0a0b8dd46e6f07054d6c625e43ce9f1271427b4341d41ff5800
 SHA512 
5e46b3b2b9646688283ddcbe2a1610051da3035bfcb225790b4f5b653e5a2dd3f0b9ed9e143b18b62f1533323dffb91ab13fab483c0d42f575cc5be4f3c7adc9
 DIST dlang-tools-2.103.1.tar.gz 129477 BLAKE2B 
4ae83c17fd354265ae8a221f849af9f293a6b81e86aec8713ee9e5eb32be6ebf2faa92c5d760270b76ac26eec05881d841264132cabdd493dc9ecffa00019f00
 SHA512 
5e4d535804f64b6d0374c12bf1fb9b64859f31e9ddd260ed73aefb66cbb6fd6cc0e892ac0e91d4ecf0771e817743f2c9cc9eb7b7631437083a799f98d6131eed
 DIST dlang-tools-2.104.2.tar.gz 129552 BLAKE2B 
656e2ae6b6194906a9ee0b29827e3de9e25ae1b3f099dc91c5f75d63fd366c07c4367067d73c744d0307b3e74a6ef54a527d17916a1b60b47ebbb8a08ebb9442
 SHA512 
a2dcece4a68e0f8791a04b5fc431e240f5052c66e0fc732bc52bbb0345e46d40dba83451123c8ea07ef517121b1831acb1e4e7e4bf501fc320382632bbb543db
-DIST dlang-tools-2.105.2.tar.gz 129644 BLAKE2B 
2ec9ace06e5ffe3ee0dae40f702eb7d0268460f86bdc613912a3931552b71d7a9d451d103946f7a4fba2fa6e07927c6ce4c9a162edeafa9ac719c0d8a2b5501e
 SHA512 
702841fa2c636c8d2fcd525bccb083a3fcaef660ade3bcf199fb4908f164464ba2d33afe5610a213b4b6d82e927d7fa75db7503094144a09054807bb67d77615
+DIST dlang-tools-2.105.3.tar.gz 129641 BLAKE2B 
31dad04cc0b80be9f93aaadf447f2b4006869765ea6f8f306fad8bfcc9081c1a62311b73208e90dade96dee151e5e7dec8572a57eff93e5ccc2d26c492f0f36a
 SHA512 
6fff158b4f483a0e32d9d90e662da340cad22033b337f9105082863054d38c447068f2fac438e1b0186898887e236bfd8fd3137bc002495c2fabf2e0c599c3d9

diff --git a/dev-util/dlang-tools/dlang-tools-2.105.2.ebuild 
b/dev-util/dlang-tools/dlang-tools-2.105.3.ebuild
similarity index 100%
rename from dev-util/dlang-tools/dlang-tools-2.105.2.ebuild
rename to dev-util/dlang-tools/dlang-tools-2.105.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/ppc/23.0/, profiles/releases/23.0/, ...

2023-11-25 Thread Andreas K. Hüttel
commit: 57250bdaec26224add7447e8d439d75960645737
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 25 23:12:22 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 25 23:13:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57250bda

profiles, 23.0: drop global DT_RELR and enable it only on x86 and Power

Bug: https://bugs.gentoo.org/show_bug.cgi?id=818376
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 profiles/default/linux/amd64/23.0/make.defaults | 4 
 profiles/default/linux/ppc/23.0/make.defaults   | 4 
 profiles/default/linux/ppc64/23.0/make.defaults | 4 
 profiles/default/linux/x86/23.0/make.defaults   | 4 
 profiles/releases/23.0/make.defaults| 4 ++--
 5 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/profiles/default/linux/amd64/23.0/make.defaults 
b/profiles/default/linux/amd64/23.0/make.defaults
new file mode 100644
index ..05f8f6a36542
--- /dev/null
+++ b/profiles/default/linux/amd64/23.0/make.defaults
@@ -0,0 +1,4 @@
+# Copyright 2023 Gentoo Authors.
+# Distributed under the terms of the GNU General Public License v2
+
+LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"

diff --git a/profiles/default/linux/ppc/23.0/make.defaults 
b/profiles/default/linux/ppc/23.0/make.defaults
new file mode 100644
index ..05f8f6a36542
--- /dev/null
+++ b/profiles/default/linux/ppc/23.0/make.defaults
@@ -0,0 +1,4 @@
+# Copyright 2023 Gentoo Authors.
+# Distributed under the terms of the GNU General Public License v2
+
+LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"

diff --git a/profiles/default/linux/ppc64/23.0/make.defaults 
b/profiles/default/linux/ppc64/23.0/make.defaults
new file mode 100644
index ..05f8f6a36542
--- /dev/null
+++ b/profiles/default/linux/ppc64/23.0/make.defaults
@@ -0,0 +1,4 @@
+# Copyright 2023 Gentoo Authors.
+# Distributed under the terms of the GNU General Public License v2
+
+LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"

diff --git a/profiles/default/linux/x86/23.0/make.defaults 
b/profiles/default/linux/x86/23.0/make.defaults
new file mode 100644
index ..05f8f6a36542
--- /dev/null
+++ b/profiles/default/linux/x86/23.0/make.defaults
@@ -0,0 +1,4 @@
+# Copyright 2023 Gentoo Authors.
+# Distributed under the terms of the GNU General Public License v2
+
+LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"

diff --git a/profiles/releases/23.0/make.defaults 
b/profiles/releases/23.0/make.defaults
index c802f3fa3409..67fcf7e034d8 100644
--- a/profiles/releases/23.0/make.defaults
+++ b/profiles/releases/23.0/make.defaults
@@ -13,8 +13,8 @@ USE="${USE} -cli"
 # bug 849875
 USE="${USE} -dri"
 
-# bug 818376
-LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs"
+# bug 818376 (only on specific arches)
+LDFLAGS="-Wl,-O1 -Wl,--as-needed"
 
 # copied from merged-usr feature
 # Mike Gilbert  (2022-08-31)



[gentoo-commits] repo/gentoo:master commit in: app-emacs/osm/

2023-11-25 Thread Sam James
commit: 707dc798026cf46a21512a178a64d98a84c8280e
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 23:08:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 23:08:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707dc798

app-emacs/osm: Stabilize 0.14 amd64, #918575

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

 app-emacs/osm/osm-0.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/osm/osm-0.14.ebuild b/app-emacs/osm/osm-0.14.ebuild
index e18c2dbd3553..b4b3876d52d5 100644
--- a/app-emacs/osm/osm-0.14.ebuild
+++ b/app-emacs/osm/osm-0.14.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == ** ]] ; then
 else
SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2023-11-25 Thread Sam James
commit: e674edffb0f730888eaad451e2ea24b0f04f2b7d
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 23:08:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 23:08:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e674edff

dev-python/ytmusicapi: Stabilize 1.3.1 ALLARCHES, #918570

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

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

diff --git a/dev-python/ytmusicapi/ytmusicapi-1.3.1.ebuild 
b/dev-python/ytmusicapi/ytmusicapi-1.3.1.ebuild
index 75a0cdb04926..25bb762afaca 100644
--- a/dev-python/ytmusicapi/ytmusicapi-1.3.1.ebuild
+++ b/dev-python/ytmusicapi/ytmusicapi-1.3.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://ytmusicapi.readthedocs.io/
https://github.com/sigma67/ytmusicapi/;
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SLOT="0"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/clojure-mode/

2023-11-25 Thread Sam James
commit: 10abee7e02e648b430ea8bb3dd20dcb562af902a
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 23:08:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 23:08:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10abee7e

app-emacs/clojure-mode: Stabilize 5.18.0 amd64, #918573

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

 app-emacs/clojure-mode/clojure-mode-5.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/clojure-mode/clojure-mode-5.18.0.ebuild 
b/app-emacs/clojure-mode/clojure-mode-5.18.0.ebuild
index 56641b38dafa..3fd67bd1f3f2 100644
--- a/app-emacs/clojure-mode/clojure-mode-5.18.0.ebuild
+++ b/app-emacs/clojure-mode/clojure-mode-5.18.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"



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

2023-11-25 Thread Sam James
commit: 0363a0c7a7b10926102bee43af1457a66685a2f9
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 23:08:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 23:08:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0363a0c7

net-misc/gallery-dl: Stabilize 1.26.1 ALLARCHES, #918571

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

 net-misc/gallery-dl/gallery-dl-1.26.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/gallery-dl/gallery-dl-1.26.1.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.26.1.ebuild
index b3da2a9c870f..e83e798733f1 100644
--- a/net-misc/gallery-dl/gallery-dl-1.26.1.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.26.1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
 else
SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~riscv x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ebuild-snippets/

2023-11-25 Thread Sam James
commit: e6e819c51df44f429fe19f2c992434bfc79f8a15
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 23:08:43 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 23:08:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e819c5

app-emacs/emacs-ebuild-snippets: Stabilize 2.2.0 ALLARCHES, #918574

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

 app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.2.0.ebuild 
b/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.2.0.ebuild
index d4ecac40855b..bed506976c83 100644
--- a/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.2.0.ebuild
+++ b/app-emacs/emacs-ebuild-snippets/emacs-ebuild-snippets-2.2.0.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == ** ]] ; then
 else
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
 
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
 LICENSE="GPL-2+"



[gentoo-commits] proj/kde:master commit in: Documentation/package.mask/, profiles/updates/, kde-plasma/plasma-workspace/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: d61a5e428985522a71cab6b9e1d595f349d5075a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 17:33:41 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 22:36:28 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d61a5e42

kde-frameworks/kactivities-stats: pkgmove to kde-plasma/plasma-activities-stats

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

 .../.kde-frameworks-5-live/kde-frameworks-5-tier3-live   |  2 +-
 .../package.accept_keywords/kde-frameworks-5-live.keywords   |  2 +-
 .../package.accept_keywords/kde-frameworks-5.110.keywords|  2 +-
 .../package.accept_keywords/kde-frameworks-5.112.keywords|  2 +-
 Documentation/package.mask/kde-frameworks-5.110  |  2 +-
 Documentation/package.mask/kde-frameworks-5.112  |  2 +-
 Documentation/package.unmask/kde-frameworks-5.110|  2 +-
 Documentation/package.unmask/kde-frameworks-5.112|  2 +-
 kde-apps/kio-extras/kio-extras-23.08.49..ebuild  |  2 +-
 kde-apps/kio-extras/kio-extras-.ebuild   |  2 +-
 kde-apps/sweeper/sweeper-23.08.49..ebuild|  2 +-
 kde-apps/sweeper/sweeper-.ebuild |  2 +-
 .../plasma-activities-stats}/metadata.xml|  1 +
 .../plasma-activities-stats-5..ebuild| 12 
 kde-plasma/plasma-bigscreen/plasma-bigscreen-.ebuild |  2 +-
 kde-plasma/plasma-desktop/plasma-desktop-5.27.49..ebuild |  2 +-
 kde-plasma/plasma-desktop/plasma-desktop-.ebuild |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.49..ebuild|  2 +-
 kde-plasma/plasma-workspace/plasma-workspace-.ebuild |  2 +-
 profiles/updates/4Q-2023 |  1 +
 sets/kde-frameworks-5-tier3  |  2 +-
 sets/kde-frameworks-5-tier3-5.110|  2 +-
 sets/kde-frameworks-5-tier3-5.112|  2 +-
 sets/kde-frameworks-5-tier3-live |  2 +-
 24 files changed, 31 insertions(+), 25 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier3-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier3-live
index ea6604be09..0feb1354d4 100644
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier3-live
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier3-live
@@ -1,6 +1,5 @@
 # Tier 3: More powerful, comprehensive packages, with complex dependencies.
 ~kde-frameworks/baloo-5. **
-~kde-frameworks/kactivities-stats-5. **
 ~kde-frameworks/kbookmarks-5. **
 ~kde-frameworks/kcmutils-5. **
 ~kde-frameworks/kconfigwidgets-5. **
@@ -25,3 +24,4 @@
 ~kde-frameworks/purpose-5. **
 ~kde-frameworks/qqc2-desktop-style-5. **
 ~kde-plasma/libplasma-5. **
+~kde-plasma/plasma-activities-stats-5. **

diff --git 
a/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
index 5510d168ab..84c668ba4c 100644
--- a/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
+++ b/Documentation/package.accept_keywords/kde-frameworks-5-live.keywords
@@ -61,7 +61,6 @@
 ~kde-frameworks/syndication-5. **
 # Tier 3: More powerful, comprehensive packages, with complex dependencies.
 ~kde-frameworks/baloo-5. **
-~kde-frameworks/kactivities-stats-5. **
 ~kde-frameworks/kbookmarks-5. **
 ~kde-frameworks/kcmutils-5. **
 ~kde-frameworks/kconfigwidgets-5. **
@@ -86,3 +85,4 @@
 ~kde-frameworks/purpose-5. **
 ~kde-frameworks/qqc2-desktop-style-5. **
 ~kde-plasma/libplasma-5. **
+~kde-plasma/plasma-activities-stats-5. **

diff --git 
a/Documentation/package.accept_keywords/kde-frameworks-5.110.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.110.keywords
index 18ea4d67fe..66cfe516ed 100644
--- a/Documentation/package.accept_keywords/kde-frameworks-5.110.keywords
+++ b/Documentation/package.accept_keywords/kde-frameworks-5.110.keywords
@@ -61,7 +61,6 @@
 =dev-qt/qtsql-${QTMIN}:5
>=kde-frameworks/kactivities-${KFMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5
+   >=kde-plasma/plasma-activities-stats-${KFMIN}:5
)
ios? (
app-pda/libimobiledevice:=

diff --git a/kde-apps/sweeper/sweeper-23.08.49..ebuild 
b/kde-apps/sweeper/sweeper-23.08.49..ebuild
index 81d23811fc..b8de1b46a4 100644
--- a/kde-apps/sweeper/sweeper-23.08.49..ebuild
+++ b/kde-apps/sweeper/sweeper-23.08.49..ebuild
@@ -21,7 +21,6 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5

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

2023-11-25 Thread Andreas Sturmlechner
commit: eeae435cb9a16cb1ee1845b0e278b5176b56f052
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 18:29:09 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 22:38:12 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=eeae435c

kde-frameworks/kactivities: pkgmove to kde-plasma/plasma-activities

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

 .../.kde-frameworks-5-live/kde-frameworks-5-tier2-live|  2 +-
 .../kde-frameworks-5-live.keywords|  2 +-
 .../package.accept_keywords/kde-frameworks-5.110.keywords |  2 +-
 .../package.accept_keywords/kde-frameworks-5.112.keywords |  2 +-
 Documentation/package.mask/kde-frameworks-5.110   |  2 +-
 Documentation/package.mask/kde-frameworks-5.112   |  2 +-
 Documentation/package.unmask/kde-frameworks-5.110 |  2 +-
 Documentation/package.unmask/kde-frameworks-5.112 |  2 +-
 app-office/calligra/calligra-.ebuild  |  2 +-
 app-office/calligraplan/calligraplan-.ebuild  |  2 +-
 app-office/kmymoney/kmymoney-5.1..ebuild  |  2 +-
 app-office/kmymoney/kmymoney-.ebuild  |  2 +-
 app-office/kmymoney/metadata.xml  |  2 +-
 app-office/skrooge/skrooge-.ebuild|  2 +-
 kde-apps/dolphin/dolphin-23.08.49..ebuild |  2 +-
 kde-apps/dolphin/dolphin-.ebuild  |  2 +-
 kde-apps/gwenview/gwenview-23.08.49..ebuild   |  2 +-
 kde-apps/gwenview/gwenview-.ebuild|  2 +-
 kde-apps/kate-lib/kate-lib-23.08.49..ebuild   |  2 +-
 kde-apps/kate-lib/kate-lib-.ebuild|  2 +-
 kde-apps/kate-lib/metadata.xml|  2 +-
 kde-apps/kio-extras/kio-extras-23.08.49..ebuild   |  2 +-
 kde-apps/kio-extras/kio-extras-.ebuild|  2 +-
 kde-apps/konqueror/konqueror-23.08.49..ebuild |  2 +-
 kde-apps/konqueror/konqueror-.ebuild  |  2 +-
 kde-apps/krdc/krdc-23.08.49..ebuild   |  2 +-
 kde-apps/krdc/krdc-.ebuild|  2 +-
 kde-apps/krdc/metadata.xml|  2 +-
 kde-apps/okular/okular-23.08.49..ebuild   |  2 +-
 kde-apps/okular/okular-.ebuild|  2 +-
 kde-frameworks/krunner/krunner-5..ebuild  |  2 +-
 kde-misc/latte-dock/latte-dock-.ebuild|  2 +-
 .../kde-cli-tools/kde-cli-tools-5.27.49..ebuild   |  2 +-
 kde-plasma/kde-cli-tools/kde-cli-tools-.ebuild|  2 +-
 kde-plasma/kwin/kwin-5.27.49..ebuild  |  2 +-
 kde-plasma/kwin/kwin-.ebuild  |  2 +-
 kde-plasma/libplasma/libplasma-5..ebuild  |  2 +-
 .../plasma-activities-stats-5..ebuild |  2 +-
 .../plasma-activities}/metadata.xml   |  1 +
 .../plasma-activities/plasma-activities-5..ebuild | 15 +--
 kde-plasma/plasma-bigscreen/plasma-bigscreen-.ebuild  |  2 +-
 .../plasma-browser-integration-5.27.49..ebuild|  2 +-
 .../plasma-browser-integration-.ebuild|  2 +-
 .../plasma-desktop/plasma-desktop-5.27.49..ebuild |  2 +-
 kde-plasma/plasma-desktop/plasma-desktop-.ebuild  |  2 +-
 kde-plasma/plasma-vault/plasma-vault-5.27.49..ebuild  |  2 +-
 kde-plasma/plasma-vault/plasma-vault-.ebuild  |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.49..ebuild |  2 +-
 kde-plasma/plasma-workspace/plasma-workspace-.ebuild  |  2 +-
 kde-plasma/powerdevil/powerdevil-5.27.49..ebuild  |  2 +-
 kde-plasma/powerdevil/powerdevil-.ebuild  |  2 +-
 .../systemsettings/systemsettings-5.27.49..ebuild |  2 +-
 kde-plasma/systemsettings/systemsettings-.ebuild  |  2 +-
 profiles/updates/4Q-2023  |  1 +
 sets/kde-frameworks-5-tier2   |  2 +-
 sets/kde-frameworks-5-tier2-5.110 |  2 +-
 sets/kde-frameworks-5-tier2-5.112 |  2 +-
 sets/kde-frameworks-5-tier2-live  |  2 +-
 58 files changed, 66 insertions(+), 61 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier2-live
 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier2-live
index c0839e6d2a..ad54520492 100644
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier2-live
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier2-live
@@ -1,5 +1,4 @@
 # Tier 2: Additionally depend on tier 1 frameworks.
-~kde-frameworks/kactivities-5. **
 ~kde-frameworks/kauth-5. **
 ~kde-frameworks/kcompletion-5. **
 

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

2023-11-25 Thread Andreas Sturmlechner
commit: 8477ada7ac861febdc54eb2e528745c4dc90eab7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 16:59:53 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 22:35:57 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8477ada7

kde-frameworks/plasma: pkgmove to kde-plasma/libplasma

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

 .../kde-frameworks-5-tier3-live|  2 +-
 .../kde-frameworks-5-live.keywords |  2 +-
 .../kde-frameworks-5.110.keywords  |  2 +-
 .../kde-frameworks-5.112.keywords  |  2 +-
 Documentation/package.mask/kde-frameworks-5.110|  2 +-
 Documentation/package.mask/kde-frameworks-5.112|  2 +-
 Documentation/package.unmask/kde-frameworks-5.110  |  2 +-
 Documentation/package.unmask/kde-frameworks-5.112  |  2 +-
 app-backup/kup/kup-.ebuild |  2 +-
 app-office/libalkimia/libalkimia-8..ebuild |  2 +-
 app-office/libalkimia/libalkimia-.ebuild   |  2 +-
 .../kirigami-addons/kirigami-addons-.ebuild|  2 +-
 dev-util/kdevelop/kdevelop-23.08.49..ebuild|  2 +-
 dev-util/kdevelop/kdevelop-.ebuild |  2 +-
 kde-apps/kalgebra/kalgebra-23.08.49..ebuild|  2 +-
 kde-apps/kalgebra/kalgebra-.ebuild |  2 +-
 kde-apps/kmix/kmix-23.08.49..ebuild|  2 +-
 kde-apps/kmix/kmix-.ebuild |  2 +-
 kde-apps/knights/knights-23.08.49..ebuild  |  2 +-
 kde-apps/knights/knights-.ebuild   |  2 +-
 .../ktp-desktop-applets-.ebuild|  2 +-
 kde-frameworks/krunner/krunner-5..ebuild   |  2 +-
 kde-misc/kclock/kclock-23.08.49..ebuild|  2 +-
 kde-misc/kclock/kclock-.ebuild |  2 +-
 .../kdeconnect/kdeconnect-23.08.49..ebuild |  2 +-
 kde-misc/kdeconnect/kdeconnect-.ebuild |  2 +-
 kde-misc/ktrip/ktrip-.ebuild   |  2 +-
 kde-misc/kweather/kweather-23.08.49..ebuild|  2 +-
 kde-misc/kweather/kweather-.ebuild |  2 +-
 kde-misc/latte-dock/latte-dock-.ebuild |  2 +-
 .../plasma-applet-network-monitor-.ebuild  |  4 +-
 kde-misc/plasma-pass/plasma-pass-.ebuild   |  2 +-
 .../plasma-redshift-control-.ebuild|  2 +-
 kde-plasma/bluedevil/bluedevil-5.27.49..ebuild |  2 +-
 kde-plasma/bluedevil/bluedevil-.ebuild |  2 +-
 .../kdeplasma-addons-5.27.49..ebuild   |  2 +-
 .../kdeplasma-addons/kdeplasma-addons-.ebuild  |  2 +-
 kde-plasma/kscreen/kscreen-5.27.49..ebuild |  2 +-
 kde-plasma/kscreen/kscreen-.ebuild |  2 +-
 .../kscreenlocker-5.27.49..ebuild  |  2 +-
 kde-plasma/kscreenlocker/kscreenlocker-.ebuild |  2 +-
 kde-plasma/kwin/kwin-5.27.49..ebuild   |  2 +-
 kde-plasma/kwin/kwin-.ebuild   |  2 +-
 .../libplasma/libplasma-5..ebuild  | 46 +++---
 .../plasma => kde-plasma/libplasma}/metadata.xml   |  1 +
 kde-plasma/milou/milou-5.27.49..ebuild |  2 +-
 kde-plasma/milou/milou-.ebuild |  2 +-
 .../plasma-bigscreen/plasma-bigscreen-.ebuild  |  3 +-
 .../plasma-desktop-5.27.49..ebuild |  2 +-
 .../plasma-desktop/plasma-desktop-.ebuild  |  2 +-
 kde-plasma/plasma-nm/plasma-nm-5.27.49..ebuild |  2 +-
 kde-plasma/plasma-nm/plasma-nm-.ebuild |  2 +-
 kde-plasma/plasma-pa/plasma-pa-5.27.49..ebuild |  2 +-
 kde-plasma/plasma-pa/plasma-pa-.ebuild |  3 +-
 .../plasma-sdk/plasma-sdk-5.27.49..ebuild  |  2 +-
 kde-plasma/plasma-sdk/plasma-sdk-.ebuild   |  2 +-
 .../plasma-vault/plasma-vault-5.27.49..ebuild  |  2 +-
 kde-plasma/plasma-vault/plasma-vault-.ebuild   |  2 +-
 .../plasma-welcome-5.27.49..ebuild |  2 +-
 .../plasma-welcome/plasma-welcome-.ebuild  |  3 +-
 .../plasma-workspace-5.27.49..ebuild   |  2 +-
 .../plasma-workspace/plasma-workspace-.ebuild  |  2 +-
 .../print-manager-23.08.49..ebuild |  2 +-
 kde-plasma/print-manager/print-manager-.ebuild |  3 +-
 kde-plasma/wacomtablet/wacomtablet-.ebuild |  3 +-
 .../xdg-desktop-portal-kde-5.27.49..ebuild |  2 +-
 .../xdg-desktop-portal-kde-.ebuild |  2 +-
 net-misc/smb4k/smb4k-.ebuild   |  2 +-
 profiles/updates/4Q-2023   |  1 +
 sets/kde-frameworks-5-tier3|  2 +-
 sets/kde-frameworks-5-tier3-5.110  |  2 +-
 sets/kde-frameworks-5-tier3-5.112  |  2 +-
 sets/kde-frameworks-5-tier3-live   |  2 +-
 73 files changed, 101 insertions(+), 94 deletions(-)

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5-live/kde-frameworks-5-tier3-live
 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-sdk/, kde-plasma/bluedevil/, kde-apps/ktp-desktop-applets/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: 49763709f7e05f6a0c621cc90193aaa6f474b2ea
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 17:57:48 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:00:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49763709

kde-frameworks/plasma: pkgmove to kde-plasma/libplasma

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

 app-backup/kup/kup-0.9.1.ebuild|  4 +-
 app-i18n/uim/uim-1.8.9-r1.ebuild   |  2 +-
 app-office/libalkimia/libalkimia-8.1.2.ebuild  |  2 +-
 .../kirigami-addons/kirigami-addons-0.11.0.ebuild  |  2 +-
 dev-util/kdevelop/kdevelop-23.04.3.ebuild  |  2 +-
 dev-util/kdevelop/kdevelop-23.08.3.ebuild  |  2 +-
 kde-apps/kalgebra/kalgebra-23.08.3.ebuild  |  2 +-
 kde-apps/kmix/kmix-23.04.3.ebuild  |  2 +-
 kde-apps/kmix/kmix-23.08.3.ebuild  |  2 +-
 kde-apps/knights/knights-23.04.3.ebuild|  2 +-
 kde-apps/knights/knights-23.08.3.ebuild|  2 +-
 .../ktp-desktop-applets-22.08.3.ebuild |  4 +-
 kde-frameworks/krunner/krunner-5.110.0.ebuild  |  2 +-
 kde-frameworks/krunner/krunner-5.112.0-r1.ebuild   |  2 +-
 kde-misc/gmail-feed/gmail-feed-1.2.ebuild  |  4 +-
 kde-misc/kclock/kclock-23.04.3.ebuild  |  2 +-
 kde-misc/kclock/kclock-23.08.3.ebuild  |  2 +-
 kde-misc/kdeconnect/kdeconnect-23.04.3-r1.ebuild   |  2 +-
 kde-misc/kdeconnect/kdeconnect-23.08.3.ebuild  |  2 +-
 kde-misc/kweather/kweather-23.04.3.ebuild  |  2 +-
 kde-misc/kweather/kweather-23.08.3.ebuild  |  2 +-
 .../latte-dock/latte-dock-0.10.77_p20230115.ebuild |  2 +-
 .../plasma-applet-network-monitor-1.7.3-r1.ebuild  |  4 +-
 kde-misc/plasma-pass/plasma-pass-1.2.1.ebuild  |  2 +-
 kde-plasma/bluedevil/bluedevil-5.27.8-r1.ebuild|  2 +-
 kde-plasma/bluedevil/bluedevil-5.27.9.ebuild   |  2 +-
 .../kdeplasma-addons-5.27.8-r1.ebuild  |  2 +-
 .../kdeplasma-addons-5.27.9.ebuild |  2 +-
 kde-plasma/kscreen/kscreen-5.27.8-r2.ebuild|  2 +-
 kde-plasma/kscreen/kscreen-5.27.9.ebuild   |  2 +-
 .../kscreenlocker/kscreenlocker-5.27.8-r1.ebuild   |  2 +-
 .../kscreenlocker/kscreenlocker-5.27.9.ebuild  |  2 +-
 kde-plasma/kwin/kwin-5.27.8-r3.ebuild  |  2 +-
 kde-plasma/kwin/kwin-5.27.9-r1.ebuild  |  2 +-
 .../plasma => kde-plasma/libplasma}/Manifest   |  0
 .../libplasma/libplasma-5.110.0.ebuild | 47 --
 .../libplasma/libplasma-5.112.0.ebuild | 47 --
 .../plasma => kde-plasma/libplasma}/metadata.xml   |  1 +
 kde-plasma/milou/milou-5.27.8.ebuild   |  2 +-
 kde-plasma/milou/milou-5.27.9.ebuild   |  2 +-
 .../plasma-desktop/plasma-desktop-5.27.8.ebuild|  2 +-
 .../plasma-desktop/plasma-desktop-5.27.9-r1.ebuild |  2 +-
 kde-plasma/plasma-nm/plasma-nm-5.27.8.ebuild   |  2 +-
 kde-plasma/plasma-nm/plasma-nm-5.27.9.ebuild   |  2 +-
 kde-plasma/plasma-pa/plasma-pa-5.27.8-r1.ebuild|  2 +-
 kde-plasma/plasma-pa/plasma-pa-5.27.9.ebuild   |  2 +-
 kde-plasma/plasma-sdk/plasma-sdk-5.27.8.ebuild |  2 +-
 kde-plasma/plasma-sdk/plasma-sdk-5.27.9.ebuild |  2 +-
 kde-plasma/plasma-vault/plasma-vault-5.27.8.ebuild |  2 +-
 kde-plasma/plasma-vault/plasma-vault-5.27.9.ebuild |  2 +-
 .../plasma-welcome/plasma-welcome-5.27.8.ebuild|  2 +-
 .../plasma-welcome/plasma-welcome-5.27.9.ebuild|  2 +-
 .../plasma-workspace-5.27.8-r1.ebuild  |  2 +-
 .../plasma-workspace-5.27.9.1.ebuild   |  2 +-
 .../print-manager/print-manager-23.04.3.ebuild |  2 +-
 .../print-manager/print-manager-23.08.3.ebuild |  2 +-
 kde-plasma/wacomtablet/wacomtablet-3.2.0-r3.ebuild |  2 +-
 .../xdg-desktop-portal-kde-5.27.8-r1.ebuild|  2 +-
 .../xdg-desktop-portal-kde-5.27.9.ebuild   |  2 +-
 net-misc/smb4k/smb4k-3.2.3.ebuild  |  2 +-
 net-misc/smb4k/smb4k-3.2.4.ebuild  |  2 +-
 profiles/updates/4Q-2023   |  1 +
 62 files changed, 113 insertions(+), 105 deletions(-)

diff --git a/app-backup/kup/kup-0.9.1.ebuild b/app-backup/kup/kup-0.9.1.ebuild
index 61420977c739..9227fd533cf8 100644
--- a/app-backup/kup/kup-0.9.1.ebuild
+++ b/app-backup/kup/kup-0.9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -34,8 +34,8 @@ DEPEND="
kde-frameworks/knotifications:5
kde-frameworks/kwidgetsaddons:5
kde-frameworks/kxmlgui:5
-   kde-frameworks/plasma:5
kde-frameworks/solid:5
+   kde-plasma/libplasma:5
 "
 RDEPEND="${DEPEND}
dev-qt/qtdeclarative:5

diff --git a/app-i18n/uim/uim-1.8.9-r1.ebuild b/app-i18n/uim/uim-1.8.9-r1.ebuild
index 3b78acf0a953..947365eaf6f5 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-browser-integration/, kde-plasma/plasma-activities-stats/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: 0347fadf6de00b7d240ee7599d9bb409a4d56d54
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 18:52:02 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:00:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0347fadf

kde-frameworks/kactivities: pkgmove to kde-plasma/plasma-activities

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

 app-office/calligra/calligra-3.2.1-r8.ebuild |  2 +-
 app-office/calligraplan/calligraplan-3.3.0.ebuild|  2 +-
 app-office/kmymoney/kmymoney-5.1.3.ebuild|  2 +-
 app-office/kmymoney/metadata.xml |  2 +-
 app-office/skrooge/skrooge-2.31.0.ebuild |  2 +-
 kde-apps/dolphin/dolphin-23.04.3.ebuild  |  2 +-
 kde-apps/dolphin/dolphin-23.08.3.ebuild  |  2 +-
 kde-apps/gwenview/gwenview-23.04.3.ebuild|  2 +-
 kde-apps/gwenview/gwenview-23.08.3.ebuild|  2 +-
 kde-apps/kate-lib/kate-lib-23.04.3.ebuild|  2 +-
 kde-apps/kate-lib/kate-lib-23.08.3.ebuild|  2 +-
 kde-apps/kate-lib/metadata.xml   |  2 +-
 kde-apps/kio-extras/kio-extras-23.04.3.ebuild|  2 +-
 kde-apps/kio-extras/kio-extras-23.08.3.ebuild|  2 +-
 kde-apps/konqueror/konqueror-23.04.3-r1.ebuild   |  2 +-
 kde-apps/konqueror/konqueror-23.08.3.ebuild  |  2 +-
 kde-apps/krdc/krdc-23.04.3.ebuild|  2 +-
 kde-apps/krdc/krdc-23.08.3.ebuild|  2 +-
 kde-apps/krdc/metadata.xml   |  2 +-
 kde-apps/okular/okular-23.04.3.ebuild|  2 +-
 kde-apps/okular/okular-23.08.3.ebuild|  2 +-
 kde-frameworks/krunner/krunner-5.110.0.ebuild|  2 +-
 kde-frameworks/krunner/krunner-5.112.0-r1.ebuild |  2 +-
 kde-misc/latte-dock/latte-dock-0.10.77_p20230115.ebuild  |  2 +-
 kde-plasma/kde-cli-tools/kde-cli-tools-5.27.8.ebuild |  2 +-
 kde-plasma/kde-cli-tools/kde-cli-tools-5.27.9.ebuild |  2 +-
 kde-plasma/kwin/kwin-5.27.8-r3.ebuild|  2 +-
 kde-plasma/kwin/kwin-5.27.9-r1.ebuild|  2 +-
 kde-plasma/libplasma/libplasma-5.110.0.ebuild|  2 +-
 kde-plasma/libplasma/libplasma-5.112.0.ebuild|  2 +-
 .../plasma-activities-stats-5.110.0.ebuild   |  2 +-
 .../plasma-activities-stats-5.112.0.ebuild   |  2 +-
 .../plasma-activities}/Manifest  |  0
 .../plasma-activities}/metadata.xml  |  1 +
 .../plasma-activities/plasma-activities-5.110.0.ebuild   | 16 ++--
 .../plasma-activities/plasma-activities-5.112.0.ebuild   | 16 ++--
 .../plasma-browser-integration-5.27.8-r1.ebuild  |  2 +-
 .../plasma-browser-integration-5.27.9.ebuild |  2 +-
 kde-plasma/plasma-desktop/plasma-desktop-5.27.8.ebuild   |  2 +-
 .../plasma-desktop/plasma-desktop-5.27.9-r1.ebuild   |  2 +-
 kde-plasma/plasma-vault/plasma-vault-5.27.8.ebuild   |  2 +-
 kde-plasma/plasma-vault/plasma-vault-5.27.9.ebuild   |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.8-r1.ebuild   |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.9.1.ebuild|  2 +-
 kde-plasma/powerdevil/powerdevil-5.27.8.ebuild   |  2 +-
 kde-plasma/powerdevil/powerdevil-5.27.9.ebuild   |  2 +-
 kde-plasma/systemsettings/systemsettings-5.27.8.ebuild   |  2 +-
 kde-plasma/systemsettings/systemsettings-5.27.9.ebuild   |  2 +-
 .../kcoloredit/kcoloredit-2.0.0_p20171121-r1.ebuild  |  4 ++--
 profiles/updates/4Q-2023 |  1 +
 50 files changed, 68 insertions(+), 58 deletions(-)

diff --git a/app-office/calligra/calligra-3.2.1-r8.ebuild 
b/app-office/calligra/calligra-3.2.1-r8.ebuild
index 49aba50d91f5..453594ba0b84 100644
--- a/app-office/calligra/calligra-3.2.1-r8.ebuild
+++ b/app-office/calligra/calligra-3.2.1-r8.ebuild
@@ -72,7 +72,7 @@ COMMON_DEPEND="
>=kde-frameworks/sonnet-${KFMIN}:5
sys-libs/zlib
virtual/libiconv
-   activities? ( >=kde-frameworks/kactivities-${KFMIN}:5 )
+   activities? ( >=kde-plasma/plasma-activities-${KFMIN}:5 )
charts? ( dev-libs/kdiagram:5 )
crypt? ( >=app-crypt/qca-2.3.0:2 )
fontconfig? ( media-libs/fontconfig )

diff --git a/app-office/calligraplan/calligraplan-3.3.0.ebuild 
b/app-office/calligraplan/calligraplan-3.3.0.ebuild
index 4c97f08c0c59..cfb35ec5f928 100644
--- a/app-office/calligraplan/calligraplan-3.3.0.ebuild
+++ b/app-office/calligraplan/calligraplan-3.3.0.ebuild
@@ -58,7 +58,7 @@ DEPEND="
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
>=kde-frameworks/kwindowsystem-${KFMIN}:5
>=kde-frameworks/kxmlgui-${KFMIN}:5
-   activities? ( >=kde-frameworks/kactivities-${KFMIN}:5 )
+   activities? ( 

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kactivities-stats/, profiles/updates/, kde-apps/kio-extras/, ...

2023-11-25 Thread Andreas Sturmlechner
commit: abb77101d8d071baa09b724f7d39161def442f79
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov 25 18:18:53 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov 25 23:00:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abb77101

kde-frameworks/kactivities-stats: pkgmove to kde-plasma/plasma-activities-stats

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

 kde-apps/kio-extras/kio-extras-23.04.3.ebuild   |  2 +-
 kde-apps/kio-extras/kio-extras-23.08.3.ebuild   |  2 +-
 kde-apps/sweeper/sweeper-23.04.3.ebuild |  2 +-
 kde-apps/sweeper/sweeper-23.08.3.ebuild |  2 +-
 .../plasma-activities-stats}/Manifest   |  0
 .../plasma-activities-stats}/metadata.xml   |  1 +
 .../plasma-activities-stats-5.110.0.ebuild  | 13 +
 .../plasma-activities-stats-5.112.0.ebuild  | 13 +
 kde-plasma/plasma-desktop/plasma-desktop-5.27.8.ebuild  |  2 +-
 kde-plasma/plasma-desktop/plasma-desktop-5.27.9-r1.ebuild   |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.8-r1.ebuild  |  2 +-
 .../plasma-workspace/plasma-workspace-5.27.9.1.ebuild   |  2 +-
 profiles/updates/4Q-2023|  1 +
 13 files changed, 28 insertions(+), 16 deletions(-)

diff --git a/kde-apps/kio-extras/kio-extras-23.04.3.ebuild 
b/kde-apps/kio-extras/kio-extras-23.04.3.ebuild
index 42400bf77ec6..f9a87bbfdd66 100644
--- a/kde-apps/kio-extras/kio-extras-23.04.3.ebuild
+++ b/kde-apps/kio-extras/kio-extras-23.04.3.ebuild
@@ -47,7 +47,7 @@ DEPEND="
activities? (
>=dev-qt/qtsql-${QTMIN}:5
>=kde-frameworks/kactivities-${KFMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5
+   >=kde-plasma/plasma-activities-stats-${KFMIN}:5
)
ios? (
app-pda/libimobiledevice:=

diff --git a/kde-apps/kio-extras/kio-extras-23.08.3.ebuild 
b/kde-apps/kio-extras/kio-extras-23.08.3.ebuild
index a0951ad8a670..49844593660e 100644
--- a/kde-apps/kio-extras/kio-extras-23.08.3.ebuild
+++ b/kde-apps/kio-extras/kio-extras-23.08.3.ebuild
@@ -47,7 +47,7 @@ DEPEND="
activities? (
>=dev-qt/qtsql-${QTMIN}:5
>=kde-frameworks/kactivities-${KFMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5
+   >=kde-plasma/plasma-activities-stats-${KFMIN}:5
)
ios? (
app-pda/libimobiledevice:=

diff --git a/kde-apps/sweeper/sweeper-23.04.3.ebuild 
b/kde-apps/sweeper/sweeper-23.04.3.ebuild
index 01aaeae78b05..05391d81b975 100644
--- a/kde-apps/sweeper/sweeper-23.04.3.ebuild
+++ b/kde-apps/sweeper/sweeper-23.04.3.ebuild
@@ -21,7 +21,7 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5
+   >=kde-plasma/plasma-activities-stats-${KFMIN}:5
>=kde-frameworks/kbookmarks-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kconfigwidgets-${KFMIN}:5

diff --git a/kde-apps/sweeper/sweeper-23.08.3.ebuild 
b/kde-apps/sweeper/sweeper-23.08.3.ebuild
index 01aaeae78b05..05391d81b975 100644
--- a/kde-apps/sweeper/sweeper-23.08.3.ebuild
+++ b/kde-apps/sweeper/sweeper-23.08.3.ebuild
@@ -21,7 +21,7 @@ DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/kactivities-stats-${KFMIN}:5
+   >=kde-plasma/plasma-activities-stats-${KFMIN}:5
>=kde-frameworks/kbookmarks-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kconfigwidgets-${KFMIN}:5

diff --git a/kde-frameworks/kactivities-stats/Manifest 
b/kde-plasma/plasma-activities-stats/Manifest
similarity index 100%
rename from kde-frameworks/kactivities-stats/Manifest
rename to kde-plasma/plasma-activities-stats/Manifest

diff --git a/kde-frameworks/kactivities-stats/metadata.xml 
b/kde-plasma/plasma-activities-stats/metadata.xml
similarity index 86%
rename from kde-frameworks/kactivities-stats/metadata.xml
rename to kde-plasma/plasma-activities-stats/metadata.xml
index 506ecf605bc4..3351d37e0915 100644
--- a/kde-frameworks/kactivities-stats/metadata.xml
+++ b/kde-plasma/plasma-activities-stats/metadata.xml
@@ -7,6 +7,7 @@


https://bugs.kde.org/
+   plasma/plasma-activities-stats




diff --git a/kde-frameworks/kactivities-stats/kactivities-stats-5.110.0.ebuild 
b/kde-plasma/plasma-activities-stats/plasma-activities-stats-5.110.0.ebuild
similarity index 56%
rename from kde-frameworks/kactivities-stats/kactivities-stats-5.110.0.ebuild
rename to 
kde-plasma/plasma-activities-stats/plasma-activities-stats-5.110.0.ebuild
index 60f26bf423df..84d1c5774491 100644
--- 

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

2023-11-25 Thread Sam James
commit: db25ddcb378e2f7d928682207a416c38fd2430b3
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:56:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:56:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db25ddcb

dev-dotnet/dotnet-sdk-bin: Stabilize 6.0.417 amd64, #918425

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

 dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417.ebuild
index 84abeb99c871..5cb637f85c53 100644
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417.ebuild
+++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417.ebuild
@@ -26,7 +26,7 @@ RUNTIME_SLOT="${SDK_SLOT}.25"
 SLOT="${SDK_SLOT}/${RUNTIME_SLOT}"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 arm arm64"
+KEYWORDS="amd64 arm arm64"
 RESTRICT="splitdebug"
 
 RDEPEND="



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

2023-11-25 Thread Sam James
commit: 19d8308d0bb329e6142444c2c26ecfdb234b2047
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:56:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:56:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d8308d

dev-dotnet/dotnet-runtime-nugets: Stabilize 7.0.14 amd64, #918426

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

 dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-7.0.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-7.0.14.ebuild 
b/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-7.0.14.ebuild
index 2a25e53e56a2..26590c583b5b 100644
--- a/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-7.0.14.ebuild
+++ b/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-7.0.14.ebuild
@@ -36,7 +36,7 @@ S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="${PV}/${PV}"
-KEYWORDS="~amd64 arm arm64"
+KEYWORDS="amd64 arm arm64"
 
 src_unpack() {
:



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

2023-11-25 Thread Sam James
commit: 276be0c1c6d0ff6d61e41bf5ff3236d333ba5fb0
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:56:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:56:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276be0c1

dev-dotnet/dotnet-sdk-bin: Stabilize 7.0.404 amd64, #918426

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

 dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404.ebuild
index d28d81b751fa..3495d1773386 100644
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404.ebuild
+++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404.ebuild
@@ -27,7 +27,7 @@ RUNTIME_SLOT="${SDK_SLOT}.14"
 SLOT="${SDK_SLOT}/${RUNTIME_SLOT}"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 arm arm64"
+KEYWORDS="amd64 arm arm64"
 RESTRICT="splitdebug"
 
 RDEPEND="



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

2023-11-25 Thread Sam James
commit: 2539d096fc32ed43c20c4078aaec41aff5d60aa7
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:47:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:47:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2539d096

app-shells/fzf: Stabilize 0.43.0 x86, #918557

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

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

diff --git a/app-shells/fzf/fzf-0.43.0.ebuild b/app-shells/fzf/fzf-0.43.0.ebuild
index 597e953a7ac5..05896211b06c 100644
--- a/app-shells/fzf/fzf-0.43.0.ebuild
+++ b/app-shells/fzf/fzf-0.43.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar
 
 LICENSE="MIT BSD-with-disclosure"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
 
 src_prepare() {
default



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

2023-11-25 Thread Sam James
commit: 982f1e0039c829e3899848509f596b80eb9f1936
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:46:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:46:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982f1e00

sys-devel/gcc: add 13.2.1_p20231125

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

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-13.2.1_p20231125.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 7ff7ef26ccaf..5b970d501d93 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -15,6 +15,7 @@ DIST gcc-12.3.0-patches-2.tar.xz 14236 BLAKE2B 
06c43662c9abb0fa3cf90d5e2273c69ae
 DIST gcc-13-20230826.tar.xz 84285788 BLAKE2B 
c25be594e322dd7145245c42ae21b98aa9e3e6ae69f1fa313830e40bf2e8fcb8435762f1c9d3f1ca1dbf31653bdc76a658bec708b7850fe40a7c55504ac30618
 SHA512 
3d47632e90651bd50a881c727c1ef2aa3322b4fc3e082919ae430270901abf8a05a34fe93f8b678c10dc9a0758f93dc3b33ed5947c8743dab453d2b50c063722
 DIST gcc-13-20231014.tar.xz 84317080 BLAKE2B 
18c2326f203951d16904e4f2bf7fa0cd55da0460b19a9c9ce45de94b41fa71f8c1b8eb9d08700de427b3e02c2e61d3cbcc85cb6f27236717dca8359bfaf4c534
 SHA512 
406673a62deba759fc0532a801b3f57cabf894ea328587b23e62a707ba5767b0e3ae9b3f86bf3c6fcf13e8a3c30bc470e6598b625c8231efb629034211c162c2
 DIST gcc-13-20231118.tar.xz 84338040 BLAKE2B 
792122da18c1f315753b9aa194ff31b3e08befdea751ccb095fdfa9752f70fba85763508783b70aa8dd01ee88b35a586e03d8bb45e8c2e822b764e334b24da17
 SHA512 
a467cc5edae1628425291c0ea55f7e525f52cc50a849419ab39d439874276784d11a3c61172299cbe4b8e0efccff5375314ccc2920b331a7791b4c09a235fe99
+DIST gcc-13-20231125.tar.xz 84338152 BLAKE2B 
4951fd200fe5abd9ed2f6a9ece4637c3a0528b0b3ceca9d55ec94d56b42cd24de239f5aede4432e55b9ce8fe3543954cc630dbae820b55806f0446152fb00415
 SHA512 
d16aef554ce87e013848301b6a32c119eef45010c51d4c821bf042c693488df311c8349b84dafe70abee493cc329d26c632643bced66bd99cf40677c0c384954
 DIST gcc-13.2.0-musl-patches-2.tar.xz 5292 BLAKE2B 
c057d6574d03c05854edaa9f3fd40e9149662b04f3ac7a7db3eb078d73a7b535726d1bf52e5b12736dedb2f9898ad731f2e48a6421fcfbf7b90f929dee072fcb
 SHA512 
a691da0c87c443a5e9d23731f4005f27871c5b12bc9102873ffa24d374aa7b9fbd187c4f5635d23fa9ffb17e351e76173c2d3fdf40646e355c4cb314b538de69
 DIST gcc-13.2.0-patches-10.tar.xz 45860 BLAKE2B 
3c4f8179fc27c31c117bf9260cebbab0805e0977cb41084f2df5c6664121ae67f83deb882572b0bce8d5f20c0ec927eeac43e60d69ce8d4d5a263c1dddedecaf
 SHA512 
4088cc80278826043bc6a9819dfcfa09a251e256eca9a2654f1a83b9b54107ca08fbea0e9ab61593cb0b43fc42a3d87acbe095dc8f806c7010a3ac33148d5c9b
 DIST gcc-13.2.0-patches-7.tar.xz 37064 BLAKE2B 
4a8700a8d44bfaa84926f8bfd0da4c5b0c0377f47fc0679456e909f7c9029b9cf1b72c0ba0bc505d9035d5c38e27f7e5b029727eaf2bc7aca417a6be966b2f43
 SHA512 
f440c97e6782ecb8581d41608e31a648ac426e2d870bc1d171da7794cdeff2fd0546cae0c7214e72fd3a00ead8a5c66f3f633b670b74553a2f3a40378b51f20c

diff --git a/sys-devel/gcc/gcc-13.2.1_p20231125.ebuild 
b/sys-devel/gcc/gcc-13.2.1_p20231125.ebuild
new file mode 100644
index ..905d93979f46
--- /dev/null
+++ b/sys-devel/gcc/gcc-13.2.1_p20231125.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2023 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="10"
+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
+   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 ~loong ~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=">=${CATEG

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

2023-11-25 Thread Sam James
commit: 1a339714e189de02f83548aafb6ab298f1024322
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:47:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:47:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a339714

dev-python/pandas: Stabilize 2.1.3 arm, #918469

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

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

diff --git a/dev-python/pandas/pandas-2.1.3.ebuild 
b/dev-python/pandas/pandas-2.1.3.ebuild
index d237e887f6dd..ad9d9d3812f9 100644
--- a/dev-python/pandas/pandas-2.1.3.ebuild
+++ b/dev-python/pandas/pandas-2.1.3.ebuild
@@ -21,7 +21,7 @@ HOMEPAGE="
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE="full-support minimal test X"
 RESTRICT="!test? ( test )"
 



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

2023-11-25 Thread Sam James
commit: f0759ddd59a82688ce438ea12648e6b7360e1ff1
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:47:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:47:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0759ddd

dev-python/trimesh: Stabilize 4.0.2 arm64, #918390

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

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

diff --git a/dev-python/trimesh/trimesh-4.0.2.ebuild 
b/dev-python/trimesh/trimesh-4.0.2.ebuild
index 2483f0afb6cf..9c9207c618b5 100644
--- a/dev-python/trimesh/trimesh-4.0.2.ebuild
+++ b/dev-python/trimesh/trimesh-4.0.2.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 
 RDEPEND="
dev-python/chardet[${PYTHON_USEDEP}]



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

2023-11-25 Thread Sam James
commit: e97cf6e5badda41de388989371d42029b015a856
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 22:47:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 22:47:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97cf6e5

app-shells/fzf: Stabilize 0.43.0 amd64, #918557

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

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

diff --git a/app-shells/fzf/fzf-0.43.0.ebuild b/app-shells/fzf/fzf-0.43.0.ebuild
index 2b55ac6ab399..597e953a7ac5 100644
--- a/app-shells/fzf/fzf-0.43.0.ebuild
+++ b/app-shells/fzf/fzf-0.43.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar
 
 LICENSE="MIT BSD-with-disclosure"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
 
 src_prepare() {
default



[gentoo-commits] repo/proj/guru:dev commit in: sys-boot/limine/

2023-11-25 Thread Arsen Arsenović
commit: fe240c7170b20b52dff5c49351ff9b823f8f5730
Author: Arsen Arsenović  gentoo  org>
AuthorDate: Sat Nov 25 22:08:01 2023 +
Commit: Arsen Arsenović  gentoo  org>
CommitDate: Sat Nov 25 22:08:22 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fe240c71

sys-boot/limine: add 5.20231124.0

Signed-off-by: Arsen Arsenović  gentoo.org>

 sys-boot/limine/Manifest   |  1 +
 sys-boot/limine/limine-5.20231124.0.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 1df133722a..9ed95029c4 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -7,3 +7,4 @@ DIST limine-4.20230615.0.tar.xz 963720 BLAKE2B 
a4124be763c84ded9367cffc965ca60c6
 DIST limine-5.20230811.0.tar.xz 1289484 BLAKE2B 
3044bef68ce62a701df30774d35ce886a6af578e8e1bd943a5524bd9562e8f5709a85800aa5ba4f30a194308b1607a6cea3fedd0951466bf1eef2abb6e462b6c
 SHA512 
6b98ff89efc3e52d2fd36ca1b01818de24ddb512b4936994354ae6604a17738e357ab2a4fcaf81fca97fa8f3499493534fe1e581d8f97ea49c7079d2f5249d2a
 DIST limine-5.20231103.0.tar.xz 1349960 BLAKE2B 
72348e39ad8cd614e19d88c840580c58b3dbd5d4796f2fb525bb6333bd60d641cb0e3fb2abacbef209637708754a52aadc626c625ae3b548d4d3b3db08e474f1
 SHA512 
e1a7a5ecfca30bf9246e3e9f6ae92a7f788a9c0f896c408ad0f98de08d76137d18627cbe8c0d9c7b322c6e5674c0a6c1cc0d24a2fb9b082e7e4753988e9f2fd8
 DIST limine-5.20231121.0.tar.xz 1366372 BLAKE2B 
b47b4da7be451d60c6da2c0c0d2df57fce9e767e6ae1b9a59e3e823bfcc492292363560bac70960399d23f5ff6f02ce94985f7f955e18d71c0c48f0e8faa3be7
 SHA512 
5ab7d0b578af39af0ffb980ecae282431bcaf463a60211d35ed229ef3e1c5f8d9392bbbee64732e70dd87411bedf233e32e953f714cecc44edad4b254221e761
+DIST limine-5.20231124.0.tar.xz 1322812 BLAKE2B 
8f15e8a77107a0b49cc58372d59b0fdfedaaaea0c82e46c8e86324e6fee1587f0d878ba77d70f3f24a19cc1a08cd5fc604d21f2252a53fc89f33a0a613874b62
 SHA512 
af37524f0d59de83f36921939c78421ce864343ef621a4b9ff1437c89080f9ef6467a04ea31f44f3904820dface10703f43b185d11a679bb7536d4573d2295c5

diff --git a/sys-boot/limine/limine-5.20231124.0.ebuild 
b/sys-boot/limine/limine-5.20231124.0.ebuild
new file mode 100644
index 00..73ea272148
--- /dev/null
+++ b/sys-boot/limine/limine-5.20231124.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Limine is a modern, advanced, and portable BIOS/UEFI 
multiprotocol bootloader"
+HOMEPAGE="https://limine-bootloader.org/;
+SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.xz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+bios +bios-pxe +bios-cd +cd-efi +uefi32 +uefi64 +uefiaa64 +uefirv64"
+
+MY_LLVM_TARGETS="AArch64 ARM X86 RISCV"
+MY_LLVM_FLAGS="llvm_targets_${MY_LLVM_TARGETS// /(-),llvm_targets_}(-)"
+
+BDEPEND="
+   app-alternatives/gzip
+   dev-lang/nasm
+   sys-apps/findutils
+   sys-devel/clang[${MY_LLVM_FLAGS}]
+   sys-devel/lld
+   sys-devel/llvm[${MY_LLVM_FLAGS}]
+
+   cd-efi? ( sys-fs/mtools )
+"
+
+src_configure() {
+   local myconf=(
+   "$(use_enable bios)"
+   "$(use_enable bios-cd)"
+   "$(use_enable bios-pxe)"
+
+   "$(use_enable uefi32 uefi-ia32)"
+   "$(use_enable uefi64 uefi-x86-64)"
+   "$(use_enable uefiaa64 uefi-aarch64)"
+   "$(use_enable uefirv64 uefi-riscv64)"
+   "$(use_enable cd-efi uefi-cd)"
+   )
+
+   TOOLCHAIN_FOR_TARGET=llvm \
+   econf "${myconf[@]}"
+}



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

2023-11-25 Thread Craig Andrews
commit: dd357ba4946372c3841fbb15969d69a07be64fba
Author: Craig Andrews  gentoo  org>
AuthorDate: Sat Nov 25 21:52:13 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sat Nov 25 21:52:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd357ba4

net-misc/xmrig: drop 6.20.0-r1

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

 net-misc/xmrig/Manifest   |  1 -
 net-misc/xmrig/xmrig-6.20.0-r1.ebuild | 72 ---
 2 files changed, 73 deletions(-)

diff --git a/net-misc/xmrig/Manifest b/net-misc/xmrig/Manifest
index 562a0fcbdbd3..cf099af02f78 100644
--- a/net-misc/xmrig/Manifest
+++ b/net-misc/xmrig/Manifest
@@ -1,3 +1,2 @@
 DIST xmrig-6.18.1.tar.gz 2394259 BLAKE2B 
4d7ed3ce7b6c9dce9b25da7c316df4542046b014167ce090c5c2ec4dbf61607e4238ce8a8407a396f1eb47dc76cbfac08e0131835d9c4bbff8f4e5920d2f19a6
 SHA512 
bb297b17f820ad38f0c68aebfe1be8e82e85aede99a9e2a7692935ed57dab06a36566d13c16f850123dc6e829dfb56bc9253c46b94e6a703fe169a0126feb37b
-DIST xmrig-6.20.0.tar.gz 2412536 BLAKE2B 
7842c2ed52abb80ae0bc3cef3dd3972e6ebdaa02c64e851df1ec5388b8e4efc9be2b772f9295043ec65793300b9fde04819b838060c07619bf0b0244dbb7a9d6
 SHA512 
52a32f6a2aec8e4660fe408eac483456e705721fad139fa863a55ca4cc7144872b286d716ae4ffbfd6977f2b29ae10766c40bb02362fbf2b8fa2889c0c6d488a
 DIST xmrig-6.21.0.tar.gz 2416452 BLAKE2B 
6a8a521aa5e2e0d5d223f1f811b4624cd26c3569d06db8f9d85dff835dd8f6a49f5de32c2f390d66ea2955fa23961a2dcdeb28d9eea942a44cc5abb2ae17678b
 SHA512 
167220ddda480a3e9f12282a555497d6f2c6d94ff265e8b1a061dc18c213f21c7033c7c8eed454dd1f2942f7c193aa164b5867798b3b77aadfd9fec61a94e183

diff --git a/net-misc/xmrig/xmrig-6.20.0-r1.ebuild 
b/net-misc/xmrig/xmrig-6.20.0-r1.ebuild
deleted file mode 100644
index a36872e00718..
--- a/net-misc/xmrig/xmrig-6.20.0-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic systemd toolchain-funcs
-
-DESCRIPTION="RandomX, CryptoNight, KawPow, AstroBWT, and Argon2 CPU/GPU miner"
-HOMEPAGE="https://xmrig.com https://github.com/xmrig/xmrig;
-
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/xmrig/xmrig/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64"
-fi
-
-LICENSE="Apache-2.0 GPL-3+ MIT"
-SLOT="0"
-IUSE="cpu_flags_x86_sse4_1 donate hwloc opencl +ssl"
-
-DEPEND="
-   dev-libs/libuv:=
-   hwloc? ( >=sys-apps/hwloc-2.5.0:= )
-   opencl? ( virtual/opencl )
-   ssl? ( dev-libs/openssl:= )
-"
-RDEPEND="
-   ${DEPEND}
-   !arm64? ( sys-apps/msr-tools )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-6.12.2-nonotls.patch
-)
-
-src_prepare() {
-   if ! use donate ; then
-   sed -i 's/1;/0;/g' src/donate.h || die
-   fi
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # JIT broken with FORTIFY_SOURCE=3
-   # Bug #913420
-   if tc-enables-fortify-source; then
-   filter-flags -D_FORTIFY_SOURCE=3
-   append-cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
-   fi
-
-   local mycmakeargs=(
-   -DWITH_SSE4_1=$(usex cpu_flags_x86_sse4_1)
-   -DWITH_HWLOC=$(usex hwloc)
-   -DWITH_TLS=$(usex ssl)
-   -DWITH_OPENCL=$(usex opencl)
-   -DWITH_CUDA=OFF
-   )
-
-   cmake_src_configure
-}
-
-src_install() {
-   default
-   keepdir /etc/xmrig
-   systemd_dounit "${FILESDIR}"/xmrig.service
-   dobin "${BUILD_DIR}/xmrig"
-   dobin "${S}/scripts/enable_1gb_pages.sh"
-   dobin "${S}/scripts/randomx_boost.sh"
-}



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

2023-11-25 Thread Craig Andrews
commit: 0e240bd7aee3904538dc333b2753d0bcc29c9d94
Author: Craig Andrews  gentoo  org>
AuthorDate: Sat Nov 25 21:51:43 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sat Nov 25 21:52:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e240bd7

net-misc/xmrig: add 6.21.0

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

 net-misc/xmrig/Manifest|  1 +
 net-misc/xmrig/xmrig-6.21.0.ebuild | 72 ++
 2 files changed, 73 insertions(+)

diff --git a/net-misc/xmrig/Manifest b/net-misc/xmrig/Manifest
index c9c312a57f6d..562a0fcbdbd3 100644
--- a/net-misc/xmrig/Manifest
+++ b/net-misc/xmrig/Manifest
@@ -1,2 +1,3 @@
 DIST xmrig-6.18.1.tar.gz 2394259 BLAKE2B 
4d7ed3ce7b6c9dce9b25da7c316df4542046b014167ce090c5c2ec4dbf61607e4238ce8a8407a396f1eb47dc76cbfac08e0131835d9c4bbff8f4e5920d2f19a6
 SHA512 
bb297b17f820ad38f0c68aebfe1be8e82e85aede99a9e2a7692935ed57dab06a36566d13c16f850123dc6e829dfb56bc9253c46b94e6a703fe169a0126feb37b
 DIST xmrig-6.20.0.tar.gz 2412536 BLAKE2B 
7842c2ed52abb80ae0bc3cef3dd3972e6ebdaa02c64e851df1ec5388b8e4efc9be2b772f9295043ec65793300b9fde04819b838060c07619bf0b0244dbb7a9d6
 SHA512 
52a32f6a2aec8e4660fe408eac483456e705721fad139fa863a55ca4cc7144872b286d716ae4ffbfd6977f2b29ae10766c40bb02362fbf2b8fa2889c0c6d488a
+DIST xmrig-6.21.0.tar.gz 2416452 BLAKE2B 
6a8a521aa5e2e0d5d223f1f811b4624cd26c3569d06db8f9d85dff835dd8f6a49f5de32c2f390d66ea2955fa23961a2dcdeb28d9eea942a44cc5abb2ae17678b
 SHA512 
167220ddda480a3e9f12282a555497d6f2c6d94ff265e8b1a061dc18c213f21c7033c7c8eed454dd1f2942f7c193aa164b5867798b3b77aadfd9fec61a94e183

diff --git a/net-misc/xmrig/xmrig-6.21.0.ebuild 
b/net-misc/xmrig/xmrig-6.21.0.ebuild
new file mode 100644
index ..a36872e00718
--- /dev/null
+++ b/net-misc/xmrig/xmrig-6.21.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic systemd toolchain-funcs
+
+DESCRIPTION="RandomX, CryptoNight, KawPow, AstroBWT, and Argon2 CPU/GPU miner"
+HOMEPAGE="https://xmrig.com https://github.com/xmrig/xmrig;
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/xmrig/xmrig/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64"
+fi
+
+LICENSE="Apache-2.0 GPL-3+ MIT"
+SLOT="0"
+IUSE="cpu_flags_x86_sse4_1 donate hwloc opencl +ssl"
+
+DEPEND="
+   dev-libs/libuv:=
+   hwloc? ( >=sys-apps/hwloc-2.5.0:= )
+   opencl? ( virtual/opencl )
+   ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="
+   ${DEPEND}
+   !arm64? ( sys-apps/msr-tools )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-6.12.2-nonotls.patch
+)
+
+src_prepare() {
+   if ! use donate ; then
+   sed -i 's/1;/0;/g' src/donate.h || die
+   fi
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # JIT broken with FORTIFY_SOURCE=3
+   # Bug #913420
+   if tc-enables-fortify-source; then
+   filter-flags -D_FORTIFY_SOURCE=3
+   append-cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
+   fi
+
+   local mycmakeargs=(
+   -DWITH_SSE4_1=$(usex cpu_flags_x86_sse4_1)
+   -DWITH_HWLOC=$(usex hwloc)
+   -DWITH_TLS=$(usex ssl)
+   -DWITH_OPENCL=$(usex opencl)
+   -DWITH_CUDA=OFF
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   default
+   keepdir /etc/xmrig
+   systemd_dounit "${FILESDIR}"/xmrig.service
+   dobin "${BUILD_DIR}/xmrig"
+   dobin "${S}/scripts/enable_1gb_pages.sh"
+   dobin "${S}/scripts/randomx_boost.sh"
+}



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

2023-11-25 Thread Sam James
commit: 470eeb18068d31f2dea51d316a15491bf7ef1095
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:45:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470eeb18

media-video/wireplumber: add 0.4.16

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

 media-video/wireplumber/Manifest  | 1 +
 .../{wireplumber-.ebuild => wireplumber-0.4.16.ebuild}| 8 ++--
 media-video/wireplumber/wireplumber-.ebuild   | 8 ++--
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/media-video/wireplumber/Manifest b/media-video/wireplumber/Manifest
index 3deb5840f9c1..9af70c706e16 100644
--- a/media-video/wireplumber/Manifest
+++ b/media-video/wireplumber/Manifest
@@ -1,2 +1,3 @@
 DIST wireplumber-0.4.14.tar.bz2 323688 BLAKE2B 
feb6cd4bc4e6617395fc8cc6a6f0c8d61026250f1d4691e60f2778ac6bb92e05a6a4078df95c932931bbf8c57f74c592cacbb2adeb6b2f332514eb50e04746b5
 SHA512 
51dc830d4dfe000cf6091d728d9ce6248585f5fae729536d611f85a0981722b9ab7f13322b516dc9988cdc15e0859f946aa0b78a35ad13a67e2de8082e6d5549
 DIST wireplumber-0.4.15.tar.bz2 327269 BLAKE2B 
a733e1e768f31bf6a278df84718d56c86b44a6669144b578e9c9514203eb9967dba008bb3446d293e8362b0be1dc20b0bfbff8d37ae7dc909c49a6438b5527b9
 SHA512 
53cf2027c69e8f44fc2c0c8910c1371ef8b5020aa1c47ca77f448998e810133821d9aa8de855482308b861f67b3d1cbd039c510460d59c6f9f2a44049577605b
+DIST wireplumber-0.4.16.tar.bz2 329855 BLAKE2B 
28bc69f51cbafa9350abeb2a2c417a26afb9546a3b638063dca048b607b6fa3e82aea890fbf518b854b0e3e482e65e841d6f055838ea86b7c03f73cac96c
 SHA512 
10bff323403f727b8653c8d287827e2c1e47913f2e3978d5f6e11fd29f30311fc1a11b4893073fa668a70d7dc115002822fa402f98e5b2d0e2eaa81145b727d8

diff --git a/media-video/wireplumber/wireplumber-.ebuild 
b/media-video/wireplumber/wireplumber-0.4.16.ebuild
similarity index 93%
copy from media-video/wireplumber/wireplumber-.ebuild
copy to media-video/wireplumber/wireplumber-0.4.16.ebuild
index 8860dc2ce0d4..02516dabf6eb 100644
--- a/media-video/wireplumber/wireplumber-.ebuild
+++ b/media-video/wireplumber/wireplumber-0.4.16.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/pipewire/${PN}/-/archive/${PV}/${P}.tar.bz2;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
 DESCRIPTION="Replacement for pipewire-media-session"
@@ -50,7 +50,7 @@ BDEPEND="
 DEPEND="
${LUA_DEPS}
>=dev-libs/glib-2.62
-   >=media-video/pipewire-0.3.65-r1:=
+   >=media-video/pipewire-0.3.68:=
virtual/libintl
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )
@@ -69,6 +69,10 @@ RDEPEND="${DEPEND}
 
 DOCS=( {NEWS,README}.rst )
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.4.15-config-disable-sound-server-parts.patch # 
defer enabling sound server parts to media-video/pipewire
+)
+
 src_configure() {
local emesonargs=(
-Ddaemon=true

diff --git a/media-video/wireplumber/wireplumber-.ebuild 
b/media-video/wireplumber/wireplumber-.ebuild
index 8860dc2ce0d4..02516dabf6eb 100644
--- a/media-video/wireplumber/wireplumber-.ebuild
+++ b/media-video/wireplumber/wireplumber-.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/pipewire/${PN}/-/archive/${PV}/${P}.tar.bz2;
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
 DESCRIPTION="Replacement for pipewire-media-session"
@@ -50,7 +50,7 @@ BDEPEND="
 DEPEND="
${LUA_DEPS}
>=dev-libs/glib-2.62
-   >=media-video/pipewire-0.3.65-r1:=
+   >=media-video/pipewire-0.3.68:=
virtual/libintl
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )
@@ -69,6 +69,10 @@ RDEPEND="${DEPEND}
 
 DOCS=( {NEWS,README}.rst )
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.4.15-config-disable-sound-server-parts.patch # 
defer enabling sound server parts to media-video/pipewire
+)
+
 src_configure() {
local emesonargs=(
-Ddaemon=true



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

2023-11-25 Thread Sam James
commit: 08ce05dadd7b6cfb193ea187e6eef294dcc26325
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:37 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ce05da

dev-python/flask-migrate: Stabilize 4.0.5 arm64, #918207

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

 dev-python/flask-migrate/flask-migrate-4.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-migrate/flask-migrate-4.0.5.ebuild 
b/dev-python/flask-migrate/flask-migrate-4.0.5.ebuild
index 099155dd2e43..d06bc9aa7014 100644
--- a/dev-python/flask-migrate/flask-migrate-4.0.5.ebuild
+++ b/dev-python/flask-migrate/flask-migrate-4.0.5.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
>=dev-python/alembic-1.9.0[${PYTHON_USEDEP}]



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

2023-11-25 Thread Sam James
commit: 4abf35b8ec4ce58927d2ec9526e2991aa66eec27
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abf35b8

app-text/poppler: Stabilize 23.11.0 arm, #916950

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

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

diff --git a/app-text/poppler/poppler-23.11.0.ebuild 
b/app-text/poppler/poppler-23.11.0.ebuild
index e1068a1f245c..864c330ae2e5 100644
--- a/app-text/poppler/poppler-23.11.0.ebuild
+++ b/app-text/poppler/poppler-23.11.0.ebuild
@@ -17,7 +17,7 @@ else
SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz;
SRC_URI+=" test? ( 
https://gitlab.freedesktop.org/poppler/test/-/archive/${TEST_COMMIT}/test-${TEST_COMMIT}.tar.bz2
 -> ${PN}-test-${TEST_COMMIT}.tar.bz2 )"
SRC_URI+=" verify-sig? ( 
https://poppler.freedesktop.org/${P}.tar.xz.sig )"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
SLOT="0/133"   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
 fi
 



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

2023-11-25 Thread Sam James
commit: 354ebed6fa942b2f6b0499cf5a190ee24666abad
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354ebed6

app-crypt/gpgme: Stabilize 1.23.1 arm, #916950

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

 app-crypt/gpgme/gpgme-1.23.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gpgme/gpgme-1.23.1.ebuild 
b/app-crypt/gpgme/gpgme-1.23.1.ebuild
index 4f7bca828c57..2c9ac084bcbb 100644
--- a/app-crypt/gpgme/gpgme-1.23.1.ebuild
+++ b/app-crypt/gpgme/gpgme-1.23.1.ebuild
@@ -33,7 +33,7 @@ LICENSE="GPL-2 LGPL-2.1"
 # Bump FUDGE if a release is made which breaks ABI without changing SONAME.
 # (Reset to 0 if FUDGE != 0 if libgpgme/libgpgmepp/libqpggme change.)
 SLOT="1/11.6.15.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"
+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="common-lisp static-libs +cxx python qt5 test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="qt5? ( cxx ) python? ( ${PYTHON_REQUIRED_USE} )"



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

2023-11-25 Thread Sam James
commit: 7c894ce55463c44612bf01c299bb8b552946db46
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c894ce5

dev-python/sympy: Stabilize 1.12 arm64, #918182

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

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

diff --git a/dev-python/sympy/sympy-1.12.ebuild 
b/dev-python/sympy/sympy-1.12.ebuild
index ed847c87b617..7f16aaf566bb 100644
--- a/dev-python/sympy/sympy-1.12.ebuild
+++ b/dev-python/sympy/sympy-1.12.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~riscv x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos"
 IUSE="aesara examples imaging ipython latex mathml opengl pdf png pyglet 
symengine texmacs"
 
 RDEPEND="



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

2023-11-25 Thread Sam James
commit: dbecd10f37fa9f29b58cf008b6d10681eecff2b9
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbecd10f

dev-python/symengine: Stabilize 0.10.0 arm64, #918182

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

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

diff --git a/dev-python/symengine/symengine-0.10.0.ebuild 
b/dev-python/symengine/symengine-0.10.0.ebuild
index 2f14113ba8b7..ac94753f6d54 100644
--- a/dev-python/symengine/symengine-0.10.0.ebuild
+++ b/dev-python/symengine/symengine-0.10.0.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~x86"
 
 BDEPEND="
dev-util/cmake



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

2023-11-25 Thread Sam James
commit: 8d1bc1d03317838915f480dbe6b76db4ad0f663a
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 20:46:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 20:46:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d1bc1d0

media-libs/harfbuzz: Stabilize 8.2.2 arm, #916950

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

 media-libs/harfbuzz/harfbuzz-8.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/harfbuzz/harfbuzz-8.2.2.ebuild 
b/media-libs/harfbuzz/harfbuzz-8.2.2.ebuild
index 34fb1cd87dac..e50ec068ed39 100644
--- a/media-libs/harfbuzz/harfbuzz-8.2.2.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-8.2.2.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/harfbuzz/harfbuzz/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



[gentoo-commits] repo/proj/guru:dev commit in: net-im/fractal/

2023-11-25 Thread Michał Górny
commit: 68304a956e3dab517695e15a6b6b4a93d4c9ffcf
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 25 20:36:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 25 20:36:10 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68304a95

net-im/fractal: Remove, now in ::gentoo

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

 net-im/fractal/Manifest   |  1 -
 net-im/fractal/fractal-5_beta1.ebuild | 59 ---
 net-im/fractal/metadata.xml   | 11 ---
 3 files changed, 71 deletions(-)

diff --git a/net-im/fractal/Manifest b/net-im/fractal/Manifest
deleted file mode 100644
index 55d6963e27..00
--- a/net-im/fractal/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST fractal-5.beta1.tar.bz2 699474 BLAKE2B 
57fb2316f58009d2c6de53036231d7a3fab70dcbd12ec71cdc58c743d8d78a43e3c9eff91836f481daddf68405f7b8a6cd3d6e2f6c1fa22e752579ab1893df45
 SHA512 
e31f5f0503efc8a98fd03d42080f9c77e292587b4dd18b5c0a67dc273d017174a96d5176974ccb3d7c4aa90bddc4f0ac8fc3c339d6fd2874fad4fb7c18a603ac

diff --git a/net-im/fractal/fractal-5_beta1.ebuild 
b/net-im/fractal/fractal-5_beta1.ebuild
deleted file mode 100644
index 0c50443205..00
--- a/net-im/fractal/fractal-5_beta1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit meson gnome2-utils
-
-MY_PV=${PV//_/.}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Matrix group messaging app"
-HOMEPAGE="https://wiki.gnome.org/Apps/Fractal;
-
-if [[ ${PV} == "" ]]; then
-   inherit git-r3
-
-   SRC_URI=""
-   EGIT_REPO_URI="https://gitlab.gnome.org/world/fractal.git;
-   EGIT_BRANCH="master"
-else
-   
SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2;
-   KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.72
-   >=app-text/gspell-1.8.1
-   >=gui-libs/libadwaita-1.3
-   >=media-libs/gstreamer-1.20
-   >=media-libs/gst-plugins-base-1.20
-   >=dev-db/sqlite-3.24
-   >=media-video/pipewire-0.3[gstreamer]
-   >=media-libs/libshumate-1
-   >=x11-libs/cairo-1.16.0
-   >=gui-libs/gtk-4.10:4
-   gui-libs/gtksourceview:5
-   media-plugins/gst-plugins-gtk"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-util/ninja
-   dev-util/meson
-   >=virtual/rust-1.31.1"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_preinst() {
-   gnome2_schemas_savelist
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-   xdg_icon_cache_update
-}

diff --git a/net-im/fractal/metadata.xml b/net-im/fractal/metadata.xml
deleted file mode 100644
index 2047d957a7..00
--- a/net-im/fractal/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-laurent.morret...@gmail.com
-Laurent Morretton
-  
-  
-GNOME/fractal
-  
-



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

2023-11-25 Thread Michał Górny
commit: 61a17f72808b6118b70911d1b6bb20593175f3c5
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 25 18:55:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 25 19:47:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a17f72

app-portage/pycargoebuild: Bump to 0.11

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

 app-portage/pycargoebuild/Manifest |  1 +
 .../pycargoebuild/pycargoebuild-0.11.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/app-portage/pycargoebuild/Manifest 
b/app-portage/pycargoebuild/Manifest
index b139514bf10a..39f85e6a7057 100644
--- a/app-portage/pycargoebuild/Manifest
+++ b/app-portage/pycargoebuild/Manifest
@@ -1 +1,2 @@
 DIST pycargoebuild-0.10.gh.tar.gz 34148 BLAKE2B 
c26fe54ce161cf27b39b795a1901900890a9aeac17276139db3e998b7e1f985806dbb96496dc818acba2b22afee053bf2721536b48a425222101d8ca97528677
 SHA512 
e2d4f177af01dcdb573d48dc873b18c2d6d6377189987b723564cbe1654d1a3449d730cd9dd9ed62f255f070b15992c8f5d952ecedb1cc8a29ed5d8f3adaaa4d
+DIST pycargoebuild-0.11.gh.tar.gz 37874 BLAKE2B 
cb8ab5b0c771a0174ba50c673bd6a361d8478ec67c2ed70f9b1b65a10ba7bd8b3a98558efa7d0778aadfb860fcd528ea6aec804256222e7b57017455f94ab766
 SHA512 
4d073913973c371d1381c950c5407bc307db1c5162a6145e48605d7918bb939188bcf77949d890bf17a6ebcd83145a3b4c81a85cf1f40a51b5a5b070bc5d26bd

diff --git a/app-portage/pycargoebuild/pycargoebuild-0.11.ebuild 
b/app-portage/pycargoebuild/pycargoebuild-0.11.ebuild
new file mode 100644
index ..9fa9539e5472
--- /dev/null
+++ b/app-portage/pycargoebuild/pycargoebuild-0.11.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A generator for Rust/Cargo ebuilds written in Python"
+HOMEPAGE="
+   https://github.com/projg2/pycargoebuild/
+   https://pypi.org/project/pycargoebuild/
+"
+SRC_URI="
+   https://github.com/projg2/pycargoebuild/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64"
+
+RDEPEND="
+   dev-python/license-expression[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+"
+
+distutils_enable_tests pytest



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

2023-11-25 Thread Fabian Groffen
commit: a689a2e36711c86b149a6707fa2ad65bd696633b
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Nov 25 19:13:48 2023 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Nov 25 19:13:48 2023 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a689a2e3

sys-apps/portage-3.0.55.1: fix LinkageMapMachO error

Signed-off-by: Fabian Groffen  gentoo.org>

 sys-apps/portage/Manifest   | 2 +-
 sys-apps/portage/{portage-3.0.55.ebuild => portage-3.0.55.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index a4e5776821..996a88e823 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -2,4 +2,4 @@ DIST prefix-portage-3.0.21.tar.bz2 1339211 BLAKE2B 
019cf0f3d2d1c45e7849221fc40b4
 DIST prefix-portage-3.0.30.1.tar.bz2 1476396 BLAKE2B 
955db5832b1d7d19e25c4ee644f7daa0dbfc7a259ea7018f207865aa8cf5eb8e1e8e2a31c90578162e181af6c043590f239b042e652c3eb2cba9f442bbfc0476
 SHA512 
1ff8afbee4b204488eb0ecb4bdd216bf754ae015a3bcd298d7b6fb0dd7a671ccbf31d9a4a49be8e3182708641abe008f25df5319e135aa25363b979d49517506
 DIST prefix-portage-3.0.34.2.tar.bz2 1498499 BLAKE2B 
47f53e4917bdf204eb23dadd9dc821c06da07d2e5c68cf0a3de908089e4121d45542e2120e57744db1c808a156595624915956e77f547ab671b1584b2c67cf0b
 SHA512 
121dd885a73153e780e28c2e514d4b3babc44368aa6915b2009ed0b205051c2f6c37dd3ccfe8be5ea567e7bab2f9f9b0c5c5b81c49990fbac7360261721a5bb7
 DIST prefix-portage-3.0.49.tar.bz2 1421955 BLAKE2B 
ac6e5b512f943826d0bf06225037885a138f3810db973a60c6dbca4f80d516e3aef3054b532f42a143b35702661a3d35ee59945f745b849dcd6fefbd4ff8f3cc
 SHA512 
dee0035e048b1bfde5859b809bf6ffa3ca0674cd1d59d9cfcc14a279d87215223a6b4497274db7e443f27fd6dd05eadb043ae6872feb8fa8523994d9946b6879
-DIST prefix-portage-3.0.55.tar.bz2 1460532 BLAKE2B 
840ce4036eddfba2b1a5c8e4c510174a5b4bcee72b00a3acdc8546b7778e0d0838e4aa75887fd8501bf1f811e74c0bf96c264569c28ce007a3705f1a22d8f1aa
 SHA512 
00e5f9783a30d5da60da3686f616b23f4ec2413038bd8e8ee34665cc56ff2a2b0b0d0da8744a4d6dd6b99e20549e8031347a5db68d92d50ba5012c2cef782442
+DIST prefix-portage-3.0.55.1.tar.bz2 1460599 BLAKE2B 
07982a1e6af0df7c7849aeab7ed2479bb2fe7ede16183bddba93d25d8839224f87967b0aa776c2cbc124f322b69a275e628e2817c7f3e01c9353a0eeda38fea8
 SHA512 
5f87c84baa9d13f0ad5aa534013ef7bf8219d742f940cad8a07bfea8630615885950aa6d7cf030fe6012061504d177a3e024a1bdc2da3a02bed550816805

diff --git a/sys-apps/portage/portage-3.0.55.ebuild 
b/sys-apps/portage/portage-3.0.55.1.ebuild
similarity index 100%
rename from sys-apps/portage/portage-3.0.55.ebuild
rename to sys-apps/portage/portage-3.0.55.1.ebuild



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

2023-11-25 Thread Fabian Groffen
commit: 82ebd8e271b0c17e279ef02b1f247cf6fa298a60
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Nov 24 20:53:05 2023 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Nov 24 20:53:05 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=82ebd8e2

meson: install const_autotool.py on Prefix

Signed-off-by: Fabian Groffen  gentoo.org>

 lib/portage/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/portage/meson.build b/lib/portage/meson.build
index 06dde8ca71..6a648fd9d0 100644
--- a/lib/portage/meson.build
+++ b/lib/portage/meson.build
@@ -21,6 +21,7 @@ py.install_sources(
 'binpkg.py',
 'checksum.py',
 const_py,
+'const_autotool.py',  # PREFIX_LOCAL
 'cvstree.py',
 'data.py',
 'debug.py',



[gentoo-commits] proj/portage:prefix commit in: lib/portage/util/_dyn_libs/

2023-11-25 Thread Fabian Groffen
commit: f9d2e080062ac2309f1cb231cc9547e9bf4412ef
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Nov 25 19:08:14 2023 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Nov 25 19:08:14 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f9d2e080

lib/portage/util/_dyn_libs/meson.build: add LinkageMapMachO.py

Signed-off-by: Fabian Groffen  gentoo.org>

 lib/portage/util/_dyn_libs/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/portage/util/_dyn_libs/meson.build 
b/lib/portage/util/_dyn_libs/meson.build
index f744d2a087..705b51d220 100644
--- a/lib/portage/util/_dyn_libs/meson.build
+++ b/lib/portage/util/_dyn_libs/meson.build
@@ -1,6 +1,7 @@
 py.install_sources(
 [
 'LinkageMapELF.py',
+'LinkageMapMachO.py',   # PREFIX_LOCAL
 'NeededEntry.py',
 'PreservedLibsRegistry.py',
 'display_preserved_libs.py',



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

2023-11-25 Thread Arthur Zamarin
commit: e5de7f34ed71cb138de4265e053ff52693e98021
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 25 19:02:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 25 19:02:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5de7f34

dev-python/pexpect: add 4.9.0

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

 dev-python/pexpect/Manifest |  1 +
 dev-python/pexpect/pexpect-4.9.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/pexpect/Manifest b/dev-python/pexpect/Manifest
index f26be5381a34..8ea51df2cd4c 100644
--- a/dev-python/pexpect/Manifest
+++ b/dev-python/pexpect/Manifest
@@ -1 +1,2 @@
 DIST pexpect-4.8.0_p20230402.gh.tar.gz 169420 BLAKE2B 
4780621f5876506c5ad2dbf03656d8c336d5aadef99b1ae99e841b5d0a945ab54177cb04a79b526e422cd4df7393c723000e4a28960bd5f57a5e0173b0a3bc69
 SHA512 
72cdf226ec5c7d60a10fbcecf81cd1ae422467652e104bb818908bf6d1a4a4bcadab9a06d58475a9609580d973956e18e2ab144ab13a0b700072474ff3087259
+DIST pexpect-4.9.0.tar.gz 166450 BLAKE2B 
a08e10deb9f21e49a04021d78dc1ff6c9eeded5825ef73b236c3dac725e6877a4fe74deaa6844c8aa4b1beab4b915d7612e682529c4ed97b364a737a1960b30f
 SHA512 
0e4b3a6978b94aee221ff23cd7bd771517e0e0f1a1a8b17f77f15bf78edd3130ad093d925b7d1e86fe6ba7eb956205d4c616b4e52b2fcfa1e944d4860dd7b3a0

diff --git a/dev-python/pexpect/pexpect-4.9.0.ebuild 
b/dev-python/pexpect/pexpect-4.9.0.ebuild
new file mode 100644
index ..ed1001b2380c
--- /dev/null
+++ b/dev-python/pexpect/pexpect-4.9.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 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 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module for spawning child apps and responding to expected 
patterns"
+HOMEPAGE="
+   https://pexpect.readthedocs.io/
+   https://pypi.org/project/pexpect/
+   https://github.com/pexpect/pexpect/
+"
+
+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"
+IUSE="examples"
+
+RDEPEND="
+   >=dev-python/ptyprocess-0.5[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc \
+   dev-python/sphinxcontrib-github-alt
+
+src_test() {
+   # workaround new readline defaults
+   echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
+   local -x INPUTRC="${T}"/inputrc
+   local EPYTEST_DESELECT=(
+   # flaky test on weaker arches
+   tests/test_performance.py
+   # requires zsh installed, not worth it
+   tests/test_replwrap.py::REPLWrapTestCase::test_zsh
+   )
+   distutils-r1_src_test
+}
+
+python_install_all() {
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   distutils-r1_python_install_all
+}



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

2023-11-25 Thread Arthur Zamarin
commit: 4906865134736b5d8f9b13e60ff6b7462d6716a7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 25 18:17:32 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 25 18:17:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49068651

dev-python/idna: add 3.6

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

 dev-python/idna/Manifest|  1 +
 dev-python/idna/idna-3.6.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/idna/Manifest b/dev-python/idna/Manifest
index 2cca1ab373ed..9bbd0102a95b 100644
--- a/dev-python/idna/Manifest
+++ b/dev-python/idna/Manifest
@@ -1,2 +1,3 @@
 DIST idna-3.4.tar.gz 183077 BLAKE2B 
dd6c94104e17b441a7a63aec4e28f1969278996964c402865da8ad1040878539f798956e26532281cc44934544fd6fa33407949caf4a34fa2b48d7aafbb8fb5e
 SHA512 
4060a9304c9bac04efdd0b97ec8f5aeb7e17417e767bf51c5dfc26605edad25ab67456cf6f6a3c5a9f32b8247e46f6343edfd8a6ffbcd6d1075c71e66d089d6a
 DIST idna-3.5.gh.tar.gz 184973 BLAKE2B 
68b39c00850663f5966ed1ee8c287a0026c441ed052b52aa6243cd595f6cd6fe62a7fe61b9b855c4ee851144fae2e88eda7bbd8405c66e37a9ad42ddc87cf361
 SHA512 
a806e4f96f2f1034dd634f3c86e80c6e7929a80c0773e4b2749466b691d38b94b6ea64994613cb5f8764754c1c9813eade4b74105f64233671b8eeaca7125bdc
+DIST idna-3.6.tar.gz 175426 BLAKE2B 
962f2e1fdeb4abe28a198f2b469142df1ca336298dd4727c1d51871e747a17da0b946d09ef32b820b23e5fb103f5ab74234b31bd8540c52cf9d87e901326ca19
 SHA512 
8bea880d1b2fae1511f21381d73445f62e786c385eb949d2c39e611f71cb6f31f7e54927833a0f456e340857d384d960ab9e6ae31ac7481314254646de656cc0

diff --git a/dev-python/idna/idna-3.6.ebuild b/dev-python/idna/idna-3.6.ebuild
new file mode 100644
index ..863c51847bdb
--- /dev/null
+++ b/dev-python/idna/idna-3.6.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2023 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
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Internationalized Domain Names in Applications (IDNA)"
+HOMEPAGE="
+   https://github.com/kjd/idna/
+   https://pypi.org/project/idna/
+"
+
+SLOT="0"
+LICENSE="BSD"
+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"
+
+distutils_enable_tests unittest



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

2023-11-25 Thread Arthur Zamarin
commit: 1a3b720db94c5b4f9ac0c892e497d9376d357e7b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 25 18:18:11 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 25 18:18:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3b720d

dev-python/pymdown-extensions: add 10.5

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

 dev-python/pymdown-extensions/Manifest |  1 +
 .../pymdown-extensions-10.5.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/pymdown-extensions/Manifest 
b/dev-python/pymdown-extensions/Manifest
index 05be9d7bb56e..255d4bb1fb98 100644
--- a/dev-python/pymdown-extensions/Manifest
+++ b/dev-python/pymdown-extensions/Manifest
@@ -1 +1,2 @@
 DIST pymdown_extensions-10.4.tar.gz 785151 BLAKE2B 
90d49b16e3656262eb7a591e9cd53ebd1350aab8ed8522711c595169db078924d67e23a71c63001089744166f9ee2039622bd1b847facad64503a27a6b783104
 SHA512 
efcd958fce5d0445ecb9c7a844caa8306998647376cdb8c04d3bfcbff45f12f949230048a0fb9be50c59e814a445e38c1e57f749c5fe7f64f82f36853ef77cf0
+DIST pymdown_extensions-10.5.tar.gz 788318 BLAKE2B 
cf6834a848a0276d636b75df33c3ec0bcc0988a02b2d9d7d2086a0104a3f105e080fa2acaab36c010f997f351c89c61adb165152ee3b0467ee8a41da71603abf
 SHA512 
f574fe45a8b8b30ad51e1f6b1a1ce60a65a10e560f9f5c6db6a487309acf2d65e28d79c7edad4f58192ddbda9546fd50e279e08efcbc1c2eb707de0a84696225

diff --git a/dev-python/pymdown-extensions/pymdown-extensions-10.5.ebuild 
b/dev-python/pymdown-extensions/pymdown-extensions-10.5.ebuild
new file mode 100644
index ..6a8fb32958ef
--- /dev/null
+++ b/dev-python/pymdown-extensions/pymdown-extensions-10.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Extensions for Python Markdown"
+HOMEPAGE="
+   https://github.com/facelessuser/pymdown-extensions/
+   https://pypi.org/project/pymdown-extensions/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/markdown-3.5[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   >=dev-python/pygments-2.12.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-pymdownx-material-extras/

2023-11-25 Thread Arthur Zamarin
commit: 102962330aa589bc3e446d008148c625c46ece10
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 25 18:19:40 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 25 18:19:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10296233

dev-python/mkdocs-pymdownx-material-extras: add 2.5.6

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

 .../mkdocs-pymdownx-material-extras/Manifest   |  1 +
 .../mkdocs-pymdownx-material-extras-2.5.6.ebuild   | 23 ++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/mkdocs-pymdownx-material-extras/Manifest 
b/dev-python/mkdocs-pymdownx-material-extras/Manifest
index da38ce2d54d0..5bcbf5736e31 100644
--- a/dev-python/mkdocs-pymdownx-material-extras/Manifest
+++ b/dev-python/mkdocs-pymdownx-material-extras/Manifest
@@ -1 +1,2 @@
 DIST mkdocs_pymdownx_material_extras-2.5.5.tar.gz 22591 BLAKE2B 
192474ce7e632ba419f6f92830d6d167f9706f4af301fdce8f50db3e7ca647d40318be845b3bd8deb695c9a0a5e490550c54ade7028166cbc64cc3704f825084
 SHA512 
76e7aa03853dffcae53e25dba29787331d6e4c0604bb1334f9666043d6794cd434d6e9646922a4f329d78dbb49ea2e5f0ed5fd5c843277b21aa6486c016b74c2
+DIST mkdocs_pymdownx_material_extras-2.5.6.tar.gz 25534 BLAKE2B 
e87b37a06e1c528cd869361faa9b823ee3eb207d93c05f6f1d67653aec041dc0c6ab3937c51c9340999bc08a4cde52d5eab71abb3d84b9bacee7d1cfa4b0a3c8
 SHA512 
379a666dba2cafd4b1895f75f7ad430379b1088c2b373c93742a0d5f3555f30ed86b8a153fedb6e7555d0664b6c102a699f47671d6729027ba02cf14a49e963a

diff --git 
a/dev-python/mkdocs-pymdownx-material-extras/mkdocs-pymdownx-material-extras-2.5.6.ebuild
 
b/dev-python/mkdocs-pymdownx-material-extras/mkdocs-pymdownx-material-extras-2.5.6.ebuild
new file mode 100644
index ..1a9cabf7d77e
--- /dev/null
+++ 
b/dev-python/mkdocs-pymdownx-material-extras/mkdocs-pymdownx-material-extras-2.5.6.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Custom alterations based on Mkdocs-Material"
+HOMEPAGE="
+   https://github.com/facelessuser/mkdocs_pymdownx_material_extras/
+   https://pypi.org/project/mkdocs-pymdownx-material-extras/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/mkdocs-material-8.3.3[${PYTHON_USEDEP}]
+"



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

2023-11-25 Thread Fabian Groffen
commit: c76337d093276f39b5a24d896b52253840d393a1
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Nov 25 18:45:06 2023 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Nov 25 18:45:06 2023 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=c76337d0

sys-apps/portage-3.0.55: don't depend on getuto

Prefix doesn't have (official) binpkgs, and getuto isn't Prefix ready.

Signed-off-by: Fabian Groffen  gentoo.org>

 sys-apps/portage/portage-3.0.55.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-3.0.55.ebuild 
b/sys-apps/portage/portage-3.0.55.ebuild
index de98eda274..c64c5d2776 100644
--- a/sys-apps/portage/portage-3.0.55.ebuild
+++ b/sys-apps/portage/portage-3.0.55.ebuild
@@ -73,7 +73,7 @@ RDEPEND="
>=sys-apps/findutils-4.4
!build? (
>=app-admin/eselect-1.2
-   app-portage/getuto
+   !prefix? ( app-portage/getuto )
>=app-shells/bash-5.0:0
>=sec-keys/openpgp-keys-gentoo-release-20230329
>=sys-apps/sed-4.0.5



[gentoo-commits] repo/proj/guru:dev commit in: app-vim/yats/

2023-11-25 Thread Anna Vyalkova
commit: 7412f4ce2da15278dee06b9e7cab6401502171ce
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Nov 25 18:33:13 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Nov 25 18:33:13 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7412f4ce

app-vim/yats: add 2023.08.24

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

 app-vim/yats/Manifest   |  1 +
 app-vim/yats/yats-2023.08.24.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/app-vim/yats/Manifest b/app-vim/yats/Manifest
index dc842f1071..7d0a5b13ea 100644
--- a/app-vim/yats/Manifest
+++ b/app-vim/yats/Manifest
@@ -1 +1,2 @@
 DIST yats-2022.08.26.tar.gz 218153 BLAKE2B 
0733327d3e329ee8492ac084613eaaa002e48aded81496f0eaddbabfc0f40f2d097e761e850c32594467cc1d71ca498ed265a3102c906b6f903254e2868beb8f
 SHA512 
4bf429edf27bbd199030d79e1273ad6aeb52b53a5d4ead79951b6fb488e0f5f98a4c5b65808a5f02362b649ae71c28841cfbb5d76e6bec0dfd195a908d55591f
+DIST yats-2023.08.24.tar.gz 220267 BLAKE2B 
aa42e65d3ddce06b0166a5d694d2303f1f046f6e5e0257234022684f2b80e537ceb4254c9c819aaffde0b0a272e56efb3ef2faf26652097329cb210b6e5e6fc8
 SHA512 
73dc6b04609682097918577ab89aad2f355ab9b6d8eba92685348ba0918503577604bc7e9b4041962f17e56eb2cc6b4e9f07d252d55a88ae543cec3b7570453d

diff --git a/app-vim/yats/yats-2023.08.24.ebuild 
b/app-vim/yats/yats-2023.08.24.ebuild
new file mode 100644
index 00..bb9a1191da
--- /dev/null
+++ b/app-vim/yats/yats-2023.08.24.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vim-plugin
+
+MY_PN="${PN}.vim"
+COMMIT="2b6950c7143790e6930b8cf32d60c6858a50d47c"
+DESCRIPTION="vim plugin: Yet Another TypeScript Syntax"
+HOMEPAGE="https://github.com/HerringtonDarkholme/yats.vim;
+SRC_URI="https://github.com/HerringtonDarkholme/${MY_PN}/archive/${COMMIT}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${COMMIT}"
+
+LICENSE="vim"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   >app-vim/vader-0.3.0
+   )
+"
+
+DOCS=( CHANGES.markdown README.md )
+
+src_prepare() {
+   default
+
+   # failing tests
+   rm test/tsx.indent.vader || die
+}
+
+src_compile() {
+   :
+}
+
+src_test() {
+   cd test || die
+
+   unset DISPLAY
+   local -x TERM="xterm"
+
+   vim -eu "${FILESDIR}"/vimrc -c "Vader! ./*.vader" || die
+}
+
+src_install() {
+   vim-plugin_src_install ctags UltiSnips
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-vim/css-color/

2023-11-25 Thread Anna Vyalkova
commit: 336265d21fce17c37e35338e4be1c3fbc97de370
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Nov 25 16:50:15 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Nov 25 18:13:14 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=336265d2

app-vim/css-color: add 20230727, drop 20211229

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

 app-vim/css-color/Manifest| 2 +-
 .../{css-color-20211229.ebuild => css-color-20230727.ebuild}  | 8 +---
 app-vim/css-color/metadata.xml| 1 +
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-vim/css-color/Manifest b/app-vim/css-color/Manifest
index a32b2e607c..cae07c5d60 100644
--- a/app-vim/css-color/Manifest
+++ b/app-vim/css-color/Manifest
@@ -1,2 +1,2 @@
-DIST css-color-20211229.tar.gz 11163 BLAKE2B 
325baede1772a27840572d7b91a6a10b470d8509189c68b65ba1b6a57960a05cbae9f2d32a52524937df939a9130652eaf62fb22538c37bd34768b293fb330f6
 SHA512 
47369161c8298df0093a012d5eb2d7ad4e966b7b443171192a334faee125964267a4fe231cd6c24b657d25f331318be95c4e1025744f223559fb8f47d222bebf
 DIST css-color-20230308.tar.gz 11057 BLAKE2B 
89de517e05959b11b2bd308b5664b31ef4013505194804d1acf15c53b617f7d2b20193023cb6b90ad8fda9b940692e2529a15b98085e03a750926383110aff5d
 SHA512 
0303f8242c8829120f2228a1ddbc3647f174def11db4f33f32a81bc622e16736c54ce240fbb93a67e6a4f4e1173ea960852d133715a1bd37f294a52b75c99bfb
+DIST css-color-20230727.tar.gz 11226 BLAKE2B 
a003bd2dd9c3624fcc709e05e9d730af3280e8afa0f2968eb3d718ababa2cd74a8e0c60c11f71bdd4763a11231ddd3b3a07d1481a54ab70cb217a33b0a3158bc
 SHA512 
61bd1ce26b0a647ec7a2d4f3a60e7f19428071cf02f29897f300a75f9d9e68cc336c561737883abb92180bfdff4fde1e946c90b385322d3d0d1cefa962eb5ecd

diff --git a/app-vim/css-color/css-color-20211229.ebuild 
b/app-vim/css-color/css-color-20230727.ebuild
similarity index 69%
rename from app-vim/css-color/css-color-20211229.ebuild
rename to app-vim/css-color/css-color-20230727.ebuild
index 33860b76f9..cb69156481 100644
--- a/app-vim/css-color/css-color-20211229.ebuild
+++ b/app-vim/css-color/css-color-20230727.ebuild
@@ -5,10 +5,12 @@ EAPI=8
 
 inherit vim-plugin
 
-COMMIT="8bf943681f92c81a8cca19762a1ccec8bc29098a"
+COMMIT="6cc65734bc7105d9677ca54e2255fcbc953ba6bf"
 DESCRIPTION="vim plugin: preview colours in source code while editing"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=5056
-https://github.com/ap/vim-css-color;
+HOMEPAGE="
+   https://github.com/ap/vim-css-color
+   https://www.vim.org/scripts/script.php?script_id=5056
+"
 SRC_URI="https://github.com/ap/vim-${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
 S="${WORKDIR}/vim-${PN}-${COMMIT}"
 

diff --git a/app-vim/css-color/metadata.xml b/app-vim/css-color/metadata.xml
index ee43337a2c..4c914686df 100644
--- a/app-vim/css-color/metadata.xml
+++ b/app-vim/css-color/metadata.xml
@@ -4,5 +4,6 @@


ap/vim-css-color
+   5056

 



[gentoo-commits] repo/proj/guru:dev commit in: app-admin/i2pd-tools/

2023-11-25 Thread Anna Vyalkova
commit: d662b148836c8748d2da421711ab006ef4e4d877
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Nov 25 18:09:50 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Nov 25 18:13:14 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d662b148

app-admin/i2pd-tools: add 2023.09.06, drop 0.2023.03.12

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

 app-admin/i2pd-tools/Manifest|  2 +-
 ...023.03.12.ebuild => i2pd-tools-2023.09.06.ebuild} | 20 +++-
 2 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/app-admin/i2pd-tools/Manifest b/app-admin/i2pd-tools/Manifest
index 825830c87b..8e3d4e6d84 100644
--- a/app-admin/i2pd-tools/Manifest
+++ b/app-admin/i2pd-tools/Manifest
@@ -1,3 +1,3 @@
 DIST i2pd-a6bd827.tar.gz 650322 BLAKE2B 
74a9c686f0468c10b09d54d02445ced9df79bf152b7953cf999b2914fcf61ea38b189524692af7318a1c064a31ab3a888d4cf8a0c01734f6225c4705717cd280
 SHA512 
008d59c5b7edae2664dcd0bef712572f51f7520de5f5f25da69cba2b81278d3b9ee8a323cabd1c96bc73d28234085e12247f5d2e796e00bb7a4a322b42278367
-DIST i2pd-tools-0.2023.03.12.tar.gz 19754 BLAKE2B 
7c11d178f16fcded064fc2a2f66023fb7739f2ce27a9f41f4d5f7b9f7ccc47cc4570be90f93274a71fb93e4fb8c950d162dc7d2c5022a1b37dbc3234fbfc119b
 SHA512 
163692691b44b8cee314c8103436b0038ec6c91f114d891a2c3c8c8a9bf700de9547ad65f8ce6b206af0566b09df1e399ab5f017e1f6ae757790a8fc57a46909
 DIST i2pd-tools-0.2023.05.26.tar.gz 19457 BLAKE2B 
a1c9f4edd812affafd16cc9dda70b6165d095207c00c3dc19d692cbea38d64795be5f8d6ebaba89360788ce931860a56f250e03edbe3df6fb0f0e5b83c86db89
 SHA512 
491e704936e67c7baa1395c77fbc0b5746855ba99ed3fa16731ea8f6a570157c5a7b53eb7bb46efec691d0583dafca75bd42903495c2c0776625a7dbd6f38651
+DIST i2pd-tools-2023.09.06.tar.gz 22556 BLAKE2B 
a3c93c8f7e7f359099c3f730587d38870e44bf4dd0314df7be146e2423cf099691871702064c7b77d8f0e8d588ac991390cdad03be6ee72afb2304639e53cee4
 SHA512 
366ad92232889550ef3a4463b967d2959823cd8b423185b38b294b3d8d1790adcb821c609dde86bc0cda4b6ec86c20340a1496c57577599e699621545d247427

diff --git a/app-admin/i2pd-tools/i2pd-tools-0.2023.03.12.ebuild 
b/app-admin/i2pd-tools/i2pd-tools-2023.09.06.ebuild
similarity index 73%
rename from app-admin/i2pd-tools/i2pd-tools-0.2023.03.12.ebuild
rename to app-admin/i2pd-tools/i2pd-tools-2023.09.06.ebuild
index 60aec1b0c9..33e9be7c22 100644
--- a/app-admin/i2pd-tools/i2pd-tools-0.2023.03.12.ebuild
+++ b/app-admin/i2pd-tools/i2pd-tools-2023.09.06.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit toolchain-funcs
 
-COMMIT="f9348979a23dec01d1bb91519f6bc2525dc01958"
+COMMIT="cf0c9c9d74fc06acb001bbeb2db845083397fa20"
 I2PD_COMMIT="a6bd8275ca496c75c84d7eb890c0071569d28f55" # keep in sync with 
bundled version
 DESCRIPTION="Some useful tools for I2P"
 HOMEPAGE="https://github.com/PurpleI2P/i2pd-tools;
@@ -18,6 +18,7 @@ S="${WORKDIR}/${PN}-${COMMIT}"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="cpu_flags_x86_aes"
 
 DEPEND="
dev-libs/boost:=
@@ -27,8 +28,7 @@ DEPEND="
 RDEPEND="${DEPEND}"
 
 PATCHES=(
-   "${FILESDIR}"/${P}-nodebug.patch
-   "${FILESDIR}"/${P}-flags.patch
+   "${FILESDIR}"/${PN}-0.2023.03.12-nodebug.patch
 )
 
 src_unpack() {
@@ -39,7 +39,17 @@ src_unpack() {
 }
 
 src_configure() {
-   tc-export CXX
+   tc-export AR CXX
+}
+
+src_compile() {
+   mymakeflags=(
+   CXXFLAGS="${CXXFLAGS}"
+   LDFLAGS="${LDFLAGS}"
+   USE_AESNI="$(usex cpu_flags_x86_aes)"
+   )
+
+   emake "${mymakeflags[@]}"
 }
 
 src_install() {
@@ -47,7 +57,7 @@ src_install() {
 
# extracted from Makefile
binaries=(
-   keygen keyinfo famtool routerinfo regaddr regaddr_3ld vain
+   vain keygen keyinfo famtool routerinfo regaddr regaddr_3ld
i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost
)
dobin "${binaries[@]}"



  1   2   3   4   >