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

2023-09-14 Thread Florian Schmaus
commit: f0c2eb222c0477c7abfde886726178e3a24e3ef4
Author: Florian Schmaus  gentoo  org>
AuthorDate: Thu Sep 14 13:27:51 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Sep 14 13:27:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c2eb22

net-misc/nextcloud-client: add 3.9.4

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

 net-misc/nextcloud-client/Manifest |   1 +
 .../nextcloud-client/nextcloud-client-3.9.4.ebuild | 113 +
 2 files changed, 114 insertions(+)

diff --git a/net-misc/nextcloud-client/Manifest 
b/net-misc/nextcloud-client/Manifest
index 68cef5032cc0..372fe3842c52 100644
--- a/net-misc/nextcloud-client/Manifest
+++ b/net-misc/nextcloud-client/Manifest
@@ -1,3 +1,4 @@
 DIST nextcloud-client-3.8.2.tar.gz 15605319 BLAKE2B 
babd45d0a38d5206afd9c2b69e7ea580aeb90df2606932cbfc28f688b20bb026e566ca8a30112975ae38c8d9807339433c8b972230c6a8122cb93ffadd2eecab
 SHA512 
231e074fd3dcc8f69d62616ff4aeec5e748891bf93fc783861008a4e04a12066e77e1449d94f599e5edfa9861bad684403aef80e909e095c16170d8607626a9d
 DIST nextcloud-client-3.9.0.tar.gz 15648917 BLAKE2B 
50d26c101143d0d3ca690f142d54f195fbdaea2b58e97f8c0199519300053e27cd87290425de396b6e236dd3629aaedd6220a53b03249fa4376e3007e31dba85
 SHA512 
be289d1714484bfa1b49f23f0db898b3c345df924cfb6cc7ab1db5715524bec7e80eedb8cfc19112778337f81424d498eb2a34d6b3fd05fc6daa161bbcceb480
 DIST nextcloud-client-3.9.1.tar.gz 15733029 BLAKE2B 
e7e792b2ea7985c02627661b4686bf568dfe8cfe722babbf5507293daec57b754566d259d3fd4bc0b224e1dc34ae0afa4c757e75910c4d6d4ded692f0d7c2b02
 SHA512 
b3c77243efed3b70a59c157ae6f45ebf8eb8c4926e23bd78b364e93cbc2612ec220db60ef6bd55e288a2eb5a454fea87fd348116057b052a15b5c6c69f0654d2
+DIST nextcloud-client-3.9.4.tar.gz 15768508 BLAKE2B 
7c06434538e9e95bed284ba07692d0d4d594639a145c2f3b67b8e81586fb98e1592eca54b9ee3cc638f8226ebb83e89e60a79238c76696fe9ca033209646eb13
 SHA512 
9f99278deb024ce105bae14d8dadc626b835486858e94f5483e9da3d06340a29e0941648cccfc30714c15ce25a6b77c4aa05a17fc213d7aa84803ffc13dca5a4

diff --git a/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild
new file mode 100644
index ..78bd99d7580a
--- /dev/null
+++ b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx xdg
+
+DESCRIPTION="Desktop Syncing Client for Nextcloud"
+HOMEPAGE="https://github.com/nextcloud/desktop;
+SRC_URI="
+   https://github.com/nextcloud/desktop/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz
+"
+S="${WORKDIR}/desktop-${PV/_/-}"
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc dolphin nautilus test webengine"
+RESTRICT="!test? ( test )"
+
+# slot op for qtqui as this package uses private API parts of qtqui
+# src/gui/generalsettings.cpp:#include 
+RDEPEND="
+   >=dev-db/sqlite-3.34:3
+   >=dev-libs/openssl-1.1.0:0=
+   dev-libs/qtkeychain:=[qt5(+)]
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5=
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtquickcontrols2:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwebsockets:5
+   dev-qt/qtwidgets:5
+   net-libs/libcloudproviders
+   kde-frameworks/karchive:5
+   sys-libs/zlib
+   dolphin? (
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/kio:5
+   )
+   nautilus? ( dev-python/nautilus-python )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+"
+DEPEND="
+   ${RDEPEND}
+   dev-qt/qtconcurrent:5
+   dev-qt/qtxml:5
+   || ( gnome-base/librsvg media-gfx/inkscape )
+   doc? (
+   dev-python/sphinx
+   dev-tex/latexmk
+   dev-texlive/texlive-latexextra
+   virtual/latex-base
+   )
+   test? (
+   dev-qt/qttest:5
+   dev-util/cmocka
+   )
+"
+BDEPEND="
+   dev-qt/linguist-tools:5
+   dolphin? ( kde-frameworks/extra-cmake-modules )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.6.6-no-redefine-fortify-source.patch
+)
+
+src_prepare() {
+   # Keep tests in ${T}
+   sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+   -DBUILD_UPDATER=OFF
+   $(cmake_use_find_package doc Sphinx)
+   $(cmake_use_find_package doc PdfLatex)
+   $(cmake_use_find_package webengine Qt5WebEngine)
+   $(cmake_use_find_package webengine Qt5WebEngineWidgets)
+   -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
+   -DBUILD_SHELL_INTEGRATION_NAUTILUS=$(usex nautilus)
+   -DBUILD_TESTING=$(usex test)
+   )
+
+   cmake_src_configure
+}
+

[gentoo-commits] repo/proj/guru:master commit in: sys-fs/mountpoint-s3-bin/

2023-09-14 Thread David Roman
commit: 0c830d8ebca188ab6d17e6b648f0533ab49f7e15
Author: Lucio Sauer  posteo  net>
AuthorDate: Thu Sep 14 01:12:10 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 01:12:10 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0c830d8e

sys-fs/mountpoint-s3-bin: update LICENSE

Signed-off-by: Lucio Sauer  posteo.net>

 sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild 
b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
index b25b7ecbb9..5d4ab49701 100644
--- a/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
+++ b/sys-fs/mountpoint-s3-bin/mountpoint-s3-bin-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,6 +10,8 @@ 
SRC_URI="https://s3.amazonaws.com/mountpoint-s3-release/${PV}/x86_64/mount-s3-${
 KEYWORDS="~amd64"
 
 LICENSE="Apache-2.0"
+# Dependent crate licenses
+LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT openssl Unicode-DFS-2016 ZLIB"
 SLOT="0"
 
 RDEPEND="sys-fs/fuse:0"



[gentoo-commits] repo/proj/guru:master commit in: x11-misc/i3status-rust/

2023-09-14 Thread David Roman
commit: 0749786532a6f7bc0e09fe159532a430ef9566cf
Author: Lucio Sauer  posteo  net>
AuthorDate: Tue Sep 12 20:32:18 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 20:33:10 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=07497865

x11-misc/i3status-rust: drop 0.32.1

Signed-off-by: Lucio Sauer  posteo.net>

 x11-misc/i3status-rust/Manifest|   3 -
 x11-misc/i3status-rust/i3status-rust-0.32.1.ebuild | 381 -
 2 files changed, 384 deletions(-)

diff --git a/x11-misc/i3status-rust/Manifest b/x11-misc/i3status-rust/Manifest
index 568c15d72b..44669514a6 100644
--- a/x11-misc/i3status-rust/Manifest
+++ b/x11-misc/i3status-rust/Manifest
@@ -49,7 +49,6 @@ DIST concurrent-queue-2.2.0.crate 19971 BLAKE2B 
352eac954937dcdaf85de274125910ab
 DIST core-foundation-0.9.3.crate 27059 BLAKE2B 
d94fec51b1b1055c285609f4bba45c5169a8cc775e251eac7fbf0da7ef894e1be9ca9f4236b82b67be0610bdf811366e0c6fd3cdb671a1e83c49717e2c5b2d03
 SHA512 
de07967c4f5e2d2e730b6f21984c228dad2cb2f55187f13074a2200f4ce9f906763ee818267a9c67ea560229db7363473b230670a6dbd224fc335f32ba03d072
 DIST core-foundation-sys-0.8.4.crate 17725 BLAKE2B 
8afe47838dc91c8848c0d6a96a604149e5f0762228dbc10c17b85e4e9cd2c3928712bd0b28e1071f5fd6fd76d4ef972cb86c6c929246fb6e8456933a8ac7
 SHA512 
15da472316d6decc213e4e5f08ecd22a108ebefe427b890741de4f9199614f19123e64329da76de5e8b4c9ff74ffc31738fd929acc1460fc757b4aa1fd3fdbb6
 DIST cpufeatures-0.2.9.crate 11895 BLAKE2B 
1e369466bce2ddf7be6bbe219997628223a3a114914e5ed44b44f3fb6d6a084fbb47cc50ecb109287b074e159c675ae89356cb68cd843b41b502ebe824febca0
 SHA512 
88235b7d7152f4578a321ebc4f83f69070206b2acaf0e6331b52e1a6633e96edc787f9a409ac2e2799106a259166a302150fa4ddc88352b7739d50ac6ca9038f
-DIST crossbeam-channel-0.5.8.crate 90455 BLAKE2B 
017132056f1b40e55fbc7a09b75509d72b0a6123a0e5ea5d6104fe822f73b3ccce670d711d3b84b5ce743dcab5f10445297a6701b71213b77c0d56e2c3fd7160
 SHA512 
47677d6fe63050c51393e4a0537a3c65d7055c9eae118ebe60c5d716b4f47f23c2b1947b1e1b66bfb34a57c4db3a44631d323e996dd545565fe4f58c25863ff4
 DIST crossbeam-utils-0.8.16.crate 42508 BLAKE2B 
dfaf9e7cade2cb5a2de90dc622e58a69c5b28fe9f69d3cbb945431683cf48fb409565190e3414a815563afb12631d990476919890fc482ce6b5792fdc25536a7
 SHA512 
4b8d599a8b93015eea2fd404cdf1526fbb94662fffc7c64d2f0659aeef349e4ad682f61b2b85d075c7f3fbbc4d8106cd7caf6e65dae117ba982f31262df3f831
 DIST crypto-common-0.1.6.crate 8760 BLAKE2B 
f2422bfb89c15d47a8f91c8f6695e05eb56990a922e3cdf3d426044736f9932324c0d899a151a6df4d6683e6a6b21659c657d3988734014c02cd854bb4b924e7
 SHA512 
471dbc43f517089d2cfe0868e29510c6ca579875b3bb5d013c70796db969b609b6c4bb35c9a07b9a2917012dc5708b717d48e317a20038adbe7e7039bf3ada6f
 DIST darling-0.10.2.crate 17620 BLAKE2B 
33d1fc3dc10fc971ea304efe5bf8084843241ca9c2a89e54e7c5227e53b1ad86749bd8693989ced6bf17805001909033aff92d600e7169a02dccf009fe60a88a
 SHA512 
b312a74e577cb2f889315ae42513c7f26597faff306a40281189be2101339661772016a5e197466bd85ef94c275e811adee1b7c0772458126677d1998ed6fb15
@@ -109,8 +108,6 @@ DIST httpdate-1.0.3.crate 10639 BLAKE2B 
ce0b401c69f76252639c10f6c2e4a823574a5856
 DIST humantime-2.1.0.crate 16749 BLAKE2B 
e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9
 SHA512 
3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c
 DIST hyper-0.14.27.crate 195700 BLAKE2B 
4c079a6f99b1da3816c08df3935b5c9c1a3acf878111f4afffe67cbe816975aae0bd49577fa7cdc1bd55ed78dd2328cb1b0cc09064e9bf6caadde91403159912
 SHA512 
580f2589dc1f938d2563d3fdfd1cb2f1b11278333ac54e813e4dbe50a0e63952546385f057b20eb123516b2f74e19b62a3ed0cd546fdf868f6a5770cd95643a2
 DIST hyper-tls-0.5.0.crate 13257 BLAKE2B 
50cbe4ca7c1862fd3fff192de070341dd32bfb9f108b516e1e261ec8da7c4f7972b7b66e3d45c1497733a913b0281bef706994270ec8bd03eba7368612127aa4
 SHA512 
45dc16cc9ce48706e0b3575dca35ba1b6b3084dda8c2cc489d126e1c4f0bb96a9b2baa860d09f68c5e0a48c2a69e3eaf62f4f0406fffc4efefcd79d26c82896e
-DIST i3status-rust-0.32.1-man.1 117500 BLAKE2B 
8dd63afb26b7fa2e30277997e488dbdc8c53217e1ab7006c7951302f4c71e3fa49cb4a14d016635d0217225a8812bfa206c20cdaa9ee5fe20b5a425feec74c5c
 SHA512 
92cd369fd7b016250b7e73c139d9d09912264d5a280a908e0d19623f70ad8c72633952d38ea779814240096412d111d196c8c73e3ccf56dc37e75a69e642ee48
-DIST i3status-rust-0.32.1.gh.tar.gz 413494 BLAKE2B 
9f8f7c36eca29cd3bf3e60a8a2d495bffa993a163961468186dd65e33bace5f838d603dcefe0e4a49eaf4a3b31ccfe0cad13c7b410d71b03c5fae8e6b6b6ad25
 SHA512 
eced8ac1525f83e193eb7329618a2858136d45340ea75007ffc454e9ce37750fcb6e3c2afc7e34fb0853c974d8ad66d1c163fd8bab6d7e681ce691a24e695a64
 DIST i3status-rust-0.32.2-man.1 118129 BLAKE2B 
6a36499b9836c42b792b62a99778a3c974f3d79638b7e961082472d6851a185eec7a64385d3f1ddc37f5adef508f040ca02988516d38482a75e56f33b3fa48c9
 SHA512 

[gentoo-commits] repo/proj/guru:master commit in: media-sound/spotify-adblock/

2023-09-14 Thread David Roman
commit: 858e80acfdeafbaef2d09713c91706d5f83d1fa9
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Thu Sep 14 07:49:26 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 07:49:34 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=858e80ac

media-sound/spotify-adblock: add 1.0.3

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

 media-sound/spotify-adblock/Manifest   | 22 +++
 .../spotify-adblock/spotify-adblock-1.0.3.ebuild   | 71 ++
 2 files changed, 93 insertions(+)

diff --git a/media-sound/spotify-adblock/Manifest 
b/media-sound/spotify-adblock/Manifest
index b6b46182c5..773b8e9465 100644
--- a/media-sound/spotify-adblock/Manifest
+++ b/media-sound/spotify-adblock/Manifest
@@ -1,15 +1,37 @@
 DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
+DIST aho-corasick-1.0.2.crate 167694 BLAKE2B 
fa5323cbe6cb73594dfa4c327c64676bc1e006dadc0b9def325974c83b9a769beba02d59a4657ec7a2d0cc511a7b7cc6f72cf57b8f9e639206d1c2bf13107a52
 SHA512 
5c75451f96fbbd670e6af0e1f54df2bdb57259dfe6898495ac46a5b2fc04f316a4698fd5cfd4ec31a94c298661937a8de08ce97cab3890fb3c015e4a2a67bb7b
+DIST equivalent-1.0.1.crate 6615 BLAKE2B 
302d78069d9df05e78b53f0488a9e4eb98fa2bc1e21893dc8a0acf2234347ba7c4df4b9d6b380ae77d8ffb1074b9c790460fe2dae47318aa1c4fe4208244540a
 SHA512 
b2bc60e804c1b02c461dcefcfd60fc37145af710d183ebe65f9a4d63f2b2072d23193f98dc550a9213c7fdc6a2a837af23b04a89294ebbb681a4aaf5d5031140
+DIST hashbrown-0.14.0.crate 116103 BLAKE2B 
24bab03e8a8cb7623b92282c83bf8acaf0752c696ee1c010249e3ebb3646e7549d8d6d798b02c9d5b621afbebba7320f8a859d9a1af1523dbd46377b857dbb5f
 SHA512 
f0fbdf81517f59a0b67f792a4097f1131d346b2b4cbda93590749cef7f9f1c9029e0e182f58c23b74d3028f7502c30b9593c1eb4da37f95388d74b14582b8959
+DIST indexmap-2.0.0.crate 64038 BLAKE2B 
e7a1b2bbd790f1446f77262b5b0799c2a816a01295a9a4db66f10e6c0502f8970982fb808581472e840cc34dc70e7938b89408799ed0d91aa50d3dd0b4807995
 SHA512 
59bc19653436389e1408e21b0933e5ca6f9fe228f0f5fbe9a7e4fb461b9712ba82983cbf22c0581eaf7913298b9ef5842702946152b493c1dc651381d6bce1a3
 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 
25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23
 SHA512 
e124c0521ec7c950f3c4a066821918da7a9c6e75d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8
 DIST libc-0.2.119.crate 575749 BLAKE2B 
5fa2bf66a4d642e1380335fde0fd190d5168dca58376379caeb52171a3382e5342c727eb4d92f1e27adde58a24d00352896a73c45309d947f56787a99f2753f8
 SHA512 
a43f8d1cac7a0d8c1bf6f2125695c03d91243498d2dea19a3a674ccb2c64fd00bac4040c42130a1a096b2148451f62e1292c5c71f424f51f888d6a37c7db0bcd
+DIST libc-0.2.147.crate 686772 BLAKE2B 
ab2f0c65d071d46b8b88149add1c8429237ef6d9e0563d56ee1adbf23e6147dbb57fb68fbd02498f8ec75327693237a47e5e5259615ce8b0d5ed7a03bbf4fffb
 SHA512 
bfb3c230b59d623b98726f92b7c3f897b47ba3d22fe9834c15f5b4c1b662289aba35a0ae3acfc704ad74696db8c691ee007b9cc6fa03ae65a18eb6bedc81931e
 DIST memchr-2.4.1.crate 64977 BLAKE2B 
31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5
 SHA512 
d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11
+DIST memchr-2.5.0.crate 65812 BLAKE2B 
57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab
 SHA512 
444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST proc-macro2-1.0.36.crate 41411 BLAKE2B 
d7d99aed41080b65680736d92dd027e21c9e9e0b03601915c000f5dea8f2b2d9126b116af32f2fb04b4fa407775f0131423055d0b62fdbfe87fa4ba7ec098beb
 SHA512 
f31b0f2356af2746321c4f808ac9af87d21a5657c103ed6bc1383855e40caf49246cc8ec1edff58eacf193424abfc2163148b7298e527714e65e602f14b2e50a
+DIST proc-macro2-1.0.66.crate 43575 BLAKE2B 
9eb3e816b00fcf625c280ba14ad269f5893d0523473a24de07c21945f6f932fbd08efb3c339b35d903245510e3f065e1478439b024a325f2bb9f97bc7bcbb18d
 SHA512 
85f5a762f9411142e5ac28144bd380f07f0633ed2e44d8a2545be9fb8f42abaca6b5d45631b4be83b8e8b9beca7438bc52f25615c3a410a3a1249474b1aca407
 DIST quote-1.0.15.crate 27281 BLAKE2B 
5612633415d30e26e646a968ab7a64ecdc978b02efdbd40dfecf5afa489c21bbc6a9c93ecce2a2b45519db6be3384bb372cfc9f597846e8399f7c2b57e8b34e1
 SHA512 
76403bfac4e9a018b29ddf8f911135206d4fdc266db38a95cc92f6159a8b436d39d64c4ae6c3fd16ad83117270ed329b6a151d589cab46c75443c57b533dfaeb
+DIST quote-1.0.31.crate 27881 BLAKE2B 
47c8ac1051f7fa03d002420ade3cb18bf2aedc6ba922d13b117c016ee89c3326bea5cad32ec2f0e5ac1afcce68982f20b3f973914c205e6d6f426487989c6ec4
 

[gentoo-commits] repo/proj/guru:master commit in: gui-apps/1password/

2023-09-14 Thread David Roman
commit: cd0889b3182980f50cc41b22d31abc3eb462c763
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 05:44:38 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 05:44:38 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cd0889b3

gui-apps/1password: add QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/904454
Signed-off-by: Vitaly Zdanevich  ya.ru>

 gui-apps/1password/1password-8.10.7.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gui-apps/1password/1password-8.10.7.ebuild 
b/gui-apps/1password/1password-8.10.7.ebuild
index ebdb98bc25..b8f25582ac 100644
--- a/gui-apps/1password/1password-8.10.7.ebuild
+++ b/gui-apps/1password/1password-8.10.7.ebuild
@@ -33,6 +33,8 @@ src_unpack() {
rpm_unpack ${P}.x86_64.rpm
 }
 
