[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkimg/files/, dev-tcltk/tkimg/

2024-03-05 Thread Alfredo Tupone
commit: 6aeb488eeb991c598145185cfeff409554509dc3
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Mar  5 19:17:57 2024 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Mar  5 19:18:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aeb488e

dev-tcltk/tkimg: drop 1.4.14-r2

Closes: https://bugs.gentoo.org/920481
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-tcltk/tkimg/Manifest   |   1 -
 dev-tcltk/tkimg/files/tkimg-1.4.14-gcc11.patch |  74 ---
 dev-tcltk/tkimg/tkimg-1.4.14-r2.ebuild | 119 -
 3 files changed, 194 deletions(-)

diff --git a/dev-tcltk/tkimg/Manifest b/dev-tcltk/tkimg/Manifest
index 7391afe1f2f9..5f8bd763509d 100644
--- a/dev-tcltk/tkimg/Manifest
+++ b/dev-tcltk/tkimg/Manifest
@@ -1,4 +1,3 @@
-DIST Img-1.4.14-Source.tar.gz 9844859 BLAKE2B 
f373859104c7f1b2d2b5c10adf6b8d3349e22765936916b493589772d2b56e1717cbecf074034989e7e927df16d387ff6533170a1ae9f677ea358a96a86fe67d
 SHA512 
41bfc6909a6836cbdce34f5e5672a02ac67e6d7263a97d48b564994462cc089905a082bd849b6d228750bf09f0cf617989dc9008705938a283fa4e5f1b45
 DIST Img-1.4.15-Source.tar.gz 12108837 BLAKE2B 
b423457f7edceeff38389644e206f2a96204d5f3202a5eb224d9f9a3e4fd2a031c6efb9b53ed72a53441b4d306f4bcdc3ece5d7a08b19e478ed2c74ad66d870e
 SHA512 
f034f7b1cf8b02e0fb80f723927c8512ca67de661b21ee53ea4cf0ec8c09a151466fae0e90395f140834e46e4c231dbce8fefaf870fab41c9dd5a1995fe0d978
 DIST Img-1.4.16-Source.tar.gz 12129708 BLAKE2B 
5da76a42a1643d759d765ade01a8a9e9782cba21d30f5ec95693364d80aca32fa54f610081833d44bf5723e6901d7577e93bd4d4285880e855e835ae6a901f4b
 SHA512 
622549749d41c7c026053cf82b4c434602ff541b9ee7f6f15c2450fcf3cfb34eb8277432267c78adc3dcc60e53fa2d84b7cf98c5fd5a6c3cfbcf0f60746cd227
 DIST tkimg-1.4.14-patchset-1.tar.gz 3256 BLAKE2B 
8f182365b70b4d7a3f4d9002618285b11293644755304600d302fbb8cf8945cd4bd4eb45e66ed0aec93d19e42556ef294508587f7d4e66821ad960ea5c26c7b6
 SHA512 
8c93e2b669b56ce5621a4d6d96e7412f623bd42dd777a99ec74741621a5be84f24f47149efae58baa874f49088b053b8466d16dffd79edf9594195ff41c38c0e

diff --git a/dev-tcltk/tkimg/files/tkimg-1.4.14-gcc11.patch 
b/dev-tcltk/tkimg/files/tkimg-1.4.14-gcc11.patch
deleted file mode 100644
index 9b889315efb3..
--- a/dev-tcltk/tkimg/files/tkimg-1.4.14-gcc11.patch
+++ /dev/null
@@ -1,74 +0,0 @@
 a/libtiff/tifftclDecls.h   2023-03-14 18:53:43.978820056 +0100
-+++ b/libtiff/tifftclDecls.h   2023-03-14 18:54:32.583047764 +0100
-@@ -169,10 +169,10 @@
- TIFFTCLAPI intTIFFReadRGBATile(TIFF *tiffptr, uint32_t a,
-   uint32_t b, uint32_t *c);
- /* 57 */
--TIFFTCLAPI intTIFFRGBAImageOK(TIFF *tiffptr, char *a);
-+TIFFTCLAPI intTIFFRGBAImageOK(TIFF *tiffptr, char a[1024]);
- /* 58 */
- TIFFTCLAPI intTIFFRGBAImageBegin(TIFFRGBAImage *a, TIFF 
*tiffptr,
--  int b, char *c);
-+  int b, char c[1024]);
- /* 59 */
- TIFFTCLAPI intTIFFRGBAImageGet(TIFFRGBAImage *d, uint32_t *c,
-   uint32_t b, uint32_t a);
 a/tiff/tiffZip.c   2023-03-14 19:04:42.869354563 +0100
-+++ b/tiff/tiffZip.c   2023-03-14 19:05:14.768849607 +0100
-@@ -22,6 +22,7 @@
-  * OF THIS SOFTWARE.
-  */
- 
-+#include 
- #include "tiffInt.h"
- 
- /*
-@@ -233,7 +234,7 @@
-   we need to simplify this code to reflect a ZLib that is likely 
updated
-   to deal with 8byte memory sizes, though this code will respond
-   appropriately even before we simplify it */
--  sp->stream.avail_out = (uint64)tif->tif_rawdatasize <= 0xU ? 
(uInt)tif->tif_rawdatasize : 0xU;
-+  sp->stream.avail_out = (uint64_t)tif->tif_rawdatasize <= 0xU ? 
(uInt)tif->tif_rawdatasize : 0xU;
-   return (deflateReset(>stream) == Z_OK);
- }
- 
 a/tiff/tiffPixar.c 2023-03-14 20:52:33.865532115 +0100
