[gentoo-commits] repo/gentoo:master commit in: app-metrics/postfix_exporter/

2024-04-10 Thread Arthur Zamarin
commit: 6cb32750b35d2a3bffb2ac73431ff0be371ec0c8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 05:18:51 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 05:20:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb32750

app-metrics/postfix_exporter: add 0.3.0, EAPI8

Closes: https://bugs.gentoo.org/844619
Closes: https://bugs.gentoo.org/771087
Closes: https://bugs.gentoo.org/679092
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-metrics/postfix_exporter/Manifest  |  2 ++
 .../postfix_exporter/postfix_exporter-0.3.0.ebuild | 42 ++
 2 files changed, 44 insertions(+)

diff --git a/app-metrics/postfix_exporter/Manifest 
b/app-metrics/postfix_exporter/Manifest
index 0d848ba69037..f5249a3782a1 100644
--- a/app-metrics/postfix_exporter/Manifest
+++ b/app-metrics/postfix_exporter/Manifest
@@ -8,3 +8,5 @@ DIST 
github.com-prometheus-client_model-99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c
 DIST 
github.com-prometheus-common-38c53a9f4bfcd932d1b00bfc65e256a7fba6b37a.tar.gz 
63007 BLAKE2B 
a62f727ef9dd42d52f495ab7449cbafbe7c7fcdb1bc171df97c40348dcb7fe12788223d7a2aea3398cae7dd17ec73ae6349b5e5f35f4785f2796cc9a16c2d420
 SHA512 
4f1ab6cffc309a00ed68959b9372e1d3ea4f8d597b8c462a4e365cf22737245e601b8bda0764bbd1f0172d773805d16e90a8aa90cb95e9462e35320043e04060
 DIST 
github.com-prometheus-procfs-780932d4fbbe0e69b84c34c20f5c8d0981e109ea.tar.gz 
56873 BLAKE2B 
31ae12d51b6a28c285bd5854b137d2634499d0db3c2c65c0404ca5a902ffec2e9bf689261ea51c2fe1643733f09a780c437f7a7899a5e6c3e3d100a36e07b897
 SHA512 
a548c6bc71456c9878cb34ad1514d92c8737e01b555e953f848cc1ae7944424b06a14a8ab0c6de4d99dbb189a0f29e2bb9ae09b5adffc327c28f5c50c2819892
 DIST postfix_exporter-0.1.2.tar.gz 11552 BLAKE2B 
987c81482fc984e8f6c870fdaf7ce2ef67b3fa66e5782713a645d35b76a1bde1dde97a79705569d1423a9356309d0b7240c77dba386127e8a5035990220d2a62
 SHA512 
579793281dedd858538ab9a931e0003cfc9989204ebf4352dd4860e5a7f62b919d77a9e0facb9daff6706771010f9e807061dace8cb88928635d55111c7c482a
+DIST postfix_exporter-0.3.0-deps.tar.xz 10261848 BLAKE2B 
3ab985ae873f53019b093266df90d4593b3a1755bafb6a0df600ae84411fd73f578cfeb6749fdfade5392ec55ec4df1916cf6b86f0ea0b5e04828dda50687789
 SHA512 
d591ef808fd3ccc7b48f37257ae6925b8ae491decef9ac679f13af08d0c6717b162a53cc2cd2ffb98361f38eaceaac24b2fba1db958fc9fa172fbe5060b639b1
+DIST postfix_exporter-0.3.0.tar.gz 26528 BLAKE2B 
9d1b17917f4a6a6e73e1477e973454d9ce774d218463f151117e8772f77ea17c00536d0262789644716992c3c6ddcbf8b26d9c92eea77f9750e971e3a7c0d1d4
 SHA512 
1812d2ad95803290c12615975ba6e44c0a6f73dd0e10db927a9f1c58bfce27b71c9c2928f58623e263ba2737d2780f220e6a7fe0992e2607f290478eaa080b39

diff --git a/app-metrics/postfix_exporter/postfix_exporter-0.3.0.ebuild 
b/app-metrics/postfix_exporter/postfix_exporter-0.3.0.ebuild
new file mode 100644
index ..ec665dd32649
--- /dev/null
+++ b/app-metrics/postfix_exporter/postfix_exporter-0.3.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Prometheus Exporter for Postfix"
+HOMEPAGE="https://github.com/kumina/postfix_exporter;
+SRC_URI="
+   https://github.com/kumina/postfix_exporter/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   
https://dev.gentoo.org/~arthurzam/distfiles/app-metrics/${PN}/${P}-deps.tar.xz
+"
+
+LICENSE="Apache-2.0 BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="systemd"
+RESTRICT+=" test"
+
+RDEPEND="
+   acct-group/postfix_exporter
+   acct-user/postfix_exporter
+"
+DEPEND="${RDEPEND}
+   systemd? ( sys-apps/systemd )
+"
+
+src_compile() {
+   ego build -tags "$(usex systemd '' 'nosystemd')" -v -o bin/${PN}
+}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc {CHANGELOG,README}.md
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+}



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

2024-04-10 Thread Patrick Lauer
commit: 56a4b16dccd1526cdc65d521e2fd4c3fc654fd56
Author: Patrick Lauer  gentoo  org>
AuthorDate: Thu Apr 11 05:06:05 2024 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Thu Apr 11 05:06:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56a4b16d

sys-apps/syd: add 3.16.0

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

 sys-apps/syd/Manifest  |   6 +
 sys-apps/syd/syd-3.16.0.ebuild | 249 +
 2 files changed, 255 insertions(+)

diff --git a/sys-apps/syd/Manifest b/sys-apps/syd/Manifest
index 7d0760809802..9b4d578f9996 100644
--- a/sys-apps/syd/Manifest
+++ b/sys-apps/syd/Manifest
@@ -18,6 +18,7 @@ DIST bstr-1.9.1.crate 380305 BLAKE2B 
52b45bd48874d052636c6b451cc36d8b012808ea519
 DIST byteorder-1.5.0.crate 23288 BLAKE2B 
7f85a7948406844070a2c8202e0bd52f73b3dfc7c666a97046128044eb9352195afb80e2bf894c0742ad109e4473339de1365d09591de70dfec6c8c02a8e1453
 SHA512 
96caf981177f6ded9f27f025922cb94eb0cd9de5303bd91680099912d922092e77b7361efa70011e84f1595e443193e4f1b354443b9980c123f6ae573b236f7f
 DIST cast-0.3.0.crate 11452 BLAKE2B 
fe6e0589fa436cda32342d7beaabe4003afdbdf1d7c5db7e8748adf23b1b2cdcdd286235837c735d2143f29e692c152a5d56fb0458a54961e4dea303b2cb
 SHA512 
4a3e19bc1e9e5ecc03aaef9bcdce01624ac0e6858c065fa1c41693db0ac172b9735ce872064561347cd9e79f00a274129011f6e4ccf9e61d960c8bb684b6d396
 DIST cc-1.0.90.crate 73954 BLAKE2B 
840417889519dec96a745c49ecbc8b0d3da9b37a4b6b0165ee8983c07b8150061690b34409381365ae4c70c5780923d19cddce29d5fbc370eb6b6fff29121436
 SHA512 
349f3c3f8208632f8754cc05d70976eb14f3f13a14d59413994c656efc36bb32b7310adc7d5f3a6745f15e0aaa88334644c9aba8d29fb961215d74bec605307e
+DIST cc-1.0.92.crate 76130 BLAKE2B 
45e7ea0f7f744bc26f81249dd4bf48b2022ce60abb2d7c421fac12e657fd621dde06510bca9331761aceb31f3eb69517aa59a46749ceb92b7fe70de855ac6045
 SHA512 
66fb052f123cd06f7901fa6db641773a2f016ea3636ec26670c83a25b68d33ab088d3893f4f08920de50f5ec932a7f7a33e00f1774aabfc55d14253d45b4b7b7
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
 DIST ciborium-0.2.2.crate 35611 BLAKE2B 
7bb34ed2b16f55af2d762bbc83263bba901a0f05bc7677a370460549297839c4d6e913622e8a6cb3a5c2447b94b0bd17b7d5007228ea8881193d08e5b8deb072
 SHA512 
8d1af6a09f116e42f0098d7d0e34dd906dc3e718b257ff1a1fde655a235d40619f61f18917c0cf35c55de9160c255a9795d5e7525989037e3512807cc6a900b1
 DIST ciborium-io-0.2.2.crate 6697 BLAKE2B 
07636da78f59859515af0075cb36d9ca969113ac327ff727953c73b64b60ddae22e5b1b65d8be5aa401f8b13d34074cbc8b47f23abd7a13d551f0b1c78f23575
 SHA512 
641b8592f9699d5e6c607815c8e6dfc82b2bd01897015e04ef8853420a7d90c2ec5c1140e39eb7623ce05587bea52ef63659eae76baee5b6592d2ac5298ce106
@@ -59,10 +60,12 @@ DIST futures-task-0.3.30.crate 11126 BLAKE2B 
c2ded9b9b709fc10c44cfeaa72d4e7477e4
 DIST futures-util-0.3.30.crate 159977 BLAKE2B 
9012edf76336952dab02cb61db48dfc74b6cfc17c137c36372709e8d575b306a4d7c4da89328067c9482a645aceb7b44ef57deb21a0c25964a5515e738a039d0
 SHA512 
7faae5aa35641d858d0f5430e4a69acd4ba9037852ad73c5a890bffeed411d28820883e18bad4ca8f7b0a765f9f4c5dbeaf5d0cfaaf90c2c69846434ae091951
 DIST getargs-0.5.0.crate 18851 BLAKE2B 
85a25ed54220b81598a74f2b83e6aabfb3d25645d471b43e20bc2343d3b1d80010f8521c2ab5ab2b137edb3404aa7d14509d5c7199c28b6590331d8ab7e0452c
 SHA512 
60b397f47fea19ab7190f90ef8fc482ac95fe8cddca2d8d7b8b397e8257a8879d86c8bfa13c17216e14311ce6f78fba7c741d705381fa10a110d3ccb829dcea9
 DIST getrandom-0.2.12.crate 36163 BLAKE2B 
0afef8504932ea0ea051cde1d14bd5b79edde68d6ebae6fe88fa4aaa532605a16f466d0d9c0d0aa619eaa105600b6d5ee4e191865a3fa041549a78f78ca82396
 SHA512 
dd97d7dae1a7ba653abdaf2db719e1a9c8eb721b08b4af0f1c45b1ed5079069d1b57e4f6d9d879e7fae3a890763f4b6aea9bc2d945392b98e811e7b348589bee
+DIST getrandom-0.2.14.crate 37307 BLAKE2B 
5904388869335ea904d950ee83ad1867a0d3f6831b7139102b53f4bb4a2c12371c9396f1f1cbcc44e3ce69a4ea316651b1674722071bfa7562385ad4b6a88c33
 SHA512 
6c334415e09f570e3123e3c6c6eed1727533ac6c9c4142e16ae995c237a16effe146832a891be9fdde4335bd02b454e0fdd9160f20dc02f107ad106756221658
 DIST getset-0.1.2.crate 8831 BLAKE2B 
b1408f4c0b2ece039d06180e3e2990db2a4ca3c74575be3b4d3df562fc48a43ee8feda42cd957786aa481fc77a554a8e944f34a6a718c07012aea153a1c299c0
 SHA512 
54f162d0d072253abcf26c8779a9d8eb423db9df85716da13a785edb4c61757cf0c03f3563dde5de4534be9d4d50498c03b8337dcaafeaefc29c9c836dff1371
 DIST gimli-0.28.1.crate 270497 BLAKE2B 
4089e0f871295d464e548610ab5f0c2fd863825416109cf58ca827e482897f00eab23b795295758f1e3af16167b52c77c91df6f707f1f445984a6c4bcd68c6ef
 SHA512 
695e46471fc07813dc4a47744458729b097f6efbfceeb57eb3db4165654e99bebb98dde2d73230b90bb5dd7c0ca0c6e77c7c3dc6f2abf70058b830a2fb386d25
 DIST globset-0.4.14.crate 25090 BLAKE2B 

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

2024-04-10 Thread Patrick Lauer
commit: 89953a394e549a6dc1a91886f16773e36b7f47f5
Author: Patrick Lauer  gentoo  org>
AuthorDate: Thu Apr 11 05:06:32 2024 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Thu Apr 11 05:06:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89953a39

sys-apps/syd: drop 3.15.6

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

 sys-apps/syd/Manifest  |  26 -
 sys-apps/syd/syd-3.15.6.ebuild | 248 -
 2 files changed, 274 deletions(-)

diff --git a/sys-apps/syd/Manifest b/sys-apps/syd/Manifest
index 9b4d578f9996..bfaba9faa63c 100644
--- a/sys-apps/syd/Manifest
+++ b/sys-apps/syd/Manifest
@@ -1,18 +1,13 @@
 DIST addr2line-0.21.0.crate 40807 BLAKE2B 
9796b9a1177a299797902b7f64247d81d63d3f7e0dcc1256990628e84c5f92e3094ee8d753d9b72187b9aaa73b7ca67c0217899f2226ebd1076f8d25b458475b
 SHA512 
afde7660dda30dee240e79df1fb5b92d4572520bf17a134ef3765e2a077af9e13713952d52e27fae420109b40f6e24dbce1056687dbcbead858ffc21cc7dc69b
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
-DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
 DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 
8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830
 SHA512 
ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69
 DIST anes-0.1.6.crate 23857 BLAKE2B 
9ef464a964709b408c7d7846b9b1e54e52d6ae8f21f22ccfe509ef7197d4694f439084dbdb01fdf88829d181965ea9d1452253789a46fdf6d0520e3413c50d61
 SHA512 
f9dfaaca9ca327881ec30efaf24e208daae668b1e9d6963c8b0ca9f9fd13be777c793076a87980429f0dfa4db28ef5331ce6652a76da4d5a87485b23fc2fde29
 DIST anstyle-1.0.6.crate 14604 BLAKE2B 
0716d0dbb62bf05c63c2bfe1c689896660073a423d26965ce2570f11e1925752a61209d78c2f2fe65ec4eb64ea4ffbb39669e789c0ba5d1b71e75de929153b20
 SHA512 
dc0e505465be54799b9faad70d0c6f7f0dcf9f5e1aaa43177b826c85dae626b054910244da0499862f066f6723a1560ad12100aec523f28c6198f1ea0d1b78fa
-DIST anyhow-1.0.80.crate 45138 BLAKE2B 
4985d3d8f1d5b5886fae5c7d1a61f921d3d64fb51e24710044b85dfadd2dae2b25b8995cab419cb7cdb5c8cb6b50ad0de93b9a942d34bc45014bd5fb9aecbd39
 SHA512 
481a3bc29de2af0b913d83cc79dacd559cf0bafecafcc707b921b91a732df953a2df582a54e5fca3f506f6441fd47379bd6bd006bcb1bd6f2615198f9903cc59
 DIST anyhow-1.0.81.crate 45142 BLAKE2B 
9b8678c5336fe5fd2823c58eae827f7aba726e12fb6edfa958c6e3b38a96dc3310bc8d044ee2e9db0bc611548f0be9a7b664b75321bd0b8a7e168d27dd3d7e78
 SHA512 
3d328c6b45a4780cfb6fc8daa5581cb5e45b230cb5f55837b0fcc8331c8d53630950c281115c06b21e655821a46d360c4aa667cbb24e87f3a534206361b08af5
 DIST argv-0.1.11.crate 8683 BLAKE2B 
44344e0f3678b159b64d06287d58508479831dc0bd7b044a1ccaebfffdd9023508da5d86f3e6d8af8579cf5351f6c8963581af978ca46bb0b87a37c1802e67d8
 SHA512 
011e8d5333b305387d7667bbcd4d3e694fb73d16ba4c51a10969d5dae7a7a4286f8583c160949fc2724c56c7d47c618813d0dd55c42665c8c2d1cccfcaf414a3
-DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 DIST autocfg-1.2.0.crate 14808 BLAKE2B 
122327d6ffd32e08dc9fbdb4dcf69128b19d56280f9d934311b946741003b40571cdd1f3ef54b2be02c8dc505aea11c962b244d33a92206bf4ee8f6b2b9da432
 SHA512 
66cbfd13e33b36284cf4c74c8d654f93adcc45893d127d9aaa4c1d183e47336096e72d74e7c17dd481fb7a98931ab6cfec7e4d4165cfb491861d4e3ffe2416fc
-DIST backtrace-0.3.69.crate 77299 BLAKE2B 
594358f1d9171fc369f50cacffab03b8a10a8fe3da5b915611cb74b0dbad0e048c7dc79c53569d89827db583e0f61fb7269147b6258781a1599a811e642414a8
 SHA512 
6e86de53e1c5003ef68b6a85479cde1e70bf416bdc50e6e32ead9f9f070fa30ad46de22574041c844ddfeabd5d15de01ef746f19f8cb7f257c491ef0bf071244
 DIST backtrace-0.3.71.crate 86553 BLAKE2B 
15ed93574fb9e8e28d5ad901bb1f94013b5fec7a79aa96d17f13f6f11a02d29a274ec14ce51a9f515574839aa41232e5aaf6e6fa3ad9c0483591055bd0a78c8a
 SHA512 
5d9307757349e860fb4cab7e9ba1c9d0f1faf49ebcd935ba879b85fed2a9812786c7458abb59a742842a0796fc29ce9921cf575792402486ecdbd9a2568cdd89
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: cfa84be72c2db20de97303bdcd8fcf7f5a770ef3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:59:46 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:59:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa84be7

app-misc/sl: drop 5.02, EAPI6--

Bug: https://bugs.gentoo.org/929116
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/sl/sl-5.02.ebuild | 46 --
 1 file changed, 46 deletions(-)