+QA_FLAGS_IGNORED="/usr/bin/${PN}"
+
 src_install() {
cp -ar "${S}/opt"  "${D}" || die "Install failed!"
cp -ar "${S}/usr"  "${D}" || die "Install failed!"



[gentoo-commits] repo/proj/guru:master commit in: app-admin/ananicy-cpp/

2023-09-14 Thread David Roman
commit: ff46678681a1e28a9fefda21663d9a057acf252a
Author: Remigiusz Micielski  purelymail  com>
AuthorDate: Wed Sep 13 05:06:55 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 05:08:52 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ff466786

app-admin/ananicy-cpp: add github upstream metadata

Signed-off-by: Remigiusz Micielski  purelymail.com>

 app-admin/ananicy-cpp/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-admin/ananicy-cpp/metadata.xml 
b/app-admin/ananicy-cpp/metadata.xml
index 570a8bed40..3dc230ed89 100644
--- a/app-admin/ananicy-cpp/metadata.xml
+++ b/app-admin/ananicy-cpp/metadata.xml
@@ -8,5 +8,6 @@


https://gitlab.com/ananicy-cpp/ananicy-cpp/-/issues
ananicy-cpp/ananicy-cpp
+   kuche1/minq-ananicy

 



[gentoo-commits] repo/proj/guru:master commit in: x11-misc/i3status-rust/

2023-09-14 Thread David Roman
commit: fcf4f02ad7d1736d38f3c0c5239256928d5eb1e7
Author: Lucio Sauer  posteo  net>
AuthorDate: Tue Sep 12 20:32:02 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 20:33:09 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fcf4f02a

x11-misc/i3status-rust: add 0.32.2

Signed-off-by: Lucio Sauer  posteo.net>

 x11-misc/i3status-rust/Manifest|   2 +
 x11-misc/i3status-rust/i3status-rust-0.32.2.ebuild | 380 +
 2 files changed, 382 insertions(+)

diff --git a/x11-misc/i3status-rust/Manifest b/x11-misc/i3status-rust/Manifest
index a9aff42c87..568c15d72b 100644
--- a/x11-misc/i3status-rust/Manifest
+++ b/x11-misc/i3status-rust/Manifest
@@ -111,6 +111,8 @@ DIST hyper-0.14.27.crate 195700 BLAKE2B 
4c079a6f99b1da3816c08df3935b5c9c1a3acf87
 DIST hyper-tls-0.5.0.crate 13257 BLAKE2B 
50cbe4ca7c1862fd3fff192de070341dd32bfb9f108b516e1e261ec8da7c4f7972b7b66e3d45c1497733a913b0281bef706994270ec8bd03eba7368612127aa4
 SHA512 
45dc16cc9ce48706e0b3575dca35ba1b6b3084dda8c2cc489d126e1c4f0bb96a9b2baa860d09f68c5e0a48c2a69e3eaf62f4f0406fffc4efefcd79d26c82896e
 DIST i3status-rust-0.32.1-man.1 117500 BLAKE2B 
8dd63afb26b7fa2e30277997e488dbdc8c53217e1ab7006c7951302f4c71e3fa49cb4a14d016635d0217225a8812bfa206c20cdaa9ee5fe20b5a425feec74c5c
 SHA512 
92cd369fd7b016250b7e73c139d9d09912264d5a280a908e0d19623f70ad8c72633952d38ea779814240096412d111d196c8c73e3ccf56dc37e75a69e642ee48
 DIST i3status-rust-0.32.1.gh.tar.gz 413494 BLAKE2B 
9f8f7c36eca29cd3bf3e60a8a2d495bffa993a163961468186dd65e33bace5f838d603dcefe0e4a49eaf4a3b31ccfe0cad13c7b410d71b03c5fae8e6b6b6ad25
 SHA512 
eced8ac1525f83e193eb7329618a2858136d45340ea75007ffc454e9ce37750fcb6e3c2afc7e34fb0853c974d8ad66d1c163fd8bab6d7e681ce691a24e695a64
+DIST i3status-rust-0.32.2-man.1 118129 BLAKE2B 
6a36499b9836c42b792b62a99778a3c974f3d79638b7e961082472d6851a185eec7a64385d3f1ddc37f5adef508f040ca02988516d38482a75e56f33b3fa48c9
 SHA512 
8748ec0a1a367881c2681551160a6a545016cc65e5fe9c05936f2e199bba917319f34d770a58774b13aeda92ac8fc0351d82564254ea5392458048decb73
+DIST i3status-rust-0.32.2.gh.tar.gz 414895 BLAKE2B 
b0bbb197d395729e47535b0afbfefe0c79c7ea17e5231a71b0a9297e6ff3f6597f754c706f7512f43ed008453b35512c8ad98734765213c978db0096e7ada72d
 SHA512 
02b393cb5e744217e71c59dacdbfa1df940587b52a498da24d3f7bf9c40345b864c13a55b062473058cac9d7fd20869eaebf0ded7a95e30ae70a8bf90b799c61
 DIST iana-time-zone-0.1.57.crate 19785 BLAKE2B 
2304a63e4d3a477125ed07fccd5a84832f775c4a0fbd60a995e6f1850aaf3f5047c6f70975c9f6334f96def12770d470677e1f536e9817f8ab1df8a312622cfe
 SHA512 
79bc0fe559dce022cd3c15ffc3b6f870c14a40de6d5a61b4a5a6ad28fe7efce82a16ac5102073a3510f3ba683843475f7fb8a4029bbafbc1cc25e48b98ce2fe8
 DIST iana-time-zone-haiku-0.1.2.crate 7185 BLAKE2B 
37fa14b589ff092377b9271c414d4e584c5a531f13f70ac48df26df3cc03353db635b4630ba192fc65b800cce11823e91b91f03dfad85e4bed55aa18398156cb
 SHA512 
448224ecafa935472ff6f0aab7cb71f9dabdbe71569c4b94fcc65baea925ef48841577687c9a31106a1826c2105e8dd73c748e9d27fd002648e5b0ce838af6b2
 DIST ident_case-1.0.1.crate 3492 BLAKE2B 
bc79ebeefbb7e3ed1139e3f41d8d20fb175786bb123bdb9c1a92ea70effb4a0e5e798f24b068cd66a1bf20d53eea4bf24de495b5568c2d649ea804389a1327ab
 SHA512 
81003a43f18da5997d644319274502e2066af9f9fd1400afda7cf2986b3ae0b7355b932302723cd3bda2d46b264340434d9279dea58425bad13785698d5808a9

diff --git a/x11-misc/i3status-rust/i3status-rust-0.32.2.ebuild 
b/x11-misc/i3status-rust/i3status-rust-0.32.2.ebuild
new file mode 100644
index 00..0b538447fb
--- /dev/null
+++ b/x11-misc/i3status-rust/i3status-rust-0.32.2.ebuild
@@ -0,0 +1,380 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Autogenerated by pycargoebuild 0.10
+
+EAPI=8
+
+CRATES="
+   addr2line@0.21.0
+   adler@1.0.2
+   aho-corasick@1.0.5
+   android-tzdata@0.1.1
+   android_system_properties@0.1.5
+   anstream@0.5.0
+   anstyle-parse@0.2.1
+   anstyle-query@1.0.0
+   anstyle-wincon@2.1.0
+   anstyle@1.0.2
+   anyhow@1.0.75
+   async-broadcast@0.5.1
+   async-channel@1.9.0
+   async-io@1.13.0
+   async-lock@2.8.0
+   async-once-cell@0.5.3
+   async-pidfd@0.1.4
+   async-process@1.7.0
+   async-recursion@1.0.4
+   async-task@4.4.0
+   async-trait@0.1.73
+   atomic-waker@1.1.1
+   autocfg@1.1.0
+   backon@0.4.1
+   backtrace@0.3.69
+   base64@0.13.1
+   base64@0.21.3
+   bitflags@1.3.2
+   bitflags@2.4.0
+   block-buffer@0.10.4
+   blocking@1.3.1
+   bumpalo@3.13.0
+   byteorder@1.4.3
+   bytes@1.4.0
+   calibright@0.1.4
+   cc@1.0.83
+   cfg-if@1.0.0
+   charset@0.1.3
+   chrono-tz-build@0.2.0
+   chrono-tz@0.8.3
+   chrono@0.4.28
+   clap@4.4.1
+   clap_builder@4.4.1
+   clap_derive@4.4.0
+   clap_lex@0.5.1
+   clap_mangen@0.2.13
+   colorchoice@1.0.0
+   

[gentoo-commits] repo/proj/guru:master commit in: app-misc/tty-share-bin/

2023-09-14 Thread David Roman
commit: 31efa3bb173b36fa4cbd704c657d2662ed171306
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 05:48:07 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 05:48:07 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31efa3bb

app-misc/tty-share-bin: add QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/908569
Signed-off-by: Vitaly Zdanevich  ya.ru>

 app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild 
b/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
index 737bd5ea50..cd41f37cfa 100644
--- a/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
+++ b/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
@@ -13,6 +13,8 @@ KEYWORDS="~amd64"
 LICENSE="MIT"
 SLOT="0"
 
+QA_FLAGS_IGNORED="usr/bin/${PN}"
+
 src_install() {
newbin "${DISTDIR}/tty-share_linux-amd64" tty-share-bin
 }



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/1password/

2023-09-14 Thread David Roman
commit: 56505e8f177941cb1edbed6f2811811db9ce2b0d
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 06:13:01 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 06:13:01 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=56505e8f

gui-apps/1password: add QA_SONAME

Closes: https://bugs.gentoo.org/904336
Signed-off-by: Vitaly Zdanevich  ya.ru>

 gui-apps/1password/1password-8.10.7.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/gui-apps/1password/1password-8.10.7.ebuild 
b/gui-apps/1password/1password-8.10.7.ebuild
index b8f25582ac..d2fa6c2e73 100644
--- a/gui-apps/1password/1password-8.10.7.ebuild
+++ b/gui-apps/1password/1password-8.10.7.ebuild
@@ -35,6 +35,27 @@ src_unpack() {
 
 QA_FLAGS_IGNORED="/usr/bin/${PN}"
 
+QA_SONAME="
+/usr/lib64/libXcomposite.so.1
+/usr/lib64/libXdamage.so.1
+/usr/lib64/libXfixes.so.3
+/usr/lib64/libXrandr.so.2
+/usr/lib64/libasound.so.2
+/usr/lib64/libatk-1.0.so.0
+/usr/lib64/libatk-bridge-2.0.so.0
+/usr/lib64/libatspi.so.0
+/usr/lib64/libcups.so.2
+/usr/lib64/libdrm.so.2
+/usr/lib64/libgbm.so.1
+/usr/lib64/libgtk-3.so.0
+/usr/lib64/libnspr4.so
+/usr/lib64/libnss3.so
+/usr/lib64/libnssutil3.so
+/usr/lib64/libpango-1.0.so.0
+/usr/lib64/libsmime3.so
+/usr/lib64/libxkbcommon.so.0
+"
+
 src_install() {
cp -ar "${S}/opt"  "${D}" || die "Install failed!"
cp -ar "${S}/usr"  "${D}" || die "Install failed!"



[gentoo-commits] repo/proj/guru:master commit in: media-video/lossless-cut/files/, media-video/lossless-cut/

2023-09-14 Thread David Roman
commit: ba5a14e61f5b8ae53b58772573d5d7e34674e39f
Author: Lucio Sauer  posteo  net>
AuthorDate: Wed Sep 13 23:12:27 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 23:12:27 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ba5a14e6

media-video/lossless-cut: add 3.56.0

Signed-off-by: Lucio Sauer  posteo.net>

 media-video/lossless-cut/Manifest  |   1 +
 .../files/lossless-cut-3.56.0-misc.tar.xz  | Bin 0 -> 2748 bytes
 .../lossless-cut/lossless-cut-3.56.0.ebuild|  45 +
 3 files changed, 46 insertions(+)

diff --git a/media-video/lossless-cut/Manifest 
b/media-video/lossless-cut/Manifest
index 05a117d022..c01d21fc5e 100644
--- a/media-video/lossless-cut/Manifest
+++ b/media-video/lossless-cut/Manifest
@@ -1,2 +1,3 @@
 DIST LosslessCut-linux-x86_64.AppImage 160224247 BLAKE2B 
3c0501e408c16e1490d4d060fe8e695cc8cd29c81b894126645036fa09f58c8d3c0ae9e064e423c9af0acb1723b3f6121d2037e22b62649b102ad09564a3f9dc
 SHA512 
bb5015de0d5e96ca3bf5a09fc5e105c457e752a258ff1f5b10576935679cf73912887c918dcb410f273050dd1621b109f4cd767c430c159ef7545e44765a05f6
 DIST lossless-cut-3.54.0.AppImage 160224247 BLAKE2B 
3c0501e408c16e1490d4d060fe8e695cc8cd29c81b894126645036fa09f58c8d3c0ae9e064e423c9af0acb1723b3f6121d2037e22b62649b102ad09564a3f9dc
 SHA512 
bb5015de0d5e96ca3bf5a09fc5e105c457e752a258ff1f5b10576935679cf73912887c918dcb410f273050dd1621b109f4cd767c430c159ef7545e44765a05f6
+DIST lossless-cut-3.56.0.AppImage 157606683 BLAKE2B 
426d94f6b5b8eafc8a6d92598332c6926f4282af2a414f5c954d08942aae31649c96584580e42efbddaed3747adc996769f54db5b7c803539383764e1609fd43
 SHA512 
dd31fb76a0d152d5b76e2ee8c6d96c35c3b9705dd8de2c9fa2c506456077586079ca90ca4aec804eecbace07995bcd7e830c36975c8252279c447d63be7e12a4

diff --git a/media-video/lossless-cut/files/lossless-cut-3.56.0-misc.tar.xz 
b/media-video/lossless-cut/files/lossless-cut-3.56.0-misc.tar.xz
new file mode 100644
index 00..92391ab4e3
Binary files /dev/null and 
b/media-video/lossless-cut/files/lossless-cut-3.56.0-misc.tar.xz differ

diff --git a/media-video/lossless-cut/lossless-cut-3.56.0.ebuild 
b/media-video/lossless-cut/lossless-cut-3.56.0.ebuild
new file mode 100644
index 00..f1f76f06e7
--- /dev/null
+++ b/media-video/lossless-cut/lossless-cut-3.56.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop xdg
+
+DESCRIPTION="Lossless video/audio editing: export media without reencoding, 
powered by ffmpeg"
+HOMEPAGE="https://mifi.no/losslesscut/
+https://github.com/mifi/lossless-cut;
+
+SRC_URI="https://github.com/mifi/lossless-cut/releases/download/v${PV}/LosslessCut-linux-x86_64.AppImage
+   -> ${P}.AppImage
+"
+KEYWORDS="~amd64"
+
+LICENSE="GPL-2"
+SLOT="0"
+RESTRICT="strip"
+
+RDEPEND="sys-fs/fuse:0
+sys-libs/zlib:=
+"
+
+QA_PREBUILT="usr/bin/losslesscut-bin"
+
+src_unpack() {
+   unpack "${FILESDIR}"/${P}-misc.tar.xz
+}
+
+src_prepare() {
+   default
+   # Fix XDG desktop entry Exec
+   sed -i -e 's,/app/bin/run.sh,losslesscut-bin,' \
+   no.mifi.losslesscut.desktop || die
+}
+
+src_install() {
+   newbin "${DISTDIR}"/${P}.AppImage losslesscut-bin
+   domenu no.mifi.losslesscut.desktop
+   doicon no.mifi.losslesscut.svg
+
+   insinto /usr/share/metainfo
+   doins no.mifi.losslesscut.appdata.xml
+}



[gentoo-commits] repo/proj/guru:master commit in: app-misc/tty-share-bin/

2023-09-14 Thread David Roman
commit: 0cd83fa3830797a1baeaa0fb2739847699d1b566
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 05:49:07 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 05:49:07 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cd83fa3

app-misc/tty-share-bin: hardcode to ${PN}

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

 app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild 
b/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
index cd41f37cfa..5916ce6c97 100644
--- a/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
+++ b/app-misc/tty-share-bin/tty-share-bin-2.4.0.ebuild
@@ -16,5 +16,5 @@ SLOT="0"
 QA_FLAGS_IGNORED="usr/bin/${PN}"
 
 src_install() {
-   newbin "${DISTDIR}/tty-share_linux-amd64" tty-share-bin
+   newbin "${DISTDIR}/tty-share_linux-amd64" ${PN}
 }



[gentoo-commits] repo/proj/guru:master commit in: sys-apps/corefreq/

2023-09-14 Thread David Roman
commit: 53e4e406fca4bdc680fe78edbe5165d6e6bef757
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 05:53:11 2023 +
Commit: David Roman  gmail  com>
CommitDate: Thu Sep 14 05:53:11 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53e4e406

sys-apps/corefreq: add QA_FLAGS_IGNORED

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

Closes: https://bugs.gentoo.org/show_bug.cgi?id=907874
Signed-off-by: Vitaly Zdanevich  ya.ru>

 sys-apps/corefreq/corefreq-1.96.3.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-apps/corefreq/corefreq-1.96.3.ebuild 
b/sys-apps/corefreq/corefreq-1.96.3.ebuild
index 7ad0cf0d0e..85824cd3bd 100644
--- a/sys-apps/corefreq/corefreq-1.96.3.ebuild
+++ b/sys-apps/corefreq/corefreq-1.96.3.ebuild
@@ -39,6 +39,8 @@ pkg_setup() {
linux-mod_pkg_setup
 }
 
+QA_FLAGS_IGNORED="usr/bin/${PN}-cli"
+
 src_install() {
linux-mod_src_install
dobin corefreqd corefreq-cli



[gentoo-commits] repo/proj/guru:master commit in: media-video/lossless-cut/, media-video/lossless-cut/files/

2023-09-14 Thread David Roman
commit: 4db856f590161722512b22bee6a3ed5d0d1e8965
Author: Lucio Sauer  posteo  net>
AuthorDate: Wed Sep 13 22:59:29 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 23:04:00 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4db856f5

media-video/lossless-cut: revbump 3.54.0

- Add SRC_URL versioning
- Add missing sys-libs/zlib runtime dependency
- Specify QA_PREBUILT regex
- Install metadata
  - XDG desktop file
  - AppStream metadata
  - Icon

Closes: https://bugs.gentoo.org/914036
Signed-off-by: Lucio Sauer  posteo.net>

 media-video/lossless-cut/Manifest  |   1 +
 .../files/lossless-cut-3.54.0-misc.tar.xz  | Bin 0 -> 2744 bytes
 .../lossless-cut/lossless-cut-3.54.0-r1.ebuild |  45 +
 3 files changed, 46 insertions(+)

diff --git a/media-video/lossless-cut/Manifest 
b/media-video/lossless-cut/Manifest
index 20849ae061..05a117d022 100644
--- a/media-video/lossless-cut/Manifest
+++ b/media-video/lossless-cut/Manifest
@@ -1 +1,2 @@
 DIST LosslessCut-linux-x86_64.AppImage 160224247 BLAKE2B 
3c0501e408c16e1490d4d060fe8e695cc8cd29c81b894126645036fa09f58c8d3c0ae9e064e423c9af0acb1723b3f6121d2037e22b62649b102ad09564a3f9dc
 SHA512 
bb5015de0d5e96ca3bf5a09fc5e105c457e752a258ff1f5b10576935679cf73912887c918dcb410f273050dd1621b109f4cd767c430c159ef7545e44765a05f6
+DIST lossless-cut-3.54.0.AppImage 160224247 BLAKE2B 
3c0501e408c16e1490d4d060fe8e695cc8cd29c81b894126645036fa09f58c8d3c0ae9e064e423c9af0acb1723b3f6121d2037e22b62649b102ad09564a3f9dc
 SHA512 
bb5015de0d5e96ca3bf5a09fc5e105c457e752a258ff1f5b10576935679cf73912887c918dcb410f273050dd1621b109f4cd767c430c159ef7545e44765a05f6

diff --git a/media-video/lossless-cut/files/lossless-cut-3.54.0-misc.tar.xz 
b/media-video/lossless-cut/files/lossless-cut-3.54.0-misc.tar.xz
new file mode 100644
index 00..700ff5b7d4
Binary files /dev/null and 
b/media-video/lossless-cut/files/lossless-cut-3.54.0-misc.tar.xz differ

diff --git a/media-video/lossless-cut/lossless-cut-3.54.0-r1.ebuild 
b/media-video/lossless-cut/lossless-cut-3.54.0-r1.ebuild
new file mode 100644
index 00..f1f76f06e7
--- /dev/null
+++ b/media-video/lossless-cut/lossless-cut-3.54.0-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop xdg
+
+DESCRIPTION="Lossless video/audio editing: export media without reencoding, 
powered by ffmpeg"
+HOMEPAGE="https://mifi.no/losslesscut/
+https://github.com/mifi/lossless-cut;
+
+SRC_URI="https://github.com/mifi/lossless-cut/releases/download/v${PV}/LosslessCut-linux-x86_64.AppImage
+   -> ${P}.AppImage
+"
+KEYWORDS="~amd64"
+
+LICENSE="GPL-2"
+SLOT="0"
+RESTRICT="strip"
+
+RDEPEND="sys-fs/fuse:0
+sys-libs/zlib:=
+"
+
+QA_PREBUILT="usr/bin/losslesscut-bin"
+
+src_unpack() {
+   unpack "${FILESDIR}"/${P}-misc.tar.xz
+}
+
+src_prepare() {
+   default
+   # Fix XDG desktop entry Exec
+   sed -i -e 's,/app/bin/run.sh,losslesscut-bin,' \
+   no.mifi.losslesscut.desktop || die
+}
+
+src_install() {
+   newbin "${DISTDIR}"/${P}.AppImage losslesscut-bin
+   domenu no.mifi.losslesscut.desktop
+   doicon no.mifi.losslesscut.svg
+
+   insinto /usr/share/metainfo
+   doins no.mifi.losslesscut.appdata.xml
+}



[gentoo-commits] repo/proj/guru:master commit in: sys-apps/pnpm-bin/

2023-09-14 Thread David Roman
commit: aa44a50352ff3e244ea2d7cacafa8a4cabe617e5
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Wed Sep 13 16:29:02 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 16:29:02 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa44a503

sys-apps/pnpm-bin: new package, add 8.7.5

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

 sys-apps/pnpm-bin/Manifest  |  1 +
 sys-apps/pnpm-bin/metadata.xml  | 37 +
 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 21 +++
 3 files changed, 59 insertions(+)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
new file mode 100644
index 00..76eb5584c5
--- /dev/null
+++ b/sys-apps/pnpm-bin/Manifest
@@ -0,0 +1 @@
+DIST pnpm-linux-x64 57620299 BLAKE2B 
4f9b27871be08b2d1e656ce2388af8117401a30c5bc9f963d5fb6284989e2513540e08de4b2196b597718904f0804833053e5d004fc413186e52c573c6bb6eae
 SHA512 
5ecec3b3c3f2400ab66da81f943f8e97d6f6d006c1a213d9fc876c31f6108e1bbf900ac4f1f2515f41f65b87461e1be52d2dca06f3cadf17a5482c5ae8ad4713

diff --git a/sys-apps/pnpm-bin/metadata.xml b/sys-apps/pnpm-bin/metadata.xml
new file mode 100644
index 00..7d16a80ee7
--- /dev/null
+++ b/sys-apps/pnpm-bin/metadata.xml
@@ -0,0 +1,37 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   Vitaly Zdanevich
+   zdanevich.vit...@ya.ru
+   
+   
+   * Fast. Up to 2x faster than the alternatives.
+
+   * Efficient. Files inside node_modules are linked from a single 
content-addressable storage
+
+   * Great for monorepos.
+
+   * Strict. A package can access only dependencies that are 
specified in its package.json.
+
+   * Deterministic. Has a lockfile called pnpm-lock.yaml.
+
+   * Works as a Node.js version manager.
+
+   * Battle-tested. Used in production by teams of all sizes since 
2016.
+
+To quote the Rush team "Microsoft uses pnpm in Rush repos with hundreds of 
projects and hundreds of PRs per day, and we’ve found it to be very fast and 
reliable".
+
+pnpm uses a content-addressable filesystem to store all files from all module 
directories on a disk. When using npm, if you have 100 projects using lodash, 
you will have 100 copies of lodash on disk. With pnpm, lodash will be stored in 
a content-addressable storage, so:
+
+* If you depend on different versions of lodash, only the files that differ 
are added to the store. If lodash has 100 files, and a new version has a change 
only in one of those files, pnpm update will only add 1 new file to the storage.
+   
+* All the files are saved in a single place on the disk. When packages are 
installed, their files are linked from that single place consuming no 
additional disk space. Linking is performed using either hard-links or reflinks 
(copy-on-write).
+
+As a result, you save gigabytes of space on your disk and you have a lot 
faster installations!
+   
+   
+   pnpm/pnpm
+   https://github.com/pnpm/pnpm/issues
+   
+

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild 
b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
new file mode 100644
index 00..67a0d55f69
--- /dev/null
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fast, disk space efficient package manager, alternative to npm 
and yarn"
+HOMEPAGE="https://pnpm.io;
+
+SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64;
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+
+RESTRICT="strip"
+
+S="${WORKDIR}"
+
+src_install() {
+   newbin "${DISTDIR}/pnpm-linux-x64" ${PN}
+}



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/lemurs/

2023-09-14 Thread David Roman
commit: 211c116fa68caf140df10fbae290eddfe5835cfc
Author: Remigiusz Micielski  purelymail  com>
AuthorDate: Wed Sep 13 08:32:36 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:32:36 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=211c116f

gui-apps/lemurs: fix shutdown and reboot on non-systemd systems

Signed-off-by: Remigiusz Micielski  purelymail.com>

 gui-apps/lemurs/lemurs-0.3.1-r1.ebuild | 145 +
 1 file changed, 145 insertions(+)

diff --git a/gui-apps/lemurs/lemurs-0.3.1-r1.ebuild 
b/gui-apps/lemurs/lemurs-0.3.1-r1.ebuild
new file mode 100644
index 00..d659cf07ba
--- /dev/null
+++ b/gui-apps/lemurs/lemurs-0.3.1-r1.ebuild
@@ -0,0 +1,145 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES="
+   autocfg@1.1.0
+   bitflags@1.3.2
+   cassowary@0.3.0
+   cc@1.0.79
+   cfg-if@1.0.0
+   crossterm@0.20.0
+   crossterm@0.22.1
+   crossterm_winapi@0.8.0
+   crossterm_winapi@0.9.0
+   env_logger@0.9.3
+   getrandom@0.2.8
+   instant@0.1.12
+   libc@0.1.12
+   libc@0.2.139
+   lock_api@0.4.9
+   log@0.4.17
+   memoffset@0.6.5
+   mio@0.7.14
+   miow@0.3.7
+   nix@0.23.2
+   ntapi@0.3.7
+   numtoa@0.1.0
+   pam@0.7.0
+   pam-sys@0.5.6
+   parking_lot@0.11.2
+   parking_lot_core@0.8.6
+   pgs-files@0.0.7
+   ppv-lite86@0.2.17
+   proc-macro2@1.0.51
+   quote@1.0.23
+   rand@0.8.5
+   rand_chacha@0.3.1
+   rand_core@0.6.4
+   redox_syscall@0.2.16
+   redox_termios@0.1.2
+   scopeguard@1.1.0
+   serde@1.0.152
+   serde_derive@1.0.152
+   signal-hook@0.3.15
+   signal-hook-mio@0.2.3
+   signal-hook-registry@1.4.1
+   smallvec@1.10.0
+   syn@1.0.109
+   termion@1.5.6
+   toml@0.5.11
+   tui@0.16.0
+   unicode-ident@1.0.6
+   unicode-segmentation@1.10.1
+   unicode-width@0.1.10
+   users@0.8.1
+   users@0.11.0
+   wasi@0.11.0+wasi-snapshot-preview1
+   winapi@0.3.9
+   winapi-i686-pc-windows-gnu@0.4.0
+   winapi-x86_64-pc-windows-gnu@0.4.0
+"
+
+inherit cargo pam systemd
+
+DESCRIPTION="A TUI Display/Login Manager"
+HOMEPAGE="https://github.com/coastalwhite/lemurs;
+SRC_URI="https://github.com/coastalwhite/lemurs/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz \
+${CARGO_CRATE_URIS}"
+
+LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="systemd"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   sys-libs/pam
+   systemd? ( sys-apps/systemd:= )
+   !systemd? ( sys-apps/kbd )
+"
+BDEPEND=""
+
+QA_FLAGS_IGNORED="usr/bin/lemurs"
+
+src_prepare() {
+   eapply_user
+   # Run lemurs on tty7 so it doesn't conflict with agetty
+   # And replace systemd's reboot and shutdown commands
+   if ! use systemd ; then
+   sed -i 's/tty = 2/tty = 7/' "${S}"/extra/config.toml || die 
"Sed on config.toml failed"
+
+   sed -i 's/shutdown_cmd = "systemctl poweroff -l"/shutdown_cmd = 
"poweroff"/' \
+   "${S}"/extra/config.toml || die "Sed on config.toml failed"
+
+   sed -i 's/reboot_cmd = "systemctl reboot -l"/reboot_cmd = 
"reboot"/' \
+   "${S}"/extra/config.toml || die "Sed on config.toml failed"
+   fi
+}
+
+src_install() {
+   dodir /etc/lemurs
+   keepdir /etc/lemurs/{wayland,wms}
+
+   exeinto /etc/lemurs
+   doexe "${S}"/extra/xsetup.sh
+
+   insinto /etc/lemurs
+   doins "${S}"/extra/config.toml
+
+   dodoc "${S}"/README.md
+
+   # Lemur's default PAM doesn't make elogind do its job
+   # i.e. doesn't make /run/user/*
+   newpamd "${FILESDIR}"/lemurs.pam lemurs
+
+   newinitd "${FILESDIR}"/lemurs.initd lemurs
+   systemd_dounit "${S}"/extra/lemurs.service
+
+   dobin target/$(usex debug debug release)/lemurs
+}
+
+pkg_postinst() {
+   elog "Before starting lemurs you have to configure all your WMs/DEs 
manually,"
+   elog "see: https://github.com/coastalwhite/lemurs#usage;
+   elog "and disable your previous display manager."
+   elog
+   if use systemd ; then
+   elog "To start lemurs:"
+   elog "  systemctl start lemurs"
+   elog "To boot it with the system:"
+   elog "  systemctl enable lemurs"
+   ewarn "This package has not yet been tested on a systemd 
system,"
+   ewarn "so it may not function properly."
+   ewarn "If possible, please email the package maintainer to 
confirm that it works (or not):"
+   ewarn
+   ewarn "Remigiusz Micielski "
+   ewarn
+   else
+   elog "To start lemurs:"
+   elog "  

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

2023-09-14 Thread David Roman
commit: a568de6a81baa5c47ac419647d3149518700ddca
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Wed Sep 13 08:47:52 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:54:39 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a568de6a

profiles: mask games-rpg/airshipper

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index bbd50ee3dd..0f96e978e5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -14,6 +14,11 @@
 
 # New entries go on top.
 
+# Nicola Smaniotto  (2023-09-13)
+# Upstream is using unstable compiler features, needs dev-lang/rust[nightly].
+# Removal in 30 days if no one else wants to maintain it.
+games-rpg/airshipper
+
 # Remigiusz Micielski  (2023-08-13)
 # rust-analyzer is in ::gentoo as a use flag for rust
 dev-util/rust-analyzer



[gentoo-commits] repo/proj/guru:master commit in: games-puzzle/aaaaxy/

2023-09-14 Thread David Roman
commit: 415182a893dab4c305853e56cd53e7e3ec02d0cb
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Wed Sep 13 08:51:39 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:54:45 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=415182a8

games-puzzle/xy: add 1.4.45, drop 1.4.8

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

 games-puzzle/xy/Manifest  | 4 ++--
 games-puzzle/xy/{xy-1.4.8.ebuild => xy-1.4.45.ebuild} | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-puzzle/xy/Manifest b/games-puzzle/xy/Manifest
index eb73ca92ef..c29278b07d 100644
--- a/games-puzzle/xy/Manifest
+++ b/games-puzzle/xy/Manifest
@@ -2,5 +2,5 @@ DIST xy-1.3.436-deps.tar.xz 354919156 BLAKE2B 
79b9295af8fd7a51346ab4e7d4f5a6
 DIST xy-1.3.436.tar.gz 28047375 BLAKE2B 
e3764f3b5889033d44d8b2906cc60be1101339deaf7ccfa285464ebe47e71befe2c49800466fe42805d096c5a41d735216d2f6be60744b86d93a1874d7e56a3c
 SHA512 
3632d21e5f48e31a813b93953e6e8ac9a12a1065d194bb4f7b59f9921d69cc8b96aff03b8fa07e3acf1ea1e3e4c19ed3b170a6cca1dbd075bfe69dde627d2fad
 DIST xy-1.4.18-deps.tar.xz 73860348 BLAKE2B 
85788abceddc142f5d19c68345025e5bcb32753192a48f19b1f01246129c82f03b0b19ff189375448ee6292f6cbb17da7ae10940435b7819797b62296b68b358
 SHA512 
73d203c510ef17304bbaf167e772f06c621c40d45abfa32071dbdafe8b2cb9953e85d10952b267afbaeb2b4ebe14fa5d904e650ca42675bfb55a547539792646
 DIST xy-1.4.18.tar.gz 28036068 BLAKE2B 
3b65d593b7b2e98090b79ade6059daa36749f4f0e455caf0b6081f2e3839db343e935e64859690e12027c851f3a074782d84e80714736bad5b786b2b79405f3b
 SHA512 
0c5843aa52be16b9e52c9d4b0e36fcd852ba3429f6c26525cc64ab6cd0582c57ff1aa6416968174155ba94beb4dbf49a4240fe73d4bb2d9a934baf91a088b1ce
-DIST xy-1.4.8-deps.tar.xz 73799472 BLAKE2B 
20a8b7c531c11e0101ea67f3030cd9def2c6acf18023a46d87e8aadcaf36d32e095d87d43ea5b792ad5461ae8aacd325b7ed22479f034f3d724f2db89551e7c5
 SHA512 
4c913befac1083021316b629d4b9676e047ef769fc86ce4e1895d79435780c86f6377913706702eb07c33e10f67fe25c3b87efe32f1c4556a5652fab79b3
-DIST xy-1.4.8.tar.gz 28034889 BLAKE2B 
d184ab034681c1c36d7992c0afde7ac6925d37d232a9d58908ecddfded26386b0006faac67120e8d2ff5a3bcef95ebae4c6451087cffcf9bcd7bff852f778791
 SHA512 
37314f2597f6a9671bd8e5104b01ccf4e9e57bfd6c63cdc3863203b8a74fb0c9c930678ef33ffb244c10005b82f19a9e55b58ed2e402a312af675d76dc120bb1
+DIST xy-1.4.45-deps.tar.xz 77151572 BLAKE2B 
01a071a375ccd9b97f1bb40574cd19f47af3a597f05b466d53e6dd38b1ced612461494cb18db185197fc97b2c1d4383d528a12ede64b7307749ad711f748a15e
 SHA512 
9742bec9bda00ad31217a53644416fd6bbae6ccf80bdf8d42477917ccb4c16ec479431d97e019da5a4d950a76c06f758b59b781da777c6ef603b9d1106c92006
+DIST xy-1.4.45.tar.gz 28043815 BLAKE2B 
106a40f0409ec97651412c376a2a7bdd0bff11f99740fa3ec9da9d7f9a0e3fed772233e7219f69c4b05c7747615cd89be22fa5baba7e51ab691d177fc3bd245b
 SHA512 
e3790c6a6e0678f7c43c502f1f9654241cde3d75b5bc41dd92b513bf119588bb85e6c5f1a95e6e0df5ba47cd69bf56eed5ec1ea3c851a54a3e594eefa602ed85

diff --git a/games-puzzle/xy/xy-1.4.8.ebuild 
b/games-puzzle/xy/xy-1.4.45.ebuild
similarity index 95%
rename from games-puzzle/xy/xy-1.4.8.ebuild
rename to games-puzzle/xy/xy-1.4.45.ebuild
index 7db5ad730b..4a627eb951 100644
--- a/games-puzzle/xy/xy-1.4.8.ebuild
+++ b/games-puzzle/xy/xy-1.4.45.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit desktop go-module
 
-DEPS_DATE="2023-06-26" # when the deps archive has been created
+DEPS_DATE="2023-09-13" # when the deps archive has been created
 
 DESCRIPTION="A nonlinear 2D puzzle platformer taking place in impossible 
spaces"
 HOMEPAGE="https://divverent.github.io/xy/;



[gentoo-commits] repo/proj/guru:master commit in: dev-python/faust-cchardet/

2023-09-14 Thread David Roman
commit: c95424cc219bbc37a4bf65cc612c362145075235
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Wed Sep 13 08:36:25 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:52:24 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c95424cc

dev-python/faust-cchardet: add 2.1.19

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

 dev-python/faust-cchardet/Manifest |  1 +
 .../faust-cchardet/faust-cchardet-2.1.19.ebuild| 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/faust-cchardet/Manifest 
b/dev-python/faust-cchardet/Manifest
index ebae15ce31..c2a997aa77 100644
--- a/dev-python/faust-cchardet/Manifest
+++ b/dev-python/faust-cchardet/Manifest
@@ -1,2 +1,3 @@
 DIST faust-cchardet-2.1.18.tar.gz 312626 BLAKE2B 
33ffa2e4982218bbee72eb8028e15333563988ddb0d136f1e46acb810f005aab32ff7f58ee422d3a0a1348bdcfd2abfba549ed5467f9adc384f534b297ceb319
 SHA512 
0213a58e7c8104281e69a4fc8ffe90fc892efd783481d31a6b7aa812fe86534e15a209486b947b48e0063b5176f3aaebc9e702ab2e05d11151ba672a06aa3397
+DIST faust-cchardet-2.1.19.tar.gz 312664 BLAKE2B 
9d07908d17a69268216777059c35569f5d15325c2371e2efd633e07c4de2e767ce12cbf70a53e70216510ceb752eda9bf9dce4b93f74fca60aa59ad1f739b1f4
 SHA512 
255122fc3cf67f752edb3a45718a2b2456f1b22a1fbec0efd417a404a4d15542a44e5d463eec2581ae34277df80621a5e20ce90bef99661c7a762b469e3b46aa
 DIST uchardet-bdb8a0376ddf5d3cab6397be0bad98dad106d77f.tar.gz 322644 BLAKE2B 
cd2bf0a7e6ad29b7641449fa7ea7eecda375ad59ebe04768df6824387d0e33cf7f543afefa972a1e369a0be8f064f87d8eddca5bc048c740d64af05f664ec30d
 SHA512 
a7dd1e5d41484df22e1048a319b05f4dc9d917c91440eda557084049da08b0e7fc3b18f2531fc1418857cda94dfd0deea984728b2a9747e369804ed7137ed6bc

diff --git a/dev-python/faust-cchardet/faust-cchardet-2.1.19.ebuild 
b/dev-python/faust-cchardet/faust-cchardet-2.1.19.ebuild
new file mode 100644
index 00..39fef7c515
--- /dev/null
+++ b/dev-python/faust-cchardet/faust-cchardet-2.1.19.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1
+
+GIT_SUBMODULES=(
+   "PyYoshi uchardet bdb8a0376ddf5d3cab6397be0bad98dad106d77f 
src/ext/uchardet"
+)
+submodule_uris() {
+   local g
+   for g in "${GIT_SUBMODULES[@]}"; do
+   g=(${g})
+   echo "https://github.com/${g[0]}/${g[1]}/archive/${g[2]}.tar.gz 
-> ${g[1]}-${g[2]}.tar.gz"
+   done
+}
+
+DESCRIPTION="universal character encoding detector"
+HOMEPAGE="https://github.com/faust-streaming/cChardet;
+SRC_URI="
+   
https://github.com/faust-streaming/cChardet/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz
+   $(submodule_uris)
+"
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/cChardet-${PV}"
+
+distutils_enable_tests pytest
+
+src_unpack() {
+   default
+
+   local g
+   for g in "${GIT_SUBMODULES[@]}"; do
+   g=(${g})
+   mv "${WORKDIR}/${g[1]}-${g[2]}"/* "${S}/${g[3]}" || die "could 
not move submodule ${g[2]}"
+   done
+}



[gentoo-commits] repo/proj/guru:master commit in: mpv-plugin/autoload/

2023-09-14 Thread David Roman
commit: 575528b5cb44386fd4b15e4aad8d802c5e68022c
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Thu Sep  7 13:45:02 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:52:23 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=575528b5

mpv-plugin/autoload: add 0.36.0

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

 mpv-plugin/autoload/Manifest   |  1 +
 mpv-plugin/autoload/autoload-0.36.0.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/mpv-plugin/autoload/Manifest b/mpv-plugin/autoload/Manifest
index 6ac1915445..2848b9c4a1 100644
--- a/mpv-plugin/autoload/Manifest
+++ b/mpv-plugin/autoload/Manifest
@@ -1 +1,2 @@
 DIST mpv-0.35.1.tar.gz 3367913 BLAKE2B 
706a2031a2ca973eb3a092ec7f62ba40ca4dfd78e3ffe5d6e432486b0018852b034152a21805be594054178ccb17856dafe2b860cddcc22d27df895d163871de
 SHA512 
42f3564a9ed4d972d14b2c697b0163f06a8bb68a0606a86c34935181247c783e3cb62286b44578def0919fb13fce8b8f6453f82652d5bfaea5929119127a
+DIST mpv-0.36.0.tar.gz 3409178 BLAKE2B 
7260c265f02918d4caf72d8d8ecc9d4ab9783d66d675bd683a2f9c228404ad978c6fe0aa50f486b5257740176bc26f8abde7eff20d89019d5f701ec78c7743e1
 SHA512 
51f455a425ea5aac47acb3582d0f958a34248a2290a8d6887d22bcb9385fe8d1ab5d7f09d5408cfecfb73c1ec85d1b8ec8958e45a4941d3f711a2e580187472f

diff --git a/mpv-plugin/autoload/autoload-0.36.0.ebuild 
b/mpv-plugin/autoload/autoload-0.36.0.ebuild
new file mode 100644
index 00..e46627eca6
--- /dev/null
+++ b/mpv-plugin/autoload/autoload-0.36.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_MPV="rdepend"
+MPV_REQ_USE="lua"
+inherit mpv-plugin
+
+DESCRIPTION="Loads playlist entries before and after the the currently played 
file"
+HOMEPAGE="https://github.com/mpv-player/mpv/tree/master/TOOLS/lua;
+
+# use the already available mpv tarball
+SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> 
mpv-${PV}.tar.gz"
+
+# since this comes from mpv, use its licenses
+LICENSE="LGPL-2.1+ GPL-2+ BSD ISC MIT"
+KEYWORDS="~amd64"
+
+# lock mpv version
+RDEPEND="~media-video/mpv-${PV}"
+
+S="${WORKDIR}/mpv-${PV}/TOOLS/lua"
+
+MPV_PLUGIN_FILES=( ${PN}.lua )



[gentoo-commits] repo/proj/guru:master commit in: mpv-plugin/mpv_thumbnail_script/

2023-09-14 Thread David Roman
commit: 2a8d5d0c085162cffab10f51a0a67cbcd49f20f2
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Tue Jul 11 09:18:59 2023 +
Commit: David Roman  gmail  com>
CommitDate: Wed Sep 13 08:52:23 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a8d5d0c

mpv-plugin/mpv_thumbnail_script: call mpv-plugin_pkg_postinst

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

 mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild | 2 ++
 mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild 
b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild
index e4f7628be2..594f76d9b8 100644
--- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild
+++ b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild
@@ -46,6 +46,8 @@ src_install() {
 }
 
 pkg_postinst(){
+   mpv-plugin_pkg_postinst
+
if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then
elog "Created a total of ${THUMBNAIL_SERVER_THREADS} server 
threads. Setting this too high is not recommended"
else

diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild 
b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild
index 69f4a2357a..61820aa926 100644
--- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild
+++ b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild
@@ -46,6 +46,8 @@ src_install() {
 }
 
 pkg_postinst(){
+   mpv-plugin_pkg_postinst
+
if [[ "${THUMBNAIL_SERVER_THREADS}" -gt 1 ]]; then
elog "Created a total of ${THUMBNAIL_SERVER_THREADS} server 
threads. Setting this too high is not recommended"
else



[gentoo-commits] repo/proj/guru:master commit in: games-engines/easyrpg-player/

2023-09-14 Thread David Roman
commit: ad8a3e1457ab3a8a77d3d20ecc215ac41e59a22e
Author: Lucio Sauer  posteo  net>
AuthorDate: Tue Sep 12 15:19:39 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 20:33:08 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad8a3e14

games-engines/easyrpg-player: remove app-doc/doxygen[dot] dependency

Bug: https://bugs.gentoo.org/430914
Signed-off-by: Lucio Sauer  posteo.net>

 games-engines/easyrpg-player/easyrpg-player-0.8.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/games-engines/easyrpg-player/easyrpg-player-0.8.ebuild 
b/games-engines/easyrpg-player/easyrpg-player-0.8.ebuild
index de51689d13..76210b2a45 100644
--- a/games-engines/easyrpg-player/easyrpg-player-0.8.ebuild
+++ b/games-engines/easyrpg-player/easyrpg-player-0.8.ebuild
@@ -102,7 +102,10 @@ RDEPEND="${DEPEND}
fluidsynth? ( media-sound/fluid-soundfont )
 "
 BDEPEND="virtual/pkgconfig
-   doc? ( app-doc/doxygen[dot] )
+   doc? (
+  app-doc/doxygen
+  media-gfx/graphviz[svg]
+)
 "
 
 DOC_CONTENTS="



[gentoo-commits] repo/proj/guru:master commit in: www-client/nyxt/

2023-09-14 Thread David Roman
commit: 07a4b3cd0417c4b31bc2078f6a7cecbac2ceac54
Author: Julien Roy  jroy  ca>
AuthorDate: Tue Sep 12 19:08:54 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 19:08:54 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=07a4b3cd

www-client/nyxt: remove webkit-gtk:5 block
add QA_FLAGS_IGNORED

Signed-off-by: Julien Roy  jroy.ca>

 www-client/nyxt/nyxt-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/www-client/nyxt/nyxt-.ebuild b/www-client/nyxt/nyxt-.ebuild
index 9b812ad603..59fd299396 100644
--- a/www-client/nyxt/nyxt-.ebuild
+++ b/www-client/nyxt/nyxt-.ebuild
@@ -50,10 +50,8 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="
>=dev-lisp/sbcl-2.0.0
-   !!net-libs/webkit-gtk:5
 "
-# If webkit-gtk:5 is installed, nyxt won't compile
-# https://github.com/atlas-engineer/nyxt/issues/2743
+QA_FLAGS_IGNORED="usr/bin/${PN}"
 
 src_unpack() {
default



[gentoo-commits] repo/proj/guru:master commit in: net-libs/signald/

2023-09-14 Thread David Roman
commit: 53be48c9b20cd19d407ec90ff1f5128c12037216
Author: Julien Roy  jroy  ca>
AuthorDate: Tue Sep 12 19:13:23 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 19:13:23 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53be48c9

net-libs/signald: add virtual/jre RDEPEND

Closes: https://bugs.gentoo.org/913587
Signed-off-by: Julien Roy  jroy.ca>

 net-libs/signald/signald-0.23.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-libs/signald/signald-0.23.2.ebuild 
b/net-libs/signald/signald-0.23.2.ebuild
index bdc9c9701a..95e60d09e9 100644
--- a/net-libs/signald/signald-0.23.2.ebuild
+++ b/net-libs/signald/signald-0.23.2.ebuild
@@ -17,7 +17,8 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
 
-RDEPEND="acct-user/signald"
+RDEPEND="acct-user/signald
+   virtual/jre"
 DEPEND="${RDEPEND}"
 BDEPEND="dev-java/gradle-bin:7.3.3"
 



[gentoo-commits] repo/proj/guru:master commit in: dev-games/liblcf/

2023-09-14 Thread David Roman
commit: 431d01c5b2acace232c38b43761cbb29e6c932b6
Author: Lucio Sauer  posteo  net>
AuthorDate: Tue Sep 12 15:17:58 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 20:33:04 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=431d01c5

dev-games/liblcf: remove app-doc/doxygen[dot] dependency

Bug: https://bugs.gentoo.org/430914
Signed-off-by: Lucio Sauer  posteo.net>

 dev-games/liblcf/liblcf-0.8.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-games/liblcf/liblcf-0.8.ebuild 
b/dev-games/liblcf/liblcf-0.8.ebuild
index 0a147ba751..c3a8732458 100644
--- a/dev-games/liblcf/liblcf-0.8.ebuild
+++ b/dev-games/liblcf/liblcf-0.8.ebuild
@@ -20,7 +20,11 @@ RDEPEND="
dev-libs/icu:=
 "
 DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-doc/doxygen[dot] )"
+BDEPEND="doc? (
+   app-doc/doxygen
+   media-gfx/graphviz[svg]
+ )
+"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/proj/guru:master commit in: www-client/nyxt/

2023-09-14 Thread David Roman
commit: 5b5b24236658e4f3e152519d3c6b4452fc863530
Author: Julien Roy  jroy  ca>
AuthorDate: Tue Sep 12 19:08:44 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 19:08:44 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b5b2423

www-client/nyxt: drop 3.6.0

Signed-off-by: Julien Roy  jroy.ca>

 www-client/nyxt/Manifest  |   1 -
 www-client/nyxt/nyxt-3.6.0.ebuild | 100 --
 2 files changed, 101 deletions(-)

diff --git a/www-client/nyxt/Manifest b/www-client/nyxt/Manifest
index 81db169399..cb1e3d426c 100644
--- a/www-client/nyxt/Manifest
+++ b/www-client/nyxt/Manifest
@@ -1,3 +1,2 @@
-DIST nyxt-3.6.0.gh.tar.xz 17424780 BLAKE2B 
8a42263ddd0d000587f934a7dde6074d728bedf267bbf363ab5ab75e0e773fb9c6d506e7218dfa8219e140a0c757125323d4448c720a933952f65d5b6128714f
 SHA512 
f8bd0437a8afa275f1c885b35c9c88f55a1f1fe6299e9ecdd9496c09ace7673b80b92511a22b2cb1eef738696847319309883bb3df18e91980b071a16e1b7893
 DIST nyxt-3.6.1.gh.tar.xz 17421212 BLAKE2B 
8be94ce06fccab569981582dbe72c99245b0f122d25d9466e57b02d5b531f7caa7558b2ba2cd1bf2d39cd99c9adf65902b0341161dd91d7507d69b032cd66ad1
 SHA512 
40861b903472904590e094e373347714f398b4e3e6929aa428ba2d10003935e33e96bdd4c43b1b3cf050b48762e5aafb5bc6fc8d55ffe32dd692c61276867c6d
 DIST nyxt-3.7.0.gh.tar.xz 17480148 BLAKE2B 
cbe9ad75ef78bce16a54247dd68c9da49008d941f56a188ead75454d1e45689b1d903e33f1dfeec9ef6a5a992c9312b25e6ec0e2802e2f5ba8624d3f4c9af328
 SHA512 
d41b464c1401ea040c27f9597acd5142e940408ba52e1414427e4a17ee73f9665a659bdbcd1435ba4ce4168e6dec125f13653dd5418c3b5b86c95fef07b1c837

diff --git a/www-client/nyxt/nyxt-3.6.0.ebuild 
b/www-client/nyxt/nyxt-3.6.0.ebuild
deleted file mode 100644
index 5ef18c896a..00
--- a/www-client/nyxt/nyxt-3.6.0.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop optfeature xdg-utils
-
-DESCRIPTION="Nyxt - the hacker's power-browser"
-HOMEPAGE="https://nyxt.atlas.engineer/;
-
-if [[ "${PV}" = ** ]]
-then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/atlas-engineer/${PN}.git;
-else
-   KEYWORDS="~amd64"
-   
SRC_URI="https://github.com/atlas-engineer/${PN}/releases/download/${PV}/nyxt-${PV}-source-with-submodules.tar.xz
 -> ${PF}.gh.tar.xz"
-fi
-
-# Portage replaces the nyxt binary with scbl when stripping
-RESTRICT="mirror strip"
-
-LICENSE="BSD CC-BY-SA-3.0"
-SLOT="0"
-IUSE="doc"
-
-RDEPEND="
-   dev-libs/gobject-introspection
-   gnome-base/gsettings-desktop-schemas
-   media-libs/gst-plugins-bad
-   media-libs/gst-plugins-base
-   media-libs/gst-plugins-good
-   media-libs/gst-plugins-ugly
-   media-plugins/gst-plugins-libav
-   net-libs/glib-networking
-   net-libs/webkit-gtk:4.1
-   sys-libs/libfixposix
-"
-
-DEPEND="${RDEPEND}"
-BDEPEND="
-   >=dev-lisp/sbcl-2.0.0
-"
-
-src_unpack() {
-   default
-
-   # nyxt-3-source-with-submodules.tar.xz doesn't unpack in a subdirectory
-   # so we create it instead of working directly in ${WORKDIR}
-   if [[ "${PV}" != ** ]]
-   then
-   mkdir "${WORKDIR}/${P}" || die
-   mv "${WORKDIR}/assets" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/_build" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/build-scripts" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/documents" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/engineer.atlas.Nyxt.yaml" "${WORKDIR}/${P}/" || 
die
-   mv "${WORKDIR}/examples" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/INSTALL" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/libraries" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/licenses" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/makefile" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/nyxt.asd" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/README.org" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/source" "${WORKDIR}/${P}/" || die
-   mv "${WORKDIR}/tests" "${WORKDIR}/${P}/" || die
-   fi
-}
-
-src_compile() {
-   emake all
-   use doc && emake doc
-}
-
-src_install(){
-   dobin "${S}/nyxt"
-
-   if [ "$(use doc)" ]
-   then
-   docinto "/usr/share/doc/${P}"
-   dodoc "${S}/manual.html"
-   fi
-
-   newicon -s 512 "${S}/assets/nyxt_512x512.png" nyxt.png
-   domenu "${S}/assets/nyxt.desktop"
-}
-
-pkg_postinst() {
-   xdg_mimeinfo_database_update
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   optfeature "for X11 clipboard support" "x11-misc/xclip"
-   optfeature "for spellchecking" "app-text/enchant"
-}
-
-pkg_postrm() {
-   xdg_mimeinfo_database_update
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/proj/guru:master commit in: net-im/mautrix-signal/

2023-09-14 Thread David Roman
commit: 0bc965408c5c835d520eaf213786e5445330a0fe
Author: Julien Roy  jroy  ca>
AuthorDate: Tue Sep 12 19:10:45 2023 +
Commit: David Roman  gmail  com>
CommitDate: Tue Sep 12 19:10:54 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0bc96540

net-im/mautrix-signal: update upstream metadata

Closes: https://bugs.gentoo.org/913658
Signed-off-by: Julien Roy  jroy.ca>

 net-im/mautrix-signal/metadata.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-im/mautrix-signal/metadata.xml 
b/net-im/mautrix-signal/metadata.xml
index 233fdb479d..de620b05ea 100644
--- a/net-im/mautrix-signal/metadata.xml
+++ b/net-im/mautrix-signal/metadata.xml
@@ -10,10 +10,10 @@
Tulir Asokan
tu...@maunium.net

-   
https://github.com/mautrix/telegram/releases
-   
https://docs.mau.fi/bridges/python/telegram/index.html
-   https://github.com/mautrix/telegram/issues
-   mautrix/telegram
-   mautrix-telegram
+   
https://github.com/mautrix/signal/releases
+   https://docs.mau.fi/bridges/python/signal/index.html
+   https://github.com/mautrix/signal/issues
+   mautrix/signal
+   mautrix-signal

 



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

2023-09-14 Thread Florian Schmaus
commit: dab8c6215eb7ee97fd342b9bba728bdc451c0b50
Author: Florian Schmaus  gentoo  org>
AuthorDate: Thu Sep 14 13:20:24 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Sep 14 13:21:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab8c621

dev-util/pkgdev: bump min requirement for pkgcore

pkgdev 0.2.8 makes use of repo.stabilization_groups, but those where
added to pkgcore's API with 0.12.23.

Increae the minimum requirement for pkgcore to 0.12.23. Otherwise,
you'll get:

Traceback (most recent call last):
  File "/usr/lib/python-exec/python3.11/pkgdev", line 8, in 
sys.exit(main())
 ^^
  File "/usr/lib/python3.11/site-packages/pkgdev/scripts/__init__.py", line 48, 
in main
run(os.path.basename(sys.argv[0]))
  File "/usr/lib/python3.11/site-packages/pkgdev/scripts/__init__.py", line 40, 
in run
sys.exit(tool())
 ^^
  File "/usr/lib/python3.11/site-packages/snakeoil/cli/tool.py", line 81, in 
__call__
ret = self.main()
  ^^^
  File "/usr/lib/python3.11/site-packages/pkgdev/cli.py", line 23, in main
return super().main()
   ^^
  File "/usr/lib/python3.11/site-packages/snakeoil/cli/tool.py", line 191, in 
main
self.handle_exec_exception(e)
  File "/usr/lib/python3.11/site-packages/snakeoil/cli/tool.py", line 176, in 
main
exitstatus = func(self.options, self.out, self.err)
 ^^
  File "/usr/lib/python3.11/site-packages/pkgdev/scripts/pkgdev_bugs.py", line 
536, in main
options.targets.extend(d.extend_targets_stable_groups(options.sets or ()))
  File "/usr/lib/python3.11/site-packages/pkgdev/scripts/pkgdev_bugs.py", line 
290, in extend_targets_stable_groups
stabilization_groups = self.options.repo.stabilization_groups
   ^^
AttributeError: 'UnconfiguredTree' object has no attribute 
'stabilization_groups'

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

 dev-util/pkgdev/{pkgdev-0.2.8.ebuild => pkgdev-0.2.8-r1.ebuild} | 2 +-
 dev-util/pkgdev/pkgdev-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/pkgdev/pkgdev-0.2.8.ebuild 
b/dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild
similarity index 97%
rename from dev-util/pkgdev/pkgdev-0.2.8.ebuild
rename to dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild
index fddbae4e45a4..927d5e880e3f 100644
--- a/dev-util/pkgdev/pkgdev-0.2.8.ebuild
+++ b/dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild
@@ -33,7 +33,7 @@ if [[ ${PV} == * ]] ; then
 else
RDEPEND="
>=dev-python/snakeoil-0.10.4[${PYTHON_USEDEP}]
-   >=sys-apps/pkgcore-0.12.16[${PYTHON_USEDEP}]
+   >=sys-apps/pkgcore-0.12.23[${PYTHON_USEDEP}]
>=dev-util/pkgcheck-0.10.16[${PYTHON_USEDEP}]
"
 fi

diff --git a/dev-util/pkgdev/pkgdev-.ebuild 
b/dev-util/pkgdev/pkgdev-.ebuild
index fddbae4e45a4..927d5e880e3f 100644
--- a/dev-util/pkgdev/pkgdev-.ebuild
+++ b/dev-util/pkgdev/pkgdev-.ebuild
@@ -33,7 +33,7 @@ if [[ ${PV} == * ]] ; then
 else
RDEPEND="
>=dev-python/snakeoil-0.10.4[${PYTHON_USEDEP}]
-   >=sys-apps/pkgcore-0.12.16[${PYTHON_USEDEP}]
+   >=sys-apps/pkgcore-0.12.23[${PYTHON_USEDEP}]
>=dev-util/pkgcheck-0.10.16[${PYTHON_USEDEP}]
"
 fi



[gentoo-commits] repo/gentoo:master commit in: media-radio/flmsg/

2023-09-14 Thread Richard Freeman
commit: 9ada9468dcba25b9856f8b26e1ad3afbb6e4ccf2
Author: Richard Freeman  gentoo  org>
AuthorDate: Thu Sep 14 13:13:31 2023 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Thu Sep 14 13:13:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ada9468

media-radio/flmsg: add 4.0.23

Signed-off-by: Richard Freeman  gentoo.org>

 media-radio/flmsg/Manifest|  1 +
 media-radio/flmsg/flmsg-4.0.23.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/media-radio/flmsg/Manifest b/media-radio/flmsg/Manifest
index 4d1caecd48c8..00118d17da07 100644
--- a/media-radio/flmsg/Manifest
+++ b/media-radio/flmsg/Manifest
@@ -1,2 +1,3 @@
 DIST flmsg-4.0.20.tar.gz 885141 BLAKE2B 
28b5e033b145149af8c6a6b2645a20484cb4a76628bc4a15d9721ce95d0cea3938b0e9aa9c5c6c5542affa6b5b3283ec6618d2574e472d35bee3728cc497adce
 SHA512 
4cf1f11d910601c219268fa1dfd5f89a2530476f829eb1e016eb46101352c255d7d3f43d5fd0692307bc30df2a443952ccb1a99499be46efa737555be32d2e0b
 DIST flmsg-4.0.22.tar.gz 838644 BLAKE2B 
d81fe3438f7f47ae77061dcd390b742ba74694b5f5039c9fef305be4fddfc3a5b2139a802cf85e2301a9cc48929e3290ba273207beae1c8efcb530d50e6bbfb3
 SHA512 
1baaa7260dbf5fe68875a23bc206b910b6cd62f1fe6e73fa8ed8833433a3bacb8f801e06c3f8fc1e6b2acc1701dce97cd6d74f2b465a608a538ffc4286546bf2
+DIST flmsg-4.0.23.tar.gz 838006 BLAKE2B 
98c343ace7b0318d6d4c071a82936b67a5ec462dc4e3128c3215f86e9adda0bd7979191c873452335e6fa2366945303e1732f0af7a5be52dbf8859d7f86158e2
 SHA512 
b7d8ff15370b456df605a07d263ffe39df7b21edf390b1c3850550bf871443fb77e3a00aaa32407a5d2016fb8d92d52b451d22750135c145ddbdf970aebc6730

diff --git a/media-radio/flmsg/flmsg-4.0.23.ebuild 
b/media-radio/flmsg/flmsg-4.0.23.ebuild
new file mode 100644
index ..fa10c104dcc2
--- /dev/null
+++ b/media-radio/flmsg/flmsg-4.0.23.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fldigi helper for creating radiograms"
+HOMEPAGE="http://www.w1hkj.com;
+SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-radio/fldigi
+   x11-libs/fltk:=
+   x11-libs/libX11:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog INSTALL README )



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

2023-09-14 Thread Joonas Niilola
commit: bb593daca691ea42b386e00c143afb73623796ed
Author: Jaco Kroon  uls  co  za>
AuthorDate: Thu Sep 14 11:38:30 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 14 12:57:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb593dac

net-misc/asterisk: Change RDEPEND for net-misc/asterisk-base to PDEPEND.

Motivation: https://github.com/gentoo/gentoo/pull/32607

Signed-off-by: Jaco Kroon  uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/32607
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/asterisk/asterisk-16.30.1.ebuild | 2 +-
 net-misc/asterisk/asterisk-18.18.1.ebuild | 2 +-
 net-misc/asterisk/asterisk-20.3.1.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/asterisk/asterisk-16.30.1.ebuild 
b/net-misc/asterisk/asterisk-16.30.1.ebuild
index 8cad2f60a465..b2a0d086ac1e 100644
--- a/net-misc/asterisk/asterisk-16.30.1.ebuild
+++ b/net-misc/asterisk/asterisk-16.30.1.ebuild
@@ -96,12 +96,12 @@ DEPEND="acct-user/asterisk
 "
 
 RDEPEND="${DEPEND}
-   net-misc/asterisk-base
net-misc/asterisk-core-sounds
net-misc/asterisk-extra-sounds
net-misc/asterisk-moh-opsound
selinux? ( sec-policy/selinux-asterisk )
syslog? ( virtual/logger )"
+PDEPEND="net-misc/asterisk-base"
 
 BDEPEND="dev-libs/libxml2:2
virtual/pkgconfig"

diff --git a/net-misc/asterisk/asterisk-18.18.1.ebuild 
b/net-misc/asterisk/asterisk-18.18.1.ebuild
index 72c2d1bb8c17..3f4247463485 100644
--- a/net-misc/asterisk/asterisk-18.18.1.ebuild
+++ b/net-misc/asterisk/asterisk-18.18.1.ebuild
@@ -94,12 +94,12 @@ DEPEND="acct-user/asterisk
 "
 
 RDEPEND="${DEPEND}
-   net-misc/asterisk-base
net-misc/asterisk-core-sounds
net-misc/asterisk-extra-sounds
net-misc/asterisk-moh-opsound
selinux? ( sec-policy/selinux-asterisk )
syslog? ( virtual/logger )"
+PDEPEND="net-misc/asterisk-base"
 
 BDEPEND="dev-libs/libxml2:2
virtual/pkgconfig"

diff --git a/net-misc/asterisk/asterisk-20.3.1.ebuild 
b/net-misc/asterisk/asterisk-20.3.1.ebuild
index f5f1f09f..080afa1dc8ea 100644
--- a/net-misc/asterisk/asterisk-20.3.1.ebuild
+++ b/net-misc/asterisk/asterisk-20.3.1.ebuild
@@ -94,11 +94,11 @@ DEPEND="acct-user/asterisk
 "
 
 RDEPEND="${DEPEND}
-   net-misc/asterisk-base
net-misc/asterisk-core-sounds
net-misc/asterisk-extra-sounds
net-misc/asterisk-moh-opsound
selinux? ( sec-policy/selinux-asterisk )"
+PDEPEND="net-misc/asterisk-base"
 
 BDEPEND="dev-libs/libxml2:2
virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk-base/, net-misc/asterisk-base/files/

2023-09-14 Thread Joonas Niilola
commit: 42618905dd3a86740ee6e2928cfecc92c9281b3a
Author: Jaco Kroon  uls  co  za>
AuthorDate: Mon Sep  4 15:06:55 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 14 12:57:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42618905

net-misc/asterisk-base: add 2

Fix core dump handling.

Signed-off-by: Jaco Kroon  uls.co.za>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/asterisk-base/asterisk-base-2.ebuild   |  40 +
 net-misc/asterisk-base/files/asterisk_wrapper-2 | 227 
 2 files changed, 267 insertions(+)

diff --git a/net-misc/asterisk-base/asterisk-base-2.ebuild 
b/net-misc/asterisk-base/asterisk-base-2.ebuild
new file mode 100644
index ..7d89202ca56f
--- /dev/null
+++ b/net-misc/asterisk-base/asterisk-base-2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd tmpfiles
+
+DESCRIPTION="Gentoo Asterisk init scripts"
+HOMEPAGE="https://www.gentoo.org/wiki/No_homepage;
+# Need to set S due to PMS saying we need it existing, but no SRC_URI
+S="${WORKDIR}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+
+RDEPEND="
+   net-misc/asterisk
+   !<=net-misc/asterisk-16.30.0:0/16
+   !<=net-misc/asterisk-18.18.0:0/18
+   !<=net-misc/asterisk-20.3.0:0/20
+"
+
+src_install() {
+   newinitd "${FILESDIR}/initd-1" asterisk
+   newconfd "${FILESDIR}/confd-1" asterisk
+   newsbin "${FILESDIR}/asterisk_wrapper-2" asterisk_wrapper
+
+   systemd_newunit "${FILESDIR}/asterisk.service-1" asterisk.service
+   systemd_install_serviced "${FILESDIR}/asterisk.service-1.conf" 
asterisk.service
+
+   newtmpfiles "${FILESDIR}/tmpfiles-1.conf" asterisk.conf
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/logrotate-1" asterisk
+}
+
+pkg_postinst() {
+   tmpfiles_process asterisk.conf
+}

diff --git a/net-misc/asterisk-base/files/asterisk_wrapper-2 
b/net-misc/asterisk-base/files/asterisk_wrapper-2
new file mode 100644
index ..cd7d5ff6504e
--- /dev/null
+++ b/net-misc/asterisk-base/files/asterisk_wrapper-2
@@ -0,0 +1,227 @@
+#! /bin/sh
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+progname="$(basename "$0")"
+
+T="$(getopt -o "h" --long 
"help,corecompress:,corerename:,crashemail:,dumpcore:,instance:,maxfd:,nicelevel:,restartdelay:,rundir:,syslog,tty:"
 -n "$progname" -- "$@")"
+eval set -- "${T}"
+
+# bash builtins are special ...
+echo_e="$([ "${SHELL}" = "/bin/bash" ] && echo "echo -e" || echo echo)"
+
+rundir=/run/asterisk
+restartdelay=5
+nicelevel=0
+maxfd=4096
+dumpcore=0
+unset tty instance syslog corecompress corerename crashemail
+
+usage() {
+   cat <&2
+   usage >&2
+   exit 1
+   ;;
+   esac
+done
+shift # --
+
+if ! matchreg "${restartdelay}" "^[1-9][0-9]*$"; then
+   echo "Invalid --restartdelay value ${restartdelay}, resetting to 5." >&2
+   restartdelay=5
+fi
+
+if ! matchreg "${maxfd}" "^[1-9][0-9]*$"; then
+   echo "Invalid --maxfd value, resetting to 4096." >&2
+   maxfd=4096
+fi
+
+if [ $maxfd -lt 1024 ]; then
+   echo "maxfd is guaranteed too low, bumping to at least 1024" >&2
+   maxfd=1024
+fi
+
+if [ -n "${nicelevel}" ] && ! matchreg "${nicelevel}" -E "^-?[0-9]+$"; then
+   echo "Invalid --nicelevel which much be a valid integer (values from 
-20 to 20 makes sense)."
+   exit 1
+fi
+
+if [ -n "${corecompress}" -a ! -x "${corecompress}" ]; then
+   corecompress=$(which "${corecompress}" 2>/dev/null)
+   [ -z "${corecompress}" ] && echo "Error locating core compression tool, 
disabling core compression." >&2
+fi
+
+# Before here will still be output (potentially munged, to the terminal).
+if [ -n "${syslog}" ]; then
+   tdir="$(mktemp -d)"
+   tfifo="${tdir}/asterisk_wrapper.logger.fifo"
+   mkfifo "${tfifo}"
+   logger -t "asterisk_wrapper${instance:+:}${instance}" --id=$$ 
>/dev/null 2>&1 <"${tfifo}" &
+   exec 1>"${tfifo}"
+   exec 2>&1
+
+   rm "${tfifo}"
+   rmdir "${tdir}"
+fi
+
+echo "Initializing ${progname}"
+
+cleanup(){
+   # There is a tiny race here, if this gets replaced inbetween the read 
and the rm.
+   # To fix this is quite complex in that we need to keep an fd, compare 
inode numbers
+   # and manage flock's.
+   [ -r "${rundir}/${progname}.pid" ] && \
+   [ "$(cat "${rundir}/${progname}.pid")" = $$ ] && \
+   rm "${rundir}/${progname}.pid"
+}
+trap cleanup EXIT
+
+# We could be clobbering an old version's pid, in which case it'll just 
terminate on
+# it's next iteration.  Towards this end, if asterisk.pid exists, attempt to 
find it's
+# config file and request a core stop when convenient so that we can take over.
+echo $$ > "${rundir}/${progname}.pid"

[gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/, app-backup/duplicity/files/

2023-09-14 Thread Richard Freeman
commit: c2be04a04dc1e0e03286914c560d1ddee3e56e46
Author: Richard Freeman  gentoo  org>
AuthorDate: Thu Sep 14 12:37:56 2023 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Thu Sep 14 12:37:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2be04a0

app-backup/duplicity: add 2.1.1

Signed-off-by: Richard Freeman  gentoo.org>

 app-backup/duplicity/Manifest  |  1 +
 app-backup/duplicity/duplicity-2.1.1.ebuild| 51 ++
 .../files/duplicity-2.1.1-fix-docs-cmd.patch   | 20 +
 3 files changed, 72 insertions(+)

diff --git a/app-backup/duplicity/Manifest b/app-backup/duplicity/Manifest
index 93ecbb9e09d5..3a344fe54bd9 100644
--- a/app-backup/duplicity/Manifest
+++ b/app-backup/duplicity/Manifest
@@ -2,3 +2,4 @@ DIST duplicity-1.0.1.tar.gz 1928618 BLAKE2B 
f7ffdd488e42219b66b6174dbb944283d029
 DIST duplicity-1.2.2.tar.gz 1427493 BLAKE2B 
d30f91054c59695483a60a684ebc11440b1a490dc635fdc856d7e3e75d7c3b8bc3f8680ecec0af435fe3064c292c6ff0db392e6bb33c682e9527561196e842e1
 SHA512 
5da4addd0742afa93c62c506f49235b396a7d4bb6576bfd5ec223e04936072ef92e874c533f0f7ece3c1460bf017c2e1875d4ed5c08181113e2509dd28b4521b
 DIST duplicity-1.2.3.tar.gz 1438570 BLAKE2B 
12afa69f537d2207343c1638df1cf69ad3e170b2f1368e5d8b86716ccc67564834798e2076a90f021bae8f1d8574ff50f0615fd873cdcddf1399349974d8d4c2
 SHA512 
d2a31b4ed2c0a188d6d2ac543d3d4a474b4c10028a3005b26f57bd57e8c7441eb96e361aa9805fedc6aa09e76e86d3d1e99800669dfb7b2510233e2c0aba15de
 DIST duplicity-2.1.0.tar.gz 1502980 BLAKE2B 
eb90898b75128cd4140f0ab49172da439b675cb512b03c7a449db295ffb6e0beee3fcf364e69c9303b094ab5572a4bf72fb4fbbbfdec29bc3ab40812ab8f
 SHA512 
c8777903935391b0968aeea562202a175625d6c2cac5cfab422ec0c9c002652b34f14f74a820971a74b2f62c58efea49d37bef3918943210fe623a12278f4ce8
+DIST duplicity-2.1.1.tar.gz 1420132 BLAKE2B 
35cfa7c6c2caa647f3b2046783185973203b5d838c0d1a1a8e24982f1c7f74a1d025e0b0740c0c7bc14d516c59d3e691a2712b19b30882e9dbb411cecb90f4be
 SHA512 
fb19b1723e1e220ca72a41c3678ca29d889b2315c7fd043334d55cc2040d991e66480d71c6cc3f2ee5d17d9e1d9fb24ddc4c0ed771bbbefb6f1f6aa14cbe0347

diff --git a/app-backup/duplicity/duplicity-2.1.1.ebuild 
b/app-backup/duplicity/duplicity-2.1.1.ebuild
new file mode 100644
index ..003ceb5ad3d3
--- /dev/null
+++ b/app-backup/duplicity/duplicity-2.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_10 python3_11 )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_EXT=1
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Secure backup system using gnupg to encrypt data"
+HOMEPAGE="https://duplicity.gitlab.io/;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="s3 test"
+
+CDEPEND="
+   net-libs/librsync
+   app-crypt/gnupg
+   dev-python/fasteners[${PYTHON_USEDEP}]
+"
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   app-arch/par2cmdline
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   s3? ( dev-python/boto3[${PYTHON_USEDEP}] )
+"
+
+RESTRICT="test"
+
+PATCHES=(
+   "${FILESDIR}/${P}-fix-docs-cmd.patch"
+)
+
+python_test() {
+   esetup.py test
+}
+
+pkg_postinst() {
+   elog "Duplicity has many optional dependencies to support various 
backends."
+   elog "Currently it's up to you to install them as necessary."
+}

diff --git a/app-backup/duplicity/files/duplicity-2.1.1-fix-docs-cmd.patch 
b/app-backup/duplicity/files/duplicity-2.1.1-fix-docs-cmd.patch
new file mode 100644
index ..bd8f96e6af79
--- /dev/null
+++ b/app-backup/duplicity/files/duplicity-2.1.1-fix-docs-cmd.patch
@@ -0,0 +1,20 @@
+--- duplicity-2.1.1/setup.py.orig  2023-09-14 08:33:42.698029208 -0400
 duplicity-2.1.1/setup.py   2023-09-14 08:34:18.730539149 -0400
+@@ -92,17 +92,6 @@
+ 'bin/duplicity.1',
+ ]
+ ),
+-(f'share/doc/duplicity-{Version}',
+-[
+-'CHANGELOG.md',
+-'CONTRIBUTING.md',
+-'COPYING',
+-'README.md',
+-'README-LOG.md',
+-'README-REPO.md',
+-'README-TESTING.md',
+-],
+-),
+ ]
+ 
+ # short circuit fot READTHEDOCS



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

2023-09-14 Thread Joonas Niilola
commit: d745adde10d94d306afd5435392fe59606aec4b9
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep 14 05:00:52 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 14 11:45:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d745adde

www-client/firefox: add 102.15.1

Bug: https://bugs.gentoo.org/914073
Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/Manifest|   98 +++
 www-client/firefox/firefox-102.15.1.ebuild | 1290 
 2 files changed, 1388 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 65207e959d58..8aae09559d33 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -96,6 +96,104 @@ DIST firefox-102.15.0esr-xh.xpi 427933 BLAKE2B 
fb3ed0b90281d9c4bc2c48af77a205193
 DIST firefox-102.15.0esr-zh-CN.xpi 613308 BLAKE2B 
a51300256ada6338471a0e39d237b4be1ca2ad4853a7b5e81e230093350bf08bda65ed9c6f69c26298ee01ab94cab1670063d449562c04f7e0eb5dc9eeecfb79
 SHA512 
afa427371defd062199ca5046929b7b57d7a6847a0ab04ae3bfe01ace7690a187532ffc51db6188e563134acb16ae4eb68ab480dc188db09efd55dab1e3d3c48
 DIST firefox-102.15.0esr-zh-TW.xpi 614578 BLAKE2B 
562937f3a3cacc41c8cf197fb782363f7064acda47e6980dfe8770b332d181a09aae48b0b059c9baa9c79e22b2f44565947daf1ef5bb847b36deeae651b0fed7
 SHA512 
0f3a5a35134f040e4255241a5f321df8eb363f6b5cf04eec76247821153f682a706e134a7617e1d6e8c183ecb21d13ef171304d1636e798394d6e721e1d3a8b2
 DIST firefox-102.15.0esr.source.tar.xz 486592324 BLAKE2B 
b70727fa91d0d270673374bebb4745b87f6194191c1c9415547d772811a4a85f79a97e8985877eb5c9beef43fe15bef574172da35935e7024a947919ec11d883
 SHA512 
87db6e32fda215253f9b3bd233ef7fa91a64349310064b8482e5c634f34cbe99a2a111d74d2b9f2a99a0b3b510dbf9039ebe4ccfc176c2554d65bc9cfb508bf9
+DIST firefox-102.15.1esr-ach.xpi 466446 BLAKE2B 
16e71c16aa1d8699d76a58ea8107216e4073c15195a9d817ac4670a1fe6f834b6a280cddc6b7fdb33f44a4fc28edf777f3fb9f55dcbc1d11c52910d582b7aa1a
 SHA512 
8274d28fb438ca53decae0cecb851c23780431cd675cd656e3522dcd2773b2a0d1004f2dc9723a2f4a85f69009ca996ad05d87f155bb5906f650daa8385ef993
+DIST firefox-102.15.1esr-af.xpi 429119 BLAKE2B 
f9c25a77bc271d05e9b4115ac1f76d1aa495a53dc84015e3376bc5738874a64461fce7ef47fa152a9c7c46acba6a0fe94a8c1ae379e768d4426e995c58f1b248
 SHA512 
43cc11eb1e696fbf8a098e76b3e830349a7997ccb7bcd8c3bbc8b648b7cfcf877f2f10528834422303fc62f94356081244770bb533a5651af7d0c718ef2f7f8c
+DIST firefox-102.15.1esr-an.xpi 510493 BLAKE2B 
fd46fe8e582eb44ffb0a7d5da1bb41404abb152695cfb1b4a1342ad8d0a9b729fb0c9bae786ec5d225f8386dc942f3c0bb569fc3a87c5eb8d2792de12d75e7cd
 SHA512 
12600a6b9ccbaa39d81883837fcee8dfa521a87d7a17b05a38a58dac6a2e849b7adb4f14bc52f00ccd715dc3c07bc7b2e80d67073a1fe3e44ed3e51e328836cf
+DIST firefox-102.15.1esr-ar.xpi 578877 BLAKE2B 
89d5ac78af6d7e049c0793601af62da1b57f4075d0f5a25ae5e17b8413ae2d8de32556b355bb726558b695a3a1f02e6a6d430328ba38282f5c8a3023259befbc
 SHA512 
fd11af88af2601d5428c87d782a1fdfdd1bdc7bc29790690a60773cb684400fb663fe1529757f380562fb24856ef54cdbd40458e0615796b8e42a464823e611d
+DIST firefox-102.15.1esr-ast.xpi 498109 BLAKE2B 
2748c0b49b865dc4c8e7f7d268087e8e48a67d61bea18b97b7e70d05099f8c658430d64be40cea12ba2779d837e7b2c6219506e150767c7b840d51da00ccba73
 SHA512 
723dcd487954074fa68571a23d24255b767e2f85551e2013927e119097e70eb170b44317c718502c77006c3810caabe707f9a6a9e84c40a26d2ca315312e287f
+DIST firefox-102.15.1esr-az.xpi 500786 BLAKE2B 
4815f334cf1c21a9acac94218ef3079b5e04949824c94054f027eed7be8b1a9f312581b79e3fc8933f0970adb15a327a5c94733bee10bf4dc7cb31fe14631ab8
 SHA512 
d5fecc00f599a479f972d07dff0c73c8fdda0c51109cbe67080606235e153554cb448333529b1daa71a06471bb404ef56da31bedb4f239ff0820aa32454ca1ad
+DIST firefox-102.15.1esr-be.xpi 93 BLAKE2B 
899b2d83cff8f24aa6a4bab32fef44f8b18b024a122aca1dc1db3edd8cf8109809db16990169f7cf55eaed9d197b4e46d505cfedfd1ecdf84cee33f3034e0742
 SHA512 
1e8c8e8496e8d5aca016ada8c77ab4963ca249143d4dcabc65a12d977de183ffcbf50d6d3a306c731fddb51fae9aaf3039fedcf2587411691a3782421c2e2e1d
+DIST firefox-102.15.1esr-bg.xpi 591348 BLAKE2B 
4daafb5d95e47bc39607c3640d4d38e701b5f82f02c3f11f82d977dba9497999c5ffabad7cde72789bc22591c9ebbf1c00f651d78edb6feff2cecff2e00e3d17
 SHA512 
1e1e940ebc612bf32cc589b5cd9626538be7f460bd22c603d7d5fdae3f6cf4dc3335001156fbf43ea46ab8a610e3239889e13de67b0e88ea7af99e25ab467187
+DIST firefox-102.15.1esr-bn.xpi 591679 BLAKE2B 
ad853d8ace7d95c5b2feec367177a2ab8a2047972e429ee34f8f2d4290eba3abda8f949d30b5fba9cd25988414e10e4311807693b6eda66d272867ca6e7e58a3
 SHA512 
b948055a20c2928dca554ef38886ab27621ab1bfad182f9d7b86c4b3168b086b0b2ae13177b74f2938fba5c1350bdd4b584ee8320f35750c4ac4ec58b5e6434d
+DIST firefox-102.15.1esr-br.xpi 555853 BLAKE2B 
664710aaab274f783c9a2895931f7df3469bf4f9e22fe7fa7d3e528692b355843788c89a147f58557f12e7e797f98fd25b2ee7f732f5581c6df53b4190bf1ca1
 SHA512 
16b56b71386316d2643d16ad21d1c6c0b493dd787b15b1cfb85f6ef4dbe4a0ab4349f8fb50b0cbe09d259af9dbd2016bfe246a448daca91cd758b1ca3ac276b6
+DIST 

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

2023-09-14 Thread Joonas Niilola
commit: fd4f8ec937ea9b37d6b78889dd98c79e5a986090
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep 14 11:44:15 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 14 11:45:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd4f8ec9

www-client/firefox: add 117.0.1

Bug: https://bugs.gentoo.org/914073
Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/Manifest   |  100 ++
 www-client/firefox/firefox-117.0.1.ebuild | 1488 +
 2 files changed, 1588 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 41dc624d7662..dce6d042b0ec 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -496,4 +496,104 @@ DIST firefox-117.0-vi.xpi 599835 BLAKE2B 
cb583ebdd0521764dfbff76abff238df4372a08
 DIST firefox-117.0-xh.xpi 401970 BLAKE2B 
1e5fc872ada80753c66a44c96e7da7945861152343ac416e3f8a9e670ca04c05014edeaaf8744134551aa76da7ed251d6a392404cacd4cbc3da39940beae44a6
 SHA512 
116e372c13611d0e8140dd289a20fd8161c6b96220c9e27f7bea6a0cc8e23b5e827a7eb3fe8203cea3e1421bff710a72a8b34554f1004d5223baab0890029a6a
 DIST firefox-117.0-zh-CN.xpi 599269 BLAKE2B 
7a46e06909c11dc5818c6f4bb8b5cce49ceba8c7dd6b7451c0830ce040db1a63f7464e82813ef841fccc2fe9f7cee8c7e33d5faf217a2822ab68cc5b55dd879b
 SHA512 
e4585672100ba500f89d38571188149ff78d3f50156dfaf2ca4193bb08863ef28e914d04bf51152f7f0ea9f4b0d8c953957c7101cb6f2b9d15f9eca803f31eb9
 DIST firefox-117.0-zh-TW.xpi 601287 BLAKE2B 
67415b4ebab0ba268053ffc680bd802587c4589163f43f39b9cfa5d31a9040a300ceb73be2a5b97dee94ad87eb78d76f8c1dcf62f59ba6df6d218c46392e3326
 SHA512 
5bf793f26c63e48f2ff831eb74d1272039093682298060dd72c442874ab1e56b0f959f65ce9569b64106f6eb0febc15b7f8dfbdf6ca490ea62cc1271d601f952
+DIST firefox-117.0.1-ach.xpi 444794 BLAKE2B 
7d8323bc22d1f078783171168e9d94ff5f8d8d678b8b1c2a9f7db7fc1a4e4221a383b8a4898d429cf4c7de77ceb5885d87817c6c965ca527de59a46321f4b150
 SHA512 
d0eac4c1f80492f083e4bf40879adf62c1c5c84179b0d9393f9f14a1d9b39c585e35793dae313818cfaeee063f0ca2b1b56306ef838ef6d4e40e47bca07f609b
+DIST firefox-117.0.1-af.xpi 401870 BLAKE2B 
7f280de7cc75817b35f224aa94bbe715eb7f0faca8f0c3e4080670ab88d218ebbd26ad04eab5afaa5e8be8729dc98a57dffa31c873aa563d9d68bab95410002f
 SHA512 
8c35c83202637e32e4ee07b82d37005db9c4fd18be24da8947bac5763ba6d69412cab0d5a2c1f57d5b1059d9d6006bc49f16988571c1caef0c0ee07fbe29f64c
+DIST firefox-117.0.1-an.xpi 483720 BLAKE2B 
ad0f6f648cbb4ab78cb86a356c110c94313661d8d768082a9984d5ad712954ba00c6314bb5cede6198de5fbad779fe5b6233bd4f10b21492d0e257d96981
 SHA512 
b0b0233e7cbbc920f1c3bf322ff3e66928d97399d61d1fbea53066bf217f1bc543b8e10ad5262bc26c2d489f6fa1db070fe09840b8a46e5695eb554b1d465b51
+DIST firefox-117.0.1-ar.xpi 550587 BLAKE2B 
ffed86e98893f4cae6a4f7cffe7882166caf2419b17c0fbcbae1b60864127efded8dbe6f3ab1e11c78ecf08a985200dc0edad78aec62065f5459a670728adba8
 SHA512 
a9d20841e595e2a7e6a54b3457b3b0987ef4a78b2321dfb7f52fefc273c38b804a4a15377afb149ee7832406832ad9ed05d7738dd90d1ff16601a21eaccef2bc
+DIST firefox-117.0.1-ast.xpi 477431 BLAKE2B 
43d71d2da5c0b2b2b72b35abad7802e50709ce8c642886d5e21b66d578fa2ae07e5aeaf4ea057ffa89e0c9faf2fe29b14e90f43cd2e52cfe692f41bb6b7fe5c4
 SHA512 
35deb651a815178f6eb495ed19f89ea3f6fce30663f0dd0ccfb652a67a9b50367846b34250d0924e1f766d9b6db65532d83aa90b7a8677b1fb9315c5708938db
+DIST firefox-117.0.1-az.xpi 470715 BLAKE2B 
c7cd0b875ac79bad7b4f5c2d00e841bcc669d6e16c2a0e7e0ecaf791ebabdb6457d774b8f6d57e020ca8e41600f2cdf30f8bc4d5983229da608333099050c1fb
 SHA512 
b014e7aea064395dd45dd3ae104c473163517ed7692deb5473d6155ea3276a741f63e9d1f0e94a71822a02f0ce82fc223123e172bb61e6f8f0579e17c0aeda4c
+DIST firefox-117.0.1-be.xpi 652093 BLAKE2B 
80adf5fc012a03e542e9c1337601196342a4c72df2aa87ec3c6218c14cd35f1880fbcfdc3e1fe9376bdc2a0a6ff6b73fb63fa73933b8ce3dc762d8c13e3511a2
 SHA512 
e79bae64579daa7e06054c3ff51146041e016f0b76b878e26299432d2a972fb3bcb42bc3dcd22072661391cfd300981bfad3c76152143565a9ee12c4137e9dc1
+DIST firefox-117.0.1-bg.xpi 565325 BLAKE2B 
e02d0ecfb983c8d241ec512c7c9c0c7a0bace46e5cda0670611bbadb9f94da66956a38de7eeb95dfcba7e9959c4fc3235d6bd1adf8223c02692c1f18ab5f6f80
 SHA512 
805c8d39ddd217d3c9dd5e5d18ca261843140eb0dfb40ddeda3e0b5dca3f4479c096783d48ae21e80ba6c3ce6e6f03d9c27b66e067d6c0d9a302b561b4e9b75b
+DIST firefox-117.0.1-bn.xpi 559637 BLAKE2B 
72c3e2b381e6ea045de5fd43ed2fae43e64ae2844fe7048b91f9b2cefe11454530f5d2b0ccb2be6e45a91b2ac5b772423c1bee819f15d81ec652d67d55d2274d
 SHA512 
b0baf45e0c50ce77863c943d3483321f157bb7af4abd8231c0141e93b9cc1caa0a97d2253fd62f75aa599ec908b1168d400835445eebf9a6cb522bde3103099c
+DIST firefox-117.0.1-br.xpi 542774 BLAKE2B 
18bd431094c8504657c68256103b452fd9ee9134ea82a7574dbb5c52c15cd3f0fbe49f9e0fd5f83eb366e6d870d48b2b154b830c8c8b7bb529d9cd47f0df9454
 SHA512 
2691be474fd2d8cef39114cb045058ae3956240d89e3fe298bef3227396f0a7df1f0d87bf4408f7330127e4e6a1d6b1979dd81080059a2370237b7269834fcb2
+DIST firefox-117.0.1-bs.xpi 440955 BLAKE2B 

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

2023-09-14 Thread Joonas Niilola
commit: 95a6eedd76df58e7c876eccc95bdf4710ee44e41
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Sep 14 09:44:39 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Sep 14 11:45:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a6eedd

www-client/firefox: add 115.2.1

Bug: https://bugs.gentoo.org/914073
Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/Manifest   |  100 ++
 www-client/firefox/firefox-115.2.1.ebuild | 1407 +
 2 files changed, 1507 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 8aae09559d33..41dc624d7662 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -295,6 +295,106 @@ DIST firefox-115.2.0esr-xh.xpi 402421 BLAKE2B 
5d45c37abea39263c2065580214e4a62b1
 DIST firefox-115.2.0esr-zh-CN.xpi 595490 BLAKE2B 
25c4d573da19934dae62f8a8535222b9f8ba202ce9ae288c5b43cea5fcd3b4f90df4609661fc2b3593c898690fe0f8e92864c2e0c4a9bea6b8cd20b6aeea9645
 SHA512 
94e97e86fc3c609530d058f022aaa22188ad0af0320a75dd1bd43639c5a289faba50cefa68f666264da569fc9c5ccba77481e40ec55c2495cd8f4b9cf2768a01
 DIST firefox-115.2.0esr-zh-TW.xpi 597814 BLAKE2B 
26953b3979ece7e5fe69543453b327799062798b474da14fb07099bc3801aa0eb3aefc1f694ab27f2b4dcab539d2c71d6ae5892ebb8cee24fc79d1d3255d8f8f
 SHA512 
92a64faf2552f7fd381b62348525209957d7cd8121c70066391d7a5a23c2f84d44c2ae26db36c8f4d0d4741083fa9bab746a893be5954fb3f6329ec2005b1094
 DIST firefox-115.2.0esr.source.tar.xz 514055028 BLAKE2B 
3ed4a46c2179b0595ac5ee1619f965f2c84e5b4f900341a2b93fe5dda7c81acbdc878763c0432564dfd84d99776cc8defdbba4cb9a317be8c06b3b02f6ec867c
 SHA512 
df3b4efd9607e8eb4932717760c865eb31ac7a96246cb4385190c33316c9595e0793a1f3c45ebb9674a9ba4fce98d83f71b063bef09ef307d92d1cd78d30d812
+DIST firefox-115.2.1esr-ach.xpi 441056 BLAKE2B 
52f1a02dd264bfe6c18dcb1282bdffdefd3216f294b97a59d95a5f5039c5f887907fac1921b4113810e665bc296251471958f8372c0e28f90c26f63eda0551c8
 SHA512 
a10ff0e945528f6723e830a608f45592e27eec5a37b8025a215e03b69016a280e5c5266919fea2a20812cf932f86d29a9716db2eedf755d7e9c41b801929a7fb
+DIST firefox-115.2.1esr-af.xpi 402477 BLAKE2B 
90945bb7b12ea5055c8fecca9824912ce87cb5c2986493832a8bb235397c0ba7573d4fdb5f796d976f05d897d915bafd800b38bda411255ac773d36bf82138e4
 SHA512 
b78836dab6d56a636f2f5beed8b485b5007e1c4147f949dd6745449580c052ef359ff0a52b2851e6ae41536bd19b55e07374b1e8a58af93b305e617fef09f69c
+DIST firefox-115.2.1esr-an.xpi 482933 BLAKE2B 
e97de0315e009201a08ee89f404ddde02db7d5c2d698489d1362eec9bfe14642fbcee1a5c4da25e43821dc731bd163f46cbd1cd60ab7d68b3af85ef95d33b074
 SHA512 
45bf064dda5ce66eddab97553003ddcb8c89a522e858fc931c9221eb97069ec6c8908fd361fe12377a009fecb45b07b51fcedfb16ff6516b108abaa4b6309548
+DIST firefox-115.2.1esr-ar.xpi 549538 BLAKE2B 
acf40705dcb2a90f8a6fd5c10124ca62a8f063e09f9977687a630f3f2e76bfa575567f3ed9c90d1d37c56b6425087aed69fd92b4ff3a17056a1786e9f58faa59
 SHA512 
eb2964cb427e9f4640a2f13e87b538c2f5e6c02641e1570b35913eb54ab782bb3ad84fac60504e6a57e1b02df2b74add6af192ddebc1fa33b8803e8ab6dcbd44
+DIST firefox-115.2.1esr-ast.xpi 477369 BLAKE2B 
c3b3330f4c2cfff81e68d0be908e5f01d8d1c737f050d7505792abc283602acf5c37de9d355246ea2ef850bfffed8d40f8c1d3c589eb23a2bbcab637d77f268c
 SHA512 
48b267caac5d93e63fb62fe5f22ac42bbed5c8d8164eb301a2ebb86010ddfd906072a25ddb9c27ce2188cdb0504e2754571aec15919e4c245eebe1cd6c551baa
+DIST firefox-115.2.1esr-az.xpi 470733 BLAKE2B 
fb46bef71e79151a9a8c0aff3ed59b6695bcf2b325ad2cb7e7d073f871ca2233e2f3ced937c994f6014194918dc7efea994a914c9ea5bc239d460acce71e410e
 SHA512 
1e01cd84a2495294b9f708aab1ce31dafd7dc3db5a8176e4f7abc21af09337fcdfe56e898e6547b7df142899f202f057109e8035c3b923ddcfa0be7c69d243e5
+DIST firefox-115.2.1esr-be.xpi 647092 BLAKE2B 
749c91dabbf54383bbca581b2ebb5e8cb903bc12262635157f8b85d777c3e6034ce61d25b0ceccc435433d0c432d2ded7e6c7622ba34d0309b3cfb21fa24d24c
 SHA512 
b298bcb885179fdeee76c8d6d604cfc5bb4fd97614a0c060b8a8774502ac6ef6ea66a305ebb571c3c6a704ccd347886362a07ace8536521544f190cf6550d3ef
+DIST firefox-115.2.1esr-bg.xpi 564189 BLAKE2B 
8a390cbd42904c1e7cde0b81fc7e17604f13195f651ee1ff3272512775417acfa88c2453bf81c7bc1936119486863dc1497e03117d34aac3fa150c3bf48dbcf5
 SHA512 
35e9f81e78af410271e2e840463620d40c3d872399d19412af77e2e2241e2e413bb38f45bdbd82e542d4e7f19179bbd0f3ed9a79e1cdb3737537a2133564dd6e
+DIST firefox-115.2.1esr-bn.xpi 558435 BLAKE2B 
9778b5d71d168d129990d47b31b53b9919b6595b3890ecc38cb14c5dd2ea44250d71146425d2bd55e2c5bb2a222639839ca85f8937a0bf3962aad08d52149d87
 SHA512 
e9e465a0c171a6784727a6f74e50f85b7ca6affce7162a86cf6defe08e3158785467aeb079032ab11b97e996a5a1bd62db570edf5bed7de0da249b80c9ed7e67
+DIST firefox-115.2.1esr-br.xpi 534386 BLAKE2B 
40211bf93ee35050ea8f6387930b5cd5a9408a20d4e08443d01b5365515c4b6990d52b4dbcc6ec2c37add2da01cf4b205d19700dfb8f650fbdec24862b7f31fe
 SHA512 
902a839f97737ab10bc8db0317bf9257d675795824ee9e670adbcc71f249c9882d0794e8da93c890f965da99907525f550c1a9896fe8dc941509202473ab7051
+DIST 

[gentoo-commits] proj/kde:master commit in: net-p2p/ktorrent/

2023-09-14 Thread Andreas Sturmlechner
commit: fa68dcff0a23ebb76262269451b92c96ec62b932
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Sep 14 10:32:29 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Sep 14 10:39:59 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fa68dcff

net-p2p/ktorrent: Add missing dependency

Closes: https://bugs.gentoo.org/914089
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-p2p/ktorrent/ktorrent-23.08.49..ebuild | 1 +
 net-p2p/ktorrent/ktorrent-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/net-p2p/ktorrent/ktorrent-23.08.49..ebuild 
b/net-p2p/ktorrent/ktorrent-23.08.49..ebuild
index 92f13260ed..ec9bf98a7b 100644
--- a/net-p2p/ktorrent/ktorrent-23.08.49..ebuild
+++ b/net-p2p/ktorrent/ktorrent-23.08.49..ebuild
@@ -43,6 +43,7 @@ COMMON_DEPEND="
>=kde-frameworks/solid-${KFMIN}:5
>=net-libs/libktorrent-${PVCUT}:5
infowidget? ( dev-libs/geoip )
+   ipfilter? ( >=kde-frameworks/karchive-${KFMIN}:5 )
mediaplayer? (
>=media-libs/phonon-4.11.0
>=media-libs/taglib-1.5

diff --git a/net-p2p/ktorrent/ktorrent-.ebuild 
b/net-p2p/ktorrent/ktorrent-.ebuild
index 92f13260ed..ec9bf98a7b 100644
--- a/net-p2p/ktorrent/ktorrent-.ebuild
+++ b/net-p2p/ktorrent/ktorrent-.ebuild
@@ -43,6 +43,7 @@ COMMON_DEPEND="
>=kde-frameworks/solid-${KFMIN}:5
>=net-libs/libktorrent-${PVCUT}:5
infowidget? ( dev-libs/geoip )
+   ipfilter? ( >=kde-frameworks/karchive-${KFMIN}:5 )
mediaplayer? (
>=media-libs/phonon-4.11.0
>=media-libs/taglib-1.5



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

2023-09-14 Thread Andrew Ammerlaan
commit: ab4469c1f1cdc091a2a1424d414d38068790f02a
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 11:18:39 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:24:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4469c1

dev-python/pickleshare: update EAPI 7 -> 8

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild 
b/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild
new file mode 100644
index ..4c622078f654
--- /dev/null
+++ b/dev-python/pickleshare/pickleshare-0.7.5-r1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 pypi
+
+DESCRIPTION="A small 'shelve' like datastore with concurrency support"
+HOMEPAGE="https://github.com/pickleshare/pickleshare;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+RDEPEND="
+   >=dev-python/path-6.2[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest



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

2023-09-14 Thread Michał Górny
commit: 787bbe01beece71e9bdb8b41071b3b53bedf8508
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:42:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 11:21:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=787bbe01

virtual/dist-kernel: Bump to 6.5.3

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

 virtual/dist-kernel/dist-kernel-6.5.3.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/virtual/dist-kernel/dist-kernel-6.5.3.ebuild 
b/virtual/dist-kernel/dist-kernel-6.5.3.ebuild
new file mode 100644
index ..8012e544096f
--- /dev/null
+++ b/virtual/dist-kernel/dist-kernel-6.5.3.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual to depend on any Distribution Kernel"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   || (
+   ~sys-kernel/gentoo-kernel-${PV}
+   ~sys-kernel/gentoo-kernel-bin-${PV}
+   ~sys-kernel/vanilla-kernel-${PV}
+   )"



[gentoo-commits] repo/gentoo:master commit in: app-arch/brotli/

2023-09-14 Thread Michał Górny
commit: 876531a769e09ec12e338a27c9eb4f6f4ab18e87
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 09:51:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 11:21:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=876531a7

app-arch/brotli: Remove pypy3 from 1.1.0, it is crashing

Bug: https://github.com/google/brotli/issues/1072
Signed-off-by: Michał Górny  gentoo.org>

 app-arch/brotli/brotli-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/brotli/brotli-1.1.0.ebuild 
b/app-arch/brotli/brotli-1.1.0.ebuild
index 53768510bba9..364415cf690f 100644
--- a/app-arch/brotli/brotli-1.1.0.ebuild
+++ b/app-arch/brotli/brotli-1.1.0.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DISTUTILS_EXT=1
 DISTUTILS_OPTIONAL="1"
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit cmake-multilib distutils-r1 flag-o-matic
 



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

2023-09-14 Thread Michał Górny
commit: ca9d83d7b51f965de29851afa0e8ddd680271e6a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:41:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 11:21:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9d83d7

sys-kernel/vanilla-kernel: Bump to 6.5.3

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

 sys-kernel/vanilla-kernel/Manifest |   7 ++
 .../vanilla-kernel/vanilla-kernel-6.5.3.ebuild | 138 +
 2 files changed, 145 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 768651021b2f..58a27726a88d 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -1,28 +1,33 @@
 DIST gentoo-kernel-config-g3.tar.gz 4411 BLAKE2B 
00edc4b5dc943834bc7ee977382b2960160888db00a25c5a7f73968784aa39a2b3b69f0bbda89b3ce8eb55e746006cff2839481493ac8bfca6a21de2299564f7
 SHA512 
44beae869bebf5445655dafe1facc47c3dbe602b34c5bf2fa984a581bfe3250fa0df908b8807c333c2e66ab9d1a2bb8026e22140f2a1f522d0dd647c96ca4d5e
 DIST gentoo-kernel-config-g7.tar.gz 4625 BLAKE2B 
72ba0d038ee34ca5eb26d43bd373735aef3a50d02b414993ea05485e49d83d46df98a6cb0f6f3170a8ec0c99b557432fd9a11cbb92ff7c2837625a7f4469831e
 SHA512 
2d74a8ca9f5402b4290ed93cd3ddba04a7f2ff42c8d8d3f2cbbe22fc20daa0fca119368daa8af39b7a26b1b99e4e3187c3c5d95886a651675ad94ff98d686628
+DIST gentoo-kernel-config-g8.tar.gz 4663 BLAKE2B 
c832df9e2085c6ec2deef5b54195f24d2d8ee039655534f5d9c1d650e06ed2ebfe82e2e62d2119696944353321bc22eb91a0599b06c90f0ac22b280fd4aa81b6
 SHA512 
64c9a94935e7525152827a1d7ca79259f8770300c5865995d683b4c7ba5f21670681a60153ad268aa0a0ce6c2b18683e7faacdbdfb5adc6248387e7316dbb12e
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71814e1ae53f57a347f62cf31e0c1c8571ae43d9ae9be9957743c8cbc9ec74850c964eaabefe6799a28bc311ea7b99ee31391b47fb1
 SHA512 
fb77d3b73a215f97d70cd6d8c96ed20e497786b99ed7d7a7f2ed60cc1251289c1a4c7e058c41b5efac62e4a9b4b3d917dbdb11585955bba2b6584981430f4ddb
 DIST kernel-aarch64-fedora.config.5.19.13-gentoo 246842 BLAKE2B 
4a824d02999749a0404437cae28721576511e06a5eaa9ebb1b1479c74e2b54402c440be7ea9159bf304661d4baaa5381c36b266ac0bba0b9bf3820eb04c6e4e0
 SHA512 
8862cf24b177ef3871f118712ceace2b496b04a488b045bbe3d83ab22942f064995486f5534630321faaa96ce60e5f237c4ded24a5468bea6e365aa3ea9f09c4
 DIST kernel-aarch64-fedora.config.6.1.7-gentoo 252811 BLAKE2B 
f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc
 SHA512 
41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437
 DIST kernel-aarch64-fedora.config.6.4.13-gentoo 260317 BLAKE2B 
847f66694919fe7c5a6c24e8b70437e77da13dcbf0eb150a13c510a40b7f38decdda3e5f4d9314b3737fc23b95e291e8630af6a643c04db1c7006453dc1c7bd9
 SHA512 
400ec9845171bbfd58c6f136455dfcb80e31e3cfb25508e8642f817ca036f3534a7342fc9b5976f2ef11e7b8a3815c18512f5e3e1860438a94157d923c978d01
+DIST kernel-aarch64-fedora.config.6.5.2-gentoo 268615 BLAKE2B 
b32bf416971e95bc9f242da3c2d0149550c856f54fd21699dade735d22fba1f74c722ac10f3808cc49c76b1553f92a7871495ce1e5eb192ac423bff021810452
 SHA512 
55d9efcd75807e9e29d7337f799345fa39e7062319d201c66878230c088db1ef5c856cbb1937ae03e32c056ff532a7fa99df95b3e7896120a11fa5e51a2e10f8
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 
66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff
 DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 
92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b
 SHA512 
69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10
 DIST kernel-i686-fedora.config.5.15.19 33 BLAKE2B 
9e0f4dd37058f59610e46a87d3165039e76299d3c186fbfc3312101bac1b8b198de404075f5bbc6f5e2ba04cfd45f9d02bdf94b01c3ed11b9275f37f11ee7617
 SHA512 
49ffc39de86763e707a5c0c07c1367d34e9249615f29fdf97904d7b61a375a86fc4ba37a2f02b5f61e4c76ad65d9ba12716d2523af6faa003f6336d7ae61a953
 DIST kernel-i686-fedora.config.5.19.13-gentoo 223571 BLAKE2B 
d56f8e019b0c58023b08ee358a9af46679ca0f734c075ba6cd65dd6e3277640c0b7683e5707c48f687644d815a3840eb58351c0dee84fe9ec1dcea525fb2e1e8
 SHA512 

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

2023-09-14 Thread Michał Górny
commit: 5cdc1fc9eab5ad85380eccc7eb9910ac448dbb14
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 10:52:48 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 11:21:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cdc1fc9

sys-kernel/gentoo-kernel-bin: Bump to 6.5.3

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   7 ++
 .../gentoo-kernel-bin-6.5.3.ebuild | 132 +
 2 files changed, 139 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index fc7f2258c57f..1d9b4b0c9710 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -14,6 +14,8 @@ DIST genpatches-6.1-59.base.tar.xz 3488836 BLAKE2B 
5e92e2d1c4ab691284991ae953eb4
 DIST genpatches-6.1-59.extras.tar.xz 3808 BLAKE2B 
bad1dc9ff79b84c02f4f634764c6fdf5ef437c14076048d2e0b777f0ec967fe3dc544739684b50533accdf22d3d85af2c0422ba1183ba4ee26590d02c155cf5e
 SHA512 
4517bce1263d97bce0580729e0a948021734d6e546e318ab37da786a848d9c2376c9849894be9bc8028ee9afece670b86727ded1cf9857d236869c113530
 DIST genpatches-6.4-18.base.tar.xz 1040816 BLAKE2B 
61ce7d234cba40c266e92dbab80b26e9958d9501fe884ed1fe45c25a89f2385259d5776049d7ce172c05d6829a92f591652544d7a3ce3ce7c81d09ce871800f5
 SHA512 
559a4e9690a72dc76a0ab38f463149dc9221bad128b59fdafc1250b964af2ccf573ee0d4e593e98811f83325a0d10772a6a6b32bbaef50aee3c5a0d1938677d7
 DIST genpatches-6.4-18.extras.tar.xz 3700 BLAKE2B 
b360eff83abdbed397db6405b6b68649a3d6f85a37716eb2f923d47dc3ae5d738ca49c29a58dd2f236c7f50dc233641e3df15b7b75a19364b0af6261afc36d4e
 SHA512 
778791e5e9232bc432119d14a016c00e1a968af30f0a2dd931ebb4103f7f457db991eb1d9ca500d1a3c9295dbf87d9b4fab18ffaebbd46cc8c82077b27c344e6
+DIST genpatches-6.5-4.base.tar.xz 258812 BLAKE2B 
df197ed4a66568eb823c889b15f126c66b6acb9a2cef224e198e576d601f1c5d1ba43bbecf510585adb93445f2fd634889714a31101fb2dddec67da9052adb7e
 SHA512 
70b21a38cd4a2d1759819341365de33590d8d3f460d12cecd781dddbdc69e87e66f81389d8a1bea381bf74188c19b667d3c7789a92e3d8f80080982ba5d39872
+DIST genpatches-6.5-4.extras.tar.xz 3696 BLAKE2B 
ca8bf3d3b195dbfea39b27b574ea3f3e99f843604ce8ed6ffac141e2e198a4721a943d24c0bfeb559570f00985e6371c7badb69e94542af7bb291fa2485d5425
 SHA512 
db11e8db7f3fbbed7a037c4a8ebe47accefa9794e8a201e6e022adcdfc628ce3d2db9ccdcb0b0133e3b7956fdab9f63fbc3140f1759b31d2c1878f4075de9d2c
 DIST gentoo-kernel-5.10.191-1.amd64.gpkg.tar 66365440 BLAKE2B 
f7086ca26f08468b754b0cf9ce715ed763d2866ebc8ea322fb51fa2ab5146f1c7741f68b82d52a7d54442cc36cd5a114132f9ccb0809e8d0ab0da022742a48d2
 SHA512 
0f4918273c70f06756c19cd2c7738176695aba65eeaa7846aa6773d97e6d3ac4302be0328926f1a217135d21e2660e6e4124ced7f2304c0f1a408ad2561b24a5
 DIST gentoo-kernel-5.10.191-1.arm64.gpkg.tar 59392000 BLAKE2B 
feee11f6bc6148ca0a65077a33cb1736fe2d588037bfada383bff1ca9ca7ea71d6f3248a91cc9b152d87a3fb9580177a68b3748c53e2bb6e0309c7a4b9e39df3
 SHA512 
bfe38e92e445719daddc4fd87b717c652a0fbc5b3cf3fdaab40c1014229a2bf5b504642c21e5bb478d56742c56100271a7433f113c7c231382d2f226a609f837
 DIST gentoo-kernel-5.10.191-1.ppc64le.gpkg.tar 54947840 BLAKE2B 
eab70963c60d1d668ba562652b73bf47760d326ea2cd3fad8cbf91e75a9329283b9af38ee7391c4bc887c32464a6c8376844135231d155eb11916c926f8c263a
 SHA512 
58a8701b46878dd470a4210f96f65bc85aabb4c8b29aed5d1d61eff2efb1f851c38b648c50afa7cc164406ccdf8ae3bc673f73857903a17c19229f77c8e885f7
@@ -46,8 +48,13 @@ DIST gentoo-kernel-6.4.16-1.amd64.gpkg.tar 81786880 BLAKE2B 
adbe09acd265ad50d6cc
 DIST gentoo-kernel-6.4.16-1.arm64.gpkg.tar 71290880 BLAKE2B 
b42a0cf9dc72716eaf9d14137c06d8229e06a4431b50ae269bada18d977c9fad3eef9b7b5181cb8f7b35b88987ab2db17bd85b1742220ebc8d022f50eef066f6
 SHA512 
789f3bb759b470f4e29735706a73c64df0646c882c6bad3b051dd395faa89ce2c1cafceec34ff28d9c5c4adf6cca4f5eec6b875bf0e398c925431f9086f3e756
 DIST gentoo-kernel-6.4.16-1.ppc64le.gpkg.tar 63488000 BLAKE2B 
e0604a0b4bf8d7aa7a257798148fac11e0c4a072e0a775c57ddfa74681a265a775081b91e64732e45656fa303e817c2afa8f5c281ad2c5ffdc4373674d5917d3
 SHA512 
4aa5e73de475bd77f5a0e155033945b5770e761433e3cd983fe5efface2b971545439e99d0c048ed3bc21aa825d3eefa4ecf6615bd0099374c50cc0fd9e90243
 DIST gentoo-kernel-6.4.16-1.x86.gpkg.tar 65873920 BLAKE2B 
e485d659457177a9dbe88d0b246c7cd250154013e0297d3e5687262fbdad18c1f8412444189724893cb1e361c6c94add33101bd2b98a11acfc34ed64cdc3e3b1
 SHA512 
acf43cee6d8aeefc89432ddd8a24bd27d6afc8a2f82a3384c7b321bdbebad87ef87a0aee8877855ca5a31c1b434d504d26f98f5accfb123bb52b7d8d2b57352d
+DIST gentoo-kernel-6.5.3-1.amd64.gpkg.tar 83578880 BLAKE2B 
9413bc88b067e91939378315ad666ef77ce498216b5d7b7dc512fb49a9fd7739944810963ba6928a9b9959f84509ed73f9587d9a3002185cec01980bb3416926
 SHA512 
d9b187b0de20ae4774f6ab1c2100ec99bd1e2c02de3403b0a707981f838ec03605703a62a319d386b4cc3ed3618e21b005df86d08379ce06753b6e08aa18938c
+DIST gentoo-kernel-6.5.3-1.arm64.gpkg.tar 73175040 BLAKE2B 

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

2023-09-14 Thread Michał Górny
commit: 33f9afce63a9cc9ea3265152d35ad6772dc6affb
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:42:06 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 11:21:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33f9afce

sys-kernel/gentoo-kernel: Bump to 6.5.3

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

 sys-kernel/gentoo-kernel/Manifest  |   8 ++
 .../gentoo-kernel/gentoo-kernel-6.5.3.ebuild   | 147 +
 2 files changed, 155 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index a3c80cfc0aa5..a2fc40581bc9 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -14,29 +14,37 @@ DIST genpatches-6.1-59.base.tar.xz 3488836 BLAKE2B 
5e92e2d1c4ab691284991ae953eb4
 DIST genpatches-6.1-59.extras.tar.xz 3808 BLAKE2B 
bad1dc9ff79b84c02f4f634764c6fdf5ef437c14076048d2e0b777f0ec967fe3dc544739684b50533accdf22d3d85af2c0422ba1183ba4ee26590d02c155cf5e
 SHA512 
4517bce1263d97bce0580729e0a948021734d6e546e318ab37da786a848d9c2376c9849894be9bc8028ee9afece670b86727ded1cf9857d236869c113530
 DIST genpatches-6.4-18.base.tar.xz 1040816 BLAKE2B 
61ce7d234cba40c266e92dbab80b26e9958d9501fe884ed1fe45c25a89f2385259d5776049d7ce172c05d6829a92f591652544d7a3ce3ce7c81d09ce871800f5
 SHA512 
559a4e9690a72dc76a0ab38f463149dc9221bad128b59fdafc1250b964af2ccf573ee0d4e593e98811f83325a0d10772a6a6b32bbaef50aee3c5a0d1938677d7
 DIST genpatches-6.4-18.extras.tar.xz 3700 BLAKE2B 
b360eff83abdbed397db6405b6b68649a3d6f85a37716eb2f923d47dc3ae5d738ca49c29a58dd2f236c7f50dc233641e3df15b7b75a19364b0af6261afc36d4e
 SHA512 
778791e5e9232bc432119d14a016c00e1a968af30f0a2dd931ebb4103f7f457db991eb1d9ca500d1a3c9295dbf87d9b4fab18ffaebbd46cc8c82077b27c344e6
+DIST genpatches-6.5-4.base.tar.xz 258812 BLAKE2B 
df197ed4a66568eb823c889b15f126c66b6acb9a2cef224e198e576d601f1c5d1ba43bbecf510585adb93445f2fd634889714a31101fb2dddec67da9052adb7e
 SHA512 
70b21a38cd4a2d1759819341365de33590d8d3f460d12cecd781dddbdc69e87e66f81389d8a1bea381bf74188c19b667d3c7789a92e3d8f80080982ba5d39872
+DIST genpatches-6.5-4.extras.tar.xz 3696 BLAKE2B 
ca8bf3d3b195dbfea39b27b574ea3f3e99f843604ce8ed6ffac141e2e198a4721a943d24c0bfeb559570f00985e6371c7badb69e94542af7bb291fa2485d5425
 SHA512 
db11e8db7f3fbbed7a037c4a8ebe47accefa9794e8a201e6e022adcdfc628ce3d2db9ccdcb0b0133e3b7956fdab9f63fbc3140f1759b31d2c1878f4075de9d2c
 DIST gentoo-kernel-config-g7.tar.gz 4625 BLAKE2B 
72ba0d038ee34ca5eb26d43bd373735aef3a50d02b414993ea05485e49d83d46df98a6cb0f6f3170a8ec0c99b557432fd9a11cbb92ff7c2837625a7f4469831e
 SHA512 
2d74a8ca9f5402b4290ed93cd3ddba04a7f2ff42c8d8d3f2cbbe22fc20daa0fca119368daa8af39b7a26b1b99e4e3187c3c5d95886a651675ad94ff98d686628
+DIST gentoo-kernel-config-g8.tar.gz 4663 BLAKE2B 
c832df9e2085c6ec2deef5b54195f24d2d8ee039655534f5d9c1d650e06ed2ebfe82e2e62d2119696944353321bc22eb91a0599b06c90f0ac22b280fd4aa81b6
 SHA512 
64c9a94935e7525152827a1d7ca79259f8770300c5865995d683b4c7ba5f21670681a60153ad268aa0a0ce6c2b18683e7faacdbdfb5adc6248387e7316dbb12e
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71814e1ae53f57a347f62cf31e0c1c8571ae43d9ae9be9957743c8cbc9ec74850c964eaabefe6799a28bc311ea7b99ee31391b47fb1
 SHA512 
fb77d3b73a215f97d70cd6d8c96ed20e497786b99ed7d7a7f2ed60cc1251289c1a4c7e058c41b5efac62e4a9b4b3d917dbdb11585955bba2b6584981430f4ddb
 DIST kernel-aarch64-fedora.config.6.1.7-gentoo 252811 BLAKE2B 
f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc
 SHA512 
41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437
 DIST kernel-aarch64-fedora.config.6.4.13-gentoo 260317 BLAKE2B 
847f66694919fe7c5a6c24e8b70437e77da13dcbf0eb150a13c510a40b7f38decdda3e5f4d9314b3737fc23b95e291e8630af6a643c04db1c7006453dc1c7bd9
 SHA512 
400ec9845171bbfd58c6f136455dfcb80e31e3cfb25508e8642f817ca036f3534a7342fc9b5976f2ef11e7b8a3815c18512f5e3e1860438a94157d923c978d01
+DIST kernel-aarch64-fedora.config.6.5.2-gentoo 268615 BLAKE2B 
b32bf416971e95bc9f242da3c2d0149550c856f54fd21699dade735d22fba1f74c722ac10f3808cc49c76b1553f92a7871495ce1e5eb192ac423bff021810452
 SHA512 
55d9efcd75807e9e29d7337f799345fa39e7062319d201c66878230c088db1ef5c856cbb1937ae03e32c056ff532a7fa99df95b3e7896120a11fa5e51a2e10f8
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 

[gentoo-commits] data/api:master commit in: files/mirrors/

2023-09-14 Thread Florian Schmaus
commit: 10e3743dde9f4b57a01dc78eb1ed9928fd70da6a
Author: Florian Schmaus  gentoo  org>
AuthorDate: Thu Sep 14 11:20:32 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Sep 14 11:20:32 2023 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=10e3743d

distfiles: remove http belnet

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

 files/mirrors/distfiles.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/files/mirrors/distfiles.xml b/files/mirrors/distfiles.xml
index 8047f7f..3c1eb15 100644
--- a/files/mirrors/distfiles.xml
+++ b/files/mirrors/distfiles.xml
@@ -111,7 +111,6 @@ vim: ft=xml et ts=2 sts=2 sw=2:
 
   Belnet
   https://ftp.belnet.be/pub/rsync.gentoo.org/gentoo/
-  http://ftp.belnet.be/pub/rsync.gentoo.org/gentoo/
   rsync://ftp.belnet.be/gentoo/gentoo/
 
   



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/scidavis/

2023-09-14 Thread Andrew Ammerlaan
commit: c6fa2c7d707f8d39fee23bfebb3f25934b391571
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 11:08:46 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:08:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fa2c7d

sci-visualization/scidavis: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-visualization/scidavis/scidavis-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/scidavis/scidavis-2.9.0.ebuild 
b/sci-visualization/scidavis/scidavis-2.9.0.ebuild
index f1cef76015eb..1d4d6aacecf7 100644
--- a/sci-visualization/scidavis/scidavis-2.9.0.ebuild
+++ b/sci-visualization/scidavis/scidavis-2.9.0.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DOCS_BUILDER="doxygen"
 DOCS_DEPEND="media-gfx/graphviz"
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit python-single-r1 cmake docs virtualx xdg
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 111da5cfd07d832e11c0c70eb2eebcabb6e0f805
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:58:17 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111da5cf

dev-python/protobuf-python: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/protobuf-python/protobuf-python-4.23.3.ebuild | 2 +-
 dev-python/protobuf-python/protobuf-python-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/protobuf-python/protobuf-python-4.23.3.ebuild 
b/dev-python/protobuf-python/protobuf-python-4.23.3.ebuild
index ac61281fae8f..c8a33b8666b2 100644
--- a/dev-python/protobuf-python/protobuf-python-4.23.3.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-4.23.3.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 

diff --git a/dev-python/protobuf-python/protobuf-python-.ebuild 
b/dev-python/protobuf-python/protobuf-python-.ebuild
index ac61281fae8f..c8a33b8666b2 100644
--- a/dev-python/protobuf-python/protobuf-python-.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 85d2fc2b104cfc00a90c0a5da4830a7214781773
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:36:27 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d2fc2b

dev-python/pyrate-limiter: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pyrate-limiter/pyrate-limiter-2.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyrate-limiter/pyrate-limiter-2.10.0.ebuild 
b/dev-python/pyrate-limiter/pyrate-limiter-2.10.0.ebuild
index b1634af6b4c0..8830d2dc63a5 100644
--- a/dev-python/pyrate-limiter/pyrate-limiter-2.10.0.ebuild
+++ b/dev-python/pyrate-limiter/pyrate-limiter-2.10.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 14438f264f39d7526e7b80195f0d2ce2fd26d65e
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:58:30 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14438f26

dev-python/moddb: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/moddb/moddb-0.9.0.ebuild 
b/dev-python/moddb/moddb-0.9.0.ebuild
index be759ee2defd..588d82aa4a6c 100644
--- a/dev-python/moddb/moddb-0.9.0.ebuild
+++ b/dev-python/moddb/moddb-0.9.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: net-vpn/riseup-vpn/

2023-09-14 Thread Andrew Ammerlaan
commit: e9a0b3ce474067f281f4a70164752374005e2ff1
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:51:23 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a0b3ce

net-vpn/riseup-vpn: add 0.21.11_p20230412

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 net-vpn/riseup-vpn/Manifest|  2 +
 .../riseup-vpn/riseup-vpn-0.21.11_p20230412.ebuild | 89 ++
 2 files changed, 91 insertions(+)

diff --git a/net-vpn/riseup-vpn/Manifest b/net-vpn/riseup-vpn/Manifest
index e204652a89e5..31d4a840b6bc 100644
--- a/net-vpn/riseup-vpn/Manifest
+++ b/net-vpn/riseup-vpn/Manifest
@@ -2,3 +2,5 @@ DIST riseup-vpn-0.21.11-deps.tar.xz 180372544 BLAKE2B 
3679347cb3bc83850b78d42906
 DIST riseup-vpn-0.21.11.tar.gz 7595837 BLAKE2B 
a1cd09741f044d03577128ab88ba6e6d9961a1a39c0e6488d79e73ec9c94b7a0fa44463a07d2e2130fe4adf986d86a693cb3114bae99e4a4bb55d23b90f2c871
 SHA512 
b4fa6f57f97bfba364c7aa9b2a4fc08561c7753d5471424534884a3279e5ff2bd102cc254c4e15a99f6fa47ef16abf1c691d3d174eda27bbfdac61d192f6fbb1
 DIST riseup-vpn-0.21.11_p20221113-deps.tar.xz 1628980 BLAKE2B 
5af75fb2cd71da2fd949f89d1c768c001a268cc7fab0d26a621a02136eaddb8466e4cd1346954b785a5ac695bb816dd791b006b226359204670c47d4a47d25b8
 SHA512 
f0a8a657ac1aeefcf3d83b970157b600247ef228072c93c5aa1dfe062b8a9f81a4e13c44f51dc9c289f2b76de4eff516b045d3a145a905034b5a3ee263dbd68d
 DIST riseup-vpn-0.21.11_p20221113.tar.gz 7696220 BLAKE2B 
ba4c968e7b185c98e8995b300ab25ec79103473cafbd647c262d51308c173ba1a48f69b42b8dad2356791711137688a6a9a3a47e68294579be51ecd77b04bac4
 SHA512 
44157eebd266b99d146f29f621576c181a012d5965c4172fddb93232230f42f128958342891d8137bdedfb3236f132a1c73a9f45cad803b29d520393eb7d8cb4
+DIST riseup-vpn-0.21.11_p20230412-deps.tar.xz 29805564 BLAKE2B 
4105bc0461d542b7f87890a50db26fa96302088070f0477c0f8d0707994efecc8f4bc91b5316e1834f98f9890793eea9df9041de78af6785f68e480c0d384124
 SHA512 
f8a3bd099a1e3733577de892a4939a223f851e949275afea8f5a77b38a529dbf7b9b161bbb4e1518530e97027c612ae352895a79275d287c31cb41ab2477aaca
+DIST riseup-vpn-0.21.11_p20230412.tar.gz 7701340 BLAKE2B 
42564c1a3a3401c909f41e2db3f232ed06617630a4f96a28a3d946e6e3c53337cde8401e8a89b0e83824cfb4fe8a670f4aec03eb09cc6c9b1b4e94111e0a04ff
 SHA512 
966b64a8071ebe56d1ec8b43b36c7b168600b445ca6039fa7fc6696329e8eb825c0d3f20e4ff509128acf1b962676eb4dfea5aa6890afc394a0aa218799eb61d

diff --git a/net-vpn/riseup-vpn/riseup-vpn-0.21.11_p20230412.ebuild 
b/net-vpn/riseup-vpn/riseup-vpn-0.21.11_p20230412.ebuild
new file mode 100644
index ..a98d4dc91b7a
--- /dev/null
+++ b/net-vpn/riseup-vpn/riseup-vpn-0.21.11_p20230412.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit desktop python-single-r1 go-module qmake-utils virtualx xdg
+
+COMMIT="ec3f27147f2f72cebedf12ae0cc40277b78e998e"
+
+DESCRIPTION="Anonymous encrypted VPN client powered by Bitmask"
+HOMEPAGE="https://riseup.net/en/vpn https://0xacab.org/leap/bitmask-vpn 
https://bitmask.net;
+SRC_URI="
+   https://0xacab.org/leap/bitmask-vpn/-/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz
+   https://dev.gentoo.org/~andrewammerlaan/${P}-deps.tar.xz
+"
+S="${WORKDIR}/bitmask-vpn-${COMMIT}"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+IUSE="test"
+PROPERTIES="test_network"
+RESTRICT="test"
+# The tests require internet access to connect to Riseup Networks
+
+# Generated with dev-go/golicense
+LICENSE="GPL-3 BSD-2 CC0-1.0 MIT BSD"
+KEYWORDS="~amd64"
+SLOT="0"
+
+BDEPEND="
+   virtual/pkgconfig
+   dev-qt/linguist-tools
+   test? ( dev-qt/qttest:5 )
+"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdeclarative:5[widgets]
+   dev-qt/qtquickcontrols:5[widgets]
+   dev-qt/qtquickcontrols2:5[widgets]
+   dev-qt/qtsvg:5
+"
+
+RDEPEND="${DEPEND}
+   ${PYTHON_DEPS}
+   net-vpn/openvpn
+   sys-auth/polkit
+"
+
+PATCHES=(
+   
"${FILESDIR}/${PN}-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch"
+)
+
+src_prepare() {
+   default
+
+   # do not pre-strip
+   sed -i -e '/strip $RELEASE\/$TARGET/d' gui/build.sh || die
+
+   # We need qmake and lrelease from  qt5 bin dir
+   export PATH="${PATH}:$(qt5_get_bindir)" || die
+}
+
+src_compile() {
+   emake build
+}
+
+src_test() {
+   emake test
+   virtx emake test_ui
+}
+
+src_install() {
+   einstalldocs
+
+   dobin "build/qt/release/riseup-vpn"
+
+   python_scriptinto /usr/sbin
+   python_doscript "pkg/pickle/helpers/bitmask-root"
+
+   insinto /usr/share/polkit-1/actions
+   newins "pkg/pickle/helpers/se.leap.bitmask.policy" 
se.leap.bitmask.riseupvpn.policy
+
+   newicon -s scalable "providers/riseup/assets/icon.svg" riseup.svg
+   make_desktop_entry "${PN}" RiseupVPN riseup Network
+
+   dodoc -r docs/*
+}



[gentoo-commits] repo/gentoo:master commit in: games-util/lutris/

2023-09-14 Thread Andrew Ammerlaan
commit: 295e8706c00f823eb3cdd165e9fdb5d00426127e
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 11:01:09 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295e8706

games-util/lutris: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 games-util/lutris/lutris-0.5.13-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/lutris/lutris-0.5.13-r3.ebuild 
b/games-util/lutris/lutris-0.5.13-r3.ebuild
index 602a81d8f9fa..c88c425a66d6 100644
--- a/games-util/lutris/lutris-0.5.13-r3.ebuild
+++ b/games-util/lutris/lutris-0.5.13-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="sqlite,threads(+)"
 
 inherit meson python-single-r1 optfeature virtualx xdg



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

2023-09-14 Thread Andrew Ammerlaan
commit: 44b7847627d48ff2c7e6f24a80cbe9560112a1df
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:16:20 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b78476

dev-python/pyspelling: drop myself as a maintainer

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pyspelling/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/pyspelling/metadata.xml 
b/dev-python/pyspelling/metadata.xml
index f2f1fdc55a35..146f18f871be 100644
--- a/dev-python/pyspelling/metadata.xml
+++ b/dev-python/pyspelling/metadata.xml
@@ -5,10 +5,6 @@
lssndrbarbi...@gmail.com
Alessandro Barbieri

-   
-   andrewammerl...@gentoo.org
-   Andrew Ammerlaan
-   

proxy-ma...@gentoo.org
Proxy Maintainers



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

2023-09-14 Thread Andrew Ammerlaan
commit: 996c7dae183a1caa904b6ed363b90ee0076a4169
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:52:32 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=996c7dae

sci-libs/rtree: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/rtree/rtree-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/rtree/rtree-1.0.0.ebuild 
b/sci-libs/rtree/rtree-1.0.0.ebuild
index 2892a9c457f2..6a3c861b0013 100644
--- a/sci-libs/rtree/rtree-1.0.0.ebuild
+++ b/sci-libs/rtree/rtree-1.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 PYPI_PN=${PN^}



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

2023-09-14 Thread Andrew Ammerlaan
commit: 6a7fb941465250d96ea5e91d1a9ef62ad1f6e248
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:38:09 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7fb941

dev-python/sphinxcontrib-bibtex: drop myself as a maintainer

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/sphinxcontrib-bibtex/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/sphinxcontrib-bibtex/metadata.xml 
b/dev-python/sphinxcontrib-bibtex/metadata.xml
index de28e3ff7b05..90f7dde4d2f7 100644
--- a/dev-python/sphinxcontrib-bibtex/metadata.xml
+++ b/dev-python/sphinxcontrib-bibtex/metadata.xml
@@ -1,10 +1,6 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   andrewammerl...@gentoo.org
-   Andrew Ammerlaan
-   

pyt...@gentoo.org
Python



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

2023-09-14 Thread Andrew Ammerlaan
commit: a09a325571bbe199f885e75a829fab02cd4926aa
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:31:15 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a09a3255

dev-python/qdarkstyle: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/qdarkstyle/qdarkstyle-3.1.ebuild 
b/dev-python/qdarkstyle/qdarkstyle-3.1.ebuild
index 602042a1e973..1ef2f4f8a6d1 100644
--- a/dev-python/qdarkstyle/qdarkstyle-3.1.ebuild
+++ b/dev-python/qdarkstyle/qdarkstyle-3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 PYPI_PN="QDarkStyle"



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

2023-09-14 Thread Andrew Ammerlaan
commit: 706e8a4a3c297ac9f9a696bbef44dd5f41897ec6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:31:36 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706e8a4a

dev-python/qdarkstyle: add github upstream metadata

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/qdarkstyle/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/qdarkstyle/metadata.xml 
b/dev-python/qdarkstyle/metadata.xml
index 73eb8f7380ec..c46f6065da11 100644
--- a/dev-python/qdarkstyle/metadata.xml
+++ b/dev-python/qdarkstyle/metadata.xml
@@ -7,6 +7,7 @@


QDarkStyle
+   ColinDuquesnoy/QDarkStyleSheet


 



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

2023-09-14 Thread Andrew Ammerlaan
commit: b3761352645cfb199587cea8aefb53b04d3be7ed
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:30:30 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3761352

dev-python/qtsass: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/qtsass/qtsass-0.4.0.ebuild 
b/dev-python/qtsass/qtsass-0.4.0.ebuild
index 6a48bafa1f06..bb613b616a92 100644
--- a/dev-python/qtsass/qtsass-0.4.0.ebuild
+++ b/dev-python/qtsass/qtsass-0.4.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1



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

2023-09-14 Thread Andrew Ammerlaan
commit: 044546cff1c050d93d269e23e856c52b551716c3
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:25:57 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=044546cf

dev-python/httpretty: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/httpretty/httpretty-1.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/httpretty/httpretty-1.1.4-r1.ebuild 
b/dev-python/httpretty/httpretty-1.1.4-r1.ebuild
index 66cda53cbaf6..13a6a1c00021 100644
--- a/dev-python/httpretty/httpretty-1.1.4-r1.ebuild
+++ b/dev-python/httpretty/httpretty-1.1.4-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 30349b50dd2f6abc95c5df6efe7dd1351b625d9e
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:35:04 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30349b50

dev-python/sphinxcontrib-autoprogram: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 .../sphinxcontrib-autoprogram/sphinxcontrib-autoprogram-0.1.8.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-autoprogram/sphinxcontrib-autoprogram-0.1.8.ebuild 
b/dev-python/sphinxcontrib-autoprogram/sphinxcontrib-autoprogram-0.1.8.ebuild
index 115a4f879a5d..64dae6cc3294 100644
--- 
a/dev-python/sphinxcontrib-autoprogram/sphinxcontrib-autoprogram-0.1.8.ebuild
+++ 
b/dev-python/sphinxcontrib-autoprogram/sphinxcontrib-autoprogram-0.1.8.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 0cc814a5ac2cbbb877494632e7cad620646a9383
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:27:08 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc814a5

dev-python/pyzotero: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/pyzotero/pyzotero-1.5.10.ebuild 
b/dev-python/pyzotero/pyzotero-1.5.10.ebuild
index 9d9ad538c0fd..60101efb1fe5 100644
--- a/dev-python/pyzotero/pyzotero-1.5.10.ebuild
+++ b/dev-python/pyzotero/pyzotero-1.5.10.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: f94b99083254c68b065450a82b0cbbbde9a174d7
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:19:39 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94b9908

dev-python/python-vlc: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/python-vlc/python-vlc-3.0.18122.ebuild 
b/dev-python/python-vlc/python-vlc-3.0.18122.ebuild
index b2f7d18b3207..439e4eb3f722 100644
--- a/dev-python/python-vlc/python-vlc-3.0.18122.ebuild
+++ b/dev-python/python-vlc/python-vlc-3.0.18122.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit distutils-r1 pypi
 
 DESCRIPTION="Python ctypes-based bindings for libvlc"



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

2023-09-14 Thread Andrew Ammerlaan
commit: 8d47db9761a7f4216623484655a5f8f6b0703c9f
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:19:55 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d47db97

dev-python/python-vlc: add github upstream metadata

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/python-vlc/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/python-vlc/metadata.xml 
b/dev-python/python-vlc/metadata.xml
index 05fe95904834..cf133fabb08d 100644
--- a/dev-python/python-vlc/metadata.xml
+++ b/dev-python/python-vlc/metadata.xml
@@ -9,5 +9,6 @@


python-vlc
+   oaubert/python-vlc

 



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

2023-09-14 Thread Andrew Ammerlaan
commit: be279e46121144c51aa755f9a8bcce70f113c2d3
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:32:37 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be279e46

dev-python/qtawesome: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/qtawesome/qtawesome-1.2.3.ebuild 
b/dev-python/qtawesome/qtawesome-1.2.3.ebuild
index 06ebfb846aa6..1eeae2279bf5 100644
--- a/dev-python/qtawesome/qtawesome-1.2.3.ebuild
+++ b/dev-python/qtawesome/qtawesome-1.2.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 pypi virtualx



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

2023-09-14 Thread Andrew Ammerlaan
commit: 769619f1c51a5df7d0194eb1837531b5268305b1
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:18:42 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=769619f1

dev-python/pytest-order: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pytest-order/pytest-order-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-order/pytest-order-1.1.0.ebuild 
b/dev-python/pytest-order/pytest-order-1.1.0.ebuild
index c8abacea46ae..cefd5410a82e 100644
--- a/dev-python/pytest-order/pytest-order-1.1.0.ebuild
+++ b/dev-python/pytest-order/pytest-order-1.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pydata-sphinx-theme/

2023-09-14 Thread Andrew Ammerlaan
commit: 63c82fa8e651464f10508f944311dd02061fcf68
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:05:53 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c82fa8

dev-python/pydata-sphinx-theme: enable py3.12, restrict to sphinx-6

Closes: https://bugs.gentoo.org/892345
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 ...sphinx-theme-0.13.3.ebuild => pydata-sphinx-theme-0.13.3-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3.ebuild 
b/dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3-r1.ebuild
similarity index 93%
rename from dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3.ebuild
rename to dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3-r1.ebuild
index 60f667f739e9..e2e87eb25f6b 100644
--- a/dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3.ebuild
+++ b/dev-python/pydata-sphinx-theme/pydata-sphinx-theme-0.13.3-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=standalone
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 
@@ -32,6 +32,7 @@ RDEPEND="
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
>=dev-python/sphinx-4.2[${PYTHON_USEDEP}]
+   

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

2023-09-14 Thread Andrew Ammerlaan
commit: 00fe800a693a38f9f23ba0cb18794020c1c21f9f
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:16:06 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00fe800a

dev-python/pyspelling: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/pyspelling/pyspelling-2.9.ebuild 
b/dev-python/pyspelling/pyspelling-2.9.ebuild
index d491558b8691..921df21e8e39 100644
--- a/dev-python/pyspelling/pyspelling-2.9.ebuild
+++ b/dev-python/pyspelling/pyspelling-2.9.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=hatchling
 
 DOCS_BUILDER="mkdocs"



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

2023-09-14 Thread Andrew Ammerlaan
commit: d59a3b8825e519f1fc1042a25d89ddf4efc65a80
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 10:11:08 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 11:01:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d59a3b88

dev-python/pymdown-lexers: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pymdown-lexers/pymdown-lexers-0_pre20210902.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pymdown-lexers/pymdown-lexers-0_pre20210902.ebuild 
b/dev-python/pymdown-lexers/pymdown-lexers-0_pre20210902.ebuild
index 406a7f34ab4d..7ae354540dc9 100644
--- a/dev-python/pymdown-lexers/pymdown-lexers-0_pre20210902.ebuild
+++ b/dev-python/pymdown-lexers/pymdown-lexers-0_pre20210902.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-db/pgbadger/

2023-09-14 Thread 罗百科
commit: 6bbc8682adc8967c691f4aceee2d0433f2d71e6c
Author: Patrick Lauer  gentoo  org>
AuthorDate: Thu Sep 14 10:44:34 2023 +
Commit: 罗百科  gentoo  org>
CommitDate: Thu Sep 14 10:44:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bbc8682

dev-db/pgbadger: add 12.2

Signed-off-by: Patrick Lauer  gentoo.org>

 dev-db/pgbadger/Manifest |  1 +
 dev-db/pgbadger/pgbadger-12.2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-db/pgbadger/Manifest b/dev-db/pgbadger/Manifest
index 4c1a7d3d1310..6e54e56f30c0 100644
--- a/dev-db/pgbadger/Manifest
+++ b/dev-db/pgbadger/Manifest
@@ -1,3 +1,4 @@
 DIST pgbadger-11.5.tar.gz 2305597 BLAKE2B 
1e88e52ac5861343e7122784f3ec1ecc38e67a2737db49a05661de473c990992f924c887eb86e34d3ca80d329c01af4a60893af5436d8a291bbeae0d7fdc0e81
 SHA512 
ed02066250539d339d5b784522eac37580873e8a5adde5b565cf6d11447fad469cc23b4ab88425b0322521b4ededd1f5a24670b0b9fdbd65aaa31e4e4088
 DIST pgbadger-11.8.tar.gz 2987593 BLAKE2B 
f6f5aeaba4aa2d982a3b71463bd6a02e47078d2491a703bdbeb81b349790807eaca91794be7b850dfea86615f9e8142f0513af2f68e3ff3fd0908ac50645bf18
 SHA512 
78082a4c9c4ca1836825d5b1718555951f29630b26eff20f30dab03d3cb30395107d6854e09f47143fb099ccfdb8d7c9319bc80f787792a33cdda70abef7bb38
 DIST pgbadger-12.1.tar.gz 3041661 BLAKE2B 
0489b52a56b20442f4ad9c2f22c63eee7049ad93b65166d4d87a96aebf8ca20dd3709291fed4a31df77c0c49e4efa10a66d9c185b9f7f66818057aca1a83a607
 SHA512 
16cdb64cd425b58d9f13a4ffe06eb79aeb0238c585e325ed7f1613a32a960fb19a5871c29ebd082ffc52b063b8da16d22ded1367e47557473389ead001dffc06
+DIST pgbadger-12.2.tar.gz 3044596 BLAKE2B 
ab25e4b52099fa22d8e0bbcc1e0702fc9ec0982e00027a28e3b5735d456058d7b2f2b67dc1e9c857fb87bcea7ae273eeb3b97a260fb5387ccd768057e11a826b
 SHA512 
b07dba94a0eb57cf8559439660204fd40cb3f2a9fc9a8fd4c0200af1b41a13bad2bd908f9019ecabce2f17c76fcb6d364b2b3b64c64028d4e40665df1075bd5d

diff --git a/dev-db/pgbadger/pgbadger-12.2.ebuild 
b/dev-db/pgbadger/pgbadger-12.2.ebuild
new file mode 100644
index ..ad3eca1581d2
--- /dev/null
+++ b/dev-db/pgbadger/pgbadger-12.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit perl-module
+
+DESCRIPTION="pgBadger is a PostgreSQL log analyzer"
+HOMEPAGE="https://pgbadger.darold.net/;
+SRC_URI="https://github.com/darold/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   dev-perl/JSON-XS
+   dev-perl/Text-CSV_XS
+   dev-perl/Pod-Markdown
+"
+RDEPEND="${DEPEND}"
+
+src_test() {
+   prove || die
+}



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

2023-09-14 Thread Andrew Ammerlaan
commit: 01887e8b15559a1fa132fb69e5d90342a953
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:55:29 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0188

dev-python/mkdocs-redirects: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/mkdocs-redirects/mkdocs-redirects-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/mkdocs-redirects/mkdocs-redirects-1.2.1.ebuild 
b/dev-python/mkdocs-redirects/mkdocs-redirects-1.2.1.ebuild
index 16441c90628c..76f80f411a9b 100644
--- a/dev-python/mkdocs-redirects/mkdocs-redirects-1.2.1.ebuild
+++ b/dev-python/mkdocs-redirects/mkdocs-redirects-1.2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-minify-plugin/

2023-09-14 Thread Andrew Ammerlaan
commit: 5d9d953481cf0208b071bac2b6b6d483d1fd2a86
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:57:13 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:58:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d9d9534

dev-python/mkdocs-minify-plugin: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.1.ebuild 
b/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.1.ebuild
index 55254d02d421..544af812a886 100644
--- a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.1.ebuild
+++ b/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: d36c70c5df22a0d87cdfa5d3292fcf53aa813564
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:42:00 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36c70c5

media-gfx/cairosvg: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 media-gfx/cairosvg/cairosvg-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/cairosvg/cairosvg-2.7.1.ebuild 
b/media-gfx/cairosvg/cairosvg-2.7.1.ebuild
index 3c145a77d588..04d09bd6bfeb 100644
--- a/media-gfx/cairosvg/cairosvg-2.7.1.ebuild
+++ b/media-gfx/cairosvg/cairosvg-2.7.1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 PYPI_PN="CairoSVG"
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 1008576f77440e3d61815449bf474569a49e7448
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:41:41 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1008576f

dev-python/cairocffi: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/cairocffi/cairocffi-1.6.1.ebuild 
b/dev-python/cairocffi/cairocffi-1.6.1.ebuild
index 1f44c535dd33..7473a5d1001f 100644
--- a/dev-python/cairocffi/cairocffi-1.6.1.ebuild
+++ b/dev-python/cairocffi/cairocffi-1.6.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1 pypi virtualx
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 7471e62b91af312a34c3debc85f277b59cffe39b
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:54:23 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7471e62b

dev-python/twine: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/twine/twine-4.0.2.ebuild 
b/dev-python/twine/twine-4.0.2.ebuild
index ba821c857540..8511365db4df 100644
--- a/dev-python/twine/twine-4.0.2.ebuild
+++ b/dev-python/twine/twine-4.0.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 9b64c6ffe26873a43e1f4a784505415f1dd55da6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:23:01 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b64c6ff

dev-python/mkdocs-bootswatch: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild 
b/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild
index e5f411c1b7be..bcfe58a5acfd 100644
--- a/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild
+++ b/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 DOCS_BUILDER="mkdocs"
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: dec4ea2f95967b1a7e4b8948b3b32bef54314608
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:50:20 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec4ea2f

dev-python/bleach: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/bleach/bleach-6.0.0.ebuild 
b/dev-python/bleach/bleach-6.0.0.ebuild
index 05c0eb3e2c36..8c1baa5d6b9d 100644
--- a/dev-python/bleach/bleach-6.0.0.ebuild
+++ b/dev-python/bleach/bleach-6.0.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: f300c2766e985d91ef4bb182f8b719da25a05199
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:51:27 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f300c276

dev-python/readme-renderer: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/readme-renderer/readme-renderer-41.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/readme-renderer/readme-renderer-41.0.ebuild 
b/dev-python/readme-renderer/readme-renderer-41.0.ebuild
index b1db68ac2213..c40ffa3184a5 100644
--- a/dev-python/readme-renderer/readme-renderer-41.0.ebuild
+++ b/dev-python/readme-renderer/readme-renderer-41.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 6b8592257efd9fbdb6c3e5b15c2a13d8424ad9b4
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:20:18 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b859225

dev-python/mkdocs: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/mkdocs/mkdocs-1.5.2.ebuild 
b/dev-python/mkdocs/mkdocs-1.5.2.ebuild
index a0bcef4a8a6a..41334a8dad84 100644
--- a/dev-python/mkdocs/mkdocs-1.5.2.ebuild
+++ b/dev-python/mkdocs/mkdocs-1.5.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 12a940420d8028efbd7788ef5653a8f7f76979b6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:21:12 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a94042

dev-python/mkautodoc: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/mkautodoc/mkautodoc-0.2.0.ebuild 
b/dev-python/mkautodoc/mkautodoc-0.2.0.ebuild
index 13b36aecd4e9..21a8f0916c1f 100644
--- a/dev-python/mkautodoc/mkautodoc-0.2.0.ebuild
+++ b/dev-python/mkautodoc/mkautodoc-0.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 5ee16e9ab2477f65fe5746d73fc607dc536cd474
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:17:43 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ee16e9a

dev-python/importlib-metadata: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/importlib-metadata/importlib-metadata-6.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/importlib-metadata/importlib-metadata-6.8.0.ebuild 
b/dev-python/importlib-metadata/importlib-metadata-6.8.0.ebuild
index 9f6ac340f080..67f495f16cf3 100644
--- a/dev-python/importlib-metadata/importlib-metadata-6.8.0.ebuild
+++ b/dev-python/importlib-metadata/importlib-metadata-6.8.0.ebuild
@@ -7,7 +7,7 @@ EAPI=8
 DISTUTILS_USE_PEP517=flit
 # NB: this package extends beyond built-in importlib stuff in py3.8+
 # new entry_point API not yet included in cpython release
-PYTHON_COMPAT=( pypy3 python3_{10..11} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 pypi
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 6cb1b2f58cdc1eccba1718bc91053f8789baa590
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:22:08 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb1b2f5

dev-python/mkdocs-bootstrap: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/mkdocs-bootstrap/mkdocs-bootstrap-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/mkdocs-bootstrap/mkdocs-bootstrap-1.1.1.ebuild 
b/dev-python/mkdocs-bootstrap/mkdocs-bootstrap-1.1.1.ebuild
index 22107fefe4eb..beeab9567df3 100644
--- a/dev-python/mkdocs-bootstrap/mkdocs-bootstrap-1.1.1.ebuild
+++ b/dev-python/mkdocs-bootstrap/mkdocs-bootstrap-1.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 DOCS_BUILDER="mkdocs"
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 64e938724cf03453189123b23754164192e9ef19
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:18:22 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:57:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e93872

dev-python/ghp-import: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/ghp-import/ghp-import-2.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ghp-import/ghp-import-2.1.0-r1.ebuild 
b/dev-python/ghp-import/ghp-import-2.1.0-r1.ebuild
index f5fc57743b5f..97907ba36d1d 100644
--- a/dev-python/ghp-import/ghp-import-2.1.0-r1.ebuild
+++ b/dev-python/ghp-import/ghp-import-2.1.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 



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

2023-09-14 Thread Alexys Jacob
commit: 4bf5d818a66094d29b7f0c12f8b66cf92a48609e
Author: Alexys Jacob  gentoo  org>
AuthorDate: Thu Sep 14 09:25:48 2023 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Sep 14 09:26:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bf5d818

x11-misc/py3status: add 3.53, drop 3.52

Signed-off-by: Alexys Jacob  gentoo.org>

 x11-misc/py3status/Manifest | 2 +-
 x11-misc/py3status/{py3status-3.52.ebuild => py3status-3.53.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest
index db1164e43218..58c6b4842ce7 100644
--- a/x11-misc/py3status/Manifest
+++ b/x11-misc/py3status/Manifest
@@ -1,2 +1,2 @@
 DIST py3status-3.51.tar.gz 421336 BLAKE2B 
917f7df5ac3825f0a5149f3f180ee4d9286936e8f7505b1004200021150d4d81f38e78c92fe8cc1d0c57c85c4210b6e10afab9406c6cf9f60ee896bd8a259e05
 SHA512 
b128d41c7fab59b79b8cd9dd8cc2c7ef27c5021dc5e14ae4430da0b87331a62ca81c80c611342749b3c886e1b5bd842bfe79b43cd56c58d773c0b08220f71f53
-DIST py3status-3.52.tar.gz 417603 BLAKE2B 
4817362f542a832659af06a832aea6fb2663b248abed8e73bdaf2b77ed5a4929865b48bf3cc23b8ba52d0e30bbbfc54cb3b206e25fbcc89cea6bcd8cf475b888
 SHA512 
26c4b78188aef794a92d36fc6906d4c0b8ac397d35a283d129bafc0a131279b5944d85fc453b52e0221d329a61af9f411e5b155d4bac167e8430759ed9501559
+DIST py3status-3.53.tar.gz 420774 BLAKE2B 
dabea8a021375890bba608178c0f43be6309b857a106176f64970b497507a001ddc5ab4cda28849e20da87533add8dad73c755bf8b495623aa14f69e26a01eef
 SHA512 
a44e3ac928a0715d34e34bf51b48b3b299c71b98d43d29e2f3aa3bf713accee2606baf5e28d92607cf6848c2a7919f131ce7a4cb8d2ec10ea96ba9834cefee63

diff --git a/x11-misc/py3status/py3status-3.52.ebuild 
b/x11-misc/py3status/py3status-3.53.ebuild
similarity index 100%
rename from x11-misc/py3status/py3status-3.52.ebuild
rename to x11-misc/py3status/py3status-3.53.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/mdx-gh-links/

2023-09-14 Thread Andrew Ammerlaan
commit: 05e3ef7fafd740a1f1e5767280c59bccff8ff8d7
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:15:39 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:15:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e3ef7f

dev-python/mdx-gh-links: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/mdx-gh-links/mdx-gh-links-0.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/mdx-gh-links/mdx-gh-links-0.3.1.ebuild 
b/dev-python/mdx-gh-links/mdx-gh-links-0.3.1.ebuild
index 6195e4bdef7d..3e947d7ea586 100644
--- a/dev-python/mdx-gh-links/mdx-gh-links-0.3.1.ebuild
+++ b/dev-python/mdx-gh-links/mdx-gh-links-0.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1



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

2023-09-14 Thread Andrew Ammerlaan
commit: c873e809cc26aa579ad58085e8c05f3a7127ff31
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:13:30 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:13:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c873e809

dev-python/textdistance: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/textdistance/textdistance-4.5.0.ebuild 
b/dev-python/textdistance/textdistance-4.5.0.ebuild
index 76d16b52a4ce..1e4219208063 100644
--- a/dev-python/textdistance/textdistance-4.5.0.ebuild
+++ b/dev-python/textdistance/textdistance-4.5.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



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

2023-09-14 Thread Andrew Ammerlaan
commit: 524f5d91aa54d596c9320b6e84ce0ee6f964b3cc
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 09:08:58 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 09:08:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=524f5d91

profiles: mask dev-python/abydos for removal

Bug: https://bugs.gentoo.org/887845
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 profiles/package.mask | 8 
 1 file changed, 8 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 8e1c4425e526..bc2200b89df3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Andrew Ammerlaan  (2023-09-14)
+# No longer a test dependency of dev-python/textdistance, now fails tests
+# with the latest numpy. Upstream inactive and we already need patching for
+# python 3.10 compatibility. No other reverse dependencies.
+# Bug: https://bugs.gentoo.org/887845
+# Removal on 2023-10-14
+dev-python/abydos
+
 # Andreas K. Hüttel  (2023-09-11)
 # Dead project accumulating open bugs and incompatibilities.
 #



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

2023-09-14 Thread Andrew Ammerlaan
commit: 155a3f7e540554ffd19e914cc8b54c9725522797
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 08:59:56 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 08:59:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155a3f7e

media-gfx/libredwg: drop 0.12.5-r1, 0.12.5.5865

Closes: https://bugs.gentoo.org/905443
Closes: https://bugs.gentoo.org/896222
Bug: https://bugs.gentoo.org/905327
Bug: https://bugs.gentoo.org/856034
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 media-gfx/libredwg/Manifest|   2 -
 media-gfx/libredwg/libredwg-0.12.5-r1.ebuild   | 113 -
 media-gfx/libredwg/libredwg-0.12.5.5865.ebuild | 113 -
 3 files changed, 228 deletions(-)

diff --git a/media-gfx/libredwg/Manifest b/media-gfx/libredwg/Manifest
index 7086d173faed..2c0c7da460f3 100644
--- a/media-gfx/libredwg/Manifest
+++ b/media-gfx/libredwg/Manifest
@@ -1,5 +1,3 @@
-DIST libredwg-0.12.5.5865.tar.gz 18891945 BLAKE2B 
d779963d29c484e806549a530655041000c79277bbd53795b81b211e63c18e9aa112fa6b6f495dd6f950ac70019cae000b28c76c531d0d942e349ab92295e10a
 SHA512 
24443ca405b33347f43dddf46346b23cb76e5209a7e4451bb5cfc467569df0784cea86a96aaf349aa7b59adb5c38059292ca3c8a831796232fd29b3fad6240b6
 DIST libredwg-0.12.5.6149.tar.gz 18995120 BLAKE2B 
5e2698ef3edcdc99e658ac3d9f6ee4090b8e82518c655e4e3d837477b770adae3b159fab98ed3a802d61fcc831dfad3560a93eb268e8ac60aa32f2bb3f74b02a
 SHA512 
e5deca193239c686ecb21aea9bd03005b1983fa9e5eb9c5d0fa4ecf00b3a990f4caaae3abed62bbc7bdf720f9e9d17466d519aa8390fa0109241dcc0eb0a4b40
 DIST libredwg-0.12.5.6321.tar.gz 20413375 BLAKE2B 
4645228ca6e4b8624df33b5584b3645a7e40cfa4840b7fd2473cb1b062c61973d89e0fdaf108ca8105835b3c5f4197d030339798c08a2c790b0ead2595b69bd4
 SHA512 
25ac81e4a6db1f0dea201a24b3cff7a865a18e67e1fa8fbdcecc4e95542812eb66907612593c9afa93aad51fa0e107226b495a477ceed76af4b8b71eadd99e5e
-DIST libredwg-0.12.5.tar.gz 16855123 BLAKE2B 
2ca0bfafdb0ca6e412d3aaf7df21f80a2eed4bad795bffacc1c767f23dc555b35b2aeedb35dffab099c5dbab2890f9363cfc1508c3fec16a6ff51ce79a272e3e
 SHA512 
0b5da6e863410d9ce012d311e921a39fa0d9cb6d96d17f1df70ca767c1768cd625e35503f24830a6a33400ede92d14b36ce87b92f177a5af7e6d4573920cf50c
 DIST libredwg-85695f3d5903b1cd5b4030efe50db3b4f5f3c928.tar.gz 12597 BLAKE2B 
cd01f6c446d5d129545fdae07c0101d133e1f4e69ee62e94c27c3c2853dcc30854f40aed0c6f38f6594c5f5eb9e7b2d18d3b2e4f487b7bf1a3f7f39facde38bc
 SHA512 
1d08cfa6216e0fe671dab77a0bd0b4ef0c4eb174878eba909c680e0ee93a82079b3cbf60afe2de7b0078258de8bcc588961e59cf0c14fe5f2d1f70db639ef95a

diff --git a/media-gfx/libredwg/libredwg-0.12.5-r1.ebuild 
b/media-gfx/libredwg/libredwg-0.12.5-r1.ebuild
deleted file mode 100644
index 5e2741282d80..
--- a/media-gfx/libredwg/libredwg-0.12.5-r1.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DOCS_BUILDER="doxygen"
-# File is hardcoded to be run from ../ so we use this instead of DOCS_DIR
-DOCS_CONFIG_NAME="doc/Doxyfile"
-
-inherit autotools docs python-single-r1 perl-functions
-
-JSMN_COMMIT="85695f3d5903b1cd5b4030efe50db3b4f5f3c928"
-
-DESCRIPTION="C library to handle DWG files"
-HOMEPAGE="https://www.gnu.org/software/libredwg/;
-SRC_URI="
-   https://github.com/LibreDWG/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz
-   https://github.com/zserge/jsmn/archive/${JSMN_COMMIT}.tar.gz -> 
${PN}-${JSMN_COMMIT}.tar.gz
-"
-
-LICENSE="GPL-3+ MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# https://github.com/LibreDWG/libredwg/issues/342
-RESTRICT="test"
-
-IUSE="debug python perl static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   python? ( ${PYTHON_DEPS} )
-   perl? ( dev-lang/perl )
-   dev-libs/libpcre2
-   dev-libs/pslib
-"
-DEPEND="${RDEPEND}
-   python? ( dev-lang/swig )
-   perl? ( dev-lang/swig )
-"
-BDEPEND="|| (
-   sys-devel/gcc[sanitize]
-   sys-libs/compiler-rt-sanitizers[asan(-)]
-   )
-   dev-vcs/git
-"
-
-src_unpack() {
-   # Build system really wants jsmn to be here
-   default
-   rm -r "${S}/jsmn" || die
-   mv "${WORKDIR}/jsmn-${JSMN_COMMIT}" "${S}/jsmn" || die
-}
-
-src_prepare() {
-   default
-   # Fix variable references itself error, fails in src_install otherwise.
-   sed -i -e 
's/TEXINPUTS="$(TEXINPUTS)$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/TEXINPUTS="$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/g'
 doc/Makefile.am || die
-   # https://github.com/LibreDWG/libredwg/issues/404
-   # Workaround: release tarball does not include dwg2ps.1.
-   # Upstream autotools stuff has to be run in git repo
-   git init -q || die
-   git config --global user.email "la...@gentoo.org" || die
-   git config --global user.name "Larry the Cow" || die
-   git add . || die
-   git commit -qm 'init' || die
-   git tag 

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

2023-09-14 Thread Andrew Ammerlaan
commit: 91d2178cc61c4705cfbc8cb242656c7b2cc930d6
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep 14 08:58:33 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 08:58:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d2178c

media-gfx/libredwg: add 0.12.5.6321

Closes: https://bugs.gentoo.org/909301
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 media-gfx/libredwg/Manifest|   1 +
 media-gfx/libredwg/libredwg-0.12.5.6321.ebuild | 114 +
 2 files changed, 115 insertions(+)

diff --git a/media-gfx/libredwg/Manifest b/media-gfx/libredwg/Manifest
index 159e5af27422..7086d173faed 100644
--- a/media-gfx/libredwg/Manifest
+++ b/media-gfx/libredwg/Manifest
@@ -1,4 +1,5 @@
 DIST libredwg-0.12.5.5865.tar.gz 18891945 BLAKE2B 
d779963d29c484e806549a530655041000c79277bbd53795b81b211e63c18e9aa112fa6b6f495dd6f950ac70019cae000b28c76c531d0d942e349ab92295e10a
 SHA512 
24443ca405b33347f43dddf46346b23cb76e5209a7e4451bb5cfc467569df0784cea86a96aaf349aa7b59adb5c38059292ca3c8a831796232fd29b3fad6240b6
 DIST libredwg-0.12.5.6149.tar.gz 18995120 BLAKE2B 
5e2698ef3edcdc99e658ac3d9f6ee4090b8e82518c655e4e3d837477b770adae3b159fab98ed3a802d61fcc831dfad3560a93eb268e8ac60aa32f2bb3f74b02a
 SHA512 
e5deca193239c686ecb21aea9bd03005b1983fa9e5eb9c5d0fa4ecf00b3a990f4caaae3abed62bbc7bdf720f9e9d17466d519aa8390fa0109241dcc0eb0a4b40
+DIST libredwg-0.12.5.6321.tar.gz 20413375 BLAKE2B 
4645228ca6e4b8624df33b5584b3645a7e40cfa4840b7fd2473cb1b062c61973d89e0fdaf108ca8105835b3c5f4197d030339798c08a2c790b0ead2595b69bd4
 SHA512 
25ac81e4a6db1f0dea201a24b3cff7a865a18e67e1fa8fbdcecc4e95542812eb66907612593c9afa93aad51fa0e107226b495a477ceed76af4b8b71eadd99e5e
 DIST libredwg-0.12.5.tar.gz 16855123 BLAKE2B 
2ca0bfafdb0ca6e412d3aaf7df21f80a2eed4bad795bffacc1c767f23dc555b35b2aeedb35dffab099c5dbab2890f9363cfc1508c3fec16a6ff51ce79a272e3e
 SHA512 
0b5da6e863410d9ce012d311e921a39fa0d9cb6d96d17f1df70ca767c1768cd625e35503f24830a6a33400ede92d14b36ce87b92f177a5af7e6d4573920cf50c
 DIST libredwg-85695f3d5903b1cd5b4030efe50db3b4f5f3c928.tar.gz 12597 BLAKE2B 
cd01f6c446d5d129545fdae07c0101d133e1f4e69ee62e94c27c3c2853dcc30854f40aed0c6f38f6594c5f5eb9e7b2d18d3b2e4f487b7bf1a3f7f39facde38bc
 SHA512 
1d08cfa6216e0fe671dab77a0bd0b4ef0c4eb174878eba909c680e0ee93a82079b3cbf60afe2de7b0078258de8bcc588961e59cf0c14fe5f2d1f70db639ef95a

diff --git a/media-gfx/libredwg/libredwg-0.12.5.6321.ebuild 
b/media-gfx/libredwg/libredwg-0.12.5.6321.ebuild
new file mode 100644
index ..61cd225885db
--- /dev/null
+++ b/media-gfx/libredwg/libredwg-0.12.5.6321.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DOCS_BUILDER="doxygen"
+# File is hardcoded to be run from ../ so we use this instead of DOCS_DIR
+DOCS_CONFIG_NAME="doc/Doxyfile"
+
+inherit autotools docs python-single-r1 perl-functions
+
+JSMN_COMMIT="85695f3d5903b1cd5b4030efe50db3b4f5f3c928"
+
+DESCRIPTION="C library to handle DWG files"
+HOMEPAGE="https://www.gnu.org/software/libredwg/;
+SRC_URI="
+   https://github.com/LibreDWG/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz
+   https://github.com/zserge/jsmn/archive/${JSMN_COMMIT}.tar.gz -> 
${PN}-${JSMN_COMMIT}.tar.gz
+"
+
+LICENSE="GPL-3+ MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# https://github.com/LibreDWG/libredwg/issues/342
+RESTRICT="test"
+
+IUSE="debug python perl static-libs"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   python? ( ${PYTHON_DEPS} )
+   perl? ( dev-lang/perl )
+   dev-libs/libpcre2
+   dev-libs/pslib
+"
+DEPEND="${RDEPEND}
+   python? ( dev-lang/swig )
+   perl? ( dev-lang/swig )
+"
+BDEPEND="|| (
+   sys-devel/gcc[sanitize]
+   sys-libs/compiler-rt-sanitizers[asan(-)]
+   )
+   dev-vcs/git
+"
+
+src_unpack() {
+   # Build system really wants jsmn to be here
+   default
+   rm -r "${S}/jsmn" || die
+   mv "${WORKDIR}/jsmn-${JSMN_COMMIT}" "${S}/jsmn" || die
+}
+
+src_prepare() {
+   default
+   # Fix variable references itself error, fails in src_install otherwise.
+   sed -i -e 
's/TEXINPUTS="$(TEXINPUTS)$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/TEXINPUTS="$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/g'
 doc/Makefile.am || die
+   # https://github.com/LibreDWG/libredwg/issues/404
+   # Workaround: release tarball does not include dwg2ps.1.
+   # Upstream autotools stuff has to be run in git repo
+   git init -q || die
+   git config --global user.email "la...@gentoo.org" || die
+   git config --global user.name "Larry the Cow" || die
+   git add . || die
+   git commit -qm 'init' || die
+   git tag ${PV} || die
+   eautoreconf
+}
+
+src_configure() {
+   perl_set_version
+   local myconf=(
+   --enable-write
+   --enable-dxf
+   --enable-json
+   

[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/autodock/

2023-09-14 Thread Andrew Ammerlaan
commit: 625bbd317bfb4e8aa225e20bf31271b3ac9b3180
Author: Brahmajit Das  gmail  com>
AuthorDate: Tue Sep 12 17:07:22 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep 14 08:22:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=625bbd31

sci-chemistry/autodock: update EAPI 7 -> 8, update HOMEPAGE, SRC_URI

Fix C++17 does not allow register storage class

Closes: https://bugs.gentoo.org/898130
Signed-off-by: Brahmajit Das  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31489
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-chemistry/autodock/Manifest |   1 +
 sci-chemistry/autodock/autodock-4.2.6-r1.ebuild | 111 
 2 files changed, 112 insertions(+)

diff --git a/sci-chemistry/autodock/Manifest b/sci-chemistry/autodock/Manifest
index 338b56af17cb..8b5de32f0db1 100644
--- a/sci-chemistry/autodock/Manifest
+++ b/sci-chemistry/autodock/Manifest
@@ -1 +1,2 @@
+DIST autodock-4.2.6-drop-register-keyword.patch 36676 BLAKE2B 
d91969d9d84b8940ddabf34dc017174deb1dafe0867f9ff5d2e528c4f3b4086b285f299220caa9406139146d460c2fba529e8b85c4aee927cabbdf34e91d3541
 SHA512 
39358c1d70f80c0a54066eb9ef600980c993dffaf1f7b7d558d29a4404c00a4d02ba0e871ae538474e452425f79795aad38eb0fca38a2663ccf6a64f57a40933
 DIST autodocksuite-4.2.6-src.tar.gz 35438010 BLAKE2B 
88e036ecc0492fb83f31b90fd0983ec57d889a61d17249f672a3e30e942f6c329dc2494088a8fc7c5bc39a5bdbb38fb1514f1750c7145374f202a928d477faa9
 SHA512 
75b8878f948c4f6bc28adb442997192dad0c36bbede2fd698623903cb27b06b4df3ba038bfc70fc13b4bdee864fd2344f0f7208be2020da4e01a00b842b46bbb

diff --git a/sci-chemistry/autodock/autodock-4.2.6-r1.ebuild 
b/sci-chemistry/autodock/autodock-4.2.6-r1.ebuild
new file mode 100644
index ..463c23ee2e01
--- /dev/null
+++ b/sci-chemistry/autodock/autodock-4.2.6-r1.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools readme.gentoo-r1
+
+MY_PN="autodocksuite"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A suite of automated docking tools"
+HOMEPAGE="https://autodock.scripps.edu/;
+SRC_URI="
+   
https://autodock.scripps.edu/downloads/autodock-registration/tars/dist$(ver_rs 
1- '')/${MY_P}-src.tar.gz
+   
https://dev.gentoo.org/~andrewammerlaan/${PN}-4.2.6-drop-register-keyword.patch
+"
+S="${WORKDIR}/src"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples openmp"
+# Tests require python2
+RESTRICT="test"
+
+# False positives caused by nested configure scripts
+QA_CONFIGURE_OPTIONS=".*"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+The AutoDock development team requests all users to fill out the
+registration form at:
+
+http://autodock.scripps.edu/downloads/autodock-registration
+
+The number of unique users of AutoDock is used by Prof. Arthur J.
+Olson and the Scripps Research Institude to support grant
+applications.
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-buildsystem.patch
+   "${DISTDIR}"/${PN}-4.2.6-drop-register-keyword.patch
+)
+
+src_prepare() {
+   default
+
+   local i
+
+   sed \
+   -e "s/\tcsh/\tsh/" \
+   -i auto{dock,grid}/Makefile.am || die
+   for i in autodock autogrid; do
+   pushd $i &>/dev/null
+   eautoreconf
+   popd &>/dev/null
+   done
+}
+
+src_configure() {
+   local i
+   for i in autodock autogrid; do
+   pushd $i &>/dev/null
+   econf $(use_enable openmp)
+   popd &>/dev/null
+   done
+}
+
+src_compile() {
+   emake -C autodock
+   emake -C autogrid
+}
+
+# Refer: https://github.com/gentoo/gentoo/pull/31489/files#r1321120609
+#src_test() {
+#  elog "Testing autodock"
+#  cd "${S}/autodock/Tests" || die
+#  cp ../*.dat . || die
+#  ${EPYTHON} test_autodock4.py || die "AutoDock tests failed."
+#  einfo "Testing autogrid"
+#  cd "${S}/autogrid/Tests" || die
+#  ${EPYTHON} test_autogrid4.py || die "AutoGrid tests failed."
+#}
+
+src_install() {
+   if use openmp; then
+   newbin autodock/autodock4.omp ${PN}4
+   dobin autogrid/autogrid4
+   else
+   dobin autodock/autodock4 autogrid/autogrid4
+   fi
+
+   insinto /usr/share/${PN}
+   doins -r \
+   autodock/{AD4_parameters.dat,AD4_PARM99.dat} \
+   $(usex examples "autodock/EXAMPLES" "")
+
+   DOCS=(
+   RELEASENOTES
+   autodock/{AUTHORS,README}
+   autodock/USERGUIDES/AutoDock4.{0,1,2}_UserGuide.doc
+   autodock/USERGUIDES/AutoDock4.2_UserGuide.pdf
+   )
+   einstalldocs
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2023-09-14 Thread Eray Aslan
commit: 86281d39a4b502d35044ab6332a1303304d26a46
Author: Eray Aslan  gentoo  org>
AuthorDate: Thu Sep 14 07:56:42 2023 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Thu Sep 14 07:56:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86281d39

mail-mta/postfix: add 3.9_pre20230912, drop 3.9_pre20230903

Signed-off-by: Eray Aslan  gentoo.org>

 mail-mta/postfix/Manifest   | 2 +-
 .../{postfix-3.9_pre20230903.ebuild => postfix-3.9_pre20230912.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index a9b9f249df76..25171c67ae31 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -1,3 +1,3 @@
 DIST postfix-3.8.1.tar.gz 4848293 BLAKE2B 
83c043d6e74cbbf0c5d739838ff99d4905aa711b13483fe0f427956b962c432e6f76d9828b5c141260e210c9605ac260df950d273d5729c3c935a3ed4518
 SHA512 
9eb91f2baab327de22dd55fc5ff398de74856e30be461282f41b1801301873881a8f40ce061c16e0505d51d96aaf0eff8d0ac660e5f6c70c6125133f64a4ee80
 DIST postfix-3.8.2.tar.gz 4848718 BLAKE2B 
233693e088901e8ed986e34d60b55fb6b786c37868095ab914e6049c5ad6aee09f07d3b5d1f2bec64d8570e215bb15196760d30074cd8ddfaeff3897ad117b81
 SHA512 
1c441c95bcadee6fc038eb5cb826a686a8bd98b0c78afbc36fdcee01ca0b1c7071036542c729ac345ef8f1e6fb42211452da802e86048967ebc4dea7752d
-DIST postfix-3.9-20230903.tar.gz 4874537 BLAKE2B 
ccb974d65673aa4ab2024dfa8f58c120b4a6c55d40c45fcb6b70834afeb392de4a757402be15d49f58ccdc1aae0d7f894e240290b409b4d198f802024bbe8597
 SHA512 
b1b2adf49a48ff8cddec3ad3b1b8c465f5738cb9166945d97e8eb150c00cd54aff1981eb74eae1676d29067debf4bdfb98f535597aa235e9c533de1df136c319
+DIST postfix-3.9-20230912.tar.gz 4874772 BLAKE2B 
a361615818b4da67e3ae7a73fc2d7aa3c7c2758adfe70e61132317c11ed76e9122903803fc1e6061ddc0123ecc7a382f4380f26ec60006c5fd906966bf0eecfa
 SHA512 
cdbb99833e58dddc6c0adfc2857214ffa421c08fd6ac73f938b09ec8284669b50aacd54f8c218bd118d0d5e64da05030f68fa7688a44ca6be432f4f0bd31235a

diff --git a/mail-mta/postfix/postfix-3.9_pre20230903.ebuild 
b/mail-mta/postfix/postfix-3.9_pre20230912.ebuild
similarity index 100%
rename from mail-mta/postfix/postfix-3.9_pre20230903.ebuild
rename to mail-mta/postfix/postfix-3.9_pre20230912.ebuild



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

2023-09-14 Thread Miroslav Šulc
commit: 6b321fd61b923ba1b95b37b221285bc03c68f40c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Sep 14 07:51:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Sep 14 07:51:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b321fd6

media-sound/abcmidi: bump to 2023.09.13, dropped 2023.09.09

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/abcmidi/Manifest| 2 +-
 .../abcmidi/{abcmidi-2023.09.11.ebuild => abcmidi-2023.09.13.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/abcmidi/Manifest b/media-sound/abcmidi/Manifest
index c7b2c1b59cd2..8ea97ff4a8aa 100644
--- a/media-sound/abcmidi/Manifest
+++ b/media-sound/abcmidi/Manifest
@@ -1,2 +1,2 @@
 DIST abcMIDI-2023.06.25.zip 623842 BLAKE2B 
bc50ef0b1ed8507ea2c3a1bb67920f052eb0f45236f75a8640aef02693790a74298c4b20305509b94ce6c698b99b8a796d7a174f02677df7efc0f1bea2e9acf0
 SHA512 
1f2c337e66a4072f0693260b3ff3caaa6ba7b7082566f7619966c794686c00915ad412c7c007bb839085ce54cb9cd860bbdf9fb1d3e8e58667c32cf1838866e3
-DIST abcMIDI-2023.09.11.zip 624397 BLAKE2B 
8bfc6dadcda1375bad0d4c2fda2dc8c9727e4e4bb9452732be671455584be9df09dca19df03e52b15357a444c0ac2ab8e5a854c2c98274987cee920562155916
 SHA512 
88b17169cc7cc54c35e04ade046454dce9039cbd6b7c6b2b570ded0686ef97b05680e36851a541fe30538ed8b3803496473d51b133b1395a06d9742a0a089f3a
+DIST abcMIDI-2023.09.13.zip 624566 BLAKE2B 
6d2fd54562022230766ff067d38bf96e06c60271adaa8d0468a9aba83315fc6c211c85c45f6cb85fff2b49a2068ce2f939d07f0f8864c8b9e3163f4a586dc2c7
 SHA512 
1a3fac7e60c7f9b3a4b0cdf8ae4e83ba08d4cb365dcaa8803d86abb18e5bff768e0bc42dfbe71e6f3beee794f49a8df8bb61f693c536da6ccb19588dff87e183

diff --git a/media-sound/abcmidi/abcmidi-2023.09.11.ebuild 
b/media-sound/abcmidi/abcmidi-2023.09.13.ebuild
similarity index 100%
rename from media-sound/abcmidi/abcmidi-2023.09.11.ebuild
rename to media-sound/abcmidi/abcmidi-2023.09.13.ebuild



[gentoo-commits] repo/proj/guru:dev commit in: media-sound/spotify-adblock/

2023-09-14 Thread Nicola Smaniotto
commit: 858e80acfdeafbaef2d09713c91706d5f83d1fa9
Author: Nicola Smaniotto  gmail  com>
AuthorDate: Thu Sep 14 07:49:26 2023 +
Commit: Nicola Smaniotto  gmail  com>
CommitDate: Thu Sep 14 07:49:34 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=858e80ac

media-sound/spotify-adblock: add 1.0.3

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

 media-sound/spotify-adblock/Manifest   | 22 +++
 .../spotify-adblock/spotify-adblock-1.0.3.ebuild   | 71 ++
 2 files changed, 93 insertions(+)

diff --git a/media-sound/spotify-adblock/Manifest 
b/media-sound/spotify-adblock/Manifest
index b6b46182c5..773b8e9465 100644
--- a/media-sound/spotify-adblock/Manifest
+++ b/media-sound/spotify-adblock/Manifest
@@ -1,15 +1,37 @@
 DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
+DIST aho-corasick-1.0.2.crate 167694 BLAKE2B 
fa5323cbe6cb73594dfa4c327c64676bc1e006dadc0b9def325974c83b9a769beba02d59a4657ec7a2d0cc511a7b7cc6f72cf57b8f9e639206d1c2bf13107a52
 SHA512 
5c75451f96fbbd670e6af0e1f54df2bdb57259dfe6898495ac46a5b2fc04f316a4698fd5cfd4ec31a94c298661937a8de08ce97cab3890fb3c015e4a2a67bb7b
+DIST equivalent-1.0.1.crate 6615 BLAKE2B 
302d78069d9df05e78b53f0488a9e4eb98fa2bc1e21893dc8a0acf2234347ba7c4df4b9d6b380ae77d8ffb1074b9c790460fe2dae47318aa1c4fe4208244540a
 SHA512 
b2bc60e804c1b02c461dcefcfd60fc37145af710d183ebe65f9a4d63f2b2072d23193f98dc550a9213c7fdc6a2a837af23b04a89294ebbb681a4aaf5d5031140
+DIST hashbrown-0.14.0.crate 116103 BLAKE2B 
24bab03e8a8cb7623b92282c83bf8acaf0752c696ee1c010249e3ebb3646e7549d8d6d798b02c9d5b621afbebba7320f8a859d9a1af1523dbd46377b857dbb5f
 SHA512 
f0fbdf81517f59a0b67f792a4097f1131d346b2b4cbda93590749cef7f9f1c9029e0e182f58c23b74d3028f7502c30b9593c1eb4da37f95388d74b14582b8959
+DIST indexmap-2.0.0.crate 64038 BLAKE2B 
e7a1b2bbd790f1446f77262b5b0799c2a816a01295a9a4db66f10e6c0502f8970982fb808581472e840cc34dc70e7938b89408799ed0d91aa50d3dd0b4807995
 SHA512 
59bc19653436389e1408e21b0933e5ca6f9fe228f0f5fbe9a7e4fb461b9712ba82983cbf22c0581eaf7913298b9ef5842702946152b493c1dc651381d6bce1a3
 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 
25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23
 SHA512 
e124c0521ec7c950f3c4a066821918da7a9c6e75d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8
 DIST libc-0.2.119.crate 575749 BLAKE2B 
5fa2bf66a4d642e1380335fde0fd190d5168dca58376379caeb52171a3382e5342c727eb4d92f1e27adde58a24d00352896a73c45309d947f56787a99f2753f8
 SHA512 
a43f8d1cac7a0d8c1bf6f2125695c03d91243498d2dea19a3a674ccb2c64fd00bac4040c42130a1a096b2148451f62e1292c5c71f424f51f888d6a37c7db0bcd
+DIST libc-0.2.147.crate 686772 BLAKE2B 
ab2f0c65d071d46b8b88149add1c8429237ef6d9e0563d56ee1adbf23e6147dbb57fb68fbd02498f8ec75327693237a47e5e5259615ce8b0d5ed7a03bbf4fffb
 SHA512 
bfb3c230b59d623b98726f92b7c3f897b47ba3d22fe9834c15f5b4c1b662289aba35a0ae3acfc704ad74696db8c691ee007b9cc6fa03ae65a18eb6bedc81931e
 DIST memchr-2.4.1.crate 64977 BLAKE2B 
31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5
 SHA512 
d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11
+DIST memchr-2.5.0.crate 65812 BLAKE2B 
57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab
 SHA512 
444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 DIST proc-macro2-1.0.36.crate 41411 BLAKE2B 
d7d99aed41080b65680736d92dd027e21c9e9e0b03601915c000f5dea8f2b2d9126b116af32f2fb04b4fa407775f0131423055d0b62fdbfe87fa4ba7ec098beb
 SHA512 
f31b0f2356af2746321c4f808ac9af87d21a5657c103ed6bc1383855e40caf49246cc8ec1edff58eacf193424abfc2163148b7298e527714e65e602f14b2e50a
+DIST proc-macro2-1.0.66.crate 43575 BLAKE2B 
9eb3e816b00fcf625c280ba14ad269f5893d0523473a24de07c21945f6f932fbd08efb3c339b35d903245510e3f065e1478439b024a325f2bb9f97bc7bcbb18d
 SHA512 
85f5a762f9411142e5ac28144bd380f07f0633ed2e44d8a2545be9fb8f42abaca6b5d45631b4be83b8e8b9beca7438bc52f25615c3a410a3a1249474b1aca407
 DIST quote-1.0.15.crate 27281 BLAKE2B 
5612633415d30e26e646a968ab7a64ecdc978b02efdbd40dfecf5afa489c21bbc6a9c93ecce2a2b45519db6be3384bb372cfc9f597846e8399f7c2b57e8b34e1
 SHA512 
76403bfac4e9a018b29ddf8f911135206d4fdc266db38a95cc92f6159a8b436d39d64c4ae6c3fd16ad83117270ed329b6a151d589cab46c75443c57b533dfaeb
+DIST quote-1.0.31.crate 27881 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-java/swt/

2023-09-14 Thread Miroslav Šulc
commit: 077aa78f3be992dc5bc2a29bf0575320ddfd7413
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Mon Sep  4 08:09:26 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Sep 14 07:45:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077aa78f

dev-java/swt: add 4.29

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/32759
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/swt/Manifest|   3 +
 dev-java/swt/swt-4.29.ebuild | 147 +++
 2 files changed, 150 insertions(+)

diff --git a/dev-java/swt/Manifest b/dev-java/swt/Manifest
index d41e0bbacf6c..c05938dd3fbb 100644
--- a/dev-java/swt/Manifest
+++ b/dev-java/swt/Manifest
@@ -6,3 +6,6 @@ DIST swt-4.10-gtk-linux-x86_64.zip 3844306 BLAKE2B 
0e0ed21708acce347fd025920ee63
 DIST swt-4.28-gtk-linux-aarch64.zip 3836289 BLAKE2B 
3460e8bcde76cae74d3fba94198b2f0a6b8ed21c4f123003a216421db4af03686f43a26ce00cf4c59c56f8a31b88626482ae5f13f2e92c06e2147658fa482aeb
 SHA512 
d91ff48ca384de057d70f3a886691193bd88960c6da0e37fb4ef695c32399c0d3ab87f6174075e5637046e7b2b22a73e4b03e0133a2bdb7ee584d4fa53baa11c
 DIST swt-4.28-gtk-linux-ppc64le.zip 3860453 BLAKE2B 
8de275767f1bd0b68a58744804c71314760fb3d56a396db32917376583830bb0307b5169f0f8c56a200180aaf7e871a1ab01e2ed682c16a49d2d236d1ae3bc3a
 SHA512 
56d7f82b249924966184be29d4cdac454308169247b5c7819b77f592eef7f434ba5e913d95688411667940c354cb9d9db023935925914053e04117a654e2ad91
 DIST swt-4.28-gtk-linux-x86_64.zip 3856600 BLAKE2B 
6725d0a261444d113af74e36d8bc451d2a8f3fbecb13f137877d4ac3acf427944b4eeb782967bddbd30c0af88ab0c8976020731c2c70c318012053ccdde83b17
 SHA512 
81c42fc08432c031f8c2d862fde5ac59c96ff0b70109fb1a65b00c22f136c696d7aa9ec02416660cb71691f3c9d36de553a68315cb4e9aeee86290114e69a829
+DIST swt-4.29-gtk-linux-aarch64.zip 3836724 BLAKE2B 
8c905df298688686ee22c9f2021560856f7ac7b6a92dad744b27cd30530c6ff76470fdcbb79b91ada01f28c43b8f694c334ff1337d692366ae9dc0319f7e46e2
 SHA512 
44ff572b57631b1b6a98192f60624758d90f54a2b2272c6bbb140ece39e65bb4086cf08fbc50c5f2e388e7b410b28fc014b87a8560062053b4c131970fa38b17
+DIST swt-4.29-gtk-linux-ppc64le.zip 3860955 BLAKE2B 
f24f8224581425dc86926a147f2f4c644f086cb7907e03bfca64df93ef5ce8341f519acc91e90c0af4eede65797ac019c17a410ff0312306714fa26ddb4234b4
 SHA512 
09326b5204970d9db2cede4aebf11c7f24a47c30b6bc49764dda1d0a33fa83c7c4755797cac387d1814a29ad2574e45244b994e5df0c7ef2fd1375fc7877814b
+DIST swt-4.29-gtk-linux-x86_64.zip 3857122 BLAKE2B 
ac4416044f93eaed396ac10edb74eb5ebcbb967797109f57580bd0ac7c1e3752e8895c5ff1b315aa32b5d5b5ce8e1440badb8b9c3138a0eaeb4df63098919a8c
 SHA512 
c92381e4d1479c219e174c027e54af781e674b266334a5e087f5821935e0a87696f40afbc9fe6f9ffaa00b5204165d9ff6476031b5e4e2df8aea1a54aeb2e65e

diff --git a/dev-java/swt/swt-4.29.ebuild b/dev-java/swt/swt-4.29.ebuild
new file mode 100644
index ..9c0ca3dee2e3
--- /dev/null
+++ b/dev-java/swt/swt-4.29.ebuild
@@ -0,0 +1,147 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+
+inherit flag-o-matic java-pkg-2 java-pkg-simple toolchain-funcs
+
+MY_PV="${PV/_rc/RC}"
+MY_DMF="https://download.eclipse.org/eclipse/downloads/drops4/R-${MY_PV}-202309031000;
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="GTK based SWT Library"
+HOMEPAGE="https://www.eclipse.org/swt/;
+SRC_URI="
+   amd64? ( ${MY_DMF}/${MY_P}-gtk-linux-x86_64.zip )
+   arm64? ( ${MY_DMF}/${MY_P}-gtk-linux-aarch64.zip )
+   ppc64? ( ${MY_DMF}/${MY_P}-gtk-linux-ppc64le.zip )"
+
+LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1"
+SLOT="4.27"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
+IUSE="cairo opengl webkit"
+
+COMMON_DEP="
+   app-accessibility/at-spi2-core:2
+   dev-libs/glib
+   x11-libs/gtk+:3
+   x11-libs/libXtst
+   cairo? ( x11-libs/cairo )
+   opengl? (
+   virtual/glu
+   virtual/opengl
+   )
+   webkit? (
+   net-libs/webkit-gtk:4.1
+   )"
+DEPEND="${COMMON_DEP}
+   >=virtual/jdk-11:*[-headless-awt]
+   x11-base/xorg-proto
+   x11-libs/libX11
+   x11-libs/libXrender
+   x11-libs/libXt
+   x11-libs/libXtst"
+RDEPEND="${COMMON_DEP}
+   >=virtual/jre-1.8:*"
+BDEPEND="
+   app-arch/unzip
+   virtual/pkgconfig
+"
+
+HTML_DOCS=( about.html )
+
+JAVA_RESOURCE_DIRS="resources"
+JAVA_SRC_DIR="src"
+
+PATCHES=(
+   "${FILESDIR}/swt-4.27-as-needed-and-flag-fixes.patch"
+)
+
+src_unpack() {
+   default
+   unpack "./src.zip"
+}
+
+src_prepare() {
+   default
+   java-pkg-2_src_prepare
+   # .css stuff is essential at least for running net-p2p/biglybt
+   unzip swt.jar 'org/eclipse/swt/internal/gtk/*.css' -d resources || die
+   java-pkg_clean
+   mkdir src || die "mkdir failed"
+   mv org src || die "moving java sources failed"
+   pushd src > /dev/null || die
+   find -type f ! -name '*.java' \
+ 

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

2023-09-14 Thread Florian Schmaus
commit: fba6341540f1069da84dee95ad9bb5d315228052
Author: Bailey Kasin  gmail  com>
AuthorDate: Wed Sep 13 13:16:55 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Thu Sep 14 07:44:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba63415

app-shells/gentoo-zsh-completions: add 20230117

Signed-off-by: Bailey Kasin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32761
Signed-off-by: Florian Schmaus  gentoo.org>

 app-shells/gentoo-zsh-completions/Manifest |  1 +
 .../gentoo-zsh-completions-20230117.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/app-shells/gentoo-zsh-completions/Manifest 
b/app-shells/gentoo-zsh-completions/Manifest
index d7f0b3297e9e..da938c573254 100644
--- a/app-shells/gentoo-zsh-completions/Manifest
+++ b/app-shells/gentoo-zsh-completions/Manifest
@@ -1 +1,2 @@
 DIST gentoo-zsh-completions-20220112.tar.gz 25839 BLAKE2B 
3cf9a26e14556520ff32172b0e97ee5cb5e3cf45569c97b6f3e701330490be831f211dde327fdd007df9b67df22c243f4e91e0f40b9d4d02551b0b3059d60708
 SHA512 
b06aa69348b0954b8cf635170fa743960e5d4c3988c0dfa6166e1d4d33bf112e24d1e28bd5a0b228a0d6e78509a8e62954217bbd30c099d99cad4ebab71b328d
+DIST gentoo-zsh-completions-20230117.tar.gz 25805 BLAKE2B 
33b1db3c9e4ab2b4c86a9b378618cda399835ae71fcda320ac6f0123cd2e25683bff260c644dcc27408c831183d5273e4afa15987ff90196380a608c4558bf8b
 SHA512 
00a4f015967fabc2192e4e07f5d7c46ee0d8cd43aebb0dd7876f6d97aeac7d099c5470c100dad531f373502c4094f3689622a083dfe5610111ccf80970334e07

diff --git 
a/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20230117.ebuild 
b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20230117.ebuild
new file mode 100644
index ..5b710a44d1e4
--- /dev/null
+++ b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20230117.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/gentoo/gentoo-zsh-completions.git;
+else
+   SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+fi
+
+DESCRIPTION="Gentoo specific zsh completion support (includes emerge and 
ebuild commands)"
+HOMEPAGE="https://github.com/gentoo/gentoo-zsh-completions;
+
+LICENSE="ZSH"
+SLOT="0"
+
+RDEPEND=">=app-shells/zsh-4.3.5"
+
+src_install() {
+   insinto /usr/share/zsh/site-functions
+   doins src/_*
+
+   dodoc AUTHORS
+}



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

2023-09-14 Thread Michał Górny
commit: cd641e32ca49b2b8e226f651a0565a308e12827f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:38:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:38:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd641e32

sys-kernel/gentoo-kernel: Remove old

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

 sys-kernel/gentoo-kernel/Manifest  |  42 --
 .../gentoo-kernel/gentoo-kernel-5.10.193.ebuild| 134 ---
 .../gentoo-kernel/gentoo-kernel-5.15.128.ebuild| 141 
 .../gentoo-kernel/gentoo-kernel-5.15.129.ebuild| 141 
 .../gentoo-kernel/gentoo-kernel-5.15.130.ebuild| 141 
 .../gentoo-kernel/gentoo-kernel-5.4.255.ebuild | 103 ---
 .../gentoo-kernel/gentoo-kernel-6.1.46.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.47.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.48.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.49.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.50.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.51.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.1.52.ebuild  | 146 
 .../gentoo-kernel/gentoo-kernel-6.4.11.ebuild  | 147 -
 .../gentoo-kernel/gentoo-kernel-6.4.12.ebuild  | 147 -
 .../gentoo-kernel/gentoo-kernel-6.4.13.ebuild  | 147 -
 .../gentoo-kernel/gentoo-kernel-6.4.14.ebuild  | 147 -
 .../gentoo-kernel/gentoo-kernel-6.4.15.ebuild  | 147 -
 18 files changed, 2459 deletions(-)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index 1481d6d0ad29..a3c80cfc0aa5 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -1,81 +1,39 @@
 DIST genpatches-5.10-201.base.tar.xz 5812032 BLAKE2B 
17e4a8b463e258f0548e3ccea5cd703fe80fa971678faa919c9c77c7ab60e57476b057676ef6d3d28fd42436a3f9a10b2ef9d39dfd136609b31306c606c2ceba
 SHA512 
af53bd63386cfacc0eac40c69be3c4b85ff40afc901b759eec2da0a28685b7d9677558eb0625e3763c9d7e5bbb0452feac80acd3ac39f36326addf7464c00b7f
 DIST genpatches-5.10-201.extras.tar.xz 3868 BLAKE2B 
e2420ee9cfb3e2a928ca1cc5a87bb832f436c3fedb0f4f001975a48a058c69cedcd58f97e5c76758ab737681ced55fc214a537fdab9400b839673bdba6c697c4
 SHA512 
c719a63005ea809d9bdc5d4b01f1400db0419a28bd629843f2d339a6f08684b4876fdc0eaa09133b7853ed80201517439e04580618ceabb40484e952efe796a3
-DIST genpatches-5.10-203.base.tar.xz 5898100 BLAKE2B 
9a167c9fd5d73f8aa20db8c1fee7a8b2293ede05e6beab6f4a312b3b5b0714da661908d9cfa0f981b6f544fa9572617c54e5fd595a6023686dd0616d20fb74c7
 SHA512 
7f04f20e1d7c90c55d24bf3c8b4eb40477df85440d433ae68ecb7acadb42496360df48baee378528f87b575a51bc4805d644a8f40044a6cc071c1f7975692fb0
-DIST genpatches-5.10-203.extras.tar.xz 3872 BLAKE2B 
f5578b93215a3a4109468a46747ef70504668d5de7b7e9562e83cf6d5268633f676b534ab08dd97208c545baad48f680d2bd1e5acc80fc41b68f3aea7f9fe28b
 SHA512 
e075f72e641e21abc91a6d648005d7479be70352b44034091d8cdf8a0c20f8caa75f268ef0591c01eb2ce8819fd2fe99fd176535c40b6fe2dfcf9708c48ca8b2
 DIST genpatches-5.10-204.base.tar.xz 5899804 BLAKE2B 
5bf19ded87f3178252259d863bfb22f4d2e5ff68d97edd7b9fa0ac74d803951a7db57c0bfa33f5645ada4b7f5f19d33825eb2f2f1c283b6d5cb16279186f4f0b
 SHA512 
267d325ed9bbcd0b21dbc5c537aefe73eca22152082e515855a7ea17acffb8ca57d7a9c599467c73534375ba487d85e8362dc61b9226541fe728fef61483d3bb
 DIST genpatches-5.10-204.extras.tar.xz 3868 BLAKE2B 
150f953d75e2e051124f44253272a5b62822a19cc9226d82d44439595a4b0f5eb0b1a97f92a07f5d766f0cd5458ded1833ed878e03023f1a74d45162d24cdf51
 SHA512 
812e6d24f19c3df5998a921261c60e2515811bcf4b4295c16a2fea02fc535d6e944b7a498b142ec65bdbf75d8dd585adbbffe8b80d373c4094ea0a7f1c6d5eaa
 DIST genpatches-5.15-133.base.tar.xz 5249652 BLAKE2B 
309acc807e07bfcbb34e0ae87618d6dbb76e6481699fc017f449e61a2518e96e1abaf43ffe32bb9f76786fbe8bad5607407be4a40dd8d26be484943d5b4afee1
 SHA512 
f0c689a808a7724cb4f30d697c22a0a089df3e0f837440b22b6c32672355b79898c8097810fa1e420e0f8c364f5a33b6c373db58b7c8caac8b67be763a820cea
 DIST genpatches-5.15-133.extras.tar.xz 3932 BLAKE2B 
b99e279af41ad1d19a58e8f9b1bbf392c805a46c371d7a022a65c0090b5824c6ce26280525a0c21feda2a5a5cfffcafc690a2194d29af6a44e10a9d4c923db8b
 SHA512 
7cd772a6feed01543305417ff03b834bb002821ccf254e7f5481623a7f16b0b54da5fc72c21f4ae3481308eaab08fcca8fc5103ffbed58dc4355cfb661f04f8e
-DIST genpatches-5.15-134.base.tar.xz 5282056 BLAKE2B 
f973657ec1cafc1e6cfa44b3fb2d8d07b33dedf7118811ff44afcd369991864667635aaaffd9d4abc9cfde5308bc32dcbf44097c1989511a9cd4ae4bd4392190
 SHA512 
e6d2fba989cc1d67a0d77526b9498f9d1214b2b3fa2210b17c58d7a4d47630a7d1ef1788d255082acd17e475997c12a007d8411ae5478f2cb2a34c7d4e2ffc60
-DIST genpatches-5.15-134.extras.tar.xz 3932 BLAKE2B 

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

2023-09-14 Thread Michał Górny
commit: 25b8254271f6cc2f8f5c027b58a8f5a3f0c1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:38:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:38:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25b82542

virtual/dist-kernel: Remove old

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

 virtual/dist-kernel/dist-kernel-5.10.193.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.15.128.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.15.129.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.15.130.ebuild | 19 ---
 virtual/dist-kernel/dist-kernel-5.4.255.ebuild  | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.46.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.47.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.48.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.49.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.50.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.51.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.1.52.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.4.11.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.4.12.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.4.13.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.4.14.ebuild   | 19 ---
 virtual/dist-kernel/dist-kernel-6.4.15.ebuild   | 19 ---
 17 files changed, 323 deletions(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.10.193.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.193.ebuild
deleted file mode 100644
index 407f5d349eb1..
--- a/virtual/dist-kernel/dist-kernel-5.10.193.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.15.128.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.128.ebuild
deleted file mode 100644
index 11ff63e712b3..
--- a/virtual/dist-kernel/dist-kernel-5.15.128.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.15.129.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.129.ebuild
deleted file mode 100644
index 11ff63e712b3..
--- a/virtual/dist-kernel/dist-kernel-5.15.129.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.15.130.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.130.ebuild
deleted file mode 100644
index 11ff63e712b3..
--- a/virtual/dist-kernel/dist-kernel-5.15.130.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to depend on any Distribution Kernel"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="
-   || (
-   ~sys-kernel/gentoo-kernel-${PV}
-   ~sys-kernel/gentoo-kernel-bin-${PV}
-   ~sys-kernel/vanilla-kernel-${PV}
-   )"

diff --git a/virtual/dist-kernel/dist-kernel-5.4.255.ebuild 
b/virtual/dist-kernel/dist-kernel-5.4.255.ebuild
deleted file mode 100644
index a0793715344a..
--- a/virtual/dist-kernel/dist-kernel-5.4.255.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual to 

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

2023-09-14 Thread Michał Górny
commit: 8a2e9ca02cc527c6ef3744a8d1cb0a03928df5b8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:38:19 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:38:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2e9ca0

sys-kernel/gentoo-kernel-bin: Remove old

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

 sys-kernel/gentoo-kernel-bin/Manifest  | 102 
 .../gentoo-kernel-bin-5.10.193.ebuild  | 127 
 .../gentoo-kernel-bin-5.15.128.ebuild  | 127 
 .../gentoo-kernel-bin-5.15.129.ebuild  | 127 
 .../gentoo-kernel-bin-5.15.130.ebuild  | 127 
 .../gentoo-kernel-bin-5.4.255.ebuild   | 127 
 .../gentoo-kernel-bin-6.1.46.ebuild| 127 
 .../gentoo-kernel-bin-6.1.47.ebuild| 127 
 .../gentoo-kernel-bin-6.1.48.ebuild| 127 
 .../gentoo-kernel-bin-6.1.49.ebuild| 127 
 .../gentoo-kernel-bin-6.1.50.ebuild| 127 
 .../gentoo-kernel-bin-6.1.51.ebuild| 127 
 .../gentoo-kernel-bin-6.1.52.ebuild| 127 
 .../gentoo-kernel-bin-6.4.11.ebuild| 127 
 .../gentoo-kernel-bin-6.4.12.ebuild| 127 
 .../gentoo-kernel-bin-6.4.13.ebuild| 131 
 .../gentoo-kernel-bin-6.4.14.ebuild| 132 -
 .../gentoo-kernel-bin-6.4.15.ebuild| 132 -
 18 files changed, 2275 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index fb4676085674..fc7f2258c57f 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -1,61 +1,23 @@
 DIST genpatches-5.10-201.base.tar.xz 5812032 BLAKE2B 
17e4a8b463e258f0548e3ccea5cd703fe80fa971678faa919c9c77c7ab60e57476b057676ef6d3d28fd42436a3f9a10b2ef9d39dfd136609b31306c606c2ceba
 SHA512 
af53bd63386cfacc0eac40c69be3c4b85ff40afc901b759eec2da0a28685b7d9677558eb0625e3763c9d7e5bbb0452feac80acd3ac39f36326addf7464c00b7f
 DIST genpatches-5.10-201.extras.tar.xz 3868 BLAKE2B 
e2420ee9cfb3e2a928ca1cc5a87bb832f436c3fedb0f4f001975a48a058c69cedcd58f97e5c76758ab737681ced55fc214a537fdab9400b839673bdba6c697c4
 SHA512 
c719a63005ea809d9bdc5d4b01f1400db0419a28bd629843f2d339a6f08684b4876fdc0eaa09133b7853ed80201517439e04580618ceabb40484e952efe796a3
-DIST genpatches-5.10-203.base.tar.xz 5898100 BLAKE2B 
9a167c9fd5d73f8aa20db8c1fee7a8b2293ede05e6beab6f4a312b3b5b0714da661908d9cfa0f981b6f544fa9572617c54e5fd595a6023686dd0616d20fb74c7
 SHA512 
7f04f20e1d7c90c55d24bf3c8b4eb40477df85440d433ae68ecb7acadb42496360df48baee378528f87b575a51bc4805d644a8f40044a6cc071c1f7975692fb0
-DIST genpatches-5.10-203.extras.tar.xz 3872 BLAKE2B 
f5578b93215a3a4109468a46747ef70504668d5de7b7e9562e83cf6d5268633f676b534ab08dd97208c545baad48f680d2bd1e5acc80fc41b68f3aea7f9fe28b
 SHA512 
e075f72e641e21abc91a6d648005d7479be70352b44034091d8cdf8a0c20f8caa75f268ef0591c01eb2ce8819fd2fe99fd176535c40b6fe2dfcf9708c48ca8b2
 DIST genpatches-5.10-204.base.tar.xz 5899804 BLAKE2B 
5bf19ded87f3178252259d863bfb22f4d2e5ff68d97edd7b9fa0ac74d803951a7db57c0bfa33f5645ada4b7f5f19d33825eb2f2f1c283b6d5cb16279186f4f0b
 SHA512 
267d325ed9bbcd0b21dbc5c537aefe73eca22152082e515855a7ea17acffb8ca57d7a9c599467c73534375ba487d85e8362dc61b9226541fe728fef61483d3bb
 DIST genpatches-5.10-204.extras.tar.xz 3868 BLAKE2B 
150f953d75e2e051124f44253272a5b62822a19cc9226d82d44439595a4b0f5eb0b1a97f92a07f5d766f0cd5458ded1833ed878e03023f1a74d45162d24cdf51
 SHA512 
812e6d24f19c3df5998a921261c60e2515811bcf4b4295c16a2fea02fc535d6e944b7a498b142ec65bdbf75d8dd585adbbffe8b80d373c4094ea0a7f1c6d5eaa
 DIST genpatches-5.15-133.base.tar.xz 5249652 BLAKE2B 
309acc807e07bfcbb34e0ae87618d6dbb76e6481699fc017f449e61a2518e96e1abaf43ffe32bb9f76786fbe8bad5607407be4a40dd8d26be484943d5b4afee1
 SHA512 
f0c689a808a7724cb4f30d697c22a0a089df3e0f837440b22b6c32672355b79898c8097810fa1e420e0f8c364f5a33b6c373db58b7c8caac8b67be763a820cea
 DIST genpatches-5.15-133.extras.tar.xz 3932 BLAKE2B 
b99e279af41ad1d19a58e8f9b1bbf392c805a46c371d7a022a65c0090b5824c6ce26280525a0c21feda2a5a5cfffcafc690a2194d29af6a44e10a9d4c923db8b
 SHA512 
7cd772a6feed01543305417ff03b834bb002821ccf254e7f5481623a7f16b0b54da5fc72c21f4ae3481308eaab08fcca8fc5103ffbed58dc4355cfb661f04f8e
-DIST genpatches-5.15-134.base.tar.xz 5282056 BLAKE2B 
f973657ec1cafc1e6cfa44b3fb2d8d07b33dedf7118811ff44afcd369991864667635aaaffd9d4abc9cfde5308bc32dcbf44097c1989511a9cd4ae4bd4392190
 SHA512 
e6d2fba989cc1d67a0d77526b9498f9d1214b2b3fa2210b17c58d7a4d47630a7d1ef1788d255082acd17e475997c12a007d8411ae5478f2cb2a34c7d4e2ffc60
-DIST 

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

2023-09-14 Thread Michał Górny
commit: 7420bac917f5686525592ce016f370921c5a8548
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:38:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:38:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7420bac9

sys-kernel/vanilla-kernel: Remove old

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

 sys-kernel/vanilla-kernel/Manifest |  42 ---
 .../vanilla-kernel/vanilla-kernel-5.10.193.ebuild  | 137 
 .../vanilla-kernel/vanilla-kernel-5.15.128.ebuild  | 137 
 .../vanilla-kernel/vanilla-kernel-5.15.129.ebuild  | 137 
 .../vanilla-kernel/vanilla-kernel-5.15.130.ebuild  | 137 
 .../vanilla-kernel/vanilla-kernel-5.4.255.ebuild   | 111 -
 .../vanilla-kernel/vanilla-kernel-6.1.46.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.47.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.48.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.49.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.50.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.51.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.1.52.ebuild| 137 
 .../vanilla-kernel/vanilla-kernel-6.4.11.ebuild| 138 -
 .../vanilla-kernel/vanilla-kernel-6.4.12.ebuild| 138 -
 .../vanilla-kernel/vanilla-kernel-6.4.13.ebuild| 138 -
 .../vanilla-kernel/vanilla-kernel-6.4.14.ebuild| 138 -
 .../vanilla-kernel/vanilla-kernel-6.4.15.ebuild| 138 -
 18 files changed, 2350 deletions(-)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index abc851997421..768651021b2f 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -4,81 +4,39 @@ DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71814e1ae53f57a347f62cf31e0c1c8571ae43d9ae9be9957743c8cbc9ec74850c964eaabefe6799a28bc311ea7b99ee31391b47fb1
 SHA512 
fb77d3b73a215f97d70cd6d8c96ed20e497786b99ed7d7a7f2ed60cc1251289c1a4c7e058c41b5efac62e4a9b4b3d917dbdb11585955bba2b6584981430f4ddb
 DIST kernel-aarch64-fedora.config.5.19.13-gentoo 246842 BLAKE2B 
4a824d02999749a0404437cae28721576511e06a5eaa9ebb1b1479c74e2b54402c440be7ea9159bf304661d4baaa5381c36b266ac0bba0b9bf3820eb04c6e4e0
 SHA512 
8862cf24b177ef3871f118712ceace2b496b04a488b045bbe3d83ab22942f064995486f5534630321faaa96ce60e5f237c4ded24a5468bea6e365aa3ea9f09c4
 DIST kernel-aarch64-fedora.config.6.1.7-gentoo 252811 BLAKE2B 
f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc
 SHA512 
41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437
-DIST kernel-aarch64-fedora.config.6.4.12-gentoo 260188 BLAKE2B 
94fe84900f7ab351cb5c1df9831a5141fd9ad4436511176471f1961d5d583928fc5b70c8a3e7b6c87738b942f82096d0dac0b05a632f458fe4dc6bd57e4f34fa
 SHA512 
2bcb58ddaeec2903fcffecbe53380970c6740f91e6775b8ac3ff41a77df42eb6f773f608be25545b8ade0cb0e0f2a72bf00d26e7c47771859ca2d111fe875e35
 DIST kernel-aarch64-fedora.config.6.4.13-gentoo 260317 BLAKE2B 
847f66694919fe7c5a6c24e8b70437e77da13dcbf0eb150a13c510a40b7f38decdda3e5f4d9314b3737fc23b95e291e8630af6a643c04db1c7006453dc1c7bd9
 SHA512 
400ec9845171bbfd58c6f136455dfcb80e31e3cfb25508e8642f817ca036f3534a7342fc9b5976f2ef11e7b8a3815c18512f5e3e1860438a94157d923c978d01
-DIST kernel-aarch64-fedora.config.6.4.3-gentoo 260188 BLAKE2B 
94fe84900f7ab351cb5c1df9831a5141fd9ad4436511176471f1961d5d583928fc5b70c8a3e7b6c87738b942f82096d0dac0b05a632f458fe4dc6bd57e4f34fa
 SHA512 
2bcb58ddaeec2903fcffecbe53380970c6740f91e6775b8ac3ff41a77df42eb6f773f608be25545b8ade0cb0e0f2a72bf00d26e7c47771859ca2d111fe875e35
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 
66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff
 DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 
92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b
 SHA512 
69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10
 DIST kernel-i686-fedora.config.5.15.19 33 BLAKE2B 
9e0f4dd37058f59610e46a87d3165039e76299d3c186fbfc3312101bac1b8b198de404075f5bbc6f5e2ba04cfd45f9d02bdf94b01c3ed11b9275f37f11ee7617
 SHA512 

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

2023-09-14 Thread Michał Górny
commit: 9117320bc958c2603a9023c76e062411c40a3350
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:35:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:35:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9117320b

virtual/dist-kernel: Stabilize 6.1.53 amd64 arm64 ppc64 x86, #914148

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

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

diff --git a/virtual/dist-kernel/dist-kernel-6.1.53.ebuild 
b/virtual/dist-kernel/dist-kernel-6.1.53.ebuild
index 8012e544096f..49f6d323bc5c 100644
--- a/virtual/dist-kernel/dist-kernel-6.1.53.ebuild
+++ b/virtual/dist-kernel/dist-kernel-6.1.53.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
|| (



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

2023-09-14 Thread Michał Górny
commit: 76edf0eeac9d21c5dd04fcbe087cc062f8127a89
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:35:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:35:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76edf0ee

sys-kernel/gentoo-kernel-bin: Stabilize 6.1.53 amd64 arm64 ppc64 x86, #914148

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

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

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



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

2023-09-14 Thread Michał Górny
commit: f4d6529ffc5eb8c8edc863ba1cd09b4b20e3aa87
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 07:35:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 07:35:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d6529f

sys-kernel/gentoo-kernel: Stabilize 6.1.53 amd64 arm64 ppc64 x86, #914148

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

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

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.53.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.53.ebuild
index 7e128b87c8f2..6478dd4dde56 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.53.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.53.ebuild
@@ -43,7 +43,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv ~sparc x86"
 IUSE="debug hardened"
 REQUIRED_USE="
arm? ( savedconfig )



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2023-09-14 Thread Fabian Groffen
commit: ac4c67f00fd053c8556580d3101066c99b6d1051
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Sep 14 07:15:03 2023 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Sep 14 07:15:03 2023 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=ac4c67f0

scripts/bootstrap-prefix: fix Linux compiler_stage1 setup

Broken by cleanup in 580a9d39d536e6740450bed591a326980e24ffdb, ensure
Linux and Solaris targets get compiler_stage1 set in
configure_toolchain.

Thanks hsk17 for pointing it out.

Closes: https://bugs.gentoo.org/914114
Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 38 +-
 1 file changed, 13 insertions(+), 25 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 4973a23644..39ad15b6bf 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -162,6 +162,10 @@ configure_toolchain() {
# We can bootstrap 4.7 in stage1 perhaps if we find envs that do
# not have a functioning C++ toolchain, but for now we assume this
# is not a problem.
+   # On top of this since gcc-11, C++11 is necessary.  This was
+   # introduced in gcc-4.8, but apparently gcc-5 is still buildable
+   # with Apple's gcc-apple-4.0.1, so that's a good candidate
+   # The Prefix tree only contains gcc-12 as of this writing.
 
CC=gcc
CXX=g++
@@ -198,15 +202,11 @@ configure_toolchain() {
return 1
;;
esac
-   if [[ ${isgcc} == true ]] ; then
-   # current compiler (gcc-11) requires C++11, 
which is
-   # available since 4.8, so need to bootstrap 
with <11
-   compiler_stage1+=" 

[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/1password/

2023-09-14 Thread Vitaly Zdanevich
commit: 56505e8f177941cb1edbed6f2811811db9ce2b0d
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Sep 14 06:13:01 2023 +
Commit: Vitaly Zdanevich  ya  ru>
CommitDate: Thu Sep 14 06:13:01 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=56505e8f

gui-apps/1password: add QA_SONAME

Closes: https://bugs.gentoo.org/904336
Signed-off-by: Vitaly Zdanevich  ya.ru>

 gui-apps/1password/1password-8.10.7.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/gui-apps/1password/1password-8.10.7.ebuild 
b/gui-apps/1password/1password-8.10.7.ebuild
index b8f25582ac..d2fa6c2e73 100644
--- a/gui-apps/1password/1password-8.10.7.ebuild
+++ b/gui-apps/1password/1password-8.10.7.ebuild
@@ -35,6 +35,27 @@ src_unpack() {
 
 QA_FLAGS_IGNORED="/usr/bin/${PN}"
 
+QA_SONAME="
+/usr/lib64/libXcomposite.so.1
+/usr/lib64/libXdamage.so.1
+/usr/lib64/libXfixes.so.3
+/usr/lib64/libXrandr.so.2
+/usr/lib64/libasound.so.2
+/usr/lib64/libatk-1.0.so.0
+/usr/lib64/libatk-bridge-2.0.so.0
+/usr/lib64/libatspi.so.0
+/usr/lib64/libcups.so.2
+/usr/lib64/libdrm.so.2
+/usr/lib64/libgbm.so.1
+/usr/lib64/libgtk-3.so.0
+/usr/lib64/libnspr4.so
+/usr/lib64/libnss3.so
+/usr/lib64/libnssutil3.so
+/usr/lib64/libpango-1.0.so.0
+/usr/lib64/libsmime3.so
+/usr/lib64/libxkbcommon.so.0
+"
+
 src_install() {
cp -ar "${S}/opt"  "${D}" || die "Install failed!"
cp -ar "${S}/usr"  "${D}" || die "Install failed!"



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

2023-09-14 Thread Michał Górny
commit: f3dad63bafb7c3241b777e87fea4a81f11855f2f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Sep 14 06:05:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 14 06:05:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3dad63b

dev-python/pynacl: Unpin dev-libs/libsodium

Bug: https://bugs.gentoo.org/914156
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pynacl/pynacl-1.5.0-r3.ebuild | 46 
 1 file changed, 46 insertions(+)

diff --git a/dev-python/pynacl/pynacl-1.5.0-r3.ebuild 
b/dev-python/pynacl/pynacl-1.5.0-r3.ebuild
new file mode 100644
index ..5eea6a5f0842
--- /dev/null
+++ b/dev-python/pynacl/pynacl-1.5.0-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python binding to the Networking and Cryptography (NaCl) library"
+HOMEPAGE="
+   https://github.com/pyca/pynacl/
+   https://pypi.org/project/PyNaCl/
+"
+SRC_URI="
+   https://github.com/pyca/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+   dev-libs/libsodium:=
+"
+RDEPEND="
+   ${DEPEND}
+   >=dev-python/cffi-1.4.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/cffi-1.4.1[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/hypothesis-3.27.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_compile() {
+   # For not using the bundled libsodium
+   local -x SODIUM_INSTALL=system
+   distutils-r1_src_compile
+}



<    1   2   3   4   >