-+++ b/tiff/tiffPixar.c 2023-03-14 20:54:14.606973646 +0100
-@@ -592,8 +592,8 @@
- #define DecoderState(tif) ((PixarLogState*) (tif)->tif_data)
- #define EncoderState(tif) ((PixarLogState*) (tif)->tif_data)
- 
--static int PixarLogEncode(TIFF* tif, uint8_t bp, tmsize_t cc, uint16_t s);
--static int PixarLogDecode(TIFF* tif, uint8_t op, tmsize_t occ, uint16_t s);
-+static int PixarLogEncode(TIFF* tif, uint8_t *bp, tmsize_t cc, uint16_t s);
-+static int PixarLogDecode(TIFF* tif, uint8_t *op, tmsize_t occ, uint16_t s);
- 
- #define PIXARLOGDATAFMT_UNKNOWN   -1
- 
-@@ -747,7 +747,7 @@
- }
- 
- static int
--PixarLogDecode(TIFF* tif, uint8_t op, tmsize_t occ, uint16_t s)
-+PixarLogDecode(TIFF* tif, uint8_t *op, tmsize_t occ, uint16_t s)
- {
-   static const char module[] = "PixarLogDecode";
-   TIFFDirectory *td = >tif_dir;
-@@ -,7 +,7 @@
-  * Encode a chunk of pixels.
-  */
- static int
--PixarLogEncode(TIFF* tif, uint8_t bp, tmsize_t cc, uint16_t s)
-+PixarLogEncode(TIFF* tif, uint8_t *bp, 

[gentoo-commits] repo/proj/guru:dev commit in: app-text/code-minimap/

2024-03-05 Thread Jonas Frei
commit: 1b1b232aec65df85100f4b85285d35b0ba4b4904
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:16:42 2024 +
Commit: Jonas Frei  pm  me>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b1b232a

app-text/code-minimap: add 0.6.7

Signed-off-by: Jonas Frei  pm.me>

 app-text/code-minimap/Manifest  |   1 +
 app-text/code-minimap/code-minimap-0.6.7.ebuild | 100 
 2 files changed, 101 insertions(+)

diff --git a/app-text/code-minimap/Manifest b/app-text/code-minimap/Manifest
index c5bb53324f..30c111eadd 100644
--- a/app-text/code-minimap/Manifest
+++ b/app-text/code-minimap/Manifest
@@ -22,6 +22,7 @@ DIST clap_derive-4.5.0.crate 29042 BLAKE2B 
80a7646b2e30432008d52e27494e2563637e4
 DIST clap_lex-0.7.0.crate 11915 BLAKE2B 
03287f02067f6cb33bb3889e8032b0848e9a9cc17446eb0e2767768cf6ea8c579a7455d33c8af735fb8d0c16095b19f991a5e2528dee3a7628d68c16f9307fa4
 SHA512 
638feb2e4571677dbe15ef0423866d2f0df309723e5ad65ddeaff7fd5e2e83adcb973a32d52a5f3924ea88fcff865e956b7d30dcd569df0412ef47848af14036
 DIST code-minimap-0.6.4.tar.gz 20042 BLAKE2B 
f06faef94fdbf88769d286aac02cdc56086fe6f471d50ed537056fcf4be40fe9e12dc7f6660676ed014b092ba6565b1420bbd211187b7ef07108b3080f3c1a37
 SHA512 
9e992abb0aa7e6b1c1e17e82d1d1583560df06324f2af7f07d0afe2e70ff196c24d2a176042fb353a9ef6dd189a4bbc8e1f1c524d2821fbc3786fc225363c5f5
 DIST code-minimap-0.6.6.tar.gz 22685 BLAKE2B 
60efcbf1c2d4660ee8f362a27c7a0c7e5f787bc5fd08230b4605aeab009739c3cdc653c7f4cd3edaf97f3006bbbc6471e6f2760132000b14e389ff4c966edd2c
 SHA512 
ab6387a3ec40757d390c2f64ec05d954aacf484d363fe9725a8aa1486393465d6da50b5507fe32686768cd72db246ce852dea4ed8cdc746bf16137a1d76d0c9e
+DIST code-minimap-0.6.7.tar.gz 22760 BLAKE2B 
56af8590b819f3442609b21458274180c8bcb41de23712bb028dab4c8bb5edbda48034b39c80a0d785832fba8a5ac4f3a26bc67daedc0054c1d09fd26de46d03
 SHA512 
f8dae908edeaea377a9852cda7068e82a1681bc8a077eb935bb86e5df27b96246b923ad821d45c1954302b9c9fba3ea65b263f3e5208239639e6908ed39b458e
 DIST colorchoice-1.0.0.crate 6857 BLAKE2B 
a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f
 SHA512 
53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551
 DIST either-1.10.0.crate 18334 BLAKE2B 
ac5d81e0822132846e29f8959671b14ac6047330d54020ea7d4ad790ef985ecb4ddcb96ec7e327b1a66b9c89d37b112dae33c9ac35232c136f60ad9baab7d5a2
 SHA512 
2de38a37b7f3e61effa89648acadbf220eacfda1ca7c82fb77484e45577769b724f7dbaa297e73e3d355d6b1bd5109373c3e96e4c1a13a918176162b33ea2432
 DIST either-1.6.1.crate 13641 BLAKE2B 
e5f40c40a5edb6dcb07a10bf79183cbe42438f1f70f3932dce72f6f6e91f75f24d17d82bc447507def4dad4345ffc9dd9162dde778afb253bdb1218e91887949
 SHA512 
4bfe56920e30cbc8eb4f90162db618f7dca653b42db35ab6a7045d3fd9a24ceb1778b1f79613850bdb1a87ad3794fa0d73015e46c48d513f368d8c3776fc9ddf

diff --git a/app-text/code-minimap/code-minimap-0.6.7.ebuild 
b/app-text/code-minimap/code-minimap-0.6.7.ebuild
new file mode 100644
index 00..b51fda6350
--- /dev/null
+++ b/app-text/code-minimap/code-minimap-0.6.7.ebuild
@@ -0,0 +1,100 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Autogenerated by pycargoebuild 0.13.2
+
+EAPI=8
+
+CRATES="
+   aho-corasick@1.1.2
+   anstream@0.6.12
+   anstyle-parse@0.2.3
+   anstyle-query@1.0.2
+   anstyle-wincon@3.0.2
+   anstyle@1.0.6
+   anyhow@1.0.80
+   autocfg@1.1.0
+   bitflags@2.4.2
+   cfg-if@1.0.0
+   clap@4.5.1
+   clap_builder@4.5.1
+   clap_complete@4.5.1
+   clap_derive@4.5.0
+   clap_lex@0.7.0
+   colorchoice@1.0.0
+   either@1.10.0
+   errno@0.3.8
+   futures-channel@0.3.30
+   futures-core@0.3.30
+   futures-executor@0.3.30
+   futures-io@0.3.30
+   futures-macro@0.3.30
+   futures-sink@0.3.30
+   futures-task@0.3.30
+   futures-timer@3.0.2
+   futures-util@0.3.30
+   futures@0.3.30
+   glob@0.3.1
+   heck@0.4.1
+   itertools@0.12.1
+   libc@0.2.153
+   linux-raw-sys@0.4.13
+   memchr@2.7.1
+   pin-project-lite@0.2.13
+   pin-utils@0.1.0
+   proc-macro2@1.0.78
+   quote@1.0.35
+   regex-automata@0.4.5
+   regex-syntax@0.8.2
+   regex@1.10.3
+   relative-path@1.9.2
+   rstest@0.18.2
+   rstest_macros@0.18.2
+   rustc_version@0.4.0
+   rustix@0.38.31
+   rustversion@1.0.14
+   semver@1.0.22
+   slab@0.4.9
+   strsim@0.11.0
+   strum@0.26.1
+   strum_macros@0.26.1
+   syn@2.0.50
+   terminal_size@0.3.0
+   unicode-ident@1.0.12
+   utf8parse@0.2.1
+   windows-sys@0.48.0
+   windows-sys@0.52.0
+   windows-targets@0.48.5
+   windows-targets@0.52.0
+   windows_aarch64_gnullvm@0.48.5
+   windows_aarch64_gnullvm@0.52.0

[gentoo-commits] repo/proj/guru:dev commit in: x11-terms/rio-terminfo/

2024-03-05 Thread Jonas Frei
commit: 7ecefe15387544d25157e750b07ad2b49e6d606c
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:29:34 2024 +
Commit: Jonas Frei  pm  me>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ecefe15

x11-terms/rio-terminfo: add 0.0.35

Signed-off-by: Jonas Frei  pm.me>

 x11-terms/rio-terminfo/Manifest   |  1 +
 x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/x11-terms/rio-terminfo/Manifest b/x11-terms/rio-terminfo/Manifest
index 262c9fdcf0..f9a56fe54c 100644
--- a/x11-terms/rio-terminfo/Manifest
+++ b/x11-terms/rio-terminfo/Manifest
@@ -1,2 +1,3 @@
 DIST rio-0.0.28.tar.gz 34177343 BLAKE2B 
38a2077a85d3008a361a91d76581128e73bc6a49b7a656d64f44c13512772deec6d0190880f323e41e12c6f6552549675a3f06ae7b20285f0a3bdb0bb5c01292
 SHA512 
6dd1992ab761d6c5b7ad78c483fe0096a4d1c93b241480c14cf10799cc831029023989f676be835d744f7a170733f3503f37f90ed92e3790dfb8fa334c07e68b
 DIST rio-0.0.34.tar.gz 35557809 BLAKE2B 
e757ee50445664044c44e49e93588b096876c8e4a6c4fd7a0b0229704324d7c6f8da64936bf77eeba271b28cf34760ff92f452c87f3452e30e4871fa4d21e180
 SHA512 
9a0a01e02a432e030b9dc01fcf62606016f57724b8bdf11b4f347a077ff373bc7e03843294e883ff4add24a6d69e9baf628ea0b05252a7028dc18e315f44a4de
+DIST rio-0.0.35.tar.gz 35557061 BLAKE2B 
426e253957ff7d0635d3c050c4204f9f22884da1e539b4b6198038bba12acd74c60ad265c069fa678b4dc7c00a617980d5223f517c92e338590eecad76b96d47
 SHA512 
3aa2754a210b1a9a260a5073f777dd5b41736005b28706fbeb9aa7105b03c480cc9a89259c9d8a8083a289bcb65a27567ef001181b410244a85ddac57f09c2a1

diff --git a/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild 
b/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild
new file mode 100644
index 00..ad2dacb02c
--- /dev/null
+++ b/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="rio"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Terminfo for Rio, a hardware-accelerated GPU terminal emulator 
powered by WebGPU"
+HOMEPAGE="https://raphamorim.io/rio/;
+SRC_URI="
+   https://github.com/raphamorim/${MY_PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${MY_P}.tar.gz
+"
+
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test" # intended to be ran on the full rio package
+
+BDEPEND="sys-libs/ncurses"
+
+src_compile() { :; }
+
+src_install() {
+   dodir "/usr/share/terminfo"
+   tic -xo "${ED}/usr/share/terminfo" "misc/rio.terminfo" || die
+}



[gentoo-commits] repo/proj/guru:dev commit in: x11-terms/rio/

2024-03-05 Thread Jonas Frei
commit: 03dddc861796e7eb8ae52fb8034897d2e0b0b8cc
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:21:26 2024 +
Commit: Jonas Frei  pm  me>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03dddc86

x11-terms/rio: add 0.0.35

Used 'sed' to remove strip option from Cargo.toml

Signed-off-by: Jonas Frei  pm.me>

 x11-terms/rio/Manifest  |   8 +
 x11-terms/rio/rio-0.0.35.ebuild | 462 
 2 files changed, 470 insertions(+)

diff --git a/x11-terms/rio/Manifest b/x11-terms/rio/Manifest
index 5f585e23e2..22cb0302c3 100644
--- a/x11-terms/rio/Manifest
+++ b/x11-terms/rio/Manifest
@@ -242,6 +242,7 @@ DIST proc-macro2-1.0.69.crate 44271 BLAKE2B 
9d1531a0b123e6238363d574bee03ad05045
 DIST profiling-1.0.11.crate 31186 BLAKE2B 
2987c817dfae8f3e2808b7f6b0380cb668e9fa74bc8f2e924431a3273a8583f16d979105b67d55783c8836534b3d2742987e4372dfe69339a7a08c93a63a6781
 SHA512 
db82421d99a294d0169f326916a47e23870dbee60e413ef29c3ee941c3b6953b7ded15fc2aecb81f6ec31ec7eea0941c2cf61df74d46827845a745056807bcb7
 DIST qoi-0.4.1.crate 71135 BLAKE2B 
8b4e2ebfdd6df425efb1326912e8db02258e570320fdeef465aa8b03f3248cd811bedaa17c15902f851083cc1db06a2b500aeddf734345eb25af0d835300b2f0
 SHA512 
884cde33bfb2d02716daa5f309890093bdb7b3f53eb06aca0b6eff0b7a66fd67cb8b9acd510d19e3ae7718930add971e871532a1605e4989639bf72f59329377
 DIST quick-xml-0.30.0.crate 161923 BLAKE2B 
5b9bfd3248f038aa2c085ce045e9f0cbbec757d7b4457db66a5a611d52d0e42082ae68953f08706d1e102164ceac80c7caeb40f0f9f494c8daf470c35471644c
 SHA512 
e731f9c6795da7ad705c96544b39560dc27e2ea3c468c3dffe9589bb314074e96acbc0ab454f94556e0d9569c55d6cd8d1c7be2c823a77bbb3165ec8393d9aee
+DIST quick-xml-0.31.0.crate 172236 BLAKE2B 
b83c7f485a30576027a4ae77aa23cd6284942d786f0f0a14faafdfecff646371ba15133b3ba90f820183c8537c8ac47ad3e1e7deaad65e56761bc662be406026
 SHA512 
9b1f4f9c32694ccb244938a9a4e9373c3902314afb6af5d2f6b1be55e5ec63fee5cf1085f8f32161570cc10fdd96f3375c7564b1d884bb152542b86593f175de
 DIST quote-1.0.33.crate 28090 BLAKE2B 
77c4b166f1200e1ee2ab94a5014acd334c1fe4b7d72851d73768d491c56c6779a0882a304c1f30c88732a6168351f0f786b10516ae537cff993892a749175848
 SHA512 
c1e76c3c017e8554eebe309f8167fd56fce931981c06798aa85a0cc6d64a9cba6ab103f5a1324e69c6f9ca5dc47a8e31ff2e847850542748697afcd265b5939c
 DIST rand-0.4.6.crate 76401 BLAKE2B 
5593ad2d7fb8214d917e2eb734f5eee548f48fd699c9fccc0de9c0c6ee49803a426492a25fda2ffcf844169e2bca00709d4dcd9ceede72a4667ec431f5502fda
 SHA512 
a91c6da7188b426bf9cb832892ee2af87c4cd65fad505c34e9c63343da71efe8c0c67b75c405dca5345317b7940d1d0fc0b20be85afd6b3089203e5698d86f0a
 DIST rand-0.8.5.crate 87113 BLAKE2B 
516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c
 SHA512 
8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2
@@ -266,6 +267,7 @@ DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B 
ab7ef94e0230ddc9b363f038254a180881b
 DIST renderdoc-sys-1.0.0.crate 10336 BLAKE2B 
9f9b0221f11376093771aa9d91b2122a60fab45ae3363e38a778b2cd647729f6ac8df4e79049079ad1e84b4d60b362b5658f080a91abd5939df11c482c060e8c
 SHA512 
a9e36c82853edf10e143fde02359aceac879ca42d23c95a3a7c66e99ef027a6449937136c9d1c90efc1cc542aa532513690fa235e7cfbcc59ab951c535a26890
 DIST rio-0.0.28.tar.gz 34177343 BLAKE2B 
38a2077a85d3008a361a91d76581128e73bc6a49b7a656d64f44c13512772deec6d0190880f323e41e12c6f6552549675a3f06ae7b20285f0a3bdb0bb5c01292
 SHA512 
6dd1992ab761d6c5b7ad78c483fe0096a4d1c93b241480c14cf10799cc831029023989f676be835d744f7a170733f3503f37f90ed92e3790dfb8fa334c07e68b
 DIST rio-0.0.34.tar.gz 35557809 BLAKE2B 
e757ee50445664044c44e49e93588b096876c8e4a6c4fd7a0b0229704324d7c6f8da64936bf77eeba271b28cf34760ff92f452c87f3452e30e4871fa4d21e180
 SHA512 
9a0a01e02a432e030b9dc01fcf62606016f57724b8bdf11b4f347a077ff373bc7e03843294e883ff4add24a6d69e9baf628ea0b05252a7028dc18e315f44a4de
+DIST rio-0.0.35.tar.gz 35557061 BLAKE2B 
426e253957ff7d0635d3c050c4204f9f22884da1e539b4b6198038bba12acd74c60ad265c069fa678b4dc7c00a617980d5223f517c92e338590eecad76b96d47
 SHA512 
3aa2754a210b1a9a260a5073f777dd5b41736005b28706fbeb9aa7105b03c480cc9a89259c9d8a8083a289bcb65a27567ef001181b410244a85ddac57f09c2a1
 DIST roxmltree-0.18.1.crate 43040 BLAKE2B 
3b27385805466363d082dba273f35a975d1b2f02842f150a91cb94f86b478bb220a1824150d3650677af069e225f0498f90733e9c2462b7614fde382c78366fa
 SHA512 
36409eb077bb3b26663096ad6457338f124eaad7bfb11de08d57bf44eef0653736d234a9bf8ed6d49ea357741d775e0f01bea931b298aa4445a086d58bcea937
 DIST rustc-demangle-0.1.23.crate 28970 BLAKE2B 
611d2e41a8a9799db2f8bcb8fc8fefcda361d055a417d2bfaaf2dedcce9d6f388c69d905a28c65e6691b4d408d7922ccdc97ce524c87c3cccb8467e314bc87b9
 SHA512 
8cd29800254b1305ad50f1fc008838c52d9659f97a51a68e9f2bd6d0a60126f3ebdd1c79760f96445b3bf998d0773526ddf663b174acca81babdc0b423247247
 DIST rustc-hash-1.1.0.crate 9331 BLAKE2B 

[gentoo-commits] repo/proj/guru:dev commit in: app-text/code-minimap/

2024-03-05 Thread Jonas Frei
commit: 4139bd9eedea34dc11fa76e455ae9b8265bd754d
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:17:12 2024 +
Commit: Jonas Frei  pm  me>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4139bd9e

app-text/code-minimap: drop 0.6.6

Signed-off-by: Jonas Frei  pm.me>

 app-text/code-minimap/Manifest  |   1 -
 app-text/code-minimap/code-minimap-0.6.6.ebuild | 100 
 2 files changed, 101 deletions(-)

diff --git a/app-text/code-minimap/Manifest b/app-text/code-minimap/Manifest
index 30c111eadd..f83d71ff4c 100644
--- a/app-text/code-minimap/Manifest
+++ b/app-text/code-minimap/Manifest
@@ -21,7 +21,6 @@ DIST clap_derive-3.0.0.crate 24684 BLAKE2B 
dc56ba1b2d5dff063d19a1ed5d9188cd3cbb3
 DIST clap_derive-4.5.0.crate 29042 BLAKE2B 
80a7646b2e30432008d52e27494e2563637e408a90557e5b0009a9db6a39abfdc79c04139f99caedd433a94b45f7d95fa11b49cfd33d203fbc4bc911fad4f9d1
 SHA512 
0a9d79f957067b929f8e1340b0e0623f78808c5d287cae252e6508fe8e07c4f11bfa39b1d3b60bb6a531d888d809c43ad3f6a491a7dd1e3d3ce89af7e1b670f6
 DIST clap_lex-0.7.0.crate 11915 BLAKE2B 
03287f02067f6cb33bb3889e8032b0848e9a9cc17446eb0e2767768cf6ea8c579a7455d33c8af735fb8d0c16095b19f991a5e2528dee3a7628d68c16f9307fa4
 SHA512 
638feb2e4571677dbe15ef0423866d2f0df309723e5ad65ddeaff7fd5e2e83adcb973a32d52a5f3924ea88fcff865e956b7d30dcd569df0412ef47848af14036
 DIST code-minimap-0.6.4.tar.gz 20042 BLAKE2B 
f06faef94fdbf88769d286aac02cdc56086fe6f471d50ed537056fcf4be40fe9e12dc7f6660676ed014b092ba6565b1420bbd211187b7ef07108b3080f3c1a37
 SHA512 
9e992abb0aa7e6b1c1e17e82d1d1583560df06324f2af7f07d0afe2e70ff196c24d2a176042fb353a9ef6dd189a4bbc8e1f1c524d2821fbc3786fc225363c5f5
-DIST code-minimap-0.6.6.tar.gz 22685 BLAKE2B 
60efcbf1c2d4660ee8f362a27c7a0c7e5f787bc5fd08230b4605aeab009739c3cdc653c7f4cd3edaf97f3006bbbc6471e6f2760132000b14e389ff4c966edd2c
 SHA512 
ab6387a3ec40757d390c2f64ec05d954aacf484d363fe9725a8aa1486393465d6da50b5507fe32686768cd72db246ce852dea4ed8cdc746bf16137a1d76d0c9e
 DIST code-minimap-0.6.7.tar.gz 22760 BLAKE2B 
56af8590b819f3442609b21458274180c8bcb41de23712bb028dab4c8bb5edbda48034b39c80a0d785832fba8a5ac4f3a26bc67daedc0054c1d09fd26de46d03
 SHA512 
f8dae908edeaea377a9852cda7068e82a1681bc8a077eb935bb86e5df27b96246b923ad821d45c1954302b9c9fba3ea65b263f3e5208239639e6908ed39b458e
 DIST colorchoice-1.0.0.crate 6857 BLAKE2B 
a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f
 SHA512 
53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551
 DIST either-1.10.0.crate 18334 BLAKE2B 
ac5d81e0822132846e29f8959671b14ac6047330d54020ea7d4ad790ef985ecb4ddcb96ec7e327b1a66b9c89d37b112dae33c9ac35232c136f60ad9baab7d5a2
 SHA512 
2de38a37b7f3e61effa89648acadbf220eacfda1ca7c82fb77484e45577769b724f7dbaa297e73e3d355d6b1bd5109373c3e96e4c1a13a918176162b33ea2432

diff --git a/app-text/code-minimap/code-minimap-0.6.6.ebuild 
b/app-text/code-minimap/code-minimap-0.6.6.ebuild
deleted file mode 100644
index b51fda6350..00
--- a/app-text/code-minimap/code-minimap-0.6.6.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Autogenerated by pycargoebuild 0.13.2
-
-EAPI=8
-
-CRATES="
-   aho-corasick@1.1.2
-   anstream@0.6.12
-   anstyle-parse@0.2.3
-   anstyle-query@1.0.2
-   anstyle-wincon@3.0.2
-   anstyle@1.0.6
-   anyhow@1.0.80
-   autocfg@1.1.0
-   bitflags@2.4.2
-   cfg-if@1.0.0
-   clap@4.5.1
-   clap_builder@4.5.1
-   clap_complete@4.5.1
-   clap_derive@4.5.0
-   clap_lex@0.7.0
-   colorchoice@1.0.0
-   either@1.10.0
-   errno@0.3.8
-   futures-channel@0.3.30
-   futures-core@0.3.30
-   futures-executor@0.3.30
-   futures-io@0.3.30
-   futures-macro@0.3.30
-   futures-sink@0.3.30
-   futures-task@0.3.30
-   futures-timer@3.0.2
-   futures-util@0.3.30
-   futures@0.3.30
-   glob@0.3.1
-   heck@0.4.1
-   itertools@0.12.1
-   libc@0.2.153
-   linux-raw-sys@0.4.13
-   memchr@2.7.1
-   pin-project-lite@0.2.13
-   pin-utils@0.1.0
-   proc-macro2@1.0.78
-   quote@1.0.35
-   regex-automata@0.4.5
-   regex-syntax@0.8.2
-   regex@1.10.3
-   relative-path@1.9.2
-   rstest@0.18.2
-   rstest_macros@0.18.2
-   rustc_version@0.4.0
-   rustix@0.38.31
-   rustversion@1.0.14
-   semver@1.0.22
-   slab@0.4.9
-   strsim@0.11.0
-   strum@0.26.1
-   strum_macros@0.26.1
-   syn@2.0.50
-   terminal_size@0.3.0
-   unicode-ident@1.0.12
-   utf8parse@0.2.1
-   windows-sys@0.48.0
-   windows-sys@0.52.0
-   windows-targets@0.48.5
-   windows-targets@0.52.0
-   windows_aarch64_gnullvm@0.48.5
-   

[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/, net-dialup/ppp/files/

2024-03-05 Thread Mike Gilbert
commit: c77e202de12022ab787403085c70c7b4c6801591
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Mar  5 19:49:19 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Mar  5 19:49:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c77e202d

net-dialup/ppp: fix build with lld

Closes: https://bugs.gentoo.org/905442
Signed-off-by: Mike Gilbert  gentoo.org>

 .../ppp/files/ppp-2.5.0-openssl-pkgconfig.patch| 79 +
 net-dialup/ppp/files/ppp-2.5.0-pam-pkgconfig.patch | 81 ++
 net-dialup/ppp/ppp-2.5.0-r6.ebuild |  7 +-
 3 files changed, 165 insertions(+), 2 deletions(-)

diff --git a/net-dialup/ppp/files/ppp-2.5.0-openssl-pkgconfig.patch 
b/net-dialup/ppp/files/ppp-2.5.0-openssl-pkgconfig.patch
new file mode 100644
index ..893b623a4ea5
--- /dev/null
+++ b/net-dialup/ppp/files/ppp-2.5.0-openssl-pkgconfig.patch
@@ -0,0 +1,79 @@
+https://bugs.gentoo.org/905442
+https://github.com/ppp-project/ppp/pull/438
+
+From 9b4bdca70081abbad26277b009ef9c4ab7e276d0 Mon Sep 17 00:00:00 2001
+From: Brahmajit Das 
+Date: Thu, 2 Nov 2023 11:26:18 +0530
+Subject: [PATCH] Fix linking error with lld linkers (#438)
+
+When using lld linker, build fails with
+
+ld.lld: error: /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../lib64/Scrt1.o 
is incompatible with elf32-i386
+ld.lld: error: /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../lib64/crti.o is 
incompatible with elf32-i386
+ld.lld: error: /usr/lib/llvm/16/bin/../../../../lib/clang/16/lib/linux
+
+The fix is to check pkg-config first, and not force manual -L /usr/lib.
+If pkg-config succeeded, then we don't bother with -L /usr/lib
+
+Our guess is this what the actual intention was based upon the coments
+
+if pkg-config is installed and openssl has installed a .pc file,
+then use that information and don't search ssldirs
+
+First found on gentoo linux with llvm profile, please check out Bug:
+section of the commit for more info and a complete build log.
+
+Bug: https://bugs.gentoo.org/905442
+
+Signed-off-by: Brahmajit Das 
+Co-authored-by: Sam James 
+---
+ m4/ax_check_openssl.m4 | 28 ++--
+ 1 file changed, 14 insertions(+), 14 deletions(-)
+
+diff --git a/m4/ax_check_openssl.m4 b/m4/ax_check_openssl.m4
+index 8ae39cae6..39154c856 100644
+--- a/m4/ax_check_openssl.m4
 b/m4/ax_check_openssl.m4
+@@ -55,6 +55,20 @@ AC_DEFUN([AX_CHECK_OPENSSL], [
+ ])
+ 
+ AS_IF([test "${with_openssl}" != "no"], [
++# if pkg-config is installed and openssl has installed a .pc file,
++# then use that information and don't search ssldirs
++AC_PATH_PROG([PKG_CONFIG], [pkg-config])
++if test x"$PKG_CONFIG" != x""; then
++OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null`
++if test $? = 0; then
++OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null`
++OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 
2>/dev/null`
++found=true
++fi
++fi
++])
++
++AS_IF([test "${with_openssl}" != "no" && test ! ${found}], [
+ OPENSSL_INCLUDES=
+ for ssldir in $ssldirs; do
+ AC_MSG_CHECKING([for openssl/ssl.h in $ssldir])
+@@ -69,20 +83,6 @@ AC_DEFUN([AX_CHECK_OPENSSL], [
+ AC_MSG_RESULT([no])
+ ])
+ done])
+- 
+-AS_IF([test "${with_openssl}" != "no" && test ! ${found}], [ 
+-# if pkg-config is installed and openssl has installed a .pc file,
+-# then use that information and don't search ssldirs
+-AC_PATH_PROG([PKG_CONFIG], [pkg-config])
+-if test x"$PKG_CONFIG" != x""; then
+-OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null`
+-if test $? = 0; then
+-OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null`
+-OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 
2>/dev/null`
+-found=true
+-fi
+-fi
+-])
+ 
+ AS_IF([test "${with_openssl}" != "no" && test ${found}], [
+ 

diff --git a/net-dialup/ppp/files/ppp-2.5.0-pam-pkgconfig.patch 
b/net-dialup/ppp/files/ppp-2.5.0-pam-pkgconfig.patch
new file mode 100644
index ..40488fee96b7
--- /dev/null
+++ b/net-dialup/ppp/files/ppp-2.5.0-pam-pkgconfig.patch
@@ -0,0 +1,81 @@
+https://github.com/ppp-project/ppp/pull/479
+
+From c73498fad415d99aa566b11256938272e62b22dd Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Tue, 5 Mar 2024 14:41:10 -0500
+Subject: [PATCH] Use pkg-config to detect PAM when possible
+
+Signed-off-by: Mike Gilbert 
+---
+ m4/ax_check_pam.m4 | 50 --
+ 1 file changed, 22 insertions(+), 28 deletions(-)
+
+diff --git a/m4/ax_check_pam.m4 b/m4/ax_check_pam.m4
+index b17a7573c..7ebd79b61 100644
+--- a/m4/ax_check_pam.m4
 b/m4/ax_check_pam.m4
+@@ -26,34 +26,28 @@
+ 

[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Mike Gilbert
commit: 95ec382366f185207e825453dd032e1f1f3e084d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Mar  5 19:57:50 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Mar  5 19:57:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ec3823

net-dialup/ppp: destabilize 2.5.0-r3 for ~sparc

Bug: https://bugs.gentoo.org/918992
Signed-off-by: Mike Gilbert  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r3.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r3.ebuild
index f1649c66765c..eb638501c713 100644
--- a/net-dialup/ppp/ppp-2.5.0-r3.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ SRC_URI="https://download.samba.org/pub/ppp/${P}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/

2024-03-05 Thread Michał Górny
commit: 2eadd04308068c45aed687eb7eaa5f52c2e8dd36
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:06:55 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:06:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eadd043

dev-python/google-api-python-client: Bump to 2.121.0

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

 dev-python/google-api-python-client/Manifest   |  1 +
 .../google-api-python-client-2.121.0.ebuild| 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 7a5a113636e0..6e2ac7a68340 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,3 +1,4 @@
 DIST google-api-python-client-2.118.0.tar.gz 11597120 BLAKE2B 
4736ad9c8d23ef0706a873e8dc17f50a229294fe202b3c46109c39a157cb2978fb23436aeee5159bd26f0da7b0edcfc321890e8a2a9fa141fcb93647fb9a5753
 SHA512 
56703f7f1a54a5180c76492f1281da28acc261263e48d4ac3f85c75007f6aa5f6fddffaf79eb421bfd8e4ac47332322dcba21db9c77dcfffbb8c099d45c010db
 DIST google-api-python-client-2.119.0.tar.gz 11704086 BLAKE2B 
ff7d2eb62559a042a272a4493ac9eb4e25f0a91dd085c172a6356e952e346d2d79d1818b57bc258725065bd19e72d9e787b021e17672361e8ff02b08b1be65cb
 SHA512 
2acd84b059f3500e45398d2de4d6cab0941c40d7c501414c358992d6f0b305349213a2f96372a4d8b091202c87692e337036c213425b0813cc9203c5d323d966
 DIST google-api-python-client-2.120.0.tar.gz 11753415 BLAKE2B 
27466bed3bfc473dc1ce8ab6d7e6834b5b5010d39afc20ba8204b379621146e9a1523e18a7d1073cdafd1e7f1840832e371cfedf43689fb825917a73dd64be6c
 SHA512 
303733940a2415e6e18ce4ba2c423ae0e85ce3746f4282698178cf7c2e70244b159fa4a22af6ce39cdeafb8d91db237cc40a1abfef33e1c8aa3add4f031aac23
+DIST google-api-python-client-2.121.0.tar.gz 11796461 BLAKE2B 
178665ad75d5e8fa2437c909b47cf93c566e4f47cfc2e6a0fd74d9f7de29dc4076bf86299c42341e3c32b3ab20723a89fc062629964dfc2cc02a2eeaa0a1fcb0
 SHA512 
2bb2d02b93656d349ed65ccaa85dc435aae0ebb7d45edf2dd9b6aecb56cd8866421f4359612830e5d32d0609df12252e550ed514bf3c6b63920a67ffe74f6299

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.121.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.121.0.ebuild
new file mode 100644
index ..c5a2303ef5ac
--- /dev/null
+++ 
b/dev-python/google-api-python-client/google-api-python-client-2.121.0.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
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Google API Client for Python"
+HOMEPAGE="
+   https://github.com/googleapis/google-api-python-client/
+   https://pypi.org/project/google-api-python-client/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
+   =dev-python/google-api-core-2.3.1[${PYTHON_USEDEP}]
+   >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
+   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
+   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
+   

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

2024-03-05 Thread Michał Górny
commit: 553da23e49f4312aaba94b309d1819b4b943bcf7
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:08:47 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:08:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=553da23e

dev-python/jupyter-lsp: Bump to 2.2.4

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

 dev-python/jupyter-lsp/Manifest |  1 +
 dev-python/jupyter-lsp/jupyter-lsp-2.2.4.ebuild | 85 +
 2 files changed, 86 insertions(+)

diff --git a/dev-python/jupyter-lsp/Manifest b/dev-python/jupyter-lsp/Manifest
index 5b88f172906d..73eea87d9dd0 100644
--- a/dev-python/jupyter-lsp/Manifest
+++ b/dev-python/jupyter-lsp/Manifest
@@ -1,2 +1,3 @@
 DIST jupyter-lsp-2.2.1.tar.gz 45839 BLAKE2B 
5f7af7a335f97f8f35ebcd2cabb9b6377ec3bbc9b756bcd9c02e3b2ab8798855c2de9df7b9c3f1b832672030de660e1b6a475de70708911c1deca128d1cbfe44
 SHA512 
2f8d5a7a19daedd649810baa43bed5ae994dec7245a793298f5de4c32fd22190ffa3c4a356b3bfda3422fcdce5a34ea081c7f49030db8fcb633f761719ecfe4b
 DIST jupyter-lsp-2.2.3.tar.gz 48675 BLAKE2B 
b7b57e6d5cf2efb1a6c4a2884da721b8230da28f656679bc46502b38f4960663400af0dcacff2e92d211dd8e190ee633dbb63d24e9499b8530ebbc399597abd7
 SHA512 
ecccf5a99ef64e64bcdf999673035c45f5ccf42e9e02c3de9c600c0469f727f3cf0a6c71f53090494523070521df88642260e477588963303af0d9ba0518bb96
+DIST jupyter-lsp-2.2.4.tar.gz 48663 BLAKE2B 
7157d52657b614af1909e681903aa5fabd5b8d4f246f8e87b281615dc9c754c23da928a806980e1f7c8230786870263cb4d9fab32e365dfe660a2e578e40552b
 SHA512 
01d2b18ec3f9575c1d2ab1ea64f94d093fa593374ab8a1343024b78c1baf935a9fd51a4f9a65a1094b6fc59384ca244714e73066d8db13fa00de5c1f625462c6

diff --git a/dev-python/jupyter-lsp/jupyter-lsp-2.2.4.ebuild 
b/dev-python/jupyter-lsp/jupyter-lsp-2.2.4.ebuild
new file mode 100644
index ..e742236af349
--- /dev/null
+++ b/dev-python/jupyter-lsp/jupyter-lsp-2.2.4.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 optfeature pypi
+
+DESCRIPTION="Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab"
+HOMEPAGE="
+   https://github.com/jupyter-lsp/jupyterlab-lsp
+   https://pypi.org/project/jupyter-lsp/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/entrypoints[${PYTHON_USEDEP}]
+   >=dev-python/jupyter-server-1.1.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Do not depend on pytest-cov or flake8
+   sed -i -e '/--cov/d' -e '/--flake8/d' setup.cfg || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # hangs
+   jupyter_lsp/tests/test_auth.py
+   # Not packaged
+   jupyter_lsp/tests/test_detect.py::test_r_package_detection
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[bash-language-server]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[dockerfile-language-server-nodejs]"
+   "jupyter_lsp/tests/test_listener.py::test_listeners[pylsp]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[r-languageserver]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[sql-language-server]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[typescript-language-server]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[unified-language-server]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[vscode-css-languageserver-bin]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[vscode-html-languageserver-bin]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[vscode-json-languageserver-bin]"
+   
"jupyter_lsp/tests/test_listener.py::test_listeners[yaml-language-server]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[bash-language-server]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[dockerfile-language-server-nodejs]"
+   "jupyter_lsp/tests/test_session.py::test_start_known[pylsp]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[r-languageserver]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[sql-language-server]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[typescript-language-server]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[unified-language-server]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[vscode-css-languageserver-bin]"
+   
"jupyter_lsp/tests/test_session.py::test_start_known[vscode-html-languageserver-bin]"
+   

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

2024-03-05 Thread Michał Górny
commit: 6cf7b0a1ebdcfb40fc47ab1fe1a8bd6b483e388e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:07:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:07:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf7b0a1

dev-python/libarchive-c: Bump to 5.1

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

 dev-python/libarchive-c/Manifest|  1 +
 dev-python/libarchive-c/libarchive-c-5.1.ebuild | 31 +
 2 files changed, 32 insertions(+)

diff --git a/dev-python/libarchive-c/Manifest b/dev-python/libarchive-c/Manifest
index f7d764a464da..80b123cabd3f 100644
--- a/dev-python/libarchive-c/Manifest
+++ b/dev-python/libarchive-c/Manifest
@@ -1 +1,2 @@
 DIST python-libarchive-c-5.0.gh.tar.gz 48751 BLAKE2B 
2ab737c7493c202ba9a1ad57e1066aad12ea984bfa0e63115f59491ea14b3bd1d46d2bb20f033bf5bae64a6badf73b641183f63cc79c9f0e6141792a35521dc4
 SHA512 
df4758f4b7207fe77ae650aa78c302e9e2a0c7ba81fbeae70af8cb37789a056bc420acd73c1d5baec7b0e93a47fd3e5130db8e43c983f4723366f75a58823f75
+DIST python-libarchive-c-5.1.gh.tar.gz 48816 BLAKE2B 
5b727c88eca866f69eda701ca8898d4bd3b68adefb8234a501cb280fae2be98f1314bb64ff94bcc5e1c0cae9ffc6866ee70aa4fbc4353eac1f16d59f9a789ebc
 SHA512 
a2026aba3ef325f10e981e15e50de0435d7371642b0e6df8cd5ab64e76186b2a72297b32f429547e091fb799c9d0fa41be5a6824408c08f6c71585d59175d7a0

diff --git a/dev-python/libarchive-c/libarchive-c-5.1.ebuild 
b/dev-python/libarchive-c/libarchive-c-5.1.ebuild
new file mode 100644
index ..4a8dcc8fe716
--- /dev/null
+++ b/dev-python/libarchive-c/libarchive-c-5.1.ebuild
@@ -0,0 +1,31 @@
+# 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
+
+MY_P=python-libarchive-c-${PV}
+DESCRIPTION="A Python interface to libarchive"
+HOMEPAGE="
+   https://github.com/Changaco/python-libarchive-c/
+   https://pypi.org/project/libarchive-c/
+"
+SRC_URI="
+   https://github.com/Changaco/python-libarchive-c/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="CC0-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
+
+RDEPEND="
+   app-arch/libarchive
+"
+
+distutils_enable_tests pytest



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

2024-03-05 Thread Michał Górny
commit: 12e99a663ec99dc890e0a5b44f6a565cc8fb8f47
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:05:59 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:05:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e99a66

dev-python/progressbar2: Bump to 4.4.2

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

 dev-python/progressbar2/Manifest  |  1 +
 dev-python/progressbar2/progressbar2-4.4.2.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/progressbar2/Manifest b/dev-python/progressbar2/Manifest
index 1bde591b7515..51f51cdd0714 100644
--- a/dev-python/progressbar2/Manifest
+++ b/dev-python/progressbar2/Manifest
@@ -1,2 +1,3 @@
 DIST progressbar2-4.3.2.tar.gz 92504 BLAKE2B 
d5e0149fc54f3c4397c3de946db1aeef5c41e104ead1b0db1b19f81071a685c87ab3b425ea5eb3098db046db3a2ebfb29bce9a954f653327b5735fbb4f2c1f7f
 SHA512 
d885a8b568149acf7a2cb5e5698f8677ee777c11a907f187c70c4ff4b52c656c40439ac8af00b652e5ddd4325721863c66b9f1a1b9a95d84f5fe081f94e4e0bf
 DIST progressbar2-4.4.1.tar.gz 101229 BLAKE2B 
0817682a33910dd4e1f5c84528298fae3acca49003c9cc3af6034bde8e5a3214e3d87f733ba5a7e04b9648cf87272257a24d2c73c64a7d2dd2992fec5254d0ab
 SHA512 
41748c4d51bbf51dc6c91e4612c22e8350753a9c4c0984a4b6cc170ae367224c413833c7e9853880012f746c8d2bb52c62a812f5d4c0054f081b39573228a29c
+DIST progressbar2-4.4.2.tar.gz 101342 BLAKE2B 
67625a794bd19a4ed78be25789980038c69a6590277f085befeef805397972ff1160543814523c425218e019647f1c1641451198e2dd08a5f8eacd9e507a04af
 SHA512 
705383badb3943d3d339854d02ee4114f0e76261373deb8f9aff00fe6aae7f37bacccbbc673c2cb36114c7f8ebbafa96a06408ce6e90c3d26a2e2c65ece86958

diff --git a/dev-python/progressbar2/progressbar2-4.4.2.ebuild 
b/dev-python/progressbar2/progressbar2-4.4.2.ebuild
new file mode 100644
index ..c22fa61d1930
--- /dev/null
+++ b/dev-python/progressbar2/progressbar2-4.4.2.ebuild
@@ -0,0 +1,44 @@
+# 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="Text progressbar library for python"
+HOMEPAGE="
+   https://progressbar-2.readthedocs.io/
+   https://github.com/WoLpH/python-progressbar/
+   https://pypi.org/project/progressbar2/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/python-utils-3.8.1[${PYTHON_USEDEP}]
+   !dev-python/progressbar
+"
+BDEPEND="
+   test? (
+   >=dev-python/dill-0.3.6[${PYTHON_USEDEP}]
+   >=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e '/cov/d' pytest.ini || die
+   default
+}
+
+python_test() {
+   local -x PYTHONDONTWRITEBYTECODE=1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest tests
+}



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

2024-03-05 Thread Michał Górny
commit: 35448038932af58ee1ab2eb401276fdf01dd5843
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:07:14 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:07:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35448038

dev-python/mkdocs-htmlproofer-plugin: Bump to 1.2.0

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

 dev-python/mkdocs-htmlproofer-plugin/Manifest  |  1 +
 .../mkdocs-htmlproofer-plugin-1.2.0.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/mkdocs-htmlproofer-plugin/Manifest 
b/dev-python/mkdocs-htmlproofer-plugin/Manifest
index 7517216d6da5..29921c9db42e 100644
--- a/dev-python/mkdocs-htmlproofer-plugin/Manifest
+++ b/dev-python/mkdocs-htmlproofer-plugin/Manifest
@@ -1,2 +1,3 @@
 DIST mkdocs-htmlproofer-plugin-1.0.0.gh.tar.gz 14534 BLAKE2B 
361c422e985dd00c12ffa6bcd1ba02df0ef18fb37f7290660963832b38dd0f2c8e79662780224588f626eaa9215afa9852aed59fc6771a3877f779f40493f54d
 SHA512 
083103ca8a1e1f63a22fb877ec3d123549745157f3f8bc3b10364c271b7975c09222b850ddef4bc9a1aa9d168711764f74c91bed50d8a48c4c7415f894df5fb3
 DIST mkdocs-htmlproofer-plugin-1.1.0.gh.tar.gz 15368 BLAKE2B 
19e87fcbe1db4f5cd80ab61957b08ff67d2210fa1ad98ee719a24386bdc6594da8bab20375e66767634a64539d699a7647b8820b12a8f170ece813494d1cde93
 SHA512 
cca7152e4a8ddf4cca28962f5aabf557b00ff36e775a3ab4fa1fd7a687ca736fdf8f5b509f026c802f4665864413772f216ca7724aca7bfac42e19da36dd422b
+DIST mkdocs-htmlproofer-plugin-1.2.0.gh.tar.gz 15454 BLAKE2B 
d123e00d9e76787f73038780297df2cdf02a7604644e7d19e21505f649c2cd95c8d00d373c48ab663432b3a13287ade994980d017c409af9217fed1d23df7d01
 SHA512 
ebe099343e7ffcaecfce272552173032a3355305e3d1273092cabbcc5c24797c2de386cb441e5a0ea91fcd98965a32a1b1cf44609acd356e695c039d9444831f

diff --git 
a/dev-python/mkdocs-htmlproofer-plugin/mkdocs-htmlproofer-plugin-1.2.0.ebuild 
b/dev-python/mkdocs-htmlproofer-plugin/mkdocs-htmlproofer-plugin-1.2.0.ebuild
new file mode 100644
index ..4dad50d51c90
--- /dev/null
+++ 
b/dev-python/mkdocs-htmlproofer-plugin/mkdocs-htmlproofer-plugin-1.2.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A MkDocs plugin that validates URLs in rendered HTML files"
+HOMEPAGE="
+   https://github.com/manuzhang/mkdocs-htmlproofer-plugin/
+   https://pypi.org/project/mkdocs-htmlproofer-plugin/
+"
+# No tests in PyPI tarballs
+SRC_URI="
+   
https://github.com/manuzhang/mkdocs-htmlproofer-plugin/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+
+RDEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   >=dev-python/mkdocs-1.4.0[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2024-03-05 Thread Michał Górny
commit: f8a1d68ee1d4910d69186adc82e6e8503143e651
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:06:25 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:06:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a1d68e

dev-python/starlette: Bump to 0.37.2

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

 dev-python/starlette/Manifest|  1 +
 dev-python/starlette/starlette-0.37.2.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/dev-python/starlette/Manifest b/dev-python/starlette/Manifest
index b7932fde27dc..40d7eab191d7 100644
--- a/dev-python/starlette/Manifest
+++ b/dev-python/starlette/Manifest
@@ -4,3 +4,4 @@ DIST starlette-0.36.2.gh.tar.gz 2843707 BLAKE2B 
7ec75189d7e9864fe15823692d2d2645
 DIST starlette-0.36.3.gh.tar.gz 2844320 BLAKE2B 
74e2b7449cf18393c63a2123e7537704bcf85528d504c33dc579b7660ef13c11fe74ba4da6e680063d9849f5aaeaa5c20cc770bf658613b56da2f7d9191d
 SHA512 
998e8958810efbc329382d86f6084d7ed90dca68bb64c51349b2dae6740ba537db10ec68a007e95a81ab06f5df39c64d998b3e87432a8fc75da3ead0963bcc5d
 DIST starlette-0.37.0.gh.tar.gz 2845423 BLAKE2B 
f471d6170cecc0a4421b865306a76147e3c946892abef3a5f8e04a03e8aab830c5702079db9af81ef8eaaba9812286c1364599e556fb4a3c4aae511849d706a3
 SHA512 
7750d76f2c7d8ee5aba47ba21583d0167c16965538a3735c9098ea44c6f335d893f314550b90ddf2ac9dd592fb777f5cd8035020d7c31cff46e4813b3194730f
 DIST starlette-0.37.1.gh.tar.gz 2846156 BLAKE2B 
16645f53f3153c04b846776c09b978dda853319f561d136eed42a5da260705238e512f915fd4a86960f0723060270738972ff12f78a3de37c78c7698585a7011
 SHA512 
ad5393a06966f290976fd60038c56a6ec71c5424bf50298a76ab8f165db4cac81f62cd4b9181e4e573eca4eb1ffeaa64eb44eaa43d41485ef62678af59c8e0dc
+DIST starlette-0.37.2.gh.tar.gz 2846433 BLAKE2B 
489fe0d3148f8f006d32d3e52e82cc2c07d9b1a8e3a3cadabe2aa2eb9dd7e00b35e2093dc1de0cb4a6a4606395ed4d19b26778686216a7f8b55a15e61701c9da
 SHA512 
27240c706553e610da05cfc92f818c61e97a891ea7c960fef925a122100a61931cbca973a0995aa1e79d192cda2250139f471929a3f4a7b0f4600d00b6287744

diff --git a/dev-python/starlette/starlette-0.37.2.ebuild 
b/dev-python/starlette/starlette-0.37.2.ebuild
new file mode 100644
index ..b12b3017c659
--- /dev/null
+++ b/dev-python/starlette/starlette-0.37.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=${P/_p/.post}
+DESCRIPTION="The little ASGI framework that shines"
+HOMEPAGE="
+   https://www.starlette.io/
+   https://github.com/encode/starlette/
+   https://pypi.org/project/starlette/
+"
+# no docs or tests in sdist, as of 0.27.0
+SRC_URI="
+   https://github.com/encode/starlette/archive/${PV/_p/.post}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   =dev-python/anyio-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/httpx-0.22.0[${PYTHON_USEDEP}]
+   dev-python/itsdangerous[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   >=dev-python/python-multipart-0.0.7[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/trio[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_DESELECT=(
+   # TODO: warning tests that require pytest-8
+   tests/test_routing.py::test_lifespan_with_on_events
+)
+
+EPYTEST_IGNORE=(
+   # Unpackaged 'databases' dependency
+   tests/test_database.py
+)
+
+distutils_enable_tests pytest



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

2024-03-05 Thread Michał Górny
commit: f064d9c5e2876e5c7b9fbbc3f909584d1540c41d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:09:48 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:09:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f064d9c5

dev-python/utidylib: Bump to 0.10

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

 dev-python/utidylib/Manifest |  1 +
 dev-python/utidylib/utidylib-0.10.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/utidylib/Manifest b/dev-python/utidylib/Manifest
index 5af7559ce235..d5981c7e62f5 100644
--- a/dev-python/utidylib/Manifest
+++ b/dev-python/utidylib/Manifest
@@ -1 +1,2 @@
+DIST utidylib-0.10.gh.tar.gz 16810 BLAKE2B 
ae8dc947c9af0a900c1d371788078a921115d84f14a9b1d00f16d0cc4461584ee9307a6431021c0c4e9e91807964baed898faa1e1313f9c4122b0d70a85a3b17
 SHA512 
80e59cb909d1c2f3fd7a0df604cf75ebcb335df02d8f2e4df4f619abe7cd3bcba1ffd9432a98aa65f50976ed811fe24bba1306e0cbdc86327d56c17ea8bd083e
 DIST utidylib-0.9.gh.tar.gz 15778 BLAKE2B 
54c9b9b7c0615ac49a90567357f119643311dd6ee2848dcdfcbe00b93431672ee6954738627c0b3fa984a8f2c7b9e127cc1edac06f9760a252621317d2266476
 SHA512 
58ca8a43ba2e933f02111939ee8496bb63b17220ce5a6fa3cb731659e89000baa17409c10968308cd86bb2a9dc4819ef2029245eecdb3c7a3fa57404f37004fc

diff --git a/dev-python/utidylib/utidylib-0.10.ebuild 
b/dev-python/utidylib/utidylib-0.10.ebuild
new file mode 100644
index ..2db183b0adaa
--- /dev/null
+++ b/dev-python/utidylib/utidylib-0.10.ebuild
@@ -0,0 +1,32 @@
+# 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="TidyLib Python wrapper"
+HOMEPAGE="
+   https://cihar.com/software/utidylib/
+   https://github.com/nijel/utidylib/
+   https://pypi.org/project/uTidylib/
+"
+SRC_URI="
+   https://github.com/nijel/utidylib/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=app-text/htmltidy-5.0.0
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+   dev-python/furo



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

2024-03-05 Thread Michał Górny
commit: 15b755734f6937c026f387d5843e3c6bb4227114
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:13:39 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:34:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b75573

media-libs/libjxl: Add myself as a co-maintainer

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

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

diff --git a/media-libs/libjxl/metadata.xml b/media-libs/libjxl/metadata.xml
index 1e3f2d5931e2..1f058f4c648f 100644
--- a/media-libs/libjxl/metadata.xml
+++ b/media-libs/libjxl/metadata.xml
@@ -9,6 +9,10 @@
 proxy-ma...@gentoo.org
 Proxy Maintainers
   
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 JPEG XL reference implementation
 (encoder and decoder), called libjxl.



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

2024-03-05 Thread Michał Górny
commit: 8f82b482f4ac10558638fdf0ba89ab907ee8d351
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:32:42 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:34:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f82b482

media-libs/libjxl: Enable gdk-pixbuf by default

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

 media-libs/libjxl/libjxl-0.10.1.ebuild | 2 +-
 media-libs/libjxl/libjxl-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libjxl/libjxl-0.10.1.ebuild 
b/media-libs/libjxl/libjxl-0.10.1.ebuild
index 6e3a1167a1a8..4b58c0ef7782 100644
--- a/media-libs/libjxl/libjxl-0.10.1.ebuild
+++ b/media-libs/libjxl/libjxl-0.10.1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 LICENSE="BSD"
 SLOT="0/$(ver_cut 1-2)"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86"
-IUSE="gdk-pixbuf openexr test"
+IUSE="+gdk-pixbuf openexr test"
 RESTRICT="!test? ( test )"
 
 DEPEND="

diff --git a/media-libs/libjxl/libjxl-.ebuild 
b/media-libs/libjxl/libjxl-.ebuild
index ff080a803195..f62a225c5a89 100644
--- a/media-libs/libjxl/libjxl-.ebuild
+++ b/media-libs/libjxl/libjxl-.ebuild
@@ -17,7 +17,7 @@ EGIT_SUBMODULES=(
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="gdk-pixbuf openexr test"
+IUSE="+gdk-pixbuf openexr test"
 RESTRICT="!test? ( test )"
 
 DEPEND="



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

2024-03-05 Thread Michał Górny
commit: af0647a3c01e93d02e0866403b95c94806e33bd3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  5 19:32:08 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  5 19:34:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0647a3

media-libs/libjxl: Bump to 0.10.1

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

 media-libs/libjxl/Manifest |  1 +
 .../{libjxl-.ebuild => libjxl-0.10.1.ebuild}   | 34 ++
 media-libs/libjxl/libjxl-.ebuild   | 16 ++
 3 files changed, 34 insertions(+), 17 deletions(-)

diff --git a/media-libs/libjxl/Manifest b/media-libs/libjxl/Manifest
index 6b21c2513d5b..a11a0bfcffe3 100644
--- a/media-libs/libjxl/Manifest
+++ b/media-libs/libjxl/Manifest
@@ -1,3 +1,4 @@
+DIST libjxl-0.10.1.tar.gz 1911155 BLAKE2B 
f7f1cc7c6bf34c1608cd28f36f5c2c42f17ba10824e18300e84824c908cb5fc7e0e0157a7bfe6b8aac7197a4abcca0806404251e1ed6ae38f15ff8e449f0980e
 SHA512 
54dc043dbed4e4bda1a591a07549f31fde17b67c5d754b1676616f3d8ffb82debafa3ed69041fd6523c907550543b11a3788d5cd3f1ca18e3ee2888760795ae3
 DIST libjxl-0.8.1.tar.gz 1611905 BLAKE2B 
75d7b4987c211e747520688a700744a0996483546b5929e8b765a66fc603b4d6edea8556bb427b8c7440ef447161fc38ef5ea390775f185df577da920711a009
 SHA512 
8011f2181cb627c2b516c7e1b8ecec78a201f357f3be6e568f7814a6a9c42d5979f4bb4ed040a67d68f6649d1f5c564f3cb2fac7e52702f755749084d903a737
 DIST libjxl-0.8.2.tar.gz 1612062 BLAKE2B 
2b5e65cde6c85881c5f26f676afec825c974f6919c3cc3f056ca4a9679162e89f2de35ab7d0b2a60782d39eca1f4ddad779f8d25d3f520417f6d9dea71e854db
 SHA512 
769f102c46755d11a705ce47ae9e2ef49627ae708f416693bf1293aeeb713934baf4466e45b9c70b04ec1fc8b4a00d5ca7688c8ca03f0a91c9a15252c522a887
 DIST libjxl-0.9.1.tar.gz 1872279 BLAKE2B 
723a098c07d61e7d1f4a7fda04d8be60594cf5a21307242e6d06deca64f8a2343078248d280fc8eb3fc9bb2277f7ffc6cc547b57a605a7aa95a0b21095450ccf
 SHA512 
a3169dac40b297617075a49cc5cdfa25e793a34b5dfe95db9c2560bdc967743882f0014d1d0fd508b8d2ea02cb3766d2f295af7a2cf9def8f5370f97b24aa16f

diff --git a/media-libs/libjxl/libjxl-.ebuild 
b/media-libs/libjxl/libjxl-0.10.1.ebuild
similarity index 77%
copy from media-libs/libjxl/libjxl-.ebuild
copy to media-libs/libjxl/libjxl-0.10.1.ebuild
index d4f4eca9f06c..6e3a1167a1a8 100644
--- a/media-libs/libjxl/libjxl-.ebuild
+++ b/media-libs/libjxl/libjxl-0.10.1.ebuild
@@ -3,19 +3,24 @@
 
 EAPI=8
 
-inherit cmake-multilib flag-o-matic git-r3 gnome2-utils
+inherit cmake-multilib flag-o-matic gnome2-utils
 
+# This changes frequently.  Please check the testdata submodule when bumping.
+TESTDATA_COMMIT="ff8d743aaba05b3014f17e5475e576242fa979fc"
 DESCRIPTION="JPEG XL image format reference implementation"
-HOMEPAGE="https://github.com/libjxl/libjxl;
-
-EGIT_REPO_URI="https://github.com/libjxl/libjxl.git;
-EGIT_SUBMODULES=(third_party/libjpeg-turbo
-   third_party/skcms
-   third_party/testdata
-)
+HOMEPAGE="https://github.com/libjxl/libjxl/;
+SRC_URI="
+   https://github.com/libjxl/libjxl/archive/refs/tags/v${PV}.tar.gz
+   -> ${P}.tar.gz
+   test? (
+   
https://github.com/libjxl/testdata/archive/${TESTDATA_COMMIT}.tar.gz
+   -> ${PN}-testdata-${TESTDATA_COMMIT}.tar.gz
+   )
+"
 
 LICENSE="BSD"
-SLOT="0"
+SLOT="0/$(ver_cut 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86"
 IUSE="gdk-pixbuf openexr test"
 RESTRICT="!test? ( test )"
 
@@ -26,15 +31,19 @@ DEPEND="
>=media-libs/lcms-2.13:2[${MULTILIB_USEDEP}]
media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}]
media-libs/libpng:=[${MULTILIB_USEDEP}]
-   >=x11-misc/shared-mime-info-2.2
gdk-pixbuf? (
dev-libs/glib:2
x11-libs/gdk-pixbuf:2
)
openexr? ( media-libs/openexr:= )
+"
+RDEPEND="
+   ${DEPEND}
+   >=x11-misc/shared-mime-info-2.2
+"
+DEPEND+="
test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )
 "
-RDEPEND="${DEPEND}"
 
 multilib_src_configure() {
filter-lto
@@ -62,10 +71,11 @@ multilib_src_configure() {
-DBUILD_TESTING=$(usex test ON OFF)
)
 
-   use test &&
+   if use test; then
mycmakeargs+=(

-DJPEGXL_TEST_DATA_PATH="${WORKDIR}/testdata-${TESTDATA_COMMIT}"
)
+   fi
 
if multilib_is_native_abi; then
mycmakeargs+=(

diff --git a/media-libs/libjxl/libjxl-.ebuild 
b/media-libs/libjxl/libjxl-.ebuild
index d4f4eca9f06c..ff080a803195 100644
--- a/media-libs/libjxl/libjxl-.ebuild
+++ b/media-libs/libjxl/libjxl-.ebuild
@@ -6,10 +6,11 @@ EAPI=8
 inherit cmake-multilib flag-o-matic git-r3 gnome2-utils
 
 DESCRIPTION="JPEG XL image format reference implementation"
-HOMEPAGE="https://github.com/libjxl/libjxl;
+HOMEPAGE="https://github.com/libjxl/libjxl/;
 
 EGIT_REPO_URI="https://github.com/libjxl/libjxl.git;
-EGIT_SUBMODULES=(third_party/libjpeg-turbo

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

2024-03-05 Thread Maciej Barć
commit: a0c345f0f93e693ed3821c2bebdf5104c1e1e7a6
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 17:57:29 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 18:46:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0c345f0

dev-lang/boogie: bump to 3.1.1

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

 dev-lang/boogie/Manifest|   1 +
 dev-lang/boogie/boogie-3.1.1.ebuild | 295 
 2 files changed, 296 insertions(+)

diff --git a/dev-lang/boogie/Manifest b/dev-lang/boogie/Manifest
index be0338d26c23..b73e668f4917 100644
--- a/dev-lang/boogie/Manifest
+++ b/dev-lang/boogie/Manifest
@@ -2,6 +2,7 @@ DIST boogie-3.0.10.tar.gz 2045614 BLAKE2B 
47b709a9842055f489ddab50d1661c4abe5d5c
 DIST boogie-3.0.11.tar.gz 2044740 BLAKE2B 
b8c1cde7ad4b10deabb9ca9edbf226f580512a3817e9a19a947c7bd5d26808c08e907237aad2209ec06e645fa7ef40c8d73fec812437585b27adf4e125d5b1a0
 SHA512 
fe59fb1ed2708a5d988a569dd14148e308966ca6382da8502a2c679d67121b39f60e03e9ed6f7efa80c079c818db008c99e1f5e6bc28ba617fe33ae6289c2cce
 DIST boogie-3.0.12.tar.gz 2044818 BLAKE2B 
0d11cb1288933b1046b46ea3b93336fe08b9897a4aaf42228971e280be2c648b2110d20aaf6533e6d95e51b0a86c1fe507da05eaa908dc0ed885192e9480d0e7
 SHA512 
e2c1d4faad1bb448dd3cd9f6dbd4c70fa913584ef1bedd4938298498850bc6a0b6017924a55d9b48c82189253c2ac8c84a2564afa2d9b237434ad40ea286fbec
 DIST boogie-3.1.0.tar.gz 2038681 BLAKE2B 
ce90bd23ca8cee84c83715d7998591dcd065f952c33570f72506c602a0ae99e50741a803d396416d6998620e74140f83a0af471438bf0059fbe17750fc34
 SHA512 
735ed0cbcace50389aa3060cdddf2ff942a8550f96e063e5be0d124993e0484112cc36535e2c0daae04be1118fb2e400676b80732484308aacbdb6409e7621ea
+DIST boogie-3.1.1.tar.gz 2038688 BLAKE2B 
ea720665dd9d830de0639b3b2fe08c452e80375e98b8ff9ced473c4beb540a2cb3908415bfbb1582edac9043c17dcbfc014d2dd1dcc3ce0877db436c13a639bd
 SHA512 
704990ebd9b55e4f617249a5e2b4c74a615c61a51da41485eddd8c1b8159f16afd5da13e93f684a97d87c2e1273549977e04180423909c22b026e975d07a0ceb
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B 
aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003
 SHA512 
221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be396edaf9c0852a9c23d7b099
 DIST microsoft.codecoverage.16.2.0.nupkg 3133582 BLAKE2B 
418cf403247d594cde0d827f8ca8690019a7631525f07993937085f4bbf8473364b4c99aea6e8b7b0020208d15fe0da63f0f4e69c273493c51ae011e8bd82667
 SHA512 
91f1d43fc038a20f5367d9aab669105dc7514dfbe749260b52789c09a75abcc6bdc000ee0c7f432231d4cc09e99bf5b863dd6289d813342f74d9dad23a651625
 DIST microsoft.csharp.4.0.1.nupkg 462346 BLAKE2B 
209ccebc9103b803d26ea1f0232245c3cd231078b03a83a0011a2a79a1a8a324a72c5b3fda94b2686fff170932f366e165f81a36a70df590a39c45d70778e4be
 SHA512 
c0e75a9162f28ba4c4572c8fac4fd4c8c97d6d3505a37683646ba5f7e5f6ac0da69d5200d2646054de90e8e08f893a10e514591b69b8273640842b2cf90bddec

diff --git a/dev-lang/boogie/boogie-3.1.1.ebuild 
b/dev-lang/boogie/boogie-3.1.1.ebuild
new file mode 100644
index ..412d21a3c9d6
--- /dev/null
+++ b/dev-lang/boogie/boogie-3.1.1.ebuild
@@ -0,0 +1,295 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOTNET_PKG_COMPAT=8.0
+NUGETS="
+microsoft.bcl.asyncinterfaces@6.0.0
+microsoft.codecoverage@16.2.0
+microsoft.csharp@4.0.1
+microsoft.dotnet.internalabstractions@1.0.0
+microsoft.net.test.sdk@16.2.0
+microsoft.netcore.platforms@1.0.1
+microsoft.netcore.platforms@1.1.0
+microsoft.netcore.targets@1.0.1
+microsoft.netcore.targets@1.1.0
+microsoft.testplatform.objectmodel@16.2.0
+microsoft.testplatform.testhost@16.2.0
+microsoft.win32.primitives@4.0.1
+microsoft.win32.primitives@4.3.0
+microsoft.win32.registry@4.0.0
+microsoft.win32.registry@4.3.0
+microsoft.win32.systemevents@6.0.0
+netstandard.library@1.6.0
+netstandard.library@2.0.0
+newtonsoft.json@9.0.1
+nunit@3.12.0
+nunit3testadapter@3.15.1
+runtime.any.system.collections@4.3.0
+runtime.any.system.diagnostics.tools@4.3.0
+runtime.any.system.diagnostics.tracing@4.3.0
+runtime.any.system.globalization.calendars@4.3.0
+runtime.any.system.globalization@4.3.0
+runtime.any.system.io@4.3.0
+runtime.any.system.reflection.extensions@4.3.0
+runtime.any.system.reflection.primitives@4.3.0
+runtime.any.system.reflection@4.3.0
+runtime.any.system.resources.resourcemanager@4.3.0
+runtime.any.system.runtime.handles@4.3.0
+runtime.any.system.runtime.interopservices@4.3.0
+runtime.any.system.runtime@4.3.0
+runtime.any.system.text.encoding.extensions@4.3.0
+runtime.any.system.text.encoding@4.3.0
+runtime.any.system.threading.tasks@4.3.0
+runtime.any.system.threading.timer@4.3.0
+runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl@4.3.0
+runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl@4.3.0

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

2024-03-05 Thread Maciej Barć
commit: 6096190e895aa0b709f2c8b5fe3b15666595b8a3
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 18:35:04 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 18:46:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6096190e

dev-lang/boogie: drop old 3.1.0

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

 dev-lang/boogie/Manifest|   1 -
 dev-lang/boogie/boogie-3.1.0.ebuild | 295 
 2 files changed, 296 deletions(-)

diff --git a/dev-lang/boogie/Manifest b/dev-lang/boogie/Manifest
index b73e668f4917..dad0773038a9 100644
--- a/dev-lang/boogie/Manifest
+++ b/dev-lang/boogie/Manifest
@@ -1,7 +1,6 @@
 DIST boogie-3.0.10.tar.gz 2045614 BLAKE2B 
47b709a9842055f489ddab50d1661c4abe5d5c72c3b968c80d4895797409cbb1b480d18ca514da4eb66797706213310baf284e2ad736714defcd03baff1bfc60
 SHA512 
7ab6c99cbb9e737208519fa86f87f942d4d898adb0ee1f08978e6ae59fd0be0b7cb0eb8e288ad787cf7d851920830f16bfac4881ea0c37af872f5e4a74a1f5fe
 DIST boogie-3.0.11.tar.gz 2044740 BLAKE2B 
b8c1cde7ad4b10deabb9ca9edbf226f580512a3817e9a19a947c7bd5d26808c08e907237aad2209ec06e645fa7ef40c8d73fec812437585b27adf4e125d5b1a0
 SHA512 
fe59fb1ed2708a5d988a569dd14148e308966ca6382da8502a2c679d67121b39f60e03e9ed6f7efa80c079c818db008c99e1f5e6bc28ba617fe33ae6289c2cce
 DIST boogie-3.0.12.tar.gz 2044818 BLAKE2B 
0d11cb1288933b1046b46ea3b93336fe08b9897a4aaf42228971e280be2c648b2110d20aaf6533e6d95e51b0a86c1fe507da05eaa908dc0ed885192e9480d0e7
 SHA512 
e2c1d4faad1bb448dd3cd9f6dbd4c70fa913584ef1bedd4938298498850bc6a0b6017924a55d9b48c82189253c2ac8c84a2564afa2d9b237434ad40ea286fbec
-DIST boogie-3.1.0.tar.gz 2038681 BLAKE2B 
ce90bd23ca8cee84c83715d7998591dcd065f952c33570f72506c602a0ae99e50741a803d396416d6998620e74140f83a0af471438bf0059fbe17750fc34
 SHA512 
735ed0cbcace50389aa3060cdddf2ff942a8550f96e063e5be0d124993e0484112cc36535e2c0daae04be1118fb2e400676b80732484308aacbdb6409e7621ea
 DIST boogie-3.1.1.tar.gz 2038688 BLAKE2B 
ea720665dd9d830de0639b3b2fe08c452e80375e98b8ff9ced473c4beb540a2cb3908415bfbb1582edac9043c17dcbfc014d2dd1dcc3ce0877db436c13a639bd
 SHA512 
704990ebd9b55e4f617249a5e2b4c74a615c61a51da41485eddd8c1b8159f16afd5da13e93f684a97d87c2e1273549977e04180423909c22b026e975d07a0ceb
 DIST microsoft.bcl.asyncinterfaces.6.0.0.nupkg 76354 BLAKE2B 
aca3f5db71e4037dbdd604aeaebcd0962ccc171915b77b4c409ab744bf0a469c7d588f9504fc7fa49e3863e9593b66b4083235cb49e812d1f87b3dadb32e6003
 SHA512 
221a05a0c910f7a87b620d8f3831ed392b4eb95d112bee274d35f27009ad2a26445de9d7cd235fe6fb4a03f2550874bda3be396edaf9c0852a9c23d7b099
 DIST microsoft.codecoverage.16.2.0.nupkg 3133582 BLAKE2B 
418cf403247d594cde0d827f8ca8690019a7631525f07993937085f4bbf8473364b4c99aea6e8b7b0020208d15fe0da63f0f4e69c273493c51ae011e8bd82667
 SHA512 
91f1d43fc038a20f5367d9aab669105dc7514dfbe749260b52789c09a75abcc6bdc000ee0c7f432231d4cc09e99bf5b863dd6289d813342f74d9dad23a651625

diff --git a/dev-lang/boogie/boogie-3.1.0.ebuild 
b/dev-lang/boogie/boogie-3.1.0.ebuild
deleted file mode 100644
index 412d21a3c9d6..
--- a/dev-lang/boogie/boogie-3.1.0.ebuild
+++ /dev/null
@@ -1,295 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOTNET_PKG_COMPAT=8.0
-NUGETS="
-microsoft.bcl.asyncinterfaces@6.0.0
-microsoft.codecoverage@16.2.0
-microsoft.csharp@4.0.1
-microsoft.dotnet.internalabstractions@1.0.0
-microsoft.net.test.sdk@16.2.0
-microsoft.netcore.platforms@1.0.1
-microsoft.netcore.platforms@1.1.0
-microsoft.netcore.targets@1.0.1
-microsoft.netcore.targets@1.1.0
-microsoft.testplatform.objectmodel@16.2.0
-microsoft.testplatform.testhost@16.2.0
-microsoft.win32.primitives@4.0.1
-microsoft.win32.primitives@4.3.0
-microsoft.win32.registry@4.0.0
-microsoft.win32.registry@4.3.0
-microsoft.win32.systemevents@6.0.0
-netstandard.library@1.6.0
-netstandard.library@2.0.0
-newtonsoft.json@9.0.1
-nunit@3.12.0
-nunit3testadapter@3.15.1
-runtime.any.system.collections@4.3.0
-runtime.any.system.diagnostics.tools@4.3.0
-runtime.any.system.diagnostics.tracing@4.3.0
-runtime.any.system.globalization.calendars@4.3.0
-runtime.any.system.globalization@4.3.0
-runtime.any.system.io@4.3.0
-runtime.any.system.reflection.extensions@4.3.0
-runtime.any.system.reflection.primitives@4.3.0
-runtime.any.system.reflection@4.3.0
-runtime.any.system.resources.resourcemanager@4.3.0
-runtime.any.system.runtime.handles@4.3.0
-runtime.any.system.runtime.interopservices@4.3.0
-runtime.any.system.runtime@4.3.0
-runtime.any.system.text.encoding.extensions@4.3.0
-runtime.any.system.text.encoding@4.3.0
-runtime.any.system.threading.tasks@4.3.0
-runtime.any.system.threading.timer@4.3.0
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl@4.3.0
-runtime.native.system.io.compression@4.1.0

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/files/, gnome-extra/evolution-ews/

2024-03-05 Thread Mart Raudsepp
commit: f9024d2e72b8005cdbeff05cba0a60589257463c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Mar  5 22:15:16 2024 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar  5 22:18:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9024d2e

gnome-extra/evolution-ews: fix overlinking without -Wl,--as-needed

This fixes e.g. gnome-contacts if -Wl,--as-needed isn't in LDFLAGS due to 
otherwise
ending up with both GTK3 and GTK4 loaded at runtime via evolution-data-server
modules.

Signed-off-by: Mart Raudsepp  gentoo.org>

 50.3.ebuild => evolution-ews-3.50.3-r1.ebuild} |  3 +
 .../files/3.50.3-fix-overlinking.patch | 73 ++
 2 files changed, 76 insertions(+)

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.50.3.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild
similarity index 90%
rename from gnome-extra/evolution-ews/evolution-ews-3.50.3.ebuild
rename to gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild
index 24f764823f92..f1289dd7ac96 100644
--- a/gnome-extra/evolution-ews/evolution-ews-3.50.3.ebuild
+++ b/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild
@@ -45,6 +45,9 @@ RESTRICT="test !test? ( test )"
 src_prepare() {
cmake_src_prepare
gnome2_src_prepare
+
+   # Fix wrongly linking in GTK3 webkit without --as-needed, which breaks 
GTK4 evolution-data-server apps like gnome-contacts
+   eapply "${FILESDIR}"/${PV}-fix-overlinking.patch
 }
 
 src_configure() {

diff --git a/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch 
b/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch
new file mode 100644
index ..7628390f27f8
--- /dev/null
+++ b/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch
@@ -0,0 +1,73 @@
+From c9e8707d024048ea595d825ed08833c9aa6bff37 Mon Sep 17 00:00:00 2001
+From: Milan Crha 
+Date: Mon, 4 Mar 2024 18:02:54 +0100
+Subject: [PATCH] build: Correct overlinking on the m365 part
+
+This can bring in gtk3 and other UI-specific libs into the background 
processes,
+when the compiler does not filter them out, which can happen with clang.
+
+Related to https://gitlab.gnome.org/GNOME/gnome-contacts/-/issues/222
+---
+ src/Microsoft365/calendar/CMakeLists.txt | 3 ---
+ src/Microsoft365/common/CMakeLists.txt   | 3 ---
+ 2 files changed, 6 deletions(-)
+
+diff --git a/src/Microsoft365/calendar/CMakeLists.txt 
b/src/Microsoft365/calendar/CMakeLists.txt
+index 676e2d7f..60801886 100644
+--- a/src/Microsoft365/calendar/CMakeLists.txt
 b/src/Microsoft365/calendar/CMakeLists.txt
+@@ -27,7 +27,6 @@ target_compile_definitions(ecalbackendmicrosoft365 PRIVATE
+ 
+ target_compile_options(ecalbackendmicrosoft365 PUBLIC
+   ${CAMEL_CFLAGS}
+-  ${EVOLUTION_CALENDAR_CFLAGS}
+   ${LIBEBACKEND_CFLAGS}
+   ${LIBECAL_CFLAGS}
+   ${LIBEDATACAL_CFLAGS}
+@@ -41,7 +40,6 @@ target_include_directories(ecalbackendmicrosoft365 PUBLIC
+   ${CMAKE_SOURCE_DIR}/src/Microsoft365
+   ${CMAKE_CURRENT_BINARY_DIR}
+   ${CAMEL_INCLUDE_DIRS}
+-  ${EVOLUTION_CALENDAR_INCLUDE_DIRS}
+   ${LIBEBACKEND_INCLUDE_DIRS}
+   ${LIBECAL_INCLUDE_DIRS}
+   ${LIBEDATACAL_INCLUDE_DIRS}
+@@ -51,7 +49,6 @@ target_include_directories(ecalbackendmicrosoft365 PUBLIC
+ target_link_libraries(ecalbackendmicrosoft365
+   ${DEPENDENCIES}
+   ${CAMEL_LDFLAGS}
+-  ${EVOLUTION_CALENDAR_LDFLAGS}
+   ${LIBEBACKEND_LDFLAGS}
+   ${LIBECAL_LDFLAGS}
+   ${LIBEDATACAL_LDFLAGS}
+diff --git a/src/Microsoft365/common/CMakeLists.txt 
b/src/Microsoft365/common/CMakeLists.txt
+index 1b81e6ea..def3d020 100644
+--- a/src/Microsoft365/common/CMakeLists.txt
 b/src/Microsoft365/common/CMakeLists.txt
+@@ -31,7 +31,6 @@ target_compile_definitions(evolution-microsoft365 PRIVATE
+ 
+ target_compile_options(evolution-microsoft365 PUBLIC
+   ${CAMEL_CFLAGS}
+-  ${EVOLUTION_CALENDAR_CFLAGS}
+   ${JSON_GLIB_CFLAGS}
+   ${LIBEBACKEND_CFLAGS}
+   ${LIBECAL_CFLAGS}
+@@ -48,7 +47,6 @@ target_include_directories(evolution-microsoft365 PUBLIC
+   ${CMAKE_CURRENT_BINARY_DIR}
+   ${CMAKE_CURRENT_SOURCE_DIR}
+   ${CAMEL_INCLUDE_DIRS}
+-  ${EVOLUTION_CALENDAR_INCLUDE_DIRS}
+   ${JSON_GLIB_INCLUDE_DIRS}
+   ${LIBEBACKEND_INCLUDE_DIRS}
+   ${LIBECAL_INCLUDE_DIRS}
+@@ -59,7 +57,6 @@ target_include_directories(evolution-microsoft365 PUBLIC
+ 
+ target_link_libraries(evolution-microsoft365
+   ${CAMEL_LDFLAGS}
+-  ${EVOLUTION_CALENDAR_LDFLAGS}
+   ${JSON_GLIB_LDFLAGS}
+   ${LIBEBACKEND_LDFLAGS}
+   ${LIBECAL_LDFLAGS}
+-- 
+2.43.0
+



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

2024-03-05 Thread Maciej Barć
commit: 43ba0433f56ee6f604113b3bf9c294b425f757a0
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:25:11 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ba0433

app-emacs/buttercup: reinstate KEYWORDS for 1.34

Bug: https://github.com/jorgenschaefer/emacs-buttercup/issues/243
Bug: https://bugs.gentoo.org/926083
Bug: https://bugs.gentoo.org/926084
Bug: https://bugs.gentoo.org/926144
Signed-off-by: Maciej Barć  gentoo.org>

 app-emacs/buttercup/buttercup-1.34.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-emacs/buttercup/buttercup-1.34.ebuild 
b/app-emacs/buttercup/buttercup-1.34.ebuild
index ce6e52f957a3..413b4cf227ab 100644
--- a/app-emacs/buttercup/buttercup-1.34.ebuild
+++ b/app-emacs/buttercup/buttercup-1.34.ebuild
@@ -17,8 +17,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/emacs-${P}"
 
-   # Bug: https://github.com/jorgenschaefer/emacs-buttercup/issues/243
-   # KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2024-03-05 Thread Maciej Barć
commit: 174c6c7855d5fff8437edee977ebb49d7476a315
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:34:48 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174c6c78

app-emacs/clojure-mode: restrict tests

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

 app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild 
b/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild
index f36e80a741f3..ac97f846fa82 100644
--- a/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild
+++ b/app-emacs/clojure-mode/clojure-mode-5.18.1.ebuild
@@ -11,15 +11,13 @@ 
SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
-KEYWORDS="amd64 ~x86"
 SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
+KEYWORDS="amd64 ~x86"
+RESTRICT="test" # w/o lexical-binding needed by buttercup >=1.34, 
should be fixed in git.
 
 BDEPEND="
test? (
app-emacs/s
-   app-emacs/buttercup
app-emacs/paredit
)
 "
@@ -27,6 +25,4 @@ BDEPEND="
 DOCS=( README.md doc )
 SITEFILE="50${PN}-gentoo.el"
 
-src_test() {
-   buttercup -L . -L test --traceback full || die
-}
+elisp-enable-tests buttercup test



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

2024-03-05 Thread Maciej Barć
commit: 2a6baf68c2c36a7f2a72c2321ca8b474f7977f7e
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:41:27 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6baf68

app-emacs/ebib: bump to 2.40.5

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

 app-emacs/ebib/Manifest   |  1 +
 app-emacs/ebib/ebib-2.40.5.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/app-emacs/ebib/Manifest b/app-emacs/ebib/Manifest
index 3ff263a8f0dd..ca4e3b8a6794 100644
--- a/app-emacs/ebib/Manifest
+++ b/app-emacs/ebib/Manifest
@@ -1,2 +1,3 @@
 DIST ebib-2.40.3.tar.gz 1049725 BLAKE2B 
651716ed5465a4ef93b149ab84018d7daf3ffa1df404b95625a9c3666a1dbbe3d879f180dae92aa619e70121757c4a3b7f566bfc8aed1542b2828de25775b6ff
 SHA512 
4231f5732990828aa19d9d723fb9b74bf761e8034de24fce4748b95a4d969d5a3bbbdc443b4f1a4a88b945b01ded958ae467da4222b546121513a26759419bd6
 DIST ebib-2.40.4.tar.gz 1050093 BLAKE2B 
f7ca4deb262017aab9044702c4e0bcfadc26ffec1497d43aa96789f3b10304c040195302621646cbe7234f6b0bf12f30ec779173056bf1e6594b05a1a8b4025c
 SHA512 
c856abe3653f17f3417d3021300a0d131b5119393185ce9e5082c599df14e7d51bbf8405653e28aed790a73b56533a1d07d18fc2c7a073c5664e40926ddfa957
+DIST ebib-2.40.5.tar.gz 1048131 BLAKE2B 
1a5639290eb6ce93b604e1e129c347e709f7c12a4db38516107e7ce2973fd4fb34e4dff0da16e7fff9395ca2168445e903848c50ca403447745dc4a405618c06
 SHA512 
9237368550f380e5dd40aa4f528cb9493e5b104e9c2264322128fd56e76b6167e6d1496ab8c663982b9b0dc4a65f5ca38bd7a5962e1281d27f9cc2d918805642

diff --git a/app-emacs/ebib/ebib-2.40.5.ebuild 
b/app-emacs/ebib/ebib-2.40.5.ebuild
new file mode 100644
index ..688763487ce1
--- /dev/null
+++ b/app-emacs/ebib/ebib-2.40.5.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=26.1
+
+inherit elisp
+
+DESCRIPTION="BibTeX database manager for Emacs"
+HOMEPAGE="https://joostkremers.github.io/ebib/
+   https://github.com/joostkremers/ebib/;
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/joostkremers/${PN}.git;
+else
+   SRC_URI="https://github.com/joostkremers/${PN}/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="
+   >=app-emacs/compat-29.1.4.4
+   app-emacs/parsebib
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   app-emacs/with-simulated-input
+   )
+"
+
+DOCS=( README.md docs )
+SITEFILE="50${PN}-gentoo.el"
+
+elisp-enable-tests ert-runner test
+
+src_install() {
+   elisp_src_install
+
+   doinfo "${PN}.info"
+}



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

2024-03-05 Thread Maciej Barć
commit: 3252aa95879f77ea497682217ef02d89b3817a90
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 23:05:34 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3252aa95

app-emulation/uxn: sync live  version

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

 app-emulation/uxn/uxn-.ebuild | 66 ---
 1 file changed, 41 insertions(+), 25 deletions(-)

diff --git a/app-emulation/uxn/uxn-.ebuild 
b/app-emulation/uxn/uxn-.ebuild
index 65b28334a901..ef6e9fc2dafe 100644
--- a/app-emulation/uxn/uxn-.ebuild
+++ b/app-emulation/uxn/uxn-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,47 +9,63 @@ DESCRIPTION="An assembler and emulator for the Uxn 
stack-machine, written in ANS
 HOMEPAGE="https://wiki.xxiivv.com/site/uxn.html
https://git.sr.ht/~rabbits/uxn/;
 
-if [[ ${PV} == ** ]] ; then
+if [[ "${PV}" == ** ]] ; then
inherit git-r3
-   EGIT_REPO_URI="https://git.sr.ht/~rabbits/uxn;
-elif [[ ${PV} == *_p20230609 ]] ; then
-   COMMIT=f3674b2562e6c5557fc008edbac71d9fcfde64ff
-   SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${COMMIT}.tar.gz
+
+   EGIT_REPO_URI="https://git.sr.ht/~rabbits/${PN};
+elif [[ "${PV}" == *_p20240304 ]] ; then
+   COMMIT=e7c25fad05850f0e577fc83a140405ca6ccd93c2
+   SRC_URI="https://git.sr.ht/~rabbits/${PN}/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
-   S="${WORKDIR}"/uxn-${COMMIT}
+   S="${WORKDIR}/uxn-${COMMIT}"
+
KEYWORDS="~amd64 ~x86"
 else
-   die "wrong package version (PV), given: ${PV}"
+   die "wrong package version (PV), please update the ebuild, given: ${PV}"
 fi
 
 LICENSE="MIT"
 SLOT="0"
 
-RDEPEND="media-libs/libsdl2:="
-DEPEND="${RDEPEND}"
+RDEPEND="
+   media-libs/libsdl2:=
+"
+DEPEND="
+   ${RDEPEND}
+"
 
-PATCHES=( "${FILESDIR}"/uxn-0_p20230609-build.sh.patch )
+PATCHES=(
+   "${FILESDIR}/uxn-0_p20230609-build.sh.patch"
+)
 
 src_compile() {
-   CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ./build.sh --no-run ||
-   die "build failed"
-
-   local f
-   local f_base
-   for f in ./projects/{examples/*,software,utils}/*.tal ; do
-   f_base="$(basename "${f}" .tal)"
-   ebegin "Assembling ROM ${f_base}"
-   ./bin/uxnasm "${f}" "$(dirname "${f}")"/"${f_base}".rom
-   eend ${?} ||  die "failed to assemble ${f}"
-   done
+   CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}"  \
+ ./build.sh --no-run   
\
+   || die "building with \"build.sh\" failed"
+
+   # Fails to assemble via following loop.
+   # Possibly not mean to be assembled by hand.
+   rm -rf ./projects/library ./projects/software/{asma,launcher}.tal || die
+
+   local tal_file
+   local tal_file_base
+
+   while read -r tal_file ; do
+   tal_file_base="$(basename "${tal_file}" .tal)"
+
+   ebegin "Assembling ROM ${tal_file_base}"
+   bin/uxnasm "${tal_file}" "$(dirname 
"${tal_file}")/${tal_file_base}.rom"
+   eend ${?} || die "failed to assemble ${tal_file}"
+   done \
+   < <(find projects -type f -name "*.tal")
 }
 
 src_install() {
-   exeinto /usr/bin
-   doexe bin/uxn*
+   insinto /usr/bin
+   doins bin/uxn*
+   fperms 0755 /usr/bin/uxn*
 
insinto /usr/share/uxn
-   doins bin/*.rom
doins -r projects
 
einstalldocs



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

2024-03-05 Thread Maciej Barć
commit: 20e757adfa8d890fe46a3d9f1cbde6877859953f
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:34:02 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20e757ad

app-emacs/circe: restrict tests

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

 app-emacs/circe/circe-2.12.ebuild | 4 ++--
 app-emacs/circe/circe-2.13.ebuild | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-emacs/circe/circe-2.12.ebuild 
b/app-emacs/circe/circe-2.12.ebuild
index 280bd6d10e32..9ce30f9df2e2 100644
--- a/app-emacs/circe/circe-2.12.ebuild
+++ b/app-emacs/circe/circe-2.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64 ppc sparc x86"
 IUSE="test"
-RESTRICT="!test? ( test )"
+RESTRICT="test" # w/o lexical-binding needed by buttercup >=1.34, 
should be fixed in git.
 
 BDEPEND="test? ( app-emacs/buttercup )"
 

diff --git a/app-emacs/circe/circe-2.13.ebuild 
b/app-emacs/circe/circe-2.13.ebuild
index 89fc053a1065..80c493902fa6 100644
--- a/app-emacs/circe/circe-2.13.ebuild
+++ b/app-emacs/circe/circe-2.13.ebuild
@@ -22,6 +22,7 @@ fi
 
 LICENSE="GPL-3+"
 SLOT="0"
+RESTRICT="test" # w/o lexical-binding needed by buttercup >=1.34, 
should be fixed in git.
 
 DOCS=( AUTHORS.md CONTRIBUTING.md NEWS.md README.md )
 ELISP_REMOVE="${PN}-pkg.el"



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

2024-03-05 Thread Maciej Barć
commit: dcf6095d77427dc04f436389bcdffc334883672a
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:32:19 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcf6095d

app-emacs/webpaste: restrict tests

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

 app-emacs/webpaste/webpaste-3.2.2-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-emacs/webpaste/webpaste-3.2.2-r1.ebuild 
b/app-emacs/webpaste/webpaste-3.2.2-r1.ebuild
index 27a00d8097bc..f63246717db1 100644
--- a/app-emacs/webpaste/webpaste-3.2.2-r1.ebuild
+++ b/app-emacs/webpaste/webpaste-3.2.2-r1.ebuild
@@ -22,6 +22,7 @@ fi
 
 LICENSE="GPL-3+"
 SLOT="0"
+RESTRICT="test" # Old tests, w/o lexical-binding needed by buttercup 
>=1.34.
 
 RDEPEND="
app-emacs/request



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

2024-03-05 Thread Maciej Barć
commit: dc459f989410739bf4b12f7215df2aa51dbc9446
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 22:43:04 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc459f98

dev-lang/luau: drop old 0.607

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

 dev-lang/luau/Manifest  |  1 -
 dev-lang/luau/luau-0.607.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-lang/luau/Manifest b/dev-lang/luau/Manifest
index 097d376f71bb..054e095f0acc 100644
--- a/dev-lang/luau/Manifest
+++ b/dev-lang/luau/Manifest
@@ -1,4 +1,3 @@
-DIST luau-0.607.tar.gz 1587462 BLAKE2B 
9aad6f6aeb2ddd8b1bb3b4ff1324e8f8f18fd530ae86e33c593f0349cd8ac743f41eca7f1dc7c231d0a6bfad405dbfe1153a0d4729010ecd16bbcbdfef9abed4
 SHA512 
66025a2c88ea530f92d01fc3d7bea71d76847c615e150463d81b531a6ef6921b9898e25b62eeb4a2057e56ddd8d7b5b9aaaffca5c832d0c9eac9fa15712f7d19
 DIST luau-0.609.tar.gz 1602889 BLAKE2B 
92c1f07fc97df494d7a7718d6c348060322637d4fefd7b64405f9af2e48f1f964e85d39a9eed22231fe875ccdcd5bfc46f280de62dfa29f019c5ebb87d5dc4f0
 SHA512 
7b6193dfd8af95b4dfab16c6ae6541150488a2655847bf88bf0befeb8df796b11d575e569d16aa33012241e5d5f32ba28b6c1160de0a3cbaad7e7d7b80a44ff1
 DIST luau-0.611.tar.gz 1615229 BLAKE2B 
925f3967bfe9f8ce764e3ce22763fd1363f0b47f5860f23ceea426a729bbce2cfc16479419889c573cd19cc891314bf72e06262967d8ec3e1d1faca7e2e5e573
 SHA512 
c3a0f84f73daa75d96ff33fb79456f0ec08dd4c4980afdcc64bbe4dea9d3189a17537cb60fcfe2e314b0a4dae635c52299514fb68bc77ed559c411c702f74bd3
 DIST luau-0.613.tar.gz 1617826 BLAKE2B 
d7e9b898fe74d376f963ead6a1d410d1eb6832ca70ebfc7d840e4322b9bf9b8d585f0e2c8f1743f55d4d745a6be49df259489d7c85e96c9a4fdfa602dfadca30
 SHA512 
c118f35345dd030074a86283ae931f48e8ef18bf2a89efed8e516ce321a720c9b49a2211ff439832e6da994f65b87c7613e061845c0daeb9c93490f2fafc9f8b

diff --git a/dev-lang/luau/luau-0.607.ebuild b/dev-lang/luau/luau-0.607.ebuild
deleted file mode 100644
index 065271398e29..
--- a/dev-lang/luau/luau-0.607.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Gradually typed embeddable scripting language derived from Lua"
-HOMEPAGE="https://luau-lang.org/
-   https://github.com/Roblox/luau/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/Roblox/${PN}.git;
-else
-   SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DOCS=( CONTRIBUTING.md README.md SECURITY.md )
-
-src_test() {
-   "${BUILD_DIR}"/Luau.UnitTest || die
-   "${BUILD_DIR}"/Luau.Conformance  || die
-}
-
-src_install() {
-   exeinto /usr/bin
-   doexe "${BUILD_DIR}"/luau{,-analyze,-ast,-compile,-reduce}
-
-   einstalldocs
-}



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

2024-03-05 Thread Maciej Barć
commit: 796ea86fdadf67133e3244b91e5cb22a617ecb43
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar  5 23:04:49 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar  5 23:07:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796ea86f

app-emulation/uxn: bump to 0_p20240304

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

 app-emulation/uxn/Manifest   |  1 +
 app-emulation/uxn/uxn-0_p20240304.ebuild | 72 
 2 files changed, 73 insertions(+)

diff --git a/app-emulation/uxn/Manifest b/app-emulation/uxn/Manifest
index fc1387958e35..f054ef4529ba 100644
--- a/app-emulation/uxn/Manifest
+++ b/app-emulation/uxn/Manifest
@@ -1 +1,2 @@
 DIST uxn-0_p20230803.tar.gz 293291 BLAKE2B 
2e295f83bc695861732ad0412900435900bd10c08a99b0a6e88a5a5e10fde3f462b8ff35261365bfec1f306e1684eb1dac767cf7a1f83b3e30e36e79d98e
 SHA512 
89b666b11099037404e48cd6cc7467bcbc84fb90c24cc3df183996f26f2a6817d84fe47857d2d9777acd0aed9885e17c726f3b2f32253d0ba3a77f32b46f8abf
+DIST uxn-0_p20240304.tar.gz 307083 BLAKE2B 
2b3a556c5094fd777d82d75c87f721d1a9ea136334cdbc8553662281ae498beb79514e9e567e79b84a625b2fe60b486aa7f6892594cbd08abbbfeb4c9a50b2e9
 SHA512 
048e24e33de04913e03fbf1b242837dd1ad190f52ede16c302cf436399f0ee478afca545236dd438e03d8dfc29252478c2d79c9b6d3e8d34bb83c99f1930d026

diff --git a/app-emulation/uxn/uxn-0_p20240304.ebuild 
b/app-emulation/uxn/uxn-0_p20240304.ebuild
new file mode 100644
index ..ef6e9fc2dafe
--- /dev/null
+++ b/app-emulation/uxn/uxn-0_p20240304.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="An assembler and emulator for the Uxn stack-machine, written in 
ANSI C"
+HOMEPAGE="https://wiki.xxiivv.com/site/uxn.html
+   https://git.sr.ht/~rabbits/uxn/;
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://git.sr.ht/~rabbits/${PN};
+elif [[ "${PV}" == *_p20240304 ]] ; then
+   COMMIT=e7c25fad05850f0e577fc83a140405ca6ccd93c2
+   SRC_URI="https://git.sr.ht/~rabbits/${PN}/archive/${COMMIT}.tar.gz
+   -> ${P}.tar.gz"
+   S="${WORKDIR}/uxn-${COMMIT}"
+
+   KEYWORDS="~amd64 ~x86"
+else
+   die "wrong package version (PV), please update the ebuild, given: ${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   media-libs/libsdl2:=
+"
+DEPEND="
+   ${RDEPEND}
+"
+
+PATCHES=(
+   "${FILESDIR}/uxn-0_p20230609-build.sh.patch"
+)
+
+src_compile() {
+   CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}"  \
+ ./build.sh --no-run   
\
+   || die "building with \"build.sh\" failed"
+
+   # Fails to assemble via following loop.
+   # Possibly not mean to be assembled by hand.
+   rm -rf ./projects/library ./projects/software/{asma,launcher}.tal || die
+
+   local tal_file
+   local tal_file_base
+
+   while read -r tal_file ; do
+   tal_file_base="$(basename "${tal_file}" .tal)"
+
+   ebegin "Assembling ROM ${tal_file_base}"
+   bin/uxnasm "${tal_file}" "$(dirname 
"${tal_file}")/${tal_file_base}.rom"
+   eend ${?} || die "failed to assemble ${tal_file}"
+   done \
+   < <(find projects -type f -name "*.tal")
+}
+
+src_install() {
+   insinto /usr/bin
+   doins bin/uxn*
+   fperms 0755 /usr/bin/uxn*
+
+   insinto /usr/share/uxn
+   doins -r projects
+
+   einstalldocs
+}



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

2024-03-05 Thread Patrick McLean
commit: 607518764d4a21ab122abd26bd9085ee6479ff58
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Mar  6 00:14:20 2024 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Mar  6 00:14:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60751876

sys-cluster/ceph: add 16.2.15

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

 sys-cluster/ceph/Manifest|   1 +
 sys-cluster/ceph/ceph-16.2.15.ebuild | 483 +++
 2 files changed, 484 insertions(+)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index c2f0d740e99a..dfc9b0e58177 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,4 +1,5 @@
 DIST ceph-16.2.14.tar.gz 157243362 BLAKE2B 
799132ebc815380b2040250915c82c5752983a23e2489e7c12e624b70a93b29c151cb1ab9670e43f2c89d75523655e57860dcdc797d455abc6c6ddc3c880c70c
 SHA512 
397845f44d94e01ae49c5f4dabd75b8bf20c9ece9aeba85f4a5c12154335420cce390bfd94146be3bef763d44e47d15522a84b4f6cdc6bdde77982ac8bd79a54
+DIST ceph-16.2.15.tar.gz 157260936 BLAKE2B 
4de2e35c870ca005bf86f8158709d021785ec592ac316eb1073c259dba8ee9e89f63f70bc90c4a26fe5ba08e523df5722e613be346b599392ca3d8215addd730
 SHA512 
f12f745f55f4e5e4b41de53df638d7fee68054767ed2ec8e7c53d1c74988d18d4673465496c0fbdcf61cf29f62723d4d166dbf8550e2587ea14b30fae444c97a
 DIST ceph-17.2.6.tar.gz 168093221 BLAKE2B 
f79efce9bd7f485b43ae1b4da94a1d9fb3753003f34535e93c80e480ffeaaf054d371f75bca72402da5f9dd460aafa820bb2af550d213bdbcca74aa939180431
 SHA512 
dca9aea2ce210c15fcc34cb06a5dc5b4488ffa36d684166d47ebd87e48b54b6fee0882e1c67007a780e1c25754e9bc6e760cc10f60ea1183263f8504ef2dbd9b
 DIST ceph-17.2.7.tar.gz 168577111 BLAKE2B 
e3470819305e580b4afc658564b9ac261d1db53242acc5d5ec6bf6166024394de927b745b7a752e010fdc020a3829ca5e7d3ac27a99cf60f45876f12fef1c927
 SHA512 
9005de7661c6a9d1054f1388cff2f48eb1af93565ebf852669de546eed594ed6a2668944b25a64c406d00f88bd2f7a6eac2ae96b04789c03ea4d248d1a683e7b
 DIST ceph-18.2.0.tar.gz 197353856 BLAKE2B 
0f2217d9ec4105f72b7b48f7981c5cc098e8f6d46b029acaae1aa91d71486e7dc5726cad0763b5bb0f79d006e289a9f590c95f2494c17f2f09fb492c06db455a
 SHA512 
fe6a3ca4227cc05b5effc33a02670c466583ec9e4c7c025241248223992254e6e6551d7db486d5ead36bf0ba922d54e0aabc2aaf456d4593679376ec88bd971a

diff --git a/sys-cluster/ceph/ceph-16.2.15.ebuild 
b/sys-cluster/ceph/ceph-16.2.15.ebuild
new file mode 100644
index ..9fed2b0553e6
--- /dev/null
+++ b/sys-cluster/ceph/ceph-16.2.15.ebuild
@@ -0,0 +1,483 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+LUA_COMPAT=( lua5-3 )
+CMAKE_MAKEFILE_GENERATOR=emake
+
+inherit check-reqs bash-completion-r1 cmake python-r1 flag-o-matic \
+   lua-single udev readme.gentoo-r1 toolchain-funcs systemd 
tmpfiles
+
+SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
+KEYWORDS="~amd64 ~arm64 ~ppc64"
+
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="https://ceph.com/;
+
+LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
+SLOT="0"
+
+CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
+
+IUSE="
+   babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana
+   jemalloc jaeger kafka kerberos ldap lttng +mgr numa pmdk rabbitmq
+   +radosgw rbd-rwl rbd-ssd rdma rgw-lua selinux +ssl spdk +sqlite 
+system-boost
+   systemd +tcmalloc test uring xfs zbd zfs
+"
+
+IUSE+="$(printf "cpu_flags_x86_%s\n" ${CPU_FLAGS_X86[@]})"
+
+DEPEND="
+   ${LUA_DEPS}
+   ${PYTHON_DEPS}
+   acct-group/ceph
+   acct-user/ceph
+   virtual/libudev:=
+   app-arch/bzip2:=
+   app-arch/lz4:=
+   app-arch/snappy:=
+   >=app-arch/snappy-1.1.9-r1
+   app-arch/zstd:=
+   app-shells/bash:0
+   app-misc/jq:=
+   dev-cpp/gflags:=
+   =dev-util/google-perftools-2.6.1:= )
+   jaeger? ( dev-cpp/nlohmann_json:= )
+   kafka? ( dev-libs/librdkafka:= )
+   kerberos? ( virtual/krb5 )
+   ldap? ( net-nds/openldap:= )
+   lttng? ( dev-util/lttng-ust:= )
+   pmdk? ( dev-libs/pmdk:= )
+   rabbitmq? ( net-libs/rabbitmq-c:= )
+   radosgw? (
+   dev-libs/icu:=
+   dev-libs/expat:=
+   net-misc/curl:=[curl_ssl_openssl]
+   )
+   rbd-rwl? ( dev-libs/pmdk:= )
+   rdma? ( sys-cluster/rdma-core:= )
+   spdk? ( dev-util/cunit )
+   sqlite? ( dev-db/sqlite:= )
+   system-boost? ( dev-libs/boost:=[context,python,${PYTHON_USEDEP},zlib] )
+   !system-boost? ( $(python_gen_impl_dep '' 3.{10..11}) )
+   uring? ( sys-libs/liburing:= )
+   xfs? ( sys-fs/xfsprogs:= )
+   zbd? ( sys-block/libzbd:= )
+   zfs? ( sys-fs/zfs:= )
+"
+# https://bugs.gentoo.org/907739
+   "${FILESDIR}/ceph-18.2.0-cython3.patch"
+)
+
+check-reqs_export_vars() {
+   CHECKREQS_DISK_BUILD="6G"
+
+   if use system-boost; 

[gentoo-commits] repo/proj/guru:dev commit in: net-vpn/candy/

2024-03-05 Thread Julien Roy
commit: 7e57689bc0f7401976e044a0da02632726e6340d
Author: Xin Yang  icloud  com>
AuthorDate: Tue Mar  5 03:28:59 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Wed Mar  6 00:58:01 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7e57689b

net-vpn/candy: version bump to 4.1, drop olds

Signed-off-by: Xin Yang  icloud.com>
Closes: https://github.com/gentoo/guru/pull/148
Signed-off-by: Julien Roy  jroy.ca>

 net-vpn/candy/Manifest |  3 +-
 net-vpn/candy/candy-3.9.1.ebuild   | 52 --
 .../candy/{candy-4.0.ebuild => candy-4.1.ebuild}   |  6 ---
 3 files changed, 1 insertion(+), 60 deletions(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index ae1de07b3a..8691142b70 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1 @@
-DIST candy-3.9.1.tar.gz 37847 BLAKE2B 
af7c857a8a41f0e98bd744162be563b973e20a630fb505de91155ab9fb7a17679a2bb9f69db8c737258d1293c5d77ad96a65a2b22455512b8f97390a7368165f
 SHA512 
aa9727c74ab7c9536331098f11a2837daa51aa58503cbf5b43536afedf5eea8d30db296f515c4689cf44c980eea5a88e06ad161836fe64d4146de4fdce9d99ac
-DIST candy-4.0.tar.gz 43112 BLAKE2B 
84c3fbab30dc1d40ba73e7c90a02bf6c13b9bb0de2339fe128c958242213986dc2c490c680032c98f9a3a849e237f1f22274b600e55ed94aea91d9529bf972bf
 SHA512 
9f76ab338cec381e1421040055ba73882a32f6b2b9bebe8fbc289c1c0e418506a57698fa8e551a31a918dfbcfa668dbb6c1d82390a2496a7fe35d6a17adacd64
+DIST candy-4.1.tar.gz 43205 BLAKE2B 
c999099302690f759bfb877fdd9213e7b4d5a2cce649936913a3c6a40e79a72149a1dc971649ff9773fd0bfc1d56c1a8b97edffeaa724c2656bb846ee26827d9
 SHA512 
f019de51cec3942b854d7ffd35f9f7a669a26a967e78383bab6c5f2c58fca02f40e8fe9f502bd6e395623f917f2ccc6c8a2f05b96d4f164de4f018f763913cda

diff --git a/net-vpn/candy/candy-3.9.1.ebuild b/net-vpn/candy/candy-3.9.1.ebuild
deleted file mode 100644
index 843aa73cde..00
--- a/net-vpn/candy/candy-3.9.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake systemd
-
-DESCRIPTION="Another virtual private network that supports peer-to-peer 
connections"
-HOMEPAGE="https://github.com/lanthora/candy;
-SRC_URI="https://github.com/lanthora/candy/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   dev-libs/uriparser
-   dev-libs/libconfig
-   net-libs/ixwebsocket[ws]
-   dev-libs/openssl
-   sys-libs/zlib
-   dev-libs/libfmt
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-   dev-libs/spdlog
-"
-
-src_prepare() {
-   eapply "${FILESDIR}/${P}-use-system-ixwebsocket.patch"
-   cmake_src_prepare
-   default
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=OFF
-   )
-   cmake_src_configure
-}
-
-src_install(){
-   cmake_src_install
-   default
-
-   insinto /etc
-   doins candy.conf
-   fperms 0644 /etc/candy.conf
-
-   systemd_dounit candy.service
-   systemd_dounit candy@.service
-}

diff --git a/net-vpn/candy/candy-4.0.ebuild b/net-vpn/candy/candy-4.1.ebuild
similarity index 86%
rename from net-vpn/candy/candy-4.0.ebuild
rename to net-vpn/candy/candy-4.1.ebuild
index 70b9c5a55e..4067f7cd8d 100644
--- a/net-vpn/candy/candy-4.0.ebuild
+++ b/net-vpn/candy/candy-4.1.ebuild
@@ -24,12 +24,6 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-   eapply "${FILESDIR}/${P}-show-version-and-use-cflags-env.patch"
-   cmake_src_prepare
-   default
-}
-
 src_install(){
cmake_src_install
default



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

2024-03-05 Thread Sam James
commit: f9815afbd29ae6b013e3bb96bb33b727d10bfc35
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 20:38:20 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9815afb

mail-mta/nullmailer: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/859529
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 mail-mta/nullmailer/nullmailer-2.2-r2.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild 
b/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild
index 45200b98d06f..a176407718a9 100644
--- a/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild
+++ b/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -66,6 +66,11 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=odr
+   # https://bugs.gentoo.org/859529
+   # https://github.com/bruceg/nullmailer/issues/94
+   filter-lto
+
# https://github.com/bruceg/nullmailer/pull/31/commits
append-lfs-flags #471102
econf \



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

2024-03-05 Thread Sam James
commit: b3713507aa127da8d7a6b498fec2a7753b85f334
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 23:41:16 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3713507

dev-util/plan9port: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/858452
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/plan9port/plan9port-0_pre20230331-r1.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-util/plan9port/plan9port-0_pre20230331-r1.ebuild 
b/dev-util/plan9port/plan9port-0_pre20230331-r1.ebuild
index 4373389cdfc5..2b558154c3ee 100644
--- a/dev-util/plan9port/plan9port-0_pre20230331-r1.ebuild
+++ b/dev-util/plan9port/plan9port-0_pre20230331-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit multiprocessing toolchain-funcs readme.gentoo-r1
+inherit flag-o-matic multiprocessing toolchain-funcs readme.gentoo-r1
 
 MY_HASH="cc4571fec67407652b03d6603ada6580de2194dc"
 MY_P="${PN}-${MY_HASH}"
@@ -88,6 +88,11 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/858452
+   # https://github.com/9fans/plan9port/issues/646
+   filter-lto
+
local -a myconf=(
CC9="$(tc-getCC)"
CC9FLAGS="'${CFLAGS} ${LDFLAGS}'"



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

2024-03-05 Thread Sam James
commit: e8843079a4a0cb9e8d549b4ca5d52b787c79b23e
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 21:29:43 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8843079

sci-libs/profnet: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/862921
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 sci-libs/profnet/profnet-1.0.22.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/sci-libs/profnet/profnet-1.0.22.ebuild 
b/sci-libs/profnet/profnet-1.0.22.ebuild
index ba10260fc635..dfc60db98e74 100644
--- a/sci-libs/profnet/profnet-1.0.22.ebuild
+++ b/sci-libs/profnet/profnet-1.0.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,6 +24,12 @@ src_prepare() {
 }
 
 src_compile() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/862921
+   # No upstream bug. Upstream link seemingly doesn't provide any 
information
+   # about this specific project.
+   filter-lto
+
append-fflags $(test-flags-FC -fallow-argument-mismatch)
emake \
F77="$(tc-getF77)" \



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

2024-03-05 Thread Sam James
commit: e6e08c21c9ac1f32715c11caba482883d824b9c8
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 23:49:39 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e08c21

app-text/enchant: make sure elibtoolize is applied

Needed to e.g. pass LTO warning flags through to the linker.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-text/enchant/enchant-2.5.0.ebuild | 9 -
 app-text/enchant/enchant-2.6.1.ebuild | 9 -
 2 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/app-text/enchant/enchant-2.5.0.ebuild 
b/app-text/enchant/enchant-2.5.0.ebuild
index 127c7ab47e6b..22f22e0ed91a 100644
--- a/app-text/enchant/enchant-2.5.0.ebuild
+++ b/app-text/enchant/enchant-2.5.0.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
+inherit libtool
+
 DESCRIPTION="Spellchecker wrapping library"
 HOMEPAGE="https://abiword.github.io/enchant/;
 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/v${PV}/${P}.tar.gz;
@@ -37,6 +39,11 @@ QA_CONFIG_IMPL_DECL_SKIP=(
alignof
 )
 
+src_prepare() {
+   default
+   elibtoolize
+}
+
 src_configure() {
local myconf=(
--disable-static

diff --git a/app-text/enchant/enchant-2.6.1.ebuild 
b/app-text/enchant/enchant-2.6.1.ebuild
index 784efb038eaf..d75574d1ad61 100644
--- a/app-text/enchant/enchant-2.6.1.ebuild
+++ b/app-text/enchant/enchant-2.6.1.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
+inherit libtool
+
 DESCRIPTION="Spellchecker wrapping library"
 HOMEPAGE="https://abiword.github.io/enchant/;
 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/v${PV}/${P}.tar.gz;
@@ -39,6 +41,11 @@ QA_CONFIG_IMPL_DECL_SKIP=(
unreachable
 )
 
+src_prepare() {
+   default
+   elibtoolize
+}
+
 src_configure() {
local myconf=(
--disable-static



[gentoo-commits] repo/gentoo:master commit in: games-strategy/scorched3d/

2024-03-05 Thread Sam James
commit: 71cd74c50f6b6fa79e36577642e9d681ebaa31bc
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 23:55:11 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71cd74c5

games-strategy/scorched3d: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/859265
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 games-strategy/scorched3d/scorched3d-44-r3.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/games-strategy/scorched3d/scorched3d-44-r3.ebuild 
b/games-strategy/scorched3d/scorched3d-44-r3.ebuild
index 526a838be935..a9bcf92633c9 100644
--- a/games-strategy/scorched3d/scorched3d-44-r3.ebuild
+++ b/games-strategy/scorched3d/scorched3d-44-r3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 WX_GTK_VER="3.2-gtk3"
-inherit autotools desktop edos2unix wxwidgets
+inherit autotools desktop edos2unix flag-o-matic wxwidgets
 
 DESCRIPTION="Multi-player tank battle in 3D (OpenGL)"
 HOMEPAGE="http://www.scorched3d.co.uk/;
@@ -69,6 +69,12 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=odr
+   # https://bugs.gentoo.org/859265
+   # Upstream is inactive, latest activity from 9 years ago, sourceforge
+   # project. Not filing a bug.
+   filter-lto
+
setup-wxwidgets
econf \
--datadir="${EPREFIX}"/usr/share/${PN} \



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

2024-03-05 Thread Sam James
commit: 5274fa9a986cf63202ba3c0b4b333bd7ff894d83
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 00:28:03 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5274fa9a

media-gfx/graphviz: make sure elibtoolize is applied

Needed to e.g. pass LTO warning flags through to the linker.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-gfx/graphviz/graphviz-9.0.0.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/media-gfx/graphviz/graphviz-9.0.0.ebuild 
b/media-gfx/graphviz/graphviz-9.0.0.ebuild
index db2dd159e4a5..7dc66d7742f7 100644
--- a/media-gfx/graphviz/graphviz-9.0.0.ebuild
+++ b/media-gfx/graphviz/graphviz-9.0.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 PYTHON_COMPAT=( python3_{10..12} )
-inherit python-single-r1
+inherit libtool python-single-r1
 
 DESCRIPTION="Open Source Graph Visualization Software"
 HOMEPAGE="https://www.graphviz.org/ https://gitlab.com/graphviz/graphviz/;
@@ -141,6 +141,11 @@ pkg_setup() {
use python && python-single-r1_pkg_setup
 }
 
+src_prepare() {
+   default
+   elibtoolize
+}
+
 src_configure() {
local myconf=(
# Speeds up the libltdl configure



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

2024-03-05 Thread Sam James
commit: 47f17a073e851205befc429e9a03fa71041135cd
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 00:17:15 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f17a07

dev-python/pygal: fix dependencies for doc building

A sphinx plugin wasn't specified, and therefore wasn't guaranteed to be
installed.

Closes: https://bugs.gentoo.org/869476
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pygal/pygal-3.0.4-r1.ebuild 
b/dev-python/pygal/pygal-3.0.4-r1.ebuild
index 056f080194f7..5eae9da5abd7 100644
--- a/dev-python/pygal/pygal-3.0.4-r1.ebuild
+++ b/dev-python/pygal/pygal-3.0.4-r1.ebuild
@@ -37,7 +37,7 @@ BDEPEND="
 # CHANGELOG is a symlink to docs/changelog.rst
 DOCS=( docs/changelog.rst README.md )
 
-distutils_enable_sphinx docs
+distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
 EPYTEST_XDIST=1
 distutils_enable_tests pytest
 



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

2024-03-05 Thread Sam James
commit: 39e30e6822a8106b66c07b709524a0b8032015c1
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 01:06:31 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39e30e68

net-p2p/arti: add system dependency on zstd

Avoids building a static vendored copy "because rust".

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 net-p2p/arti/{arti-1.1.13.ebuild => arti-1.1.13-r1.ebuild} | 2 ++
 net-p2p/arti/arti-.ebuild  | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/net-p2p/arti/arti-1.1.13.ebuild 
b/net-p2p/arti/arti-1.1.13-r1.ebuild
similarity index 99%
rename from net-p2p/arti/arti-1.1.13.ebuild
rename to net-p2p/arti/arti-1.1.13-r1.ebuild
index 43f5e046efe2..9b9bb14fec65 100644
--- a/net-p2p/arti/arti-1.1.13.ebuild
+++ b/net-p2p/arti/arti-1.1.13-r1.ebuild
@@ -558,6 +558,7 @@ LICENSE+="
 SLOT="0"
 
 DEPEND="app-arch/xz-utils
+   app-arch/zstd:=
dev-db/sqlite:3
dev-libs/openssl:="
 RDEPEND="${DEPEND}"
@@ -574,6 +575,7 @@ src_unpack() {
 }
 
 src_compile() {
+   export ZSTD_SYS_USE_PKG_CONFIG=1
for crate in crates/*; do
pushd "${crate}" || die
cargo_src_compile

diff --git a/net-p2p/arti/arti-.ebuild b/net-p2p/arti/arti-.ebuild
index 8a5e2a599e77..09c689cf5286 100644
--- a/net-p2p/arti/arti-.ebuild
+++ b/net-p2p/arti/arti-.ebuild
@@ -31,6 +31,7 @@ LICENSE+="
 SLOT="0"
 
 DEPEND="app-arch/xz-utils
+   app-arch/zstd:=
dev-db/sqlite:3
dev-libs/openssl:="
 RDEPEND="${DEPEND}"
@@ -47,6 +48,7 @@ src_unpack() {
 }
 
 src_compile() {
+   export ZSTD_SYS_USE_PKG_CONFIG=1
for crate in crates/*; do
pushd "${crate}" || die
cargo_src_compile



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

2024-03-05 Thread Sam James
commit: ab9c13f970d477afa3ebc37fc6fbf2eb096ab023
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 03:11:59 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab9c13f9

dev-util/wachy: add missing dependency on ncurses

The ncurses crate is used. It causes the program to link against
a system ncurses, which means in turn we want to subscribe to its slot.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 .../{wachy-0.1.0_alpha6.ebuild => wachy-0.1.0_alpha6-r1.ebuild}  | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-util/wachy/wachy-0.1.0_alpha6.ebuild 
b/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
similarity index 96%
rename from dev-util/wachy/wachy-0.1.0_alpha6.ebuild
rename to dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
index c70001be06c0..dd3a2f680892 100644
--- a/dev-util/wachy/wachy-0.1.0_alpha6.ebuild
+++ b/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2017-2022 Gentoo Authors
+# Copyright 2017-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Auto-Generated by cargo-ebuild 0.3.2-alpha.0
@@ -122,6 +122,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 RESTRICT="mirror"
 
+DEPEND="sys-libs/ncurses:="
+RDEPEND="${DEPEND}"
+
 QA_FLAGS_IGNORED="usr/bin/wachy"
 
 DOCS=(



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

2024-03-05 Thread Sam James
commit: 2f1a06ebbb4459b6ccb2aa96dc4646c2d67fb216
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 01:46:26 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f1a06eb

dev-util/sccache: make the zstd dependency effective

It is needed by the zstd-sys crate, but only if we tell it to use the
system copy...

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/sccache/{sccache-0.5.4.ebuild => sccache-0.5.4-r1.ebuild} | 3 ++-
 dev-util/sccache/sccache-.ebuild   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-util/sccache/sccache-0.5.4.ebuild 
b/dev-util/sccache/sccache-0.5.4-r1.ebuild
similarity index 99%
rename from dev-util/sccache/sccache-0.5.4.ebuild
rename to dev-util/sccache/sccache-0.5.4-r1.ebuild
index eb47216271ca..97207cbb5aeb 100644
--- a/dev-util/sccache/sccache-0.5.4.ebuild
+++ b/dev-util/sccache/sccache-0.5.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2017-2023 Gentoo Authors
+# Copyright 2017-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Autogenerated by pycargoebuild 0.7
@@ -444,6 +444,7 @@ src_configure() {
# Should be able to drop this once we have a 'gentoo' profile
sed -i 's/strip = true/strip = false/' Cargo.toml || die
 
+   export ZSTD_SYS_USE_PKG_CONFIG=1
myfeatures=(
native-zlib
$(usev azure)

diff --git a/dev-util/sccache/sccache-.ebuild 
b/dev-util/sccache/sccache-.ebuild
index 2a99e5798f56..ebb46ec79d8d 100644
--- a/dev-util/sccache/sccache-.ebuild
+++ b/dev-util/sccache/sccache-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2017-2023 Gentoo Authors
+# Copyright 2017-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Autogenerated by pycargoebuild 0.7
@@ -65,6 +65,7 @@ src_configure() {
# Should be able to drop this once we have a 'gentoo' profile
sed -i 's/strip = true/strip = false/' Cargo.toml || die
 
+   export ZSTD_SYS_USE_PKG_CONFIG=1
myfeatures=(
native-zlib
$(usev azure)



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

2024-03-05 Thread Sam James
commit: 95bd4d2e42ab5a2cc58e1b683aa24273ad3078e5
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 02:57:20 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95bd4d2e

dev-util/ply: mark as LTO-unsafe, strict-aliasing unsafe

Closes: https://bugs.gentoo.org/858458
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 dev-util/ply/ply-2.3.0.ebuild | 16 ++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/dev-util/ply/ply-2.3.0.ebuild b/dev-util/ply/ply-2.3.0.ebuild
index d6512d640f1a..ba9de28027fe 100644
--- a/dev-util/ply/ply-2.3.0.ebuild
+++ b/dev-util/ply/ply-2.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools linux-info
+inherit autotools flag-o-matic linux-info
 
 DESCRIPTION="Dynamic instrumentation of the Linux kernel with BPF and kprobes"
 HOMEPAGE="https://github.com/iovisor/ply;
@@ -34,6 +34,18 @@ src_prepare() {
eautoreconf
 }
 
+src_configure() {
+   # -Werror=strict-aliasing
+   # https://bugs.gentoo.org/858458
+   # https://github.com/iovisor/ply/issues/92
+   #
+   # Do not trust it with LTO either.
+   append-flags -fno-strict-aliasing
+   filter-lto
+
+   default
+}
+
 src_install() {
default
rm -f "${ED}/usr/share/doc/${P}/COPYING"



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

2024-03-05 Thread Sam James
commit: e886fb559492e6f472ff70aa2794c33e5225c59e
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 21:39:55 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e886fb55

media-gfx/arss: mark as LTO-unsafe, strict-aliasing unsafe

Closes: https://bugs.gentoo.org/859604
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-gfx/arss/arss-0.2.3-r1.ebuild | 16 ++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/media-gfx/arss/arss-0.2.3-r1.ebuild 
b/media-gfx/arss/arss-0.2.3-r1.ebuild
index a194c54b448f..04680a5ffea3 100644
--- a/media-gfx/arss/arss-0.2.3-r1.ebuild
+++ b/media-gfx/arss/arss-0.2.3-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 CMAKE_IN_SOURCE_BUILD="true"
 MY_P="${P}-src"
-inherit cmake
+inherit cmake flag-o-matic
 
 DESCRIPTION="Analysis & Resynthesis Sound Spectrograph"
 HOMEPAGE="https://arss.sourceforge.net;
@@ -22,3 +22,15 @@ RDEPEND="${DEPEND}"
 PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 DOCS=( ../AUTHORS ../ChangeLog )
+
+src_compile() {
+   # -Werror=strict-aliasing
+   # https://bugs.gentoo.org/859604
+   # Upstream is on sourceforge, inactive since 2009. No bug filed.
+   #
+   # Do not trust it for LTO either.
+   append-flags -fno-strict-aliasing
+   filter-lto
+
+   default
+}



[gentoo-commits] repo/gentoo:master commit in: games-fps/rott/

2024-03-05 Thread Sam James
commit: 214dbaa6ba17af414093d38e2310b48a0e01967e
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Mar  5 23:05:30 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:36:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214dbaa6

games-fps/rott: mark as LTO-unsafe

The upstream website is being clever and suggesting that distros are the
real upstreams, and that releases happen by, every couple of years,
collecting all the patches distros have applied and turning that into a
release.

Hopeless. No bug reporting mechanism.

Closes: https://bugs.gentoo.org/858758
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 games-fps/rott/rott-1.1.2-r1.ebuild | 16 ++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/games-fps/rott/rott-1.1.2-r1.ebuild 
b/games-fps/rott/rott-1.1.2-r1.ebuild
index a11a0d2074c1..7b80302df3e4 100644
--- a/games-fps/rott/rott-1.1.2-r1.ebuild
+++ b/games-fps/rott/rott-1.1.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="Rise of the Triad for Linux!"
 HOMEPAGE="https://www.icculus.org/rott/;
@@ -33,6 +33,18 @@ src_prepare() {
 }
 
 src_compile() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/858758
+   #
+   # The upstream homepage notes that you should send bug reports and 
feature
+   # requests to your distro. Rationale: "1.1.2 contains all the debian
+   # patches from the previous 2.5 years" and "1.1.1. contains all the 
debian
+   # and fedora patches that accumulated during the past year."
+   #
+   # This is an interesting collaborative model that unfortunately means 
there
+   # will be NO bug report.
+   filter-lto
+
tc-export CC
emake -j1 \
EXTRACFLAGS="${CFLAGS} -DDATADIR=\\\"/usr/share/${PN}/\\\"" \



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

2024-03-05 Thread Yixun Lan
commit: e7ec288a59d6d110549e7aa05a409cf23723cc6c
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Mar  5 00:02:08 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Mar  5 23:37:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7ec288a

net-im/telegram-desktop: drop 4.13.1

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

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

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index dd1f872869d4..f7ebf7e53649 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -1,3 +1,2 @@
-DIST tdesktop-4.13.1-full.tar.gz 67876971 BLAKE2B 
6743aabae75f06e8691ed77ff22836a0276313756240ec864ac93eba7c04cd2d41c4f844fdea6f89d482e5e0e70793dc7d1fb3f19b788397abab56f631134866
 SHA512 
4cbbfaf6e5ecc90b429fc2207a106988ab839aa42d0d225841069d20bf2152fada489c28e6816eefa143724f5b8ea4db6995a0612f0df195d8dbd5f40d8a63a3
 DIST tdesktop-4.14.15-full.tar.gz 68147116 BLAKE2B 
32e2719260cc48948ed85644e4079014ba5d44d003f00f8c274ea5e9ad6af0f893ffbc56d523e37a382080f13ebd1d46f0059927c6bafe9710f5eee11e44b449
 SHA512 
12812fa1fd067fca03b2e5cb04502ef05e98368b91a4ed5458a61a0bea8b3d6daf6c32b7632c170fe0904acb63eb422f6fa6364e4af18f73e49659e2d50f531b
 DIST tdesktop-4.15.0-full.tar.gz 68286818 BLAKE2B 
2bd4d59370a4f97aa3c1b1d64fa7eea114539edcff46ea30a5361cefeeb1de8a1954be91a1a420ddc1b1a30970944387c2cd3749badaa494e53862066c624ac3
 SHA512 
95aa5f14a9a88b9c6421049445f59f1c5c5d7ab4ca4e8b8f4ab7389bdb8f3cc6b29fea270574881633035acec769ba271261f84ec269010c63af28a03719da98

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

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

2024-03-05 Thread Yixun Lan
commit: 8fdf538d3b6bbcaf7d33f1ab43f0c3e4d98be044
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Mar  4 23:59:46 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Mar  5 23:37:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdf538d

net-im/telegram-desktop: drop dep of virtual/opengl

telegram doesn't depend on virtual/opengl directly

Closes: https://bugs.gentoo.org/926102
Signed-off-by: Yixun Lan  gentoo.org>

 .../telegram-desktop-4.15.0-r1.ebuild  | 237 +
 1 file changed, 237 insertions(+)

diff --git a/net-im/telegram-desktop/telegram-desktop-4.15.0-r1.ebuild 
b/net-im/telegram-desktop/telegram-desktop-4.15.0-r1.ebuild
new file mode 100644
index ..efdb363d8989
--- /dev/null
+++ b/net-im/telegram-desktop/telegram-desktop-4.15.0-r1.ebuild
@@ -0,0 +1,237 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit xdg cmake python-any-r1 optfeature flag-o-matic
+
+DESCRIPTION="Official desktop client for Telegram"
+HOMEPAGE="https://desktop.telegram.org;
+
+MY_P="tdesktop-${PV}-full"
+SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv"
+IUSE="dbus enchant +fonts screencast qt6 qt6-imageformats wayland webkit +X"
+REQUIRED_USE="
+   qt6-imageformats? ( qt6 )
+"
+
+KIMAGEFORMATS_RDEPEND="
+   media-libs/libavif:=
+   media-libs/libheif:=
+   >=media-libs/libjxl-0.8.0:=
+"
+CDEPEND="
+   !net-im/telegram-desktop-bin
+   app-arch/lz4:=
+   dev-cpp/abseil-cpp:=
+   >=dev-cpp/glibmm-2.77:2.68
+   dev-libs/glib:2
+   dev-libs/libdispatch
+   dev-libs/openssl:=
+   dev-libs/protobuf
+   dev-libs/xxhash
+   media-libs/libjpeg-turbo:=
+   ~media-libs/libtgvoip-2.4.4_p20221208
+   media-libs/openal
+   media-libs/opus
+   media-libs/rnnoise
+   ~media-libs/tg_owt-0_pre20230921:=[screencast=,X=]
+   media-video/ffmpeg:=[opus,vpx]
+   sys-libs/zlib:=[minizip]
+   !enchant? ( >=app-text/hunspell-1.7:= )
+   enchant? ( app-text/enchant:= )
+   !qt6? (
+   >=dev-qt/qtcore-5.15:5=
+   >=dev-qt/qtgui-5.15:5=[dbus?,jpeg,png,wayland?,X?]
+   >=dev-qt/qtimageformats-5.15:5
+   >=dev-qt/qtnetwork-5.15:5[ssl]
+   >=dev-qt/qtsvg-5.15:5
+   >=dev-qt/qtwidgets-5.15:5[png,X?]
+   kde-frameworks/kcoreaddons:5
+   webkit? (
+   >=dev-qt/qtdeclarative-5.15:5
+   >=dev-qt/qtwayland-5.15:5
+   )
+   )
+   qt6? (
+   
>=dev-qt/qtbase-6.5:6=[dbus?,gui,network,opengl,wayland?,widgets,X?]
+   >=dev-qt/qtimageformats-6.5:6
+   >=dev-qt/qtsvg-6.5:6
+   webkit? (
+   >=dev-qt/qtdeclarative-6.5:6
+   >=dev-qt/qtwayland-6.5:6[compositor]
+   )
+   qt6-imageformats? (
+   >=dev-qt/qtimageformats-6.5:6=
+   ${KIMAGEFORMATS_RDEPEND}
+   )
+   )
+   X? (
+   x11-libs/libxcb:=
+   x11-libs/xcb-util-keysyms
+   )
+"
+RDEPEND="${CDEPEND}
+   webkit? ( net-libs/webkit-gtk:4.1 net-libs/webkit-gtk:6 )
+"
+DEPEND="${CDEPEND}
+   >=dev-cpp/cppgir-0_p20240110
+   >=dev-cpp/ms-gsl-4
+   dev-cpp/expected-lite
+   dev-cpp/range-v3
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   >=dev-build/cmake-3.16
+   >=dev-cpp/cppgir-0_p20230926
+   dev-util/gdbus-codegen
+   virtual/pkgconfig
+   wayland? ( dev-util/wayland-scanner )
+"
+
+PATCHES=(
+   "${FILESDIR}/tdesktop-4.10.0-system-cppgir.patch"
+   "${FILESDIR}/tdesktop-4.10.5-qt_compare.patch"
+)
+
+pkg_pretend() {
+   if has ccache ${FEATURES}; then
+   ewarn "ccache does not work with ${PN} out of the box"
+   ewarn "due to usage of precompiled headers"
+   ewarn "check bug https://bugs.gentoo.org/715114 for more info"
+   ewarn
+   fi
+}
+
+src_prepare() {
+   # Bundle kde-frameworks/kimageformats for qt6, since it's impossible to
+   #   build in gentoo right now.
+   if use qt6-imageformats; then
+   sed -e 's/DESKTOP_APP_USE_PACKAGED_LAZY/TRUE/' -i \
+   cmake/external/kimageformats/CMakeLists.txt || die
+   printf '%s\n' \
+   'Q_IMPORT_PLUGIN(QAVIFPlugin)' \
+   'Q_IMPORT_PLUGIN(HEIFPlugin)' \
+   'Q_IMPORT_PLUGIN(QJpegXLPlugin)' \
+   >> 
cmake/external/qt/qt_static_plugins/qt_static_plugins.cpp || die
+   fi
+   # kde-frameworks/kcoreaddons is 

[gentoo-commits] repo/proj/guru:master commit in: x11-terms/rio/

2024-03-05 Thread Julien Roy
commit: 03dddc861796e7eb8ae52fb8034897d2e0b0b8cc
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:21:26 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03dddc86

x11-terms/rio: add 0.0.35

Used 'sed' to remove strip option from Cargo.toml

Signed-off-by: Jonas Frei  pm.me>

 x11-terms/rio/Manifest  |   8 +
 x11-terms/rio/rio-0.0.35.ebuild | 462 
 2 files changed, 470 insertions(+)

diff --git a/x11-terms/rio/Manifest b/x11-terms/rio/Manifest
index 5f585e23e2..22cb0302c3 100644
--- a/x11-terms/rio/Manifest
+++ b/x11-terms/rio/Manifest
@@ -242,6 +242,7 @@ DIST proc-macro2-1.0.69.crate 44271 BLAKE2B 
9d1531a0b123e6238363d574bee03ad05045
 DIST profiling-1.0.11.crate 31186 BLAKE2B 
2987c817dfae8f3e2808b7f6b0380cb668e9fa74bc8f2e924431a3273a8583f16d979105b67d55783c8836534b3d2742987e4372dfe69339a7a08c93a63a6781
 SHA512 
db82421d99a294d0169f326916a47e23870dbee60e413ef29c3ee941c3b6953b7ded15fc2aecb81f6ec31ec7eea0941c2cf61df74d46827845a745056807bcb7
 DIST qoi-0.4.1.crate 71135 BLAKE2B 
8b4e2ebfdd6df425efb1326912e8db02258e570320fdeef465aa8b03f3248cd811bedaa17c15902f851083cc1db06a2b500aeddf734345eb25af0d835300b2f0
 SHA512 
884cde33bfb2d02716daa5f309890093bdb7b3f53eb06aca0b6eff0b7a66fd67cb8b9acd510d19e3ae7718930add971e871532a1605e4989639bf72f59329377
 DIST quick-xml-0.30.0.crate 161923 BLAKE2B 
5b9bfd3248f038aa2c085ce045e9f0cbbec757d7b4457db66a5a611d52d0e42082ae68953f08706d1e102164ceac80c7caeb40f0f9f494c8daf470c35471644c
 SHA512 
e731f9c6795da7ad705c96544b39560dc27e2ea3c468c3dffe9589bb314074e96acbc0ab454f94556e0d9569c55d6cd8d1c7be2c823a77bbb3165ec8393d9aee
+DIST quick-xml-0.31.0.crate 172236 BLAKE2B 
b83c7f485a30576027a4ae77aa23cd6284942d786f0f0a14faafdfecff646371ba15133b3ba90f820183c8537c8ac47ad3e1e7deaad65e56761bc662be406026
 SHA512 
9b1f4f9c32694ccb244938a9a4e9373c3902314afb6af5d2f6b1be55e5ec63fee5cf1085f8f32161570cc10fdd96f3375c7564b1d884bb152542b86593f175de
 DIST quote-1.0.33.crate 28090 BLAKE2B 
77c4b166f1200e1ee2ab94a5014acd334c1fe4b7d72851d73768d491c56c6779a0882a304c1f30c88732a6168351f0f786b10516ae537cff993892a749175848
 SHA512 
c1e76c3c017e8554eebe309f8167fd56fce931981c06798aa85a0cc6d64a9cba6ab103f5a1324e69c6f9ca5dc47a8e31ff2e847850542748697afcd265b5939c
 DIST rand-0.4.6.crate 76401 BLAKE2B 
5593ad2d7fb8214d917e2eb734f5eee548f48fd699c9fccc0de9c0c6ee49803a426492a25fda2ffcf844169e2bca00709d4dcd9ceede72a4667ec431f5502fda
 SHA512 
a91c6da7188b426bf9cb832892ee2af87c4cd65fad505c34e9c63343da71efe8c0c67b75c405dca5345317b7940d1d0fc0b20be85afd6b3089203e5698d86f0a
 DIST rand-0.8.5.crate 87113 BLAKE2B 
516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c
 SHA512 
8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2
@@ -266,6 +267,7 @@ DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B 
ab7ef94e0230ddc9b363f038254a180881b
 DIST renderdoc-sys-1.0.0.crate 10336 BLAKE2B 
9f9b0221f11376093771aa9d91b2122a60fab45ae3363e38a778b2cd647729f6ac8df4e79049079ad1e84b4d60b362b5658f080a91abd5939df11c482c060e8c
 SHA512 
a9e36c82853edf10e143fde02359aceac879ca42d23c95a3a7c66e99ef027a6449937136c9d1c90efc1cc542aa532513690fa235e7cfbcc59ab951c535a26890
 DIST rio-0.0.28.tar.gz 34177343 BLAKE2B 
38a2077a85d3008a361a91d76581128e73bc6a49b7a656d64f44c13512772deec6d0190880f323e41e12c6f6552549675a3f06ae7b20285f0a3bdb0bb5c01292
 SHA512 
6dd1992ab761d6c5b7ad78c483fe0096a4d1c93b241480c14cf10799cc831029023989f676be835d744f7a170733f3503f37f90ed92e3790dfb8fa334c07e68b
 DIST rio-0.0.34.tar.gz 35557809 BLAKE2B 
e757ee50445664044c44e49e93588b096876c8e4a6c4fd7a0b0229704324d7c6f8da64936bf77eeba271b28cf34760ff92f452c87f3452e30e4871fa4d21e180
 SHA512 
9a0a01e02a432e030b9dc01fcf62606016f57724b8bdf11b4f347a077ff373bc7e03843294e883ff4add24a6d69e9baf628ea0b05252a7028dc18e315f44a4de
+DIST rio-0.0.35.tar.gz 35557061 BLAKE2B 
426e253957ff7d0635d3c050c4204f9f22884da1e539b4b6198038bba12acd74c60ad265c069fa678b4dc7c00a617980d5223f517c92e338590eecad76b96d47
 SHA512 
3aa2754a210b1a9a260a5073f777dd5b41736005b28706fbeb9aa7105b03c480cc9a89259c9d8a8083a289bcb65a27567ef001181b410244a85ddac57f09c2a1
 DIST roxmltree-0.18.1.crate 43040 BLAKE2B 
3b27385805466363d082dba273f35a975d1b2f02842f150a91cb94f86b478bb220a1824150d3650677af069e225f0498f90733e9c2462b7614fde382c78366fa
 SHA512 
36409eb077bb3b26663096ad6457338f124eaad7bfb11de08d57bf44eef0653736d234a9bf8ed6d49ea357741d775e0f01bea931b298aa4445a086d58bcea937
 DIST rustc-demangle-0.1.23.crate 28970 BLAKE2B 
611d2e41a8a9799db2f8bcb8fc8fefcda361d055a417d2bfaaf2dedcce9d6f388c69d905a28c65e6691b4d408d7922ccdc97ce524c87c3cccb8467e314bc87b9
 SHA512 
8cd29800254b1305ad50f1fc008838c52d9659f97a51a68e9f2bd6d0a60126f3ebdd1c79760f96445b3bf998d0773526ddf663b174acca81babdc0b423247247
 DIST rustc-hash-1.1.0.crate 9331 BLAKE2B 

[gentoo-commits] repo/proj/guru:master commit in: net-misc/gdrive/

2024-03-05 Thread Julien Roy
commit: 16fef49b4cca6d943cff3fb3873b984b999a3a17
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Tue Mar  5 09:52:07 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 09:52:07 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16fef49b

net-misc/gdrive: add QA_PREBUILT

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

 net-misc/gdrive/gdrive-3.9.1.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-misc/gdrive/gdrive-3.9.1.ebuild 
b/net-misc/gdrive/gdrive-3.9.1.ebuild
index b735cc2695..7ac6f2 100644
--- a/net-misc/gdrive/gdrive-3.9.1.ebuild
+++ b/net-misc/gdrive/gdrive-3.9.1.ebuild
@@ -218,6 +218,9 @@ LICENSE+=" ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64"
 
+# To solve "does not respect LDFLAGS" https://bugs.gentoo.org/926184
+QA_PREBUILT="/usr/bin/${PN}"
+
 pkg_postinst() {
einfo "See basic usage at 
https://github.com/glotlabs/gdrive/blob/main/docs/basic_usage.md;
einfo "If you are unhappy with gdrive - you can try 
https://packages.gentoo.org/packages/net-misc/rclone;



[gentoo-commits] repo/proj/guru:master commit in: app-text/code-minimap/

2024-03-05 Thread Julien Roy
commit: 4139bd9eedea34dc11fa76e455ae9b8265bd754d
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:17:12 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4139bd9e

app-text/code-minimap: drop 0.6.6

Signed-off-by: Jonas Frei  pm.me>

 app-text/code-minimap/Manifest  |   1 -
 app-text/code-minimap/code-minimap-0.6.6.ebuild | 100 
 2 files changed, 101 deletions(-)

diff --git a/app-text/code-minimap/Manifest b/app-text/code-minimap/Manifest
index 30c111eadd..f83d71ff4c 100644
--- a/app-text/code-minimap/Manifest
+++ b/app-text/code-minimap/Manifest
@@ -21,7 +21,6 @@ DIST clap_derive-3.0.0.crate 24684 BLAKE2B 
dc56ba1b2d5dff063d19a1ed5d9188cd3cbb3
 DIST clap_derive-4.5.0.crate 29042 BLAKE2B 
80a7646b2e30432008d52e27494e2563637e408a90557e5b0009a9db6a39abfdc79c04139f99caedd433a94b45f7d95fa11b49cfd33d203fbc4bc911fad4f9d1
 SHA512 
0a9d79f957067b929f8e1340b0e0623f78808c5d287cae252e6508fe8e07c4f11bfa39b1d3b60bb6a531d888d809c43ad3f6a491a7dd1e3d3ce89af7e1b670f6
 DIST clap_lex-0.7.0.crate 11915 BLAKE2B 
03287f02067f6cb33bb3889e8032b0848e9a9cc17446eb0e2767768cf6ea8c579a7455d33c8af735fb8d0c16095b19f991a5e2528dee3a7628d68c16f9307fa4
 SHA512 
638feb2e4571677dbe15ef0423866d2f0df309723e5ad65ddeaff7fd5e2e83adcb973a32d52a5f3924ea88fcff865e956b7d30dcd569df0412ef47848af14036
 DIST code-minimap-0.6.4.tar.gz 20042 BLAKE2B 
f06faef94fdbf88769d286aac02cdc56086fe6f471d50ed537056fcf4be40fe9e12dc7f6660676ed014b092ba6565b1420bbd211187b7ef07108b3080f3c1a37
 SHA512 
9e992abb0aa7e6b1c1e17e82d1d1583560df06324f2af7f07d0afe2e70ff196c24d2a176042fb353a9ef6dd189a4bbc8e1f1c524d2821fbc3786fc225363c5f5
-DIST code-minimap-0.6.6.tar.gz 22685 BLAKE2B 
60efcbf1c2d4660ee8f362a27c7a0c7e5f787bc5fd08230b4605aeab009739c3cdc653c7f4cd3edaf97f3006bbbc6471e6f2760132000b14e389ff4c966edd2c
 SHA512 
ab6387a3ec40757d390c2f64ec05d954aacf484d363fe9725a8aa1486393465d6da50b5507fe32686768cd72db246ce852dea4ed8cdc746bf16137a1d76d0c9e
 DIST code-minimap-0.6.7.tar.gz 22760 BLAKE2B 
56af8590b819f3442609b21458274180c8bcb41de23712bb028dab4c8bb5edbda48034b39c80a0d785832fba8a5ac4f3a26bc67daedc0054c1d09fd26de46d03
 SHA512 
f8dae908edeaea377a9852cda7068e82a1681bc8a077eb935bb86e5df27b96246b923ad821d45c1954302b9c9fba3ea65b263f3e5208239639e6908ed39b458e
 DIST colorchoice-1.0.0.crate 6857 BLAKE2B 
a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f
 SHA512 
53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551
 DIST either-1.10.0.crate 18334 BLAKE2B 
ac5d81e0822132846e29f8959671b14ac6047330d54020ea7d4ad790ef985ecb4ddcb96ec7e327b1a66b9c89d37b112dae33c9ac35232c136f60ad9baab7d5a2
 SHA512 
2de38a37b7f3e61effa89648acadbf220eacfda1ca7c82fb77484e45577769b724f7dbaa297e73e3d355d6b1bd5109373c3e96e4c1a13a918176162b33ea2432

diff --git a/app-text/code-minimap/code-minimap-0.6.6.ebuild 
b/app-text/code-minimap/code-minimap-0.6.6.ebuild
deleted file mode 100644
index b51fda6350..00
--- a/app-text/code-minimap/code-minimap-0.6.6.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Autogenerated by pycargoebuild 0.13.2
-
-EAPI=8
-
-CRATES="
-   aho-corasick@1.1.2
-   anstream@0.6.12
-   anstyle-parse@0.2.3
-   anstyle-query@1.0.2
-   anstyle-wincon@3.0.2
-   anstyle@1.0.6
-   anyhow@1.0.80
-   autocfg@1.1.0
-   bitflags@2.4.2
-   cfg-if@1.0.0
-   clap@4.5.1
-   clap_builder@4.5.1
-   clap_complete@4.5.1
-   clap_derive@4.5.0
-   clap_lex@0.7.0
-   colorchoice@1.0.0
-   either@1.10.0
-   errno@0.3.8
-   futures-channel@0.3.30
-   futures-core@0.3.30
-   futures-executor@0.3.30
-   futures-io@0.3.30
-   futures-macro@0.3.30
-   futures-sink@0.3.30
-   futures-task@0.3.30
-   futures-timer@3.0.2
-   futures-util@0.3.30
-   futures@0.3.30
-   glob@0.3.1
-   heck@0.4.1
-   itertools@0.12.1
-   libc@0.2.153
-   linux-raw-sys@0.4.13
-   memchr@2.7.1
-   pin-project-lite@0.2.13
-   pin-utils@0.1.0
-   proc-macro2@1.0.78
-   quote@1.0.35
-   regex-automata@0.4.5
-   regex-syntax@0.8.2
-   regex@1.10.3
-   relative-path@1.9.2
-   rstest@0.18.2
-   rstest_macros@0.18.2
-   rustc_version@0.4.0
-   rustix@0.38.31
-   rustversion@1.0.14
-   semver@1.0.22
-   slab@0.4.9
-   strsim@0.11.0
-   strum@0.26.1
-   strum_macros@0.26.1
-   syn@2.0.50
-   terminal_size@0.3.0
-   unicode-ident@1.0.12
-   utf8parse@0.2.1
-   windows-sys@0.48.0
-   windows-sys@0.52.0
-   windows-targets@0.48.5
-   windows-targets@0.52.0
-   windows_aarch64_gnullvm@0.48.5
-   

[gentoo-commits] repo/proj/guru:master commit in: net-misc/gdrive/

2024-03-05 Thread Julien Roy
commit: 688fc4df26f822fa236c5f6fff36fbc836b3f2b7
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Tue Mar  5 01:43:55 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 01:43:55 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=688fc4df

sys-apps/corefreq: add einfo about documentation and rclone

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

 net-misc/gdrive/gdrive-3.9.1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/net-misc/gdrive/gdrive-3.9.1.ebuild 
b/net-misc/gdrive/gdrive-3.9.1.ebuild
index 1da281677c..b735cc2695 100644
--- a/net-misc/gdrive/gdrive-3.9.1.ebuild
+++ b/net-misc/gdrive/gdrive-3.9.1.ebuild
@@ -217,3 +217,8 @@ LICENSE+=" openssl ISC MIT"
 LICENSE+=" ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64"
+
+pkg_postinst() {
+   einfo "See basic usage at 
https://github.com/glotlabs/gdrive/blob/main/docs/basic_usage.md;
+   einfo "If you are unhappy with gdrive - you can try 
https://packages.gentoo.org/packages/net-misc/rclone;
+}



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

2024-03-05 Thread Julien Roy
commit: 28b45c9532feaf612bf3f673ee90b8ef54c1a5cf
Author: Alberto Gireud  protonmail  com>
AuthorDate: Tue Mar  5 09:19:56 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 09:21:14 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=28b45c95

app-admin/ananicy-cpp: Revbump and add patch to remove debug flags from 
RELWITHDEBINFO build.

Closes: https://bugs.gentoo.org/887193
Signed-off-by: Alberto Gireud  protonmail.com>

 ...cpp-1.1.1-r1.ebuild => ananicy-cpp-1.1.1-r2.ebuild} |  4 
 .../files/ananicy-cpp-1.1.1-remove-debug-flags.patch   | 18 ++
 2 files changed, 22 insertions(+)

diff --git a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild 
b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild
similarity index 94%
rename from app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild
rename to app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild
index f3481ad557..e97720ff94 100644
--- a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild
+++ b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild
@@ -24,6 +24,10 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=(
+   "${FILESDIR}/${P}-remove-debug-flags.patch"
+)
+
 src_configure() {
local mycmakeargs=(
-DENABLE_SYSTEMD=$(usex systemd)

diff --git 
a/app-admin/ananicy-cpp/files/ananicy-cpp-1.1.1-remove-debug-flags.patch 
b/app-admin/ananicy-cpp/files/ananicy-cpp-1.1.1-remove-debug-flags.patch
new file mode 100644
index 00..612eedddef
--- /dev/null
+++ b/app-admin/ananicy-cpp/files/ananicy-cpp-1.1.1-remove-debug-flags.patch
@@ -0,0 +1,18 @@
+Removes debug flags from RELWITHDEBINFO build.
+Bug: https://bugs.gentoo.org/887193
+Signed-off-by: Alberto Gireud 
+
+index e1a041f..7e16d4c 100644
+--- a/cmake/CompilerChecks.cmake
 b/cmake/CompilerChecks.cmake
+@@ -22,8 +22,6 @@ set(CMAKE_MESSAGE_CONTEXT "")
+
+ if(CXX_ACCEPTS_G3)
+ set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g3")
+-set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_DEBUG} -g3")
+ elseif(CXX_ACCEPTS_G)
+ set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
+-set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_DEBUG} -g")
+ endif()
+
+ if(CXX_ACCEPTS_OG)



[gentoo-commits] repo/proj/guru:master commit in: media-sound/noson-app/

2024-03-05 Thread Julien Roy
commit: 46bb0662cc2929e7088d5e8e8766d87ef0e414eb
Author: Steven Burnham  gmail  com>
AuthorDate: Tue Mar  5 02:52:16 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 02:52:16 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46bb0662

media-sound/noson-app: add 5.6.6

Signed-off-by: Steven Burnham  gmail.com>

 media-sound/noson-app/Manifest   |  1 +
 media-sound/noson-app/noson-app-5.6.6.ebuild | 31 
 2 files changed, 32 insertions(+)

diff --git a/media-sound/noson-app/Manifest b/media-sound/noson-app/Manifest
index 0b2b557a3e..f4a561447d 100644
--- a/media-sound/noson-app/Manifest
+++ b/media-sound/noson-app/Manifest
@@ -3,3 +3,4 @@ DIST noson-app-5.4.0.tar.gz 2363811 BLAKE2B 
1e14173c02e90ac1c93dc07d1bbac6310a65
 DIST noson-app-5.4.1.tar.gz 3274581 BLAKE2B 
001c8b008e0b605628dd8c3b6f1c9e08839160804a5032be5cbf817e7e96d477289346a473227d5e4c8eac5a2fac47b815553e6fd0eaca759fb3258340bf1f45
 SHA512 
dbddb96f3e0720c3d9306d34466575d64be622250345ff0d45589abbdfc6f4a777a3fe1314c023ac5240b208f865dd7886c8ef206bb81b85262e5172a72f9441
 DIST noson-app-5.6.0.tar.gz 3276941 BLAKE2B 
5fa3ef234f9db46bdf573eba3fcfec5afbd9ddbf4da1b6f7d83c707ed5bf2ab8c73588a3e5c1ba2445e6fec9d5c8fe70a30d8413e30d6b9fbc3402c50ab8efb4
 SHA512 
4c4ab5b995b9846dca062bdef8caa1c54e31f7cedb6688a2849a38b8a073cc12b47b992e94080c05d70d207b6e3bccc31c3aafe7ffbbb1502668ac21d8fb6e66
 DIST noson-app-5.6.3.tar.gz 3290675 BLAKE2B 
f77a39a260bef0f8b5a0929cc9a7a39599188e0a20d5cc0eec864fb2b6239b0563c526f603217f1fb0be10024cbc3816149f559e7d1349b1c7ccf549ad856026
 SHA512 
934cc10cd4eca62071bc778aa1d47a4e3c951c3c761f7960ba3f5969f67816ffc142db2ba97677473c12afa9d6989077a65d4caee367c4d36ff9ba86e575f83a
+DIST noson-app-5.6.6.tar.gz 3295309 BLAKE2B 
b46fe67256da8ad99cc6d772ec4af8af7a4a95c84d4432c9297b1a50df9692e1040588c3ff98ef69c378d7d058d35e96310d94731692a434c15a85f9920431b5
 SHA512 
ccb828554dcd963adb17516f1f2c8765b7ee28048270751c2d6b18090b2153d53e4c781a0473080023475d3b136fdf681e7fee19ee7548fd22bb3b530b881fbc

diff --git a/media-sound/noson-app/noson-app-5.6.6.ebuild 
b/media-sound/noson-app/noson-app-5.6.6.ebuild
new file mode 100644
index 00..967043b38a
--- /dev/null
+++ b/media-sound/noson-app/noson-app-5.6.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg cmake
+
+DESCRIPTION="The essential to control music from your SONOS devices on Linux 
platforms"
+HOMEPAGE="http://janbar.github.io/noson-app/index.html;
+SRC_URI="https://github.com/janbar/noson-app/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   >=dev-qt/qtcore-5.9
+   >=dev-qt/qtdbus-5.9
+   >=dev-qt/qtnetwork-5.9
+   >=dev-qt/qttranslations-5.9
+   >=dev-qt/qtgui-5.9
+   >=dev-qt/qtquickcontrols2-5.9
+   >=dev-qt/qtsvg-5.9
+   dev-libs/openssl:0
+   media-libs/flac
+   media-libs/libpulse
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   cmake_src_configure
+}



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

2024-03-05 Thread Julien Roy
commit: 1030d37141fb9899193be30d04ec5597cdb5cdd4
Author: Alberto Gireud  protonmail  com>
AuthorDate: Tue Mar  5 08:17:15 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 08:22:31 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1030d371

app-admin/ananicy-cpp: Revbump and remove unused cmake variables

Signed-off-by: Alberto Gireud  protonmail.com>

 .../{ananicy-cpp-1.1.1.ebuild => ananicy-cpp-1.1.1-r1.ebuild}| 5 +
 app-admin/ananicy-cpp/metadata.xml   | 4 
 2 files changed, 1 insertion(+), 8 deletions(-)

diff --git a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild 
b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild
similarity index 86%
rename from app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild
rename to app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild
index 9ccfb2cf21..f3481ad557 100644
--- a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild
+++ b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.com/ananicy-cpp/ananicy-cpp;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="+regex systemd +threads"
+IUSE="systemd"
 
 
SRC_URI="https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v${PV}/${PN}-v${PV}.tar.bz2;
 S="${WORKDIR}/${PN}-v${PV}"
@@ -20,16 +20,13 @@ DEPEND="
>=dev-cpp/nlohmann_json-3.9
>=dev-libs/libfmt-8
>=dev-libs/spdlog-1.9
-   regex? ( >=dev-libs/libpcre2-8 )
systemd? ( sys-apps/systemd )
 "
 RDEPEND="${DEPEND}"
 
 src_configure() {
local mycmakeargs=(
-   -DENABLE_REGEX_SUPPORT=$(usex regex)
-DENABLE_SYSTEMD=$(usex systemd)
-   -DENABLE_THREADS=$(usex threads)
-DUSE_EXTERNAL_FMTLIB=ON
-DUSE_EXTERNAL_JSON=ON
-DUSE_EXTERNAL_SPDLOG=ON

diff --git a/app-admin/ananicy-cpp/metadata.xml 
b/app-admin/ananicy-cpp/metadata.xml
index 7f705e1709..52724a1795 100644
--- a/app-admin/ananicy-cpp/metadata.xml
+++ b/app-admin/ananicy-cpp/metadata.xml
@@ -10,8 +10,4 @@
 ananicy-cpp/ananicy-cpp
 kuche1/minq-ananicy
   
-  
-Enable regex support.
-Enable threading support.
-  
 



[gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/

2024-03-05 Thread Julien Roy
commit: 781daa55aaf2c035f96b0d2fdfeeec4495255beb
Author: Patrick Nicolas  laposte  net>
AuthorDate: Tue Mar  5 09:35:59 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 09:38:10 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=781daa55

media-libs/wivrn: update SRC_URI

Signed-off-by: Patrick Nicolas  laposte.net>

 media-libs/wivrn/Manifest  |  2 +-
 media-libs/wivrn/wivrn-.ebuild | 10 --
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/media-libs/wivrn/Manifest b/media-libs/wivrn/Manifest
index 39c47b2c77..f3e61e7efa 100644
--- a/media-libs/wivrn/Manifest
+++ b/media-libs/wivrn/Manifest
@@ -1,4 +1,4 @@
-DIST boostpfr_2.0.3.tar.gz 57376 BLAKE2B 
447370c88a3241fcd91d5fb4c3ea8a6b5e54e11807f0b0458da8ba26a7a57d54402403d13c951ebdf3638386f01bd721fc50558477802a8aae3012ee6e88cba5
 SHA512 
ce7a7955066a678cfff3d65068830b60727dc6a0a1c3f29a1b1fcb50c79f718fb06d6767afb74f7e9ce00f33858cd10f627534f29f536e5504f034831c696ca0
+DIST boostpfr_2.2.0.tar.gz 76432 BLAKE2B 
70d76a5dd0034f93ff1749b1994bcd9cd8a9b09674598958da5a8f7e1b040c62e970db4e3d221173549a19d0dd15b0810f5d12f69843ed8ac35be6697bab09e0
 SHA512 
86a745a44e8a6e4638b9eb9045b08de9cbf27f6d20d365eabd41587d6e1171f980a65f42a31291008c421da6cc3f436b7bf07e109aff6ab5690b19e1fb621b3d
 DIST monado-57e937383967c7e7b38b5de71297c8f537a2489d.tar.gz 3324809 BLAKE2B 
0ea1b7c7ae5717069a4e86e581264a271e9dea39721e27599453bef12ef5963a50db7ce4d5c2c9db4dcd699438bde74e219a60fb3b0e453e4128b16821e7f1de
 SHA512 
0d51753615e6b9fd98d2dd6eb95b324d35f05cd45f2f738bd8480890ce730aabdee37ec603e6fc248d88e426c727c8ac7f9cf2a47e15d182a36f319891799241
 DIST wivrn-0.10.1-server-build-deps.tar.xz 16181364 BLAKE2B 
ef0f9855fc454d7258846bcc1c4a94f5d15570c2e092dc7913c93935cd2c343cfeaf2b585dcde32344781c2e03e91fa4a506708729f1032bc883ae2cc17f840e
 SHA512 
629e47ef07280f0048ae8c534bf3a503a142d6ba878bf2cf2aeb77fd58027c85add2796fa2cac871baa0c0feb51d402362728335e3c9ebb2943e1f5e59abef19
 DIST wivrn-0.10.1.tar.gz 393044 BLAKE2B 
a452d78a7a1a25e33a7fa4c75b32c3b1c05a3118d56db140f3ffb27698511c3bd2dd6e910826eb745aa77f3acc1caddaec083c08605f98fd8cb0a5e195384b87
 SHA512 
3448f35b6820afb184cf078379fe090fe73749cddab4d907bb7e5560c5d2117813a6290e47313ca12db215402039097cb51d5fc7c73baac77ad61e8ef5607b1a

diff --git a/media-libs/wivrn/wivrn-.ebuild 
b/media-libs/wivrn/wivrn-.ebuild
index a254c95c2e..b248b9b98b 100644
--- a/media-libs/wivrn/wivrn-.ebuild
+++ b/media-libs/wivrn/wivrn-.ebuild
@@ -5,7 +5,7 @@ HOMEPAGE="https://github.com/meumeu/WiVRn;
 SLOT="0"
 LICENSE="GPL-3 Apache-2.0 MIT"
 
-IUSE="nvenc systemd vaapi x264"
+IUSE="nvenc systemd vaapi wireshark-plugins x264"
 REQUIRED_USE="|| ( nvenc vaapi x264 )"
 
 inherit cmake
@@ -13,9 +13,10 @@ inherit cmake
 if [[ ${PV} ==  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/Meumeu/WiVRn.git;
+   EGIT_BRANCH="dev"
 
MONADO_V=57e937383967c7e7b38b5de71297c8f537a2489d
-   PFR_V=2.0.3
+   PFR_V=2.2.0
SRC_URI="
https://github.com/boostorg/pfr/archive/refs/tags/${PFR_V}.tar.gz -> 
boostpfr_${PFR_V}.tar.gz

https://gitlab.freedesktop.org/monado/monado/-/archive/${MONADO_V}/monado-${MONADO_V}.tar.gz;
@@ -43,6 +44,9 @@ RDEPEND="
systemd? (
sys-apps/systemd
)
+   wireshark-plugins? (
+   net-analyzer/wireshark
+   )
 "
 
 BDEPEND="
@@ -80,6 +84,8 @@ src_configure() {
local mycmakeargs=(
-DGIT_DESC=${GIT_DESC}
-DWIVRN_BUILD_CLIENT=OFF
+   -DWIVRN_BUILD_SERVER=ON
+   -DWIVRN_BUILD_DISSECTOR=$(usex wireshark-plugins)
-DWIVRN_USE_NVENC=$(usex nvenc)
-DWIVRN_USE_VAAPI=$(usex vaapi)
-DWIVRN_USE_X264=$(usex x264)



[gentoo-commits] repo/proj/guru:master commit in: net-analyzer/munin-contrib/

2024-03-05 Thread Julien Roy
commit: 9f599b78e04e14a74a1fa1343ed0631fb559066c
Author: Philippe Chaintreuil  parallaxshift  com>
AuthorDate: Mon Mar  4 22:57:13 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 15:30:23 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9f599b78

bump to latest as of 2024-03-04

Signed-off-by: Philippe Chaintreuil  parallaxshift.com>

 net-analyzer/munin-contrib/Manifest|   1 +
 .../munin-contrib-0.2024.03.04.ebuild  | 115 +
 2 files changed, 116 insertions(+)

diff --git a/net-analyzer/munin-contrib/Manifest 
b/net-analyzer/munin-contrib/Manifest
index b91a3e99b5..3b0cb179f1 100644
--- a/net-analyzer/munin-contrib/Manifest
+++ b/net-analyzer/munin-contrib/Manifest
@@ -1 +1,2 @@
 DIST munin-contrib-0.2021.04.27.tar.gz 6782163 BLAKE2B 
6977d16a84a37bc15bbcae6295d52a087f9d6b694069cb384a8c79d1b2d0233052fc3057ae5bd14da305de78e9f0614b18768e51d5c49bee12f0ee6c3ccadeaa
 SHA512 
2f7aca7a51b34a600e7d27cb5b4beebf6d8ddd1d4edfbb8a9ca6e4c4912acd38e0213efe9bef028b674c54ec91ecdc66b4782c00987e6dfd833cf86191c8dbfb
+DIST munin-contrib-0.2024.03.04.tar.gz 8897446 BLAKE2B 
ceb713774f3af106f7373643e83200616d75499bdb0f89ac12bf0b8e8f211b060886f406e4308ac8f58480a467e946f7aa4ba662d6599de3ed0fba85284fc28b
 SHA512 
a095964f3709745d8dcc178f1f1014cdf136da5dbc466a5d195a5ed252f08b69b71732011e9c4a7037556354b83b9b04af53a725ce4339651ac1b239ecfaa177

diff --git a/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04.ebuild 
b/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04.ebuild
new file mode 100644
index 00..30f4601514
--- /dev/null
+++ b/net-analyzer/munin-contrib/munin-contrib-0.2024.03.04.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit toolchain-funcs
+
+COMMIT="83f4e970c4a7378540057318a5083653ee2f138b"
+
+SRC_URI="https://github.com/munin-monitoring/contrib/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+KEYWORDS="~amd64"
+DESCRIPTION="user contributed stuff related to munin"
+HOMEPAGE="https://github.com/munin-monitoring/contrib;
+LICENSE="GPL-3+ Apache-2.0 GPL-2 LGPL-2 GPL-2+ LGPL-3+ MIT" #TODO: investigate 
all the licenses
+SLOT="0"
+IUSE="examples +plugins templates tools"
+RDEPEND="net-analyzer/munin"
+
+S="${WORKDIR}/contrib-${COMMIT}"
+README_PLUGINS=(
+   plugins/README.md
+   plugins/apache/apache_byprojects/README.md
+   plugins/apache/apache_vhosts/README.txt
+   plugins/apt/deb_packages/README.md
+   plugins/jmx/readme.txt
+   plugins/kamailio/README.md
+   plugins/network/linux_if/README.md
+   plugins/nfs-freebsd/README.rst
+   plugins/nginx/nginx_byprojects/README.md
+   plugins/prosody/README.rst
+   plugins/rackspace/README
+   plugins/tarsnap/README.md
+   plugins/varnish/README-varnish4.md
+   plugins/varnish/README.rst
+   plugins/znc/README.md
+   plugins/zope/README-zodb
+)
+README_TOOLS=(
+   tools/munin-node-c/README
+   tools/munin-node-from-hell/README.rst
+   tools/munin-plugins-busybox/README
+   tools/pmmn/plugins/README
+   tools/pypmmn/README.rst
+)
+
+src_prepare() {
+   default
+   rm "plugins/nginx/nginx_byprojects/LICENSE.txt" || die
+}
+
+src_configure() {
+   return
+}
+
+src_compile() {
+   export CC=$(tc-getCC)
+
+   pushd plugins/cpu || die
+   emake multicpu1sec-c || die
+   rm multicpu1sec-c.c || die
+   popd
+   pushd plugins/disk/smart-c || die
+   emake
+   rm *.h *.o *.c Makefile || die
+   popd
+   pushd plugins/network || die
+   emake if1sec-c || die
+   rm if1sec-c.c || die
+   popd
+}
+
+src_install() {
+   if use tools ; then
+   for i in "${README_TOOLS[@]}" ; do
+   p="${ED}/usr/share/doc/${PF}/${i%/*}"
+   mkdir -p "${p}" || die
+   mv "${i}" "${p}" || die
+   done
+   insinto "/usr/libexec/munin"
+   doins -r tools
+   fi
+
+   if use plugins; then
+   #install documentation in subfolders
+   for i in plugins/{apt,network,}/*/example-graphs ; do
+   p="${ED}/usr/share/doc/${PF}/${i}"
+   mkdir -p "${p}" || die
+   mv "${i}" "${p}" || die
+   done
+   for i in "${README_PLUGINS[@]}" ; do
+   p="${ED}/usr/share/doc/${PF}/${i%/*}"
+   mkdir -p "${p}" || die
+   mv "${i}" "${p}" || die
+   done
+
+   #install plugins without getting mad at preserving exec bit
+   mkdir -p "${ED}/usr/libexec/munin/plugins/contrib" || die
+   mv plugins/* "${ED}/usr/libexec/munin/plugins/contrib" || die
+
+   elog "2023 Feb 1, the network/transmission 

[gentoo-commits] repo/proj/guru:master commit in: app-text/code-minimap/

2024-03-05 Thread Julien Roy
commit: 1b1b232aec65df85100f4b85285d35b0ba4b4904
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:16:42 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b1b232a

app-text/code-minimap: add 0.6.7

Signed-off-by: Jonas Frei  pm.me>

 app-text/code-minimap/Manifest  |   1 +
 app-text/code-minimap/code-minimap-0.6.7.ebuild | 100 
 2 files changed, 101 insertions(+)

diff --git a/app-text/code-minimap/Manifest b/app-text/code-minimap/Manifest
index c5bb53324f..30c111eadd 100644
--- a/app-text/code-minimap/Manifest
+++ b/app-text/code-minimap/Manifest
@@ -22,6 +22,7 @@ DIST clap_derive-4.5.0.crate 29042 BLAKE2B 
80a7646b2e30432008d52e27494e2563637e4
 DIST clap_lex-0.7.0.crate 11915 BLAKE2B 
03287f02067f6cb33bb3889e8032b0848e9a9cc17446eb0e2767768cf6ea8c579a7455d33c8af735fb8d0c16095b19f991a5e2528dee3a7628d68c16f9307fa4
 SHA512 
638feb2e4571677dbe15ef0423866d2f0df309723e5ad65ddeaff7fd5e2e83adcb973a32d52a5f3924ea88fcff865e956b7d30dcd569df0412ef47848af14036
 DIST code-minimap-0.6.4.tar.gz 20042 BLAKE2B 
f06faef94fdbf88769d286aac02cdc56086fe6f471d50ed537056fcf4be40fe9e12dc7f6660676ed014b092ba6565b1420bbd211187b7ef07108b3080f3c1a37
 SHA512 
9e992abb0aa7e6b1c1e17e82d1d1583560df06324f2af7f07d0afe2e70ff196c24d2a176042fb353a9ef6dd189a4bbc8e1f1c524d2821fbc3786fc225363c5f5
 DIST code-minimap-0.6.6.tar.gz 22685 BLAKE2B 
60efcbf1c2d4660ee8f362a27c7a0c7e5f787bc5fd08230b4605aeab009739c3cdc653c7f4cd3edaf97f3006bbbc6471e6f2760132000b14e389ff4c966edd2c
 SHA512 
ab6387a3ec40757d390c2f64ec05d954aacf484d363fe9725a8aa1486393465d6da50b5507fe32686768cd72db246ce852dea4ed8cdc746bf16137a1d76d0c9e
+DIST code-minimap-0.6.7.tar.gz 22760 BLAKE2B 
56af8590b819f3442609b21458274180c8bcb41de23712bb028dab4c8bb5edbda48034b39c80a0d785832fba8a5ac4f3a26bc67daedc0054c1d09fd26de46d03
 SHA512 
f8dae908edeaea377a9852cda7068e82a1681bc8a077eb935bb86e5df27b96246b923ad821d45c1954302b9c9fba3ea65b263f3e5208239639e6908ed39b458e
 DIST colorchoice-1.0.0.crate 6857 BLAKE2B 
a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f
 SHA512 
53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551
 DIST either-1.10.0.crate 18334 BLAKE2B 
ac5d81e0822132846e29f8959671b14ac6047330d54020ea7d4ad790ef985ecb4ddcb96ec7e327b1a66b9c89d37b112dae33c9ac35232c136f60ad9baab7d5a2
 SHA512 
2de38a37b7f3e61effa89648acadbf220eacfda1ca7c82fb77484e45577769b724f7dbaa297e73e3d355d6b1bd5109373c3e96e4c1a13a918176162b33ea2432
 DIST either-1.6.1.crate 13641 BLAKE2B 
e5f40c40a5edb6dcb07a10bf79183cbe42438f1f70f3932dce72f6f6e91f75f24d17d82bc447507def4dad4345ffc9dd9162dde778afb253bdb1218e91887949
 SHA512 
4bfe56920e30cbc8eb4f90162db618f7dca653b42db35ab6a7045d3fd9a24ceb1778b1f79613850bdb1a87ad3794fa0d73015e46c48d513f368d8c3776fc9ddf

diff --git a/app-text/code-minimap/code-minimap-0.6.7.ebuild 
b/app-text/code-minimap/code-minimap-0.6.7.ebuild
new file mode 100644
index 00..b51fda6350
--- /dev/null
+++ b/app-text/code-minimap/code-minimap-0.6.7.ebuild
@@ -0,0 +1,100 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Autogenerated by pycargoebuild 0.13.2
+
+EAPI=8
+
+CRATES="
+   aho-corasick@1.1.2
+   anstream@0.6.12
+   anstyle-parse@0.2.3
+   anstyle-query@1.0.2
+   anstyle-wincon@3.0.2
+   anstyle@1.0.6
+   anyhow@1.0.80
+   autocfg@1.1.0
+   bitflags@2.4.2
+   cfg-if@1.0.0
+   clap@4.5.1
+   clap_builder@4.5.1
+   clap_complete@4.5.1
+   clap_derive@4.5.0
+   clap_lex@0.7.0
+   colorchoice@1.0.0
+   either@1.10.0
+   errno@0.3.8
+   futures-channel@0.3.30
+   futures-core@0.3.30
+   futures-executor@0.3.30
+   futures-io@0.3.30
+   futures-macro@0.3.30
+   futures-sink@0.3.30
+   futures-task@0.3.30
+   futures-timer@3.0.2
+   futures-util@0.3.30
+   futures@0.3.30
+   glob@0.3.1
+   heck@0.4.1
+   itertools@0.12.1
+   libc@0.2.153
+   linux-raw-sys@0.4.13
+   memchr@2.7.1
+   pin-project-lite@0.2.13
+   pin-utils@0.1.0
+   proc-macro2@1.0.78
+   quote@1.0.35
+   regex-automata@0.4.5
+   regex-syntax@0.8.2
+   regex@1.10.3
+   relative-path@1.9.2
+   rstest@0.18.2
+   rstest_macros@0.18.2
+   rustc_version@0.4.0
+   rustix@0.38.31
+   rustversion@1.0.14
+   semver@1.0.22
+   slab@0.4.9
+   strsim@0.11.0
+   strum@0.26.1
+   strum_macros@0.26.1
+   syn@2.0.50
+   terminal_size@0.3.0
+   unicode-ident@1.0.12
+   utf8parse@0.2.1
+   windows-sys@0.48.0
+   windows-sys@0.52.0
+   windows-targets@0.48.5
+   windows-targets@0.52.0
+   windows_aarch64_gnullvm@0.48.5
+   

[gentoo-commits] repo/proj/guru:master commit in: x11-terms/rio-terminfo/

2024-03-05 Thread Julien Roy
commit: 7ecefe15387544d25157e750b07ad2b49e6d606c
Author: Jonas Frei  pm  me>
AuthorDate: Tue Mar  5 19:29:34 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue Mar  5 19:30:42 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ecefe15

x11-terms/rio-terminfo: add 0.0.35

Signed-off-by: Jonas Frei  pm.me>

 x11-terms/rio-terminfo/Manifest   |  1 +
 x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/x11-terms/rio-terminfo/Manifest b/x11-terms/rio-terminfo/Manifest
index 262c9fdcf0..f9a56fe54c 100644
--- a/x11-terms/rio-terminfo/Manifest
+++ b/x11-terms/rio-terminfo/Manifest
@@ -1,2 +1,3 @@
 DIST rio-0.0.28.tar.gz 34177343 BLAKE2B 
38a2077a85d3008a361a91d76581128e73bc6a49b7a656d64f44c13512772deec6d0190880f323e41e12c6f6552549675a3f06ae7b20285f0a3bdb0bb5c01292
 SHA512 
6dd1992ab761d6c5b7ad78c483fe0096a4d1c93b241480c14cf10799cc831029023989f676be835d744f7a170733f3503f37f90ed92e3790dfb8fa334c07e68b
 DIST rio-0.0.34.tar.gz 35557809 BLAKE2B 
e757ee50445664044c44e49e93588b096876c8e4a6c4fd7a0b0229704324d7c6f8da64936bf77eeba271b28cf34760ff92f452c87f3452e30e4871fa4d21e180
 SHA512 
9a0a01e02a432e030b9dc01fcf62606016f57724b8bdf11b4f347a077ff373bc7e03843294e883ff4add24a6d69e9baf628ea0b05252a7028dc18e315f44a4de
+DIST rio-0.0.35.tar.gz 35557061 BLAKE2B 
426e253957ff7d0635d3c050c4204f9f22884da1e539b4b6198038bba12acd74c60ad265c069fa678b4dc7c00a617980d5223f517c92e338590eecad76b96d47
 SHA512 
3aa2754a210b1a9a260a5073f777dd5b41736005b28706fbeb9aa7105b03c480cc9a89259c9d8a8083a289bcb65a27567ef001181b410244a85ddac57f09c2a1

diff --git a/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild 
b/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild
new file mode 100644
index 00..ad2dacb02c
--- /dev/null
+++ b/x11-terms/rio-terminfo/rio-terminfo-0.0.35.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="rio"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Terminfo for Rio, a hardware-accelerated GPU terminal emulator 
powered by WebGPU"
+HOMEPAGE="https://raphamorim.io/rio/;
+SRC_URI="
+   https://github.com/raphamorim/${MY_PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${MY_P}.tar.gz
+"
+
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test" # intended to be ran on the full rio package
+
+BDEPEND="sys-libs/ncurses"
+
+src_compile() { :; }
+
+src_install() {
+   dodir "/usr/share/terminfo"
+   tic -xo "${ED}/usr/share/terminfo" "misc/rio.terminfo" || die
+}



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

2024-03-05 Thread Patrick McLean
commit: 15c0458d94d4ac402b03573fd663afdde87d6a77
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Mar  6 02:14:18 2024 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Mar  6 02:14:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c0458d

sys-cluster/ceph: Reorder variables in ebuilds

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

 sys-cluster/ceph/ceph-16.2.14-r1.ebuild | 5 ++---
 sys-cluster/ceph/ceph-16.2.15.ebuild| 5 ++---
 sys-cluster/ceph/ceph-17.2.6-r8.ebuild  | 8 
 sys-cluster/ceph/ceph-17.2.7.ebuild | 9 +
 4 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/sys-cluster/ceph/ceph-16.2.14-r1.ebuild 
b/sys-cluster/ceph/ceph-16.2.14-r1.ebuild
index 9f334bb302cd..959bb8c34e99 100644
--- a/sys-cluster/ceph/ceph-16.2.14-r1.ebuild
+++ b/sys-cluster/ceph/ceph-16.2.14-r1.ebuild
@@ -11,14 +11,13 @@ CMAKE_MAKEFILE_GENERATOR=emake
 inherit check-reqs bash-completion-r1 cmake python-r1 flag-o-matic \
lua-single udev readme.gentoo-r1 toolchain-funcs systemd 
tmpfiles
 
-SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-
 DESCRIPTION="Ceph distributed filesystem"
 HOMEPAGE="https://ceph.com/;
+SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
 
 LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
 SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 
 CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
 

diff --git a/sys-cluster/ceph/ceph-16.2.15.ebuild 
b/sys-cluster/ceph/ceph-16.2.15.ebuild
index 9fed2b0553e6..0c8bb2c4f280 100644
--- a/sys-cluster/ceph/ceph-16.2.15.ebuild
+++ b/sys-cluster/ceph/ceph-16.2.15.ebuild
@@ -10,14 +10,13 @@ CMAKE_MAKEFILE_GENERATOR=emake
 inherit check-reqs bash-completion-r1 cmake python-r1 flag-o-matic \
lua-single udev readme.gentoo-r1 toolchain-funcs systemd 
tmpfiles
 
-SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-
 DESCRIPTION="Ceph distributed filesystem"
 HOMEPAGE="https://ceph.com/;
 
+SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
 LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
 SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 
 CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
 

diff --git a/sys-cluster/ceph/ceph-17.2.6-r8.ebuild 
b/sys-cluster/ceph/ceph-17.2.6-r8.ebuild
index b30fbd6be9a9..d6e758a0b622 100644
--- a/sys-cluster/ceph/ceph-17.2.6-r8.ebuild
+++ b/sys-cluster/ceph/ceph-17.2.6-r8.ebuild
@@ -10,17 +10,17 @@ inherit check-reqs bash-completion-r1 cmake flag-o-matic 
lua-single \
python-r1 udev readme.gentoo-r1 toolchain-funcs systemd tmpfiles
 
 XSIMD_HASH="aeec9c872c8b475dedd7781336710f2dd2666cb2"
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="https://ceph.com/;
+
 SRC_URI="
https://download.ceph.com/tarballs/${P}.tar.gz
parquet? ( 
https://github.com/xtensor-stack/xsimd/archive/${XSIMD_HASH}.tar.gz -> 
ceph-xsimd-${PV}.tar.gz )
 "
-KEYWORDS="amd64 ~arm64"
-
-DESCRIPTION="Ceph distributed filesystem"
-HOMEPAGE="https://ceph.com/;
 
 LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
 SLOT="0"
+KEYWORDS="amd64 ~arm64"
 
 CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
 

diff --git a/sys-cluster/ceph/ceph-17.2.7.ebuild 
b/sys-cluster/ceph/ceph-17.2.7.ebuild
index 5b8e6c36cdc6..7513a424410b 100644
--- a/sys-cluster/ceph/ceph-17.2.7.ebuild
+++ b/sys-cluster/ceph/ceph-17.2.7.ebuild
@@ -10,17 +10,18 @@ inherit check-reqs bash-completion-r1 cmake flag-o-matic 
lua-single \
python-r1 udev readme.gentoo-r1 toolchain-funcs systemd tmpfiles
 
 XSIMD_HASH="aeec9c872c8b475dedd7781336710f2dd2666cb2"
+
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="https://ceph.com/;
+
 SRC_URI="
https://download.ceph.com/tarballs/${P}.tar.gz
parquet? ( 
https://github.com/xtensor-stack/xsimd/archive/${XSIMD_HASH}.tar.gz -> 
ceph-xsimd-${PV}.tar.gz )
 "
-KEYWORDS="amd64 ~arm64 ppc64"
-
-DESCRIPTION="Ceph distributed filesystem"
-HOMEPAGE="https://ceph.com/;
 
 LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
 SLOT="0"
+KEYWORDS="amd64 ~arm64 ppc64"
 
 CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
 



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

2024-03-05 Thread Patrick McLean
commit: 7af1e463b4b461118cb61776ef01ac1378608247
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Mar  6 02:08:51 2024 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Mar  6 02:14:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af1e463

sys-cluster/ceph: add 18.2.1, drop 18.2.0-r2

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

 sys-cluster/ceph/Manifest  | 4 ++--
 sys-cluster/ceph/{ceph-18.2.0-r2.ebuild => ceph-18.2.1.ebuild} | 9 +
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index dfc9b0e58177..7359f5913f9f 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -2,7 +2,7 @@ DIST ceph-16.2.14.tar.gz 157243362 BLAKE2B 
799132ebc815380b2040250915c82c5752983
 DIST ceph-16.2.15.tar.gz 157260936 BLAKE2B 
4de2e35c870ca005bf86f8158709d021785ec592ac316eb1073c259dba8ee9e89f63f70bc90c4a26fe5ba08e523df5722e613be346b599392ca3d8215addd730
 SHA512 
f12f745f55f4e5e4b41de53df638d7fee68054767ed2ec8e7c53d1c74988d18d4673465496c0fbdcf61cf29f62723d4d166dbf8550e2587ea14b30fae444c97a
 DIST ceph-17.2.6.tar.gz 168093221 BLAKE2B 
f79efce9bd7f485b43ae1b4da94a1d9fb3753003f34535e93c80e480ffeaaf054d371f75bca72402da5f9dd460aafa820bb2af550d213bdbcca74aa939180431
 SHA512 
dca9aea2ce210c15fcc34cb06a5dc5b4488ffa36d684166d47ebd87e48b54b6fee0882e1c67007a780e1c25754e9bc6e760cc10f60ea1183263f8504ef2dbd9b
 DIST ceph-17.2.7.tar.gz 168577111 BLAKE2B 
e3470819305e580b4afc658564b9ac261d1db53242acc5d5ec6bf6166024394de927b745b7a752e010fdc020a3829ca5e7d3ac27a99cf60f45876f12fef1c927
 SHA512 
9005de7661c6a9d1054f1388cff2f48eb1af93565ebf852669de546eed594ed6a2668944b25a64c406d00f88bd2f7a6eac2ae96b04789c03ea4d248d1a683e7b
-DIST ceph-18.2.0.tar.gz 197353856 BLAKE2B 
0f2217d9ec4105f72b7b48f7981c5cc098e8f6d46b029acaae1aa91d71486e7dc5726cad0763b5bb0f79d006e289a9f590c95f2494c17f2f09fb492c06db455a
 SHA512 
fe6a3ca4227cc05b5effc33a02670c466583ec9e4c7c025241248223992254e6e6551d7db486d5ead36bf0ba922d54e0aabc2aaf456d4593679376ec88bd971a
+DIST ceph-18.2.1.tar.gz 197490056 BLAKE2B 
bcb66957a4e9502fda268aea09550ecc3775c83c2b4780a338364fd13b553164cae4c66dc69e64fb5df345d89161fe9d72ec42d9aa38eada0f77970b4125dc3c
 SHA512 
88e1c18bc6c824b6203cf026cca4c9409000e7cf5b2b986e22ab74d2790d8b93d91556bd3af15a320dbdd0cf2302308f0b2c75fd1243bc5a65f76fc6b3d70736
 DIST ceph-xsimd-17.2.6.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33
 DIST ceph-xsimd-17.2.7.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33
-DIST ceph-xsimd-18.2.0.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33
+DIST ceph-xsimd-18.2.1.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33

diff --git a/sys-cluster/ceph/ceph-18.2.0-r2.ebuild 
b/sys-cluster/ceph/ceph-18.2.1.ebuild
similarity index 99%
rename from sys-cluster/ceph/ceph-18.2.0-r2.ebuild
rename to sys-cluster/ceph/ceph-18.2.1.ebuild
index c145fc4450fe..444ddb7e37ba 100644
--- a/sys-cluster/ceph/ceph-18.2.0-r2.ebuild
+++ b/sys-cluster/ceph/ceph-18.2.1.ebuild
@@ -10,17 +10,18 @@ inherit check-reqs bash-completion-r1 cmake flag-o-matic 
lua-single \
python-r1 udev readme.gentoo-r1 toolchain-funcs systemd tmpfiles
 
 XSIMD_HASH="aeec9c872c8b475dedd7781336710f2dd2666cb2"
+
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="https://ceph.com/;
+
 SRC_URI="
https://download.ceph.com/tarballs/${P}.tar.gz
parquet? ( 
https://github.com/xtensor-stack/xsimd/archive/${XSIMD_HASH}.tar.gz -> 
ceph-xsimd-${PV}.tar.gz )
 "
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-
-DESCRIPTION="Ceph distributed filesystem"
-HOMEPAGE="https://ceph.com/;
 
 LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
 SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 
 CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
 



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

2024-03-05 Thread Sam James
commit: cb7c63aad94007bef9b6809879ce09b7027647b1
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:23 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7c63aa

dev-python/shapely: Stabilize 2.0.3 arm64, #925969

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

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

diff --git a/dev-python/shapely/shapely-2.0.3.ebuild 
b/dev-python/shapely/shapely-2.0.3.ebuild
index 353901f3d363..88759a0d52d6 100644
--- a/dev-python/shapely/shapely-2.0.3.ebuild
+++ b/dev-python/shapely/shapely-2.0.3.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 
 DEPEND="
>=sci-libs/geos-3.9



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

2024-03-05 Thread Sam James
commit: e49cddc42384af7b41a99d5397a0fde66ae3134b
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:25 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e49cddc4

dev-python/matplotlib: Stabilize 3.8.3 arm64, #925991

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

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

diff --git a/dev-python/matplotlib/matplotlib-3.8.3.ebuild 
b/dev-python/matplotlib/matplotlib-3.8.3.ebuild
index 8bbc60f29ca8..59b293a7afa3 100644
--- a/dev-python/matplotlib/matplotlib-3.8.3.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.8.3.ebuild
@@ -29,7 +29,7 @@ SRC_URI+="
 # Fonts: BitstreamVera, OFL-1.1
 LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~arm64-macos ~x64-macos"
 IUSE="cairo doc excel gtk3 latex qt5 tk webagg wxwidgets"
 
 # internal copy of pycxx highly patched



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

2024-03-05 Thread Sam James
commit: fd8f3ff7b38ea2b0722bc59710d0d97ef7288308
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:27 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8f3ff7

dev-python/aioitertools: Stabilize 0.11.0 arm64, #925992

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

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

diff --git a/dev-python/aioitertools/aioitertools-0.11.0.ebuild 
b/dev-python/aioitertools/aioitertools-0.11.0.ebuild
index 1301f7178ee6..9b87df203633 100644
--- a/dev-python/aioitertools/aioitertools-0.11.0.ebuild
+++ b/dev-python/aioitertools/aioitertools-0.11.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 
 python_test() {
"${EPYTHON}" -m aioitertools.tests || die



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

2024-03-05 Thread Sam James
commit: d0f30e93925fb46c56a86e16be672e0e33434ccd
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:26 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f30e93

dev-python/openapi-core: Stabilize 0.19.0 arm64, #925992

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

 dev-python/openapi-core/openapi-core-0.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/openapi-core/openapi-core-0.19.0.ebuild 
b/dev-python/openapi-core/openapi-core-0.19.0.ebuild
index 65211cc0dd97..005dd84f4714 100644
--- a/dev-python/openapi-core/openapi-core-0.19.0.ebuild
+++ b/dev-python/openapi-core/openapi-core-0.19.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
 
 RDEPEND="


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

2024-03-05 Thread Sam James
commit: b3cd88b4da93afb85e88e5dd738560c4d03df934
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:24 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3cd88b4

dev-python/rpds-py: Stabilize 0.18.0 arm64, #925981

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

 dev-python/rpds-py/rpds-py-0.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rpds-py/rpds-py-0.18.0.ebuild 
b/dev-python/rpds-py/rpds-py-0.18.0.ebuild
index 3bcf19309d82..b434e0695384 100644
--- a/dev-python/rpds-py/rpds-py-0.18.0.ebuild
+++ b/dev-python/rpds-py/rpds-py-0.18.0.ebuild
@@ -62,7 +62,7 @@ LICENSE="MIT"
 # Dependent crate licenses
 LICENSE+=" Apache-2.0-with-LLVM-exceptions MIT MPL-2.0 Unicode-DFS-2016"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/rpds/rpds.*.so"
 



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

2024-03-05 Thread Sam James
commit: c5b6efaf0a40c77f3bf1b9793589a760ef8b1aa9
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:30 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b6efaf

sys-cluster/galera: Stabilize 26.4.17 arm64, #926188

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

 sys-cluster/galera/galera-26.4.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/galera/galera-26.4.17.ebuild 
b/sys-cluster/galera/galera-26.4.17.ebuild
index 263a7bba45a5..ffa1f0dc758f 100644
--- a/sys-cluster/galera/galera-26.4.17.ebuild
+++ b/sys-cluster/galera/galera-26.4.17.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ppc64 ~x86"
 IUSE="garbd ssl"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2024-03-05 Thread Sam James
commit: 35e3c5eb9b7f60e66aac626bd9f7c38c2c03be89
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 03:40:29 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:40:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e3c5eb

app-antivirus/clamav: Stabilize 1.0.5 arm64, #926021

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

 app-antivirus/clamav/clamav-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-antivirus/clamav/clamav-1.0.5.ebuild 
b/app-antivirus/clamav/clamav-1.0.5.ebuild
index 5230891eff42..8995c36a41b5 100644
--- a/app-antivirus/clamav/clamav-1.0.5.ebuild
+++ b/app-antivirus/clamav/clamav-1.0.5.ebuild
@@ -166,7 +166,7 @@ S=${WORKDIR}/clamav-${MY_P}
 LICENSE="Apache-2.0 BSD GPL-2 ISC MIT MPL-2.0 Unicode-DFS-2016 ZLIB"
 SLOT="0/lts"
 if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
 fi
 
 IUSE="doc clamonacc +clamapp experimental jit libclamav-only milter rar 
selinux +system-mspack systemd test"



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: 9990be3ed11aab95c21ef6fa57fdd8a4990f3e6a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:22 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9990be3e

net-dialup/ppp: Stabilize 2.5.0-r6 arm, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index ca16324c3c80..4890690c1cee 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: c835680d36abeadd96cbd8812d90fbce5922d5fd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:20 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c835680d

net-dialup/ppp: Stabilize 2.5.0-r6 ppc, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index fb5b219ceab6..43ad3615db98 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: c52f654967727f69c419385b800efee5c47f1b2f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:18 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c52f6549

net-dialup/ppp: Stabilize 2.5.0-r6 arm64, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index 29be6e58ce01..fb5b219ceab6 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: b323fce59e1df40669db6340991048683d356da3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:21 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b323fce5

net-dialup/ppp: Stabilize 2.5.0-r6 amd64, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index 43ad3615db98..ca16324c3c80 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: 843babda353861f370335712dbe4a77e51a2d275
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:23 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=843babda

net-dialup/ppp: Stabilize 2.5.0-r6 ppc64, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index 4890690c1cee..12bcb53cc006 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-dialup/ppp/

2024-03-05 Thread Jakov Smolić
commit: 3bf69836a9f40f4c0054f11226e76ff6f0d1917f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Mar  6 00:24:14 2024 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Mar  6 00:24:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bf69836

net-dialup/ppp: Stabilize 2.5.0-r6 x86, #926217

Signed-off-by: Jakov Smolić  gentoo.org>

 net-dialup/ppp/ppp-2.5.0-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.5.0-r6.ebuild 
b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
index b324ff383605..29be6e58ce01 100644
--- a/net-dialup/ppp/ppp-2.5.0-r6.ebuild
+++ b/net-dialup/ppp/ppp-2.5.0-r6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="activefilter atm gtk pam selinux systemd"
 
 DEPEND="



[gentoo-commits] repo/proj/guru:dev commit in: profiles/, app-dicts/dictd-gcide/, app-dicts/dictd-moby-thesaurus/, ...

2024-03-05 Thread Julien Roy
commit: f1344e56a6379fa0623be17c3ef6d92aa60a47d8
Author: Alex  protonmail  com>
AuthorDate: Tue Mar  5 09:39:25 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Wed Mar  6 00:50:08 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1344e56

app-dict/dictd-{foldoc,gcide,moby-thesaurus}: add as maintainer & unmask

As per #141 (comment) I've added myself as a maintainer and unmasked packages.

Signed-off-by: Alex  protonmail.com>
Closes: https://github.com/gentoo/guru/pull/147
Signed-off-by: Julien Roy  jroy.ca>

 app-dicts/dictd-foldoc/metadata.xml | 4 ++--
 app-dicts/dictd-gcide/metadata.xml  | 4 ++--
 app-dicts/dictd-moby-thesaurus/metadata.xml | 4 ++--
 profiles/package.mask   | 3 ---
 4 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/app-dicts/dictd-foldoc/metadata.xml 
b/app-dicts/dictd-foldoc/metadata.xml
index c27ad5932e..3287e41572 100644
--- a/app-dicts/dictd-foldoc/metadata.xml
+++ b/app-dicts/dictd-foldoc/metadata.xml
@@ -3,8 +3,8 @@
 

co-maintainers welcome
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
+   baccifer...@pm.me
+   Alex Drysdale




diff --git a/app-dicts/dictd-gcide/metadata.xml 
b/app-dicts/dictd-gcide/metadata.xml
index 0a55a8684f..1307642d02 100644
--- a/app-dicts/dictd-gcide/metadata.xml
+++ b/app-dicts/dictd-gcide/metadata.xml
@@ -3,7 +3,7 @@
 

co-maintainers welcome
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
+   baccifer...@pm.me
+   Alex Drysdale

 

diff --git a/app-dicts/dictd-moby-thesaurus/metadata.xml 
b/app-dicts/dictd-moby-thesaurus/metadata.xml
index 0a55a8684f..1307642d02 100644
--- a/app-dicts/dictd-moby-thesaurus/metadata.xml
+++ b/app-dicts/dictd-moby-thesaurus/metadata.xml
@@ -3,7 +3,7 @@
 

co-maintainers welcome
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
+   baccifer...@pm.me
+   Alex Drysdale

 

diff --git a/profiles/package.mask b/profiles/package.mask
index 0b38d871ac..b7998988d3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,13 +31,10 @@ app-dicts/canna-skk-dictionaries
 app-dicts/canna-yubin
 app-dicts/dictd-devils
 app-dicts/dictd-elements
-app-dicts/dictd-foldoc
 app-dicts/dictd-gazetteer
-app-dicts/dictd-gcide
 app-dicts/dictd-jargon
 app-dicts/dictd-meta
 app-dicts/dictd-misc
-app-dicts/dictd-moby-thesaurus
 app-dicts/dictd-mueller
 app-dicts/dictd-web1913
 app-emacs/yc



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

2024-03-05 Thread Julien Roy
commit: a6bcd2bdb142846905c703da8321d17d187f97f5
Author: Julien Roy  jroy  ca>
AuthorDate: Wed Mar  6 00:59:52 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Wed Mar  6 00:59:52 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a6bcd2bd

gui-apps/tessen: drop myself as a maintainer

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

 gui-apps/tessen/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
index e97e3a8d8c..07de0dd23d 100644
--- a/gui-apps/tessen/metadata.xml
+++ b/gui-apps/tessen/metadata.xml
@@ -1,10 +1,7 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   jul...@jroy.ca
-   Julien Roy
-   
+   


ayushnix



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-isort/, dev-python/pytest-isort/files/

2024-03-05 Thread Julien Roy
commit: 308d39b192eed0831df1dcdfb0a059206c2b1d13
Author: Julien Roy  jroy  ca>
AuthorDate: Wed Mar  6 01:00:14 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Wed Mar  6 01:00:14 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=308d39b1

dev-python/pytest-isort: treeclean

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

 dev-python/pytest-isort/Manifest   |  1 -
 dev-python/pytest-isort/files/stray-files.patch| 15 ---
 dev-python/pytest-isort/metadata.xml   | 12 -
 .../pytest-isort/pytest-isort-3.1.0-r1.ebuild  | 29 --
 dev-python/pytest-isort/pytest-isort-3.1.0.ebuild  | 29 --
 5 files changed, 86 deletions(-)

diff --git a/dev-python/pytest-isort/Manifest b/dev-python/pytest-isort/Manifest
deleted file mode 100644
index 7194b7d6c2..00
--- a/dev-python/pytest-isort/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-isort-3.1.0.gh.tar.gz 15585 BLAKE2B 
c23c34de0e5f4aec245fadc73ea77d90b29d9f0d94b34cb814a2cd12f0f28cfc3314340dc0d63063a4e1a6fe9c0341931fbf17c9b06b699b1ddb42eeb4498d7e
 SHA512 
a01799b832783301818aba5d441cdb9167a367e2c434df9790e4b2d839a9cdab03683736f43339a07efca0bddfb1b6cd503db170b6544f8c14617e7398df

diff --git a/dev-python/pytest-isort/files/stray-files.patch 
b/dev-python/pytest-isort/files/stray-files.patch
deleted file mode 100644
index 9c3303ae60..00
--- a/dev-python/pytest-isort/files/stray-files.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/pyproject.toml b/pyproject.toml
-index 64d36bc..a6420fd 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -25,7 +25,9 @@ classifiers = [
-   "Framework :: Pytest",
- ]
- packages = [{ include = "pytest_isort" }]
--include = ["LICENSE.rst"]
-+include = [
-+  { path = "LICENSE.rst", format = "sdist" },
-+]
- 
- [tool.poetry.plugins.pytest11]
- isort = "pytest_isort"

diff --git a/dev-python/pytest-isort/metadata.xml 
b/dev-python/pytest-isort/metadata.xml
deleted file mode 100644
index 7633e782cd..00
--- a/dev-python/pytest-isort/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   Julien Roy
-   jul...@jroy.ca
-   
-   
-   moccu/pytest-isort
-   pytest-isort
-   
-

diff --git a/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild 
b/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild
deleted file mode 100644
index c934799424..00
--- a/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Plugin to check import ordering using isort"
-HOMEPAGE="https://github.com/stephrdev/pytest-isort;
-SRC_URI="https://github.com/stephrdev/pytest-isort/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="BSD"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-distutils_enable_tests pytest
-
-RDEPEND="
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/isort[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/stray-files.patch"
-)

diff --git a/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild 
b/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild
deleted file mode 100644
index c934799424..00
--- a/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Plugin to check import ordering using isort"
-HOMEPAGE="https://github.com/stephrdev/pytest-isort;
-SRC_URI="https://github.com/stephrdev/pytest-isort/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="BSD"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-distutils_enable_tests pytest
-
-RDEPEND="
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/isort[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/stray-files.patch"
-)



[gentoo-commits] repo/proj/guru:dev commit in: www-apps/redlib/

2024-03-05 Thread Julien Roy
commit: 2ef84d586ddd1579a6cbdd2b7abd63eb897a89f2
Author: Julien Roy  jroy  ca>
AuthorDate: Wed Mar  6 01:05:46 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Wed Mar  6 01:05:46 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ef84d58

www-apps/redlib: add 0.31.2

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

 www-apps/redlib/Manifest |  85 +++
 www-apps/redlib/redlib-0.31.2.ebuild | 279 +++
 2 files changed, 364 insertions(+)

diff --git a/www-apps/redlib/Manifest b/www-apps/redlib/Manifest
index 465e55aead..8150304354 100644
--- a/www-apps/redlib/Manifest
+++ b/www-apps/redlib/Manifest
@@ -1,51 +1,71 @@
 DIST addr2line-0.21.0.crate 40807 BLAKE2B 
9796b9a1177a299797902b7f64247d81d63d3f7e0dcc1256990628e84c5f92e3094ee8d753d9b72187b9aaa73b7ca67c0217899f2226ebd1076f8d25b458475b
 SHA512 
afde7660dda30dee240e79df1fb5b92d4572520bf17a134ef3765e2a077af9e13713952d52e27fae420109b40f6e24dbce1056687dbcbead858ffc21cc7dc69b
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST adler32-1.2.0.crate 6411 BLAKE2B 
51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483
 SHA512 
8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
+DIST ahash-0.8.11.crate 43607 BLAKE2B 
7dff8e41798ba25df8c4827ff414a182bb25da4825f0119a74916fe775db5445b87be8fc87f7c7f98d3b5053e1d47546f98873de1a942d36e5f308a3fb7dd620
 SHA512 
47d211b2422de0b381dfe32229faa346406eb7a22dff867dc04c22389609a8671ce3218e662000c49891a06c259d82e0ff4413740f007729d80e097a6c3f0d9d
 DIST ahash-0.8.6.crate 42780 BLAKE2B 
ce2fb8201a484715d42bbd9ca1bfe2d5f541d90e3619ebd437c34a018920b679d5a11f9e96be48fbdabd2e98a379c0395d118616f21eb9004724d8fcb04b2b2b
 SHA512 
46428b27e96be1f30058b9383a94988beeb5064dfb4df04d6959b451d0c77ef69fc51f07fdf9511ab9728295eb6beee7783c31a2297f9e473fc537883e722b73
 DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
 DIST alloc-no-stdlib-2.0.4.crate 10105 BLAKE2B 
afa0bfeb7df1d742edb412dca4c22957fc21c2a1be21c64c58503d4b943c06e3163d0f3c90525b25323b8dc38e6c64136ec4f9608758c5c6f3bd07c2c033ee74
 SHA512 
6518856fa524ee0fe8e04cf133c11028efcf2f6a28f3a70e401566a4eb343c954dba34aec2a02c0d0359757dfb5dcf48279610646215eea190d699708d838904
 DIST alloc-stdlib-0.2.2.crate 6693 BLAKE2B 
a22faf3482e416664f2e104f5f45c4e6d116a42b890216b80102e266f7a3a3accd2933aeca71650a4c4626e3d9da76b6488ffc9ea2ae4229cdfbf1ce9ca6c7cf
 SHA512 
9c4169052ad460af2be6f2a128056661b2f26da0122877f13fcd4f4f3e2e9537783cb2b2bec47af43569629639aa8ad507ab010833982e5d942f5b26cfd46c14
 DIST allocator-api2-0.2.16.crate 59025 BLAKE2B 
fda69b52435a7243eb19bc55914a1961e59dbad5ac12c40db39cccdf7a99c742da59c3ef160350808698db24b91e0ce655cd1acedbbcbe20c717604aae23ea5e
 SHA512 
e1eb0df6b44b62115795ebf772f81e9ac0b6d273afd81659dbddb7eb6628b6e5ef6a60ea21413e79ee638afb72e6872ba83a075f6324daf93f2f1eda48daff2f
 DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
+DIST anstyle-1.0.6.crate 14604 BLAKE2B 
0716d0dbb62bf05c63c2bfe1c689896660073a423d26965ce2570f11e1925752a61209d78c2f2fe65ec4eb64ea4ffbb39669e789c0ba5d1b71e75de929153b20
 SHA512 
dc0e505465be54799b9faad70d0c6f7f0dcf9f5e1aaa43177b826c85dae626b054910244da0499862f066f6723a1560ad12100aec523f28c6198f1ea0d1b78fa
 DIST askama-0.11.1.crate 8182 BLAKE2B 
5cfa6a0cf5679e271c1d35500b5ae40eb4fe1f955f4356d913ae38d7dc6fa9137ff6e250b7f0ff2a3aadb747d4abc8456a6990c99908e602521ba28014d81ca9
 SHA512 
d75507a43d2ab12b046854e33308eeabbac6825282588554a678742a71f2521a33637b89d3b24088643d18e84cefa538031264c587896e6e1eb16cc15c93afb7
+DIST askama-0.12.1.crate 16976 BLAKE2B 
9257c6d292d6399d81a750ff4b55958a0ffbdbd5f96f3e0f2ac1e777a8bc8e11264a89bdd6edea6a6a3d0b3324138c1524b0f00fc2168afd1abd0f4b777e1473
 SHA512 
b719134fe73080e8360f35ff4ddeb3039ed1c4d20861cd3cae40e20832fcf8b12eb8b04ad82ea49d5c5f5ae6fbb29180aeae7e41be5f72ab97e9abfd60cceb4b
 DIST askama_derive-0.11.2.crate 7097 BLAKE2B 
395811d68825531552ac9bedc30c1d59e15ade43b3818576212456974799c0713df8eb099970affed54397c800f62310d5f6f201bc2275f5168cd805f2330257
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2024-03-05 Thread Matt Jolly
commit: 5a73f53d81d8c37b05745237440a40ac4eed7403
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:16:13 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a73f53d

www-client/google-chrome-unstable: automated update (124.0.6329.0)

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

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...e-124.0.6315.2.ebuild => google-chrome-unstable-124.0.6329.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 51fb8e2a2fae..b2ef9eb7df07 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_124.0.6315.2-1_amd64.deb 106805252 BLAKE2B 
19a1646bba21bfb9edae77966e35a7295c4737d79f5fbb31c4c7680e6d349509732218f1012d828e50bd8d6a3000a51c7a6820457e413d53ea90cfecee2700ec
 SHA512 
abaa672b88e3d57b22f9fe7e8f378c99089874dcaf4a284e08d0b1ebcc717e106863efa6fd8af3fcd29ecddcb106d3016d793e945e74bb45092cdf45ff4cd73a
+DIST google-chrome-unstable_124.0.6329.0-1_amd64.deb 106874220 BLAKE2B 
f112c88c298b39723c2fa139b5175f793d4f26ee916c897c420f914856b6bcc72f35d7b9a7ee9ca230be369c4a9e013d7f97e6ff0325057288dfb2f4823fde02
 SHA512 
d09d34180a54aa7bf5601ee985d2286e070ab1d7deab4318aab22334df44254cfd1913f6d1494a69bd80e79493245021d6be2f42ee9fcb2e8fe7ad5649ea73ac

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-124.0.6315.2.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-124.0.6329.0.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-124.0.6315.2.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-124.0.6329.0.ebuild



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

2024-03-05 Thread Matt Jolly
commit: 29f72c20560fbde742a23eee3579b7c2d4b988f2
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:15:22 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f72c20

www-apps/chromedriver-bin: automated update (122.0.6261.111)

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

 www-apps/chromedriver-bin/Manifest  | 2 +-
 ...-bin-122.0.6261.94.ebuild => chromedriver-bin-122.0.6261.111.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/chromedriver-bin/Manifest 
b/www-apps/chromedriver-bin/Manifest
index d0eb90c0898c..38940a09f86b 100644
--- a/www-apps/chromedriver-bin/Manifest
+++ b/www-apps/chromedriver-bin/Manifest
@@ -1,2 +1,2 @@
 DIST chromedriver-bin-118.0.5993.70.linux64.zip 8269742 BLAKE2B 
5cc84ad4ad634f076427d50254f1ccb49eab837e27a2ac133f808b2c40317fbe77cf4c3922e8bc3a5034cb4beb819fc0859154ea69fec7e78a3cabb9d15626e8
 SHA512 
3ebdeb021e68924e41fb721c94e53ba9d45e5048f1d8b9550fa99dd034d0afb590aa76693ce37f1706b7baaa6c9dbb4bd3e1001fe72ee9dadd040a1405956ab3
-DIST chromedriver-bin-122.0.6261.94.linux64.zip 8597995 BLAKE2B 
9c9693ffcc6a49169ad3789cf00e8f35f21e92e1b24a7e1bdb334ff8c1f76f6ead63262ad4be7ebac5d06a6d1011ca71c728862c8995f7d5ad03e0780f1c76bc
 SHA512 
7f7fd3b46fbd119814d8759843da2f6cdd77a1e1a783a63296b4fc7b7f5e822c004c6c6f264601107aa30d23024ccd7737f646a9044e885c17362f7f7630a5be
+DIST chromedriver-bin-122.0.6261.111.linux64.zip 8597973 BLAKE2B 
c6c44241fe0909e17d4cca6f35def9305ac21056d950e6ce210751f0bb9f52e0d59d0cf18bd9b5fa0dbab8c17238d0d6f2c48314cd9d9cc26e3fd565fd44ccef
 SHA512 
3486f98f28a3261882135cd87060335ff158b6646e0aa23bf4ea88f5b25b3c1a60cb3e2924470edf95db053e8a06e421d03b3f944b12fa8a39c92ae2e3a95d1b

diff --git a/www-apps/chromedriver-bin/chromedriver-bin-122.0.6261.94.ebuild 
b/www-apps/chromedriver-bin/chromedriver-bin-122.0.6261.111.ebuild
similarity index 100%
rename from www-apps/chromedriver-bin/chromedriver-bin-122.0.6261.94.ebuild
rename to www-apps/chromedriver-bin/chromedriver-bin-122.0.6261.111.ebuild



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

2024-03-05 Thread Matt Jolly
commit: 45ee358c195811493bda3dc6471f7f6027b54b45
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:14:46 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ee358c

www-client/google-chrome: automated update (122.0.6261.111)

Bug: https://bugs.gentoo.org/926230
Signed-off-by: Matt Jolly  gentoo.org>

 www-client/google-chrome/Manifest   | 2 +-
 ...-chrome-122.0.6261.94.ebuild => google-chrome-122.0.6261.111.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 46e78df9f840..75b87bb397f6 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_122.0.6261.94-1_amd64.deb 106058640 BLAKE2B 
c6ada6165cbaa0e8113c09bafc6b47ffa80949b41acb2bedf8c4b098fbc8ecb32022851039d95b1b4ffc876d9c7024c661777bdb605271ff66a6ec38f2202431
 SHA512 
3e0ca4c3fbbdbe2509df45a8e87ba263b47cfdf1436ce1a70e2599caac5832fdf496c4f8abcbeba1b4167a163ad0161f98597ce625cfaf3c68404d4ee0ffcc19
+DIST google-chrome-stable_122.0.6261.111-1_amd64.deb 106071384 BLAKE2B 
35b12df2353d9c7597be22b4c44e0237222e8d57c2a12cfab51494b0fc487c800431a6bc15195012bb78da36ec996bb585cb5ea4f59801cd547d2b013f041319
 SHA512 
0dad75f086a8e228fce5078a2645a53db284139b1ed6d6656a1089351a28a0f37dd6823f7162568a069b8d0ff2d306d0c8c5f8424e9e90ba91c6d31855d51fe9

diff --git a/www-client/google-chrome/google-chrome-122.0.6261.94.ebuild 
b/www-client/google-chrome/google-chrome-122.0.6261.111.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-122.0.6261.94.ebuild
rename to www-client/google-chrome/google-chrome-122.0.6261.111.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2024-03-05 Thread Matt Jolly
commit: 66a1bbed7c1d2cf7f1695deef23492e2bea0b588
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:14:59 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a1bbed

www-plugins/chrome-binary-plugins: automated update (122.0.6261.111)

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

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...122.0.6261.94.ebuild => chrome-binary-plugins-122.0.6261.111.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index b4600a6d49bd..0b0a2b9cbdca 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_123.0.6312.22-1_amd64.deb 106639972 BLAKE2B 
b409312d382fabe3d863ffd675b8133ebd7acfa7a935007a7f08d81f91275df6074eee298cd157c6aac1ed4d3f7eee53036ae236dadcbd845d532473d57cfdb2
 SHA512 
bc73a6aefc105f5e08634dca606ee556f90d359b92d228a1f213ba603b51059c39b10f52c47490d4f2f73a32a6d8ad33ec6900fe76466b95486eba4e01e40b9c
-DIST google-chrome-stable_122.0.6261.94-1_amd64.deb 106058640 BLAKE2B 
c6ada6165cbaa0e8113c09bafc6b47ffa80949b41acb2bedf8c4b098fbc8ecb32022851039d95b1b4ffc876d9c7024c661777bdb605271ff66a6ec38f2202431
 SHA512 
3e0ca4c3fbbdbe2509df45a8e87ba263b47cfdf1436ce1a70e2599caac5832fdf496c4f8abcbeba1b4167a163ad0161f98597ce625cfaf3c68404d4ee0ffcc19
+DIST google-chrome-stable_122.0.6261.111-1_amd64.deb 106071384 BLAKE2B 
35b12df2353d9c7597be22b4c44e0237222e8d57c2a12cfab51494b0fc487c800431a6bc15195012bb78da36ec996bb585cb5ea4f59801cd547d2b013f041319
 SHA512 
0dad75f086a8e228fce5078a2645a53db284139b1ed6d6656a1089351a28a0f37dd6823f7162568a069b8d0ff2d306d0c8c5f8424e9e90ba91c6d31855d51fe9
 DIST google-chrome-unstable_124.0.6315.2-1_amd64.deb 106805252 BLAKE2B 
19a1646bba21bfb9edae77966e35a7295c4737d79f5fbb31c4c7680e6d349509732218f1012d828e50bd8d6a3000a51c7a6820457e413d53ea90cfecee2700ec
 SHA512 
abaa672b88e3d57b22f9fe7e8f378c99089874dcaf4a284e08d0b1ebcc717e106863efa6fd8af3fcd29ecddcb106d3016d793e945e74bb45092cdf45ff4cd73a

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-122.0.6261.94.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-122.0.6261.111.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-122.0.6261.94.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-122.0.6261.111.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-beta/

2024-03-05 Thread Matt Jolly
commit: 35ba2b0550e7b88e0e00d23856d5561804128405
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:17:53 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ba2b05

www-client/microsoft-edge-beta: remove old

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

 www-client/microsoft-edge-beta/Manifest|   1 -
 .../microsoft-edge-beta-122.0.2365.52.ebuild   | 127 -
 2 files changed, 128 deletions(-)

diff --git a/www-client/microsoft-edge-beta/Manifest 
b/www-client/microsoft-edge-beta/Manifest
index b1ceba25c31b..927de9da6ea9 100644
--- a/www-client/microsoft-edge-beta/Manifest
+++ b/www-client/microsoft-edge-beta/Manifest
@@ -1,4 +1,3 @@
-DIST microsoft-edge-beta_122.0.2365.52-1_amd64.deb 165995146 BLAKE2B 
0b26dfa66ca5fb0440c8f297f9754da31c5ca50286d07723e1e11b5906e36dac68aab4bc2307ae4079f423e225b6696fd6533be0601ed42c88d7e5b167f0b8f7
 SHA512 
4f285870b7096ff95b5a55fc195f05347eae837707bd31cc8ae05c8c4502851b3c8a777a140660c128ae0343cdb88fa92e98a72be7b32085de1d8b30d5ed564b
 DIST microsoft-edge-beta_122.0.2365.59-1_amd64.deb 165989346 BLAKE2B 
f4e577681fe3a8a5f67963132878bf5c5f05046f5249ce5ef3717a8392f0c56377299c485e7478415873e78c0715dce6e42a7fbeeabda191a1269056eeab16bc
 SHA512 
27cdcbd7801781e3e50ead3fe74c2ba4a68f1dc918894240c6377ee19798d1631b43b4299a09476710f382e36b944476f0976539c7d7828bef19861be32cf397
 DIST microsoft-edge-beta_123.0.2420.10-1_amd64.deb 166066486 BLAKE2B 
703a1db1df6b6aff07b532e5707543278b72b232dcd64f8547c0ad32a9927d17af852395e55b39cd88b5118838a68e00182436ae887a43c272a1631d12cca009
 SHA512 
12e92c177c72ff3b2ef60d037f341bec4b836f5e89dbb1f1fdb6042ec0859b483f0bbd5bd546f4730e598700a644a0fc33c10a9e981b7a9a94c8c02c106b5c40
 DIST microsoft-edge-beta_123.0.2420.20-1_amd64.deb 166135054 BLAKE2B 
62bbd49988d41821a11fafb6e3cedc105449aa432bfe143ab6f850e8d8f89192d5f0413ff81329b1e6fb0c841b454dce92b51984ee577f9292b5636bb2f8b400
 SHA512 
c9c350f0e8bef4b84e39f73a46a24c55edb8901b0043f7b0639ebc433a604d7ff282a4b2b5df09938b0bee9b4e963800c2d11629a368c8d6f7c93a58639d15d1

diff --git 
a/www-client/microsoft-edge-beta/microsoft-edge-beta-122.0.2365.52.ebuild 
b/www-client/microsoft-edge-beta/microsoft-edge-beta-122.0.2365.52.ebuild
deleted file mode 100644
index f67dc1739fa5..
--- a/www-client/microsoft-edge-beta/microsoft-edge-beta-122.0.2365.52.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 2011-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit chromium-2 desktop pax-utils unpacker xdg
-
-DESCRIPTION="The web browser from Microsoft"
-HOMEPAGE="https://www.microsoft.com/en-us/edge;
-
-if [[ ${PN} == microsoft-edge ]]; then
-   MY_PN=${PN}-stable
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* ~amd64"
-
-MY_P="${MY_PN}_${PV}-1"
-
-SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb;
-
-LICENSE="microsoft-edge"
-SLOT="0"
-RESTRICT="bindist mirror strip"
-IUSE="+mip qt5 qt6"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   app-misc/ca-certificates
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-fonts/liberation-fonts
-   media-libs/alsa-lib
-   media-libs/mesa[gbm(+)]
-   net-misc/curl[ssl]
-   net-print/cups
-   sys-apps/dbus
-   sys-apps/util-linux
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libxshmfence
-   x11-libs/pango
-   x11-misc/xdg-utils
-   mip? ( app-crypt/libsecret )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[X]
-   dev-qt/qtwidgets:5
-   )
-   qt6? ( dev-qt/qtbase:6[gui,widgets] )
-"
-
-QA_PREBUILT="*"
-QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
-S=${WORKDIR}
-EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
-
-pkg_nofetch() {
-   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
-}
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "microsoft-edge only works on amd64"
-}
-
-pkg_setup() {
-   chromium_suid_sandbox_check_kernel_config
-}
-
-src_unpack() {
-   :
-}
-
-src_install() {
-   dodir /
-   cd "${ED}" || die
-   unpacker
-
-   rm -f _gpgorigin || die
-
-   rm -r etc usr/share/menu || die
-   mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
-
-   gzip -d usr/share/doc/${PF}/changelog.gz || die
-   gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
-   if [[ -L 

[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-beta/

2024-03-05 Thread Matt Jolly
commit: cb52061b73c60419a590dc2e3aa11ebada0d549c
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:17:50 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb52061b

www-client/microsoft-edge-beta: automated bump (123.0.2420.20)

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

 www-client/microsoft-edge-beta/Manifest|   1 +
 .../microsoft-edge-beta-123.0.2420.20.ebuild   | 127 +
 2 files changed, 128 insertions(+)

diff --git a/www-client/microsoft-edge-beta/Manifest 
b/www-client/microsoft-edge-beta/Manifest
index 0589d722c79e..b1ceba25c31b 100644
--- a/www-client/microsoft-edge-beta/Manifest
+++ b/www-client/microsoft-edge-beta/Manifest
@@ -1,3 +1,4 @@
 DIST microsoft-edge-beta_122.0.2365.52-1_amd64.deb 165995146 BLAKE2B 
0b26dfa66ca5fb0440c8f297f9754da31c5ca50286d07723e1e11b5906e36dac68aab4bc2307ae4079f423e225b6696fd6533be0601ed42c88d7e5b167f0b8f7
 SHA512 
4f285870b7096ff95b5a55fc195f05347eae837707bd31cc8ae05c8c4502851b3c8a777a140660c128ae0343cdb88fa92e98a72be7b32085de1d8b30d5ed564b
 DIST microsoft-edge-beta_122.0.2365.59-1_amd64.deb 165989346 BLAKE2B 
f4e577681fe3a8a5f67963132878bf5c5f05046f5249ce5ef3717a8392f0c56377299c485e7478415873e78c0715dce6e42a7fbeeabda191a1269056eeab16bc
 SHA512 
27cdcbd7801781e3e50ead3fe74c2ba4a68f1dc918894240c6377ee19798d1631b43b4299a09476710f382e36b944476f0976539c7d7828bef19861be32cf397
 DIST microsoft-edge-beta_123.0.2420.10-1_amd64.deb 166066486 BLAKE2B 
703a1db1df6b6aff07b532e5707543278b72b232dcd64f8547c0ad32a9927d17af852395e55b39cd88b5118838a68e00182436ae887a43c272a1631d12cca009
 SHA512 
12e92c177c72ff3b2ef60d037f341bec4b836f5e89dbb1f1fdb6042ec0859b483f0bbd5bd546f4730e598700a644a0fc33c10a9e981b7a9a94c8c02c106b5c40
+DIST microsoft-edge-beta_123.0.2420.20-1_amd64.deb 166135054 BLAKE2B 
62bbd49988d41821a11fafb6e3cedc105449aa432bfe143ab6f850e8d8f89192d5f0413ff81329b1e6fb0c841b454dce92b51984ee577f9292b5636bb2f8b400
 SHA512 
c9c350f0e8bef4b84e39f73a46a24c55edb8901b0043f7b0639ebc433a604d7ff282a4b2b5df09938b0bee9b4e963800c2d11629a368c8d6f7c93a58639d15d1

diff --git 
a/www-client/microsoft-edge-beta/microsoft-edge-beta-123.0.2420.20.ebuild 
b/www-client/microsoft-edge-beta/microsoft-edge-beta-123.0.2420.20.ebuild
new file mode 100644
index ..f67dc1739fa5
--- /dev/null
+++ b/www-client/microsoft-edge-beta/microsoft-edge-beta-123.0.2420.20.ebuild
@@ -0,0 +1,127 @@
+# Copyright 2011-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit chromium-2 desktop pax-utils unpacker xdg
+
+DESCRIPTION="The web browser from Microsoft"
+HOMEPAGE="https://www.microsoft.com/en-us/edge;
+
+if [[ ${PN} == microsoft-edge ]]; then
+   MY_PN=${PN}-stable
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+MY_P="${MY_PN}_${PV}-1"
+
+SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb;
+
+LICENSE="microsoft-edge"
+SLOT="0"
+RESTRICT="bindist mirror strip"
+IUSE="+mip qt5 qt6"
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   app-misc/ca-certificates
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-fonts/liberation-fonts
+   media-libs/alsa-lib
+   media-libs/mesa[gbm(+)]
+   net-misc/curl[ssl]
+   net-print/cups
+   sys-apps/dbus
+   sys-apps/util-linux
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3[X]
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libxshmfence
+   x11-libs/pango
+   x11-misc/xdg-utils
+   mip? ( app-crypt/libsecret )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[X]
+   dev-qt/qtwidgets:5
+   )
+   qt6? ( dev-qt/qtbase:6[gui,widgets] )
+"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
+S=${WORKDIR}
+EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
+
+pkg_nofetch() {
+   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
+}
+
+pkg_pretend() {
+   # Protect against people using autounmask overzealously
+   use amd64 || die "microsoft-edge only works on amd64"
+}
+
+pkg_setup() {
+   chromium_suid_sandbox_check_kernel_config
+}
+
+src_unpack() {
+   :
+}
+
+src_install() {
+   dodir /
+   cd "${ED}" || die
+   unpacker
+
+   rm -f _gpgorigin || die
+
+   rm -r etc usr/share/menu || die
+   mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
+
+   gzip -d usr/share/doc/${PF}/changelog.gz || die
+   gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
+   if [[ 

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

2024-03-05 Thread Matt Jolly
commit: 5ad233954194dd7d64b34f05b67b56d6613e4e22
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:18:46 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad23395

www-client/opera: amd64 stable (108.0.5067.20)

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

 www-client/opera/opera-108.0.5067.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/opera/opera-108.0.5067.20.ebuild 
b/www-client/opera/opera-108.0.5067.20.ebuild
index 869e16febbe2..6c4c3db8eec1 100644
--- a/www-client/opera/opera-108.0.5067.20.ebuild
+++ b/www-client/opera/opera-108.0.5067.20.ebuild
@@ -41,7 +41,7 @@ else
MY_PN=${PN}
 fi
 
-KEYWORDS="-* ~amd64"
+KEYWORDS="-* amd64"
 
 FFMPEG_VERSION="114.0.5735.9"
 



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

2024-03-05 Thread Matt Jolly
commit: a8b36a10ddeccbaf017e2d08d6f11a0ad078a043
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:18:42 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b36a10

www-client/opera: automated bump (108.0.5067.20)

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

 www-client/opera/Manifest   |   1 +
 www-client/opera/opera-108.0.5067.20.ebuild | 170 
 2 files changed, 171 insertions(+)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 5685bdd2ba70..93b5172d44a3 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -1,2 +1,3 @@
 DIST opera-ffmpeg-codecs-114.0.5735.9.tar.xz 1315192 BLAKE2B 
ef9a0cfc8c30ac0a837863644f3c2d5e78059575e2b8f6fda9253304f4815a39d021602e802dac7e1d5a1685aa5015a02019c4a0399f0bdc81136f956cc1d55f
 SHA512 
bdad66bd5d238bdeb81a4e2a956f0a814633360f05c7bed2161df9506d2ccc45ba452cc8974c755fe0d3f46adceb90324a472a5dac72e9c65391ae7a841c
 DIST opera-stable_107.0.5045.36_amd64.deb 109560024 BLAKE2B 
e7104840f79f85e798afddd68ceac67a63a5e1bc84b5ed0289f638332d9a9211c278d1fce593011c90b49d98896c780e463e2b42914fff5903d0e3d50407a490
 SHA512 
83441ddc5addae11abc5d492b4791fc8c862cb1eef3b7e2135cc67bae66f9d86b3a15cb6c44e90ec927dcf87cb6b22c3f4b38deb3ebc428e5c91e2f272111aa6
+DIST opera-stable_108.0.5067.20_amd64.deb 115350312 BLAKE2B 
ed06293ee92bb14e4dbb8cfcff39d7113a3067aa38c637edaa48298bd5c411ffa5a5c77f22b0d2e3d570767312eabd04db835649745e188c54d25c09b79356ba
 SHA512 
afbf4c21fa05ddd9fa148535ba169cb1aa87ef8b4f79fedbdf00a1cc1092d3e0c5a78a1a235a94efdba76eef7f8aece366713d33fc1b5cf8fadcdd4bf793e9d4

diff --git a/www-client/opera/opera-108.0.5067.20.ebuild 
b/www-client/opera/opera-108.0.5067.20.ebuild
new file mode 100644
index ..869e16febbe2
--- /dev/null
+++ b/www-client/opera/opera-108.0.5067.20.ebuild
@@ -0,0 +1,170 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CHROMIUM_LANGS="
+   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
+   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+"
+
+# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
+: ${OPERA_FORCE_RPM=no}
+
+inherit chromium-2 pax-utils xdg
+
+if [[ ${OPERA_FORCE_RPM} == yes ]]; then
+   inherit rpm
+   OPERA_ARCHIVE_EXT="rpm"
+else
+   inherit unpacker
+   OPERA_ARCHIVE_EXT="deb"
+fi
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2018"
+SLOT="0"
+
+SRC_URI_BASE=(
+   "https://download1.operacdn.com/pub/${PN};
+   "https://download2.operacdn.com/pub/${PN};
+   "https://download3.operacdn.com/pub/${PN};
+   "https://download4.operacdn.com/pub/${PN};
+)
+
+if [[ ${PN} == opera ]]; then
+   MY_PN=${PN}-stable
+   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+FFMPEG_VERSION="114.0.5735.9"
+
+SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
+   proprietary-codecs? (
+   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
+   )"
+
+IUSE="+proprietary-codecs +suid qt5 qt6"
+RESTRICT="bindist mirror strip"
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gsettings-desktop-schemas
+   media-libs/alsa-lib
+   media-libs/mesa[gbm(+)]
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libdrm
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libxshmfence
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/pango
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[X]
+   dev-qt/qtwidgets:5
+   )
+   qt6? ( dev-qt/qtbase:6[gui,widgets] )
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+OPERA_HOME="opt/opera${PN#opera}"
+
+pkg_pretend() {
+   # Protect against people using autounmask overzealously
+   use amd64 || die "opera only works on amd64"
+}
+
+pkg_setup() {
+   chromium_suid_sandbox_check_kernel_config
+}
+
+src_unpack() {
+   :
+}
+
+src_install() {
+   dodir /
+   cd "${ED}" || die
+   if [[ ${OPERA_FORCE_RPM} == yes ]]; then
+   rpm_src_unpack "${A[0]}"
+   else
+   unpacker
+   fi
+
+   # move to /opt, bug #573052
+   mkdir -p "${OPERA_HOME%${PN}}"
+   if [[ ${OPERA_FORCE_RPM} == yes ]]; then
+

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

2024-03-05 Thread Matt Jolly
commit: e44e1be37885ac9b1cb0d565c0c76e49215bfb37
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:18:49 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44e1be3

www-client/opera: remove old

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

 www-client/opera/Manifest   |   1 -
 www-client/opera/opera-107.0.5045.36.ebuild | 170 
 2 files changed, 171 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 93b5172d44a3..8c5f244898df 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -1,3 +1,2 @@
 DIST opera-ffmpeg-codecs-114.0.5735.9.tar.xz 1315192 BLAKE2B 
ef9a0cfc8c30ac0a837863644f3c2d5e78059575e2b8f6fda9253304f4815a39d021602e802dac7e1d5a1685aa5015a02019c4a0399f0bdc81136f956cc1d55f
 SHA512 
bdad66bd5d238bdeb81a4e2a956f0a814633360f05c7bed2161df9506d2ccc45ba452cc8974c755fe0d3f46adceb90324a472a5dac72e9c65391ae7a841c
-DIST opera-stable_107.0.5045.36_amd64.deb 109560024 BLAKE2B 
e7104840f79f85e798afddd68ceac67a63a5e1bc84b5ed0289f638332d9a9211c278d1fce593011c90b49d98896c780e463e2b42914fff5903d0e3d50407a490
 SHA512 
83441ddc5addae11abc5d492b4791fc8c862cb1eef3b7e2135cc67bae66f9d86b3a15cb6c44e90ec927dcf87cb6b22c3f4b38deb3ebc428e5c91e2f272111aa6
 DIST opera-stable_108.0.5067.20_amd64.deb 115350312 BLAKE2B 
ed06293ee92bb14e4dbb8cfcff39d7113a3067aa38c637edaa48298bd5c411ffa5a5c77f22b0d2e3d570767312eabd04db835649745e188c54d25c09b79356ba
 SHA512 
afbf4c21fa05ddd9fa148535ba169cb1aa87ef8b4f79fedbdf00a1cc1092d3e0c5a78a1a235a94efdba76eef7f8aece366713d33fc1b5cf8fadcdd4bf793e9d4

diff --git a/www-client/opera/opera-107.0.5045.36.ebuild 
b/www-client/opera/opera-107.0.5045.36.ebuild
deleted file mode 100644
index 6c4c3db8eec1..
--- a/www-client/opera/opera-107.0.5045.36.ebuild
+++ /dev/null
@@ -1,170 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CHROMIUM_LANGS="
-   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
-   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-
-# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
-: ${OPERA_FORCE_RPM=no}
-
-inherit chromium-2 pax-utils xdg
-
-if [[ ${OPERA_FORCE_RPM} == yes ]]; then
-   inherit rpm
-   OPERA_ARCHIVE_EXT="rpm"
-else
-   inherit unpacker
-   OPERA_ARCHIVE_EXT="deb"
-fi
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2018"
-SLOT="0"
-
-SRC_URI_BASE=(
-   "https://download1.operacdn.com/pub/${PN};
-   "https://download2.operacdn.com/pub/${PN};
-   "https://download3.operacdn.com/pub/${PN};
-   "https://download4.operacdn.com/pub/${PN};
-)
-
-if [[ ${PN} == opera ]]; then
-   MY_PN=${PN}-stable
-   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* amd64"
-
-FFMPEG_VERSION="114.0.5735.9"
-
-SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
-   proprietary-codecs? (
-   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
-   )"
-
-IUSE="+proprietary-codecs +suid qt5 qt6"
-RESTRICT="bindist mirror strip"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gsettings-desktop-schemas
-   media-libs/alsa-lib
-   media-libs/mesa[gbm(+)]
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libdrm
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libxshmfence
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/pango
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[X]
-   dev-qt/qtwidgets:5
-   )
-   qt6? ( dev-qt/qtbase:6[gui,widgets] )
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="opt/opera${PN#opera}"
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "opera only works on amd64"
-}
-
-pkg_setup() {
-   chromium_suid_sandbox_check_kernel_config
-}
-
-src_unpack() {
-   :
-}
-
-src_install() {
-   dodir /
-   cd "${ED}" || die
-   if [[ ${OPERA_FORCE_RPM} == yes ]]; then
-   rpm_src_unpack "${A[0]}"
-   else
-   unpacker
-   fi
-
-   # move to /opt, bug #573052
-   mkdir -p "${OPERA_HOME%${PN}}"
-   if [[ ${OPERA_FORCE_RPM} == yes ]]; then
-   mv 

[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2024-03-05 Thread Matt Jolly
commit: a3a2d26d7e3603249dd9c4b67672f41e326ea02f
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:16:17 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a2d26d

www-plugins/chrome-binary-plugins: automated update (124.0.6329.0_alpha)

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

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...5.2_alpha.ebuild => chrome-binary-plugins-124.0.6329.0_alpha.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 0b0a2b9cbdca..cad4a961c763 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_123.0.6312.22-1_amd64.deb 106639972 BLAKE2B 
b409312d382fabe3d863ffd675b8133ebd7acfa7a935007a7f08d81f91275df6074eee298cd157c6aac1ed4d3f7eee53036ae236dadcbd845d532473d57cfdb2
 SHA512 
bc73a6aefc105f5e08634dca606ee556f90d359b92d228a1f213ba603b51059c39b10f52c47490d4f2f73a32a6d8ad33ec6900fe76466b95486eba4e01e40b9c
 DIST google-chrome-stable_122.0.6261.111-1_amd64.deb 106071384 BLAKE2B 
35b12df2353d9c7597be22b4c44e0237222e8d57c2a12cfab51494b0fc487c800431a6bc15195012bb78da36ec996bb585cb5ea4f59801cd547d2b013f041319
 SHA512 
0dad75f086a8e228fce5078a2645a53db284139b1ed6d6656a1089351a28a0f37dd6823f7162568a069b8d0ff2d306d0c8c5f8424e9e90ba91c6d31855d51fe9
-DIST google-chrome-unstable_124.0.6315.2-1_amd64.deb 106805252 BLAKE2B 
19a1646bba21bfb9edae77966e35a7295c4737d79f5fbb31c4c7680e6d349509732218f1012d828e50bd8d6a3000a51c7a6820457e413d53ea90cfecee2700ec
 SHA512 
abaa672b88e3d57b22f9fe7e8f378c99089874dcaf4a284e08d0b1ebcc717e106863efa6fd8af3fcd29ecddcb106d3016d793e945e74bb45092cdf45ff4cd73a
+DIST google-chrome-unstable_124.0.6329.0-1_amd64.deb 106874220 BLAKE2B 
f112c88c298b39723c2fa139b5175f793d4f26ee916c897c420f914856b6bcc72f35d7b9a7ee9ca230be369c4a9e013d7f97e6ff0325057288dfb2f4823fde02
 SHA512 
d09d34180a54aa7bf5601ee985d2286e070ab1d7deab4318aab22334df44254cfd1913f6d1494a69bd80e79493245021d6be2f42ee9fcb2e8fe7ad5649ea73ac

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6315.2_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6329.0_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6315.2_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-124.0.6329.0_alpha.ebuild



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

2024-03-05 Thread Matt Jolly
commit: 8bb26bb6b4f1c979dfb195d1c8eb15464a49f6e5
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:19:12 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb26bb6

www-client/opera-developer: automated bump (109.0.5097.0)

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

 www-client/opera-developer/Manifest|   1 +
 .../opera-developer-109.0.5097.0.ebuild| 170 +
 2 files changed, 171 insertions(+)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 066ee0314017..ea9c768f2789 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,4 +1,5 @@
 DIST opera-developer_109.0.5076.0_amd64.deb 115494160 BLAKE2B 
3efe4e38a10099046d3744b386af6a4d57523f858ea243e9cabd243406534b341fdc691834710bf8059f3c9231fff5ee98a194492a4c4c3ce55ca314973a2b1b
 SHA512 
cadfaece785223ad15501f2a725dc5bfb9208adae5996b79d2ec75bc685a670f0a0fedec6b2412db51ed6c6ea740b5fe8d547aa29d922d44f2045c23d6fbafe9
 DIST opera-developer_109.0.5083.0_amd64.deb 115470644 BLAKE2B 
c066042e5588ada263ff84e030dac4bbf71004ce1e32b74bfbbb4722b809726d6e9ae0f194f0ce0fb4e5d72df6f2696359fcf40bbb8f68086d8a5999ea34a2a7
 SHA512 
9f86571e0623b72a65e63394134f23a7cba629898a67ca79285429e0aab0f4167e31ead77b3a301c57e8e5aca6a9d83e95ee9760a6c1671a553449fb2e159f8b
 DIST opera-developer_109.0.5089.0_amd64.deb 115356844 BLAKE2B 
ccec085e93bbb13bbc946e459da73d00b14c539c6c62b330d391d1f405b4869b033a7793e40e9ababe4e008a02a473ac61e13aa5df202642303af9c500028e00
 SHA512 
2dd1699a264a16a8765cffa6d6d5160bec1f476786678a5cc4260011d10a43c72c4e2975a45ac2d1bbce46df05e5e41f27f8a37d3b296e7ebc42fd798681c0de
+DIST opera-developer_109.0.5097.0_amd64.deb 115199092 BLAKE2B 
3fc904daa984bd9732b01176ffb412ecf41d6557ff108689e9327c5ba6b062717f5205423d4d8fe86ad74385f31cc1209bb47bb32fd76b054686512b23d8a35a
 SHA512 
131beba74262ea69f769563704482675248289cba82c400640d019891c356d94f94f8acb6901fb3a8fc6f571b36218dc12f65186d5dae78f45f18e3aa86d1db1
 DIST opera-ffmpeg-codecs-114.0.5735.9.tar.xz 1315192 BLAKE2B 
ef9a0cfc8c30ac0a837863644f3c2d5e78059575e2b8f6fda9253304f4815a39d021602e802dac7e1d5a1685aa5015a02019c4a0399f0bdc81136f956cc1d55f
 SHA512 
bdad66bd5d238bdeb81a4e2a956f0a814633360f05c7bed2161df9506d2ccc45ba452cc8974c755fe0d3f46adceb90324a472a5dac72e9c65391ae7a841c

diff --git a/www-client/opera-developer/opera-developer-109.0.5097.0.ebuild 
b/www-client/opera-developer/opera-developer-109.0.5097.0.ebuild
new file mode 100644
index ..869e16febbe2
--- /dev/null
+++ b/www-client/opera-developer/opera-developer-109.0.5097.0.ebuild
@@ -0,0 +1,170 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CHROMIUM_LANGS="
+   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
+   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+"
+
+# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
+: ${OPERA_FORCE_RPM=no}
+
+inherit chromium-2 pax-utils xdg
+
+if [[ ${OPERA_FORCE_RPM} == yes ]]; then
+   inherit rpm
+   OPERA_ARCHIVE_EXT="rpm"
+else
+   inherit unpacker
+   OPERA_ARCHIVE_EXT="deb"
+fi
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2018"
+SLOT="0"
+
+SRC_URI_BASE=(
+   "https://download1.operacdn.com/pub/${PN};
+   "https://download2.operacdn.com/pub/${PN};
+   "https://download3.operacdn.com/pub/${PN};
+   "https://download4.operacdn.com/pub/${PN};
+)
+
+if [[ ${PN} == opera ]]; then
+   MY_PN=${PN}-stable
+   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+FFMPEG_VERSION="114.0.5735.9"
+
+SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
+   proprietary-codecs? (
+   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
+   )"
+
+IUSE="+proprietary-codecs +suid qt5 qt6"
+RESTRICT="bindist mirror strip"
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gsettings-desktop-schemas
+   media-libs/alsa-lib
+   media-libs/mesa[gbm(+)]
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libdrm
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/libxshmfence
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/pango
+   qt5? (
+   

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

2024-03-05 Thread Matt Jolly
commit: 980723b17e4c96a9c3035c6aa4ef579c5b548cdd
Author: Matt Jolly  gentoo  org>
AuthorDate: Wed Mar  6 00:19:15 2024 +
Commit: Matt Jolly  gentoo  org>
CommitDate: Wed Mar  6 02:11:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=980723b1

www-client/opera-developer: remove old

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

 www-client/opera-developer/Manifest|   1 -
 .../opera-developer-109.0.5076.0.ebuild| 170 -
 2 files changed, 171 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index ea9c768f2789..851081321a56 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,4 +1,3 @@
-DIST opera-developer_109.0.5076.0_amd64.deb 115494160 BLAKE2B 
3efe4e38a10099046d3744b386af6a4d57523f858ea243e9cabd243406534b341fdc691834710bf8059f3c9231fff5ee98a194492a4c4c3ce55ca314973a2b1b
 SHA512 
cadfaece785223ad15501f2a725dc5bfb9208adae5996b79d2ec75bc685a670f0a0fedec6b2412db51ed6c6ea740b5fe8d547aa29d922d44f2045c23d6fbafe9
 DIST opera-developer_109.0.5083.0_amd64.deb 115470644 BLAKE2B 
c066042e5588ada263ff84e030dac4bbf71004ce1e32b74bfbbb4722b809726d6e9ae0f194f0ce0fb4e5d72df6f2696359fcf40bbb8f68086d8a5999ea34a2a7
 SHA512 
9f86571e0623b72a65e63394134f23a7cba629898a67ca79285429e0aab0f4167e31ead77b3a301c57e8e5aca6a9d83e95ee9760a6c1671a553449fb2e159f8b
 DIST opera-developer_109.0.5089.0_amd64.deb 115356844 BLAKE2B 
ccec085e93bbb13bbc946e459da73d00b14c539c6c62b330d391d1f405b4869b033a7793e40e9ababe4e008a02a473ac61e13aa5df202642303af9c500028e00
 SHA512 
2dd1699a264a16a8765cffa6d6d5160bec1f476786678a5cc4260011d10a43c72c4e2975a45ac2d1bbce46df05e5e41f27f8a37d3b296e7ebc42fd798681c0de
 DIST opera-developer_109.0.5097.0_amd64.deb 115199092 BLAKE2B 
3fc904daa984bd9732b01176ffb412ecf41d6557ff108689e9327c5ba6b062717f5205423d4d8fe86ad74385f31cc1209bb47bb32fd76b054686512b23d8a35a
 SHA512 
131beba74262ea69f769563704482675248289cba82c400640d019891c356d94f94f8acb6901fb3a8fc6f571b36218dc12f65186d5dae78f45f18e3aa86d1db1

diff --git a/www-client/opera-developer/opera-developer-109.0.5076.0.ebuild 
b/www-client/opera-developer/opera-developer-109.0.5076.0.ebuild
deleted file mode 100644
index 869e16febbe2..
--- a/www-client/opera-developer/opera-developer-109.0.5076.0.ebuild
+++ /dev/null
@@ -1,170 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CHROMIUM_LANGS="
-   bg bn ca cs da de el en-GB en-US es-419 es fil fi fr hi hr hu id
-   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-
-# These are intended for ebuild maintainer use to force RPM if DEB is not 
available.
-: ${OPERA_FORCE_RPM=no}
-
-inherit chromium-2 pax-utils xdg
-
-if [[ ${OPERA_FORCE_RPM} == yes ]]; then
-   inherit rpm
-   OPERA_ARCHIVE_EXT="rpm"
-else
-   inherit unpacker
-   OPERA_ARCHIVE_EXT="deb"
-fi
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2018"
-SLOT="0"
-
-SRC_URI_BASE=(
-   "https://download1.operacdn.com/pub/${PN};
-   "https://download2.operacdn.com/pub/${PN};
-   "https://download3.operacdn.com/pub/${PN};
-   "https://download4.operacdn.com/pub/${PN};
-)
-
-if [[ ${PN} == opera ]]; then
-   MY_PN=${PN}-stable
-   SRC_URI_BASE=( "${SRC_URI_BASE[@]/%//desktop}" )
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* ~amd64"
-
-FFMPEG_VERSION="114.0.5735.9"
-
-SRC_URI="${SRC_URI_BASE[@]/%//${PV}/linux/${MY_PN}_${PV}_amd64.${OPERA_ARCHIVE_EXT}}
-   proprietary-codecs? (
-   
mirror+https://dev.gentoo.org/~sultan/distfiles/www-client/opera/opera-ffmpeg-codecs-${FFMPEG_VERSION}.tar.xz
-   )"
-
-IUSE="+proprietary-codecs +suid qt5 qt6"
-RESTRICT="bindist mirror strip"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gsettings-desktop-schemas
-   media-libs/alsa-lib
-   media-libs/mesa[gbm(+)]
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/glibc
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libdrm
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libxshmfence
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/pango
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[X]
-   dev-qt/qtwidgets:5
-   )
-   qt6? ( dev-qt/qtbase:6[gui,widgets] )
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="opt/opera${PN#opera}"
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "opera only works on amd64"

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

2024-03-05 Thread Sam James
commit: e22d54e245f0cd2628def36b3fe021ae61df0740
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 05:46:35 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 06:02:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22d54e2

app-misc/dfshow: update EAPI 7 -> 8

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 .../dfshow/{dfshow-0.9.1_beta-r1.ebuild => dfshow-0.9.1_beta-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild 
b/app-misc/dfshow/dfshow-0.9.1_beta-r2.ebuild
similarity index 99%
rename from app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild
rename to app-misc/dfshow/dfshow-0.9.1_beta-r2.ebuild
index 7cd16d1a8fd9..dc9ffb493c9b 100644
--- a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild
+++ b/app-misc/dfshow/dfshow-0.9.1_beta-r2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools bash-completion-r1 flag-o-matic
 



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

2024-03-05 Thread Sam James
commit: 3054a44ee473d023d0ee281f66878aa1109270d5
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 05:45:57 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 06:02:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3054a44e

app-misc/dfshow: mark as LTO-unsafe

Closes: https://bugs.gentoo.org/854726
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild 
b/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild
index d6a901fd6e7d..7cd16d1a8fd9 100644
--- a/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild
+++ b/app-misc/dfshow/dfshow-0.9.1_beta-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -37,6 +37,15 @@ src_prepare() {
eautoreconf
 }
 
+src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/854726
+   # https://github.com/roberthawdon/dfshow/issues/172
+   filter-lto
+
+   default
+}
+
 src_install() {
default
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/darkplaces/

2024-03-05 Thread Sam James
commit: fd775754aed3240ace5d0fc3c9676ed691db6aab
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 06:11:44 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 06:11:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd775754

games-fps/darkplaces: add github upstream metadata

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

 games-fps/darkplaces/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/games-fps/darkplaces/metadata.xml 
b/games-fps/darkplaces/metadata.xml
index feb0bf1abb63..9ccc2564b2fb 100644
--- a/games-fps/darkplaces/metadata.xml
+++ b/games-fps/darkplaces/metadata.xml
@@ -11,4 +11,7 @@
 Install and setup the updated light maps
 Install and setup the updated textures
   
+  
+DarkPlacesEngine/darkplaces
+  
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/darkplaces/

2024-03-05 Thread Sam James
commit: 036ffaac92fed0a29389e8b04ea13f9f8320ec97
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 06:13:19 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 06:13:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036ffaac

games-fps/darkplaces: filter LTO, no SA

There's a lot of SA fixes in git, add a comment in the ebuild about that
to revisit later. But not going to backport them right now.

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

 games-fps/darkplaces/darkplaces-20140513-r2.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/games-fps/darkplaces/darkplaces-20140513-r2.ebuild 
b/games-fps/darkplaces/darkplaces-20140513-r2.ebuild
index 80635bac833c..5f728ab6f31e 100644
--- a/games-fps/darkplaces/darkplaces-20140513-r2.ebuild
+++ b/games-fps/darkplaces/darkplaces-20140513-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -127,6 +127,11 @@ src_compile() {
# bug #739194
unset STRIP
 
+   # Strict aliasing violations (bug #858740), but they seem to be fixed 
in git.
+   # Check on next release (>20140513) / snapshot.
+   append-flags -fno-strict-aliasing
+   filter-lto
+
tc-export CC
 
# Preferred sound is alsa



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

2024-03-05 Thread Sam James
commit: 4bac358c255aff8797ccf23cef5b928390e38695
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 06:15:45 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 06:15:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bac358c

dev-lang/snobol: filter LTO, no SA

Dead upstream HOMEPAGE.

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

 dev-lang/snobol/snobol-1.4.1-r1.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-lang/snobol/snobol-1.4.1-r1.ebuild 
b/dev-lang/snobol/snobol-1.4.1-r1.ebuild
index d213113e1228..2f1b55d3d530 100644
--- a/dev-lang/snobol/snobol-1.4.1-r1.ebuild
+++ b/dev-lang/snobol/snobol-1.4.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 MY_P="${PN}4-${PV}"
 DESCRIPTION="Phil Budne's port of Macro SNOBOL4 in C, for modern machines"
@@ -25,6 +25,11 @@ PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 src_prepare() {
default
+
+   # bug #855650
+   append-flags -fno-strict-aliasing
+   filter-lto
+
sed -i -e '/autoconf/s:autoconf:./autoconf:g' configure || die
sed -i -e 's/$(INSTALL) -s/$(INSTALL)/' Makefile2.m4 || die
echo "ADD_OPT([${CFLAGS}])" >> local-config || die



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

2024-03-05 Thread Alice Ferrazzi
commit: 0663db068120d8a9b4e02cd1d80ee3f1689123dd
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Wed Mar  6 06:48:06 2024 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Wed Mar  6 06:48:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0663db06

sys-kernel/rt-sources: add 5.10.210_p102, drop 5.10.209_p101

Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest| 4 ++--
 ...t-sources-5.10.209_p101.ebuild => rt-sources-5.10.210_p102.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 6c81bcd38903..49141514c11b 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -23,8 +23,8 @@ DIST patch-4.14.336-rt159.patch.xz 242948 BLAKE2B 
a9f57239122fa63cca712e75e2cdf1
 DIST patch-4.14.336.xz 5348976 BLAKE2B 
8b9f3a6e00d8c36894fd12dc17592292df6b326d99171a535c6e373d7ab200e62d150f816efb86fc3cd4b630aec865e17b33160de66b17ee7567e65d3668cef1
 SHA512 
74f730f6b0862d9fa0ed0e807f5e34b32023726692e6057bba7d8384f105e419d5864e9459b659131aa7f29ffdac09fc0f240bc12336456505a6bf3c4f427b8c
 DIST patch-4.19.307-rt133.patch.xz 167988 BLAKE2B 
98255c3d56886c274a29ee0f43e9544df4a7fc75608d127bee543034b7b689eefb063f26be04653a4cd405b9a2f6e5b5dca51d3b41941db9b9d1452b53a27fc6
 SHA512 
ceb9cc33dbad1c2a6a8d6dcf8dc864303cae21a7e2e60e7c0b25580e942c0b0bdafc8bbcd2b15ef5628cf753bd1a21d27c62fc574d7c2ff03f24b91a1070365b
 DIST patch-4.19.307.xz 5902976 BLAKE2B 
8de893e0f955297c9642e5cfd95629adf39365377060db10a0bbee097b29e8946bd3165f8107e4d0375d63671382d9bb0e132ebe6f0c2f797257f1a53d5339c0
 SHA512 
da9bdb720a3859abdfb487bb7e4da0d03d31424d87628b7fa0fa876f46b08385a8b25d926d2c1707492f67c55376159b0135e0b225fcd0ddf0d4c18d9512a161
-DIST patch-5.10.209-rt101.patch.xz 170944 BLAKE2B 
baea8e0ee9bf27619ac87063df2d81e4091089f4405481e5e9931c3963aa15b3d1f1df61797b3066d681694ebbdbddcc2bea02abf793b6b32d60394f85939f30
 SHA512 
b22d6f72ef322d9407a73cd7a0a94334ad3f79b2f6c987688ace837f6588e5f9b59b5e2f069c205a062bfdefab8029788b71fc91f84cf317f5ef8b4c47ea5ba7
-DIST patch-5.10.209.xz 5496968 BLAKE2B 
2793c8b8891c51945583e80b8a0889d624e8df5d407db5ef6a56e47136579d0466e98e0670da8caf9cc6e1f023bc481f47f9ac0f817eed56f08110f8511410a7
 SHA512 
ca2fd67e482899f790a91c64d7ed7ebd31e69a0ddac7c52057c77968e915c6cca2d9b2b3fcc7bd6946dd3113579195ad3adc6c5066314d460d305be525f6209a
+DIST patch-5.10.210-rt102.patch.xz 170956 BLAKE2B 
afde0d69c17e6976c638d8c812a145e6a7fece5231e3a10db615753b2068e50d7d0acdce1f433d10594265f984f7cb7e405186f644fd70d42f03892cb11c03d8
 SHA512 
18093e832cdf7fbad7004eb800f257215da7a45718d4f9b6b97f974cd6f90b2fd02ad1b8a766bfd5cb52e4c7ad1998c5e0b2c7c4d186e37e7c340fdef5d77d9f
+DIST patch-5.10.210.xz 5591052 BLAKE2B 
db44fa06da0291cf1bd2a6dd4b76a6b1cb52741399bb84412b9c2f4bf5f77f212ed932ae6a23e151b5c45c1559bbb11d7152ef288072555bf0810eb2aaf931df
 SHA512 
a6080842fb1d4935c8522b410db4fab10a4f6c7bcbe2a2987ca49f6ece0685bf7677320ae73cb596bd507b5f789fce9c45c1389bacbec7e460ef9a806c22126c
 DIST patch-5.15.145-rt73.patch.xz 81660 BLAKE2B 
eea8f9ef1e4fe8dec1fe784b50dec6df80cc64c6d52f60d54e291a9f2edc7feb9f43900dc2e16dd8dac9760279f06151c7146724b3260e202c0a41a9305e77d8
 SHA512 
a8e38d65dd44e7b120a8d6fbc8503a0d1ae79cdda6793b8d095048fab54019d5a37509e531b73abb4133806e8ec78912c2556474c0474a4dc6c773602f409c7c
 DIST patch-5.15.145.xz 5134136 BLAKE2B 
04db950c0c01d06d86013b8c91a8e3cfbe368f0821d405a34c2b3a3f412d7c43057011f6535d3fc0341f2eb0bb4fbdb34283eb8bc2fe60ea48560c6b1d393405
 SHA512 
9f702c849feecd7e531ba86354c3533d4d4db0e4b4a8a9c225f9c789733f79ff80e063c3910c113cfc631d82cc17883ae5bf4cd920f9275a7119468b657b6f48
 DIST patch-5.4.264-rt88.patch.xz 182728 BLAKE2B 
a2f94da282768aadce164bf5775f7678b1477ea7d30bfa4fff7048ef6023f6006bd91894c4c5e36aec8b97902bc12eedc2fcc3faf7bc29fe5a4428ef8d179736
 SHA512 
65cdc100fde7e7a82b39d3266901cec01f33982fed48362ca224ce5c572d2dc3652693464e1715d29bcf115beff292a0919584b37c499ad43c321413bfd75d6f

diff --git a/sys-kernel/rt-sources/rt-sources-5.10.209_p101.ebuild 
b/sys-kernel/rt-sources/rt-sources-5.10.210_p102.ebuild
similarity index 100%
rename from sys-kernel/rt-sources/rt-sources-5.10.209_p101.ebuild
rename to sys-kernel/rt-sources/rt-sources-5.10.210_p102.ebuild



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

2024-03-05 Thread Alice Ferrazzi
commit: 5e9df53e47f967c43f55d35771f3fea212736eb1
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Wed Mar  6 06:49:26 2024 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Wed Mar  6 06:49:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9df53e

sys-kernel/rt-sources: add 6.6.20_p25, drop 6.6.15_p22

Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest| 4 ++--
 .../{rt-sources-6.6.15_p22.ebuild => rt-sources-6.6.20_p25.ebuild}| 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index c593cb0e8436..5a072c9c82ea 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -35,5 +35,5 @@ DIST patch-6.1.80-rt26.patch.xz 52760 BLAKE2B 
fb4adb54aab7e25f01774f406e128eec6a
 DIST patch-6.1.80.xz 4174796 BLAKE2B 
6e20ae1b476e65a8506b2aaab0dfae3eb9da2c7706a7289b75f687d25c8f5b6c3111ff2aef217ec2a7466626bc8e28ee0f5669a2370a84b33bb48b56ae4a8f8d
 SHA512 
cf9b16a0c6d2207c3479f4f1a3dac0829a3099fa20ce17473b02665429549dc02c2fd9286a3155b91aa829df2661eb54cdb114194da571fb12079053782034c1
 DIST patch-6.5.2-rt8.patch.xz 54436 BLAKE2B 
296da85395314ce26900eefb32a7c9b565b4242603884ab51e6208576e5fa6ceb3bd6269d8938e24f58a0b5d937e556345b45057f90166574797289152b15ae3
 SHA512 
9b625e33f5097729fb2462e2a6e96a1e13a7677af875ce028f6f8fadd1ab60bc9064ca9b101334211bdaf49ba36c750bfdf8260ff03a5ac2a2277a28293b309c
 DIST patch-6.5.2.xz 14964 BLAKE2B 
de3a0d15141199f98873c332f0c0237a39534bffe624f9394a6ba2bb9c3d731121d1b698963c424b919f7683fcffce1a86884bf64d26938cd529a14a211f1904
 SHA512 
e377f1fd5802321ea8198bbf661b15ec050f5ee902666359c8e1cce8e36abbb67957e04bdc1ee8a91eb3bf2c56ef62e9f5535dc52982eb6185476ce794449402
-DIST patch-6.6.15-rt22.patch.xz 89840 BLAKE2B 
412998bb7d498ca8fc49efdcf11a57eaaeef0b38d8fdbbc54c9a7ad369c54cde7cd87a84e48e5390b43e9a6bf56abe8613b654d0caff3597597e7cb70d8d713e
 SHA512 
9389c151a608a5e6b62369f6812ec1b5beba87d57cbb57e8b20d0e7b40b4febab570bf285a9aad821376ba5ffbbe0560805ab381c0ad8aeec8b941946b537bc1
-DIST patch-6.6.15.xz 974176 BLAKE2B 
f4ae81e22d88a78cad76d8e54d1d66116bd279a14b6bdf257d6ac1e47a643926f235cd601a16bc46649861c5eed5cacfb528ed6a4d2b4ee801ab8f44c45cfd3b
 SHA512 
65039c511af368da9241d9724e8855833865c50a33b35093e8e609ce7994fc49b8d5868e218ab2054d4e6aeebe24fc8b05d34e2345b9b13a3fb446a9dc9df536
+DIST patch-6.6.20-rt25.patch.xz 89968 BLAKE2B 
edebc1b82a60b6857f0236c3dc700e93027e0193f7c1f88ba82091531dcb202e97f69a2c2aee259f4426baca7c84250f59065f6e1016801e21dc5a6dddb86bd9
 SHA512 
682a774ef713607a10ddb7a5f3c150861600ee447b05ba07bc91fb1682b4e68552fc28b501ed5e72a22c4476e8f2cd0090edf2c5679e7958ef0d152c9c73414c
+DIST patch-6.6.20.xz 1299228 BLAKE2B 
d355d6bf1f454967097d5fa40c7977ff88d58e473b18f9604b2582a435fb3361cfd436ac7c4822621c340223eb33a520a539b23bacbede1862ee4abb9f2807e2
 SHA512 
0eff5c2cc691260a7197cbc0e709e6b81a9174de13e4bc254e51c7a61fab73626c56bcb7c9cd4cba773d800a0847af4c8b4af6379339b23c44c1c24f89426240

diff --git a/sys-kernel/rt-sources/rt-sources-6.6.15_p22.ebuild 
b/sys-kernel/rt-sources/rt-sources-6.6.20_p25.ebuild
similarity index 100%
rename from sys-kernel/rt-sources/rt-sources-6.6.15_p22.ebuild
rename to sys-kernel/rt-sources/rt-sources-6.6.20_p25.ebuild



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

2024-03-05 Thread Sam James
commit: 27a092fb96e1248a17f82406029e1d09c02638f4
Author: Eli Schwartz  gmail  com>
AuthorDate: Fri Mar  1 04:59:55 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 03:46:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27a092fb

app-text/calibre: add 7.6.0

Signed-off-by: Eli Schwartz  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35585
Signed-off-by: Sam James  gentoo.org>

 app-text/calibre/Manifest |   2 +
 app-text/calibre/calibre-7.6.0.ebuild | 242 ++
 2 files changed, 244 insertions(+)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index f8864fd56d14..5a2d05d4d963 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -6,3 +6,5 @@ DIST calibre-7.4.0.tar.xz 43177588 BLAKE2B 
f8a9ce0444e252e5e9e1fddd8b744327eb6d6
 DIST calibre-7.4.0.tar.xz.sig 566 BLAKE2B 
2209bf4634cd8801ac9ecec577ca27f461edf8fd4c90e4ec022d4b9e757a99e4fc21d5097d1517185ef3030e0bc0fb9d035f78601c0aaa1aca01f474cd4d94b6
 SHA512 
46f8bf2bc23df9cf3583477c4db3e8c176b1ff39f1fcc62cdec26a0ea8b77e753b9e0de7ffc957052b8febf0b8014a7ea1525b731749f0723ee630df3d00f022
 DIST calibre-7.5.0.tar.xz 43270664 BLAKE2B 
ff23027bb5d026b77dffa11a4192436270acb52fbfddd941958eb07f70eed181c555f1c25f22da17ce96004fd45b4c27c8ccfbb2db8f68cd021d538b5dcf76d1
 SHA512 
e59e5908af484d428eb7fe2d8d3b32f7254070b64214fe3d43310ff944d304bb95dc69a73763f6406eda27b0db7a8de604c4868f5ff2f7cfb4953319f188a764
 DIST calibre-7.5.0.tar.xz.sig 566 BLAKE2B 
3fed90c450c3c4838d92e0b2d3f25c0f90cac50bd397dac2631a288f25c938761942dfb3ee67d73dc5e7fe52644912765db41a895b2558fae59948d05a7e09d0
 SHA512 
6525d46798237830ca84100ff0b9a4d3ab608207a14013e4f546abc744c7262678fe24f86ff58e3c72a601bb70fb71f952beb38f27fdeff58c3ce857ce101137
+DIST calibre-7.6.0.tar.xz 43929700 BLAKE2B 
a529bf32511f8927683d6b89962a2e0e1ca6fb6bf798d9906ae6cf56c4611be21d89c49812c3b3cef02e333b20b4fd00a0b19c5e867c735022a45bafd9991203
 SHA512 
7bc43fff44d9ec7c5955f2176f0923af08cd7ba9930a49b76ba64808c18a468b005c231bc21c0a9e3758977c1ff9a1a6f7724333b87ae81e32461807976f5488
+DIST calibre-7.6.0.tar.xz.sig 566 BLAKE2B 
c7fac255eb3ea49aead5780cc8089be253e551d729bb80c3f59bdb269e05e603557dbe8967175a6bb49e88d30673c89b2217c18757b718dba8e5b7d3eb21330c
 SHA512 
a9af6200b2726e2d3c54e4aea7f7664b6c4d3ba8cdd5958c9eeaf0c7ee4ba7465df57fd526064c44a9d093b246a64ab94819c6235030162f30f7f570b403

diff --git a/app-text/calibre/calibre-7.6.0.ebuild 
b/app-text/calibre/calibre-7.6.0.ebuild
new file mode 100644
index ..fc786f35d76c
--- /dev/null
+++ b/app-text/calibre/calibre-7.6.0.ebuild
@@ -0,0 +1,242 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_REQ_USE="sqlite,ssl"
+
+inherit edo toolchain-funcs python-single-r1 qmake-utils verify-sig xdg
+
+DESCRIPTION="Ebook management application"
+HOMEPAGE="https://calibre-ebook.com/;
+SRC_URI="
+   https://download.calibre-ebook.com/${PV}/${P}.tar.xz
+   verify-sig? ( https://calibre-ebook.com/signatures/${P}.tar.xz.sig )
+"
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kovidgoyal.gpg
+
+LICENSE="
+   GPL-3+
+   GPL-3
+   GPL-2+
+   GPL-2
+   GPL-1+
+   LGPL-3+
+   LGPL-2.1+
+   LGPL-2.1
+   BSD
+   MIT
+   Old-MIT
+   Apache-2.0
+   public-domain
+   || ( Artistic GPL-1+ )
+   CC-BY-3.0
+   OFL-1.1
+   PSF-2
+"
+KEYWORDS="~amd64 ~arm64"
+SLOT="0"
+IUSE="+font-subsetting ios speech +system-mathjax test +udisks unrar"
+
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# Qt slotted dependencies are used because the libheadless.so plugin links to
+# QT_*_PRIVATE_ABI. It only uses core/gui/dbus.
+COMMON_DEPEND="${PYTHON_DEPS}
+   app-i18n/uchardet
+   >=app-text/hunspell-1.7:=
+   >=app-text/podofo-0.10.0:=
+   app-text/poppler[utils]
+   dev-libs/hyphen:=
+   >=dev-libs/icu-57.1:=
+   dev-libs/openssl:=
+   dev-libs/snowball-stemmer:=
+   $(python_gen_cond_dep '
+   >=dev-python/apsw-3.25.2_p1[${PYTHON_USEDEP}]
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   >=dev-python/css-parser-1.0.4[${PYTHON_USEDEP}]
+   dev-python/dnspython[${PYTHON_USEDEP}]
+   >=dev-python/feedparser-5.2.1[${PYTHON_USEDEP}]
+   >=dev-python/html2text-2019.8.11[${PYTHON_USEDEP}]
+   >=dev-python/html5-parser-0.4.9[${PYTHON_USEDEP}]
+   dev-python/jeepney[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]
+   >=dev-python/markdown-3.0.1[${PYTHON_USEDEP}]
+   >=dev-python/mechanize-0.3.5[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.6.2[${PYTHON_USEDEP}]
+   >=dev-python/netifaces-0.10.5[${PYTHON_USEDEP}]
+   

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

2024-03-05 Thread Zac Medico
commit: 8606c5382c57cdc59e9044b4ce5934cb22e96eb1
Author: Rahil Bhimjiani  rahil  rocks>
AuthorDate: Wed Feb 21 10:07:04 2024 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Mar  6 04:08:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8606c538

app-containers/containers-storage: add 1.53.0

* Get rid of unnecessary patch

Signed-off-by: Rahil Bhimjiani  rahil.rocks>
Closes: https://github.com/gentoo/gentoo/pull/35462
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/containers-storage/Manifest|  1 +
 ...s-storage-.ebuild => containers-storage-1.53.0.ebuild} | 11 +++
 .../containers-storage/containers-storage-.ebuild | 11 +++
 3 files changed, 7 insertions(+), 16 deletions(-)

diff --git a/app-containers/containers-storage/Manifest 
b/app-containers/containers-storage/Manifest
index d965e5061a77..23aaf63ce28c 100644
--- a/app-containers/containers-storage/Manifest
+++ b/app-containers/containers-storage/Manifest
@@ -1 +1,2 @@
 DIST containers-storage-1.51.0.tar.gz 4283732 BLAKE2B 
108401d68e617e6237e68cf2147113680e0452a8d15ee099da9872508800f3e7b8f2c5508e17d9c5f3d58fec4efc1c20f23f1a567fe592533c0e63efd05ae5c8
 SHA512 
89916b49438bce8bb774b4aa799676d4b3a946a0b5207a1b5241b1a3ac0875b06b3cd8e81d7e23332ceae6010b693516fc31d8c7f75a37e7ad3056a83c75b6c1
+DIST containers-storage-1.53.0.tar.gz 4291738 BLAKE2B 
939ecca8a948165c42453d5461429d46249d73582869793969f9d4ae52d0a9fec25e6c39cd13190dad0730d9a17de7af1f237b3cf5434fd30f442c78e57ee7b3
 SHA512 
ea4a1d1899208eb8861e36beba206724b1f55cfd6007bc5a90c3a6a5e02835b4a2985814dc9363c31dcdc81a3fb331b29f51f5523628edb8d9c64c465d6dcaa3

diff --git a/app-containers/containers-storage/containers-storage-.ebuild 
b/app-containers/containers-storage/containers-storage-1.53.0.ebuild
similarity index 78%
copy from app-containers/containers-storage/containers-storage-.ebuild
copy to app-containers/containers-storage/containers-storage-1.53.0.ebuild
index 4af5e711a1f0..7161e2aa1c52 100644
--- a/app-containers/containers-storage/containers-storage-.ebuild
+++ b/app-containers/containers-storage/containers-storage-1.53.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/containers/storage/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
S="${WORKDIR}/${P#containers-}"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm64 ~riscv"
 fi
 
 LICENSE="Apache-2.0"
@@ -20,13 +20,8 @@ SLOT="0"
 
 BDEPEND=">=dev-go/go-md2man-2.0.2"
 
-src_prepare() {
-   default
-   eapply "${FILESDIR}"/system-md2man-path.patch
-}
-
 src_compile() {
-   emake -C docs containers-storage.conf.5
+   emake -C docs GOMD2MAN=go-md2man containers-storage.conf.5
 }
 
 src_install() {

diff --git a/app-containers/containers-storage/containers-storage-.ebuild 
b/app-containers/containers-storage/containers-storage-.ebuild
index 4af5e711a1f0..7161e2aa1c52 100644
--- a/app-containers/containers-storage/containers-storage-.ebuild
+++ b/app-containers/containers-storage/containers-storage-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
 else
SRC_URI="https://github.com/containers/storage/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
S="${WORKDIR}/${P#containers-}"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm64 ~riscv"
 fi
 
 LICENSE="Apache-2.0"
@@ -20,13 +20,8 @@ SLOT="0"
 
 BDEPEND=">=dev-go/go-md2man-2.0.2"
 
-src_prepare() {
-   default
-   eapply "${FILESDIR}"/system-md2man-path.patch
-}
-
 src_compile() {
-   emake -C docs containers-storage.conf.5
+   emake -C docs GOMD2MAN=go-md2man containers-storage.conf.5
 }
 
 src_install() {



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

2024-03-05 Thread Sam James
commit: 845cbe2fef97ec5d8f0cb983ff075d2be9d72537
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 03:37:57 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 05:29:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=845cbe2f

sci-libs/arpack: mark as LTO-unsafe

It fails in tests, but unfortunately that means we cannot... test...
compiling with LTO.

Closes: https://bugs.gentoo.org/878139
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 sci-libs/arpack/arpack-3.9.1.ebuild | 11 +--
 sci-libs/arpack/arpack-.ebuild  | 11 +--
 2 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/sci-libs/arpack/arpack-3.9.1.ebuild 
b/sci-libs/arpack/arpack-3.9.1.ebuild
index c3a10d3e5d15..fe8ac4dd7b91 100644
--- a/sci-libs/arpack/arpack-3.9.1.ebuild
+++ b/sci-libs/arpack/arpack-3.9.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit autotools fortran-2 toolchain-funcs
+inherit autotools flag-o-matic fortran-2 toolchain-funcs
 
 DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems"
 HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ 
https://github.com/opencollab/arpack-ng;
@@ -39,6 +39,13 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/878139
+   # https://github.com/opencollab/arpack-ng/issues/451
+   #
+   # Only when building tests. Still this means we cannot test it.
+   filter-lto
+
econf \
--disable-static \
--enable-icb \

diff --git a/sci-libs/arpack/arpack-.ebuild 
b/sci-libs/arpack/arpack-.ebuild
index 0388be81f2bc..97ecc817d3fc 100644
--- a/sci-libs/arpack/arpack-.ebuild
+++ b/sci-libs/arpack/arpack-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit autotools fortran-2 toolchain-funcs
+inherit autotools flag-o-matic fortran-2 toolchain-funcs
 
 DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems"
 HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ 
https://github.com/opencollab/arpack-ng;
@@ -35,6 +35,13 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/878139
+   # https://github.com/opencollab/arpack-ng/issues/451
+   #
+   # Only when building tests. Still this means we cannot test it.
+   filter-lto
+
econf \
--disable-static \
--enable-icb \



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

2024-03-05 Thread Sam James
commit: a66f47ce35439604c06f297aee3fd467702a889f
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  6 05:05:19 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 05:29:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66f47ce

dev-util/wachy: modernise cargo.eclass usage

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

 dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild | 194 ++--
 1 file changed, 96 insertions(+), 98 deletions(-)

diff --git a/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild 
b/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
index dd3a2f680892..fba545be9ca7 100644
--- a/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
+++ b/dev-util/wachy/wachy-0.1.0_alpha6-r1.ebuild
@@ -6,118 +6,116 @@
 EAPI=8
 
 CRATES="
-   addr2line-0.17.0
-   adler-1.0.2
-   ahash-0.6.3
-   array-macro-1.0.5
-   autocfg-1.0.1
-   backtrace-0.3.63
-   bitflags-1.3.2
-   cc-1.0.72
-   cfg-if-1.0.0
-   chrono-0.4.19
-   clap-2.33.3
-   cmake-0.1.46
-   cplus_demangle-0.1.1
-   cpp_demangle-0.3.3
-   crc32fast-1.2.1
-   crossbeam-channel-0.5.1
-   crossbeam-utils-0.8.5
-   cursive-0.16.3
-   cursive_core-0.2.2
-   cursive_table_view-0.13.3
-   darling-0.10.2
-   darling_core-0.10.2
-   darling_macro-0.10.2
-   either-1.6.1
-   enum-map-0.6.4
-   enum-map-derive-0.4.6
-   fallible-iterator-0.2.0
-   flate2-1.0.22
-   flexi_logger-0.20.0
-   fnv-1.0.7
-   fuzzy-matcher-0.3.7
-   getrandom-0.2.3
-   gimli-0.26.1
-   glob-0.3.0
-   hashbrown-0.11.2
-   ident_case-1.0.1
-   indexmap-1.7.0
-   itertools-0.10.1
-   itoa-0.4.8
-   lazy_static-1.4.0
-   libc-0.2.107
-   log-0.4.14
-   maplit-1.0.2
-   memchr-2.4.1
-   memmap2-0.5.0
-   miniz_oxide-0.4.4
-   ncurses-5.101.0
-   num-0.3.1
-   num-complex-0.3.1
-   num-integer-0.1.44
-   num-iter-0.1.42
-   num-rational-0.3.2
-   num-traits-0.2.14
-   object-0.27.1
-   once_cell-1.8.0
-   owning_ref-0.4.1
-   pkg-config-0.3.22
-   proc-macro2-1.0.32
-   quote-1.0.10
-   rustc-demangle-0.1.21
-   rustversion-1.0.5
-   ryu-1.0.5
-   serde-1.0.130
-   serde_derive-1.0.130
-   serde_json-1.0.70
-   signal-hook-0.3.10
-   signal-hook-registry-1.4.0
-   smallvec-1.7.0
-   stable_deref_trait-1.2.0
-   strsim-0.9.3
-   syn-1.0.81
-   term_size-0.3.2
-   textwrap-0.11.0
-   thiserror-1.0.30
-   thiserror-impl-1.0.30
-   thread_local-1.1.3
-   time-0.1.43
-   time-0.3.5
-   time-macros-0.2.3
-   unicode-segmentation-1.8.0
-   unicode-width-0.1.9
-   unicode-xid-0.2.2
-   unwrap-1.2.1
-   version_check-0.9.3
-   wasi-0.10.2+wasi-snapshot-preview1
-   wasmer_enumset-1.0.1
-   wasmer_enumset_derive-0.5.0
-   winapi-0.3.9
-   winapi-i686-pc-windows-gnu-0.4.0
-   winapi-x86_64-pc-windows-gnu-0.4.0
-   xi-unicode-0.3.0
-   zydis-3.1.2
+   addr2line@0.17.0
+   adler@1.0.2
+   ahash@0.6.3
+   array-macro@1.0.5
+   autocfg@1.0.1
+   backtrace@0.3.63
+   bitflags@1.3.2
+   cc@1.0.72
+   cfg-if@1.0.0
+   chrono@0.4.19
+   clap@2.33.3
+   cmake@0.1.46
+   cplus_demangle@0.1.1
+   cpp_demangle@0.3.3
+   crc32fast@1.2.1
+   crossbeam-channel@0.5.1
+   crossbeam-utils@0.8.5
+   cursive@0.16.3
+   cursive_core@0.2.2
+   cursive_table_view@0.13.3
+   darling@0.10.2
+   darling_core@0.10.2
+   darling_macro@0.10.2
+   either@1.6.1
+   enum-map-derive@0.4.6
+   enum-map@0.6.4
+   fallible-iterator@0.2.0
+   flate2@1.0.22
+   flexi_logger@0.20.0
+   fnv@1.0.7
+   fuzzy-matcher@0.3.7
+   getrandom@0.2.3
+   gimli@0.26.1
+   glob@0.3.0
+   hashbrown@0.11.2
+   ident_case@1.0.1
+   indexmap@1.7.0
+   itertools@0.10.1
+   itoa@0.4.8
+   lazy_static@1.4.0
+   libc@0.2.107
+   log@0.4.14
+   maplit@1.0.2
+   memchr@2.4.1
+   memmap2@0.5.0
+   miniz_oxide@0.4.4
+   ncurses@5.101.0
+   num-complex@0.3.1
+   num-integer@0.1.44
+   num-iter@0.1.42
+   num-rational@0.3.2
+   num-traits@0.2.14
+   num@0.3.1
+   object@0.27.1
+   once_cell@1.8.0
+   owning_ref@0.4.1
+   pkg-config@0.3.22
+   proc-macro2@1.0.32
+   quote@1.0.10
+   rustc-demangle@0.1.21
+   rustversion@1.0.5
+   ryu@1.0.5
+   serde@1.0.130
+   serde_derive@1.0.130
+   serde_json@1.0.70
+   signal-hook-registry@1.4.0
+   signal-hook@0.3.10
+   smallvec@1.7.0
+   stable_deref_trait@1.2.0
+   strsim@0.9.3
+   syn@1.0.81
+   term_size@0.3.2
+   textwrap@0.11.0
+   thiserror-impl@1.0.30
+   thiserror@1.0.30
+   thread_local@1.1.3
+   

[gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-m17n/

2024-03-05 Thread Sam James
commit: cd7a457622ecb461cbb20de80f51a745b4af04d9
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 04:23:51 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 05:29:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd7a4576

app-i18n/scim-m17n: update EAPI 6 -> 8

We can now use BDEPEND!

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild | 46 
 1 file changed, 46 insertions(+)

diff --git a/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild 
b/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild
new file mode 100644
index ..61b31b5466f6
--- /dev/null
+++ b/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="An input module for Smart Common Input Method (SCIM) which uses 
m17n as backend"
+HOMEPAGE="http://www.scim-im.org/projects/imengines;
+SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-i18n/scim-1.4
+   >=dev-libs/m17n-lib-1.2.0"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   # update the 2009 era configure / libtool scripts, which fail with LTO
+   eautoreconf
+}
+
+src_configure() {
+   econf --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   elog
+   elog "To use SCIM with both GTK2 and XIM, you should use the following"
+   elog "in your user startup scripts such as .gnomerc or .xinitrc:"
+   elog
+   elog "LANG='your_language' scim -d"
+   elog "export XMODIFIERS=@im=SCIM"
+   elog "export GTK_IM_MODULE=\"scim\""
+   elog
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-m17n/

2024-03-05 Thread Sam James
commit: faf23fa378ae49d3fac92aab2fbf6e1b54c5fdb1
Author: Eli Schwartz  gmail  com>
AuthorDate: Wed Mar  6 04:26:10 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  6 05:29:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf23fa3

app-i18n/scim-m17n: add missing runtime dependency on libltdl

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild 
b/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild
index 61b31b5466f6..36ac1b4d7704 100644
--- a/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild
+++ b/app-i18n/scim-m17n/scim-m17n-0.2.3-r1.ebuild
@@ -14,8 +14,11 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
-RDEPEND=">=app-i18n/scim-1.4
-   >=dev-libs/m17n-lib-1.2.0"
+RDEPEND="
+   >=app-i18n/scim-1.4
+   >=dev-libs/m17n-lib-1.2.0
+   dev-libs/libltdl
+"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 



  1   2   3   >