diff --git a/app-misc/sl/sl-5.02.ebuild b/app-misc/sl/sl-5.02.ebuild
deleted file mode 100644
index 5d88a10d5355..
--- a/app-misc/sl/sl-5.02.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="sophisticated graphical program which corrects your miss typing"
-HOMEPAGE="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html 
https://github.com/mtoyoda/sl/;
-SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Toyoda"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
-IUSE="l10n_ja"
-
-RDEPEND="sys-libs/ncurses:0="
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-DOCS=( README.md )
-
-src_prepare() {
-   default
-   sed \
-   -e "s/-lncurses/$($(tc-getPKG_CONFIG) --libs ncurses)/" \
-   -i Makefile || die
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dobin "${PN}"
-   doman "${PN}.1"
-
-   if use l10n_ja; then
-   newman "${PN}.1.ja" "${PN}.ja.1"
-   DOCS+=( README.ja.md )
-   fi
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: 9d171511492a2cacd4c45d4c3f346635ae0862cd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:58:55 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:58:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d171511

app-misc/sl: Stabilize 5.02-r1 ppc, #929116

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

 app-misc/sl/sl-5.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sl/sl-5.02-r1.ebuild b/app-misc/sl/sl-5.02-r1.ebuild
index 0497ff18ea4a..b6996b270416 100644
--- a/app-misc/sl/sl-5.02-r1.ebuild
+++ b/app-misc/sl/sl-5.02-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Toyoda"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="l10n_ja"
 
 RDEPEND="sys-libs/ncurses:="



[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: 2e1fa9fd7ffd9428010ba4d6325be9e47a39754b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:58:56 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:58:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1fa9fd

app-misc/sl: Stabilize 5.02-r1 sparc, #929116

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

 app-misc/sl/sl-5.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sl/sl-5.02-r1.ebuild b/app-misc/sl/sl-5.02-r1.ebuild
index b6996b270416..1639c016cbcc 100644
--- a/app-misc/sl/sl-5.02-r1.ebuild
+++ b/app-misc/sl/sl-5.02-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Toyoda"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="l10n_ja"
 
 RDEPEND="sys-libs/ncurses:="



[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: 27cd0f896060447b33c8b6ffdc39fd5843c1e66b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:58:57 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:58:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27cd0f89

app-misc/sl: Stabilize 5.02-r1 ppc64, #929116

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

 app-misc/sl/sl-5.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sl/sl-5.02-r1.ebuild b/app-misc/sl/sl-5.02-r1.ebuild
index 1639c016cbcc..b5c52723376d 100644
--- a/app-misc/sl/sl-5.02-r1.ebuild
+++ b/app-misc/sl/sl-5.02-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Toyoda"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="l10n_ja"
 
 RDEPEND="sys-libs/ncurses:="



[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: 02833bd2a7faf5b4bec14df1745678c3eb3c1b6e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:58:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:58:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02833bd2

app-misc/sl: Stabilize 5.02-r1 amd64, #929116

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

 app-misc/sl/sl-5.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sl/sl-5.02-r1.ebuild b/app-misc/sl/sl-5.02-r1.ebuild
index 27e1bc985fe1..0497ff18ea4a 100644
--- a/app-misc/sl/sl-5.02-r1.ebuild
+++ b/app-misc/sl/sl-5.02-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Toyoda"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="l10n_ja"
 
 RDEPEND="sys-libs/ncurses:="



[gentoo-commits] repo/gentoo:master commit in: app-misc/sl/

2024-04-10 Thread Arthur Zamarin
commit: 6997476d335c6e63d77e05085601b77d4aca8c79
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:58:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:58:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6997476d

app-misc/sl: Stabilize 5.02-r1 x86, #929116

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

 app-misc/sl/sl-5.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sl/sl-5.02-r1.ebuild b/app-misc/sl/sl-5.02-r1.ebuild
index 50d9b2537716..27e1bc985fe1 100644
--- a/app-misc/sl/sl-5.02-r1.ebuild
+++ b/app-misc/sl/sl-5.02-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mtoyoda/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Toyoda"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="l10n_ja"
 
 RDEPEND="sys-libs/ncurses:="



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: c38298b62888ce5e38fd148c159229465a4fc5dd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:48 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38298b6

app-doc/python-docs: Stabilize 3.12.3 x86, #929047

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

 app-doc/python-docs/python-docs-3.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.12.3.ebuild 
b/app-doc/python-docs/python-docs-3.12.3.ebuild
index 8d0ccfac4762..94688166532e 100644
--- a/app-doc/python-docs/python-docs-3.12.3.ebuild
+++ b/app-doc/python-docs/python-docs-3.12.3.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: 8d659e35063a31625baa11576b6caa47880bf6ac
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:25 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d659e35

dev-lang/python: Stabilize 3.8.19_p1 amd64, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index 1500d2a61978..60969b6ad66e 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 2f4b62af952d9123c34528b170a02f4282431309
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:20 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f4b62af

dev-lang/python: Stabilize 3.8.19_p1 ppc64, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index 8ba02b283da4..4c1ee6f2b0d4 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 7bab7cea4c1ed28ec5ced26ba07254e3be5ee009
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:28 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bab7cea

dev-lang/python: Stabilize 3.8.19_p1 arm64, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index 60969b6ad66e..a2af4ca3f3dc 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 9360c47c73288a24848feada4908d9dad7d0bca1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:33 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9360c47c

dev-lang/python: Stabilize 3.12.3 sparc, #929047

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

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

diff --git a/dev-lang/python/python-3.12.3.ebuild 
b/dev-lang/python/python-3.12.3.ebuild
index 8f5ba0889505..23eb5dfe419f 100644
--- a/dev-lang/python/python-3.12.3.ebuild
+++ b/dev-lang/python/python-3.12.3.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: b59fa7e83b906b06f5b2f821fcccee44da466198
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:45 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59fa7e8

app-doc/python-docs: Stabilize 3.12.3 arm64, #929047

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

 app-doc/python-docs/python-docs-3.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.12.3.ebuild 
b/app-doc/python-docs/python-docs-3.12.3.ebuild
index 5d189d8623e1..8d0ccfac4762 100644
--- a/app-doc/python-docs/python-docs-3.12.3.ebuild
+++ b/app-doc/python-docs/python-docs-3.12.3.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: 055fc4a500bbb1532391cba0e85473e4a7bf93f3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:44 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=055fc4a5

dev-lang/python: Stabilize 3.12.3 arm64, #929047

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

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

diff --git a/dev-lang/python/python-3.12.3.ebuild 
b/dev-lang/python/python-3.12.3.ebuild
index 7f8ab5310137..b48e1e9bc678 100644
--- a/dev-lang/python/python-3.12.3.ebuild
+++ b/dev-lang/python/python-3.12.3.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: 39331a37b9a675a96e883151035de16e15d3c7eb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:34 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39331a37

app-doc/python-docs: Stabilize 3.12.3 sparc, #929047

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

 app-doc/python-docs/python-docs-3.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.12.3.ebuild 
b/app-doc/python-docs/python-docs-3.12.3.ebuild
index 6cb931cb8889..d306d40da5d3 100644
--- a/app-doc/python-docs/python-docs-3.12.3.ebuild
+++ b/app-doc/python-docs/python-docs-3.12.3.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: a656107c97227be63229c3e3bada39ec9d74
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:31 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a656

dev-lang/python: Stabilize 3.8.19_p1 x86, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index a2af4ca3f3dc..40996eefef2c 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: 3275f785a7f12a27e36de6791bb6a505d1d290c3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:42 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3275f785

app-doc/python-docs: Stabilize 3.12.3 amd64, #929047

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

 app-doc/python-docs/python-docs-3.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.12.3.ebuild 
b/app-doc/python-docs/python-docs-3.12.3.ebuild
index d306d40da5d3..5d189d8623e1 100644
--- a/app-doc/python-docs/python-docs-3.12.3.ebuild
+++ b/app-doc/python-docs/python-docs-3.12.3.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc ~x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: 1dc386510db66a586cc128aff28b5dd58ee5e5c7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:47 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc38651

dev-lang/python: Stabilize 3.12.3 x86, #929047

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

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

diff --git a/dev-lang/python/python-3.12.3.ebuild 
b/dev-lang/python/python-3.12.3.ebuild
index b48e1e9bc678..6133d8e6f041 100644
--- a/dev-lang/python/python-3.12.3.ebuild
+++ b/dev-lang/python/python-3.12.3.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 81f2059cd6ffb54b67aff76695cc8db9740ea93b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:41 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f2059c

dev-lang/python: Stabilize 3.12.3 amd64, #929047

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

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

diff --git a/dev-lang/python/python-3.12.3.ebuild 
b/dev-lang/python/python-3.12.3.ebuild
index 23eb5dfe419f..7f8ab5310137 100644
--- a/dev-lang/python/python-3.12.3.ebuild
+++ b/dev-lang/python/python-3.12.3.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: ee45890599c2db5d1c7df6f55b86d34613d82265
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:14 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee458905

dev-lang/python: Stabilize 3.9.19_p2 x86, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index 777dcfd0ffec..fcb40b0b159b 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: f0f909f249c75d26961b76722c4955bcefb45b4d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:17 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f909f2

dev-lang/python: Stabilize 3.8.19_p1 sparc, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index f394c5fb9aa2..8ba02b283da4 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: c6a33e065aa08e591e2726de3e28a69889363ab9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:23 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a33e06

dev-lang/python: Stabilize 3.8.19_p1 ppc, #929050

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

 dev-lang/python/python-3.8.19_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.8.19_p1.ebuild 
b/dev-lang/python/python-3.8.19_p1.ebuild
index 4c1ee6f2b0d4..1500d2a61978 100644
--- a/dev-lang/python/python-3.8.19_p1.ebuild
+++ b/dev-lang/python/python-3.8.19_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 4d54bf7ae817b3bdd449d243abdacba741a20a6e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:12 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d54bf7a

dev-lang/python: Stabilize 3.9.19_p2 arm64, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index a129e3963498..777dcfd0ffec 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: f8c10f5ab8180eaf302ba474b6be739b4dea805a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:57 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c10f5a

dev-lang/python: Stabilize 3.10.14_p1 x86, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index 524761089bd6..1c8c99fe93ca 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 90a6939a0dfd3054f4d64cf774de6a2910fe6f60
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:09 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a6939a

dev-lang/python: Stabilize 3.9.19_p2 amd64, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index f1cf56e0e4a2..a129e3963498 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 01eba9ba21f478898ed35497ad347639eadef02b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:06 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01eba9ba

dev-lang/python: Stabilize 3.9.19_p2 ppc, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index e774e47829e9..f1cf56e0e4a2 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 31c69b4e52d69b55c61a35c189555fee8654234b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c69b4e

dev-lang/python: Stabilize 3.10.14_p1 arm64, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index d77a5705e63d..524761089bd6 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 024cf3b0e04ebde76bad7419dafe409bb158907e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:00 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=024cf3b0

dev-lang/python: Stabilize 3.9.19_p2 sparc, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index fd4b8ed19c88..fa0cc4e386ab 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 96ca73b34f7cb3371a061398b078acc372705718
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:57:03 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:57:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96ca73b3

dev-lang/python: Stabilize 3.9.19_p2 ppc64, #929049

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

 dev-lang/python/python-3.9.19_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.9.19_p2.ebuild 
b/dev-lang/python/python-3.9.19_p2.ebuild
index fa0cc4e386ab..e774e47829e9 100644
--- a/dev-lang/python/python-3.9.19_p2.ebuild
+++ b/dev-lang/python/python-3.9.19_p2.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm +ncurses pgo
+readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 9cf0ad5df3499c8b415ae5eca8bc9ab7af8da585
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:50 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf0ad5d

dev-lang/python: Stabilize 3.10.14_p1 amd64, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index 0a008fd32a38..d77a5705e63d 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 7040a3d73bb9904c3fd1f1dd2cd6decb30978c2b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:45 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7040a3d7

dev-lang/python: Stabilize 3.10.14_p1 ppc64, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index ce716d8c2dca..312486b568b0 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: ba6f99098c1de90c614e2aa1c88ca3e5fd7ce870
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:42 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba6f9909

dev-lang/python: Stabilize 3.10.14_p1 sparc, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index 6900b7539b01..ce716d8c2dca 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 2bacb2d073aee110fb902df8c8bc0eb856e2e3f2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:56:47 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:56:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bacb2d0

dev-lang/python: Stabilize 3.10.14_p1 ppc, #929048

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

 dev-lang/python/python-3.10.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.10.14_p1.ebuild 
b/dev-lang/python/python-3.10.14_p1.ebuild
index 312486b568b0..0a008fd32a38 100644
--- a/dev-lang/python/python-3.10.14_p1.ebuild
+++ b/dev-lang/python/python-3.10.14_p1.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: 9f8ecd530c89b1044eb35d946a8b7330b4163973
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:30 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8ecd53

app-text/crqt-ng: Stabilize 1.0.13 x86, #929057

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

 app-text/crqt-ng/crqt-ng-1.0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/crqt-ng/crqt-ng-1.0.13.ebuild 
b/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
index 76b711740bb4..de0e781b 100644
--- a/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
+++ b/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="+gif +svg +chm +harfbuzz +libunibreak +fribidi +zstd +libutf8proc"
 
 
CDEPEND=">=app-text/crengine-ng-0.9.7:0=[png,jpeg,fontconfig,gif=,svg=,chm=,harfbuzz=,fribidi=,zstd=,libutf8proc=]



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

2024-04-10 Thread Arthur Zamarin
commit: 4895c6f77fa0477e138bf5150a02c01eb018d007
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:36 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4895c6f7

dev-dotnet/dotnet-sdk-bin: Stabilize 8.0.201 amd64, #929110

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

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

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.201.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.201.ebuild
index 38929dc875b5..2912769fa174 100644
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.201.ebuild
+++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.201.ebuild
@@ -27,7 +27,7 @@ S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="${SDK_SLOT}/${RUNTIME_SLOT}"
-KEYWORDS="~amd64 ~arm ~arm64"
+KEYWORDS="amd64 ~arm ~arm64"
 
 # STRIP="llvm-strip" corrupts some executables when using the patchelf hack,
 # bug https://bugs.gentoo.org/923430



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: 0cac3af01bdd228f7009977cbcc73e31a7c74d2f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:28 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cac3af0

app-doc/python-docs: Stabilize 3.12.3 ppc, #929047

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

 app-doc/python-docs/python-docs-3.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.12.3.ebuild 
b/app-doc/python-docs/python-docs-3.12.3.ebuild
index 6772bdafd63b..6cb931cb8889 100644
--- a/app-doc/python-docs/python-docs-3.12.3.ebuild
+++ b/app-doc/python-docs/python-docs-3.12.3.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: 120f2db057f109485959d330ccee18e246dc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:34 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120f2db0

games-util/antimicrox: Stabilize 3.4.0 amd64, #929107

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

 games-util/antimicrox/antimicrox-3.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/antimicrox/antimicrox-3.4.0.ebuild 
b/games-util/antimicrox/antimicrox-3.4.0.ebuild
index b95fc23144b6..26fc3b6c35cf 100644
--- a/games-util/antimicrox/antimicrox-3.4.0.ebuild
+++ b/games-util/antimicrox/antimicrox-3.4.0.ebuild
@@ -16,7 +16,7 @@ else
SRC_URI="https://github.com/AntiMicroX/${PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2024-04-10 Thread Arthur Zamarin
commit: fe6b063922255df3e7481623f63845460586e74c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:37 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe6b0639

dev-lang/boogie: Stabilize 3.1.2 amd64, #929111

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

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

diff --git a/dev-lang/boogie/boogie-3.1.2.ebuild 
b/dev-lang/boogie/boogie-3.1.2.ebuild
index 1e5de6f37894..7a1a6ee296b5 100644
--- a/dev-lang/boogie/boogie-3.1.2.ebuild
+++ b/dev-lang/boogie/boogie-3.1.2.ebuild
@@ -210,7 +210,7 @@ else
SRC_URI="https://github.com/boogie-org/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 SRC_URI+=" ${NUGET_URIS} "



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

2024-04-10 Thread Arthur Zamarin
commit: 58bed6165ad9f36bb322de0c09ca75c03b592a78
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:33 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58bed616

dev-util/chirurgien: Stabilize 2.2 amd64, #929106

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

 dev-util/chirurgien/chirurgien-2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/chirurgien/chirurgien-2.2.ebuild 
b/dev-util/chirurgien/chirurgien-2.2.ebuild
index 137dd8168eaf..ea6b61616671 100644
--- a/dev-util/chirurgien/chirurgien-2.2.ebuild
+++ b/dev-util/chirurgien/chirurgien-2.2.ebuild
@@ -17,7 +17,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/${P^}"
 
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"



[gentoo-commits] repo/gentoo:master commit in: app-office/joplin-desktop/

2024-04-10 Thread Arthur Zamarin
commit: bd20221d5b0969cfcb283c27e910bcb95e094cd8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:31 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd20221d

app-office/joplin-desktop: Stabilize 2.14.19 amd64, #929103

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

 app-office/joplin-desktop/joplin-desktop-2.14.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/joplin-desktop/joplin-desktop-2.14.19.ebuild 
b/app-office/joplin-desktop/joplin-desktop-2.14.19.ebuild
index a9c365263d83..8178f87f501f 100644
--- a/app-office/joplin-desktop/joplin-desktop-2.14.19.ebuild
+++ b/app-office/joplin-desktop/joplin-desktop-2.14.19.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/laurent22/joplin/releases/download/v${PV}/${APPIMAGE
 
 LICENSE="AGPL-3+"
 SLOT="0"
-KEYWORDS="-* ~amd64"
+KEYWORDS="-* amd64"
 RESTRICT="bindist"
 
 RDEPEND="



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

2024-04-10 Thread Arthur Zamarin
commit: f373030da9b2cb0beb5e790779502074f36fa283
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:35 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f373030d

dev-dotnet/dotnet-sdk: Stabilize 8.0.102 amd64, #929109

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

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

diff --git a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild 
b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild
index 6eea4fc79aef..49051dc868f3 100644
--- a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild
+++ b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild
@@ -41,7 +41,7 @@ S="${WORKDIR}/${PN}-${RUNTIME_SLOT}"
 
 LICENSE="MIT"
 SLOT="${SDK_SLOT}/${RUNTIME_SLOT}"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 # STRIP="llvm-strip" corrupts some executables when using the patchelf hack.
 # Be safe and restrict it for source-built too, bug 
https://bugs.gentoo.org/923430



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

2024-04-10 Thread Arthur Zamarin
commit: b2758c6f27c15d5f2afde73af20c358ab22ee6da
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:32 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2758c6f

dev-lang/typescript: Stabilize 5.4.2 amd64, #929105

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

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

diff --git a/dev-lang/typescript/typescript-5.4.2.ebuild 
b/dev-lang/typescript/typescript-5.4.2.ebuild
index 2be080b5..761177a3441e 100644
--- a/dev-lang/typescript/typescript-5.4.2.ebuild
+++ b/dev-lang/typescript/typescript-5.4.2.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}"/package
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm64 ~ppc64"
 
 RDEPEND="net-libs/nodejs"
 BDEPEND=">=net-libs/nodejs-16[npm]"



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

2024-04-10 Thread Arthur Zamarin
commit: bc0ad5811df6749c2cdb85248c3eb55b857fb299
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:34 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc0ad581

games-util/cartridges: Stabilize 2.7.4 amd64, #929108

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

 games-util/cartridges/cartridges-2.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/cartridges/cartridges-2.7.4.ebuild 
b/games-util/cartridges/cartridges-2.7.4.ebuild
index bda78a7b129c..deb98cb4d395 100644
--- a/games-util/cartridges/cartridges-2.7.4.ebuild
+++ b/games-util/cartridges/cartridges-2.7.4.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://github.com/kra-mo/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2024-04-10 Thread Arthur Zamarin
commit: b9059e4ffdcb66c39bb5e19a66822b820e90a71e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:30 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9059e4f

app-text/crengine-ng: Stabilize 0.9.11 x86, #929057

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

 app-text/crengine-ng/crengine-ng-0.9.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/crengine-ng/crengine-ng-0.9.11.ebuild 
b/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
index c13340859a3d..f8228762d42d 100644
--- a/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
+++ b/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2
 
 LICENSE="GPL-2+"
 SLOT="0/6"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="+png +jpeg +gif +svg +chm +harfbuzz +fontconfig +libunibreak +fribidi 
+zstd +libutf8proc static-libs test"
 
 RESTRICT="!test? ( test )"



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

2024-04-10 Thread Arthur Zamarin
commit: 4a419623fddec8a63b03fcf5a5152c66d246631d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:29 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a419623

app-text/crqt-ng: Stabilize 1.0.13 amd64, #929057

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

 app-text/crqt-ng/crqt-ng-1.0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/crqt-ng/crqt-ng-1.0.13.ebuild 
b/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
index 0191ef0b7f1c..76b711740bb4 100644
--- a/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
+++ b/app-text/crqt-ng/crqt-ng-1.0.13.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="+gif +svg +chm +harfbuzz +libunibreak +fribidi +zstd +libutf8proc"
 
 
CDEPEND=">=app-text/crengine-ng-0.9.7:0=[png,jpeg,fontconfig,gif=,svg=,chm=,harfbuzz=,fribidi=,zstd=,libutf8proc=]



[gentoo-commits] repo/gentoo:master commit in: app-doc/python-docs/

2024-04-10 Thread Arthur Zamarin
commit: a4ac7ea4b5b4d0aa203d82ea7703f6e95fbc9f16
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:26 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ac7ea4

app-doc/python-docs: Stabilize 3.11.9 arm64, #929046

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

 app-doc/python-docs/python-docs-3.11.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/python-docs/python-docs-3.11.9.ebuild 
b/app-doc/python-docs/python-docs-3.11.9.ebuild
index 6cb931cb8889..4447e52e1e62 100644
--- a/app-doc/python-docs/python-docs-3.11.9.ebuild
+++ b/app-doc/python-docs/python-docs-3.11.9.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/python-${PV}-docs-html"
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86"
 
 src_install() {
rm -r _sources || die



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

2024-04-10 Thread Arthur Zamarin
commit: 182c9ee4d201e7688f3e790f87b40f8c6e763640
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:27 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=182c9ee4

dev-lang/python: Stabilize 3.12.3 ppc, #929047

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

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

diff --git a/dev-lang/python/python-3.12.3.ebuild 
b/dev-lang/python/python-3.12.3.ebuild
index e206f1690e93..8f5ba0889505 100644
--- a/dev-lang/python/python-3.12.3.ebuild
+++ b/dev-lang/python/python-3.12.3.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Arthur Zamarin
commit: c629417b35a4dabcca398bd82ec60835e86e3dd2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:29 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c629417b

app-text/crengine-ng: Stabilize 0.9.11 amd64, #929057

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

 app-text/crengine-ng/crengine-ng-0.9.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/crengine-ng/crengine-ng-0.9.11.ebuild 
b/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
index 5725b0dbd9a8..c13340859a3d 100644
--- a/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
+++ b/app-text/crengine-ng/crengine-ng-0.9.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2
 
 LICENSE="GPL-2+"
 SLOT="0/6"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="+png +jpeg +gif +svg +chm +harfbuzz +fontconfig +libunibreak +fribidi 
+zstd +libutf8proc static-libs test"
 
 RESTRICT="!test? ( test )"



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

2024-04-10 Thread Arthur Zamarin
commit: 168ed97c24c1e0f9845ced542039f112e91b9387
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Apr 11 04:55:26 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Apr 11 04:55:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=168ed97c

dev-lang/python: Stabilize 3.11.9 arm64, #929046

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

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

diff --git a/dev-lang/python/python-3.11.9.ebuild 
b/dev-lang/python/python-3.11.9.ebuild
index 395776dc4306..99f9650f71a7 100644
--- a/dev-lang/python/python-3.11.9.ebuild
+++ b/dev-lang/python/python-3.11.9.ebuild
@@ -28,7 +28,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="
bluetooth build debug +ensurepip examples gdbm libedit
+ncurses pgo +readline +sqlite +ssl test tk valgrind



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

2024-04-10 Thread Joonas Niilola
commit: e98f60e32cafb9c945dcbc1e0899468cb6d119c1
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 04:25:28 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 04:25:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e98f60e3

media-sound/ncspot: stabilize 1.1.0 for amd64

Signed-off-by: Joonas Niilola  gentoo.org>

 media-sound/ncspot/ncspot-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/ncspot/ncspot-1.1.0.ebuild 
b/media-sound/ncspot/ncspot-1.1.0.ebuild
index b0d62cad0a79..787cc670d983 100644
--- a/media-sound/ncspot/ncspot-1.1.0.ebuild
+++ b/media-sound/ncspot/ncspot-1.1.0.ebuild
@@ -518,7 +518,7 @@ LICENSE+="
Apache-2.0 BSD-2 BSD Boost-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016
 "
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 IUSE="clipboard cover mpris ncurses +notify pulseaudio"
 



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

2024-04-10 Thread Michał Górny
commit: 2d0f5748b64f950d7df30262de6d5d4fc54ecb42
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:04:42 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0f5748

dev-python/pandas: Bump to 2.2.2{,-r1}

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

 dev-python/pandas/Manifest   |   1 +
 dev-python/pandas/pandas-2.2.2-r1.ebuild | 214 ++
 dev-python/pandas/pandas-2.2.2.ebuild| 217 +++
 3 files changed, 432 insertions(+)

diff --git a/dev-python/pandas/Manifest b/dev-python/pandas/Manifest
index e7d0eca84d14..6ec9246b695c 100644
--- a/dev-python/pandas/Manifest
+++ b/dev-python/pandas/Manifest
@@ -1,3 +1,4 @@
 DIST pandas-2.1.4.tar.gz 4274800 BLAKE2B 
71cd374964d5e751a9ea0b29cb341d7de521de8de3bbe0963fc821eb6fa2babf2a5cb87c0f49fab88fd451bd331d83fd216f199c75876d7c1ea367ba53c20178
 SHA512 
de02944829ea4df6a3913788c2ae30683504d70a1cef5789c927245dab8700981edd50de18af3619d30ac97f4658fce67f6c7637acf496bd464ad3a4109bfd1c
 DIST pandas-2.2.0.tar.gz 4390211 BLAKE2B 
205410d02d1295bfb68403685fb9247ca361c80233e762b8d798ff4a04fd1ca39e22bc3beb3f701490dbaf0a2d69a1afebbfe142ef646506c1d19aba88a1b5c6
 SHA512 
6de7f6941f08d412d5e6e3b33e7ad569afce4ade2eda9a68f2883e8ccefe8373212a1b80ac384e68522fb5a9c043de0b944b3920d07131ed6625363f2a4b0b5b
 DIST pandas-2.2.1.tar.gz 4395256 BLAKE2B 
7f66c2995699832930a626ff01b3b39bafa0bd19f41245b8b49bbf5a1b78663433060f4d94817498494b6cf66d38dde27da64e196c6400e50f30441d7e51991b
 SHA512 
8e6af4793d8b77e5c86a22c88f999dba63b1cc1954f5148bdb8c9b1bfe4e7fc5004de7d0f035b2d651f56c44b28ba4b0bd304f9c9122426cc37fb97596e13746
+DIST pandas-2.2.2.tar.gz 4398391 BLAKE2B 
6b723d85c500abaca4d833e4fb329d9a495e3e8ae51c74632111b139ed38ca9e26087ba43ecc40d68f66613352dc140bb2f1b0cbb92915bb027548886072fc79
 SHA512 
85b006f96bd6400aeea2ec29df3557ea6c4bfee0a7aebb172547a43171dc0e7682d15f798081846a4f464559ab83f579cfe06d66d4b5c0cb0fb2975c2ef98f9c

diff --git a/dev-python/pandas/pandas-2.2.2-r1.ebuild 
b/dev-python/pandas/pandas-2.2.2-r1.ebuild
new file mode 100644
index ..f72d6e42f17c
--- /dev/null
+++ b/dev-python/pandas/pandas-2.2.2-r1.ebuild
@@ -0,0 +1,214 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=meson-python
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="threads(+)"
+
+VIRTUALX_REQUIRED="manual"
+
+inherit distutils-r1 optfeature pypi virtualx
+
+DESCRIPTION="Powerful data structures for data analysis and statistics"
+HOMEPAGE="
+   https://pandas.pydata.org/
+   https://github.com/pandas-dev/pandas/
+   https://pypi.org/project/pandas/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~riscv"
+IUSE="full-support minimal test X"
+RESTRICT="!test? ( test )"
+
+RECOMMENDED_DEPEND="
+   >=dev-python/bottleneck-1.3.4[${PYTHON_USEDEP}]
+   >=dev-python/numexpr-2.8.0[${PYTHON_USEDEP}]
+"
+
+# TODO: add pandas-gbq to the tree
+# TODO: Re-add dev-python/statsmodel[python3_11] dep once it supports 
python3_11
+# https://github.com/statsmodels/statsmodels/issues/8287
+OPTIONAL_DEPEND="
+   >=dev-python/beautifulsoup4-4.11.1[${PYTHON_USEDEP}]
+   dev-python/blosc[${PYTHON_USEDEP}]
+   >=dev-python/html5lib-1.1[${PYTHON_USEDEP}]
+   >=dev-python/jinja-3.1.2[${PYTHON_USEDEP}]
+   >=dev-python/lxml-4.8.0[${PYTHON_USEDEP}]
+   >=dev-python/matplotlib-3.6.1[${PYTHON_USEDEP}]
+   >=dev-python/openpyxl-3.0.7[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.4.36[${PYTHON_USEDEP}]
+   >=dev-python/tables-3.7.0[${PYTHON_USEDEP}]
+   >=dev-python/tabulate-0.8.10[${PYTHON_USEDEP}]
+   >=dev-python/xarray-2022.3.0[${PYTHON_USEDEP}]
+   >=dev-python/xlrd-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/xlsxwriter-3.0.3[${PYTHON_USEDEP}]
+   >=dev-python/xlwt-1.3.0[${PYTHON_USEDEP}]
+   !arm? ( !hppa? ( !ppc? ( !x86? (
+   >=dev-python/scipy-1.8.1[${PYTHON_USEDEP}]
+   dev-python/statsmodels[${PYTHON_USEDEP}]
+   ) ) ) )
+   X? (
+   || (
+   >=dev-python/PyQt5-5.15.6[${PYTHON_USEDEP}]
+   >=dev-python/QtPy-2.2.0[${PYTHON_USEDEP}]
+   x11-misc/xclip
+   x11-misc/xsel
+   )
+   )
+"
+DEPEND="
+   >=dev-python/numpy-1.23.2:=[${PYTHON_USEDEP}]
+"
+COMMON_DEPEND="
+   ${DEPEND}
+   >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2020.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${COMMON_DEPEND}
+   >=dev-build/meson-1.2.1
+   >=dev-python/cython-3.0.5[${PYTHON_USEDEP}]
+   >=dev-python/versioneer-0.28[${PYTHON_USEDEP}]
+   test? (
+   ${VIRTUALX_DEPEND}
+   ${RECOMMENDED_DEPEND}
+   ${OPTIONAL_DEPEND}
+   

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

2024-04-10 Thread Michał Górny
commit: 38305501841e6e303d24530503a2c4878ce2670a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:07:09 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38305501

dev-python/h5py: Bump to 3.11.0

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

 dev-python/h5py/Manifest   |  1 +
 dev-python/h5py/h5py-3.11.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/h5py/Manifest b/dev-python/h5py/Manifest
index 9858508408b0..c732deb78cdf 100644
--- a/dev-python/h5py/Manifest
+++ b/dev-python/h5py/Manifest
@@ -1,2 +1,3 @@
 DIST h5py-3.10.0-cython3.patch.xz 3868 BLAKE2B 
3c0d952bdca5307ebf0bf878c26b94d0593bb89ac538a51017fb94e1e488bffc1583dcf4e713005b87d1b5e20d7b73043b24d65404faf60fb69515e598ca2133
 SHA512 
a0a0e3d1a9bccad1c89aa7efe3ba1e080eb70cae1f42f8de1021c212817970eaaa7070131e8e39859eea3c18d6c1243a17e7f53f2179f34ff6c406b315bab8fa
 DIST h5py-3.10.0.tar.gz 403716 BLAKE2B 
a8e4351a15aee5fe9d23f9c5f9b6ff44e688a391ba17e27338675bde60415c73e3cd97a4a0c05490df849f649d626450d3dbecc9ae6ea3d24d784a0a4aaa1850
 SHA512 
840d7f2b9b9d5e22e8edae21c84884abec64acdd6c36437a4921ce9dc1b343c55f66f72b699146d71fe55688f6f948787b62335a24906288e9565b2b19b24b01
+DIST h5py-3.11.0.tar.gz 406519 BLAKE2B 
a5568c96290eee1f6da965174b6fa398f94e2e1825ec4ec50efd856b37ccf2bf634cfeb32101c7c53712fe9c68b0617774e9339a3f0d9373d3df24e6763a20cf
 SHA512 
05d99093d5e7c280779b4167bd3594488dfc348b800da95c2275ddc8d77b4208fd1353942bf8863c4859d0208e8aa8bf84e628b3c5942eb947ecdcf0a7d19e88

diff --git a/dev-python/h5py/h5py-3.11.0.ebuild 
b/dev-python/h5py/h5py-3.11.0.ebuild
new file mode 100644
index ..0cebc6b7bda9
--- /dev/null
+++ b/dev-python/h5py/h5py-3.11.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Simple Python interface to HDF5 files"
+HOMEPAGE="
+   https://www.h5py.org/
+   https://github.com/h5py/h5py/
+   https://pypi.org/project/h5py/
+"
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-3.10.0-cython3.patch.xz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~arm64-macos 
~x64-macos"
+IUSE="examples"
+
+DEPEND="
+   >=sci-libs/hdf5-1.10.4:=[hl(+)]
+"
+RDEPEND="
+   ${DEPEND}
+   >=dev-python/numpy-1.17.3[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   >=dev-python/cython-0.29.31[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.14.5[${PYTHON_USEDEP}]
+   dev-python/pkgconfig[${PYTHON_USEDEP}]
+   test? (
+   dev-python/QtPy[testlib,${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+   dev-python/alabaster
+
+python_prepare_all() {
+   # avoid pytest-mpi dep, we do not use mpi anyway
+   sed -i -e 's:pytest-mpi::' pytest.ini || die
+   distutils-r1_python_prepare_all
+
+   export H5PY_SETUP_REQUIRES=0
+}
+
+python_test() {
+   cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
+   epytest -m "not mpi"
+}
+
+python_install_all() {
+   use examples && dodoc -r examples
+   distutils-r1_python_install_all
+}



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

2024-04-10 Thread Michał Górny
commit: bb3d233f2390f18fc70c2ee224bc1048c674d74e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:59:13 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3d233f

dev-python/openapi-core: Bump to 0.19.1

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

 dev-python/openapi-core/Manifest   |  1 +
 dev-python/openapi-core/openapi-core-0.19.1.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/openapi-core/Manifest b/dev-python/openapi-core/Manifest
index 4430496d97ee..b1edbe7997f0 100644
--- a/dev-python/openapi-core/Manifest
+++ b/dev-python/openapi-core/Manifest
@@ -1,2 +1,3 @@
 DIST openapi_core-0.18.2.tar.gz 8 BLAKE2B 
bb05ba86eff3c70c780f1919a29b93f2137983318834c51204d7ad1094fc645d2dbcef93d92d03096826688fdfe1811c551eee68995fd46739314c2e4bc77cfc
 SHA512 
552109c095c840a46759a54e247a3ac2d8cc36707ba89815740eef4b7fb421bd489929543892341fd89a578bff4043c8c81302fddaa1efe125238e050f152c27
 DIST openapi_core-0.19.0.tar.gz 105815 BLAKE2B 
25036e98dbf4d572e77eb5dcc00909df1cd2d7b7c37bb691c403df2a48273cc2dd4150c99c526eacc709785f4ec9c525de53e7f613f10b15177fc1ff90ce76fe
 SHA512 
3a94170f8ab6a47188c693545be9d2cd965d2479c838a8644d6218f9f46b54fdb94e0550ea5626e5ba58920419b7c700d26b2e6dd6a55afeb73778f582a645e0
+DIST openapi_core-0.19.1.tar.gz 107802 BLAKE2B 
c8cd318ab6a88272e45fbff16df7e0cef7d8bab6c7cef8d965443fa0ad7439182bd9639f8a912ad913eb3d7727c4aeb49d576a8721aac1d0ba9423dd344da44d
 SHA512 
861e3793303ec89265be3a0846ad702e321ebc8536497d146ef10a4c9ab54900ad35ee9e90ef42e1f0856da8c0e746471e9820b0ac3e149adaa0b951a66b382f

diff --git a/dev-python/openapi-core/openapi-core-0.19.1.ebuild 
b/dev-python/openapi-core/openapi-core-0.19.1.ebuild
new file mode 100644
index ..d1b3663e0af8
--- /dev/null
+++ b/dev-python/openapi-core/openapi-core-0.19.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Client-side and server-side support for the OpenAPI Specification 
v3"
+HOMEPAGE="
+   https://github.com/python-openapi/openapi-core/
+   https://pypi.org/project/openapi-core/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   =dev-python/asgiref-3.6.0[${PYTHON_USEDEP}]
+   dev-python/isodate[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-4.17.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-path-0.3.1[${PYTHON_USEDEP}]
+   dev-python/more-itertools[${PYTHON_USEDEP}]
+   dev-python/parse[${PYTHON_USEDEP}]
+   =dev-python/openapi-schema-validator-0.6.0[${PYTHON_USEDEP}]
+   =dev-python/openapi-spec-validator-0.7.1[${PYTHON_USEDEP}]
+   dev-python/werkzeug[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   >=dev-python/aiohttp-3.8.4[${PYTHON_USEDEP}]
+   >=dev-python/aioitertools-0.11.0[${PYTHON_USEDEP}]
+   dev-python/flask[${PYTHON_USEDEP}]
+   >=dev-python/httpx-0.24.0[${PYTHON_USEDEP}]
+   >=dev-python/pytest-aiohttp-1.0.4[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   >=dev-python/starlette-0.26.1[${PYTHON_USEDEP}]
+   dev-python/strict-rfc3339[${PYTHON_USEDEP}]
+   dev-python/webob[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # missing dependendencies
+   tests/integration/contrib/falcon
+   tests/integration/contrib/fastapi
+
+   # TODO: these tests fail to collect
+   tests/integration/validation/test_security_override.py
+   tests/integration/validation/test_read_only_write_only.py
+
+   # unhappy about modern django
+   tests/integration/contrib/django/test_django_project.py
+   tests/unit/contrib/django/test_django.py
+)
+
+src_prepare() {
+   sed -i -e '/--cov/d' pyproject.toml || die
+   distutils-r1_src_prepare
+}



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

2024-04-10 Thread Michał Górny
commit: be2af40b15d91371ed7406c821fd4f9a79fc813f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:56:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2af40b

dev-python/cbor2: Bump to 5.6.3

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

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

diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest
index 8d1faf61b2b0..7cb9096822bc 100644
--- a/dev-python/cbor2/Manifest
+++ b/dev-python/cbor2/Manifest
@@ -1 +1,2 @@
 DIST cbor2-5.6.2.tar.gz 100016 BLAKE2B 
a0a71f40f39ba86c545e5f8462af74e17b6851d350f0c9831be2ac414216437021150d0d7ddb481d62454d5ff73b99ccda7ae0676fd6d53b7e3228616fa0042d
 SHA512 
da98aaf17b17b50bdfc4dbecc1e88e70ed6e99f26e9eb4124de0e92ea2d63f827cee3da83c9aeba1af386cf5a7e95d76be30c79b0a8fde7d53ee8c203b2119b9
+DIST cbor2-5.6.3.tar.gz 100224 BLAKE2B 
bccdca4fb2659c201663897a27801b7ae040fecc1c734356d4e4859df94eb65ef122bdda68384670102ee40476135d0c781c9f966b7c2845babb2bbd9729bc78
 SHA512 
1ab6a88a95cde178b21a75275fb286038f15d2fbd752059f9fc6fdb64e23eca90f65f7e443cae4bdbb7f451378711b20963909136c06b3bb4f054d52a7a95207

diff --git a/dev-python/cbor2/cbor2-5.6.3.ebuild 
b/dev-python/cbor2/cbor2-5.6.3.ebuild
new file mode 100644
index ..4d83e1c675b4
--- /dev/null
+++ b/dev-python/cbor2/cbor2-5.6.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support"
+HOMEPAGE="
+   https://github.com/agronholm/cbor2/
+   https://pypi.org/project/cbor2/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+   >=dev-python/setuptools-61[${PYTHON_USEDEP}]
+   >=dev-python/setuptools-scm-6.4[${PYTHON_USEDEP}]
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # remove pytest-cov dep
+   sed -i -e "s/--cov//" pyproject.toml || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   local -x CBOR2_BUILD_C_EXTENSION=1
+   # pypy3 not supported upstream
+   if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
+   CBOR2_BUILD_C_EXTENSION=0
+   fi
+   distutils-r1_python_compile
+}



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

2024-04-10 Thread Michał Górny
commit: 0ffaf8859574b086156d7cfc62c64374b7bcf1d4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:07:51 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ffaf885

dev-python/sqlglot: Bump to 23.8.2

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

 dev-python/sqlglot/Manifest  |   1 +
 dev-python/sqlglot/sqlglot-23.8.2.ebuild | 121 +++
 2 files changed, 122 insertions(+)

diff --git a/dev-python/sqlglot/Manifest b/dev-python/sqlglot/Manifest
index fda733d5a1dc..9dce0edb90ad 100644
--- a/dev-python/sqlglot/Manifest
+++ b/dev-python/sqlglot/Manifest
@@ -22,6 +22,7 @@ DIST smallvec-1.11.2.crate 34801 BLAKE2B 
58645e99db8f02db64d02c75860c7ea41836c42
 DIST sqlglot-23.7.0.tar.gz 12930040 BLAKE2B 
2edd122e351286948f7adeaea6ead40a4c4ffbe9ff141f8fb0ded2ba8153ff90d051b4c6e5335f0ebb07c816956cb39164918bddc7ab2ef6c805e8713338243e
 SHA512 
31d7eba56a74943cbff4275280c527a1ceeaa69b26fc992b7b227e9bcb836487ce57dfb1f562df1b6780128b1479d2c7f65a8497cb237e6618d8be9ad972130d
 DIST sqlglot-23.8.0.tar.gz 12933026 BLAKE2B 
4f29458d6fc4e45b81e37882a3722dcc82a3cc5e3103234f81629c01fb14ff5aa157d6faf006ed10be15d275b0e5a5575b320aa54d673ddd7be08135c67b5d55
 SHA512 
dd69eb0fe28cbfb6b928c1e2cfe020469da759e75fa73912160e743ae3285cef816b898f3668dd4da87f9f37649310ff67d0f02ee0787c32eff09a15b4ed7138
 DIST sqlglot-23.8.1.tar.gz 12945839 BLAKE2B 
f9b182c0d1a5929ea9cc2b508d681fdef2b22c8c89f81eeb428bd94760a548446fd113573d466b87d51f71688c3ed2605c1626987dfdd4e834aa34b686e3b092
 SHA512 
8ad53f29bd99cb55db8cad09f17b301eb56a0add53b81e322acb997d822be075c4f28324643b3f5740be1bf69f58c03f163ab3506852e038381d6148502ebc47
+DIST sqlglot-23.8.2.tar.gz 12946196 BLAKE2B 
5836f252bb80886a4e7160c17010670dda1de3387df57d076f74e7186ba18ea306e5ec86f4bfe4002dc22ff0aa0eda088c994fb23a075e86319b10c1150a12fb
 SHA512 
95d356d55aeeb796f27bbebf7f1372e07f4569a52dfbae51bfd72ba29483975955afb7e7d1cbdd938e41695794728001c5169e94a1f5f8e448375c01127e97cb
 DIST syn-2.0.41.crate 246016 BLAKE2B 
9d389f2e2a0acb4c84c309456e8ffcc88c5d4d541535ed136832d7a6054dde45a598bb68e8a6f3062ca2a96e1ceae947d54b3aec9bad65b0c51d6733aa6c80db
 SHA512 
6bbaf69ca783025dfb81ac3612ac60bfbed31b2d87792909b35c12892dadebdaff2ddf9463105e536b671dce5870610ab90fe29471284bbd3014dca8d6993f1a
 DIST target-lexicon-0.12.12.crate 25156 BLAKE2B 
f3803596c75f6c89438592a1176c3748fc2c0524d7d50a20056de1cd26d40c572b05bafcdf6dd702752864bea37c8b4f28f96dadc12a5b3bb1d279b25e489f85
 SHA512 
6147295c43ba1b7b087a3c5ab51534b2985e4e77e5e15687978cfb9d07e21c4fd9bc7191576d6cabd268d08a44dc733c4a957e59dba8b948c2055d8bb433aeca
 DIST unicode-ident-1.0.12.crate 42168 BLAKE2B 
4cede03c08758ccd6bf53a0d0057d7542dfdd0c93d342e89f3b90460be85518a9fd24958d8b1da2b5a09b5ddbee8a4263982194158e171c2bba3e394d88d6dac
 SHA512 
bc1824e1e4452a40732fc69874d7e1a66f7803717a314790dcf48867eba34bc9441331ef031e386912e52c385645c25b6ed39d4f149973b5b97371b1b96b1920

diff --git a/dev-python/sqlglot/sqlglot-23.8.2.ebuild 
b/dev-python/sqlglot/sqlglot-23.8.2.ebuild
new file mode 100644
index ..058fa81df816
--- /dev/null
+++ b/dev-python/sqlglot/sqlglot-23.8.2.ebuild
@@ -0,0 +1,121 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+CARGO_OPTIONAL=1
+CRATES="
+   autocfg@1.1.0
+   bitflags@1.3.2
+   cfg-if@1.0.0
+   heck@0.4.1
+   indoc@2.0.4
+   libc@0.2.150
+   lock_api@0.4.11
+   memoffset@0.9.0
+   once_cell@1.19.0
+   parking_lot@0.12.1
+   parking_lot_core@0.9.9
+   proc-macro2@1.0.70
+   pyo3-build-config@0.20.0
+   pyo3-ffi@0.20.0
+   pyo3-macros-backend@0.20.0
+   pyo3-macros@0.20.0
+   pyo3@0.20.0
+   quote@1.0.33
+   redox_syscall@0.4.1
+   scopeguard@1.2.0
+   smallvec@1.11.2
+   syn@2.0.41
+   target-lexicon@0.12.12
+   unicode-ident@1.0.12
+   unindent@0.2.3
+   windows-targets@0.48.5
+   windows_aarch64_gnullvm@0.48.5
+   windows_aarch64_msvc@0.48.5
+   windows_i686_gnu@0.48.5
+   windows_i686_msvc@0.48.5
+   windows_x86_64_gnu@0.48.5
+   windows_x86_64_gnullvm@0.48.5
+   windows_x86_64_msvc@0.48.5
+"
+
+inherit cargo distutils-r1 pypi optfeature
+
+DESCRIPTION="An easily customizable SQL parser and transpiler"
+HOMEPAGE="
+   https://sqlglot.com/
+   https://github.com/tobymao/sqlglot/
+   https://pypi.org/project/sqlglot/
+"
+SRC_URI+="
+   native-extensions? (
+   ${CARGO_CRATE_URIS}
+   )
+"
+
+LICENSE="MIT"
+LICENSE+=" native-extensions? ("
+# Dependent crate licenses
+LICENSE+=" Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016"
+LICENSE+=" )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+   native-extensions? (
+   

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

2024-04-10 Thread Michał Górny
commit: 6bc8a844a12f3d57facbd570163c0c29365003ca
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:05:59 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc8a844

dev-python/trove-classifiers: Bump to 2024.4.10

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

 dev-python/trove-classifiers/Manifest  |  1 +
 .../trove-classifiers-2024.4.10.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/trove-classifiers/Manifest 
b/dev-python/trove-classifiers/Manifest
index a9642de6fa86..7f4ccd7801e9 100644
--- a/dev-python/trove-classifiers/Manifest
+++ b/dev-python/trove-classifiers/Manifest
@@ -1 +1,2 @@
 DIST trove-classifiers-2024.3.25.tar.gz 16040 BLAKE2B 
001a307d041e76213f3d2d115a10467b8434afecb0dc268ed9a1943aa7961c9021b49794a593102372c41b6776f3e513db44f680dda700c9897f65ef593ec860
 SHA512 
3b1d0c08d9a90bfe2314b092270677397d5150f0b641dfaf6ffda7a3447b898ea2c1d2dceab0f61ddceeb6b42945aec19e7a1028bf72ac3a119454f66945db7c
+DIST trove-classifiers-2024.4.10.tar.gz 16036 BLAKE2B 
bfd0ae5e3e1dc2dab67e66dc9cdf90b3ff789d00fff5f13ddf8974736adf3e37c505488d4aea32b0c4b43a6d77617e9a0672def2e66baf813734b1e3bebb8bd3
 SHA512 
2705ea82869bb3092dd37c817d5263955249b44ad64c0fcedc523ecc78eaeb2a327500adbafe70c5d08b5961bf8095748e34a0daa1a2ba8db3fa27e1a35a645b

diff --git a/dev-python/trove-classifiers/trove-classifiers-2024.4.10.ebuild 
b/dev-python/trove-classifiers/trove-classifiers-2024.4.10.ebuild
new file mode 100644
index ..3172a692bdd9
--- /dev/null
+++ b/dev-python/trove-classifiers/trove-classifiers-2024.4.10.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Canonical source for classifiers on PyPI (pypi.org)"
+HOMEPAGE="
+   https://github.com/pypa/trove-classifiers/
+   https://pypi.org/project/trove-classifiers/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+
+distutils_enable_tests pytest
+
+src_configure() {
+   grep -q 'build-backend = "setuptools' pyproject.toml ||
+   die "Upstream changed build-backend, recheck"
+   # write a custom pyproject.toml to ease hatchling bootstrap
+   cat > pyproject.toml <<-EOF || die
+   [build-system]
+   requires = ["flit_core >=3.2,<4"]
+   build-backend = "flit_core.buildapi"
+
+   [project]
+   name = "trove-classifiers"
+   version = "${PV}"
+   description = "Canonical source for classifiers on PyPI 
(pypi.org)."
+   EOF
+}
+
+python_test() {
+   epytest
+   "${EPYTHON}" -m tests.lib || die
+}



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

2024-04-10 Thread Michał Górny
commit: c375e3cc254ffc01bbf51379f387a9c0329d2c29
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:03:32 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c375e3cc

dev-python/django-otp: Bump to 1.4.1

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

 dev-python/django-otp/Manifest|  1 +
 dev-python/django-otp/django-otp-1.4.1.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/django-otp/Manifest b/dev-python/django-otp/Manifest
index 1b4d366e9a0a..302ad5a338bf 100644
--- a/dev-python/django-otp/Manifest
+++ b/dev-python/django-otp/Manifest
@@ -1,2 +1,3 @@
 DIST django_otp-1.3.0.tar.gz 69013 BLAKE2B 
4b6143bb8863e6c151df954a3c4ac4ecca770b1f396dd291e8634e8ad5e0755514111dac02307120e74abacf04bc681503a973bba067817c80bcffc8c462c592
 SHA512 
ef63c5db096ce7d1b10d6b2a99ab6db46b779d4221f509452921fcbf338decbd5c799aec7476587a03b34288ef3f5ff1964dee72105b65f04a22cbd53d445fa4
 DIST django_otp-1.4.0.tar.gz 71690 BLAKE2B 
61144122ab6dec438dcc3136e8856b4d66c598e811f1fdd21e5ba77a907ae5bda88fd543a1c87a165d9ba30ce2bcd7415b04d598719ecb46f2f3ddc15a342aa0
 SHA512 
df4a11d3cb6a55e2506815b81c7e8cc3e9c272afd8d1d9ba94fd1336467b177ea3eb1e89129c3c727d7ce74ce159e5d153a22e0be2d3d638c8357653b22dba56
+DIST django_otp-1.4.1.tar.gz 71847 BLAKE2B 
49764cd1957ab2a6644780c1c6a0947b20bb4a0c1ca286907122a8b47f937aca8d1d2e480f7a309b546ac503cb0c3b1ea3e03532e7d6c38fe8db1606406eda71
 SHA512 
bb041a6ecd93dbad4f83d6593dfbc2f4768e1a3e68df332a61ed9ce483a8ec7090179a6865b128d02a2fc5ba2b42cd63dc16595a7b98e2728733fc274d506b1a

diff --git a/dev-python/django-otp/django-otp-1.4.1.ebuild 
b/dev-python/django-otp/django-otp-1.4.1.ebuild
new file mode 100644
index ..758cf10a6598
--- /dev/null
+++ b/dev-python/django-otp/django-otp-1.4.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Django framework adding two-factor authentication using one-time 
passwords"
+HOMEPAGE="
+   https://github.com/django-otp/django-otp/
+   https://pypi.org/project/django-otp/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-3.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   $(python_gen_impl_dep sqlite)
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/qrcode[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+   ${RDEPEND}
+   )
+"
+
+python_test() {
+   local -x PYTHONPATH=test:${PYTHONPATH}
+   local -x DJANGO_SETTINGS_MODULE=test_project.settings
+   "${EPYTHON}" -m django test -v 2 django_otp ||
+   die "Tests fail with ${EPYTHON}"
+}



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

2024-04-10 Thread Michał Górny
commit: d8860969dd4d89a8e8a20d67a0edc75864f48d6f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:55:58 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8860969

dev-python/stripe: Bump to 9.0.0

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

 dev-python/stripe/Manifest|  1 +
 dev-python/stripe/stripe-9.0.0.ebuild | 88 +++
 2 files changed, 89 insertions(+)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 0675e097a85c..b6e77e4b41b7 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -2,3 +2,4 @@ DIST stripe-8.10.0.tar.gz 1208587 BLAKE2B 
844f220b8d7a5c53fda9d5d11418098dada870
 DIST stripe-8.11.0.tar.gz 1215071 BLAKE2B 
7e3eec2008582a7ba52bf6c9a9676f5886cb3a52aed06302f2a21c572db01c759f5a48a743ee32d76cd54d28acb507b46ee556a10b277c6727e0737f055506bf
 SHA512 
9d53ed3e253f18de36dfaf3c28fbcba7ef957f35b6f117c0dcb50040e0484f6fde1f3deb816d51aac62ddad64a20ae344acd25d680ec10c7fa7ddde1cf16c0ec
 DIST stripe-8.7.0.tar.gz 1080685 BLAKE2B 
0d91f852ad88cf09fb5230a421f9b9b5ade3e7617e95f6f0b5ff3bb14e307d272c1d8600a2673d63a408ca24501e71383fa18f527433e9fbc816f6a48fb9c576
 SHA512 
977c57a4bad1b572dbee566609f28a9b7e3bffea6516ac48b1f69c51a8ee8fb44d342ce886e2809f6c18b633c30f57e35c565817f2dd67d82c23048dc47d66e5
 DIST stripe-8.9.0.tar.gz 1124248 BLAKE2B 
158b070256404dfa7f5d2a13f076c08834fc0ec5c3f0564912bcd461276d790faf0530260f291f8681c357de727465ab900339b4d53ddf93972ace7411748ff8
 SHA512 
e4505262720eaccffd5b5e12858df1ca81117bdb9103ac7f9425ae50f93ac621b13587a314edc80546f1f6c4b28c5908fcd34f31dacc8e2c80b4532bf56fb63e
+DIST stripe-9.0.0.tar.gz 1214282 BLAKE2B 
b96e5dc11eebbd5222bcc21f8767b0ea37d92b72c02a96f1bf368839c03dd4ef7e6844c90c124bb0f921da12718e3ec7246e75b4371a84a89a1ce1fcb25b6b48
 SHA512 
1af49ac3d9e3c7a041c035ac7766191f7b2aac39afd173a2e5ffdb4678e535dbdad5cfe1ef70f241296740329d75af5a8096d35e85c422bdb3266fa7f49459c9

diff --git a/dev-python/stripe/stripe-9.0.0.ebuild 
b/dev-python/stripe/stripe-9.0.0.ebuild
new file mode 100644
index ..eb4a5aa2c699
--- /dev/null
+++ b/dev-python/stripe/stripe-9.0.0.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Stripe python bindings"
+HOMEPAGE="
+   https://github.com/stripe/stripe-python/
+   https://pypi.org/project/stripe/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="telemetry"
+
+RDEPEND="
+   >=dev-python/requests-2.20[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4.5.0[${PYTHON_USEDEP}]
+"
+# please bump dev-util/stripe-mock dep to the latest version on every bump
+BDEPEND="
+   test? (
+   >=dev-util/stripe-mock-0.183.0
+   dev-python/aiohttp[${PYTHON_USEDEP}]
+   dev-python/anyio[${PYTHON_USEDEP}]
+   dev-python/httpx[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/trio[${PYTHON_USEDEP}]
+   net-misc/curl
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
+
+src_prepare() {
+   if ! use telemetry; then
+   sed -i -e '/enable_telemetry/s:True:False:' stripe/__init__.py 
|| die
+   fi
+   # https://github.com/stripe/stripe-python/pull/1297
+   sed -e 's:from mock:from unittest.mock:' \
+   -i tests/test_http_client.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest tests -p anyio -p pytest_mock
+}
+
+src_test() {
+   local stripe_mock_port=12111
+   local stripe_mock_max_port=12121
+   local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
+   # Try to start stripe-mock until we find a free port
+   while [[ ${stripe_mock_port} -le ${stripe_mock_max_port} ]]; do
+   ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
+   stripe-mock --http-port "${stripe_mock_port}" &> 
"${stripe_mock_logfile}" &
+   local stripe_mock_pid=${!}
+   sleep 2
+   # Did stripe-mock start?
+   curl --fail -u "sk_test_123:" \
+   "http://127.0.0.1:${stripe_mock_port}/v1/customers; &> 
/dev/null
+   eend ${?} "Port ${stripe_mock_port} unavailable"
+   if [[ ${?} -eq 0 ]]; then
+   einfo "stripe-mock running on port ${stripe_mock_port}"
+   break
+   fi
+   (( stripe_mock_port++ ))
+   done
+   if [[ ${stripe_mock_port} -gt ${stripe_mock_max_port} ]]; then
+   eerror "Unable to start stripe-mock for tests"
+   

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

2024-04-10 Thread Michał Górny
commit: a7c6dd17baa88631b2a2f9d59132b5c519258d6a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 04:02:53 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c6dd17

dev-python/mako: Bump to 1.3.3

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

 dev-python/mako/Manifest  |  1 +
 dev-python/mako/mako-1.3.3.ebuild | 49 +++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/mako/Manifest b/dev-python/mako/Manifest
index 1877327c693c..933299d49615 100644
--- a/dev-python/mako/Manifest
+++ b/dev-python/mako/Manifest
@@ -1 +1,2 @@
 DIST Mako-1.3.2.tar.gz 390659 BLAKE2B 
930b74a19c8b582781b05d7042f8c27636989614df62328f5c3548d427c1e3e2366edb8a7ad3ecbd123ef5344c9cf2ba1bdc00e8540b9624d7bcecfecb8329a5
 SHA512 
acde7b4be929fdd97f2a3fc133966ffc44b5706dbdd3f1af0fee16620b3c82d12b1a67b7292a229084ebb4f0c392e8db1b2844112baa3c6a5fd2be8777b04897
+DIST Mako-1.3.3.tar.gz 389980 BLAKE2B 
1c890f159e808a7026e46a489d49ec19a346ce0a8be8d2ea1ef870435830a9021b0877a3d395c9273609be9dc4b11d1e5359d89a9b571a73f05de11152988800
 SHA512 
fa8bf3997f7a3edc18057f53e8450d72d5c86019229fef91eaa141f0b65a081ca9425c14245227b35aed7dbe52e90bc7dfee34598b490e93cd01fc4a8321

diff --git a/dev-python/mako/mako-1.3.3.ebuild 
b/dev-python/mako/mako-1.3.3.ebuild
new file mode 100644
index ..2069ece40b7a
--- /dev/null
+++ b/dev-python/mako/mako-1.3.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN^}
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A Python templating language"
+HOMEPAGE="
+   https://www.makotemplates.org/
+   https://github.com/sqlalchemy/mako/
+   https://pypi.org/project/Mako/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/Babel[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=()
+   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
+   
test/test_exceptions.py::ExceptionsTest::test_alternating_file_names
+   )
+   epytest
+}
+
+python_install_all() {
+   rm -r doc/build || die
+
+   use doc && local HTML_DOCS=( doc/. )
+   distutils-r1_python_install_all
+}



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

2024-04-10 Thread Michał Górny
commit: 06947f699c181a27c19241c20d066a930803f1ad
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:54:41 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06947f69

dev-libs/c-blosc2: Bump to 2.14.4

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

 dev-libs/c-blosc2/Manifest   |  1 +
 dev-libs/c-blosc2/c-blosc2-2.14.4.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/dev-libs/c-blosc2/Manifest b/dev-libs/c-blosc2/Manifest
index 48e5886c7c13..3aa46ecf25b7 100644
--- a/dev-libs/c-blosc2/Manifest
+++ b/dev-libs/c-blosc2/Manifest
@@ -3,3 +3,4 @@ DIST c-blosc2-2.13.2.gh.tar.gz 3152011 BLAKE2B 
1bf9826e6eb1babacb0fe6f7f90c5ca66
 DIST c-blosc2-2.14.0.gh.tar.gz 3155739 BLAKE2B 
2607ea3e842fce469f04d31b2d92503f270409e952968e7217ca87ebccd64b25aa38282743f7fdb3ba199f71acc246f7ef9fa0b24e33417e6bdf69a68aba62a6
 SHA512 
74f0df844c722248a1743fa6ce4b20ae526831f29cc66baf6f487e743c9fc65713e089ebab63ebcf43ac7b1201e82f9c7049dfb68cff17116de93f36d9482557
 DIST c-blosc2-2.14.1.gh.tar.gz 3155751 BLAKE2B 
6967914214603af724ab523e91cef2c720018c75002402a5d3ac1bf064af27069ee12db80f7ac37ad5136a30a280b37b829fda7c03b87e2a027599d235ed6021
 SHA512 
952e2331be4747005e82cabdda310f96031dcfe54f9fe92f68ff2efb42aa8dfb3aa9d6c3ab9ce9f94ea52c34322047447db98d530a58eddc9fca6f62872fd272
 DIST c-blosc2-2.14.3.gh.tar.gz 3155812 BLAKE2B 
e34813d3903792d48ccd4ff9f52dd353fa2529427e42001c70a93851b3d19eb2ec0d7aadf6694c49db799789d1a8fc8a9474e6db0a91119aeeff69253d058e04
 SHA512 
dcc019c32785f1c46c185e8364104dcf1954ca865b620d7d35e21c8772d82b95dd7e956281a0ba637a15263c7cb9a5616fbb83a59409d6b1a1ba144152deb20a
+DIST c-blosc2-2.14.4.gh.tar.gz 3155712 BLAKE2B 
1af67562150b7b0b87fa076114bab0cccfbd12417c13dfae4fbd40e15531ed54f3a315588ac81b15e137f0272ac6c610c48205608be0b9e98ce44218dd200a27
 SHA512 
4173c7b0cf4f0399a3d36c987d265aacf766f54dc871ca87ebd98d4ecd4fbd24d4b923ffb2d0b59bda359e1fbba29f088d78816d375904b1945e8c40c29dccce

diff --git a/dev-libs/c-blosc2/c-blosc2-2.14.4.ebuild 
b/dev-libs/c-blosc2/c-blosc2-2.14.4.ebuild
new file mode 100644
index ..21d8413c0e29
--- /dev/null
+++ b/dev-libs/c-blosc2/c-blosc2-2.14.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Blocking, shuffling and lossless compression library"
+HOMEPAGE="
+   https://www.blosc.org/c-blosc2/c-blosc2.html
+   https://github.com/Blosc/c-blosc2/
+"
+SRC_URI="
+   https://github.com/Blosc/c-blosc2/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="test +zlib +zstd"
+REQUIRED_USE="test? ( zlib zstd )"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   >=app-arch/lz4-1.7.5:=
+   zlib? ( sys-libs/zlib:= )
+   zstd? ( app-arch/zstd:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+
+src_configure() {
+   # remove bundled libs (just in case)
+   rm -rf internal-complibs || die
+
+   local mycmakeargs=(
+   -DBUILD_STATIC=OFF
+   -DBUILD_TESTS=$(usex test)
+   -DBUILD_BENCHMARKS=OFF
+   -DBUILD_EXAMPLES=OFF
+   -DBUILD_FUZZERS=OFF
+   -DDEACTIVATE_ZLIB=$(usex !zlib)
+   -DDEACTIVATE_ZSTD=$(usex !zstd)
+   -DPREFER_EXTERNAL_LZ4=ON
+   -DPREFER_EXTERNAL_ZLIB=ON
+   -DPREFER_EXTERNAL_ZSTD=ON
+
+   # force regular zlib, at least for  the time being
+   -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB_NG=ON
+
+   # upstream overrides CMAKE_C_FLAGS, preventing ${CFLAGS} 
defaults
+   # from applying, https://github.com/Blosc/c-blosc2/issues/433
+   -DCMAKE_C_FLAGS="${CFLAGS}"
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   # Tests fail in parallel, https://github.com/Blosc/c-blosc2/issues/432
+   MAKEOPTS=-j1 cmake_src_test
+}



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

2024-04-10 Thread Michał Górny
commit: 89def5999f7dc1a9b2371244f1c4ee8d554dd865
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:54:54 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89def599

dev-libs/c-blosc2: Remove old

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

 dev-libs/c-blosc2/Manifest   |  1 -
 dev-libs/c-blosc2/c-blosc2-2.14.3.ebuild | 63 
 2 files changed, 64 deletions(-)

diff --git a/dev-libs/c-blosc2/Manifest b/dev-libs/c-blosc2/Manifest
index 3aa46ecf25b7..48335995ab69 100644
--- a/dev-libs/c-blosc2/Manifest
+++ b/dev-libs/c-blosc2/Manifest
@@ -2,5 +2,4 @@ DIST c-blosc2-2.10.5.gh.tar.gz 3144174 BLAKE2B 
a680def405f2383636185ab1b71a42e04
 DIST c-blosc2-2.13.2.gh.tar.gz 3152011 BLAKE2B 
1bf9826e6eb1babacb0fe6f7f90c5ca6617cf1cf4df269af95c94e175d0a1cc2015905b9cf6a48107f0b10431feb646ec5de095e00dc29f3bab8d53564e7d4fe
 SHA512 
441df73dca3fe210b0df68bfc3da037a05393f80044f5e2c816000a244ade4cf8e223b2fce2127c034c27a35f2742b05fe06c08861e93c02bc7598d5a4b8a917
 DIST c-blosc2-2.14.0.gh.tar.gz 3155739 BLAKE2B 
2607ea3e842fce469f04d31b2d92503f270409e952968e7217ca87ebccd64b25aa38282743f7fdb3ba199f71acc246f7ef9fa0b24e33417e6bdf69a68aba62a6
 SHA512 
74f0df844c722248a1743fa6ce4b20ae526831f29cc66baf6f487e743c9fc65713e089ebab63ebcf43ac7b1201e82f9c7049dfb68cff17116de93f36d9482557
 DIST c-blosc2-2.14.1.gh.tar.gz 3155751 BLAKE2B 
6967914214603af724ab523e91cef2c720018c75002402a5d3ac1bf064af27069ee12db80f7ac37ad5136a30a280b37b829fda7c03b87e2a027599d235ed6021
 SHA512 
952e2331be4747005e82cabdda310f96031dcfe54f9fe92f68ff2efb42aa8dfb3aa9d6c3ab9ce9f94ea52c34322047447db98d530a58eddc9fca6f62872fd272
-DIST c-blosc2-2.14.3.gh.tar.gz 3155812 BLAKE2B 
e34813d3903792d48ccd4ff9f52dd353fa2529427e42001c70a93851b3d19eb2ec0d7aadf6694c49db799789d1a8fc8a9474e6db0a91119aeeff69253d058e04
 SHA512 
dcc019c32785f1c46c185e8364104dcf1954ca865b620d7d35e21c8772d82b95dd7e956281a0ba637a15263c7cb9a5616fbb83a59409d6b1a1ba144152deb20a
 DIST c-blosc2-2.14.4.gh.tar.gz 3155712 BLAKE2B 
1af67562150b7b0b87fa076114bab0cccfbd12417c13dfae4fbd40e15531ed54f3a315588ac81b15e137f0272ac6c610c48205608be0b9e98ce44218dd200a27
 SHA512 
4173c7b0cf4f0399a3d36c987d265aacf766f54dc871ca87ebd98d4ecd4fbd24d4b923ffb2d0b59bda359e1fbba29f088d78816d375904b1945e8c40c29dccce

diff --git a/dev-libs/c-blosc2/c-blosc2-2.14.3.ebuild 
b/dev-libs/c-blosc2/c-blosc2-2.14.3.ebuild
deleted file mode 100644
index 83ec7fc645ac..
--- a/dev-libs/c-blosc2/c-blosc2-2.14.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Blocking, shuffling and lossless compression library"
-HOMEPAGE="
-   https://www.blosc.org/c-blosc2/c-blosc2.html
-   https://github.com/Blosc/c-blosc2/
-"
-SRC_URI="
-   https://github.com/Blosc/c-blosc2/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test +zlib +zstd"
-REQUIRED_USE="test? ( zlib zstd )"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=app-arch/lz4-1.7.5:=
-   zlib? ( sys-libs/zlib:= )
-   zstd? ( app-arch/zstd:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-
-src_configure() {
-   # remove bundled libs (just in case)
-   rm -rf internal-complibs || die
-
-   local mycmakeargs=(
-   -DBUILD_STATIC=OFF
-   -DBUILD_TESTS=$(usex test)
-   -DBUILD_BENCHMARKS=OFF
-   -DBUILD_EXAMPLES=OFF
-   -DBUILD_FUZZERS=OFF
-   -DDEACTIVATE_ZLIB=$(usex !zlib)
-   -DDEACTIVATE_ZSTD=$(usex !zstd)
-   -DPREFER_EXTERNAL_LZ4=ON
-   -DPREFER_EXTERNAL_ZLIB=ON
-   -DPREFER_EXTERNAL_ZSTD=ON
-
-   # force regular zlib, at least for  the time being
-   -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB_NG=ON
-
-   # upstream overrides CMAKE_C_FLAGS, preventing ${CFLAGS} 
defaults
-   # from applying, https://github.com/Blosc/c-blosc2/issues/433
-   -DCMAKE_C_FLAGS="${CFLAGS}"
-   )
-   cmake_src_configure
-}
-
-src_test() {
-   # Tests fail in parallel, https://github.com/Blosc/c-blosc2/issues/432
-   MAKEOPTS=-j1 cmake_src_test
-}



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

2024-04-10 Thread Michał Górny
commit: 2575afd818365340f8887df2c24612cd6ee22e61
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:13:09 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2575afd8

dev-python/boto3: Bump to 1.34.82

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.34.82.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 37635fb80719..4e54453a0552 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,3 +3,4 @@ DIST boto3-1.34.74.gh.tar.gz 790202 BLAKE2B 
4368db3e11d6bda6eee4ccde82bcc0c2c5a6
 DIST boto3-1.34.79.gh.tar.gz 792796 BLAKE2B 
97a4f8e6fc33bcfe2817ce353df8ff6354bc89c449e5e29833704e12513aa21129863164c51047b17c7f15a47f0ceb90c60a83071464283292089b2535e8fed9
 SHA512 
15161face918253eac06dfbeb67adb8ef5ed6902b2eed760feb9fdd3aee0e38da3511aa7d829914b6f80addff7feffae7d3645f7567643a37d3659001d7b6a1a
 DIST boto3-1.34.80.gh.tar.gz 793186 BLAKE2B 
aa45147344c21291f413580473bdd358d25e69944c16ea43e731465911c5c16fdc1e9fde20d69634debdc7cd0af07a999072ee6ecfb6c0b93a96ecb66dee78b3
 SHA512 
a43be78c98060a0aeb232dad7bb118768711e375f8137d0b59293397056a360a6a6e7d067651404c4ae43180d9c5e100fd2ee041b8ecc17e9982a30cdfc0e8d4
 DIST boto3-1.34.81.gh.tar.gz 793676 BLAKE2B 
40e8eccfc1a619c5d542233faa13aa099fad43c6eddf669914cdbcd58c44bb13433ccad44d6aa2ef5162ba4f7725269b60e82d9093b2119b029eb884b0fdb4ef
 SHA512 
a1823dd568f3e46bdea0830cd1a56aecd949d7e5f1e3558f759a672ed10f754faf546a69c8f1489dc203f04dc173de644689b6bdb53c4446f3cf81adbabc9211
+DIST boto3-1.34.82.gh.tar.gz 794338 BLAKE2B 
ea4053423ed712e7ecbaeb749eb1f6a8bc4a2302f71662d10fb9014a2c95a7539943bbffb8175a1fbda9631c931aea2a756f337ccc2f59cd4bf4ae4b5063049b
 SHA512 
d21b91f4f3fee6e91414ce75a39622a09ea7c570c5877fa140e88ea3ab04ce98a34167a973802766c5c654b9a038c536199cc330c1687af9b917ebf4767223a5

diff --git a/dev-python/boto3/boto3-1.34.82.ebuild 
b/dev-python/boto3/boto3-1.34.82.ebuild
new file mode 100644
index ..2c733040b7a3
--- /dev/null
+++ b/dev-python/boto3/boto3-1.34.82.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux"
+
+RDEPEND="
+   >=dev-python/botocore-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.10.0[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest tests/{functional,unit}
+}



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

2024-04-10 Thread Michał Górny
commit: 177fac774c00bde8524d9a0145bfcdd48a160710
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:15:55 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=177fac77

dev-python/scikit-image: Bump to 0.23.1

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

 dev-python/scikit-image/Manifest   |  1 +
 dev-python/scikit-image/scikit-image-0.23.1.ebuild | 97 ++
 2 files changed, 98 insertions(+)

diff --git a/dev-python/scikit-image/Manifest b/dev-python/scikit-image/Manifest
index ecdbdaba9105..19374f7c05eb 100644
--- a/dev-python/scikit-image/Manifest
+++ b/dev-python/scikit-image/Manifest
@@ -1,3 +1,4 @@
 DIST scikit-image-data-15735b54e85c02427f07c71e6456723495034805.tar.bz2 
143900901 BLAKE2B 
c1352e76337250fe1a9d6e07f08b6c9b1e0aed922ab8e0a3a4a1ea175f593b3375522e59550d30a22d392c34fef26d638c007c2af3d991887e02e7c68e56ebbb
 SHA512 
d113dd258b35be710d841f9900cfbfe7103d1190b042489de88dd504b56277edac9a98fed5517e57725c5292fe26528267a06ff313bf6500b669d872c4481146
 DIST scikit_image-0.22.0.tar.gz 22685018 BLAKE2B 
7d0a65f75f5a58211e21501d6cc6a638f1d36e9a2198a3ad9ff2f230890496c41d5e6cdaed02bbaa62f26aa57fd24fc993656cbdfc2c9c9750147d0f325e56f1
 SHA512 
4b8c097cd5465f57b1c0879363fe3bdc0941decf2d1f8a881f13f2b7f3207c425f3a0cdcb4be0eed7b33d3ac2f3f8b1835d1cfa69cd3fa2ff5e0be11385fef48
 DIST scikit_image-0.23.0rc2.tar.gz 22677632 BLAKE2B 
b663065650e25a33ffec80ddd05df622bc62b1c1d3d0a831488d4dd23291b4f125458ae335782762b1d4dc1efa8cbedd5fcd7e6bbe62003967209e4ca4179bca
 SHA512 
aa5f27d571ea49276aba8443a691b30a576d52145a17f13b8ea080a2abf0ed01c57fe50324c05e72bb4662a9ddbb480be94be6784ac3220ed6853b12d94ae06b
+DIST scikit_image-0.23.1.tar.gz 22676819 BLAKE2B 
2d02bab4f8d6217c842f428a6758d467393a73a05ac741a49cd27fa6ee48335cf8fed4cc104296388d0e23c61ac3603f72d7bab44986c0d3d4073da383f89726
 SHA512 
7450387c3adcac15148c3ae4f43fd7da97ceabf3522302b7f3ab4cd02e5a9ec2cd9623f29e4aec3bb47668a231e0900724804619bb91aaaf97283d29c34392e6

diff --git a/dev-python/scikit-image/scikit-image-0.23.1.ebuild 
b/dev-python/scikit-image/scikit-image-0.23.1.ebuild
new file mode 100644
index ..cb08918d42e9
--- /dev/null
+++ b/dev-python/scikit-image/scikit-image-0.23.1.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=meson-python
+DISTUTILS_EXT=1
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 optfeature pypi
+
+TEST_DATA_COMMIT=15735b54e85c02427f07c71e6456723495034805
+DESCRIPTION="Image processing routines for SciPy"
+HOMEPAGE="
+   https://scikit-image.org/
+   https://github.com/scikit-image/scikit-image/
+   https://pypi.org/project/scikit-image/
+"
+SRC_URI+="
+   test? (
+   
https://gitlab.com/scikit-image/data/-/archive/${TEST_DATA_COMMIT}/scikit-image-data-${TEST_DATA_COMMIT}.tar.bz2
+   )
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/imageio-2.33[${PYTHON_USEDEP}]
+   >=dev-python/lazy-loader-0.4[${PYTHON_USEDEP}]
+   >=dev-python/networkx-2.8[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.23[${PYTHON_USEDEP}]
+   >=dev-python/pillow-9.1[${PYTHON_USEDEP}]
+   >=dev-python/scipy-1.9[sparse(+),${PYTHON_USEDEP}]
+   >=dev-python/tifffile-2022.8.12[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   >=dev-python/cython-3.0.4[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( CONTRIBUTORS.txt RELEASE.txt )
+
+# xdist does not work with this test suite
+distutils_enable_tests pytest
+# There is a programmable error in your configuration file:
+#distutils_enable_sphinx doc/source dev-python/numpydoc dev-python/myst-parser
+
+src_test() {
+   # for some reason, upstream refetches data that's already in the tarball
+   # sigh
+   mkdir -p "${HOME}/.cache/scikit-image" || die
+   mv skimage "${HOME}/.cache/scikit-image/${PV/_/}" || die
+
+   # This is a true horror, sigh
+   local cache_dir=${HOME}/.cache/scikit-image/${PV/_/}/data
+   pushd "${WORKDIR}/data-${TEST_DATA_COMMIT}" >/dev/null || die
+   cp Tests_besides_Equalize_Otsu/add18_entropy/rank_filters_tests_3d.npz \
+   Tests_besides_Equalize_Otsu/gray_morph_output.npz \
+   brain.tiff cells3d.tif eagle.png \
+   "${cache_dir}/" || die
+   cp Normal_Epidermis_and_Dermis_with_Intradermal_Nevus_10x.JPG 
"${cache_dir}"/skin.jpg || die
+   cp pivchallenge/B/B001_1.tif "${cache_dir}"/pivchallenge-B-B001_1.tif 
|| die
+   cp pivchallenge/B/B001_2.tif "${cache_dir}"/pivchallenge-B-B001_2.tif 
|| die
+   cp kidney-tissue-fluorescence.tif "${cache_dir}"/kidney.tif || die
+   cp lily-of-the-valley-fluorescence.tif 

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

2024-04-10 Thread Michał Górny
commit: 8e464d767de5272c21d036616731a71d687c5271
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:13:29 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:20:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e464d76

app-admin/awscli: Bump to 1.32.82

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.32.82.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 872ef7ed47df..4964fa381d1c 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -3,3 +3,4 @@ DIST aws-cli-1.32.74.gh.tar.gz 2682208 BLAKE2B 
aba8be6e597a6d07197bd06d51f167f7a
 DIST aws-cli-1.32.79.gh.tar.gz 2685785 BLAKE2B 
3bbfad927d9d882e6b502f47919ce963df498c614a92730c5d6b1fb4efd7a8bd805a5c8cc82c705b97d8ee0ddbee4d6ddfa9cb46661fe7e9337add53bda3d9a1
 SHA512 
e0e369b6a5fca4d72365e54ef99c862e2d6f68caed61ac431516777e82ec8b292cf50516f379d8e94787b2a0ee58ad6e68d0951624f1ed742079295c4d2987ce
 DIST aws-cli-1.32.80.gh.tar.gz 2685662 BLAKE2B 
9dd199937159943c419d4df98badee5253c9910c2d392fd843ff63d8edca6f71309c97221b623c7f0e2140a615cf804f69048024d6fbefea75d0da78cdafdfc1
 SHA512 
f30fc5a9f1890ef3d313e527d886588720d7ba039a44975c7600ea0bb326b542eb3897341cc832d68e759c95bbb2de8f8cc0ecfbf9c1c1b7e4d00dd9c7fd3213
 DIST aws-cli-1.32.81.gh.tar.gz 2687946 BLAKE2B 
09b672ceb60ba98c49bc7d747ce3639e40e0add35f583de7e42cea5e885fd833bd91c6eb4c94630c7151c914cebe28ee1327472a736d46ae3594e3a558db4e81
 SHA512 
f94f7147a946bfeb7414d08c7144ce6b452eb68bc9d42c686724824c5e8d77b012a5496778bfdf7cb15114065f3227e456df22327eeda505bb49c6da46934c34
+DIST aws-cli-1.32.82.gh.tar.gz 2688583 BLAKE2B 
a77a64894949c5e06e6047423ed566ba285ca82bc31c289f81e1f11410b909b053112771789fcc1ed4cf20946993c35ff217f18d0ca57f333a621337b41eb05b
 SHA512 
715a28b754f420264633eb88abd317317a71fa2f730a905172c166652cdc4ccc16ad300754b26e0016268b967039fb1680caee9be3016e9f80b9f5777d2adfd6

diff --git a/app-admin/awscli/awscli-1.32.82.ebuild 
b/app-admin/awscli/awscli-1.32.82.ebuild
new file mode 100644
index ..4a677affdbc4
--- /dev/null
+++ b/app-admin/awscli/awscli-1.32.82.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit bash-completion-r1 distutils-r1
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.10.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local serial_tests=(
+   
tests/functional/ecs/test_execute_command.py::TestExecuteCommand::test_execute_command_success
+   
tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_{fails,success}
+   
tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_with_new_version_plugin_success
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking_windows
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestNuGetLogin::test_login_nuget_sources_listed_with_backtracking
+   
tests/unit/customizations/ecs/test_executecommand_startsession.py::TestExecuteCommand::test_execute_command_success
+   

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

2024-04-10 Thread Michał Górny
commit: e57a201336e03b4954ca66aed7f36ee13dc20fe8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 11 03:12:55 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 11 04:19:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57a2013

dev-python/botocore: Bump to 1.34.82

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.34.82.ebuild | 67 +
 2 files changed, 68 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index e9f347d50f0a..22ebb7344525 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,3 +3,4 @@ DIST botocore-1.34.74.gh.tar.gz 12820469 BLAKE2B 
e9d7a35e82aee30666952ea6f74d8d0
 DIST botocore-1.34.79.gh.tar.gz 12882231 BLAKE2B 
56d7d2a1046a164f4f64f375f608b8646e0f7c266b1c7ab37ff7141fd8d8d843ce2890b0a947f051956f61fb2cfc75c2eb3b3cf70305de4ba9ce2e18d8569ded
 SHA512 
00717ad582e23e1c4f4d803eea2069224fc69c6e701d6b4a55d0d99806cebfb1e2c45c7eb65464b84e0cc63399a7b6235b90ba9245e27fe435eca6079b5c29aa
 DIST botocore-1.34.80.gh.tar.gz 12886772 BLAKE2B 
a77200c5fa28ec9f1a8d65aae08130906719bd530065407446084354e49962f1db22a0c5370d9634d916c563899f3886613a35c24fa2f02967bbf1d191d27b0e
 SHA512 
b2b767f54426bd7cef6d49cdaa4e3d81a11a557e3364646b1cb738bc3f050172f08127c95bca00b170cf2758a71e1ef0f4273bfa7dda6f6dc05b252f73ac903f
 DIST botocore-1.34.81.gh.tar.gz 1262 BLAKE2B 
75394b63e4617da9e41801de96b4fa2e590add49e7697771e018ab0ca161dbc3eab95b4af98a1886e8d41419b9e3508727912082708e0197f676437cd19091ef
 SHA512 
dba689f4fe6b32eeb4ef32b49217849a5b6624f8ce3bfeb0857f88b98f84c38d4f04b3ef4c5d3e613ed96117f433cb16562984f6d826149dbbed80230d54386b
+DIST botocore-1.34.82.gh.tar.gz 12892302 BLAKE2B 
d536197d6cd93e85d6e67bdf854a337c4fbf3702b699caf9b3d11553fd41b8de9f4cd10e410a1bcf27f20d2b83e19891afad1eebb064ba71d8779b1db7ee1de3
 SHA512 
5de261d295ad482ec13878fefc5775764345624eaf43fd0dc38d4419aa05a9d3a5f81ab1d1f09eeefaa70b5c87795dd8168105360005f2592ba7b6919bccfdb4

diff --git a/dev-python/botocore/botocore-1.34.82.ebuild 
b/dev-python/botocore/botocore-1.34.82.ebuild
new file mode 100644
index ..ba6cd2a5d2a2
--- /dev/null
+++ b/dev-python/botocore/botocore-1.34.82.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux"
+
+RDEPEND="
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+# unbundled packages
+RDEPEND+="
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest tests/{functional,unit}
+}



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

2024-04-10 Thread Anna Vyalkova
commit: 01154bd33f2375b6b3224131974f433a70ea49b0
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Thu Apr 11 03:44:45 2024 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Thu Apr 11 03:44:45 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=01154bd3

net-p2p/gridcoin: add 5.4.8.0

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

 net-p2p/gridcoin/Manifest|  1 +
 net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild | 97 
 2 files changed, 98 insertions(+)

diff --git a/net-p2p/gridcoin/Manifest b/net-p2p/gridcoin/Manifest
index 0e5cb31b9d..9c4ddc1694 100644
--- a/net-p2p/gridcoin/Manifest
+++ b/net-p2p/gridcoin/Manifest
@@ -1 +1,2 @@
 DIST gridcoin-5.4.7.0.tar.gz 42846185 BLAKE2B 
2d6d0858fc34611878e19ada2066d38e00abde55037a1eecc8f2c28d8db1d10c1297177c1b6b74ef0ce2630bea67075ff6fd47b6a8830465007a5860f789aae1
 SHA512 
042250d89151492796f8a294c83aa756fb9fbed6d62302a9d7037180d18d67b582eb0ba4fc4c9340e0d07ad9f0cd0f5dfeddc76f4c08bf417c73cb6b12a12ca2
+DIST gridcoin-5.4.8.0.tar.gz 42846011 BLAKE2B 
915500d6b953d1fe2b735092d6c3e5e72d3ce64a6f3f4d1cb94bd8561969663dc98ca3b784b0ea643e9fb7bb70e0439abc122b9382bec073fe0eff4ad3715a8b
 SHA512 
2e37d982ee257e87241d7545e5b15d4d756813089ff029c5c53863f791805942c0f4fb78c2d92684967ca9b5623c530d234e17d1c1f12a48fac8e6119f3f2957

diff --git a/net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild 
b/net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild
new file mode 100644
index 00..06cd4113c5
--- /dev/null
+++ b/net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild
@@ -0,0 +1,97 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake db-use multilib xdg-utils
+
+DESCRIPTION="Proof-of-Stake based cryptocurrency that rewards BOINC 
computation"
+HOMEPAGE="https://gridcoin.us/ https://gridcoin.world/;
+SRC_URI="https://github.com/${PN}-community/${PN^}-Research/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${PN^}-Research-${PV}"
+
+LICENSE="BSD BSD-2 Boost-1.0 MIT SSLeay"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+asm dbus gui qrcode test +upnp"
+IUSE+=" cpu_flags_arm_neon cpu_flags_x86_avx2 cpu_flags_x86_sha 
cpu_flags_x86_sse4_1"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+   dbus? ( gui )
+   qrcode? ( gui )
+"
+
+BDB_SLOT="5.3"
+RDEPEND="
+   >=dev-libs/boost-1.63.0:=[zlib(+)]
+   >=dev-libs/libsecp256k1-0.2.0:=[recovery(+)]
+   >=dev-libs/leveldb-1.21:=
+   dev-libs/libzip:=
+   dev-libs/openssl:=
+   dev-libs/univalue
+   net-misc/curl[ssl]
+   sys-libs/db:${BDB_SLOT}[cxx]
+   gui? (
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   dbus? ( dev-qt/qtdbus:5 )
+   qrcode? ( media-gfx/qrencode:= )
+   )
+   upnp? ( net-libs/miniupnpc:= )
+"
+DEPEND="${RDEPEND}
+   test? ( gui? ( dev-qt/qttest:5 ) )
+"
+BDEPEND="
+   virtual/pkgconfig
+   gui? ( dev-qt/linguist-tools:5 )
+   test? ( app-editors/vim-core )
+"
+IDEPEND="gui? ( dev-util/desktop-file-utils )"
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_DAEMON=$(usex !gui)
+   -DENABLE_GUI=$(usex gui)
+   -DENABLE_TESTS=$(usex test)
+
+   -DENABLE_SSE41=$(usex cpu_flags_x86_sse4_1)
+   -DENABLE_AVX2=$(usex cpu_flags_x86_avx2)
+   -DENABLE_X86_SHANI=$(usex cpu_flags_x86_sha)
+   -DENABLE_ARM_SHANI=$(usex cpu_flags_arm_neon)
+   -DUSE_ASM=$(usex asm)
+
+   -DENABLE_QRENCODE=$(usex qrcode)
+   -DENABLE_UPNP=$(usex upnp)
+   -DDEFAULT_UPNP=$(usex upnp)
+   -DUSE_DBUS=$(usex dbus)
+
+   -DSYSTEM_BDB=ON
+   -DBerkeleyDB_INCLUDE_DIR="$(db_includedir ${BDB_SLOT})"
+   
-DBerkeleyDB_CXX_LIBRARY="${ESYSROOT}/usr/$(get_libdir)/libdb_cxx-${BDB_SLOT}$(get_libname)"
+   -DSYSTEM_LEVELDB=ON
+   -DSYSTEM_SECP256K1=ON
+   -DSYSTEM_UNIVALUE=ON
+   -DSYSTEM_XXD=ON
+   )
+   cmake_src_configure
+}
+
+pkg_postinst() {
+   # we don't use xdg.eclass because it adds unconditional IDEPENDs
+   if use gui; then
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   fi
+}
+
+pkg_postrm() {
+   if use gui; then
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   fi
+}



[gentoo-commits] repo/proj/guru:dev commit in: gui-libs/libdecor/

2024-04-10 Thread Anna Vyalkova
commit: b31ee0ef17efde6f51b304d73a0d09965c75802e
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Thu Apr 11 03:32:05 2024 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Thu Apr 11 03:32:05 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b31ee0ef

gui-libs/libdecor: treeclean, moved to ::gentoo

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

 gui-libs/libdecor/Manifest  |  1 -
 gui-libs/libdecor/libdecor-0.2.2.ebuild | 47 -
 gui-libs/libdecor/libdecor-.ebuild  | 47 -
 gui-libs/libdecor/metadata.xml  | 16 ---
 4 files changed, 111 deletions(-)

diff --git a/gui-libs/libdecor/Manifest b/gui-libs/libdecor/Manifest
deleted file mode 100644
index cb5c2e5a09..00
--- a/gui-libs/libdecor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libdecor-0.2.2.tar.bz2 45375 BLAKE2B 
86e78ce5017b0babc627b5f9ce75b7e2cca38929e3c382828e0453329efed707e2c010fb51522b7b5077a616d54cf2f9af70d5b3d68d2b2aa1d6d36b7a834b8d
 SHA512 
f9761a8c59dc85dd92c871f73192ab05eb56ea34e85a38b5a7222822173f9fd71b5bfb5cffe2782e8c0a6275100e32b6761143cb1469dbcc6988d046a09f1b9a

diff --git a/gui-libs/libdecor/libdecor-0.2.2.ebuild 
b/gui-libs/libdecor/libdecor-0.2.2.ebuild
deleted file mode 100644
index 1adc093e6b..00
--- a/gui-libs/libdecor/libdecor-0.2.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="A client-side decorations library for Wayland clients"
-HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor;
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git;
-   inherit git-r3
-else
-   
SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2;
-   KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-IUSE="+dbus +gtk examples"
-
-DEPEND="
-   >=dev-libs/wayland-1.18
-   >=dev-libs/wayland-protocols-1.15
-   x11-libs/pango
-   x11-libs/cairo
-   x11-libs/gtk+
-   dbus? ( sys-apps/dbus )
-   examples? (
-   virtual/opengl
-   media-libs/mesa[opengl(+)]
-   x11-libs/libxkbcommon
-   )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local emesonargs=(
-   # Avoid auto-magic, built-in feature of meson
-   -Dauto_features=disabled
-   $(meson_feature gtk)
-   $(meson_feature dbus)
-   $(meson_use examples demo)
-   -Dinstall_demo=true
-   )
-
-   meson_src_configure
-}

diff --git a/gui-libs/libdecor/libdecor-.ebuild 
b/gui-libs/libdecor/libdecor-.ebuild
deleted file mode 100644
index 1adc093e6b..00
--- a/gui-libs/libdecor/libdecor-.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="A client-side decorations library for Wayland clients"
-HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor;
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git;
-   inherit git-r3
-else
-   
SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2;
-   KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-IUSE="+dbus +gtk examples"
-
-DEPEND="
-   >=dev-libs/wayland-1.18
-   >=dev-libs/wayland-protocols-1.15
-   x11-libs/pango
-   x11-libs/cairo
-   x11-libs/gtk+
-   dbus? ( sys-apps/dbus )
-   examples? (
-   virtual/opengl
-   media-libs/mesa[opengl(+)]
-   x11-libs/libxkbcommon
-   )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local emesonargs=(
-   # Avoid auto-magic, built-in feature of meson
-   -Dauto_features=disabled
-   $(meson_feature gtk)
-   $(meson_feature dbus)
-   $(meson_use examples demo)
-   -Dinstall_demo=true
-   )
-
-   meson_src_configure
-}

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
deleted file mode 100644
index b6c1fcacb0..00
--- a/gui-libs/libdecor/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   Enable dbus to query current cursor theme 

-   Build GTK plugin
-   Build and install examples
-   
-   
-   gonegrier.dua...@gmail.com
-   Gonçalo Negrier Duarte
-   
-   
-   libdecor/libdecor
-   
-



[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/

2024-04-10 Thread Joonas Niilola
commit: 99653117ecffb2692f5fbd0664bc5153e3f9cd2c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 03:37:56 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 03:37:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99653117

app-emulation/xen-tools: Stabilize 4.17.4 amd64, #929053

Signed-off-by: Joonas Niilola  gentoo.org>

 app-emulation/xen-tools/xen-tools-4.17.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen-tools/xen-tools-4.17.4.ebuild 
b/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
index 4605f10f5cd3..c4bcc325110c 100644
--- a/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
+++ b/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://xenbits.xen.org/git-http/${REPO};
S="${WORKDIR}/${REPO}"
 else
-   KEYWORDS="~amd64 ~arm ~arm64 x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 
SEABIOS_VER="1.16.0"
EDK2_COMMIT="b16284e2a0011489f6e16dfcc6af7623c3cbaf0b"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/

2024-04-10 Thread Joonas Niilola
commit: fe2e256b9334816d6e7c0cb14100cd8d5b22bb60
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 03:37:56 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 03:37:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2e256b

app-emulation/xen: Stabilize 4.17.4 amd64, #929053

Signed-off-by: Joonas Niilola  gentoo.org>

 app-emulation/xen/xen-4.17.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen/xen-4.17.4.ebuild 
b/app-emulation/xen/xen-4.17.4.ebuild
index 3152a4b60f44..7b2ca8a62fef 100644
--- a/app-emulation/xen/xen-4.17.4.ebuild
+++ b/app-emulation/xen/xen-4.17.4.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://xenbits.xen.org/git-http/xen.git;
SRC_URI=""
 else
-   KEYWORDS="~amd64 ~arm -x86"
+   KEYWORDS="amd64 ~arm -x86"
 
XEN_GENTOO_PATCHSET_NUM=2
XEN_GENTOO_PATCHSET_BASE=4.17.0



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

2024-04-10 Thread Joonas Niilola
commit: a1d722834348ccad4c07a3fed6aa4f47448b6837
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 03:21:05 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 03:21:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1d72283

dev-cpp/cpp-httplib: Stabilize 0.15.3 x86, #929104

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild 
b/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
index 987d72cd58a0..8e738097790f 100644
--- a/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://github.com/yhirose/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/

2024-04-10 Thread Joonas Niilola
commit: 85c6fbfc5c04ee629581dba3168d99cffc78dd04
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 03:21:31 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 03:21:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c6fbfc

app-emulation/xen-tools: Stabilize 4.17.4 x86, #929053

Signed-off-by: Joonas Niilola  gentoo.org>

 app-emulation/xen-tools/xen-tools-4.17.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen-tools/xen-tools-4.17.4.ebuild 
b/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
index c62a890bde7f..4605f10f5cd3 100644
--- a/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
+++ b/app-emulation/xen-tools/xen-tools-4.17.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://xenbits.xen.org/git-http/${REPO};
S="${WORKDIR}/${REPO}"
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 x86"
 
SEABIOS_VER="1.16.0"
EDK2_COMMIT="b16284e2a0011489f6e16dfcc6af7623c3cbaf0b"



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

2024-04-10 Thread Joonas Niilola
commit: 6078c65245f9c090e8ac9fa1f2a7ec93d342eb6e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr 11 03:14:07 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr 11 03:14:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6078c652

dev-cpp/cpp-httplib: Stabilize 0.15.3 amd64, #929104

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild 
b/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
index 965e809a7b66..987d72cd58a0 100644
--- a/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.15.3.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://github.com/yhirose/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
-   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/fluent-icon-theme/

2024-04-10 Thread Maciej Barć
commit: d022c377e2918ca32f42e6c481313fdd268997ee
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:30:22 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d022c377

x11-themes/fluent-icon-theme: drop old 2023.06.07

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

 x11-themes/fluent-icon-theme/Manifest  |  1 -
 .../fluent-icon-theme-2023.06.07.ebuild| 56 --
 x11-themes/fluent-icon-theme/metadata.xml  |  4 --
 3 files changed, 61 deletions(-)

diff --git a/x11-themes/fluent-icon-theme/Manifest 
b/x11-themes/fluent-icon-theme/Manifest
index e5d0c9d8705c..069821218a78 100644
--- a/x11-themes/fluent-icon-theme/Manifest
+++ b/x11-themes/fluent-icon-theme/Manifest
@@ -1,2 +1 @@
-DIST fluent-icon-theme-2023.06.07.tar.gz 6213271 BLAKE2B 
f088caa2c54f73923bef12f8fd30a286fd6ab0829ca3d6c40aabd2ddb71d0c70c6718a69a7c7b6039d7e5506c313fbe8ea14bbf9252e5524d06fe6fce73ec664
 SHA512 
7e85613a58ce1fad4c8b0b31b81bfe9b226982ab8ede2413d87e89a12d78aeffef01f0a20fcaccfda6431a88e7798dc00a0a824a73f938e7daa48cb799588738
 DIST fluent-icon-theme-2024.02.25.tar.gz 6397963 BLAKE2B 
5f7d46c5dbabe3744fcb2d21869794d0883fe57d15ac88d928b35f2bd41ea201486a0cc7cdd9937d3f24bd2c169e9e4aa2afa4ebdc9bd7abcc7b9328472ab44e
 SHA512 
5a671360bf0d2b4e904d710b7cf72fde6580c4c1496a3fbcadf90a826e38936714dae511f35be3f2fdea370f602bcff4d1260dd0d230e6bcba6426f406247cec

diff --git a/x11-themes/fluent-icon-theme/fluent-icon-theme-2023.06.07.ebuild 
b/x11-themes/fluent-icon-theme/fluent-icon-theme-2023.06.07.ebuild
deleted file mode 100644
index fe300c325a84..
--- a/x11-themes/fluent-icon-theme/fluent-icon-theme-2023.06.07.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# ie. 2021.12.20 -> 2021-12-20
-MY_PV="${PV//./-}"
-MY_PN="${PN^}"
-
-inherit xdg
-
-DESCRIPTION="Fluent icon theme for Linux desktops"
-HOMEPAGE="https://github.com/vinceliuice/Fluent-icon-theme;
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vinceliuice/${MY_PN}.git;
-else
-   
SRC_URI="https://github.com/vinceliuice/${MY_PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-   S="${WORKDIR}/${MY_PN}-${MY_PV}"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="+black +hardlink round"
-RESTRICT="binchecks strip test"
-
-BDEPEND="sys-apps/util-linux[hardlink(-)?]"
-
-src_prepare() {
-   default
-
-   sed -i '/gtk-update-icon-cache/d' install.sh || die
-}
-
-src_install() {
-   dodir /usr/share/icons
-   local myinstallopts=(
-   --all
-   --dest "${ED}/usr/share/icons"
-   $(usev black '--black')
-   $(usev round '--round')
-   )
-   bash ./install.sh "${myinstallopts[@]}" || die "install script failed"
-
-   if use hardlink; then
-   einfo "Linking duplicate icons... (may take a long time)"
-   hardlink -pot "${ED}/usr/share/icons" || die "hardlink failed"
-   fi
-
-   # installs broken symlink (by design, but we remove it due to QA 
warnings)
-   find "${ED}" -xtype l -delete || die "removing broken symlinks failed"
-
-   einstalldocs
-}

diff --git a/x11-themes/fluent-icon-theme/metadata.xml 
b/x11-themes/fluent-icon-theme/metadata.xml
index 93627ffdc59e..ce1cc24d320b 100644
--- a/x11-themes/fluent-icon-theme/metadata.xml
+++ b/x11-themes/fluent-icon-theme/metadata.xml
@@ -11,10 +11,6 @@
 vinceliuice/Fluent-icon-theme
   
   
-
-  Install the black version of symbolic icons
-  (for white color-scheme panels)
-
 
   Hardlink duplicate icons to greatly reduce installation size
 



[gentoo-commits] repo/gentoo:master commit in: app-office/joplin-desktop/

2024-04-10 Thread Maciej Barć
commit: b2e8255184f776ac37c2250a22438250e3aa4a7a
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:29:19 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e82551

app-office/joplin-desktop: drop old 2.14.11

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

 app-office/joplin-desktop/Manifest |   1 -
 .../joplin-desktop/joplin-desktop-2.14.11.ebuild   | 103 -
 2 files changed, 104 deletions(-)

diff --git a/app-office/joplin-desktop/Manifest 
b/app-office/joplin-desktop/Manifest
index 821b992879c7..53d8db28a914 100644
--- a/app-office/joplin-desktop/Manifest
+++ b/app-office/joplin-desktop/Manifest
@@ -1,4 +1,3 @@
-DIST Joplin-2.14.11.AppImage 247754522 BLAKE2B 
c39b87ca790b41d30c505b1001b75b442790c314cfd1340e2a6c1df7fa9d83505a9664d9fa57f30f7d2dd4dd23e2e04abad3bced978023203e2d9de773aac1a6
 SHA512 
1f2ed8d9ca6c83d86e09eb039b7d200c926e6ccd02e3db0f1e276640204bf5d6cc2df511b302fcf8b28edcff8f3534b0d52d051439f4275ce1b8f6a55fa5ad78
 DIST Joplin-2.14.17.AppImage 248140038 BLAKE2B 
62fb124745ced06fce45cea01efb8eae39556cb58bec768935e826e070f6eaba0050daf8c42bb6308e74539735a9e955c188a0c00c5b6209a4550733776c6d38
 SHA512 
ff6db5b353092d87c35c9c39038f93b0b8f7da8f021fa3057dcdf15cbbffd72b81c5a180ec439802b58060b3862d46ed902ab66a315f574713b9d871b4788502
 DIST Joplin-2.14.19.AppImage 248153086 BLAKE2B 
dfd05909610ff85af78bb7073d3a19b83ac4db4edf4f6cf181f681a347a0badade48214da52b0ad3b2239b87f2fcffb70ff84234f9bffae9bd04d41735c7573a
 SHA512 
7be9cdce0b1a25fdc7c0e5757faa542f11906e572af477fdd17d57fc9f3683bfb99801c91e7f03ac6ee819b72206339a61bb0aac61c66a35013af097ee8bb3a8
 DIST Joplin-2.14.20.AppImage 248141263 BLAKE2B 
2a4afa5a5d0aabb84d75ac572339098da684c742614c1b97a7dca18d0d8ee018f7a81f9a3361b1aba4658cf5bbed055f96e76316b8fe19dab6aa111b7fbeffab
 SHA512 
50ebaa06ad225387e2117a6453e92d5665f90bc5d7dec492aac0993781e6e7cdca8aaa2dff06d740146888e2dd04f623d72af060c41765825b52e3c2a9d03890

diff --git a/app-office/joplin-desktop/joplin-desktop-2.14.11.ebuild 
b/app-office/joplin-desktop/joplin-desktop-2.14.11.ebuild
deleted file mode 100644
index 8178f87f501f..
--- a/app-office/joplin-desktop/joplin-desktop-2.14.11.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTICE: This is a Electron app (oh my) and the upstream only provides 
AppImages.
-
-EAPI=8
-
-APPIMAGE="Joplin-${PV}.AppImage"
-
-inherit desktop xdg
-
-DESCRIPTION="Secure note taking and to-do app with synchronization 
capabilities"
-HOMEPAGE="https://joplinapp.org/
-   https://github.com/laurent22/joplin/;
-SRC_URI="https://github.com/laurent22/joplin/releases/download/v${PV}/${APPIMAGE};
-
-LICENSE="AGPL-3+"
-SLOT="0"
-KEYWORDS="-* amd64"
-RESTRICT="bindist"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   app-crypt/libsecret[crypt]
-   app-misc/ca-certificates
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/libcanberra[gtk3]
-   media-libs/libglvnd
-   media-libs/mesa
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/zlib
-   sys-process/lsof
-   x11-libs/cairo
-   x11-libs/gtk+:3
-   x11-libs/libdrm
-   x11-libs/libnotify
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libxkbcommon
-   x11-libs/libxkbfile
-   x11-libs/libXrandr
-   x11-libs/libXScrnSaver
-   x11-libs/pango
-   x11-misc/xdg-utils
-"
-
-QA_PREBUILT="*"
-
-src_unpack() {
-   mkdir -p "${S}" || die
-   cp "${DISTDIR}/${APPIMAGE}" "${S}" || die
-
-   cd "${S}" || die # "appimage-extract" unpacks to current 
directory.
-   chmod +x "${S}/${APPIMAGE}" || die
-   "${S}/${APPIMAGE}" --appimage-extract || die
-}
-
-src_prepare() {
-   # Fix permissions.
-   find "${S}" -type d -exec chmod a+rx {} + || die
-   find "${S}" -type f -exec chmod a+r {} + || die
-
-   default
-}
-
-src_install() {
-   cd "${S}/squashfs-root" || die
-
-   insinto /usr/share
-   doins -r ./usr/share/icons
-
-   local apphome="/opt/${PN}"
-   local toremove=(
-   .DirIcon
-   @joplinapp-desktop.desktop
-   @joplinapp-desktop.png
-   AppRun
-   LICENSE.electron.txt
-   LICENSES.chromium.html
-   resources/app.asar.unpacked/node_modules/7zip-bin-linux/arm
-   resources/app.asar.unpacked/node_modules/7zip-bin-linux/arm64
-   resources/app.asar.unpacked/node_modules/node-notifier
-   usr
-   )
-   rm -f -r "${toremove[@]}" || die
-
-   mkdir -p "${ED}/${apphome}" || die
- 

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

2024-04-10 Thread Maciej Barć
commit: 6782d93c4c706f6fbd719018f41a2744f02526a9
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:25:47 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6782d93c

app-containers/devcontainer: drop old 0.56.2

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

 app-containers/devcontainer/Manifest   |  1 -
 .../devcontainer/devcontainer-0.56.2.ebuild| 46 --
 2 files changed, 47 deletions(-)

diff --git a/app-containers/devcontainer/Manifest 
b/app-containers/devcontainer/Manifest
index 010a1ec1e6c4..a133599c35b9 100644
--- a/app-containers/devcontainer/Manifest
+++ b/app-containers/devcontainer/Manifest
@@ -1,3 +1,2 @@
-DIST devcontainer-0.56.2.tgz 617293 BLAKE2B 
33eb4ae861934e78b9e73e77ed23ec1177e09785cf72dbdeb07e3d80e86ba1ac69f26bc01e150609cd20bc6c7895afc9b6118ae4d5007413b066986c75850a11
 SHA512 
188fdddad81a7f8cc5409e646c467fdc0722f0d7e45f3b24ea0614a9007c714ac9f8aff13f0e8a65f6c0e06e8769b1a4cba792a5575ce0733379ade45998fd27
 DIST devcontainer-0.57.0.tgz 617323 BLAKE2B 
74dd49c0e741715e34dce79cdc73617f4bed68b87f11fafa403a9548b334ecff1af8e2e3705c57c31ca057e12b19094a75a3a3e339cac3b6d005e00e7e08b433
 SHA512 
7b5680d003630af459d5bf12f6873ea990a67b5f16888317a27d7197799d9ff1cd802834e669c4e1c601780fa8a07c38ec4dab77e7bf64de08406403e163e954
 DIST devcontainer-0.58.0.tgz 618922 BLAKE2B 
e0962e273f6a28d4c6897523b565634d7849a37ed5866e47430080ac8e42026e888ba2a13cbcbb62dd6974f753383882b66b0129d1e7aad8321c938c58ffec58
 SHA512 
57beb86d4fcefddbaa4f13612cca0538b2449932164c062082a8ef62f3a7bd57ed6f7bb09e5954fe479c6da9caebc0b3075783fb3ba3391381ab7ce9027e5f08

diff --git a/app-containers/devcontainer/devcontainer-0.56.2.ebuild 
b/app-containers/devcontainer/devcontainer-0.56.2.ebuild
deleted file mode 100644
index 10d7f50fc167..
--- a/app-containers/devcontainer/devcontainer-0.56.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Reference implementation of the Development Containers 
specification"
-HOMEPAGE="https://containers.dev/
-   https://github.com/devcontainers/cli/;
-SRC_URI="https://registry.npmjs.org/@devcontainers/cli/-/cli-${PV}.tgz
-   -> ${P}.tgz"
-S="${WORKDIR}/package"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-RDEPEND="
-   net-libs/nodejs
-"
-BDEPEND="
-   >=net-libs/nodejs-16[npm]
-"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_compile() {
-   # Skip, nothing to compile here.
-   :
-}
-
-src_install() {
-   local -a my_npm_opts=(
-   --audit false
-   --color false
-   --foreground-scripts
-   --global
-   --offline
-   --omit dev
-   --prefix "${ED}/usr"
-   --progress false
-   --verbose
-   )
-   npm "${my_npm_opts[@]}" install "${DISTDIR}/${P}.tgz" || die "npm 
install failed"
-
-   einstalldocs
-}



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

2024-04-10 Thread Maciej Barć
commit: ab833c0bcf438e9c2cd8eb1fc3c0f949ec5d2a4e
Author: Maciej Barć  gentoo  org>
AuthorDate: Thu Apr 11 00:54:49 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab833c0b

dev-lang/crystal: bump to 1.12.0

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

 dev-lang/crystal/Manifest  |   2 +
 dev-lang/crystal/crystal-1.12.0.ebuild | 120 +
 2 files changed, 122 insertions(+)

diff --git a/dev-lang/crystal/Manifest b/dev-lang/crystal/Manifest
index 79cd9171ed9c..e1df16c98451 100644
--- a/dev-lang/crystal/Manifest
+++ b/dev-lang/crystal/Manifest
@@ -1,2 +1,4 @@
 DIST crystal-1.11.2-1-linux-x86_64.tar.gz 46947860 BLAKE2B 
c3f08d8a399c139f2eb465857142ad6faaf6925459318d5e6b5b5b879974cc63f43c99f8b2d1fa852fe239a81c0341e24c84023b8b8113bc2bfe9e4fe03c8346
 SHA512 
54cf8e24d5bd87602a65d22dfa0bbe3520b49cedb430d0652066caf2f47d1cea1bafdb852133a886f3c3b324826212dfa82ac15475ef044016b4b8210e20da39
 DIST crystal-1.11.2.tar.gz 3620048 BLAKE2B 
3838f43897ba74a3c7f5717ba795f38cfd4265bbcbe11fa5a155d196afae40c60f7b5789c5d97e94eea1a1affb2cbd5c7fa9208e74a0fa7fa932b013e6124923
 SHA512 
e9b828539359fbae93799654f39b75c0c72764348ae279da326ac4ff4d2fa8e693c01956f5bc7ce1fff1504156049bf2b261c8defbde9cb690e1e84c13c8a296
+DIST crystal-1.12.0-1-linux-x86_64.tar.gz 47041886 BLAKE2B 
bdcfc974a8e37889455b07d3c9689a16ff72909819055a47167d5d1e6bd6f58ca6a89c395b7e8d9316a9db5df239586027b4c26b57f225a000a4b2697ff751af
 SHA512 
fbfc096f0f879614e6f38a40477eb8c2749eb29fe1b988a4eed30a8ea706cbc6a8bf61840396b9c918cada857fb3a095d9c713615c5eb072e08bf82f633561d6
+DIST crystal-1.12.0.tar.gz 3655308 BLAKE2B 
49f0d22cba830fefb3261c7411978eff6f2bb8845688d86c62b89376f5a5f2a5540ac97c6166e86553da93ad0cf2174853ca1bb0d7bc5af1df81adc1fce3f983
 SHA512 
69b2be677b6bda00e18054c1a18227feb3905fc7f5f235d7d70da6ce5463d0e0f3aa7cf57e7e986db6721753218235218aa3fd670cfdef3fbd71ebf43c6f25fa

diff --git a/dev-lang/crystal/crystal-1.12.0.ebuild 
b/dev-lang/crystal/crystal-1.12.0.ebuild
new file mode 100644
index ..02631f5f838f
--- /dev/null
+++ b/dev-lang/crystal/crystal-1.12.0.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+BV="${PV}-1"
+BV_AMD64="${BV}-linux-x86_64"
+
+LLVM_MAX_SLOT=17
+
+inherit bash-completion-r1 llvm multiprocessing toolchain-funcs
+
+DESCRIPTION="The Crystal Programming Language"
+HOMEPAGE="https://crystal-lang.org/
+   https://github.com/crystal-lang/crystal/;
+SRC_URI="
+   https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz
+   -> ${P}.tar.gz
+   amd64? (
+   
https://github.com/crystal-lang/crystal/releases/download/${BV/-*}/crystal-${BV_AMD64}.tar.gz
+   )
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc debug llvm-libunwind"
+
+# Upstream test suite not reliable
+RESTRICT="test"
+
+DEPEND="
+   

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

2024-04-10 Thread Maciej Barć
commit: b080027c2d300dc979973aa5ac9fbebebbb99751
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:52:24 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b080027c

media-gfx/curtail: drop old 1.7.0

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

 media-gfx/curtail/Manifest |  1 -
 media-gfx/curtail/curtail-1.7.0.ebuild | 67 --
 2 files changed, 68 deletions(-)

diff --git a/media-gfx/curtail/Manifest b/media-gfx/curtail/Manifest
index d642c5ec08dc..423ee94b25e3 100644
--- a/media-gfx/curtail/Manifest
+++ b/media-gfx/curtail/Manifest
@@ -1,2 +1 @@
-DIST curtail-1.7.0.tar.gz 217253 BLAKE2B 
3d32bf01fbada5ec6b52ccd15f3d941f1e2e017c482ebb02bbb8aec72144009284499f041ff10303742476d94569c4b3cd83297f37442bca19f005d15de78613
 SHA512 
360ec398bd6f56e9b6664e446f85eea49552d9d24cb59527599dd0f3c0265e7495c3052ec7b77c7373cbb23983b392641b003c0ad29d8fc63f7bf94ff971f7f4
 DIST curtail-1.8.0.tar.gz 228988 BLAKE2B 
c04ad5aaebe8ceab1215937bb3d76ad6b2ca8cb9331011af2c6d3c8d33ee0a898fe3de0e24c0a6303b54ad0a7dd0d811f9b32321b50bbfea6b8063244be464a3
 SHA512 
6a8a081c0fe1b780b50c55a90f70c4d4514c49941eb9fd5924897e3961aa718af71010e8d210030e1b6028c2e33d0d19dcca5cbdcf51463b5a24d6d2e86c196c

diff --git a/media-gfx/curtail/curtail-1.7.0.ebuild 
b/media-gfx/curtail/curtail-1.7.0.ebuild
deleted file mode 100644
index da8cd30f56a5..
--- a/media-gfx/curtail/curtail-1.7.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit gnome2-utils meson python-single-r1 xdg
-
-DESCRIPTION="Image compressor, supporting PNG, JPEG and WebP"
-HOMEPAGE="https://github.com/Huluti/Curtail/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/Huluti/${PN^}.git;
-else
-   SRC_URI="https://github.com/Huluti/${PN^}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-   S="${WORKDIR}"/${P^}
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="test"  # Just desktop / schema / appstream file validation (fails).
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   gui-libs/gtk:4[introspection]
-   $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
-"
-BDEPEND="
-   ${RDEPEND}
-   dev-libs/appstream-glib
-   dev-util/desktop-file-utils
-"
-RDEPEND+="
-   >=gui-libs/libadwaita-1.3.1
-   media-gfx/jpegoptim
-   media-gfx/oxipng
-   media-gfx/pngquant
-   media-libs/libwebp
-"
-
-DOCS=( CHANGELOG.md README.md )
-
-src_prepare() {
-   sed -i "s|@PYTHON@|${PYTHON}|" "${S}"/src/${PN}.in || die
-
-   default
-}
-
-src_install() {
-   meson_src_install
-   python_optimize
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2024-04-10 Thread Maciej Barć
commit: e47182332ad35811064b3208ecafe7cf8781fe06
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:38:26 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4718233

dev-lang/kotlin-bin: drop old 1.9.22

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

 dev-lang/kotlin-bin/Manifest |  1 -
 dev-lang/kotlin-bin/kotlin-bin-1.9.22.ebuild | 59 
 2 files changed, 60 deletions(-)

diff --git a/dev-lang/kotlin-bin/Manifest b/dev-lang/kotlin-bin/Manifest
index 54cdb6f63f56..26b3955650c9 100644
--- a/dev-lang/kotlin-bin/Manifest
+++ b/dev-lang/kotlin-bin/Manifest
@@ -1,2 +1 @@
-DIST kotlin-compiler-1.9.22.zip 91026092 BLAKE2B 
2fc776b27e30a9d75640dc8fc004bfec5207b1b79c2742aa6a8a75971a8b41310cc16712d6d0921e1fa7545031a75ca8256c48f5c1e13f4e36d82df2574d5699
 SHA512 
d0e1bdfb1918f007444b1cef6e0c29c2c1846819edd60d016ed62327ea6d2cb505aa18658f916f88b91d9fbdfe0b155ad3361728d6a7a9062806d982bc9b8c6c
 DIST kotlin-compiler-1.9.23.zip 91045770 BLAKE2B 
f15bf111b0de8527312ae3ffced8fd80812a8ea949f4157d21085966ec7f9c19facf116cc70915d41aca2fb4b3c3d1d9d3cebe23c5312728f295204528c82f2d
 SHA512 
6baea5f968b8cd21a89fd80302a26761b775d2631d5a434775eecf1c4bbc1e07b657f389da4c4d2cd10e3687908e0417d12b94ed822b029a7126ae1988dba445

diff --git a/dev-lang/kotlin-bin/kotlin-bin-1.9.22.ebuild 
b/dev-lang/kotlin-bin/kotlin-bin-1.9.22.ebuild
deleted file mode 100644
index 7e3629cfadfc..
--- a/dev-lang/kotlin-bin/kotlin-bin-1.9.22.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit java-pkg-2 wrapper
-
-DESCRIPTION="Statically typed language that targets the JVM and JavaScript"
-HOMEPAGE="https://kotlinlang.org/
-   https://github.com/JetBrains/kotlin/;
-SRC_URI="https://github.com/JetBrains/kotlin/releases/download/v${PV}/kotlin-compiler-${PV}.zip;
-S="${WORKDIR}/kotlinc"
-
-LICENSE="Apache-2.0 BSD MIT NPL-1.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-"
-DEPEND="
-   >=virtual/jdk-1.8:*
-"
-BDEPEND="
-   app-arch/unzip
-"
-
-src_prepare() {
-   default
-
-   rm bin/*.bat || die
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   java-pkg_dojar lib/*
-
-   # Follow the Java eclass JAR installation path.
-   local app_home="/usr/share/${PN}"
-
-   exeinto "${app_home}/bin"
-   doexe bin/*
-
-   local -a exes=(
-   kapt
-   kotlin
-   kotlinc
-   kotlinc-js
-   kotlinc-jvm
-   kotlin-dce-js
-   )
-   local exe
-   for exe in "${exes[@]}" ; do
-   make_wrapper "${exe}" "${app_home}/bin/${exe}"
-   done
-}



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

2024-04-10 Thread Maciej Barć
commit: 7ec61535dfe36fa9d695137f8b1a4bdaac1396f4
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:32:19 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ec61535

app-text/paper-clip: drop old 3.6

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

 app-text/paper-clip/Manifest  |  1 -
 app-text/paper-clip/paper-clip-3.6.ebuild | 71 ---
 2 files changed, 72 deletions(-)

diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index be8bc05d41ed..71dac68e6efc 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,2 +1 @@
-DIST paper-clip-3.6.tar.gz 171190 BLAKE2B 
a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3
 SHA512 
4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
 DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 
07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296
 SHA512 
2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023

diff --git a/app-text/paper-clip/paper-clip-3.6.ebuild 
b/app-text/paper-clip/paper-clip-3.6.ebuild
deleted file mode 100644
index b2ed96834bc3..
--- a/app-text/paper-clip/paper-clip-3.6.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-REAL_PN="Paper-Clip"
-
-inherit gnome2-utils meson vala xdg
-
-DESCRIPTION="Edit the title, author, keywords and more details of PDF 
documents"
-HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git;
-else
-   SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-   S="${WORKDIR}/${REAL_PN}-${PV}"
-
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-RESTRICT="test"  # Only validations, the appdata one fails.
-
-RDEPEND="
-   app-text/poppler:=[cairo,introspection]
-   dev-libs/glib:2
-   dev-libs/gobject-introspection
-   dev-libs/libportal:=[gtk,introspection,vala]
-   gui-libs/gtk:4
-   gui-libs/libadwaita:1[introspection,vala]
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   $(vala_depend)
-   dev-libs/appstream-glib
-   dev-util/desktop-file-utils
-"
-
-DOCS=( README.md )
-
-src_prepare() {
-   default
-   vala_setup
-}
-
-src_install() {
-   meson_src_install
-   einstalldocs
-
-   # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
-   dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
-
-   mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   xdg_pkg_postinst
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-   xdg_pkg_postrm
-}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/nvc/

2024-04-10 Thread Maciej Barć
commit: b519b9a0780b389a615e140818e90a5d7fe31696
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:55:02 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b519b9a0

sci-electronics/nvc: drop old 1.11.3

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

 sci-electronics/nvc/Manifest  |   1 -
 sci-electronics/nvc/nvc-1.11.3.ebuild | 114 --
 2 files changed, 115 deletions(-)

diff --git a/sci-electronics/nvc/Manifest b/sci-electronics/nvc/Manifest
index 18ab0bdf71a9..3c74b18cd0dd 100644
--- a/sci-electronics/nvc/Manifest
+++ b/sci-electronics/nvc/Manifest
@@ -1,2 +1 @@
-DIST nvc-1.11.3.tar.gz 1843551 BLAKE2B 
27cf3a6cfa0b21ca0ff9f2f96a150fea2a3d55a53969228d6d83475458e5a1c6ef76a676afc73588a5de2acaaf2ec40d04a5c8296ec6615501572e3c6903d9f8
 SHA512 
22e5e6daad4d79822e7d1eac02c095f24a23e7237e8e8af9e085f225edf7dbf0c557fefb8d50ca20ccd14d9e3dd20b7d01b7363a651ab088685d1737fbe03ccd
 DIST nvc-1.12.0.tar.gz 1929184 BLAKE2B 
a344c7f483aea26fb665b94b021e6c402b24c0d653604c32260833c9b2975fb6d461241e151b52056508a394f16f7d12ba4a29139e820e5028235d3ee95f3a03
 SHA512 
bd33fe13105e323cd9689ca1ea865f289d7833e519e0abca1c50615532b4909abecb07c29abb27afedcd3c288801e29d61a1a85cd58d449c67f5d5638437414d

diff --git a/sci-electronics/nvc/nvc-1.11.3.ebuild 
b/sci-electronics/nvc/nvc-1.11.3.ebuild
deleted file mode 100644
index dd4ecc425726..
--- a/sci-electronics/nvc/nvc-1.11.3.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LLVM_MAX_SLOT=16
-
-inherit autotools bash-completion-r1 llvm
-
-DESCRIPTION="NVC is a VHDL compiler and simulator"
-HOMEPAGE="https://www.nickg.me.uk/nvc/
-   https://github.com/nickg/nvc/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/nickg/nvc.git;
-
-   NVC_SOURCEDIR="${WORKDIR}/${PN}-${PV}"
-else
-   SRC_URI="https://github.com/nickg/nvc/archive/r${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-
-   NVC_SOURCEDIR="${WORKDIR}/${PN}-r${PV}"
-fi
-
-NVC_BUILDDIR="${NVC_SOURCEDIR}_BuildDir"
-S="${NVC_BUILDDIR}"
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="debug llvm"
-RESTRICT="test" # Some tests fail.
-
-RDEPEND="
-   app-arch/bzip2:=
-   app-arch/zstd:=
-   dev-libs/capstone:=
-   dev-libs/elfutils
-   dev-libs/icu:=
-   dev-libs/libffi:=
-   dev-libs/libxml2:=
-   sys-libs/ncurses:=
-   sys-libs/zlib:=
-   llvm? (
-   /dev/null || die
-
-   default
-   eautoreconf
-
-   popd >/dev/null || die
-}
-
-src_configure() {
-   # Needs "bison" and "flex" exactly.
-   unset LEX
-   unset YACC
-
-   local ECONF_SOURCE="${NVC_SOURCEDIR}"
-   local -a myconf=(
-   --enable-verilog
-   --enable-vital
-   --with-bash-completion="$(get_bashcompdir)"
-   $(use_enable debug)
-   $(use_enable llvm)
-   )
-   econf "${myconf[@]}"
-
-   export V=1  # Verbose compilation and install.
-}
-
-src_compile() {
-   emake -j1
-}
-
-src_test() {
-   PATH="${S}/bin:${PATH}" emake check-TESTS
-}
-
-src_install() {
-   default
-
-   mv "${D}/$(get_bashcompdir)"/nvc{.bash,} || die
-   dostrip -x "/usr/$(get_libdir)/nvc"
-}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/ppsspp/

2024-04-10 Thread Maciej Barć
commit: 859f7dda9f6ce9055566488d03d1d7368e102a88
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:50:21 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=859f7dda

games-emulation/ppsspp: drop old 1.15.4

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

 games-emulation/ppsspp/Manifest |  1 -
 games-emulation/ppsspp/ppsspp-1.15.4.ebuild | 74 -
 2 files changed, 75 deletions(-)

diff --git a/games-emulation/ppsspp/Manifest b/games-emulation/ppsspp/Manifest
index e7571c3483bf..e92e132dac2b 100644
--- a/games-emulation/ppsspp/Manifest
+++ b/games-emulation/ppsspp/Manifest
@@ -1,2 +1 @@
-DIST ppsspp-1.15.4.tar.xz 51947468 BLAKE2B 
c6a5e621b02556b791ec41389f17dede63811c87ff628b8f1304ac950071b365ecc9be05f4042e4e3b81e77f5a14b6931577f08b0174fec821350a1d7eca4d6a
 SHA512 
9d2c140b0d633e5ca6191aaf276b7e4f6d029f29d1313a45fb78ee3879fec09f57d816604c51474ab6fe9cde713787d5769e87466d3c3015fe6a9b195ff198d2
 DIST ppsspp-1.17.1.tar.xz 54663108 BLAKE2B 
91c4964c9f334d42e090f59485e2f02ba8edb780903d2fa46e1a9cea77f6cc9e1a0605310d76445738259c0e99d5d1ca0764ef5f5565e781b482d5d5274620e5
 SHA512 
eaa0046f5d8e529efd8238690fa242638aa88630172abe59c4b7ffb16b1e18eeb38fcaf8e70ef76dbd2304b226d1f33e10cde709abe00fa2a5baff16c1883c31

diff --git a/games-emulation/ppsspp/ppsspp-1.15.4.ebuild 
b/games-emulation/ppsspp/ppsspp-1.15.4.ebuild
deleted file mode 100644
index 064e56772306..
--- a/games-emulation/ppsspp/ppsspp-1.15.4.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit flag-o-matic python-any-r1 xdg cmake
-
-DESCRIPTION="A PSP emulator written in C++"
-HOMEPAGE="https://www.ppsspp.org/
-   https://github.com/hrydgard/ppsspp/;
-SRC_URI="https://github.com/hrydgard/${PN}/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="Apache-2.0 BSD BSD-2 GPL-2 JSON MIT"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="discord qt5 test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   app-arch/snappy:=
-   app-arch/zstd:=
-   dev-libs/libzip:=
-   media-libs/glew:=
-   media-libs/libpng:=
-   media-libs/libsdl2[joystick]
-   media-video/ffmpeg:0/56.58.58
-   sys-libs/zlib:=
-   virtual/opengl
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[-gles2-only]
-   dev-qt/qtmultimedia:5[-gles2-only]
-   dev-qt/qtopengl:5[-gles2-only]
-   dev-qt/qtwidgets:5[-gles2-only]
-   )
-   !qt5? ( media-libs/libsdl2[X,opengl,sound,video] )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-CMakeLists-flags.patch
-   "${FILESDIR}"/${PN}-disable-ccache-autodetection.patch
-   "${FILESDIR}"/${PN}-1.15.4-backport-ce83fec.patch
-)
-
-pkg_setup() {
-   python-any-r1_pkg_setup
-}
-
-src_configure() {
-   # bug https://bugs.gentoo.org/926079
-   filter-lto
-
-   local -a mycmakeargs=(
-   -DBUILD_SHARED_LIBS=OFF
-   -DCMAKE_SKIP_RPATH=ON
-   -DHEADLESS=false
-   -DUSE_SYSTEM_FFMPEG=ON
-   -DUSE_SYSTEM_LIBZIP=ON
-   -DUSE_SYSTEM_SNAPPY=ON
-   -DUSE_SYSTEM_ZSTD=ON
-   -DUSE_DISCORD=$(usex discord)
-   -DUSING_QT_UI=$(usex qt5)
-   -DUNITTEST=$(usex test)
-   )
-   cmake_src_configure
-}
-
-src_test() {
-   cmake_src_test -E glslang-testsuite
-}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/melonds/

2024-04-10 Thread Maciej Barć
commit: 9b0d25b6220bef0502427fb250793f091238631c
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:46:27 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0d25b6

games-emulation/melonds: drop old 0.9.5-r5

Closes: https://bugs.gentoo.org/880653
Closes: https://bugs.gentoo.org/832843
Signed-off-by: Maciej Barć  gentoo.org>

 games-emulation/melonds/Manifest|  1 -
 games-emulation/melonds/melonds-0.9.5-r5.ebuild | 96 -
 2 files changed, 97 deletions(-)

diff --git a/games-emulation/melonds/Manifest b/games-emulation/melonds/Manifest
index f684569347e1..e1e62ba7a142 100644
--- a/games-emulation/melonds/Manifest
+++ b/games-emulation/melonds/Manifest
@@ -1,2 +1 @@
-DIST melonDS-0.9.5.tar.gz 2496704 BLAKE2B 
ac6b75a74df266c6220a15c8775969f19bd6ef19946c913d49b642aa797ca6dc4cd956e7a840fbdbf572a9178a214314549cfe3fc4617a4f0f3877850c6818cd
 SHA512 
115cf04e4e22a20016ac4f2946aef917e5c9566b1a5f18599f7b7c47b0ac71e3645157a8a21622ab83683848c57ab25e6d6fcff0df559087b56642d99ffe40ec
 DIST melonDS-0.9.5_p20231231.tar.gz 3103695 BLAKE2B 
36923cf1e7faf58a05eeac2152faf4ac6387a932fc7accf4be339c752171c6e2d6d7a61d5c9de40e02163a5552701c2f313da85515380e529188260b633445dc
 SHA512 
fe99a37ba347eb6aed470d7b93e4ddbcb32ae81045d64509441ce0fa3b08da31d32b42fef7aca5f01556ae7321fb534ebc369f091e1a8852f4a45eaa7bd941a1

diff --git a/games-emulation/melonds/melonds-0.9.5-r5.ebuild 
b/games-emulation/melonds/melonds-0.9.5-r5.ebuild
deleted file mode 100644
index ae2f49cc74cb..
--- a/games-emulation/melonds/melonds-0.9.5-r5.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="melonDS"
-MY_P="${MY_PN}-${PV}"
-
-inherit cmake flag-o-matic readme.gentoo-r1 toolchain-funcs xdg
-
-DESCRIPTION="Nintendo DS emulator, sorta"
-HOMEPAGE="http://melonds.kuribo64.net
-   https://github.com/Arisotura/melonDS;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/Arisotura/${MY_PN}.git;
-else
-   SRC_URI="https://github.com/Arisotura/${MY_PN}/archive/${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-   S="${WORKDIR}/${MY_P}"
-
-   KEYWORDS="amd64"
-fi
-
-IUSE="+jit +opengl"
-LICENSE="BSD-2 GPL-2 GPL-3 Unlicense"
-SLOT="0"
-
-RDEPEND="
-   app-arch/libarchive
-   dev-libs/wayland
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-libs/libsdl2[sound,video]
-   net-libs/libpcap
-   net-libs/libslirp
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   kde-frameworks/extra-cmake-modules:0
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.9.5-DSi_Camera-algorithm.patch"
-   "${FILESDIR}/${PN}-0.9.5-no-ccache-detection.patch"
-)
-
-# used for JIT recompiler
-QA_EXECSTACK="usr/bin/melonDS"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="You need the following files in order to run melonDS:
-- bios7.bin
-- bios9.bin
-- firmware.bin
-- romlist.bin
-Place them in ~/.config/melonDS
-Those files can be extracted from devices or found somewhere on the Internet 
;-)"
-
-src_prepare() {
-   filter-lto
-   append-flags -fno-strict-aliasing
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   local -a mycmakeargs=(
-   -DBUILD_SHARED_LIBS=OFF
-   -DENABLE_JIT=$(usex jit)
-   -DENABLE_OGLRENDERER=$(usex opengl)
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   tc-export AR
-   cmake_src_compile
-}
-
-src_install() {
-   readme.gentoo_create_doc
-   cmake_src_install
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   readme.gentoo_print_elog
-}



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

2024-04-10 Thread Maciej Barć
commit: 4569b12d054c2263367c9b98a9539ece6e5e9416
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:40:51 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4569b12d

dev-lang/qore: drop old 1.19.1

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

 dev-lang/qore/Manifest   |  1 -
 dev-lang/qore/qore-1.19.1.ebuild | 76 
 2 files changed, 77 deletions(-)

diff --git a/dev-lang/qore/Manifest b/dev-lang/qore/Manifest
index f0801e744773..57a7cef0bdf8 100644
--- a/dev-lang/qore/Manifest
+++ b/dev-lang/qore/Manifest
@@ -1,2 +1 @@
-DIST qore-1.19.1.tar.gz 3933768 BLAKE2B 
8e3002a55f1cf15f22ff604b1ceaf71995727510e365ae6ab03b71a91ddc1a82c5d6d89514b989a3509a5b39228fcf8fe11b6d88df8af784cace9b56b9d22482
 SHA512 
bf2203f8fe81cd4a604e06859380664f5cf635f5496e1ce6b6d5760d4cba82e510c78acef7ced4fdacd6df722f6eb305307106f12df3201003858a5a55256d9e
 DIST qore-1.19.2.tar.gz 3937953 BLAKE2B 
136fd456dc6f262c3c1237448945c7d79b6c48a31c63e5213c7f03a695cda40d91605fc5f8f7887354ae47741342233228107ee327c192b449665fdec0664e62
 SHA512 
b79ecd1ed9ee934039e143711941a8317e02220403c934865632b37f030797520f0db434ef517e2d813f35a37d966f7c5a745202969fcee32494c4972f503fb1

diff --git a/dev-lang/qore/qore-1.19.1.ebuild b/dev-lang/qore/qore-1.19.1.ebuild
deleted file mode 100644
index 38b2af9a08c7..
--- a/dev-lang/qore/qore-1.19.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Qore, the embeddable multithreaded scripting language"
-HOMEPAGE="http://qore.org/
-   https://github.com/qorelanguage/qore/;
-
-if [[ "${PV}" == ** ]] ; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/qorelanguage/${PN}.git;
-else
-   
SRC_URI="https://github.com/qorelanguage/${PN}/archive/release-${PV}.tar.gz
-   -> ${P}.tar.gz"
-   S="${WORKDIR}/${PN}-release-${PV}"
-
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-2+ LGPL-2.1+ MIT"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND="
-   app-arch/bzip2:=
-   dev-libs/libpcre:=
-   dev-libs/mpfr:=
-   dev-libs/openssl:=
-   sys-libs/zlib:=
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-"
-
-src_prepare() {
-   default
-
-   eautoreconf
-}
-
-src_configure() {
-   # Needs "bison" and "flex" exactly.
-   unset LEX
-   unset YACC
-
-   local -a myconf=(
-   --disable-optimization
-   --disable-profile
-   --disable-static-bz2
-   --disable-static-common
-   --disable-static-openssl
-   --disable-static-pcre
-   --disable-static-zlib
-   $(use_enable debug)
-   )
-   econf "${myconf[@]}"
-}
-
-src_test() {
-   PATH="${S}:${PATH}" emake check
-}
-
-src_install() {
-   default
-
-   find "${ED}" -type f -name "*.la" -delete ||
-   die "failed to remove libtool files without corresponding 
static libraries"
-}



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

2024-04-10 Thread Maciej Barć
commit: 8fd783fb700ce3e04e29cb82c1d47696ac8396a3
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:34:39 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd783fb

dev-lang/closure-compiler-bin: drop old 20231112

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

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

diff --git a/dev-lang/closure-compiler-bin/Manifest 
b/dev-lang/closure-compiler-bin/Manifest
index d4da0c407dfd..5b600cd386e8 100644
--- a/dev-lang/closure-compiler-bin/Manifest
+++ b/dev-lang/closure-compiler-bin/Manifest
@@ -1,2 +1 @@
-DIST closure-compiler-v20231112.jar 14084315 BLAKE2B 
e5623c2c306d8c7ddb700778bc2cea9c96967f17d78e4e3dc31e9dcf1debe73ec6ff1b54b1b89f7407add12c3c16ebe4111b397bfca85d695278744db69f
 SHA512 
e07ff9f57cf7672a79bc72fc8d5f447134df3009b72e50b7bbba644ebb6cbc080b3870f0dd7a47aa85a0b7d1b2e26bbeb0b4d057864e3d29fb5249c1ec8e3e13
 DIST closure-compiler-v20240317.jar 13984957 BLAKE2B 
cc9fd9e7dca6a95e62fe6d922dfad90d654f15cd001c75a60ea5a893cea20e59d70b9a053d6b69853fc16c249c5994b2cff093838ff3fa79af0d5964313b
 SHA512 
7bf276195fc6857e491cc16b12b33e1da55988c634ec5fea34d5b67e11e6caed91afff1d81bd91d77863200301f098549526d543be9c54eee4550bc20791a295

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



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

2024-04-10 Thread Maciej Barć
commit: d1b4427f9a70651ad6e4a776940a952f6607a097
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:37:28 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b4427f

dev-lang/coffee-script: drop old 2.5.1

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

 dev-lang/coffee-script/Manifest   |  1 -
 dev-lang/coffee-script/coffee-script-2.5.1.ebuild | 52 ---
 2 files changed, 53 deletions(-)

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

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



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

2024-04-10 Thread Maciej Barć
commit: ab23537f493d2d05a52d6401e8c2bd758e71c40f
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:33:31 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab23537f

dev-lang/algol68g: drop old 3.4.6

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

 dev-lang/algol68g/Manifest  |  1 -
 dev-lang/algol68g/algol68g-3.4.6.ebuild | 41 -
 2 files changed, 42 deletions(-)

diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest
index ebce1904669e..7fb9b7c3a4cf 100644
--- a/dev-lang/algol68g/Manifest
+++ b/dev-lang/algol68g/Manifest
@@ -1,2 +1 @@
-DIST algol68g-3.4.6.tar.gz 661358 BLAKE2B 
1a825534833f2b4ff4025c3ca2d2f022c1c78cf8f8a365cc12e97af1cc4994228b705d6395e5c967d6a195cd2fc542212025133e6410d4876d43c36952dc60c0
 SHA512 
831585cb90c524014cc199256dbcf663868b37804071774e2eac5c64944e25513df4584421042d02140ee2695a918caec9b99c837d117e775d3721bf09065fb4
 DIST algol68g-3.5.1.tar.gz 661670 BLAKE2B 
ec0aa47f367af621f3cf8ebad81bd501bac31238b4a918943917fec4d9f66cf57f98f5bd4c4c02d315a8f1ac2fd789aafb6e331289fac417abf9301a2a5d339d
 SHA512 
764038c7db567d5fc130d4c324b74f43d7dbcfd89efb7b12b1a6983314a7e13f17e105fa783fb3397fff3773b69699ca3f5fd3be873229db9bf91582f7bf52f4

diff --git a/dev-lang/algol68g/algol68g-3.4.6.ebuild 
b/dev-lang/algol68g/algol68g-3.4.6.ebuild
deleted file mode 100644
index 3b5c40da8f55..
--- a/dev-lang/algol68g/algol68g-3.4.6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Algol 68 Genie compiler-interpreter"
-HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html;
-SRC_URI="https://jmvdveer.home.xs4all.nl/${P}.tar.gz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline"
-
-RDEPEND="
-   curl? ( net-misc/curl )
-   gsl? ( sci-libs/gsl:= )
-   mpfr? ( dev-libs/mpfr:= )
-   plotutils? ( media-libs/plotutils )
-   postgres? ( dev-db/postgresql:* )
-   readline? ( sys-libs/readline:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-
-PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" )
-
-src_configure() {
-   local -a myconf=(
-   $(use_enable curl)
-   $(use_enable gsl)
-   $(use_enable mpfr)
-   $(use_enable ncurses curses)
-   $(use_enable plotutils)
-   $(use_enable postgres postgresql)
-   $(use_enable readline)
-   $(use_with ncurses)
-   )
-   econf "${myconf[@]}"
-}



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

2024-04-10 Thread Maciej Barć
commit: e48c2c19c67f36c88641274f202cd3146d0ce677
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 23:24:35 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48c2c19

app-arch/bzip3: drop old 1.3.2

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

 app-arch/bzip3/Manifest   |  1 -
 app-arch/bzip3/bzip3-1.3.2.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/app-arch/bzip3/Manifest b/app-arch/bzip3/Manifest
index 06b0a52b2127..ae651b30a1be 100644
--- a/app-arch/bzip3/Manifest
+++ b/app-arch/bzip3/Manifest
@@ -1,2 +1 @@
-DIST bzip3-1.3.2.tar.xz 277768 BLAKE2B 
6ee7e5d7f1ab11c19664937fc631e51f5707b6893441bdd6e1beb52e9e2e46255e31c782f61939eba3f966f2be74b422a89f5fcd9d3f42caea07784f2f858efd
 SHA512 
76521377adfe737b30e77f5c3241c1c12214165492fba5acbc5ba09c8e7b91396b772f9fec936d6603413c3ef179a13597b13509df99bd8a2d56cbf14a70a84f
 DIST bzip3-1.4.0.tar.xz 278424 BLAKE2B 
d3e4ae283d3b4512e70ffe3ef63c4ee4fe6f7a0a272aacfe67aae155aed547b54c7e46bce2448b140c7af58ec968b33a1ea7660ffa492bd6bf6eed9fd9f9c4d1
 SHA512 
584eb77b3071b09c15f20ec88248c9295ca2107107fdcb0495364ac60807c688d167a6cbbdd1b67cc851cbebc0791661ecb44b4d03ca5fb7d2b89ce839452062

diff --git a/app-arch/bzip3/bzip3-1.3.2.ebuild 
b/app-arch/bzip3/bzip3-1.3.2.ebuild
deleted file mode 100644
index 62f14502840e..
--- a/app-arch/bzip3/bzip3-1.3.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="A better and stronger spiritual successor to BZip2"
-HOMEPAGE="https://github.com/kspalaiologos/bzip3;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/kspalaiologos/${PN}.git;
-else
-   
SRC_URI="https://github.com/kspalaiologos/${PN}/releases/download/${PV}/${P}.tar.xz;
-   KEYWORDS="amd64 arm64 ~loong x86"
-fi
-
-LICENSE="LGPL-3+"
-SLOT="0"
-
-src_configure() {
-   # ./configure script will default to Clang if it is found on the system,
-   # force the use of CC selected by the user with CC=$(tc-getCC)
-   econf CC=$(tc-getCC)
-}
-
-src_install() {
-   default
-
-   find "${ED}" -type f -name '*.la' -delete || die
-}



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

2024-04-10 Thread Maciej Barć
commit: 47e074625ee17071cbffc75d907f9ba32342777b
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Apr 10 22:26:18 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Apr 11 01:38:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e07462

dev-lang/typescript: bump to 5.4.5

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

 dev-lang/typescript/Manifest|  1 +
 dev-lang/typescript/typescript-5.4.5.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-lang/typescript/Manifest b/dev-lang/typescript/Manifest
index 0355629c64b5..c2fbcf27f1df 100644
--- a/dev-lang/typescript/Manifest
+++ b/dev-lang/typescript/Manifest
@@ -2,3 +2,4 @@ DIST typescript-5.3.3.tgz 5761919 BLAKE2B 
629d2d97a9d57f63cd693a6d77cc385058778c
 DIST typescript-5.4.2.tgz 5824544 BLAKE2B 
a22ecc8a17be22da10263746537d5ce0a0af359866773d6d4d081332a82436c734628d0d89134db63f46fae57f62f6e674f420cea2fff902c1be1a25307b03d8
 SHA512 
fb6fe0d0576cd444653fa26c6a44100d78d975930cfabaa96a61592442a1e24c13227de20e480ab5bcb409e35de404cd678472d5ac75e53331d16d95fa68a2cd
 DIST typescript-5.4.3.tgz 5824407 BLAKE2B 
c985361a7248f87437bd3df1ce7a66cb6c409b91718fd874f4a51cbff91d7b1bcf91034d1bcfbd3e469e168c4e2571892b28ac74edcdd04fc12c3391925dfb49
 SHA512 
2ab3dddcf29a08bafbf0c6a5822c099c0db9366f070267703779985186601bfc22cc8a3d11a8a7355408f7fc836afb5515137687793cb9fdc62c7ba10cc8041e
 DIST typescript-5.4.4.tgz 5825725 BLAKE2B 
98ebd2f2c3472b7944009f672d647d34540b3cb331fb02d41069df572dc10a0f19c08aee7a12c0536e6d3895502e4a8c11b8ff0c1dcb2d58e0398795f2ce50fe
 SHA512 
74613656ff1ca55bf0dbcbfc1c23eac9bd3c1336c1511c43a6e849bd3aeeb128547c69e11c169f0ec2dd4b5121871c8be8125013ed9c4f77433c0bfe310ea82f
+DIST typescript-5.4.5.tgz 5825770 BLAKE2B 
aea24c0924b2a0b0d01face2ce6be4e7fac85c2205cb0ecde492c5301f83d55fd8cd501326bd47f90cd78abf48c7aaf0381b13fc8242f3d2f9235e6051860b2b
 SHA512 
bdc23852946083cd68211505c11d164881cab75d6727b48056560d22ef90a6a7b25cffa0a50272fd9e3e174686c5213832ac23c97bd6fd3ce090b031d80187c1

diff --git a/dev-lang/typescript/typescript-5.4.5.ebuild 
b/dev-lang/typescript/typescript-5.4.5.ebuild
new file mode 100644
index ..2be080b5
--- /dev/null
+++ b/dev-lang/typescript/typescript-5.4.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Superset of JavaScript with optional static typing, classes and 
interfaces"
+HOMEPAGE="https://www.typescriptlang.org/
+   https://github.com/microsoft/TypeScript/;
+SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz;
+S="${WORKDIR}"/package
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
+
+RDEPEND="net-libs/nodejs"
+BDEPEND=">=net-libs/nodejs-16[npm]"
+
+src_compile() {
+   # Skip, nothing to compile here.
+   :
+}
+
+src_install() {
+   local myopts=(
+   --audit false
+   --color false
+   --foreground-scripts
+   --global
+   --offline
+   --omit dev
+   --prefix "${ED}"/usr
+   --progress false
+   --verbose
+   )
+   npm ${myopts[@]} install "${DISTDIR}"/${P}.tgz || die "npm install 
failed"
+
+   dodoc *.md *.txt
+}



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

2024-04-10 Thread Matt Turner
commit: 7292ac2e2b3f2951585d42df62d40954805cb675
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr 11 00:25:15 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr 11 00:25:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7292ac2e

media-libs/mesa: Fix patch application

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

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

diff --git a/media-libs/mesa/mesa-24.0.5.ebuild 
b/media-libs/mesa/mesa-24.0.5.ebuild
index 903a98e2b651..53d40957a9fc 100644
--- a/media-libs/mesa/mesa-24.0.5.ebuild
+++ b/media-libs/mesa/mesa-24.0.5.ebuild
@@ -161,7 +161,7 @@ x86? (
 )"
 
 PATCHES=(
-   
"${FILESDIR}"/${PV}-dzn-Include-vulkan_core.h-instead-of-vulkan.h-in-the.patch
+   
"${FILESDIR}"/24.0.4-dzn-Include-vulkan_core.h-instead-of-vulkan.h-in-the.patch
 )
 
 pkg_pretend() {



[gentoo-commits] repo/proj/guru:dev commit in: x11-themes/catppuccin-gtk/

2024-04-10 Thread Denis Strizhkin
commit: ed2f764a353df057f38136fb742810f88f62d079
Author: Denis Strizhkin  gmail  com>
AuthorDate: Thu Apr 11 00:16:33 2024 +
Commit: Denis Strizhkin  gmail  com>
CommitDate: Thu Apr 11 00:16:33 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed2f764a

x11-themes/catppuccin-gtk: add 0.7.3, drop 0.7.1

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

 x11-themes/catppuccin-gtk/Manifest | 112 ++---
 ...tk-0.7.1.ebuild => catppuccin-gtk-0.7.3.ebuild} |   0
 2 files changed, 56 insertions(+), 56 deletions(-)

diff --git a/x11-themes/catppuccin-gtk/Manifest 
b/x11-themes/catppuccin-gtk/Manifest
index 055afb75dd..c083936ba2 100644
--- a/x11-themes/catppuccin-gtk/Manifest
+++ b/x11-themes/catppuccin-gtk/Manifest
@@ -1,59 +1,3 @@
-DIST catppuccin-gtk-0.7.1-frappe-blue-dark.zip 497646 BLAKE2B 
2d1f2c09ed4a42992805e7ae79add2b13e7cf3c364150a3d54ea747759608494f8cbaad3b01723e6a01e9a48c48b1504b177f80b371a2249b12250e966da2fcf
 SHA512 
51b4c554a88199abd744a236c6efce73cc295800d7c4f81a68663cdbe03db614d3f02d799b8ebb223a9d1a369bf54e3161b009981117a503718dfaa05d776587
-DIST catppuccin-gtk-0.7.1-frappe-flamingo-dark.zip 501352 BLAKE2B 
2962f5d1f5c0213409d10d28aac8c61941077fd8630151e33847ec456b2f52e8750998835b70d5840f9f5b36d57a1311236114299b8b9a359f4b94767364db17
 SHA512 
27740ab67acacc1ac26ac6487816424e8ab6f549c6e6de430fc36e99d9b7bcce18975e9a451a20a10c1a415690689b8739860ff1649ccc781c9894a38880940f
-DIST catppuccin-gtk-0.7.1-frappe-green-dark.zip 496890 BLAKE2B 
8b5a25522b4a8cd5374665f7719ddb42ec439192b8beab8ae895411cb1fc649a9a003092798f273cb1a4dce6a9fc6ce580830785ae1c17110b8ce953e395dfe9
 SHA512 
fcb3d638b62a33684093c3c8d0b05f90b31831750fea4ad0c0296593dc6a3997d89b9f08b03e38b1737338fc4a25bb7613f9fba3c9107466e6b83a0b01582d60
-DIST catppuccin-gtk-0.7.1-frappe-lavender-dark.zip 501845 BLAKE2B 
8abc3e457f07f529336e810c1d7091bdd2ada69186ebd668362431208f460e3b8c11d62736c64cdd05915aef7677b01379d21521b2fe2eb22d1e671b28b3f992
 SHA512 
f5b8eb96875c521aa2be5742f04e465a25bfa80b3b9282a642597d7ce1e131e20bf0562061908e82290dd71ec3dd55bbe8b601c74079149b2cd1b8cc1ea940b3
-DIST catppuccin-gtk-0.7.1-frappe-maroon-dark.zip 497892 BLAKE2B 
356c5b55239d6f3e78609368f51e48beb1cf9979ac7e8b62a5cb1ab77d04bfc8e203cfc5b12740f8d0a0a818d7a609986330d5c5322ae88aad18fa7a16086564
 SHA512 
21bafff62ea2fd2fc890d830f10ae579eaf519d3d708d86bdbec3ea5d7a317a7741568c81b7be30b8f88ef6f7ed3ac8ef2db0a12f29f8f98f85489f38e9065c7
-DIST catppuccin-gtk-0.7.1-frappe-mauve-dark.zip 498455 BLAKE2B 
19b63b5700f2cd13d01a2062f9cd7f1f6ee8ab8ccd3e57740cd0e478f4494537bdf9a906e5a11d90311f985b700a2736fbf21399b1e342c419d7a6c3ec3e56fc
 SHA512 
145e997e439f77c912c8d95ba4a085c0e20e373980bf95efd8bc5fe14fb31f04ad7ff4bd25e4c221f51185044dc4fbb67cc3512d51f54310309a868e897c2cc1
-DIST catppuccin-gtk-0.7.1-frappe-peach-dark.zip 496070 BLAKE2B 
7da62bee9139e5b4f9ba1d2456dd4c15d30b3e6e29a2df2d803e57b02483bea28fcedc38db20b86ff857e38bfb109c5d852631ed395df32bc7264602b18fdb27
 SHA512 
5c116b83ab12e3ecc4491497dcb6a947142a27bae05cb38186c169d55a591b99dd9482e8aa4cd9fdfa8490ddcd68572f23ee117fdac28f564237c8e373505a9f
-DIST catppuccin-gtk-0.7.1-frappe-pink-dark.zip 497179 BLAKE2B 
bed40ada8de0f4474daf3f7106b2815763995115432646beb635af122b1f822755cb333fd7884319105b99ab50f2db073dc237295c12508cbefebedf86a1177d
 SHA512 
7d4097b1d05ba88b6aa5a9376c6bb2c747dacf262c922e6a7ee079293628cc6146480e1c4b2dedbd57741a939fc3d9ca8ebf4f8db38181bd066e37a666543f5a
-DIST catppuccin-gtk-0.7.1-frappe-red-dark.zip 494685 BLAKE2B 
30b3346719b63b3321038d23c2ac243fe240aaca27b76b32404256ea9d191797f9d6caa12c9e14df244d69a766ed97e1f9e56dcca2a15928c858351cf453d293
 SHA512 
a41bdc01fb91e454ed19dbd122d217f946b01a0c26c5565272c8304ddb0f8832f3223f28439720e060ebb8f4bc4426658f305fbc38c7cfda960ee9538ce47e08
-DIST catppuccin-gtk-0.7.1-frappe-rosewater-dark.zip 509300 BLAKE2B 
1b6d820a745bba32f505cec8b9fecc3b296a12a7d8f94f3d9dc604ec3facc4b22ea66bd603f44a06ae8a9746eeb6a8c7b311bc63cbe3c8922d273ed1b5fcfc17
 SHA512 
bb49842a2f50140f29f7879fb765be603a56a4a6e47fdd33141a487e37e115f07ce4d40986cb3f6f29b4e44705572d6c810876ce8b1ef8f59541a43a37fe8fdc
-DIST catppuccin-gtk-0.7.1-frappe-sapphire-dark.zip 501867 BLAKE2B 
53d735a1dad019fa48c476d715aedee40758fa668a0b79214ac2a243bdb126896f253f377e932657dac81ad0bcb505ab1061606abef986f8d67cf49a9e6f78a7
 SHA512 
133aef37bed849b76528de54a10556b42665ddc3afab788df654a8e9576d8c78a6b6c16a403851099b469657306c31083ffd0d3093c7df72eb52dd72f2766cde
-DIST catppuccin-gtk-0.7.1-frappe-sky-dark.zip 495082 BLAKE2B 
555f25e058839fd2ea667d7fa3a7b5cb76ebe85a6336c06910f29b270d2eca23fb5e76d4db31cb4545669964855ec5733b85934346bad4f7f1fd18f82385839a
 SHA512 
5713304787a85041468bc65c5542f956efb4534e066f161c442bd0697fb4419e8c5c898544d270b9adb37dada5f4ebfbe3c931d3a49797b576e7e75cdde8a73d
-DIST catppuccin-gtk-0.7.1-frappe-teal-dark.zip 496126 BLAKE2B 
2fabd9f2705e454ef933c4489c88c55e578a3f9a26a7489d4bed2bf0f1f82d7db1693b34bbed28a23cada83f5ec470df7bb2b0ad73ad62c74edfbb4ae2164738
 SHA512 

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

2024-04-10 Thread Yixun Lan
commit: fb879894d2f82c132f9c9991c4e1e4012ad86a38
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Apr 10 23:18:44 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb879894

media-plugins/imlib2_loaders: add myself as a maintainer

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

 media-plugins/imlib2_loaders/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/media-plugins/imlib2_loaders/metadata.xml 
b/media-plugins/imlib2_loaders/metadata.xml
index 4b8a73a69100..0a9f978423a3 100644
--- a/media-plugins/imlib2_loaders/metadata.xml
+++ b/media-plugins/imlib2_loaders/metadata.xml
@@ -1,7 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+  
+d...@gentoo.org
+Yixun Lan
+  
   
 Enable XCF image loader
   



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

2024-04-10 Thread Yixun Lan
commit: 064261a1f962b739b04ba53fc03eec9db6dd64a0
Author: NRK  disroot  org>
AuthorDate: Sun Apr  7 19:28:05 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=064261a1

media-plugins/imlib2_loaders: add v1.12.2

no upstream or ebuild changes since last version

Closes: https://github.com/gentoo/gentoo/pull/36156
Signed-off-by: NRK  disroot.org>
Signed-off-by: Yixun Lan  gentoo.org>

 media-plugins/imlib2_loaders/Manifest  |  1 +
 .../imlib2_loaders/imlib2_loaders-1.12.2.ebuild| 34 ++
 2 files changed, 35 insertions(+)

diff --git a/media-plugins/imlib2_loaders/Manifest 
b/media-plugins/imlib2_loaders/Manifest
index 545c99a5cda0..bb0be411aef5 100644
--- a/media-plugins/imlib2_loaders/Manifest
+++ b/media-plugins/imlib2_loaders/Manifest
@@ -1,2 +1,3 @@
 DIST imlib2_loaders-1.11.0.tar.xz 254380 BLAKE2B 
a578ea36d18e6dfbadc107a862fd9a2089760280a82bb9a1efe047e7d142c0351afd62b228cf53dbca6b7cf6aa3aa17244e86c80416d6dea533f1de721e26eb0
 SHA512 
ecc26f5b087bf23e7c2a767b7a9663f3b594f7146e8c7e87a5333297641db0b8557a9faf554c95f45ba0b1c336e87e50b8b2b79005fccacd6f9dac9de36949c6
+DIST imlib2_loaders-1.12.2.tar.xz 254512 BLAKE2B 
4eae597e5145527e1d1ef7f29eea77d99a197c39b6efac71d984b0a9a8346759e7e8175da2652790583307b7002eecb2dd4d3273dd956fb04d403090c0dc47c2
 SHA512 
9acd187023e336dfdd765d15c40a6161fbe340a0d51bbd426fdb02d39b2ff86da77ba5034f87faa8fd46e39590ca816a10e7422851391719235f9193a29501a0
 DIST imlib2_loaders-1.9.1.tar.xz 257512 BLAKE2B 
b1610b54923f354fa0946d1e19efc9270f737122f979e5352c2090f25bd79318c58437b8fc7744dff9b9d7991f38a0b26aa5f3ce1e493961e348d1d2012924df
 SHA512 
eed5c567d4c896a321be7492ceda8b1be33c5d8ab7614a7f9588adc9a2c288f4127f1c91ce65ea0ce18b5477c5b9a58bceb04a82a98cb6fc071a0c762f9ce8ee

diff --git a/media-plugins/imlib2_loaders/imlib2_loaders-1.12.2.ebuild 
b/media-plugins/imlib2_loaders/imlib2_loaders-1.12.2.ebuild
new file mode 100644
index ..d2f84bfedf65
--- /dev/null
+++ b/media-plugins/imlib2_loaders/imlib2_loaders-1.12.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Additional image loaders for Imlib2"
+HOMEPAGE="https://www.enlightenment.org/
+   https://sourceforge.net/projects/enlightenment/files/imlib2-src/;
+SRC_URI="https://downloads.sourceforge.net/enlightenment/${P}.tar.xz;
+
+LICENSE="|| ( BSD GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-solaris"
+IUSE="xcf"
+
+RDEPEND=">=media-libs/imlib2-${PV}"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_enable xcf)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   V=1 emake install DESTDIR="${D}"
+   einstalldocs
+
+   find "${D}" -name '*.la' -delete || die
+}



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

2024-04-10 Thread Yixun Lan
commit: 195ee5572f4f70d244469a6d515e309133ed7b36
Author: Aliaksei Urbanski  gmail  com>
AuthorDate: Wed Apr 10 21:36:04 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195ee557

net-im/telegram-desktop: add 4.16.6

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

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

Based on previous commit of gentoo.git repository :
4b681a67160271ec96912fc12ad1c50536825705
3006f656e6dd79d109533b220b224ad7de22a818
ce4cbbe6125f6444606f3c3df4c82c93e17a8e64

Closes: https://github.com/gentoo/gentoo/pull/36193
Co-authored-by: Esteve Varela Colominas  gmail.com>
Signed-off-by: Aliaksei Urbanski  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 net-im/telegram-desktop/Manifest   |   1 +
 .../tdesktop-4.2.4-jemalloc-only-telegram-r1.patch |  43 
 .../telegram-desktop-4.16.6.ebuild | 247 +
 3 files changed, 291 insertions(+)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index 480276343a72..889b8b5babf0 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -1,3 +1,4 @@
 DIST tdesktop-4.15.0-full.tar.gz 68286818 BLAKE2B 
2bd4d59370a4f97aa3c1b1d64fa7eea114539edcff46ea30a5361cefeeb1de8a1954be91a1a420ddc1b1a30970944387c2cd3749badaa494e53862066c624ac3
 SHA512 
95aa5f14a9a88b9c6421049445f59f1c5c5d7ab4ca4e8b8f4ab7389bdb8f3cc6b29fea270574881633035acec769ba271261f84ec269010c63af28a03719da98
 DIST tdesktop-4.15.2-full.tar.gz 69539402 BLAKE2B 
95d6cd3eead56f7cb2aeafd0cc1a05d740ec243644e6d318f415a7fa6c8ad94d3a95cfc9082ba04507a024c81bfc15700ad6adcbfd932ca1993a3310744ac196
 SHA512 
6e65183d5e77d17e11d0c70e1654373e69f6243f2879cf403701e23acd5aed9df6c6892a1c7c83fd975a858e90e20d73824d0754a2f96ad5af6e3de6515e2627
 DIST tdesktop-4.16.4-full.tar.gz 69798524 BLAKE2B 
1d946a2f9408dfe29bdab679bcd68703f9de2d2aade84eea3331616cd1352c3304c2407e0a8d81044dad262482eab36e983b151f0a600df383a9f23b39177fd4
 SHA512 
cee57e654d06dd50843a0ae88cb658d69b546e37f613a2e93d7f44463136830ff5c3de6b7177fb050b1301bfa25ed6e16f0b3fd894b0635772941c999d3ff63f
+DIST tdesktop-4.16.6-full.tar.gz 70435773 BLAKE2B 
5b66ba9e7a4cbbadcfd271bd33940ccf928e32b7b008b60b710095ff3b60255257b56746b5344100f034164949f428cfd19727f5d5a9f364eba7e7f6b58853fb
 SHA512 
5b580d36c8b8a90981c3541d4c148df37bb7ebdec0970bfbfe4c1a9a1175e3cf41c2a14d854d7d917482aa9086ee712844ec40780741df22ad6d42fcf3c48f1f

diff --git 
a/net-im/telegram-desktop/files/tdesktop-4.2.4-jemalloc-only-telegram-r1.patch 
b/net-im/telegram-desktop/files/tdesktop-4.2.4-jemalloc-only-telegram-r1.patch
new file mode 100644
index ..d56bacea69f8
--- /dev/null
+++ 
b/net-im/telegram-desktop/files/tdesktop-4.2.4-jemalloc-only-telegram-r1.patch
@@ -0,0 +1,43 @@
+Only link jemalloc for the Telegram binary
+
+Some combination of factors is making the different codegen tools hang when
+jemalloc is linked for those, and they're ran under portage's sandbox. Since
+this is only used during build-time, and jemalloc is merely necessary to
+improve runtime memory use, it's unnecessary to use it for anything else.
+
+https://bugs.gentoo.org/802624
+
+--- tdesktop-4.2.4-full.orig/Telegram/CMakeLists.txt
 tdesktop-4.2.4-full/Telegram/CMakeLists.txt
+@@ -1478,6 +1478,14 @@
+ desktop-app::external_wayland_client
+ )
+ endif()
++
++if (NOT DESKTOP_APP_DISABLE_JEMALLOC)
++target_link_libraries(Telegram
++PRIVATE
++$
++$
++)
++endif()
+ endif()
+ 
+ if (build_macstore)
+--- tdesktop-4.2.4-full.orig/cmake/options_linux.cmake
 tdesktop-4.2.4-full/cmake/options_linux.cmake
+@@ -78,14 +78,6 @@
+ )
+ endif()
+ 
+-if (NOT DESKTOP_APP_DISABLE_JEMALLOC)
+-  target_link_libraries(common_options
+-  INTERFACE
+-  $
+-  $
+-  )
+-endif()
+-
+ if (DESKTOP_APP_USE_ALLOCATION_TRACER)
+ target_link_options(common_options
+ INTERFACE

diff --git a/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild
new file mode 100644
index ..a71d70336af3
--- /dev/null
+++ b/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild
@@ -0,0 +1,247 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit xdg cmake python-any-r1 optfeature flag-o-matic
+
+DESCRIPTION="Official desktop client for Telegram"
+HOMEPAGE="https://desktop.telegram.org;
+
+MY_P="tdesktop-${PV}-full"
+SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+IUSE="dbus enchant 

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

2024-04-10 Thread Yixun Lan
commit: c5c9b30b261d6cdf816ff74a6cfee85f27e6615e
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Apr 10 23:16:32 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5c9b30b

media-libs/imlib2: add myself as a maintainer

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

 media-libs/imlib2/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/media-libs/imlib2/metadata.xml b/media-libs/imlib2/metadata.xml
index 18c00a6f15ff..71448ea79f8e 100644
--- a/media-libs/imlib2/metadata.xml
+++ b/media-libs/imlib2/metadata.xml
@@ -5,6 +5,10 @@
n...@disroot.org
NRK

+   
+   d...@gentoo.org
+   Yixun Lan
+   

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



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

2024-04-10 Thread Yixun Lan
commit: a9e6c3310976482ab2d9c2bcba2c0a1100ce1f6a
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Apr 10 23:07:32 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9e6c331

net-im/telegram-desktop: drop jemalloc[lazy-lock] restriction

tested with jemalloc[lazy-lock], it works fine with 4.16.6, so drop it.

Bug: https://bugs.gentoo.org/803233
Signed-off-by: Yixun Lan  gentoo.org>

 net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild
index a71d70336af3..96d25257595e 100644
--- a/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild
+++ b/net-im/telegram-desktop/telegram-desktop-4.16.6.ebuild
@@ -47,7 +47,7 @@ CDEPEND="
sys-libs/zlib:=[minizip]
!enchant? ( >=app-text/hunspell-1.7:= )
enchant? ( app-text/enchant:= )
-   jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] )
+   jemalloc? ( dev-libs/jemalloc:= )
!qt6? (
>=dev-qt/qtcore-5.15:5=
>=dev-qt/qtgui-5.15:5=[dbus?,jpeg,png,wayland?,X?]
@@ -96,7 +96,6 @@ BDEPEND="
virtual/pkgconfig
wayland? ( dev-util/wayland-scanner )
 "
-# dev-libs/jemalloc:=[-lazy-lock] -> https://bugs.gentoo.org/803233
 
 PATCHES=(
"${FILESDIR}/tdesktop-4.2.4-jemalloc-only-telegram-r1.patch"



[gentoo-commits] repo/gentoo:master commit in: media-libs/imlib2/, profiles/arch/s390/

2024-04-10 Thread Yixun Lan
commit: 08f14fa18fdd0d833916c9ddba7dbd1d76f4de8d
Author: NRK  disroot  org>
AuthorDate: Sun Apr  7 19:15:18 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Apr 10 23:33:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08f14fa1

media-libs/imlib2: add v1.12.2

Changes since last version:
- Added support for RAW loader
- Explictly disable y4m loader (needs libyuv which is unpackaged
  in gentoo)
- freetype is dependency only if `text` is enabled
- remove useflag description for flags that are global and have
  useful description already
- add bugs-to in metadata.xml
- add myself as maintainer

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

 media-libs/imlib2/Manifest |   1 +
 media-libs/imlib2/imlib2-1.12.2.ebuild | 101 +
 media-libs/imlib2/metadata.xml |  16 +++---
 profiles/arch/s390/package.use.mask|   4 ++
 4 files changed, 115 insertions(+), 7 deletions(-)

diff --git a/media-libs/imlib2/Manifest b/media-libs/imlib2/Manifest
index c6907aef828b..04f111861b8f 100644
--- a/media-libs/imlib2/Manifest
+++ b/media-libs/imlib2/Manifest
@@ -1,2 +1,3 @@
 DIST imlib2-1.11.0.tar.xz 820368 BLAKE2B 
2e1dec04c44ce14429910c0dd6b7b5173bc70e8968912c9c25e8b47d38fdfd6753c29de2e5a2ae0b0e6498550e207989ae927682b09032b637baf759744dfbec
 SHA512 
2727b217ae18e1015591f2587f885a5a8d59471d6051f1aefb761329fd0fc979163e228154b2bff8728a3a2acc28437f189989d24a4d6e37bfc6f69445bd47e7
+DIST imlib2-1.12.2.tar.xz 831812 BLAKE2B 
6b1bad56a70c3beb91ef85d6b7a40c80d0f3d2dc8b87bb9d37f2073ab0154860230671c3e78bc87051e5f25fc5871a036cb51dcc24b6734dcd2c322f406796b3
 SHA512 
3bffb8f0f6b3ec73a81f1d0c6ef3a3443425677cd8a1950422f102b67769c06df54128b21f84bd6c7880120cc5ec6f30d2ab134b3c001ad77f2d39efd749a5b7
 DIST imlib2-1.9.1.tar.xz 813104 BLAKE2B 
ef7369d2285bd5b207f646ebb12492323203306c95786d8561a1191dbe489a8efe61975e4deed7bc9c8ed0ac24cf9bd826fa5a24095bc3d254e6f6d6379c8c8b
 SHA512 
00eb8804a32e1403614e9f899f358dd9797f4bcfa7e9fdecd37992731019933e39834a60bd20be8fb69a35161ba1e784bd638b5ecb626d01a4f69c70c330e5f1

diff --git a/media-libs/imlib2/imlib2-1.12.2.ebuild 
b/media-libs/imlib2/imlib2-1.12.2.ebuild
new file mode 100644
index ..95f292e1163c
--- /dev/null
+++ b/media-libs/imlib2/imlib2-1.12.2.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Must be bumped with media-plugins/imlib2_loaders!
+
+inherit multilib-minimal toolchain-funcs
+
+DESCRIPTION="Version 2 of an advanced replacement library for libraries like 
libXpm"
+HOMEPAGE="https://www.enlightenment.org/
+   https://sourceforge.net/projects/enlightenment/files/imlib2-src/;
+SRC_URI="https://downloads.sourceforge.net/enlightenment/${P}.tar.xz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="+X apidoc bzip2 cpu_flags_x86_mmx cpu_flags_x86_sse2 debug
+eps +filters +gif +jpeg jpeg2k jpegxl heif lzma mp3 packing +png
+raw +shm static-libs svg +text +tiff +webp zlib"
+
+REQUIRED_USE="shm? ( X )"
+
+RDEPEND="
+   X? (
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   )
+   bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )
+   eps? ( app-text/libspectre )
+   gif? ( media-libs/giflib:=[${MULTILIB_USEDEP}] )
+   heif? ( media-libs/libheif:=[${MULTILIB_USEDEP}] )
+   jpeg2k? ( media-libs/openjpeg:=[${MULTILIB_USEDEP}] )
+   jpeg? ( media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}] )
+   jpegxl? ( media-libs/libjxl:=[${MULTILIB_USEDEP}] )
+   lzma? ( app-arch/xz-utils[${MULTILIB_USEDEP}] )
+   text? ( media-libs/freetype:2[${MULTILIB_USEDEP}] )
+   mp3? ( media-libs/libid3tag:=[${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}] )
+   raw? ( media-libs/libraw:= )
+   svg? ( >=gnome-base/librsvg-2.46.0:=[${MULTILIB_USEDEP}] )
+   tiff? ( >=media-libs/tiff-4.0.4:=[${MULTILIB_USEDEP}] )
+   webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
+   zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
+   !
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   n...@disroot.org
+   NRK
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Use the X window system
Provide doxygen generated API docs
Bzip2 loader support
Build filter functions (blur, sharpen, 
etc)
-   Gif image loader support
-   Jpeg image loader support
Heif and Avif image loader support
Eps image loader support
-   Jxl image loader support
ID3 loader support

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

2024-04-10 Thread Matt Turner
commit: cf4854a84a5a3ed0a228811071443eda8c58ce67
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr 10 22:41:39 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr 10 22:42:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4854a8

x11-base/xwayland: Version bump to 23.2.6

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

 x11-base/xwayland/Manifest   |   1 +
 x11-base/xwayland/xwayland-23.2.6.ebuild | 112 +++
 2 files changed, 113 insertions(+)

diff --git a/x11-base/xwayland/Manifest b/x11-base/xwayland/Manifest
index 81eab49fc5bb..9a54f9414d06 100644
--- a/x11-base/xwayland/Manifest
+++ b/x11-base/xwayland/Manifest
@@ -1,2 +1,3 @@
 DIST xwayland-23.2.4.tar.xz 1299748 BLAKE2B 
5427ff1f8b95b25c79df74eef18e2aeb7eecafa7d522e720e1072603108516cbaa57652e6439426d18d90320b67ec0764978450c76c6ce759d49fedfc6aedf65
 SHA512 
ac3ff208cbef5bbe4637c335cfda226489c93b0a3768f2f4fb0201c588485ede38262fbce77ef1425b3d2a0be61b6580df53341c7b95e6072c8b6371ad29d187
 DIST xwayland-23.2.5.tar.xz 1299988 BLAKE2B 
d0f4ff06c5eef3c4863aae53496dbd02e89fb186b06001c81f5a7e261fe5a7eefd8a327a9489a5eaed34c91ac68e02664256d948cca6c4efad116580ec9340f6
 SHA512 
8cf90d51db7c4c7e8191b5919e6529fe577bc735bb1d00fbc0139cb67ef95d30eb56c2026f3b2f639745c6a621b33bbd60f9ebabdd12175148dd192393ce1169
+DIST xwayland-23.2.6.tar.xz 1300092 BLAKE2B 
5b10984a2c2fba87ce1101b70c26070100e743239dc705716c4b7e1318e192ad1da5e4933516f87ab0405b98eb1cc093081d4a1e4754f5dc8947a546a6f89072
 SHA512 
9e3c2253af335a559d0f890fa8f9bc381beca6531e0842d739ac15cbca008b3d07c0eefafd03611b04917c626861a7871a83657afa2a298994f4b162f714fc49

diff --git a/x11-base/xwayland/xwayland-23.2.6.ebuild 
b/x11-base/xwayland/xwayland-23.2.6.ebuild
new file mode 100644
index ..c753a669db77
--- /dev/null
+++ b/x11-base/xwayland/xwayland-23.2.6.ebuild
@@ -0,0 +1,112 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git;
+   inherit git-r3
+else
+   
SRC_URI="https://xorg.freedesktop.org/archive/individual/xserver/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+DESCRIPTION="Standalone X server running under Wayland"
+HOMEPAGE="https://wayland.freedesktop.org/xserver.html;
+
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="libei selinux systemd video_cards_nvidia unwind xcsecurity"
+
+COMMON_DEPEND="
+   dev-libs/libbsd
+   dev-libs/openssl:=
+   >=dev-libs/wayland-1.21.0
+   >=dev-libs/wayland-protocols-1.30
+   media-fonts/font-util
+   >=media-libs/libepoxy-1.5.4[X,egl(+)]
+   media-libs/libglvnd[X]
+   >=media-libs/mesa-21.1[X(+),egl(+),gbm(+)]
+   >=x11-libs/libdrm-2.4.109
+   >=x11-libs/libXau-1.0.4
+   x11-libs/libxcvt
+   >=x11-libs/libXdmcp-1.0.2
+   >=x11-libs/libXfont2-2.0.1
+   x11-libs/libxkbfile
+   >=x11-libs/libxshmfence-1.1
+   >=x11-libs/pixman-0.27.2
+   >=x11-misc/xkeyboard-config-2.4.1-r3
+
+   libei? ( dev-libs/libei )
+   systemd? ( sys-apps/systemd )
+   unwind? ( sys-libs/libunwind )
+   video_cards_nvidia? ( gui-libs/egl-wayland )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   >=x11-base/xorg-proto-2023.2
+   >=x11-libs/xtrans-1.3.5
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   x11-apps/xkbcomp
+
+   libei? ( >=sys-apps/xdg-desktop-portal-1.18.0 )
+   selinux? ( sec-policy/selinux-xserver )
+"
+BDEPEND="
+   app-alternatives/lex
+   dev-util/wayland-scanner
+"
+
+PATCHES=(
+   "${FILESDIR}"/xwayland-drop-redundantly-installed-files.patch
+   "${FILESDIR}"/xwayland-23.2.3-systemd-automagic.patch
+)
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use selinux xselinux)
+   $(meson_use systemd)
+   $(meson_use unwind libunwind)
+   $(meson_use xcsecurity)
+   $(meson_use video_cards_nvidia xwayland_eglstream)
+   -Ddpms=true
+   -Ddri3=true
+   -Ddrm=true
+   -Ddtrace=false
+   -Dglamor=true
+   -Dglx=true
+   -Dipv6=true
+   -Dsecure-rpc=false
+   -Dscreensaver=true
+   -Dsha1=libcrypto
+   -Dxace=true
+   -Dxdmcp=true
+   -Dxinerama=true
+   -Dxvfb=true
+   -Dxv=true
+   -Dxwayland-path="${EPREFIX}"/usr/bin
+   -Dlibdecor=false
+   -Ddocs=false
+   -Ddevel-docs=false
+   -Ddocs-pdf=false
+   )
+
+   if use libei; then
+   emesonargs+=( -Dxwayland_ei=portal )
+   else
+   emesonargs+=( -Dxwayland_ei=false )
+   fi
+
+   meson_src_configure
+}
+

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

2024-04-10 Thread James Le Cuirot
commit: eba393ca0736cf36c7aa17157977819ce50a0a4c
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Sun Apr  7 01:37:04 2024 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Apr 10 22:23:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba393ca

gui-wm/gamescope: Bump to 3.14.2-r1, drop 3.14.2

* move dev-libs/wayland-protocols to DEPEND
* add  logic to the ebuild
* future version will require gui-libs/libdecor as (R)DEPEND

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/36064
Signed-off-by: James Le Cuirot  gentoo.org>

 ...pe-3.14.2.ebuild => gamescope-3.14.2-r1.ebuild} | 33 --
 1 file changed, 24 insertions(+), 9 deletions(-)

diff --git a/gui-wm/gamescope/gamescope-3.14.2.ebuild 
b/gui-wm/gamescope/gamescope-3.14.2-r1.ebuild
similarity index 72%
rename from gui-wm/gamescope/gamescope-3.14.2.ebuild
rename to gui-wm/gamescope/gamescope-3.14.2-r1.ebuild
index be1fd59217bd..ad468106e2c1 100644
--- a/gui-wm/gamescope/gamescope-3.14.2.ebuild
+++ b/gui-wm/gamescope/gamescope-3.14.2-r1.ebuild
@@ -11,9 +11,22 @@ MY_PV="${MY_PV//_/-}"
 
 DESCRIPTION="Efficient micro-compositor for running games"
 HOMEPAGE="https://github.com/ValveSoftware/gamescope;
-SRC_URI="https://github.com/ValveSoftware/${PN}/archive/refs/tags/${MY_PV}.tar.gz
 -> ${P}.tar.gz
-   
https://github.com/Joshua-Ashton/reshade/archive/${RESHADE_COMMIT}.tar.gz -> 
reshade-${RESHADE_COMMIT}.tar.gz"
-KEYWORDS="~amd64"
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/ValveSoftware/${PN}.git;
+   # Prevent wlroots and other submodule from being pull
+   # Not messing with system packages
+   EGIT_SUBMODULES=( src/reshade )
+   inherit git-r3
+else
+   SRC_URI="
+   
https://github.com/ValveSoftware/${PN}/archive/refs/tags/${MY_PV}.tar.gz -> 
${P}.tar.gz
+   
https://github.com/Joshua-Ashton/reshade/archive/${RESHADE_COMMIT}.tar.gz -> 
reshade-${RESHADE_COMMIT}.tar.gz
+   "
+   KEYWORDS="~amd64"
+fi
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
 LICENSE="BSD-2"
 SLOT="0"
 IUSE="pipewire +wsi-layer"
@@ -21,7 +34,6 @@ IUSE="pipewire +wsi-layer"
 RDEPEND="
=dev-libs/libliftoff-0.4*
>=dev-libs/wayland-1.21
-   >=dev-libs/wayland-protocols-1.17
=gui-libs/wlroots-0.17*[X,libinput(+)]
>=media-libs/libavif-1.0.0:=
>=media-libs/libdisplay-info-0.1.1
@@ -48,6 +60,7 @@ RDEPEND="
 "
 DEPEND="
${RDEPEND}
+   >=dev-libs/wayland-protocols-1.34
>=dev-libs/stb-20240201-r1
dev-util/vulkan-headers
media-libs/glm
@@ -60,8 +73,6 @@ BDEPEND="
virtual/pkgconfig
 "
 
-S="${WORKDIR}/${PN}-${MY_PV}"
-
 PATCHES=(
"${FILESDIR}"/${PN}-deprecated-stb.patch
 )
@@ -75,12 +86,16 @@ src_prepare() {
 
# ReShade is bundled as a git submodule, but it references an unofficial
# fork, so we cannot unbundle it. Symlink to its extracted sources.
-   rmdir src/reshade || die
-   ln -snfT ../../reshade-${RESHADE_COMMIT} src/reshade || die
+   # For , use the bundled submodule.
+   if [[ ${PV} != "" ]]; then
+   rmdir src/reshade || die
+   ln -snfT ../../reshade-${RESHADE_COMMIT} src/reshade || die
+   fi
 
# SPIRV-Headers is required by ReShade. It is bundled as a git 
submodule but
# not wrapped with Meson, so we can symlink to our system-wide headers.
-   mkdir thirdparty/SPIRV-Headers/include || die
+   # For , this submodule is not included.
+   mkdir -p thirdparty/SPIRV-Headers/include || die
ln -snf "${ESYSROOT}"/usr/include/spirv 
thirdparty/SPIRV-Headers/include/ || die
 }
 



  1   2   3   >