[gentoo-commits] repo/proj/guru:dev commit in: net-dns/AdGuardHome/, net-dns/AdGuardHome/files/

2023-12-31 Thread Rahil Bhimjiani
commit: 455aae69ed201dcef931219a5b17cf3a82d5c01b
Author: Rahil Bhimjiani  rahil  rocks>
AuthorDate: Mon Jan  1 05:20:55 2024 +
Commit: Rahil Bhimjiani  gmail  com>
CommitDate: Mon Jan  1 05:20:55 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=455aae69

net-dns/AdGuardHome: Pi-Hole alternative written in Go

offers following features which lack in Pi-hole
* Encrypted DNS upstream servers (DNS-over-HTTPS, DNS-over-TLS,
DNSCrypt)
* Running as a DNS-over-HTTPS or DNS-over-TLS server

Signed-off-by: Rahil Bhimjiani  rahil.rocks>

 net-dns/AdGuardHome/AdGuardHome-0.107.43.ebuild| 106 +
 net-dns/AdGuardHome/Manifest   |   3 +
 .../AdGuardHome/files/AdGuardHome-0.107.43.service |  22 +
 net-dns/AdGuardHome/metadata.xml   |  13 +++
 4 files changed, 144 insertions(+)

diff --git a/net-dns/AdGuardHome/AdGuardHome-0.107.43.ebuild 
b/net-dns/AdGuardHome/AdGuardHome-0.107.43.ebuild
new file mode 100644
index 00..c1a9f54336
--- /dev/null
+++ b/net-dns/AdGuardHome/AdGuardHome-0.107.43.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps go-module systemd
+
+DESCRIPTION="Network-wide ads & trackers blocking DNS server like Pi-Hole with 
web ui"
+HOMEPAGE="https://github.com/AdguardTeam/AdGuardHome/;
+
+SRC_URI="
+   https://github.com/AdguardTeam/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz
+   
https://github.com/AdguardTeam/${PN}/releases/download/v${PV}/AdGuardHome_frontend.tar.gz
 -> ${P}-frontend.tar.gz
+   
https://github.com/rahilarious/gentoo-distfiles/releases/download/${P}/deps.tar.xz
 -> ${P}-deps.tar.xz
+"
+
+# main
+LICENSE="GPL-3"
+# deps
+LICENSE+=" Apache-2.0 BSD BSD-2 MIT ZLIB"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+FILECAPS=(
+   -m 755 'cap_net_bind_service=+eip cap_net_raw=+eip' usr/bin/${PN}
+)
+
+src_prepare() {
+   default
+   # move frontend to project directory
+   rm build/gitkeep && mv ../build ./ || die
+}
+
+src_compile() {
+   # mimicking 
https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-build.sh
+
+   local MY_LDFLAGS="-s -w"
+   MY_LDFLAGS+=" -X 
github.com/AdguardTeam/AdGuardHome/internal/version.version=${PV}"
+   MY_LDFLAGS+=" -X 
github.com/AdguardTeam/AdGuardHome/internal/version.channel=release"
+   MY_LDFLAGS+=" -X 
github.com/AdguardTeam/AdGuardHome/internal/version.committime=$(date +%s)"
+   if [ "$(go env GOARM)" != '' ]
+   then
+   MY_LDFLAGS+=" -X 
github.com/AdguardTeam/AdGuardHome/internal/version.goarm=$(go env GOARM)"
+   elif [ "$(go env GOMIPS)" != '' ]
+   then
+   MY_LDFLAGS+=" -X 
github.com/AdguardTeam/AdGuardHome/internal/version.gomips=$(go env GOMIPS)"
+   fi
+
+   ego build -ldflags "${MY_LDFLAGS}" -trimpath
+}
+
+src_test() {
+
+   # mimicking 
https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-test.sh
+   count_flags='--count=1'
+   cover_flags='--coverprofile=./coverage.txt'
+   shuffle_flags='--shuffle=on'
+   timeout_flags="--timeout=30s"
+   fuzztime_flags="--fuzztime=20s"
+   readonly count_flags cover_flags shuffle_flags timeout_flags 
fuzztime_flags
+
+   # race only works when pie is disabled
+   export GOFLAGS="${GOFLAGS/-buildmode=pie/}"
+
+   # following test is failing without giving any reason. Tried disabling 
internal/updater internal/whois tests toggling race, but still failing.
+   # ego test\
+   # "$count_flags"\
+   # "$cover_flags"\
+   # "$shuffle_flags"\
+   # --race=1\
+   # "$timeout_flags"\
+   # ./...
+
+   # mimicking 
https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-bench.sh
+   ego test\
+ "$count_flags"\
+ "$shuffle_flags"\
+ --race=0\
+ "$timeout_flags"\
+ --bench='.'\
+ --benchmem\
+ --benchtime=1s\
+ --run='^$'\
+ ./...
+
+   # mimicking 
https://github.com/AdguardTeam/AdGuardHome/blob/master/scripts/make/go-fuzz.sh
+   ego test\
+ "$count_flags"\
+ "$shuffle_flags"\
+ --race=0\
+ "$timeout_flags"\
+ "$fuzztime_flags"\
+ --fuzz='.'\
+ --run='^$'\
+ ./internal/filtering/rulelist/\
+   ;
+
+}
+
+src_install() {
+   dobin "${PN}"
+   einstalldocs
+
+   systemd_newunit "${FILESDIR}"/AdGuardHome-0.107.43.service 
"${PN}".service
+}

diff --git a/net-dns/AdGuardHome/Manifest b/net-dns/AdGuardHome/Manifest
new file mode 100644
index 00..ced137539c
--- /dev/null
+++ b/net-dns/AdGuardHome/Manifest
@@ -0,0 +1,3 @@
+DIST 

[gentoo-commits] repo/proj/guru:dev commit in: net-dns/blocky/, acct-user/blocky/, acct-group/blocky/, net-dns/blocky/files/

2023-12-31 Thread Rahil Bhimjiani
commit: 26fd689d608e7cb99a173c645851cc22e66af2e3
Author: Rahil Bhimjiani  rahil  rocks>
AuthorDate: Mon Jan  1 05:53:54 2024 +
Commit: Rahil Bhimjiani  gmail  com>
CommitDate: Mon Jan  1 05:53:54 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26fd689d

net-dns/blocky: Fast and lightweight DNS proxy as ad-blocker

Supports DoH, DoT and prometheus+grafana integration with very versatile
cli and configuration options

Signed-off-by: Rahil Bhimjiani  rahil.rocks>

 acct-group/blocky/blocky-0.ebuild  |   10 +
 acct-group/blocky/metadata.xml |8 +
 acct-user/blocky/blocky-0.ebuild   |   13 +
 acct-user/blocky/metadata.xml  |8 +
 net-dns/blocky/Manifest|3 +
 net-dns/blocky/blocky-0.22.ebuild  |  104 +
 net-dns/blocky/blocky-.ebuild  |  104 +
 net-dns/blocky/files/blocky-0.22.service   |   16 +
 .../blocky/files/disable-failed-tests-0.22.patch   | 2272 
 net-dns/blocky/metadata.xml|   16 +
 10 files changed, 2554 insertions(+)

diff --git a/acct-group/blocky/blocky-0.ebuild 
b/acct-group/blocky/blocky-0.ebuild
new file mode 100644
index 00..a85e41314e
--- /dev/null
+++ b/acct-group/blocky/blocky-0.ebuild
@@ -0,0 +1,10 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit acct-group
+
+DESCRIPTION="A group for net-dns/blocky"
+
+ACCT_GROUP_ID="69"

diff --git a/acct-group/blocky/metadata.xml b/acct-group/blocky/metadata.xml
new file mode 100644
index 00..3e6b5d8ad4
--- /dev/null
+++ b/acct-group/blocky/metadata.xml
@@ -0,0 +1,8 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   me@rahil.rocks
+   Rahil Bhimjiani
+   
+

diff --git a/acct-user/blocky/blocky-0.ebuild b/acct-user/blocky/blocky-0.ebuild
new file mode 100644
index 00..f941ee07e2
--- /dev/null
+++ b/acct-user/blocky/blocky-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit acct-user
+
+DESCRIPTION="A user for net-dns/blocky"
+
+ACCT_USER_ID="100"
+ACCT_USER_GROUPS=( "blocky" )
+
+acct-user_add_deps

diff --git a/acct-user/blocky/metadata.xml b/acct-user/blocky/metadata.xml
new file mode 100644
index 00..3e6b5d8ad4
--- /dev/null
+++ b/acct-user/blocky/metadata.xml
@@ -0,0 +1,8 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   me@rahil.rocks
+   Rahil Bhimjiani
+   
+

diff --git a/net-dns/blocky/Manifest b/net-dns/blocky/Manifest
new file mode 100644
index 00..cbfdf1469a
--- /dev/null
+++ b/net-dns/blocky/Manifest
@@ -0,0 +1,3 @@
+DIST blocky-0.22-deps.tar.xz 163869124 BLAKE2B 
e98614feaeb11604866d08003147871096c993cdb90c85bba46ea999a339570ca1500a80bddee202595372ec5d22baa6ec0345d8cf50ffee6d61dd8d6495d49f
 SHA512 
883e5dd66cf974c6d8c73a94c7677d5003ceb7a3ba68001c2d9d36e1e4d1ea64f0818d30240fe77f192ad3f95ede93127bed9adc9647da07a9b9bebc958ffd33
+DIST blocky-0.22-docs.tar.gz 5639822 BLAKE2B 
e177790deb7493f84d8217661e4e4296004a9db7e00ff8d37dbd3c4ed8b7ba0a7cf431067c103f25784e46ca7a8bf80532cdd8f305f3e4ce119890027f0eb186
 SHA512 
3eed0ff726479826fbefb4140c36bb26825124134d1fbbecf74a31b2fbdde993630adc645ea2e582ce8d415736cc85b20f64a835c87da98700b715c03d368e75
+DIST blocky-0.22.tar.gz 712644 BLAKE2B 
d74881026421337a0fc32a6af2cf6bff736e0130ac599cd80714f0cafff1e81864e0327bc773f8377106421642cf545b76407fca94f07425c428ff8512a7113b
 SHA512 
928ba882cb567f80b9b00c1ab74ba2fba0324b9e5fb6439789d50d8fd438a26f84772d36f91ef9c3a2351c798a399c15aa1b69927a2da11795edd576b7bae6a4

diff --git a/net-dns/blocky/blocky-0.22.ebuild 
b/net-dns/blocky/blocky-0.22.ebuild
new file mode 100644
index 00..5b601c8825
--- /dev/null
+++ b/net-dns/blocky/blocky-0.22.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit fcaps go-module systemd shell-completion
+
+DESCRIPTION="Fast and lightweight DNS proxy as ad-blocker with many features 
written in Go"
+HOMEPAGE="https://github.com/0xERR0R/blocky/;
+
+DOCUMENTATION_COMMIT=9c6a86eb163e758686c5d6d4d5259deb086a8aa9
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/0xERR0R/blocky.git;
+else
+   SRC_URI="
+   https://github.com/0xERR0R/blocky/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://github.com/rahilarious/gentoo-distfiles/releases/download/${P}/deps.tar.xz
 -> ${P}-deps.tar.xz
+   doc? ( 
https://github.com/0xERR0R/blocky/archive/${DOCUMENTATION_COMMIT}.tar.gz -> 
${P}-docs.tar.gz )
+"
+   KEYWORDS="~amd64"
+fi
+
+# main
+LICENSE="Apache-2.0"
+# deps
+LICENSE+=" AGPL-3 BSD-2 BSD ISC MIT MPL-2.0"
+SLOT="0"
+IUSE="doc"
+
+# RESTRICT="test"
+

[gentoo-commits] repo/proj/guru:dev commit in: app-crypt/lego/

2023-12-31 Thread Rahil Bhimjiani
commit: 70474a40cc82af756e37d4876271bd0df07292eb
Author: Rahil Bhimjiani  rahil  rocks>
AuthorDate: Mon Jan  1 04:54:52 2024 +
Commit: Rahil Bhimjiani  gmail  com>
CommitDate: Mon Jan  1 04:54:52 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70474a40

app-crypt/lego: ACME client alternative to certbot/acme.sh

written in Go which offers many built-in DNS plugins

Signed-off-by: Rahil Bhimjiani  rahil.rocks>

 app-crypt/lego/Manifest   |  3 ++
 app-crypt/lego/lego-4.14.2.ebuild | 82 +++
 app-crypt/lego/lego-.ebuild   | 82 +++
 app-crypt/lego/metadata.xml   | 13 +++
 4 files changed, 180 insertions(+)

diff --git a/app-crypt/lego/Manifest b/app-crypt/lego/Manifest
new file mode 100644
index 00..6a66b1065e
--- /dev/null
+++ b/app-crypt/lego/Manifest
@@ -0,0 +1,3 @@
+DIST lego-4.14.2-deps.tar.xz 204384528 BLAKE2B 
5db3b7b6c194b4042b4c81a490c99f79339c9c0c4571bf31061a352626f08afcf8508edaf104af784243476264edd03c3e992aef711d05f26f5270f27b98e7bd
 SHA512 
a07c5bf3fa0b99e3b2af06141b1049ff030b7d74c2a38fbe7c15fc46a622d4cc02c2e563e03eb5aede1ef8dc0ea3d16b775f2381a41caafbe3c6e45831d56544
+DIST lego-4.14.2-docs.tar.gz 3639965 BLAKE2B 
deb991244c93cd317a8e3acb90acc5f6712d5f5a1cf65ce615a13830e5a91fb35070b1eb9ce808322fa1e6e3cc9a6ee4253b488c1c8cbef0d7899b000a00d45f
 SHA512 
13ea06e72581aee038d8cc4906b357d506b1dd20f1c8bd32a1c3fcfa364bdac2ccb76416bf6328f07e8feabc934329358ab75b0a440ede859caf350febac69fd
+DIST lego-4.14.2.tar.gz 672197 BLAKE2B 
b633d6ed12fd7d38c35db392a58785fd32c3475961a49c5dbb3fe4986ca17c322a39ff604e73688928db1fa26eee70c8d9774fb560f96c5e017b680e2f89dbf2
 SHA512 
089788d1df077bdf8731250664628c9dbf44c8db7f2755242029c69b450eb892845b4c0b549a7affe80e351a29a6cc9d07514df3d0b7d1d17b42e20d1c85eca1

diff --git a/app-crypt/lego/lego-4.14.2.ebuild 
b/app-crypt/lego/lego-4.14.2.ebuild
new file mode 100644
index 00..2e16460056
--- /dev/null
+++ b/app-crypt/lego/lego-4.14.2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Let's Encrypt/ACME client (like certbot or acme.sh) and library 
written in Go"
+HOMEPAGE="https://github.com/go-acme/lego/;
+
+DOCUMENTATION_COMMIT=e28a6ff22f2b7f75b8aaae5012672cfcca2be690
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/go-acme/lego.git;
+else
+   SRC_URI="
+   https://github.com/go-acme/lego/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://github.com/rahilarious/gentoo-distfiles/releases/download/${P}/deps.tar.xz
 -> ${P}-deps.tar.xz
+   doc? ( 
https://github.com/go-acme/lego/archive/${DOCUMENTATION_COMMIT}.tar.gz -> 
${P}-docs.tar.gz )
+"
+   KEYWORDS="~amd64"
+fi
+
+# main
+LICENSE="MIT"
+# deps
+LICENSE+=" Apache-2.0 BSD-2 BSD ISC MPL-2.0"
+SLOT="0"
+IUSE="doc"
+
+# some tests require network access otherwise get following error
+# expected: "zoneee: unexpected status code: [status code: 401] body: 
Unauthorized"
+# actual  : "zoneee: could not find zone for domain \"prefix.example.com\" 
(_acme-challenge.prefix.example.com.): could not find the start of authority 
for _acme-challenge.prefix.example.com.: read udp 10.0.0.1:54729->10.0.0.1:53: 
read: connection refused"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   go-module_live_vendor
+   if use doc; then
+   EGIT_BRANCH="gh-pages"
+   EGIT_CHECKOUT_DIR="${WORKDIR}/${P}-doc"
+   git-r3_src_unpack
+   fi
+   else
+   go-module_src_unpack
+   fi
+}
+
+src_compile() {
+   export CGO_ENABLED=0
+
+   local VERSION
+   if [[ ${PV} == * ]]; then
+   VERSION="$(git rev-parse HEAD)" || die
+   else
+   VERSION="${PV}"
+   fi
+
+   ego build -trimpath -ldflags "-X main.version=${VERSION}" -o 
dist/"${PN}" ./cmd/lego/
+}
+
+src_test() {
+   ego test -v -cover ./...
+}
+
+src_install() {
+   # primary program
+   dobin dist/"${PN}"
+
+   # docs
+   einstalldocs
+   if use doc; then
+   if [[ ${PV} == * ]]; then
+   dodoc -r ../"${P}"-doc/*
+   else
+   dodoc -r ../"${PN}"-"${DOCUMENTATION_COMMIT}"/*
+   fi
+   fi
+}

diff --git a/app-crypt/lego/lego-.ebuild b/app-crypt/lego/lego-.ebuild
new file mode 100644
index 00..2e16460056
--- /dev/null
+++ b/app-crypt/lego/lego-.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Let's Encrypt/ACME client (like certbot or acme.sh) and library 
written in 

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

2023-12-31 Thread Michał Górny
commit: 096723427f2144f0251d403996b3edbbe6bba3f3
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  1 04:02:27 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  1 04:13:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09672342

dev-python/pytest-check: Bump to 2.2.3

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

 dev-python/pytest-check/Manifest  |  1 +
 dev-python/pytest-check/pytest-check-2.2.3.ebuild | 26 +++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/pytest-check/Manifest b/dev-python/pytest-check/Manifest
index eb9ff80c7918..c9f88e593655 100644
--- a/dev-python/pytest-check/Manifest
+++ b/dev-python/pytest-check/Manifest
@@ -1 +1,2 @@
 DIST pytest_check-2.2.2.tar.gz 26353 BLAKE2B 
90e95aaddfb3f595b7f0ac7fe8f75cc0dbe173dfcd30aa888cebca9e61ddd67a1a25bb5e152151c86c7bd6144f6875622c8c3a53c3453281b94f2e74a4b465e5
 SHA512 
27f6df34450db762fb6656b255d34bf6656bacefc68cdd050e100dcf53df1406c6983a509c7b7cc3cc37664c06d3798254a350ba9c0ebcf9095cb7aa1bd11557
+DIST pytest_check-2.2.3.tar.gz 26778 BLAKE2B 
7f573415a70a600d071c7dae5fae4fc0ed56a81553de3696cbb4f0c1e43a7e2fadd8d256846be5feeaa74c43afaae47dc0782dfd1fddc3607ee9fdcf74769239
 SHA512 
735d0edcb9b075fc8661892eda63830feeb1b54ff5a63a5956ba5529ce87b499f2137c7a0503813ad1509b591635692d23d77344c244a93826b331d17d262d91

diff --git a/dev-python/pytest-check/pytest-check-2.2.3.ebuild 
b/dev-python/pytest-check/pytest-check-2.2.3.ebuild
new file mode 100644
index ..0165d6d1d6ee
--- /dev/null
+++ b/dev-python/pytest-check/pytest-check-2.2.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="pytest plugin that allows multiple failures per test"
+HOMEPAGE="
+   https://github.com/okken/pytest-check/
+   https://pypi.org/project/pytest-check/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/colorama-0.4.6[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2023-12-31 Thread Michał Górny
commit: d3d5fee3968dff031282e929e97db29974c65008
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  1 04:07:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  1 04:13:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3d5fee3

app-portage/kuroneko: Remove old

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

 app-portage/kuroneko/kuroneko-0.1.3.ebuild | 33 --
 1 file changed, 33 deletions(-)

diff --git a/app-portage/kuroneko/kuroneko-0.1.3.ebuild 
b/app-portage/kuroneko/kuroneko-0.1.3.ebuild
deleted file mode 100644
index a305c4358aec..
--- a/app-portage/kuroneko/kuroneko-0.1.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-DESCRIPTION="Vulnerability checker using data scraped from Gentoo Bugzilla"
-HOMEPAGE="https://github.com/projg2/kuroneko/;
-SRC_URI="
-   https://github.com/projg2/kuroneko/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="scraper"
-
-RDEPEND="
-   dev-python/colorama[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   sys-apps/pkgcore[${PYTHON_USEDEP}]
-   scraper? (
-   dev-python/bracex[${PYTHON_USEDEP}]
-   )"
-BDEPEND="
-   test? (
-   dev-python/bracex[${PYTHON_USEDEP}]
-   dev-python/responses[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest



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

2023-12-31 Thread Michał Górny
commit: 9ff164104bdfe237037cb06dcc8806a3218b11c3
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  1 04:11:19 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  1 04:13:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff16410

app-portage/kuroneko: Bump to 0.1.4

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

 app-portage/kuroneko/Manifest  |  1 +
 app-portage/kuroneko/kuroneko-0.1.4.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/app-portage/kuroneko/Manifest b/app-portage/kuroneko/Manifest
index 2255f6141a9a..bd134aea8a62 100644
--- a/app-portage/kuroneko/Manifest
+++ b/app-portage/kuroneko/Manifest
@@ -1 +1,2 @@
 DIST kuroneko-0.1.3.tar.gz 10872 BLAKE2B 
3dc85e92a4490501897e25949d258341e661672a2bd1fbce2673d3be6ead3599269cfc93884ad05da9ee41f90b60d17faeebb6b806da870458c8cf13e33fe58e
 SHA512 
b388e0c19faae282b158e63a2ef3f54af98932e5f0efe96dcdcbd0ace509a22a1f7887834c94813912a03734448bc230767ab8e1367545f5cc877d778954fa0c
+DIST kuroneko-0.1.4.tar.gz 11369 BLAKE2B 
607d5b59720ba718dfb24d5f253a38d35c825ff9f29284bb2b50ed7a5c09ac044b514953af67217d2f840d97f1530e4608ba244cae5ca71316176bb873d28d8b
 SHA512 
d71a0298080cfd453788fb8c9ab936b3aa7e6b67337ac8ee52d4c859b4539a9a319c81811da5f955a0c7bdf5a43a04a8b5911dc02d09d3bc212a441b217957a4

diff --git a/app-portage/kuroneko/kuroneko-0.1.4.ebuild 
b/app-portage/kuroneko/kuroneko-0.1.4.ebuild
new file mode 100644
index ..f48a1fb55c96
--- /dev/null
+++ b/app-portage/kuroneko/kuroneko-0.1.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Vulnerability checker using data scraped from Gentoo Bugzilla"
+HOMEPAGE="https://github.com/projg2/kuroneko/;
+SRC_URI="
+   https://github.com/projg2/kuroneko/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="scraper"
+
+RDEPEND="
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   sys-apps/pkgcore[${PYTHON_USEDEP}]
+   scraper? (
+   dev-python/bracex[${PYTHON_USEDEP}]
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/bracex[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2023-12-31 Thread Michał Górny
commit: 90fddcaa71144b46d617d1537bc171651f420322
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  1 04:01:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  1 04:13:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fddcaa

dev-python/seaborn: Bump to 0.13.1

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

 dev-python/seaborn/Manifest  |  1 +
 dev-python/seaborn/seaborn-0.13.1.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest
index 893779dfa24f..5ccda5dd6c2a 100644
--- a/dev-python/seaborn/Manifest
+++ b/dev-python/seaborn/Manifest
@@ -1 +1,2 @@
 DIST seaborn-0.13.0.tar.gz 1455480 BLAKE2B 
9f7383715366889ffd80788f901c574d9330285da2098e5695e944f1c6b92d4e417163a82378dd75c03233fc6485158401a1aaa461f2fa8e71a4cbc3ebf957cb
 SHA512 
d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8
+DIST seaborn-0.13.1.tar.gz 1457600 BLAKE2B 
73296257f1d7525cebb90bf6f97fa6e5f91e3e9df653e0b9ab81eb6d04a1eb957a9c623aa8b4a715162175a501f55dd7e787335175503cab451bb03318e822cf
 SHA512 
b90483bffd3435cc058143dccc854eb175ec7d7a095b8ce8261fbcad3f97f5e9b035a790a04dc2c64c35dda5b0ab8562f0b4a99e09a5e2fc9c4ee8323a153910

diff --git a/dev-python/seaborn/seaborn-0.13.1.ebuild 
b/dev-python/seaborn/seaborn-0.13.1.ebuild
new file mode 100644
index ..c377b54e8c4a
--- /dev/null
+++ b/dev-python/seaborn/seaborn-0.13.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Statistical data visualization"
+HOMEPAGE="
+   https://seaborn.pydata.org/
+   https://github.com/mwaskom/seaborn/
+   https://pypi.org/project/seaborn/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/matplotlib-3.4[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.20[${PYTHON_USEDEP}]
+   >=dev-python/pandas-1.2[${PYTHON_USEDEP}]
+   >=dev-python/statsmodels-0.12[${PYTHON_USEDEP}]
+   >=dev-python/scipy-1.7[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_test() {
+   cat > matplotlibrc <<- EOF || die
+   backend : Agg
+   EOF
+
+   distutils-r1_src_test
+}



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

2023-12-31 Thread Sam James
commit: 0025f057f69b34d16fb436c1afedfd869b87f649
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 04:10:53 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 04:11:28 2024 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=0025f057

scripts/bootstrap-prefix.sh: disable http2 when emerging @system

Avoid this circular dependency:
```
$ USE=-acl -berkdb -fortran -gdbm -git -libcxx -nls -pcre -python -qmanifest 
-qtegrity -readline -sanitize bootstrap clang internal-glib PKG=app-shells/bash
[...]
 * Error: circular dependencies:

(net-libs/nghttp2-1.57.0:0/1.14::gentoo, ebuild scheduled for merge) depends on
 (dev-util/cmake-3.27.7:0/0::gentoo, ebuild scheduled for merge) (buildtime)
  (net-misc/curl-8.4.0:0/0::gentoo, ebuild scheduled for merge) (buildtime)
   (net-libs/nghttp2-1.57.0:0/1.14::gentoo, ebuild scheduled for merge) 
(buildtime_slot_op)

It might be possible to break this cycle
by applying the following change:
- net-misc/curl-8.4.0 (Change USE: -http2)
```

Bug: https://bugs.gentoo.org/901101
Closes: https://bugs.gentoo.org/920887
Signed-off-by: Sam James  gentoo.org>

 scripts/bootstrap-prefix.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 91e120360e..7f3a1b3477 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1606,6 +1606,7 @@ do_emerge_pkgs() {
-gdbm
-git
-libcxx
+   -http2
-nls
-pcre
-python



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

2023-12-31 Thread Sam James
commit: 7ff04b2f4395a20305d9718de771f9d968e24176
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 04:08:11 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 04:08:11 2024 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7ff04b2f

kde-frameworks/kirigami: don't default-enable USE=openmp

Rely on profiles to do this instead, otherwise kirigami fails out of the
box on 23.0.

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

 kde-frameworks/kirigami/kirigami-5.239..ebuild | 2 +-
 kde-frameworks/kirigami/kirigami-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kirigami/kirigami-5.239..ebuild 
b/kde-frameworks/kirigami/kirigami-5.239..ebuild
index 1f7bbbfc94..9c0c238718 100644
--- a/kde-frameworks/kirigami/kirigami-5.239..ebuild
+++ b/kde-frameworks/kirigami/kirigami-5.239..ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://techbase.kde.org/Kirigami;
 
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE="+openmp"
+IUSE="openmp"
 
 # requires package to already be installed
 RESTRICT="test"

diff --git a/kde-frameworks/kirigami/kirigami-.ebuild 
b/kde-frameworks/kirigami/kirigami-.ebuild
index 6cce4bcd64..a444171f51 100644
--- a/kde-frameworks/kirigami/kirigami-.ebuild
+++ b/kde-frameworks/kirigami/kirigami-.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://techbase.kde.org/Kirigami;
 
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE="+openmp"
+IUSE="openmp"
 
 # requires package to already be installed
 RESTRICT="test"



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

2023-12-31 Thread Sam James
commit: a99f073a4dbf526463831d4a2f61ed5af553c09d
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 04:07:00 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 04:07:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a99f073a

kde-frameworks/kirigami: don't default-enable USE=openmp

Rely on profiles to do this instead, otherwise kirigami fails out of the
box on 23.0.

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

 kde-frameworks/kirigami/kirigami-5.112.0.ebuild | 4 ++--
 kde-frameworks/kirigami/kirigami-5.113.0.ebuild | 4 ++--
 kde-frameworks/kirigami/kirigami-5.247.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/kde-frameworks/kirigami/kirigami-5.112.0.ebuild 
b/kde-frameworks/kirigami/kirigami-5.112.0.ebuild
index 68365d540477..fc90aec9b4d0 100644
--- a/kde-frameworks/kirigami/kirigami-5.112.0.ebuild
+++ b/kde-frameworks/kirigami/kirigami-5.112.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
@@ -16,7 +16,7 @@ EGIT_REPO_URI="${EGIT_REPO_URI/${PN}2/${PN}}"
 
 LICENSE="LGPL-2+"
 KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
-IUSE="+openmp"
+IUSE="openmp"
 
 # requires package to already be installed
 RESTRICT="test"

diff --git a/kde-frameworks/kirigami/kirigami-5.113.0.ebuild 
b/kde-frameworks/kirigami/kirigami-5.113.0.ebuild
index deff290eaf2c..5da8efb70be5 100644
--- a/kde-frameworks/kirigami/kirigami-5.113.0.ebuild
+++ b/kde-frameworks/kirigami/kirigami-5.113.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
@@ -15,7 +15,7 @@ HOMEPAGE="https://techbase.kde.org/Kirigami;
 
 LICENSE="LGPL-2+"
 KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="+openmp"
+IUSE="openmp"
 
 # requires package to already be installed
 RESTRICT="test"

diff --git a/kde-frameworks/kirigami/kirigami-5.247.0.ebuild 
b/kde-frameworks/kirigami/kirigami-5.247.0.ebuild
index 037dd677cda5..7fdb0e9420e2 100644
--- a/kde-frameworks/kirigami/kirigami-5.247.0.ebuild
+++ b/kde-frameworks/kirigami/kirigami-5.247.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
@@ -14,7 +14,7 @@ HOMEPAGE="https://techbase.kde.org/Kirigami;
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64"
-IUSE="+openmp"
+IUSE="openmp"
 
 # requires package to already be installed
 RESTRICT="test"



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

2023-12-31 Thread David Roman
commit: 71fd0818723a2deb2fc8f79671e0dd9407f0e961
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:23:09 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:23:09 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71fd0818

sys-kernel/ugrd: update Manifest

Signed-off-by: Joe Kappus  wt.gd>

 sys-kernel/ugrd/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest
index 8a81e522d0..245365456c 100644
--- a/sys-kernel/ugrd/Manifest
+++ b/sys-kernel/ugrd/Manifest
@@ -1,3 +1,3 @@
 DIST ugrd-0.12.1.tar.gz 39929 BLAKE2B 
d4d2788c0d23907b87ea6c98607f3d36e25c895618668123089c2cb96dc8895be411c7c5865522b58a53a90c51e77f874ee13324c5602bceb325bb680dccf63b
 SHA512 
3dec60f8535bb63525a0da07583d35c539de27e0d4ab2c79c033ce49a1b745b262a245e58224f5fabb1450af76d750578e47d60eb0961ac842eaed6e5f212c7d
 DIST ugrd-0.19.1.tar.gz 44713 BLAKE2B 
e22d8c6df5cffb6c903badf6b45f693a319215791d2fae6d45e163a1a191823130b4a1bdb541a20760154796e16f5e6e0bb10ce47f4d5c59279a71f37bc53362
 SHA512 
56383aca3bd52a734ae35ae51aec0aa12d849484466d58832324dc441fed3e955085119ba44d3248948033167e163be5d747fa27c71c999e78e7fa6357853e25
-DIST ugrd-0.19.2.tar.gz 44628 BLAKE2B 
e9020f65a6cc51ea7ad205d16cd6360eb74bf21b82a0f0df1f33a89eb39b0a4dcaba7b6c9f4c61124e6ae947d2c93062219081c0ebfb398327abbf1b099dbc7d
 SHA512 
4e1ebaf4d361d7f0cf75679e7857ef3fe4a3aaf78a5ed2117547ea32c90773645337f0604f23f13c33f248cb55cabfaaf4a2dad1e234822eb3967bafe103fca9
+DIST ugrd-0.19.3.tar.gz 44629 BLAKE2B 
4c319cfe745640ff7ced5eb161498b3cd6250434d7b56e909a74b1a133910039ec81a399d55f6408b5b33f88a94fb41a54dd18d97443d00e73730a36802b635f
 SHA512 
4cedc043d3e7ac616d263e4d467d1b825a5c425f7682f1ab531a84dfd17c49f99398226fc9ee39044591dcbc6d3308d01f1ffa6734e552945d1096bf1bff2923



[gentoo-commits] repo/proj/guru:master commit in: app-misc/yazi/

2023-12-31 Thread David Roman
commit: dad76fa354d2051654def00d611536056ba2fecf
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 03:22:28 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 03:22:28 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dad76fa3

app-misc/yazi: update HOMEPAGE

Signed-off-by: Joe Kappus  wt.gd>

 app-misc/yazi/Manifest  | 64 +
 app-misc/yazi/yazi-0.1.4.ebuild |  2 +-
 2 files changed, 65 insertions(+), 1 deletion(-)

diff --git a/app-misc/yazi/Manifest b/app-misc/yazi/Manifest
index 6f8cb6d85f..8766b5af62 100644
--- a/app-misc/yazi/Manifest
+++ b/app-misc/yazi/Manifest
@@ -1,40 +1,58 @@
 DIST addr2line-0.21.0.crate 40807 BLAKE2B 
9796b9a1177a299797902b7f64247d81d63d3f7e0dcc1256990628e84c5f92e3094ee8d753d9b72187b9aaa73b7ca67c0217899f2226ebd1076f8d25b458475b
 SHA512 
afde7660dda30dee240e79df1fb5b92d4572520bf17a134ef3765e2a077af9e13713952d52e27fae420109b40f6e24dbce1056687dbcbead858ffc21cc7dc69b
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST aho-corasick-1.0.5.crate 172064 BLAKE2B 
bab7767070b959e8e4c054bf505b9423d7fc8b02dc682b559f54db986abe72ddf83a069b4bb585d71b47de92d2fce66a1c151a0d29c4aae99378ca05c3d5eb50
 SHA512 
6b0a64dbfe0c166341a34cd169bc46d28e40f72db4d599a1aff5327a6e891408f39e8e92e983cf9396a8e8135f93e41550237ff3e5c8c05a5325688746fd814b
+DIST aho-corasick-1.1.1.crate 182812 BLAKE2B 
df74c2cfa0ae392a8d466e370ba761c4cd37c65773affba9a3cdcf7f5797b34b4a25e1646be3de5081644b34db2dce273609edb4f18a1ce7fdbf31ac28a10b88
 SHA512 
a894e1cefbb63a3b7b78a3676874d0b7a507c27970f48cdfbda1e5deefbf6b20ed4271b660a12eea77b318cd2fa0f80850a0b1ddfe0d0731ffa326c0fc295692
 DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 
4385a4875aadaacd5284a9ca7d1bf8a7bf14bf8925d1563d52fbabacc3af2c1ea08bfcf77106f3648f4fa052ac295158a21e7a0131d31eb9aecd99ea4ba20055
 SHA512 
4294024c21ddd0090c42c8eedf708d40d917f55ad5a4cb7aa3e64cfb6551b6df60f2e36bc08620c1d2fc8c7ba7207411518ee5c8635f60ed8ad9efdd458a2077
 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 
86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e
 SHA512 
b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
 DIST ansi-to-tui-3.1.0.crate 13075 BLAKE2B 
c9657001bd7c1e4006ae3263adb06b2cf399b060164d2d11da36485c192c87526716a16d5c0b19489af214640558d7cee35f9a365f2ca2cb6f33b8e3a8ab976e
 SHA512 
0438790fe76f80ceb4ba7724768fece81c32aa93dc3bf04fb735ef48a944e8d8381ca572a53976149db40f9c664a0955ef5f88637fcc9d2cbdefe3ece8aef706
 DIST anstream-0.5.0.crate 19646 BLAKE2B 
770dc99092e1c48ad5c1658e83abff3b8c9e0915e360048bfe0fe04faf61991e01e88ca4adca23533bf11fe078066e351778661128d69381756688341022f29d
 SHA512 
8e285cc8f92708cf9482e7b4dc84dd891e5ec0bd8c57894c6bb368eede1127b7b903adb4c40b37287e3644535cc60c92662951c2c8fb5b92e10f49ff5374d359
+DIST anstream-0.6.4.crate 20593 BLAKE2B 
2b617c45d351e01222fc50f52551e57b4a8b0ecf84c6ddf44336c7c9d3b9dde15232b1c4f664d567849295bf8f03612b73ded56f1b3937392eb7718f1e0446c3
 SHA512 
0b983d626c53d1edc184f04cbd2c004eb9c40d14486b23cce86ebf50cbd3d916d32cb0423ae1d67c2b83b966690090af740538538ef846c0b126c686a1ebe159
 DIST anstyle-1.0.2.crate 13983 BLAKE2B 
4274b101d1cab2b62f9bb7637dab35f4b16e8c08a080355a2ea53e2b7b353ff230aa77fb3a244e0d6ff0dcd27abe5895eb306c630aa0822d0c608f041d4abfea
 SHA512 
09220abfc844192ca698589897845752e02666b4ecd6529af4cde9f260ef36694e6e631c7503fc0e438ac72c88c419043b78399385cb248e789e86404503935a
+DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
 DIST anstyle-parse-0.2.1.crate 24802 BLAKE2B 
6304a56c6a9fbaf1bb4d1d177b2315684345dc9d71c35836f9544145364f8d6eb56e25c03076690c594ab7db5914501acb569f6c136952e59c93179ced527fb2
 SHA512 
5c8fc7d88ffc3a6e78340ffe0f3c2d72e865512030ade4509de9c673eba955c536bb1873dac11f6ba11cc8367fb30c67451ed65d19f81507c9e917c702bfd176
+DIST anstyle-parse-0.2.2.crate 24696 BLAKE2B 
979daa24ccc3ea484445216bddc190f148f0ad83b95c997c1becbadfb641b67834980c413bcf5b7ddc2c6883d5e071a9636fbb44f79680ac42f8b73a797e466a
 SHA512 
28039806f87c2bd8266cea834975939b79fdf0cc95a029654806655c0662520aa497d84eefadcd9edce204986e60b62678e76a09cdb38bcc50c91e9d05c4bee9
 DIST anstyle-query-1.0.0.crate 8620 BLAKE2B 
2d296b5066fd6284a2410923215571e6df650c5ef892d6de7a7088a0996ca30608797feabc84f3c325ff4d07001dac80ac5067d2a9c9d15d9ba59a276b399f53
 SHA512 

[gentoo-commits] repo/proj/guru:master commit in: app-editors/typora-bin/

2023-12-31 Thread David Roman
commit: daeb25cfb2ca8e05b854dafe1ae35f730aa1fc0f
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:37:48 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:37:48 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=daeb25cf

app-editors/typora-bin: add 1.7.6, drop 1.5.8

Signed-off-by: Joe Kappus  wt.gd>

 app-editors/typora-bin/Manifest   | 4 ++--
 .../typora-bin/{typora-bin-1.5.8.ebuild => typora-bin-1.7.6.ebuild}   | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/typora-bin/Manifest b/app-editors/typora-bin/Manifest
index 20e6ce0948..e31700b3ab 100644
--- a/app-editors/typora-bin/Manifest
+++ b/app-editors/typora-bin/Manifest
@@ -1,2 +1,2 @@
-DIST typora_1.5.8_amd64.deb 85330472 BLAKE2B 
bbcbb4c8edda85351adcc37518e30e242f39973649155187afeaf05cac0192292767f54732f38a40a5474d21c93aa75c166c03ef13860b42d7558c967a8b43f2
 SHA512 
ceb62393913c5b51486d4867c914d43d9ebe2bd4cb9e6c67f83ca20d816594e968d648c97811ab4f4238acdc21c5cf9b95fa82084e3e33d0a3978dc0974b6e7e
-DIST typora_1.5.8_arm64.deb 75802376 BLAKE2B 
36b570b596436a231fdc5d63f95496b8e7a18f0950c299553f624ebdf66ef58c01ca4fae2753248b643375b2553851639d1dc15ce11cd276af382514dc38759e
 SHA512 
7435e2d52a835abf7c349ccc9cf343a40e49bc966692dd6953d49fc8d31c5a9f464bd6b48067d691af2b57cb093a5ed4543097d85912a8b73dbc0d9029aef14d
+DIST typora_1.7.6_amd64.deb 88633700 BLAKE2B 
7ff19cc01a93b1175d79cc68cc496af2932ff7136ad9b9e92d04ed98161a9540f6cb86c9218ee21fc88bd39b9e3d764ca99a09140bdffdb4f55b7599d1252b64
 SHA512 
9c23de69be1dfd35ab9553f7d2c6e18b2a7b18ef44930fe986ca87063a96d9b5bfe2e58447f2b5625ab66e19a78053631ef0bf673e5c7935e808b2d27b093f5a
+DIST typora_1.7.6_arm64.deb 79230784 BLAKE2B 
3679b4c0a528daa15bea555904a3e0bccfc52702f85af3b0064bcdcbfd3f25adaa68045411dbf2652eb1067fdd0c5ba4e644565fa7cd1b47aaa8b476ee2eeb5e
 SHA512 
30055c886cda45464bdb1cd1a3782315975fbaf77247e9a273c09791f13a0b0f1cbb27b99031303f6649f584fe3db6560df8b8d3a7fbab7efefa5fdd94d1

diff --git a/app-editors/typora-bin/typora-bin-1.5.8.ebuild 
b/app-editors/typora-bin/typora-bin-1.7.6.ebuild
similarity index 100%
rename from app-editors/typora-bin/typora-bin-1.5.8.ebuild
rename to app-editors/typora-bin/typora-bin-1.7.6.ebuild



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

2023-12-31 Thread David Roman
commit: 3596a407c58116be81f9261414785b4d0d08d5c0
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:45:57 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:45:57 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3596a407

www-client/yandex-browser: add 23.11.1.714_p1, drop 23.9.1.962_p1

Signed-off-by: Joe Kappus  wt.gd>

 www-client/yandex-browser/Manifest  | 2 +-
 ...rowser-23.9.1.962_p1.ebuild => yandex-browser-23.11.1.714_p1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/yandex-browser/Manifest 
b/www-client/yandex-browser/Manifest
index aa310c172f..09f5df6314 100644
--- a/www-client/yandex-browser/Manifest
+++ b/www-client/yandex-browser/Manifest
@@ -1 +1 @@
-DIST yandex-browser-23.9.1.962_p1.deb 158802680 BLAKE2B 
ab76c07182fc8ff253b57cffcee9dec6d2f5e5454a1b96b06235228e5ded9248a3351bc201bddb0c0ac629c1d56cca7bf1a584991d7413bb6454c1f5d313ebe8
 SHA512 
5da7616fea48d0ed1b1ee7e5530c69511c7303664fbf16e9ea85f7a155c87a92feea8e8f1d41659de00986e7c4a47939b56684fdc41febd4111a7764bdc94081
+DIST yandex-browser-23.11.1.714_p1.deb 154275256 BLAKE2B 
6e10db229b03525d0ae7d7877a9e5c64d2870bef79678bac12514fd1d681f063bb63e901cb321ab99b03cedb1dc0268fc9551e02da9e85d83058713744c7
 SHA512 
87fcce39c071d5991211d778810b20c4a5d59d66642edf7dd90d537e1f13cccb340e5a30c78caa2cb7093244a0db8f778fd2da121140a490f1ac426d39b3927e

diff --git a/www-client/yandex-browser/yandex-browser-23.9.1.962_p1.ebuild 
b/www-client/yandex-browser/yandex-browser-23.11.1.714_p1.ebuild
similarity index 100%
rename from www-client/yandex-browser/yandex-browser-23.9.1.962_p1.ebuild
rename to www-client/yandex-browser/yandex-browser-23.11.1.714_p1.ebuild



[gentoo-commits] repo/proj/guru:master commit in: dev-python/zen-util/, dev-python/zen-logging/, sys-kernel/ugrd/, ...

2023-12-31 Thread David Roman
commit: fb2744d80071ec136192752c8e594e5b51b152d2
Author: Zen  pyl  onl>
AuthorDate: Sun Dec 31 22:41:46 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 22:45:44 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb2744d8

Add zen-util and zen-logging to split zenlib. Update packages which use
zenlib to use more split libraries

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/Manifest |  3 +-
 .../{pycpio-0.6.1.ebuild => pycpio-0.7.3.ebuild}   |  3 +-
 dev-python/zen-logging/Manifest|  1 +
 dev-python/zen-logging/metadata.xml| 11 ++
 .../zen-logging-1.1.0.ebuild}  |  6 +--
 dev-python/zen-util/Manifest   |  1 +
 dev-python/zen-util/metadata.xml   | 11 ++
 .../zen-util-1.0.1.ebuild} |  9 ++---
 sys-kernel/ugrd/Manifest   |  1 +
 sys-kernel/ugrd/ugrd-0.19.2.ebuild | 44 ++
 10 files changed, 77 insertions(+), 13 deletions(-)

diff --git a/dev-python/pycpio/Manifest b/dev-python/pycpio/Manifest
index e6bbe54a64..b5aa717b6d 100644
--- a/dev-python/pycpio/Manifest
+++ b/dev-python/pycpio/Manifest
@@ -1,2 +1 @@
-DIST pycpio-0.6.1.tar.gz 17236 BLAKE2B 
4951ba3b7ad2fe603eb1cc07c851349de2ad73985ad1b2efcdb138f2ba26c43040a09d036ef993a28190b381af58bb8dc2e876ed1dff309ac010b69341a8c881
 SHA512 
49386b45172b13ecdeb040b719eaae0f17e5cbf7d68d3dcbcec99e01bfb3c539b8b02a768da640f56bb8941e79053c56e391b7186c9a5e5226d91fbdc55eeb11
-DIST pycpio-0.7.0.tar.gz 17942 BLAKE2B 
760bfec68fe77ac9495a01fd8481e7f7a88fce0be983e60220bba66e12b104214117fd0e18e362bf1fc7a367226a5c874940fa43c23f7fee2bb39f76ec4a2ccb
 SHA512 
4730083295e0bde39651d323507d12adef6b27e2cde095e281c76f4b6f20262eaa40cf31eb900d6818a7266b3b21c6159a334fd088249a55d054e277200ffaaa
+DIST pycpio-0.7.3.tar.gz 17991 BLAKE2B 
92b6ae62dd1d81b9c87423e417ef24989df6340b22cf1686a7718dd164c2ed4193b65fd2be55bb17d86500fefec9e2a81efd2c518943bca6d6225e819c30cf86
 SHA512 
509294f8f0688cd3c9b82790bbf23627a3aeb045ecb7f2371fbaae10c6d9ae98a7965d25e19f8ef3d230faeddb5fad82b8305876fb144122f2bd6c46b4fe19f0

diff --git a/dev-python/pycpio/pycpio-0.6.1.ebuild 
b/dev-python/pycpio/pycpio-0.7.3.ebuild
similarity index 85%
copy from dev-python/pycpio/pycpio-0.6.1.ebuild
copy to dev-python/pycpio/pycpio-0.7.3.ebuild
index cc9f2e41e4..a36203e9fa 100644
--- a/dev-python/pycpio/pycpio-0.6.1.ebuild
+++ b/dev-python/pycpio/pycpio-0.7.3.ebuild
@@ -15,4 +15,5 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DEPEND=">=dev-python/zenlib-1.2.0"
+DEPEND=">=dev-python/zen-logging-1.1.0
+>=dev-python/zen-util-1.0.1"

diff --git a/dev-python/zen-logging/Manifest b/dev-python/zen-logging/Manifest
new file mode 100644
index 00..564edcccab
--- /dev/null
+++ b/dev-python/zen-logging/Manifest
@@ -0,0 +1 @@
+DIST zen-logging-1.1.0.tar.gz 9798 BLAKE2B 
3a97b934e8c35bce0c3fbf720b776e0c563f2b06e57c29a6ffbb58786ed6e8ffc39da7ab2db3196affbc43029f14ff0b55c4647aa7fbe1f03f7a1b54accf4c59
 SHA512 
febdc2fe9cf2d44f9c2547b0eb3d79aef097e9c191a5118031e330210bc092c0c6b4242eeaa0f27f6b2181d3689bd4369b1ac4c28629c2554038766690204822

diff --git a/dev-python/zen-logging/metadata.xml 
b/dev-python/zen-logging/metadata.xml
new file mode 100644
index 00..248b2b4feb
--- /dev/null
+++ b/dev-python/zen-logging/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   d...@pyl.onl
+   Zen
+   
+   
+   desultory/zen-logging
+   
+

diff --git a/dev-python/pycpio/pycpio-0.6.1.ebuild 
b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
similarity index 73%
rename from dev-python/pycpio/pycpio-0.6.1.ebuild
rename to dev-python/zen-logging/zen-logging-1.1.0.ebuild
index cc9f2e41e4..058a94d25c 100644
--- a/dev-python/pycpio/pycpio-0.6.1.ebuild
+++ b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
@@ -7,12 +7,10 @@ DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{11..12} )
 inherit distutils-r1
 
-DESCRIPTION="Python CPIO library"
-HOMEPAGE="https://github.com/desultory/pycpio;
+DESCRIPTION="Python logging helpers"
+HOMEPAGE="https://github.com/desultory/zen_logging;
 SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/zenlib-1.2.0"

diff --git a/dev-python/zen-util/Manifest b/dev-python/zen-util/Manifest
new file mode 100644
index 00..6883e71eba
--- /dev/null
+++ b/dev-python/zen-util/Manifest
@@ -0,0 +1 @@
+DIST zen-util-1.0.1.tar.gz 11025 BLAKE2B 
0e47e9a62a4f0f2e573e16a11956ee20505d5618c7e2c47b5699d699a6e920f23f935122de9b0fd5128a070a99758f9b40aa9df39190805ca609814a26b8a4b8
 SHA512 
88110ab041255def72364e5dfc95818b250b8f52a0d7505a7023b8a3a418247f38707f6c9d0858ae492976969c78bc8a292545c28d22721c8c5b2cce7c90d68c

diff --git a/dev-python/zen-util/metadata.xml 

[gentoo-commits] repo/proj/guru:master commit in: app-misc/yazi/

2023-12-31 Thread David Roman
commit: b5b21960c1d3b4dd0f8d5849b02302d3190f77c9
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 03:26:24 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 03:26:24 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b5b21960

app-misc/yazi: add 0.1.5

Signed-off-by: Joe Kappus  wt.gd>

 app-misc/yazi/yazi-0.1.5.ebuild | 297 
 1 file changed, 297 insertions(+)

diff --git a/app-misc/yazi/yazi-0.1.5.ebuild b/app-misc/yazi/yazi-0.1.5.ebuild
new file mode 100644
index 00..bd07c46a9c
--- /dev/null
+++ b/app-misc/yazi/yazi-0.1.5.ebuild
@@ -0,0 +1,297 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES="
+   addr2line@0.21.0
+   adler@1.0.2
+   aho-corasick@1.1.1
+   android-tzdata@0.1.1
+   android_system_properties@0.1.5
+   ansi-to-tui@3.1.0
+   anstream@0.6.4
+   anstyle@1.0.4
+   anstyle-parse@0.2.2
+   anstyle-query@1.0.0
+   anstyle-wincon@3.0.1
+   anyhow@1.0.75
+   async-channel@1.9.0
+   autocfg@1.1.0
+   backtrace@0.3.69
+   base64@0.21.4
+   bincode@1.3.3
+   bit_field@0.10.2
+   bitflags@1.3.2
+   bitflags@2.4.0
+   block-buffer@0.10.4
+   bstr@1.6.2
+   bumpalo@3.14.0
+   bytemuck@1.14.0
+   byteorder@1.5.0
+   bytes@1.5.0
+   cassowary@0.3.0
+   cc@1.0.83
+   cfg-if@1.0.0
+   chrono@0.4.31
+   clap@4.4.6
+   clap_builder@4.4.6
+   clap_complete@4.4.3
+   clap_complete_fig@4.4.1
+   clap_complete_nushell@4.4.1
+   clap_derive@4.4.2
+   clap_lex@0.5.1
+   clipboard-win@4.5.0
+   color_quant@1.1.0
+   colorchoice@1.0.0
+   concurrent-queue@2.3.0
+   core-foundation-sys@0.8.4
+   crc32fast@1.3.2
+   crossbeam-channel@0.5.8
+   crossbeam-deque@0.8.3
+   crossbeam-epoch@0.9.15
+   crossbeam-utils@0.8.16
+   crossterm@0.27.0
+   crossterm_winapi@0.9.1
+   crunchy@0.2.2
+   crypto-common@0.1.6
+   deranged@0.3.8
+   digest@0.10.7
+   dirs@5.0.1
+   dirs-sys@0.4.1
+   either@1.9.0
+   equivalent@1.0.1
+   erased-serde@0.3.31
+   error-code@2.3.1
+   event-listener@2.5.3
+   exr@1.71.0
+   fdeflate@0.3.0
+   filetime@0.2.22
+   flate2@1.0.27
+   flume@0.11.0
+   fnv@1.0.7
+   form_urlencoded@1.2.0
+   fsevent-sys@4.1.0
+   futures@0.3.28
+   futures-channel@0.3.28
+   futures-core@0.3.28
+   futures-executor@0.3.28
+   futures-io@0.3.28
+   futures-macro@0.3.28
+   futures-sink@0.3.28
+   futures-task@0.3.28
+   futures-util@0.3.28
+   generic-array@0.14.7
+   getrandom@0.2.10
+   gif@0.12.0
+   gimli@0.28.0
+   glob@0.3.1
+   half@2.2.1
+   hashbrown@0.12.3
+   hashbrown@0.14.1
+   heck@0.4.1
+   hermit-abi@0.3.3
+   iana-time-zone@0.1.57
+   iana-time-zone-haiku@0.1.2
+   idna@0.4.0
+   if_chain@1.0.2
+   image@0.24.7
+   indexmap@1.9.3
+   indexmap@2.0.2
+   indoc@2.0.4
+   inotify@0.9.6
+   inotify-sys@0.1.5
+   itertools@0.11.0
+   itoa@1.0.9
+   jpeg-decoder@0.3.0
+   js-sys@0.3.64
+   kqueue@1.0.8
+   kqueue-sys@1.0.4
+   lazy_static@1.4.0
+   lebe@0.5.2
+   libc@0.2.149
+   line-wrap@0.1.1
+   linked-hash-map@0.5.6
+   lock_api@0.4.10
+   log@0.4.20
+   lua-src@546.0.1
+   luajit-src@210.4.8+resty107baaf
+   malloc_buf@0.0.6
+   md-5@0.10.6
+   memchr@2.6.4
+   memoffset@0.9.0
+   minimal-lexical@0.2.1
+   miniz_oxide@0.7.1
+   mio@0.8.8
+   mlua@0.9.1
+   mlua-sys@0.3.2
+   nom@7.1.3
+   notify@6.1.1
+   nu-ansi-term@0.46.0
+   num-integer@0.1.45
+   num-rational@0.4.1
+   num-traits@0.2.17
+   num_cpus@1.16.0
+   objc@0.2.7
+   object@0.32.1
+   once_cell@1.18.0
+   onig@6.4.0
+   onig_sys@69.8.1
+   option-ext@0.2.0
+   ordered-float@2.10.0
+   overload@0.1.1
+   parking_lot@0.12.1
+   parking_lot_core@0.9.8
+   paste@1.0.14
+   percent-encoding@2.3.0
+   pin-project-lite@0.2.13
+   pin-utils@0.1.0
+   pkg-config@0.3.27
+   plist@1.5.0
+   png@0.17.10
+   proc-macro-error@1.0.4
+   proc-macro-error-attr@1.0.4
+   proc-macro2@1.0.69
+   qoi@0.4.1
+   quick-xml@0.29.0
+   quote@1.0.33
+   ratatui@0.23.0
+   rayon@1.8.0
+   rayon-core@1.12.0
+   redox_syscall@0.2.16
+   redox_syscall@0.3.5
+   redox_users@0.4.3
+   regex@1.9.6
+   regex-automata@0.3.9
+   regex-syntax@0.7.5
+   rustc-demangle@0.1.23
+   rustc-hash@1.1.0
+   rustversion@1.0.14
+   ryu@1.0.15
+   safemem@0.3.3
+   same-file@1.0.6
+   scopeguard@1.2.0
+   serde@1.0.188
+   serde-value@0.7.0
+ 

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

2023-12-31 Thread David Roman
commit: 6e8da14109a8752dc84df84f59877d1b112dcffb
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:41:18 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:41:18 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e8da141

gui-apps/wlr-randr: update upstream metadata

Signed-off-by: Joe Kappus  wt.gd>

 gui-apps/wlr-randr/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wlr-randr/metadata.xml b/gui-apps/wlr-randr/metadata.xml
index db49d87d2a..7e5130f685 100644
--- a/gui-apps/wlr-randr/metadata.xml
+++ b/gui-apps/wlr-randr/metadata.xml
@@ -6,6 +6,6 @@
Aisha Tammy


-   emersion/wlr-randr
+   ~emersion/wlr-randr

 



[gentoo-commits] repo/proj/guru:master commit in: net-vpn/mullvadvpn-app/

2023-12-31 Thread David Roman
commit: a2750d6ce6db4e21de41725c7ea5b49017def5f0
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:29:22 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:29:22 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2750d6c

net-vpn/mullvadvpn-app: update upstream metadata

Signed-off-by: Joe Kappus  wt.gd>

 net-vpn/mullvadvpn-app/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/mullvadvpn-app/metadata.xml 
b/net-vpn/mullvadvpn-app/metadata.xml
index b2cd3596d1..c16f1c4d20 100644
--- a/net-vpn/mullvadvpn-app/metadata.xml
+++ b/net-vpn/mullvadvpn-app/metadata.xml
@@ -6,6 +6,6 @@
David Roman


-   mullvad/mullvad-app 
+   mullvad/mullvadvpn-app 

 



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

2023-12-31 Thread David Roman
commit: 64fcbc014b878e1f118a101dfd6df7d121c2cbaa
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:12:25 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:12:25 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64fcbc01

sys-kernel/ugrd: Add 0.19.3, add [${PYTHON_USEDEP}]

Signed-off-by: Zen  pyl.onl>

 sys-kernel/ugrd/ugrd-0.19.3.ebuild | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/sys-kernel/ugrd/ugrd-0.19.3.ebuild 
b/sys-kernel/ugrd/ugrd-0.19.3.ebuild
new file mode 100644
index 00..e3c323ba2d
--- /dev/null
+++ b/sys-kernel/ugrd/ugrd-0.19.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Python based initramfs generator with TOML defintions"
+HOMEPAGE="https://github.com/desultory/ugrd;
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="app-misc/pax-utils"
+DEPEND=">=dev-python/zenlib-1.4.0[${PYTHON_USEDEP}]
+>=dev-python/pycpio-0.8.0[${PYTHON_USEDEP}]
+sys-apps/pciutils"
+
+src_install() {
+   # Call the distutils-r1_src_install function to install the package
+   distutils-r1_src_install
+   # Create the ugrd config directory
+   keepdir /etc/ugrd
+   # Install the example config into /etc/ugrd/config.toml
+   # Do not overwrite an existing config
+   insinto /etc/ugrd
+   newins examples/example.toml config.toml
+   # Create the kernel preinst.d directory if it doesn't exist
+   # Install the kernel preinst.d hook
+   keepdir /etc/kernel/preinst.d
+   exeinto /etc/kernel/preinst.d
+   doexe hooks/51-ugrd.install
+}
+
+pkg_postinst() {
+   optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup
+   optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs
+   optfeature "ugrd.crypto.gpg support" app-crypt/gnupg
+}



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

2023-12-31 Thread David Roman
commit: 75cddc79d0c1300954ce89c8f0abad2605c60dc0
Author: Moritz Brunner  posteo  de>
AuthorDate: Sun Dec 31 19:32:19 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 19:34:58 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=75cddc79

dev-python/celery:  Add missing dependency to python-dateutil

Generating the documentation with USE=doc fails without this
package. Furthermore, it is listed in requirements/default.txt
as global runtime dependency.

Closes: https://bugs.gentoo.org/920205
Signed-off-by: Moritz Brunner  posteo.de>

 dev-python/celery/celery-5.3.6.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/celery/celery-5.3.6.ebuild 
b/dev-python/celery/celery-5.3.6.ebuild
index 9381094487..2245d6e3cb 100644
--- a/dev-python/celery/celery-5.3.6.ebuild
+++ b/dev-python/celery/celery-5.3.6.ebuild
@@ -30,6 +30,7 @@ RDEPEND="
dev-python/click-didyoumean[${PYTHON_USEDEP}]
dev-python/click-plugins[${PYTHON_USEDEP}]
dev-python/click-repl[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
>=dev-python/kombu-5.3.0_beta1[${PYTHON_USEDEP}]


[gentoo-commits] repo/proj/guru:master commit in: dev-python/pycpio/, sys-kernel/ugrd/

2023-12-31 Thread David Roman
commit: 40847bdbd053cbc49ba9af723029281de17e818d
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:11:15 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:11:15 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40847bdb

dev-python/cpio: Update manifest (remove old ugrd version)

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/Manifest |  2 +-
 sys-kernel/ugrd/ugrd-0.19.2.ebuild | 44 --
 2 files changed, 1 insertion(+), 45 deletions(-)

diff --git a/dev-python/pycpio/Manifest b/dev-python/pycpio/Manifest
index b5aa717b6d..0ba414b534 100644
--- a/dev-python/pycpio/Manifest
+++ b/dev-python/pycpio/Manifest
@@ -1 +1 @@
-DIST pycpio-0.7.3.tar.gz 17991 BLAKE2B 
92b6ae62dd1d81b9c87423e417ef24989df6340b22cf1686a7718dd164c2ed4193b65fd2be55bb17d86500fefec9e2a81efd2c518943bca6d6225e819c30cf86
 SHA512 
509294f8f0688cd3c9b82790bbf23627a3aeb045ecb7f2371fbaae10c6d9ae98a7965d25e19f8ef3d230faeddb5fad82b8305876fb144122f2bd6c46b4fe19f0
+DIST pycpio-0.8.0.tar.gz 17988 BLAKE2B 
101aa0d533e1a1b00eda7f6286a5f4c9b97248625adce3377a6ef6510a6bc3f2a4e24c70a6b967e135270c3bae91419d20a2952464f22f8596cc2fefacf7
 SHA512 
d1c8519e1dc6e2663e55a2e9f6e8d90670cca5f47a58a8838f1ed9ec1bb7fb002db98b04b8d083475fc61b52f05e6a5a9d21435f06a6f627550b292d2eeea846

diff --git a/sys-kernel/ugrd/ugrd-0.19.2.ebuild 
b/sys-kernel/ugrd/ugrd-0.19.2.ebuild
deleted file mode 100644
index 871bdbc645..00
--- a/sys-kernel/ugrd/ugrd-0.19.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Python based initramfs generator with TOML defintions"
-HOMEPAGE="https://github.com/desultory/ugrd;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="app-misc/pax-utils"
-DEPEND=">=dev-python/zen-logging-1.1.0
->=dev-python/zen-util-1.0.1
->=dev-python/pycpio-0.7.3
-sys-apps/pciutils"
-
-src_install() {
-   # Call the distutils-r1_src_install function to install the package
-   distutils-r1_src_install
-   # Create the ugrd config directory
-   keepdir /etc/ugrd
-   # Install the example config into /etc/ugrd/config.toml
-   # Do not overwrite an existing config
-   insinto /etc/ugrd
-   newins examples/example.toml config.toml
-   # Create the kernel preinst.d directory if it doesn't exist
-   # Install the kernel preinst.d hook
-   keepdir /etc/kernel/preinst.d
-   exeinto /etc/kernel/preinst.d
-   doexe hooks/51-ugrd.install
-}
-
-pkg_postinst() {
-   optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup
-   optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs
-   optfeature "ugrd.crypto.gpg support" app-crypt/gnupg
-}



[gentoo-commits] repo/proj/guru:master commit in: dev-python/zen-logging/

2023-12-31 Thread David Roman
commit: 5a9809724c7806668054f6e7371608534f17fde8
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 01:59:31 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 01:59:31 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5a980972

dev-python/zen-logging: Remove

Signed-off-by: Zen  pyl.onl>

 dev-python/zen-logging/Manifest |  1 -
 dev-python/zen-logging/metadata.xml | 11 ---
 dev-python/zen-logging/zen-logging-1.1.0.ebuild | 16 
 3 files changed, 28 deletions(-)

diff --git a/dev-python/zen-logging/Manifest b/dev-python/zen-logging/Manifest
deleted file mode 100644
index 564edcccab..00
--- a/dev-python/zen-logging/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zen-logging-1.1.0.tar.gz 9798 BLAKE2B 
3a97b934e8c35bce0c3fbf720b776e0c563f2b06e57c29a6ffbb58786ed6e8ffc39da7ab2db3196affbc43029f14ff0b55c4647aa7fbe1f03f7a1b54accf4c59
 SHA512 
febdc2fe9cf2d44f9c2547b0eb3d79aef097e9c191a5118031e330210bc092c0c6b4242eeaa0f27f6b2181d3689bd4369b1ac4c28629c2554038766690204822

diff --git a/dev-python/zen-logging/metadata.xml 
b/dev-python/zen-logging/metadata.xml
deleted file mode 100644
index 248b2b4feb..00
--- a/dev-python/zen-logging/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   d...@pyl.onl
-   Zen
-   
-   
-   desultory/zen-logging
-   
-

diff --git a/dev-python/zen-logging/zen-logging-1.1.0.ebuild 
b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
deleted file mode 100644
index 058a94d25c..00
--- a/dev-python/zen-logging/zen-logging-1.1.0.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1
-
-DESCRIPTION="Python logging helpers"
-HOMEPAGE="https://github.com/desultory/zen_logging;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"



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

2023-12-31 Thread David Roman
commit: e37e098252155139b3c2497964064438a82e85e5
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:05:08 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:05:08 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e37e0982

dev-python/pycpio: Bump to 0.8.0, use [${PYTHON_USEDEP}]

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/{pycpio-0.7.3.ebuild => pycpio-0.8.0.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/pycpio/pycpio-0.7.3.ebuild 
b/dev-python/pycpio/pycpio-0.8.0.ebuild
similarity index 85%
rename from dev-python/pycpio/pycpio-0.7.3.ebuild
rename to dev-python/pycpio/pycpio-0.8.0.ebuild
index a36203e9fa..d4dfebe419 100644
--- a/dev-python/pycpio/pycpio-0.7.3.ebuild
+++ b/dev-python/pycpio/pycpio-0.8.0.ebuild
@@ -15,5 +15,4 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DEPEND=">=dev-python/zen-logging-1.1.0
->=dev-python/zen-util-1.0.1"
+DEPEND=">=dev-python/zenlib-1.4.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/proj/guru:master commit in: dev-python/zen-util/

2023-12-31 Thread David Roman
commit: 4121fdf4597a1657d8b61e47ac3acac9d28cd3b7
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 01:59:57 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 01:59:57 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4121fdf4

dev-python/zen-util: Remove

Signed-off-by: Zen  pyl.onl>

 dev-python/zen-util/Manifest  |  1 -
 dev-python/zen-util/metadata.xml  | 11 ---
 dev-python/zen-util/zen-util-1.0.1.ebuild | 18 --
 3 files changed, 30 deletions(-)

diff --git a/dev-python/zen-util/Manifest b/dev-python/zen-util/Manifest
deleted file mode 100644
index 6883e71eba..00
--- a/dev-python/zen-util/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zen-util-1.0.1.tar.gz 11025 BLAKE2B 
0e47e9a62a4f0f2e573e16a11956ee20505d5618c7e2c47b5699d699a6e920f23f935122de9b0fd5128a070a99758f9b40aa9df39190805ca609814a26b8a4b8
 SHA512 
88110ab041255def72364e5dfc95818b250b8f52a0d7505a7023b8a3a418247f38707f6c9d0858ae492976969c78bc8a292545c28d22721c8c5b2cce7c90d68c

diff --git a/dev-python/zen-util/metadata.xml b/dev-python/zen-util/metadata.xml
deleted file mode 100644
index ec9806d004..00
--- a/dev-python/zen-util/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   d...@pyl.onl
-   Zen
-   
-   
-   desultory/zen-util
-   
-

diff --git a/dev-python/zen-util/zen-util-1.0.1.ebuild 
b/dev-python/zen-util/zen-util-1.0.1.ebuild
deleted file mode 100644
index 6c4a9a590d..00
--- a/dev-python/zen-util/zen-util-1.0.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1
-
-DESCRIPTION="Python logging helpers"
-HOMEPAGE="https://github.com/desultory/zen_logging;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=dev-python/zen-logging-1.1.0"



[gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/

2023-12-31 Thread David Roman
commit: 047be17857361e5b8b93e239b58bc95d98efef5b
Author: Moritz Brunner  posteo  de>
AuthorDate: Sun Dec 31 18:29:51 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 18:29:51 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=047be178

dev-python/python-lsp-isort: Simplify by removing superfluous MY_PV

Signed-off-by: Moritz Brunner  posteo.de>

 dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild 
b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
index 3eec423be9..cc95211426 100644
--- a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
+++ b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
@@ -5,7 +5,6 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..12} pypy3 )
-MY_PV="0.1"
 
 inherit distutils-r1
 
@@ -15,10 +14,9 @@ HOMEPAGE="
https://pypi.org/project/python-lsp-isort/
 "
 SRC_URI="
-   https://github.com/chantera/${PN}/archive/refs/tags/v${MY_PV}.tar.gz
+   https://github.com/chantera/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.gh.tar.gz
 "
-S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] repo/proj/guru:master commit in: net-dialup/tcpser/files/

2023-12-31 Thread David Roman
commit: 78dbea350391d3335830e07b261bb8d158458a69
Author: Seth M. Price  aol  com>
AuthorDate: Sun Dec 31 18:45:28 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 18:56:03 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78dbea35

net-dialup/tcpser: fix typo in CFLAGS patch

Closes: https://bugs.gentoo.org/920894
Signed-off-by: Seth M. Price  aol.com>

 .../tcpser/files/tcpser-1.1.4_dont-hardcode-cflags-and-ldflags.patch| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-dialup/tcpser/files/tcpser-1.1.4_dont-hardcode-cflags-and-ldflags.patch 
b/net-dialup/tcpser/files/tcpser-1.1.4_dont-hardcode-cflags-and-ldflags.patch
index 089661438c..14246d31fc 100644
--- 
a/net-dialup/tcpser/files/tcpser-1.1.4_dont-hardcode-cflags-and-ldflags.patch
+++ 
b/net-dialup/tcpser/files/tcpser-1.1.4_dont-hardcode-cflags-and-ldflags.patch
@@ -10,7 +10,7 @@ From: Seth M. Price 
  DEF = 
 -CFLAGS = -O $(DEF) -Wall
 -LDFLAGS = -lpthread
-+CFLAGS = 
++CFLAGS += 
 +LDFLAGS += -lpthread
  DEPEND = makedepend $(DEF) $(CFLAGS)
  



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

2023-12-31 Thread David Roman
commit: d20f5d54dd61b3e201a86dd11a1f88d54555be9a
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:00:58 2024 +
Commit: David Roman  gmail  com>
CommitDate: Mon Jan  1 02:00:58 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d20f5d54

dev-python/zenlib: Add 1.4.0

Signed-off-by: Zen  pyl.onl>

 dev-python/zenlib/Manifest|  1 +
 dev-python/zenlib/zenlib-1.4.0.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-python/zenlib/Manifest b/dev-python/zenlib/Manifest
index 1df6288515..af0bc34002 100644
--- a/dev-python/zenlib/Manifest
+++ b/dev-python/zenlib/Manifest
@@ -1,2 +1,3 @@
 DIST zenlib-1.2.0.tar.gz 12766 BLAKE2B 
9366beb9496d136cbf0efc9fd97c6d430b442eae4ede87d85c32e1bee9a17315cab04e0b8f97ad8b8e2b599d2965dc2cd3c57ebe4830ba9abe53adc13825f634
 SHA512 
e5630a0869cdcbd909ea829f5876057ad1787ae1b63f80f9b1db7deeb80799eef9deac56027291dac55efd1e974b82a737b236189a1d7a8657a215bb866bca91
 DIST zenlib-1.3.1.tar.gz 13470 BLAKE2B 
03bd8dce7a46641e60646173607ea6cd574fed58cbfa5d81c4c7f1deabf863a3acd12bdfd3b59fd5fc853762d7320d57613e40d72407216cc3ae1d82f7744789
 SHA512 
50a6ac2cb26fd74b6e92e3691463ec707259fe27e37af2f2c68a9a1e0c247b789cdf17d5b1f882e02dbca5f0653a4137caab39f3f0380d0b5391efaf41f1312d
+DIST zenlib-1.4.0.tar.gz 14315 BLAKE2B 
76f9e8ed74a451837b27406c7bf0791b8d131de9d5b75ab1b47cca47c665a676c07e7779f92baf843396e9e61fdc706e6e7fc6ff4e06a52e19706df6cf94d0c1
 SHA512 
6326a95226fbbb126d72ecc2a9b4940615ae866a5586f2c8d795e12ff37e5c27d0ec62cda7fa398d1aa460acaa401fd7fb330677edc12b92c23933514a7eb79e

diff --git a/dev-python/zenlib/zenlib-1.4.0.ebuild 
b/dev-python/zenlib/zenlib-1.4.0.ebuild
new file mode 100644
index 00..f9a184c858
--- /dev/null
+++ b/dev-python/zenlib/zenlib-1.4.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+inherit distutils-r1
+
+DESCRIPTION="Useful python decorators and utilities"
+HOMEPAGE="https://github.com/desultory/zenlib;
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"



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

2023-12-31 Thread David Roman
commit: a998ad86b8a095638a16b0b182dc242ba137789b
Author: Julien Roy  jroy  ca>
AuthorDate: Sun Dec 31 17:52:54 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 17:52:54 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a998ad86

dev-python/minio: add 7.2.2

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

 dev-python/minio/Manifest   |  1 +
 dev-python/minio/minio-7.2.2.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/minio/Manifest b/dev-python/minio/Manifest
index 994a1180b0..3907c376b1 100644
--- a/dev-python/minio/Manifest
+++ b/dev-python/minio/Manifest
@@ -1 +1,2 @@
 DIST minio-7.2.0.tar.gz 125936 BLAKE2B 
b50ef2394dd797d070b979fa1d133fe85ca86a0ca13ea4fcbe249d5eb98a5046d864d3455cb7f07af3ded3bfbd4884da142c8a0e82502b19931468663e42af4a
 SHA512 
66daec47ef6adbd80ae89f54428bfa9d98a7cf40da48e847726d97c3d0e487268f19f7bd0f7e02dcb8dd1941344cabe33eede994e907cd45f230a8007cb3ae55
+DIST minio-7.2.2.tar.gz 133658 BLAKE2B 
f015ad496dd635875506ffe9cb0f02cb5cf2e0c4767cb94b3ea7632b612f926d400a71469eb2a8a9c3631f358fc481230197388d67f687c6694c28eb8ef25634
 SHA512 
1b1708a3432ce36023491060d9cb51c86725cc4d1746cbc9bf907a4691f0fb97783ef297d331fe8fc7d44f1e6d290a3779431738ddb7f60eaf42c337448c5b4b

diff --git a/dev-python/minio/minio-7.2.2.ebuild 
b/dev-python/minio/minio-7.2.2.ebuild
new file mode 100644
index 00..12af52562c
--- /dev/null
+++ b/dev-python/minio/minio-7.2.2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="MinIO Client SDK for Python"
+HOMEPAGE="https://github.com/minio/minio-py;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/certifi[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+"



[gentoo-commits] repo/proj/guru:master commit in: dev-libs/nativefiledialog-extended/

2023-12-31 Thread David Roman
commit: 6afc2668e00d870f5067f59faf5871ee2f47c7ba
Author: Benoît Dufour  mail  com>
AuthorDate: Sun Dec 31 18:25:38 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 18:32:26 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6afc2668

dev-libs/nativefiledialog-extended: Fix the 1.1.1 ebuild.

Signed-off-by: Benoît Dufour  mail.com>

 dev-libs/nativefiledialog-extended/Manifest  | 2 +-
 ...tended-1.1.1.ebuild => nativefiledialog-extended-1.1.1-r1.ebuild} | 5 +
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/dev-libs/nativefiledialog-extended/Manifest 
b/dev-libs/nativefiledialog-extended/Manifest
index 90e97b17ae..e6851a200b 100644
--- a/dev-libs/nativefiledialog-extended/Manifest
+++ b/dev-libs/nativefiledialog-extended/Manifest
@@ -1 +1 @@
-DIST nativefiledialog-extended-1.1.1.gh.tar.gz 400551 BLAKE2B 
3242bac8a8ec054853f9eac3cbbd09fd2389c1afa1c8bd314452b2d7b66b899c8fadd60f835e97bd7769457bed43bd3b684fdcb5b7480a3ca5ef6e5071fc9fd0
 SHA512 
049a19d39707476a609a6e22f70146df9e1533c5e93b349437d762673d6a1410777181fedff14ca6cf64e2c1e707c85f13d9101370aadbc79afd3795fac792a8
+DIST nativefiledialog-extended-1.1.1.tar.gz 413476 BLAKE2B 
188cbc37ebfaa56ace9409de12964828035f2936b414fae2be16a1a51a0d5140e11c46a23fb1b251e56b7003d6d5b1f84a3688793a3965175a1c753cce43c790
 SHA512 
2cdcf5563cadc53d22ac1e5741dd685b9763c3cd3bda70f36588db915c3272c4ee9ddfa27c09615b1b86c1aaf0711dfbf86b21eb4332eece43db80c33c38e090

diff --git 
a/dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1.ebuild 
b/dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1-r1.ebuild
similarity index 78%
rename from 
dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1.ebuild
rename to 
dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1-r1.ebuild
index 25ccf04688..e55168e015 100644
--- a/dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1.ebuild
+++ 
b/dev-libs/nativefiledialog-extended/nativefiledialog-extended-1.1.1-r1.ebuild
@@ -3,14 +3,11 @@
 
 EAPI=8
 
-COMMIT="322d1bc2a98c7b8236195d458643ac8e76391011"
-
 inherit cmake
 
 DESCRIPTION="File dialog library with C and C++ bindings, based on 
nativefiledialog"
 HOMEPAGE="https://github.com/btzy/nativefiledialog-extended;
-SRC_URI="https://github.com/btzy/nativefiledialog-extended/archive/${COMMIT}.tar.gz
 -> ${P}.gh.tar.gz"
-S="${WORKDIR}/${PN}-${COMMIT}"
+SRC_URI="https://github.com/btzy/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="ZLIB"
 SLOT="0/${PV}"



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

2023-12-31 Thread David Roman
commit: 233cce03e05d54eedb0d1f76db134fc406f4e050
Author: Julien Roy  jroy  ca>
AuthorDate: Sun Dec 31 17:51:52 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 17:51:52 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=233cce03

dev-python/minio: drop 7.1.17

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

 dev-python/minio/Manifest|  1 -
 dev-python/minio/minio-7.1.17.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/dev-python/minio/Manifest b/dev-python/minio/Manifest
index 05c98e66cc..994a1180b0 100644
--- a/dev-python/minio/Manifest
+++ b/dev-python/minio/Manifest
@@ -1,2 +1 @@
-DIST minio-7.1.17.tar.gz 120501 BLAKE2B 
8a3b56fc6f2aef9184a119e5fb84032ee1a98d811301359c7ee8745050bd3d8e9cdf587e2cbd525a3d5a9a1b9b8c38d7a98a2e87fb3975a1af5c487990a3
 SHA512 
76dcdc07ff285052d8f9c1525374096f7ba5b7bfa4b37da68ddc6e5f635c55137d49f660ccfad49f74082ad778d55ef1ec30b2075e3995455d055f47ff71bb98
 DIST minio-7.2.0.tar.gz 125936 BLAKE2B 
b50ef2394dd797d070b979fa1d133fe85ca86a0ca13ea4fcbe249d5eb98a5046d864d3455cb7f07af3ded3bfbd4884da142c8a0e82502b19931468663e42af4a
 SHA512 
66daec47ef6adbd80ae89f54428bfa9d98a7cf40da48e847726d97c3d0e487268f19f7bd0f7e02dcb8dd1941344cabe33eede994e907cd45f230a8007cb3ae55

diff --git a/dev-python/minio/minio-7.1.17.ebuild 
b/dev-python/minio/minio-7.1.17.ebuild
deleted file mode 100644
index 363b52e35d..00
--- a/dev-python/minio/minio-7.1.17.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="MinIO Client SDK for Python"
-HOMEPAGE="https://github.com/minio/minio-py;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-python/certifi[${PYTHON_USEDEP}]
-   dev-python/urllib3[${PYTHON_USEDEP}]
-"



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

2023-12-31 Thread David Roman
commit: 12dc435ad740e4ab79d77bd2393bf6b5c574e4bd
Author: Julien Roy  jroy  ca>
AuthorDate: Sun Dec 31 17:51:04 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 17:51:24 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=12dc435a

gui-apps/yambar: update Manifest

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

 gui-apps/yambar/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/yambar/Manifest b/gui-apps/yambar/Manifest
index d6591d..bd3bfa86de 100644
--- a/gui-apps/yambar/Manifest
+++ b/gui-apps/yambar/Manifest
@@ -1,2 +1,2 @@
-DIST yambar-1.10.0.tar.gz 190288 BLAKE2B 
35bfd50b27241724fa29f0ea6b1031dad793d1ff2c8342f5ed40bdc1fb390a32813d17b6c3063184109769a54fb5c5bce876a83974cdbb17679fd80a88d9d797
 SHA512 
c8d1e807017f62886cba65dab9933913f473eeeae8cbf8d44ddd4953754a55c81def9a02506b28a7ea7264325748db0a0ca4cdff39ba74a06f531e6e55878b35
-DIST yambar-1.9.0.tar.gz 186338 BLAKE2B 
9fd043aab241c75e84bcdffcfed51bd24d3a687ff80f4b44517168fc46a33934467fd8bf7a315076e15fc74e157f3bccf703ae2fd32ed969082c383570b0f3bd
 SHA512 
de1acf1e738b33e2e0ee1dba497b5b84137028551827c38eee67fdc5bfb688f2037a52ccac7f5fb56ffeed7382e4cd670fd0b564c7f532f21a85724640c8004b
+DIST yambar-1.10.0.tar.gz 190013 BLAKE2B 
430912e3b52efda50e1b0792336e1b89ce02421153245b4d390fb60d6a0856c66ed34c53b1ac0a4d14092219e30dd4477d1d5a59f19b4d8eff6d5febef344a79
 SHA512 
f7f6392a855bba2b940e050dbf4030652c883e003c1bd185bfad8ffd01d6d968e7cc25baf749efd0cc64e72713565c1c60ade1d161ac2d1177efb4ec201c1db0
+DIST yambar-1.9.0.tar.gz 186025 BLAKE2B 
346e452c0822966b5e65a892ce7ab1e2e7f59da20b4267285896675352815a22c4cafffed53e157dfb4dbbf1a72f466018dcbd5ca81f08abd513f7ae8bb955a0
 SHA512 
d19cebb89b47652af8670c575338ed290a001b554b506ee527a609b6a6b22e8679df91237e6f42f28382b85297294bec6ee381cce17122878c26967323038653



[gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/

2023-12-31 Thread David Roman
commit: 5b9feacb87175fafdbf6c7302287c73b6bce4bf9
Author: Moritz Brunner  posteo  de>
AuthorDate: Sun Dec 31 18:14:11 2023 +
Commit: David Roman  gmail  com>
CommitDate: Sun Dec 31 18:24:20 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b9feacb

dev-python/python-lsp-isort: new package, add 0.1

Signed-off-by: Moritz Brunner  posteo.de>

 dev-python/python-lsp-isort/Manifest   |  1 +
 dev-python/python-lsp-isort/metadata.xml   | 13 
 .../python-lsp-isort/python-lsp-isort-0.1.ebuild   | 35 ++
 3 files changed, 49 insertions(+)

diff --git a/dev-python/python-lsp-isort/Manifest 
b/dev-python/python-lsp-isort/Manifest
new file mode 100644
index 00..ae4c07768c
--- /dev/null
+++ b/dev-python/python-lsp-isort/Manifest
@@ -0,0 +1 @@
+DIST python-lsp-isort-0.1.gh.tar.gz 5065 BLAKE2B 
385807fde3bbbfd73d7fdefb721375490be592203aac41bcb2e0a56ee5588f66a78c7e2f6b14458c2836987abb1607670935d12127caedb2ddd3b9e67b87b547
 SHA512 
fd2575e27c5a32c7a8dfabc8777ae9ce82a0c1fe9a46fe64341becbe60e8d37d07736950b986df307e608a777825fd51cbb1345b7163944e19086ab69985a472

diff --git a/dev-python/python-lsp-isort/metadata.xml 
b/dev-python/python-lsp-isort/metadata.xml
new file mode 100644
index 00..339401237c
--- /dev/null
+++ b/dev-python/python-lsp-isort/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   Moritz Brunner
+   moritz.brunner+gen...@posteo.de
+   
+   
+   
+   python-lsp-isort
+   chantera/python-lsp-isort
+   
+

diff --git a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild 
b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
new file mode 100644
index 00..3eec423be9
--- /dev/null
+++ b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+MY_PV="0.1"
+
+inherit distutils-r1
+
+DESCRIPTION="isort plugin for the Python LSP Server"
+HOMEPAGE="
+   https://github.com/chantera/python-lsp-isort
+   https://pypi.org/project/python-lsp-isort/
+"
+SRC_URI="
+   https://github.com/chantera/${PN}/archive/refs/tags/v${MY_PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+BDEPEND="
+   >=dev-python/isort-5.0[${PYTHON_USEDEP}]
+"
+RDEPEND="
+   dev-python/python-lsp-server[${PYTHON_USEDEP}]
+   ${BDEPEND}
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/yazi/

2023-12-31 Thread Joe Kappus
commit: b5b21960c1d3b4dd0f8d5849b02302d3190f77c9
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 03:26:24 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 03:26:24 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b5b21960

app-misc/yazi: add 0.1.5

Signed-off-by: Joe Kappus  wt.gd>

 app-misc/yazi/yazi-0.1.5.ebuild | 297 
 1 file changed, 297 insertions(+)

diff --git a/app-misc/yazi/yazi-0.1.5.ebuild b/app-misc/yazi/yazi-0.1.5.ebuild
new file mode 100644
index 00..bd07c46a9c
--- /dev/null
+++ b/app-misc/yazi/yazi-0.1.5.ebuild
@@ -0,0 +1,297 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES="
+   addr2line@0.21.0
+   adler@1.0.2
+   aho-corasick@1.1.1
+   android-tzdata@0.1.1
+   android_system_properties@0.1.5
+   ansi-to-tui@3.1.0
+   anstream@0.6.4
+   anstyle@1.0.4
+   anstyle-parse@0.2.2
+   anstyle-query@1.0.0
+   anstyle-wincon@3.0.1
+   anyhow@1.0.75
+   async-channel@1.9.0
+   autocfg@1.1.0
+   backtrace@0.3.69
+   base64@0.21.4
+   bincode@1.3.3
+   bit_field@0.10.2
+   bitflags@1.3.2
+   bitflags@2.4.0
+   block-buffer@0.10.4
+   bstr@1.6.2
+   bumpalo@3.14.0
+   bytemuck@1.14.0
+   byteorder@1.5.0
+   bytes@1.5.0
+   cassowary@0.3.0
+   cc@1.0.83
+   cfg-if@1.0.0
+   chrono@0.4.31
+   clap@4.4.6
+   clap_builder@4.4.6
+   clap_complete@4.4.3
+   clap_complete_fig@4.4.1
+   clap_complete_nushell@4.4.1
+   clap_derive@4.4.2
+   clap_lex@0.5.1
+   clipboard-win@4.5.0
+   color_quant@1.1.0
+   colorchoice@1.0.0
+   concurrent-queue@2.3.0
+   core-foundation-sys@0.8.4
+   crc32fast@1.3.2
+   crossbeam-channel@0.5.8
+   crossbeam-deque@0.8.3
+   crossbeam-epoch@0.9.15
+   crossbeam-utils@0.8.16
+   crossterm@0.27.0
+   crossterm_winapi@0.9.1
+   crunchy@0.2.2
+   crypto-common@0.1.6
+   deranged@0.3.8
+   digest@0.10.7
+   dirs@5.0.1
+   dirs-sys@0.4.1
+   either@1.9.0
+   equivalent@1.0.1
+   erased-serde@0.3.31
+   error-code@2.3.1
+   event-listener@2.5.3
+   exr@1.71.0
+   fdeflate@0.3.0
+   filetime@0.2.22
+   flate2@1.0.27
+   flume@0.11.0
+   fnv@1.0.7
+   form_urlencoded@1.2.0
+   fsevent-sys@4.1.0
+   futures@0.3.28
+   futures-channel@0.3.28
+   futures-core@0.3.28
+   futures-executor@0.3.28
+   futures-io@0.3.28
+   futures-macro@0.3.28
+   futures-sink@0.3.28
+   futures-task@0.3.28
+   futures-util@0.3.28
+   generic-array@0.14.7
+   getrandom@0.2.10
+   gif@0.12.0
+   gimli@0.28.0
+   glob@0.3.1
+   half@2.2.1
+   hashbrown@0.12.3
+   hashbrown@0.14.1
+   heck@0.4.1
+   hermit-abi@0.3.3
+   iana-time-zone@0.1.57
+   iana-time-zone-haiku@0.1.2
+   idna@0.4.0
+   if_chain@1.0.2
+   image@0.24.7
+   indexmap@1.9.3
+   indexmap@2.0.2
+   indoc@2.0.4
+   inotify@0.9.6
+   inotify-sys@0.1.5
+   itertools@0.11.0
+   itoa@1.0.9
+   jpeg-decoder@0.3.0
+   js-sys@0.3.64
+   kqueue@1.0.8
+   kqueue-sys@1.0.4
+   lazy_static@1.4.0
+   lebe@0.5.2
+   libc@0.2.149
+   line-wrap@0.1.1
+   linked-hash-map@0.5.6
+   lock_api@0.4.10
+   log@0.4.20
+   lua-src@546.0.1
+   luajit-src@210.4.8+resty107baaf
+   malloc_buf@0.0.6
+   md-5@0.10.6
+   memchr@2.6.4
+   memoffset@0.9.0
+   minimal-lexical@0.2.1
+   miniz_oxide@0.7.1
+   mio@0.8.8
+   mlua@0.9.1
+   mlua-sys@0.3.2
+   nom@7.1.3
+   notify@6.1.1
+   nu-ansi-term@0.46.0
+   num-integer@0.1.45
+   num-rational@0.4.1
+   num-traits@0.2.17
+   num_cpus@1.16.0
+   objc@0.2.7
+   object@0.32.1
+   once_cell@1.18.0
+   onig@6.4.0
+   onig_sys@69.8.1
+   option-ext@0.2.0
+   ordered-float@2.10.0
+   overload@0.1.1
+   parking_lot@0.12.1
+   parking_lot_core@0.9.8
+   paste@1.0.14
+   percent-encoding@2.3.0
+   pin-project-lite@0.2.13
+   pin-utils@0.1.0
+   pkg-config@0.3.27
+   plist@1.5.0
+   png@0.17.10
+   proc-macro-error@1.0.4
+   proc-macro-error-attr@1.0.4
+   proc-macro2@1.0.69
+   qoi@0.4.1
+   quick-xml@0.29.0
+   quote@1.0.33
+   ratatui@0.23.0
+   rayon@1.8.0
+   rayon-core@1.12.0
+   redox_syscall@0.2.16
+   redox_syscall@0.3.5
+   redox_users@0.4.3
+   regex@1.9.6
+   regex-automata@0.3.9
+   regex-syntax@0.7.5
+   rustc-demangle@0.1.23
+   rustc-hash@1.1.0
+   rustversion@1.0.14
+   ryu@1.0.15
+   safemem@0.3.3
+   same-file@1.0.6
+   scopeguard@1.2.0
+   serde@1.0.188
+   serde-value@0.7.0
+   

[gentoo-commits] repo/proj/guru:dev commit in: app-misc/yazi/

2023-12-31 Thread Joe Kappus
commit: dad76fa354d2051654def00d611536056ba2fecf
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 03:22:28 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 03:22:28 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dad76fa3

app-misc/yazi: update HOMEPAGE

Signed-off-by: Joe Kappus  wt.gd>

 app-misc/yazi/Manifest  | 64 +
 app-misc/yazi/yazi-0.1.4.ebuild |  2 +-
 2 files changed, 65 insertions(+), 1 deletion(-)

diff --git a/app-misc/yazi/Manifest b/app-misc/yazi/Manifest
index 6f8cb6d85f..8766b5af62 100644
--- a/app-misc/yazi/Manifest
+++ b/app-misc/yazi/Manifest
@@ -1,40 +1,58 @@
 DIST addr2line-0.21.0.crate 40807 BLAKE2B 
9796b9a1177a299797902b7f64247d81d63d3f7e0dcc1256990628e84c5f92e3094ee8d753d9b72187b9aaa73b7ca67c0217899f2226ebd1076f8d25b458475b
 SHA512 
afde7660dda30dee240e79df1fb5b92d4572520bf17a134ef3765e2a077af9e13713952d52e27fae420109b40f6e24dbce1056687dbcbead858ffc21cc7dc69b
 DIST adler-1.0.2.crate 12778 BLAKE2B 
a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd
 SHA512 
7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
 DIST aho-corasick-1.0.5.crate 172064 BLAKE2B 
bab7767070b959e8e4c054bf505b9423d7fc8b02dc682b559f54db986abe72ddf83a069b4bb585d71b47de92d2fce66a1c151a0d29c4aae99378ca05c3d5eb50
 SHA512 
6b0a64dbfe0c166341a34cd169bc46d28e40f72db4d599a1aff5327a6e891408f39e8e92e983cf9396a8e8135f93e41550237ff3e5c8c05a5325688746fd814b
+DIST aho-corasick-1.1.1.crate 182812 BLAKE2B 
df74c2cfa0ae392a8d466e370ba761c4cd37c65773affba9a3cdcf7f5797b34b4a25e1646be3de5081644b34db2dce273609edb4f18a1ce7fdbf31ac28a10b88
 SHA512 
a894e1cefbb63a3b7b78a3676874d0b7a507c27970f48cdfbda1e5deefbf6b20ed4271b660a12eea77b318cd2fa0f80850a0b1ddfe0d0731ffa326c0fc295692
 DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 
4385a4875aadaacd5284a9ca7d1bf8a7bf14bf8925d1563d52fbabacc3af2c1ea08bfcf77106f3648f4fa052ac295158a21e7a0131d31eb9aecd99ea4ba20055
 SHA512 
4294024c21ddd0090c42c8eedf708d40d917f55ad5a4cb7aa3e64cfb6551b6df60f2e36bc08620c1d2fc8c7ba7207411518ee5c8635f60ed8ad9efdd458a2077
 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 
86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e
 SHA512 
b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
 DIST ansi-to-tui-3.1.0.crate 13075 BLAKE2B 
c9657001bd7c1e4006ae3263adb06b2cf399b060164d2d11da36485c192c87526716a16d5c0b19489af214640558d7cee35f9a365f2ca2cb6f33b8e3a8ab976e
 SHA512 
0438790fe76f80ceb4ba7724768fece81c32aa93dc3bf04fb735ef48a944e8d8381ca572a53976149db40f9c664a0955ef5f88637fcc9d2cbdefe3ece8aef706
 DIST anstream-0.5.0.crate 19646 BLAKE2B 
770dc99092e1c48ad5c1658e83abff3b8c9e0915e360048bfe0fe04faf61991e01e88ca4adca23533bf11fe078066e351778661128d69381756688341022f29d
 SHA512 
8e285cc8f92708cf9482e7b4dc84dd891e5ec0bd8c57894c6bb368eede1127b7b903adb4c40b37287e3644535cc60c92662951c2c8fb5b92e10f49ff5374d359
+DIST anstream-0.6.4.crate 20593 BLAKE2B 
2b617c45d351e01222fc50f52551e57b4a8b0ecf84c6ddf44336c7c9d3b9dde15232b1c4f664d567849295bf8f03612b73ded56f1b3937392eb7718f1e0446c3
 SHA512 
0b983d626c53d1edc184f04cbd2c004eb9c40d14486b23cce86ebf50cbd3d916d32cb0423ae1d67c2b83b966690090af740538538ef846c0b126c686a1ebe159
 DIST anstyle-1.0.2.crate 13983 BLAKE2B 
4274b101d1cab2b62f9bb7637dab35f4b16e8c08a080355a2ea53e2b7b353ff230aa77fb3a244e0d6ff0dcd27abe5895eb306c630aa0822d0c608f041d4abfea
 SHA512 
09220abfc844192ca698589897845752e02666b4ecd6529af4cde9f260ef36694e6e631c7503fc0e438ac72c88c419043b78399385cb248e789e86404503935a
+DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
 DIST anstyle-parse-0.2.1.crate 24802 BLAKE2B 
6304a56c6a9fbaf1bb4d1d177b2315684345dc9d71c35836f9544145364f8d6eb56e25c03076690c594ab7db5914501acb569f6c136952e59c93179ced527fb2
 SHA512 
5c8fc7d88ffc3a6e78340ffe0f3c2d72e865512030ade4509de9c673eba955c536bb1873dac11f6ba11cc8367fb30c67451ed65d19f81507c9e917c702bfd176
+DIST anstyle-parse-0.2.2.crate 24696 BLAKE2B 
979daa24ccc3ea484445216bddc190f148f0ad83b95c997c1becbadfb641b67834980c413bcf5b7ddc2c6883d5e071a9636fbb44f79680ac42f8b73a797e466a
 SHA512 
28039806f87c2bd8266cea834975939b79fdf0cc95a029654806655c0662520aa497d84eefadcd9edce204986e60b62678e76a09cdb38bcc50c91e9d05c4bee9
 DIST anstyle-query-1.0.0.crate 8620 BLAKE2B 
2d296b5066fd6284a2410923215571e6df650c5ef892d6de7a7088a0996ca30608797feabc84f3c325ff4d07001dac80ac5067d2a9c9d15d9ba59a276b399f53
 SHA512 

[gentoo-commits] repo/proj/guru:dev commit in: www-client/yandex-browser/

2023-12-31 Thread Joe Kappus
commit: 3596a407c58116be81f9261414785b4d0d08d5c0
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:45:57 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 02:45:57 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3596a407

www-client/yandex-browser: add 23.11.1.714_p1, drop 23.9.1.962_p1

Signed-off-by: Joe Kappus  wt.gd>

 www-client/yandex-browser/Manifest  | 2 +-
 ...rowser-23.9.1.962_p1.ebuild => yandex-browser-23.11.1.714_p1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/yandex-browser/Manifest 
b/www-client/yandex-browser/Manifest
index aa310c172f..09f5df6314 100644
--- a/www-client/yandex-browser/Manifest
+++ b/www-client/yandex-browser/Manifest
@@ -1 +1 @@
-DIST yandex-browser-23.9.1.962_p1.deb 158802680 BLAKE2B 
ab76c07182fc8ff253b57cffcee9dec6d2f5e5454a1b96b06235228e5ded9248a3351bc201bddb0c0ac629c1d56cca7bf1a584991d7413bb6454c1f5d313ebe8
 SHA512 
5da7616fea48d0ed1b1ee7e5530c69511c7303664fbf16e9ea85f7a155c87a92feea8e8f1d41659de00986e7c4a47939b56684fdc41febd4111a7764bdc94081
+DIST yandex-browser-23.11.1.714_p1.deb 154275256 BLAKE2B 
6e10db229b03525d0ae7d7877a9e5c64d2870bef79678bac12514fd1d681f063bb63e901cb321ab99b03cedb1dc0268fc9551e02da9e85d83058713744c7
 SHA512 
87fcce39c071d5991211d778810b20c4a5d59d66642edf7dd90d537e1f13cccb340e5a30c78caa2cb7093244a0db8f778fd2da121140a490f1ac426d39b3927e

diff --git a/www-client/yandex-browser/yandex-browser-23.9.1.962_p1.ebuild 
b/www-client/yandex-browser/yandex-browser-23.11.1.714_p1.ebuild
similarity index 100%
rename from www-client/yandex-browser/yandex-browser-23.9.1.962_p1.ebuild
rename to www-client/yandex-browser/yandex-browser-23.11.1.714_p1.ebuild



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

2023-12-31 Thread Joe Kappus
commit: 6e8da14109a8752dc84df84f59877d1b112dcffb
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:41:18 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 02:41:18 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e8da141

gui-apps/wlr-randr: update upstream metadata

Signed-off-by: Joe Kappus  wt.gd>

 gui-apps/wlr-randr/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wlr-randr/metadata.xml b/gui-apps/wlr-randr/metadata.xml
index db49d87d2a..7e5130f685 100644
--- a/gui-apps/wlr-randr/metadata.xml
+++ b/gui-apps/wlr-randr/metadata.xml
@@ -6,6 +6,6 @@
Aisha Tammy


-   emersion/wlr-randr
+   ~emersion/wlr-randr

 



[gentoo-commits] repo/proj/guru:dev commit in: app-editors/typora-bin/

2023-12-31 Thread Joe Kappus
commit: daeb25cfb2ca8e05b854dafe1ae35f730aa1fc0f
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:37:48 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 02:37:48 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=daeb25cf

app-editors/typora-bin: add 1.7.6, drop 1.5.8

Signed-off-by: Joe Kappus  wt.gd>

 app-editors/typora-bin/Manifest   | 4 ++--
 .../typora-bin/{typora-bin-1.5.8.ebuild => typora-bin-1.7.6.ebuild}   | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/typora-bin/Manifest b/app-editors/typora-bin/Manifest
index 20e6ce0948..e31700b3ab 100644
--- a/app-editors/typora-bin/Manifest
+++ b/app-editors/typora-bin/Manifest
@@ -1,2 +1,2 @@
-DIST typora_1.5.8_amd64.deb 85330472 BLAKE2B 
bbcbb4c8edda85351adcc37518e30e242f39973649155187afeaf05cac0192292767f54732f38a40a5474d21c93aa75c166c03ef13860b42d7558c967a8b43f2
 SHA512 
ceb62393913c5b51486d4867c914d43d9ebe2bd4cb9e6c67f83ca20d816594e968d648c97811ab4f4238acdc21c5cf9b95fa82084e3e33d0a3978dc0974b6e7e
-DIST typora_1.5.8_arm64.deb 75802376 BLAKE2B 
36b570b596436a231fdc5d63f95496b8e7a18f0950c299553f624ebdf66ef58c01ca4fae2753248b643375b2553851639d1dc15ce11cd276af382514dc38759e
 SHA512 
7435e2d52a835abf7c349ccc9cf343a40e49bc966692dd6953d49fc8d31c5a9f464bd6b48067d691af2b57cb093a5ed4543097d85912a8b73dbc0d9029aef14d
+DIST typora_1.7.6_amd64.deb 88633700 BLAKE2B 
7ff19cc01a93b1175d79cc68cc496af2932ff7136ad9b9e92d04ed98161a9540f6cb86c9218ee21fc88bd39b9e3d764ca99a09140bdffdb4f55b7599d1252b64
 SHA512 
9c23de69be1dfd35ab9553f7d2c6e18b2a7b18ef44930fe986ca87063a96d9b5bfe2e58447f2b5625ab66e19a78053631ef0bf673e5c7935e808b2d27b093f5a
+DIST typora_1.7.6_arm64.deb 79230784 BLAKE2B 
3679b4c0a528daa15bea555904a3e0bccfc52702f85af3b0064bcdcbfd3f25adaa68045411dbf2652eb1067fdd0c5ba4e644565fa7cd1b47aaa8b476ee2eeb5e
 SHA512 
30055c886cda45464bdb1cd1a3782315975fbaf77247e9a273c09791f13a0b0f1cbb27b99031303f6649f584fe3db6560df8b8d3a7fbab7efefa5fdd94d1

diff --git a/app-editors/typora-bin/typora-bin-1.5.8.ebuild 
b/app-editors/typora-bin/typora-bin-1.7.6.ebuild
similarity index 100%
rename from app-editors/typora-bin/typora-bin-1.5.8.ebuild
rename to app-editors/typora-bin/typora-bin-1.7.6.ebuild



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

2023-12-31 Thread Joe Kappus
commit: a2750d6ce6db4e21de41725c7ea5b49017def5f0
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:29:22 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 02:29:22 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2750d6c

net-vpn/mullvadvpn-app: update upstream metadata

Signed-off-by: Joe Kappus  wt.gd>

 net-vpn/mullvadvpn-app/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/mullvadvpn-app/metadata.xml 
b/net-vpn/mullvadvpn-app/metadata.xml
index b2cd3596d1..c16f1c4d20 100644
--- a/net-vpn/mullvadvpn-app/metadata.xml
+++ b/net-vpn/mullvadvpn-app/metadata.xml
@@ -6,6 +6,6 @@
David Roman


-   mullvad/mullvad-app 
+   mullvad/mullvadvpn-app 

 



[gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/ugrd/

2023-12-31 Thread Joe Kappus
commit: 71fd0818723a2deb2fc8f79671e0dd9407f0e961
Author: Joe Kappus  wt  gd>
AuthorDate: Mon Jan  1 02:23:09 2024 +
Commit: Joe Kappus  wt  gd>
CommitDate: Mon Jan  1 02:23:09 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71fd0818

sys-kernel/ugrd: update Manifest

Signed-off-by: Joe Kappus  wt.gd>

 sys-kernel/ugrd/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest
index 8a81e522d0..245365456c 100644
--- a/sys-kernel/ugrd/Manifest
+++ b/sys-kernel/ugrd/Manifest
@@ -1,3 +1,3 @@
 DIST ugrd-0.12.1.tar.gz 39929 BLAKE2B 
d4d2788c0d23907b87ea6c98607f3d36e25c895618668123089c2cb96dc8895be411c7c5865522b58a53a90c51e77f874ee13324c5602bceb325bb680dccf63b
 SHA512 
3dec60f8535bb63525a0da07583d35c539de27e0d4ab2c79c033ce49a1b745b262a245e58224f5fabb1450af76d750578e47d60eb0961ac842eaed6e5f212c7d
 DIST ugrd-0.19.1.tar.gz 44713 BLAKE2B 
e22d8c6df5cffb6c903badf6b45f693a319215791d2fae6d45e163a1a191823130b4a1bdb541a20760154796e16f5e6e0bb10ce47f4d5c59279a71f37bc53362
 SHA512 
56383aca3bd52a734ae35ae51aec0aa12d849484466d58832324dc441fed3e955085119ba44d3248948033167e163be5d747fa27c71c999e78e7fa6357853e25
-DIST ugrd-0.19.2.tar.gz 44628 BLAKE2B 
e9020f65a6cc51ea7ad205d16cd6360eb74bf21b82a0f0df1f33a89eb39b0a4dcaba7b6c9f4c61124e6ae947d2c93062219081c0ebfb398327abbf1b099dbc7d
 SHA512 
4e1ebaf4d361d7f0cf75679e7857ef3fe4a3aaf78a5ed2117547ea32c90773645337f0604f23f13c33f248cb55cabfaaf4a2dad1e234822eb3967bafe103fca9
+DIST ugrd-0.19.3.tar.gz 44629 BLAKE2B 
4c319cfe745640ff7ced5eb161498b3cd6250434d7b56e909a74b1a133910039ec81a399d55f6408b5b33f88a94fb41a54dd18d97443d00e73730a36802b635f
 SHA512 
4cedc043d3e7ac616d263e4d467d1b825a5c425f7682f1ab531a84dfd17c49f99398226fc9ee39044591dcbc6d3308d01f1ffa6734e552945d1096bf1bff2923



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

2023-12-31 Thread Sam James
commit: ed7efdde467bc364ea1e0de15136bbd500724faf
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 02:19:45 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 02:19:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7efdde

sys-libs/musl: fix comment typo

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

 sys-libs/musl/musl-1.2.3-r7.ebuild | 4 ++--
 sys-libs/musl/musl-1.2.3-r8.ebuild | 4 ++--
 sys-libs/musl/musl-1.2.4-r1.ebuild | 4 ++--
 sys-libs/musl/musl-.ebuild | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-libs/musl/musl-1.2.3-r7.ebuild 
b/sys-libs/musl/musl-1.2.3-r7.ebuild
index a201a7574d4a..c4e516a10a1a 100644
--- a/sys-libs/musl/musl-1.2.3-r7.ebuild
+++ b/sys-libs/musl/musl-1.2.3-r7.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=7
@@ -167,7 +167,7 @@ src_install() {
rm -f "${ED}"/lib/ld-musl-${arch}.so.1 || die
dosym8 -r /usr/lib/libc.so /lib/ld-musl-${arch}.so.1
 
-   # If it's still a dead symlnk, OK, we really do need to abort.
+   # If it's still a dead symlink, OK, we really do need to abort.
[[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
 
cp "${FILESDIR}"/ldconfig.in-r3 "${T}"/ldconfig.in || die

diff --git a/sys-libs/musl/musl-1.2.3-r8.ebuild 
b/sys-libs/musl/musl-1.2.3-r8.ebuild
index e50192bdc1fb..cda9968c6cc1 100644
--- a/sys-libs/musl/musl-1.2.3-r8.ebuild
+++ b/sys-libs/musl/musl-1.2.3-r8.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=7
@@ -167,7 +167,7 @@ src_install() {
rm "${ED}"/lib/ld-musl-${arch}.so.1 || die
if use split-usr; then
dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1
-   # If it's still a dead symlnk, OK, we really do need to 
abort.
+   # If it's still a dead symlink, OK, we really do need 
to abort.
[[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
else
dosym libc.so /usr/lib/ld-musl-${arch}.so.1

diff --git a/sys-libs/musl/musl-1.2.4-r1.ebuild 
b/sys-libs/musl/musl-1.2.4-r1.ebuild
index 1d1973c35acc..2b3a3c526c33 100644
--- a/sys-libs/musl/musl-1.2.4-r1.ebuild
+++ b/sys-libs/musl/musl-1.2.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -159,7 +159,7 @@ src_install() {
rm "${ED}"/lib/ld-musl-${arch}.so.1 || die
if use split-usr; then
dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1
-   # If it's still a dead symlnk, OK, we really do need to 
abort.
+   # If it's still a dead symlink, OK, we really do need 
to abort.
[[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
else
dosym libc.so /usr/lib/ld-musl-${arch}.so.1

diff --git a/sys-libs/musl/musl-.ebuild b/sys-libs/musl/musl-.ebuild
index 2908fbd17541..6034c89cca3e 100644
--- a/sys-libs/musl/musl-.ebuild
+++ b/sys-libs/musl/musl-.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
@@ -155,7 +155,7 @@ src_install() {
rm "${ED}"/lib/ld-musl-${arch}.so.1 || die
if use split-usr; then
dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1
-   # If it's still a dead symlnk, OK, we really do need to 
abort.
+   # If it's still a dead symlink, OK, we really do need 
to abort.
[[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
else
dosym libc.so /usr/lib/ld-musl-${arch}.so.1



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/zen-logging/

2023-12-31 Thread George Zenner
commit: 5a9809724c7806668054f6e7371608534f17fde8
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 01:59:31 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 01:59:31 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5a980972

dev-python/zen-logging: Remove

Signed-off-by: Zen  pyl.onl>

 dev-python/zen-logging/Manifest |  1 -
 dev-python/zen-logging/metadata.xml | 11 ---
 dev-python/zen-logging/zen-logging-1.1.0.ebuild | 16 
 3 files changed, 28 deletions(-)

diff --git a/dev-python/zen-logging/Manifest b/dev-python/zen-logging/Manifest
deleted file mode 100644
index 564edcccab..00
--- a/dev-python/zen-logging/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zen-logging-1.1.0.tar.gz 9798 BLAKE2B 
3a97b934e8c35bce0c3fbf720b776e0c563f2b06e57c29a6ffbb58786ed6e8ffc39da7ab2db3196affbc43029f14ff0b55c4647aa7fbe1f03f7a1b54accf4c59
 SHA512 
febdc2fe9cf2d44f9c2547b0eb3d79aef097e9c191a5118031e330210bc092c0c6b4242eeaa0f27f6b2181d3689bd4369b1ac4c28629c2554038766690204822

diff --git a/dev-python/zen-logging/metadata.xml 
b/dev-python/zen-logging/metadata.xml
deleted file mode 100644
index 248b2b4feb..00
--- a/dev-python/zen-logging/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   d...@pyl.onl
-   Zen
-   
-   
-   desultory/zen-logging
-   
-

diff --git a/dev-python/zen-logging/zen-logging-1.1.0.ebuild 
b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
deleted file mode 100644
index 058a94d25c..00
--- a/dev-python/zen-logging/zen-logging-1.1.0.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1
-
-DESCRIPTION="Python logging helpers"
-HOMEPAGE="https://github.com/desultory/zen_logging;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/zen-util/

2023-12-31 Thread George Zenner
commit: 4121fdf4597a1657d8b61e47ac3acac9d28cd3b7
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 01:59:57 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 01:59:57 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4121fdf4

dev-python/zen-util: Remove

Signed-off-by: Zen  pyl.onl>

 dev-python/zen-util/Manifest  |  1 -
 dev-python/zen-util/metadata.xml  | 11 ---
 dev-python/zen-util/zen-util-1.0.1.ebuild | 18 --
 3 files changed, 30 deletions(-)

diff --git a/dev-python/zen-util/Manifest b/dev-python/zen-util/Manifest
deleted file mode 100644
index 6883e71eba..00
--- a/dev-python/zen-util/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zen-util-1.0.1.tar.gz 11025 BLAKE2B 
0e47e9a62a4f0f2e573e16a11956ee20505d5618c7e2c47b5699d699a6e920f23f935122de9b0fd5128a070a99758f9b40aa9df39190805ca609814a26b8a4b8
 SHA512 
88110ab041255def72364e5dfc95818b250b8f52a0d7505a7023b8a3a418247f38707f6c9d0858ae492976969c78bc8a292545c28d22721c8c5b2cce7c90d68c

diff --git a/dev-python/zen-util/metadata.xml b/dev-python/zen-util/metadata.xml
deleted file mode 100644
index ec9806d004..00
--- a/dev-python/zen-util/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   d...@pyl.onl
-   Zen
-   
-   
-   desultory/zen-util
-   
-

diff --git a/dev-python/zen-util/zen-util-1.0.1.ebuild 
b/dev-python/zen-util/zen-util-1.0.1.ebuild
deleted file mode 100644
index 6c4a9a590d..00
--- a/dev-python/zen-util/zen-util-1.0.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1
-
-DESCRIPTION="Python logging helpers"
-HOMEPAGE="https://github.com/desultory/zen_logging;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=dev-python/zen-logging-1.1.0"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pycpio/

2023-12-31 Thread George Zenner
commit: e37e098252155139b3c2497964064438a82e85e5
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:05:08 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 02:05:08 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e37e0982

dev-python/pycpio: Bump to 0.8.0, use [${PYTHON_USEDEP}]

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/{pycpio-0.7.3.ebuild => pycpio-0.8.0.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/pycpio/pycpio-0.7.3.ebuild 
b/dev-python/pycpio/pycpio-0.8.0.ebuild
similarity index 85%
rename from dev-python/pycpio/pycpio-0.7.3.ebuild
rename to dev-python/pycpio/pycpio-0.8.0.ebuild
index a36203e9fa..d4dfebe419 100644
--- a/dev-python/pycpio/pycpio-0.7.3.ebuild
+++ b/dev-python/pycpio/pycpio-0.8.0.ebuild
@@ -15,5 +15,4 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DEPEND=">=dev-python/zen-logging-1.1.0
->=dev-python/zen-util-1.0.1"
+DEPEND=">=dev-python/zenlib-1.4.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pycpio/, sys-kernel/ugrd/

2023-12-31 Thread George Zenner
commit: 40847bdbd053cbc49ba9af723029281de17e818d
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:11:15 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 02:11:15 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40847bdb

dev-python/cpio: Update manifest (remove old ugrd version)

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/Manifest |  2 +-
 sys-kernel/ugrd/ugrd-0.19.2.ebuild | 44 --
 2 files changed, 1 insertion(+), 45 deletions(-)

diff --git a/dev-python/pycpio/Manifest b/dev-python/pycpio/Manifest
index b5aa717b6d..0ba414b534 100644
--- a/dev-python/pycpio/Manifest
+++ b/dev-python/pycpio/Manifest
@@ -1 +1 @@
-DIST pycpio-0.7.3.tar.gz 17991 BLAKE2B 
92b6ae62dd1d81b9c87423e417ef24989df6340b22cf1686a7718dd164c2ed4193b65fd2be55bb17d86500fefec9e2a81efd2c518943bca6d6225e819c30cf86
 SHA512 
509294f8f0688cd3c9b82790bbf23627a3aeb045ecb7f2371fbaae10c6d9ae98a7965d25e19f8ef3d230faeddb5fad82b8305876fb144122f2bd6c46b4fe19f0
+DIST pycpio-0.8.0.tar.gz 17988 BLAKE2B 
101aa0d533e1a1b00eda7f6286a5f4c9b97248625adce3377a6ef6510a6bc3f2a4e24c70a6b967e135270c3bae91419d20a2952464f22f8596cc2fefacf7
 SHA512 
d1c8519e1dc6e2663e55a2e9f6e8d90670cca5f47a58a8838f1ed9ec1bb7fb002db98b04b8d083475fc61b52f05e6a5a9d21435f06a6f627550b292d2eeea846

diff --git a/sys-kernel/ugrd/ugrd-0.19.2.ebuild 
b/sys-kernel/ugrd/ugrd-0.19.2.ebuild
deleted file mode 100644
index 871bdbc645..00
--- a/sys-kernel/ugrd/ugrd-0.19.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..12} )
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Python based initramfs generator with TOML defintions"
-HOMEPAGE="https://github.com/desultory/ugrd;
-SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="app-misc/pax-utils"
-DEPEND=">=dev-python/zen-logging-1.1.0
->=dev-python/zen-util-1.0.1
->=dev-python/pycpio-0.7.3
-sys-apps/pciutils"
-
-src_install() {
-   # Call the distutils-r1_src_install function to install the package
-   distutils-r1_src_install
-   # Create the ugrd config directory
-   keepdir /etc/ugrd
-   # Install the example config into /etc/ugrd/config.toml
-   # Do not overwrite an existing config
-   insinto /etc/ugrd
-   newins examples/example.toml config.toml
-   # Create the kernel preinst.d directory if it doesn't exist
-   # Install the kernel preinst.d hook
-   keepdir /etc/kernel/preinst.d
-   exeinto /etc/kernel/preinst.d
-   doexe hooks/51-ugrd.install
-}
-
-pkg_postinst() {
-   optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup
-   optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs
-   optfeature "ugrd.crypto.gpg support" app-crypt/gnupg
-}



[gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/ugrd/

2023-12-31 Thread George Zenner
commit: 64fcbc014b878e1f118a101dfd6df7d121c2cbaa
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:12:25 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 02:12:25 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64fcbc01

sys-kernel/ugrd: Add 0.19.3, add [${PYTHON_USEDEP}]

Signed-off-by: Zen  pyl.onl>

 sys-kernel/ugrd/ugrd-0.19.3.ebuild | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/sys-kernel/ugrd/ugrd-0.19.3.ebuild 
b/sys-kernel/ugrd/ugrd-0.19.3.ebuild
new file mode 100644
index 00..e3c323ba2d
--- /dev/null
+++ b/sys-kernel/ugrd/ugrd-0.19.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Python based initramfs generator with TOML defintions"
+HOMEPAGE="https://github.com/desultory/ugrd;
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="app-misc/pax-utils"
+DEPEND=">=dev-python/zenlib-1.4.0[${PYTHON_USEDEP}]
+>=dev-python/pycpio-0.8.0[${PYTHON_USEDEP}]
+sys-apps/pciutils"
+
+src_install() {
+   # Call the distutils-r1_src_install function to install the package
+   distutils-r1_src_install
+   # Create the ugrd config directory
+   keepdir /etc/ugrd
+   # Install the example config into /etc/ugrd/config.toml
+   # Do not overwrite an existing config
+   insinto /etc/ugrd
+   newins examples/example.toml config.toml
+   # Create the kernel preinst.d directory if it doesn't exist
+   # Install the kernel preinst.d hook
+   keepdir /etc/kernel/preinst.d
+   exeinto /etc/kernel/preinst.d
+   doexe hooks/51-ugrd.install
+}
+
+pkg_postinst() {
+   optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup
+   optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs
+   optfeature "ugrd.crypto.gpg support" app-crypt/gnupg
+}



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/zenlib/

2023-12-31 Thread George Zenner
commit: d20f5d54dd61b3e201a86dd11a1f88d54555be9a
Author: Zen  pyl  onl>
AuthorDate: Mon Jan  1 02:00:58 2024 +
Commit: George Zenner  pyl  onl>
CommitDate: Mon Jan  1 02:00:58 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d20f5d54

dev-python/zenlib: Add 1.4.0

Signed-off-by: Zen  pyl.onl>

 dev-python/zenlib/Manifest|  1 +
 dev-python/zenlib/zenlib-1.4.0.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-python/zenlib/Manifest b/dev-python/zenlib/Manifest
index 1df6288515..af0bc34002 100644
--- a/dev-python/zenlib/Manifest
+++ b/dev-python/zenlib/Manifest
@@ -1,2 +1,3 @@
 DIST zenlib-1.2.0.tar.gz 12766 BLAKE2B 
9366beb9496d136cbf0efc9fd97c6d430b442eae4ede87d85c32e1bee9a17315cab04e0b8f97ad8b8e2b599d2965dc2cd3c57ebe4830ba9abe53adc13825f634
 SHA512 
e5630a0869cdcbd909ea829f5876057ad1787ae1b63f80f9b1db7deeb80799eef9deac56027291dac55efd1e974b82a737b236189a1d7a8657a215bb866bca91
 DIST zenlib-1.3.1.tar.gz 13470 BLAKE2B 
03bd8dce7a46641e60646173607ea6cd574fed58cbfa5d81c4c7f1deabf863a3acd12bdfd3b59fd5fc853762d7320d57613e40d72407216cc3ae1d82f7744789
 SHA512 
50a6ac2cb26fd74b6e92e3691463ec707259fe27e37af2f2c68a9a1e0c247b789cdf17d5b1f882e02dbca5f0653a4137caab39f3f0380d0b5391efaf41f1312d
+DIST zenlib-1.4.0.tar.gz 14315 BLAKE2B 
76f9e8ed74a451837b27406c7bf0791b8d131de9d5b75ab1b47cca47c665a676c07e7779f92baf843396e9e61fdc706e6e7fc6ff4e06a52e19706df6cf94d0c1
 SHA512 
6326a95226fbbb126d72ecc2a9b4940615ae866a5586f2c8d795e12ff37e5c27d0ec62cda7fa398d1aa460acaa401fd7fb330677edc12b92c23933514a7eb79e

diff --git a/dev-python/zenlib/zenlib-1.4.0.ebuild 
b/dev-python/zenlib/zenlib-1.4.0.ebuild
new file mode 100644
index 00..f9a184c858
--- /dev/null
+++ b/dev-python/zenlib/zenlib-1.4.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+inherit distutils-r1
+
+DESCRIPTION="Useful python decorators and utilities"
+HOMEPAGE="https://github.com/desultory/zenlib;
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"



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

2023-12-31 Thread Sam James
commit: 735edc3bf64c10afba704da20a3af056d7ad73ba
Author: Eli Schwartz  gmail  com>
AuthorDate: Mon Jan  1 01:42:25 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:51:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735edc3b

sys-apps/iproute2: drop old compat symlink and USE=split-usr hack

As promised in the ebuild comments, we can now remove the compatibility
symlink from /sbin -> /bin.

While we are at it, don't do the move conditional on split-usr. Arguably
only the symlink should have been conditionalized on this way back
when... we already move another binary too in the same way, but without
any conditional.

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

 .../{iproute2-6.6.0-r2.ebuild => iproute2-6.6.0-r3.ebuild} | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-6.6.0-r2.ebuild 
b/sys-apps/iproute2/iproute2-6.6.0-r3.ebuild
similarity index 95%
rename from sys-apps/iproute2/iproute2-6.6.0-r2.ebuild
rename to sys-apps/iproute2/iproute2-6.6.0-r3.ebuild
index 796a1c1367b1..5254f12bbe45 100644
--- a/sys-apps/iproute2/iproute2-6.6.0-r2.ebuild
+++ b/sys-apps/iproute2/iproute2-6.6.0-r3.ebuild
@@ -18,7 +18,7 @@ 
HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="atm berkdb bpf caps elf +iptables minimal nfs selinux split-usr"
+IUSE="atm berkdb bpf caps elf +iptables minimal nfs selinux"
 # Needs root
 RESTRICT="test"
 
@@ -190,6 +190,7 @@ src_install() {
 
dodir /bin
mv "${ED}"/{s,}bin/ip || die # bug #330115
+   mv "${ED}"/{s,}bin/ss || die # bug #547264
 
dolib.a lib/libnetlink.a
insinto /usr/include
@@ -199,13 +200,6 @@ src_install() {
# https://bugs.gentoo.org/868321
mv "${ED}"/sbin/ifstat{,-iproute2} || die
 
-   if use split-usr ; then
-   # Can remove compatibility symlink in a year: 2023-05-28.
-   # bug #547264
-   mv "${ED}"/sbin/ss "${ED}"/bin/ss || die
-   dosym -r /bin/ss /sbin/ss
-   fi
-
if use berkdb ; then
keepdir /var/lib/arpd
# bug #47482, arpd doesn't need to be in /sbin



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

2023-12-31 Thread Sam James
commit: 02ba1ab26a4a4809c3ed7ca94923f9110b6e46a3
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 01:51:56 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:51:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02ba1ab2

sys-apps/iproute2: sync live

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

 sys-apps/iproute2/iproute2-.ebuild | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-.ebuild 
b/sys-apps/iproute2/iproute2-.ebuild
index d61eddc9d7ae..c57d9bd65cfd 100644
--- a/sys-apps/iproute2/iproute2-.ebuild
+++ b/sys-apps/iproute2/iproute2-.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
@@ -18,7 +18,7 @@ 
HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="atm berkdb bpf caps elf +iptables minimal nfs selinux split-usr"
+IUSE="atm berkdb bpf caps elf +iptables minimal nfs selinux"
 # Needs root
 RESTRICT="test"
 
@@ -187,6 +187,7 @@ src_install() {
 
dodir /bin
mv "${ED}"/{s,}bin/ip || die # bug #330115
+   mv "${ED}"/{s,}bin/ss || die # bug #547264
 
dolib.a lib/libnetlink.a
insinto /usr/include
@@ -196,13 +197,6 @@ src_install() {
# https://bugs.gentoo.org/868321
mv "${ED}"/sbin/ifstat{,-iproute2} || die
 
-   if use split-usr ; then
-   # Can remove compatibility symlink in a year: 2023-05-28.
-   # bug #547264
-   mv "${ED}"/sbin/ss "${ED}"/bin/ss || die
-   dosym -r /bin/ss /sbin/ss
-   fi
-
if use berkdb ; then
keepdir /var/lib/arpd
# bug #47482, arpd doesn't need to be in /sbin



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

2023-12-31 Thread Sam James
commit: 95c080801df74afe6a51020ee52a9f649834b6b2
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 01:19:44 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:51:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c08080

sys-cluster/drbd-utils: add 9.27.0

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

 sys-cluster/drbd-utils/Manifest |   1 +
 sys-cluster/drbd-utils/drbd-utils-9.27.0.ebuild | 137 
 2 files changed, 138 insertions(+)

diff --git a/sys-cluster/drbd-utils/Manifest b/sys-cluster/drbd-utils/Manifest
index 188e63acd4e9..c714c47c30b1 100644
--- a/sys-cluster/drbd-utils/Manifest
+++ b/sys-cluster/drbd-utils/Manifest
@@ -1 +1,2 @@
 DIST drbd-utils-9.25.0.tar.gz 1406804 BLAKE2B 
6617d2a2a947926d894c184c0c6f79262c32010b7982c85b30f1e02fec66d611f9389c1de0e8435f6ea4999626cf2763bc332f8c619b9201bb29308338f1d355
 SHA512 
43ed52c59ab0272a389c647240ad4e8e04cdca4c4530da9645d9fc22fda45d7c6d9bea6781a433f3993f9f717e1c1a9ea10af12b18a49ad2d22f78f458ef46f3
+DIST drbd-utils-9.27.0.tar.gz 1418879 BLAKE2B 
a4f505768aacf03c14c7b52815293f1ee62385e98d6fed9d83b18899a4f424ed263388076abba5692885441310a5730d1d5ae175bae4307d5ab268e9129eb31d
 SHA512 
066849e77bac04515682f497398e3840eecdf16c866a0d67df4e8978e9278dee120d9a216ba7dcf16e1dc2cfdd7271ff775e5bee9ccd0cead8360b7e33e08f5d

diff --git a/sys-cluster/drbd-utils/drbd-utils-9.27.0.ebuild 
b/sys-cluster/drbd-utils/drbd-utils-9.27.0.ebuild
new file mode 100644
index ..3d8b35c868a0
--- /dev/null
+++ b/sys-cluster/drbd-utils/drbd-utils-9.27.0.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 flag-o-matic linux-info tmpfiles udev
+
+DESCRIPTION="mirror/replicate block-devices across a network-connection"
+HOMEPAGE="https://www.linbit.com/drbd;
+SRC_URI="https://pkg.linbit.com/downloads/drbd/utils/${P}.tar.gz;
+S="${WORKDIR}/${P/_/}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="pacemaker +udev xen"
+
+DEPEND="
+   sys-apps/keyutils
+   pacemaker? ( sys-cluster/pacemaker )
+   udev? ( virtual/udev )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="sys-devel/flex"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-9.23.1-respect-flags.patch
+)
+
+pkg_setup() {
+   # verify that CONFIG_BLK_DEV_DRBD is enabled in the kernel or
+   # warn otherwise
+   linux-info_pkg_setup
+   elog "Checking for suitable kernel configuration options..."
+   if linux_config_exists; then
+   if ! linux_chkconfig_present BLK_DEV_DRBD; then
+   ewarn "CONFIG_BLK_DEV_DRBD: is not set when it should 
be."
+   elog "Please check to make sure these options are set 
correctly."
+   fi
+   else
+   ewarn "Could not check if CONFIG_BLK_DEV_DRBD is enabled in 
your kernel."
+   elog "Please check to make sure these options are set 
correctly."
+   fi
+}
+
+src_prepare() {
+   # Respect LDFLAGS, bug #453442
+   sed -e "s/\$(CC) -o/\$(CC) \$(LDFLAGS) -o/" \
+   -e "/\$(DESTDIR)\$(localstatedir)\/lock/d" \
+   -i user/*/Makefile.in || die
+
+   # Respect multilib, bug #698304
+   sed -i -e "s:/lib/:/$(get_libdir)/:g" \
+   Makefile.in 
scripts/{Makefile.in,global_common.conf,drbd.conf.example} || die
+   sed -e "s:@prefix@/lib:@prefix@/$(get_libdir):" \
+   -e "s:(DESTDIR)/lib:(DESTDIR)/$(get_libdir):" \
+   -i user/*/Makefile.in || die
+   sed -i -e "s/lib/$(get_libdir)/" scripts/drbd.service || die
+
+   # Correct install paths (really correct this time)
+   sed -i -e "s:\$(sysconfdir)/bash_completion.d:$(get_bashcompdir):" \
+   scripts/Makefile.in || die
+
+   # Don't participate in user survey, bug #360483
+   sed -i -e '/usage-count/ s/yes/no/' scripts/global_common.conf || die
+   sed -i -e "s:\$(sysconfdir)/udev:$(get_udevdir):" scripts/Makefile.in 
|| die
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # -Werror=lto-type-mismatch, bug #863728
+   # https://github.com/LINBIT/drbd-utils/issues/40
+   filter-lto
+
+   local myeconfargs=(
+   --localstatedir="${EPREFIX}"/var
+   # don't autodetect systemd/sysv; install systemd and use our 
own openrc
+   --with-initscripttype=systemd
+   # only used for systemdunitdir and for udevdir; the latter 
breaks
+   # merged-usr interop
+   PKG_CONFIG=/bin/false
+   --with-systemdunitdir="${EPREFIX}"/usr/lib/systemd/system
+   --with-bashcompletion
+   --with-distro=gentoo
+   --with-prebuiltman
+   --without-rgmanager
+   $(use_with pacemaker)
+   $(use_with udev)
+   $(use_with xen)
+   )
+
+   

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

2023-12-31 Thread Ulrich Müller
commit: abbc5e9fa4471c9bced924f69c3e7a0e8675fa2a
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jan  1 01:46:41 2024 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jan  1 01:46:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abbc5e9f

header.txt: Happy new year 2024!

Signed-off-by: Ulrich Müller  gentoo.org>

 header.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/header.txt b/header.txt
index 336a78920019..1379d93ddf32 100644
--- a/header.txt
+++ b/header.txt
@@ -1,2 +1,2 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/drbd-utils/, sys-cluster/drbd-utils/files/

2023-12-31 Thread Sam James
commit: bf4f20599e90d685b6deb74ab53279558cb504e3
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 01:13:24 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:13:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf4f2059

sys-cluster/drbd-utils: drop 9.15.1-r2, 9.19.1, 9.23.1, 9.24.0

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

 sys-cluster/drbd-utils/Manifest|   4 -
 sys-cluster/drbd-utils/drbd-utils-9.15.1-r2.ebuild | 109 -
 sys-cluster/drbd-utils/drbd-utils-9.19.1.ebuild| 131 -
 sys-cluster/drbd-utils/drbd-utils-9.23.1.ebuild| 129 
 sys-cluster/drbd-utils/drbd-utils-9.24.0.ebuild| 129 
 .../files/drbd-utils-9.15.1-run-lock.patch |  13 --
 .../files/drbd-utils-9.15.1-sysmacros.patch|  41 ---
 .../files/drbd-utils-9.19.1-configure-posix.diff   |  11 --
 sys-cluster/drbd-utils/files/run-lock.patch|  13 --
 9 files changed, 580 deletions(-)

diff --git a/sys-cluster/drbd-utils/Manifest b/sys-cluster/drbd-utils/Manifest
index ff503360df7e..188e63acd4e9 100644
--- a/sys-cluster/drbd-utils/Manifest
+++ b/sys-cluster/drbd-utils/Manifest
@@ -1,5 +1 @@
-DIST drbd-utils-9.15.1.tar.gz 1229196 BLAKE2B 
c73cb624e4c35f2c5c001b4545c2ad806d3f13471aa25b0941d923020fe01a73405d1ed7c2ab2efe3afee0e59b8e9d401072edb788c57dc338fe3ddb4eebebf3
 SHA512 
bf9c46335500c0dd7afdc160221acaf8fd053afc453cb26cd76ef085c41580be5a62021ef1f1a57eac9df70d1158a008f489d1a8bb5c3329c5a187f79e4942de
-DIST drbd-utils-9.19.1.tar.gz 1265184 BLAKE2B 
b26fd9abd6408df4ccaa46c4713ece1743386bb4727ad8206498c30189d6c119ced57ec2d528c0575c5192cf366998b5f7db99aaecf1a2ba6af028b87c4ae082
 SHA512 
65d8f5802c541781895c59a5f631b222746b21615049e53f77d6c36a7255c51fe5d062984174ab8578d64af104fe9d66df5ae185ba50a8c38813c12a69fceb22
-DIST drbd-utils-9.23.1.tar.gz 1279916 BLAKE2B 
f631473d7ff2d569e2e5dc61940085f4d575baaa1e02eaba50f37b15e9b381afb9089d4e50fbd511dc7c73350a9e5552b16a1e80742151801e5068c12830a469
 SHA512 
8befaa20f4217fb83b127bad332a96be61ffd0cefca78b298dbede4c7f33424e8f27aeb251bb022bb4e1ade11307448cdf39d5750924fcf2711141a29e7a81f0
-DIST drbd-utils-9.24.0.tar.gz 1296591 BLAKE2B 
ece4773bc2e63739ae656987166423303ad32a50e27983d4e8b173d997221e5c45389aa6306b3219d5a648d2d3401720b73e9a67880225c46b9e2f28d5605b62
 SHA512 
20f85f3dcdb0a1a1dcf5029e4737799081bcb0c69a60e8fe077016899ef37efb5ee585a92cf30a0475970a12c1da90aaebc0fd9e33452690838a56bc75b49ec4
 DIST drbd-utils-9.25.0.tar.gz 1406804 BLAKE2B 
6617d2a2a947926d894c184c0c6f79262c32010b7982c85b30f1e02fec66d611f9389c1de0e8435f6ea4999626cf2763bc332f8c619b9201bb29308338f1d355
 SHA512 
43ed52c59ab0272a389c647240ad4e8e04cdca4c4530da9645d9fc22fda45d7c6d9bea6781a433f3993f9f717e1c1a9ea10af12b18a49ad2d22f78f458ef46f3

diff --git a/sys-cluster/drbd-utils/drbd-utils-9.15.1-r2.ebuild 
b/sys-cluster/drbd-utils/drbd-utils-9.15.1-r2.ebuild
deleted file mode 100644
index d080591f8106..
--- a/sys-cluster/drbd-utils/drbd-utils-9.15.1-r2.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 tmpfiles udev
-
-DESCRIPTION="mirror/replicate block-devices across a network-connection"
-SRC_URI="https://www.linbit.com/downloads/drbd/utils/${P}.tar.gz;
-HOMEPAGE="https://www.linbit.com/drbd;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="pacemaker +udev xen"
-
-DEPEND="
-   pacemaker? ( sys-cluster/pacemaker )
-   udev? ( virtual/udev )"
-RDEPEND="${DEPEND}"
-BDEPEND="sys-devel/flex"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-run-lock.patch
-   "${FILESDIR}"/${P}-sysmacros.patch
-)
-
-S="${WORKDIR}/${P/_/}"
-
-src_prepare() {
-   # respect LDFLAGS, #453442
-   sed -e "s/\$(CC) -o/\$(CC) \$(LDFLAGS) -o/" \
-   -e "/\$(DESTDIR)\$(localstatedir)\/lock/d" \
-   -i user/*/Makefile.in || die
-
-   # respect multilib
-   # bug #698304
-   sed -i -e "s:/lib/:/$(get_libdir)/:g" \
-   Makefile.in 
scripts/{Makefile.in,global_common.conf,drbd.conf.example} || die
-   sed -e "s:@prefix@/lib:@prefix@/$(get_libdir):" \
-   -e "s:(DESTDIR)/lib:(DESTDIR)/$(get_libdir):" \
-   -i user/*/Makefile.in || die
-
-   sed -i -e "s/lib/$(get_libdir)/" scripts/drbd.service || die
-
-   # correct install paths (really correct this time)
-   sed -i -e "s:\$(sysconfdir)/bash_completion.d:$(get_bashcompdir):" \
-   scripts/Makefile.in || die
-
-   # don't participate in user survey bug 360483
-   sed -i -e '/usage-count/ s/yes/no/' scripts/global_common.conf || die
-   sed -i -e "s:\$(sysconfdir)/udev:$(get_udevdir):" scripts/Makefile.in 
|| die
-
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --localstatedir="${EPREFIX}"/var \
-   

[gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/

2023-12-31 Thread Sam James
commit: 9750c1ac923f43e8337990ff1b5a6fb156b34019
Author: Eli Schwartz  gmail  com>
AuthorDate: Mon Jan  1 00:31:12 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:11:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9750c1ac

net-fs/davfs2: remove pointless no-op USE=split-usr

In bug 884323 it was noted that merged-usr systems get a conflict,
because upstream attempted to install a symlink in /sbin pointing to
/usr/sbin. It was noted in the bug that /sbin isn't needed at all,
despite which the chosen solution was to add IUSE=split-usr and
conditionally create the (useless) symlink.

In version 1.7.0 upstream dropped this entirely, so no symlink is
created either way -- but we still defined the USE flag and invalidated
binpkg changed-use matches. Also we wasted ebuild real estate redefining
the src_install function.

Get rid of this dead weight.

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

 net-fs/davfs2/davfs2-1.7.0.ebuild | 14 +-
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/net-fs/davfs2/davfs2-1.7.0.ebuild 
b/net-fs/davfs2/davfs2-1.7.0.ebuild
index 21569512202b..3ac4673512f8 100644
--- a/net-fs/davfs2/davfs2-1.7.0.ebuild
+++ b/net-fs/davfs2/davfs2-1.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="nls split-usr"
+IUSE="nls"
 RESTRICT="test"
 
 RDEPEND="dev-libs/libxml2
@@ -42,18 +42,6 @@ src_configure() {
econf --enable-largefile $(use_enable nls)
 }
 
-src_install() {
-   local ssbindir
-   if use split-usr; then
-   ssbindir=${EPREFIX}/sbin
-   else
-   ssbindir=${EPREFIX}/usr/sbin
-   fi
-
-   emake DESTDIR="${D}" sbindir="${ssbindir}" install
-   einstalldocs
-}
-
 pkg_postinst() {
elog
elog "Quick setup:"



[gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/

2023-12-31 Thread Sam James
commit: fed99419996b7319286dba751fc576e8cbe9de5f
Author: Eli Schwartz  gmail  com>
AuthorDate: Mon Jan  1 00:37:34 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 01:11:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fed99419

net-fs/davfs2: remove questionable USE=split-usr

In bug 884323 it was noted that merged-usr systems get a conflict,
because upstream attempted to install a symlink in /sbin pointing to
/usr/sbin. It was noted in the bug that /sbin isn't needed at all,
despite which the chosen solution was to add IUSE=split-usr and
conditionally create the (useless) symlink.

In version 1.7.0 upstream dropped this entirely, indicating they don't
think it's a terribly good idea either. Take this opportunity to revert
everything and go install exclusively to /usr/sbin, which should have
been the original solution all along.

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

 ...vfs2-1.6.1-r1.ebuild => davfs2-1.6.0-r2.ebuild} | 31 +++---
 ...vfs2-1.6.1-r1.ebuild => davfs2-1.6.1-r2.ebuild} | 13 +++--
 2 files changed, 18 insertions(+), 26 deletions(-)

diff --git a/net-fs/davfs2/davfs2-1.6.1-r1.ebuild 
b/net-fs/davfs2/davfs2-1.6.0-r2.ebuild
similarity index 75%
copy from net-fs/davfs2/davfs2-1.6.1-r1.ebuild
copy to net-fs/davfs2/davfs2-1.6.0-r2.ebuild
index 973dc3c12987..3414aa6a5cd8 100644
--- a/net-fs/davfs2/davfs2-1.6.1-r1.ebuild
+++ b/net-fs/davfs2/davfs2-1.6.0-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=8
+EAPI=7
 
 inherit autotools
 
@@ -12,19 +12,25 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="nls split-usr"
+IUSE="nls"
 RESTRICT="test"
 
 RDEPEND="dev-libs/libxml2
-   acct-group/davfs2
-   acct-user/davfs2
-   net-libs/neon:=
+   net-libs/neon
sys-libs/zlib
nls? ( virtual/libintl virtual/libiconv )
 "
-BDEPEND="
+DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
 "
+RDEPEND="${RDEPEND}
+   acct-group/davfs2
+   acct-user/davfs2
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.6.0-neon-0.32-support.patch
+)
 
 src_prepare() {
local f
@@ -32,21 +38,14 @@ src_prepare() {
# Let the package manager handle man page compression
while IFS="" read -d $'\0' -r f ; do
sed -e '/^manual[58]_DATA/ s/[.]gz//g' -i "${f}" || die
-   done < <(find "${S}"/man -type f -name 'Makefile.am' -print0)
+   done < <(find "${S}"/man -type f -name 'Makefile.in' -print0)
 
default
eautoreconf
 }
 
 src_configure() {
-   local ssbindir
-   if use split-usr; then
-   ssbindir=${EPREFIX}/sbin
-   else
-   ssbindir=${EPREFIX}/usr/sbin
-   fi
-
-   econf --enable-largefile $(use_enable nls) ssbindir="${ssbindir}"
+   econf --enable-largefile $(use_enable nls) 
ssbindir="${EPREFIX}/usr/sbin"
 }
 
 pkg_postinst() {

diff --git a/net-fs/davfs2/davfs2-1.6.1-r1.ebuild 
b/net-fs/davfs2/davfs2-1.6.1-r2.ebuild
similarity index 82%
rename from net-fs/davfs2/davfs2-1.6.1-r1.ebuild
rename to net-fs/davfs2/davfs2-1.6.1-r2.ebuild
index 973dc3c12987..27aa924e32d7 100644
--- a/net-fs/davfs2/davfs2-1.6.1-r1.ebuild
+++ b/net-fs/davfs2/davfs2-1.6.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="nls split-usr"
+IUSE="nls"
 RESTRICT="test"
 
 RDEPEND="dev-libs/libxml2
@@ -39,14 +39,7 @@ src_prepare() {
 }
 
 src_configure() {
-   local ssbindir
-   if use split-usr; then
-   ssbindir=${EPREFIX}/sbin
-   else
-   ssbindir=${EPREFIX}/usr/sbin
-   fi
-
-   econf --enable-largefile $(use_enable nls) ssbindir="${ssbindir}"
+   econf --enable-largefile $(use_enable nls) 
ssbindir="${EPREFIX}/usr/sbin"
 }
 
 pkg_postinst() {



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

2023-12-31 Thread Sam James
commit: eef9b30fdc46e9a0b86fe32d8293564dbfc10f01
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Dec 31 20:59:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:12:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eef9b30f

sys-cluster/drbd-utils: avoid the necessity of USE=split-usr

It was added in commit 02512e1d120272ad4e035959fa4014a8df7a28fc without
any explanation. Comparing builds, it does matter, though -- because on
split-usr systems, it uses and needs the udevdir to be /lib/udev.

Upstream detects this via pkg-config automagic with no way to override
it. But the ebuild never actually depended on virtual/pkgconfig
anyway... the good news is it only uses it for two things.

The other thing it uses it for is for detecting systemd to set the
default systemd unit directory when the configure option is not passed.
We want to install it unconditionally though, which means we cannot rely
on pkg-config for this either. That means we are using it for nothing.

Instead, explicitly set PKG_CONFIG=/bin/false to ensure it gets detected
as missing/broken, which means we fall back to the default udev
directory value, which is safe for split-usr systems.

While we are at it:

- ensure the systemdunitdir setting actually does something by declaring
  the init type as systemd. The openrc files come from gentoo anyway and
  are overwritten after emake install.
- avoid reinstalling the tmpfiles, which was originally added in commit
  85d6acdce7c5e60c5dfe768d1b3514e2c962c2ea specifically to work around
  the "only on systemd" issue.

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

 sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild | 134 +
 1 file changed, 134 insertions(+)

diff --git a/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild 
b/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild
new file mode 100644
index ..2b24560c3430
--- /dev/null
+++ b/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild
@@ -0,0 +1,134 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 linux-info tmpfiles udev
+
+DESCRIPTION="mirror/replicate block-devices across a network-connection"
+HOMEPAGE="https://www.linbit.com/drbd;
+SRC_URI="https://pkg.linbit.com/downloads/drbd/utils/${P}.tar.gz;
+S="${WORKDIR}/${P/_/}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="pacemaker +udev xen"
+
+DEPEND="
+   pacemaker? ( sys-cluster/pacemaker )
+   udev? ( virtual/udev )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="sys-devel/flex"
+
+PATCHES=(
+   #"${FILESDIR}"/${PN}-9.15.1-run-lock.patch
+   "${FILESDIR}"/${PN}-9.23.1-respect-flags.patch
+   "${FILESDIR}"/${PN}-9.25.0-missing-stdint.patch
+)
+
+pkg_setup() {
+   # verify that CONFIG_BLK_DEV_DRBD is enabled in the kernel or
+   # warn otherwise
+   linux-info_pkg_setup
+   elog "Checking for suitable kernel configuration options..."
+   if linux_config_exists; then
+   if ! linux_chkconfig_present BLK_DEV_DRBD; then
+   ewarn "CONFIG_BLK_DEV_DRBD: is not set when it should 
be."
+   elog "Please check to make sure these options are set 
correctly."
+   fi
+   else
+   ewarn "Could not check if CONFIG_BLK_DEV_DRBD is enabled in 
your kernel."
+   elog "Please check to make sure these options are set 
correctly."
+   fi
+}
+
+src_prepare() {
+   # Respect LDFLAGS, bug #453442
+   sed -e "s/\$(CC) -o/\$(CC) \$(LDFLAGS) -o/" \
+   -e "/\$(DESTDIR)\$(localstatedir)\/lock/d" \
+   -i user/*/Makefile.in || die
+
+   # Respect multilib, bug #698304
+   sed -i -e "s:/lib/:/$(get_libdir)/:g" \
+   Makefile.in 
scripts/{Makefile.in,global_common.conf,drbd.conf.example} || die
+   sed -e "s:@prefix@/lib:@prefix@/$(get_libdir):" \
+   -e "s:(DESTDIR)/lib:(DESTDIR)/$(get_libdir):" \
+   -i user/*/Makefile.in || die
+   sed -i -e "s/lib/$(get_libdir)/" scripts/drbd.service || die
+
+   # Correct install paths (really correct this time)
+   sed -i -e "s:\$(sysconfdir)/bash_completion.d:$(get_bashcompdir):" \
+   scripts/Makefile.in || die
+
+   # Don't participate in user survey, bug #360483
+   sed -i -e '/usage-count/ s/yes/no/' scripts/global_common.conf || die
+   sed -i -e "s:\$(sysconfdir)/udev:$(get_udevdir):" scripts/Makefile.in 
|| die
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --localstatedir="${EPREFIX}"/var
+   # don't autodetect systemd/sysv; install systemd and use our 
own openrc
+   --with-initscripttype=systemd
+   # only used for systemdunitdir and for udevdir; the latter 
breaks
+   # merged-usr interop
+  

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

2023-12-31 Thread Sam James
commit: 6fe332967f8bd8e14bb8734f7e5c714e5d0de06e
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Dec 31 22:46:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:12:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe33296

sys-cluster/drbd-utils: suppress LTO

It fails to build:

```
x86_64-pc-linux-gnu-gcc -march=native -fstack-protector-all -O2 -pipe 
-fdiagnostics-color=always -frecord-gcc-switches -U_FORTIFY_SOURCE 
-D_FORTIFY_SOURCE=3 -fstack-clash-protection -Wformat -Werror=format-security 
-flto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing 
-Werror=implicit-function-declaration -Werror=implicit-int 
-Werror=int-conversion -Werror=incompatible-pointer-types -Wall 
-I../../drbd-headers -I.. -I. -I../shared   -Wl,-O1 -Wl,--as-needed 
-Wl,--defsym=__gentoo_check_ldflags__=0  -Wl,-O1 -Wl,--as-needed 
-Wl,--defsym=__gentoo_check_ldflags__=0 -o drbdadm drbdadm_scanner.o 
drbdadm_parser.o drbdadm_postparse.o drbdadm_main.o drbdadm_adjust.o 
drbdadm_dump.o drbdtool_common.o drbdadm_usage_cnt.o drbd_buildtag.o registry.o 
config_flags.o libnla.o drbd_nla.o shared_tool.o shared_main.o shared_parser.o 
libgenl.o drbdadm_linux.o drbdtool_common_linux.o path_linux.o shared_linux.o
../shared/shared_main.c:60:22: error: type of ‘ifreq_list’ does not match 
original declaration [-Werror=lto-type-mismatch]
   60 | extern struct ifreq *ifreq_list;
  |  ^
drbdadm_main.c:150:15: note: ‘ifreq_list’ was previously declared here
  150 | struct ifreq *ifreq_list = NULL;
  |   ^
drbdadm_main.c:150:15: note: code may be misoptimized unless 
‘-fno-strict-aliasing’ is used
lto1: some warnings being treated as errors
lto-wrapper: fatal error: x86_64-pc-linux-gnu-gcc returned 1 exit status
```

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

 sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild 
b/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild
index 2b24560c3430..1dde213b413e 100644
--- a/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild
+++ b/sys-cluster/drbd-utils/drbd-utils-9.25.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools bash-completion-r1 linux-info tmpfiles udev
+inherit autotools bash-completion-r1 flag-o-matic linux-info tmpfiles udev
 
 DESCRIPTION="mirror/replicate block-devices across a network-connection"
 HOMEPAGE="https://www.linbit.com/drbd;
@@ -71,6 +71,10 @@ src_prepare() {
 }
 
 src_configure() {
+   # -Werror=lto-type-mismatch, bug #863728
+   # https://github.com/LINBIT/drbd-utils/issues/40
+   filter-lto
+
local myeconfargs=(
--localstatedir="${EPREFIX}"/var
# don't autodetect systemd/sysv; install systemd and use our 
own openrc



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

2023-12-31 Thread Sam James
commit: 53b5eaaeadda10e7c5591a9ff9452e9dde21af78
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Dec 31 18:48:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:12:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b5eaae

sys-power/nut: fix confusing split-usr handling

Almost a decade ago, upstream moved their binary from libdir to sbindir.
Historically, Gentoo symlinked the binary into sbindir to make up for
this -- and when upstream moved to follow the Gentoo layout, the Gentoo
symlink overwrote the actual binary.

For some reason, at the time, the solution used was to add a
USE=split-usr and install extra symlinks for /sbin -> /usr/sbin even
though this didn't actually do something meaningful. The split-usr USE
flag has issues and using it unnecessarily should be avoided if
possible. Drop the USE flag, and the symlink, and stick with /usr/sbin
as upstream intends.

This should be 100% fine in all cases. The /sbin directory is only
needed for users who both have /usr on a different partition, *and*
don't use an initramfs. In such a case, it is nonsensical to provide a
symlink in /sbin that is a broken symlink to an un-mounted partition.

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

 .../nut/{nut-.ebuild => nut-2.8.0-r3.ebuild}   | 65 --
 sys-power/nut/nut-.ebuild  |  3 +-
 2 files changed, 12 insertions(+), 56 deletions(-)

diff --git a/sys-power/nut/nut-.ebuild b/sys-power/nut/nut-2.8.0-r3.ebuild
similarity index 73%
copy from sys-power/nut/nut-.ebuild
copy to sys-power/nut/nut-2.8.0-r3.ebuild
index a56635519b2d..20eea7107c63 100644
--- a/sys-power/nut/nut-.ebuild
+++ b/sys-power/nut/nut-2.8.0-r3.ebuild
@@ -3,9 +3,8 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..12} )
-inherit bash-completion-r1 desktop flag-o-matic linux-info optfeature
-inherit python-single-r1 systemd tmpfiles toolchain-funcs udev wrapper xdg
+inherit bash-completion-r1 flag-o-matic linux-info optfeature systemd
+inherit tmpfiles toolchain-funcs udev
 
 MY_P=${P/_/-}
 
@@ -17,37 +16,27 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else
SRC_URI="https://networkupstools.org/source/${PV%.*}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="gpio cgi doc ipmi serial i2c +man snmp +usb modbus selinux split-usr ssl 
tcpd test xml zeroconf python monitor systemd"
+IUSE="cgi doc ipmi serial i2c +man snmp +usb modbus selinux ssl tcpd test xml 
zeroconf"
 RESTRICT="!test? ( test )"
 
-REQUIRED_USE="
-   monitor? ( python )
-   python? ( ${PYTHON_REQUIRED_USE} )
-   snmp? ( python )
-"
-
-# sys-apps/systemd-253 required for Type=notify-reload
 DEPEND="
acct-group/nut
acct-user/nut
dev-libs/libltdl
virtual/udev
cgi? ( >=media-libs/gd-2[png] )
-   gpio? ( dev-libs/libgpiod )
i2c? ( sys-apps/i2c-tools )
ipmi? ( sys-libs/freeipmi )
modbus? ( dev-libs/libmodbus )
-   python? ( ${PYTHON_DEPS} )
snmp? ( net-analyzer/net-snmp:= )
ssl? ( >=dev-libs/openssl-1:= )
-   systemd? ( >=sys-apps/systemd-253 )
tcpd? ( sys-apps/tcp-wrappers )
usb? ( virtual/libusb:1 )
xml? ( >=net-libs/neon-0.25.0:= )
@@ -60,16 +49,11 @@ BDEPEND="
 "
 RDEPEND="
${DEPEND}
-   monitor? ( $(python_gen_cond_dep '
-   dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
-   ')
-   )
selinux? ( sec-policy/selinux-nut )
 "
 
 PATCHES=(
"${FILESDIR}/${PN}-2.6.2-lowspeed-buffer-size.patch"
-   "${FILESDIR}/systemd_notify.path"
 )
 
 pkg_pretend() {
@@ -82,10 +66,6 @@ pkg_pretend() {
ERROR_HIDRAW="HIDRAW is needed to support USB UPSes"
ERROR_I2C_CHARDEV="USB_HIDDEV is needed to support USB UPSes"
fi
-   if use gpio; then
-   CONFIG_CHECK="~GPIO_CDEV_V1"
-   ERROR_GPIO_CDEV_V1="GPIO_CDEV_V1 is needed to support GPIO 
UPSes"
-   fi
if use serial; then
CONFIG_CHECK="~SERIAL_8250"
ERROR_SERIAL_8250="SERIAL_8250 is needed to support Serial 
UPSes"
@@ -95,18 +75,12 @@ pkg_pretend() {
check_extra_config
 }
 
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
 src_prepare() {
default
 
if [[ ${PV} == * ]] ; then
./autogen.sh || die
fi
-
-   xdg_environment_reset
 }
 
 src_configure() {
@@ -130,19 +104,17 @@ src_configure() {
--without-powerman
--without-python
--without-python2
+   --without-python3
--with-altpidpath=/run/nut
--with-pidpath=/run/nut
+   $(use_enable test cppunit)
   

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

2023-12-31 Thread Sam James
commit: 30cd0c6969bfc2c42d3e58daa3a2d6c0d5ed33d9
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 00:06:33 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:08:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cd0c69

net-misc/netifrc: drop 0.7.5, 0.7.6, 0.7.6-r1

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

 net-misc/netifrc/Manifest|  2 -
 net-misc/netifrc/netifrc-0.7.5.ebuild| 74 --
 net-misc/netifrc/netifrc-0.7.6-r1.ebuild | 91 
 net-misc/netifrc/netifrc-0.7.6.ebuild| 78 ---
 4 files changed, 245 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index 8c1bd2bdd95b..c29f94aa754b 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,3 +1 @@
-DIST netifrc-0.7.5.tar.gz 86884 BLAKE2B 
6ca9b8034fe69767910814021df783710cf6b6a4edb5a877142e6be67b57556fee2e9e3fefb8d22c03b1460ce45bf7e490a1a0862dd6ce7b9beb247c942341b0
 SHA512 
a043df2850362da5f6d8620c4c76ca0644e97c64c0223bfe50e31d20fd8a3e5cf8afa1234d99946631868eab77a8816d24f8cb05b3e4cf4bec101478d162e8a4
-DIST netifrc-0.7.6.tar.gz 86771 BLAKE2B 
814e97630a84a2f9531aa81754f3ea20a561f19d055e4a6652a1374925c4ff6e7279e161a817e3c50059b2c40b7b1a7602bad3dbcb68836882e4fe5ad754
 SHA512 
ec8d44254106a38b16c52ef33a5064db40db565cef7b7499d38c7636f2b9c01305329d77ac6298621f3b55a1401345c108374a691ae41129b8fe9d5a7e35
 DIST netifrc-0.7.7.tar.bz2 75823 BLAKE2B 
e2d99ac347e9a449b39981b1aa1585ff83d05af1bafe09f7e2e25954360df1e76f53ce4a5c8e08777ba45baf697a307697576835df4c4b4ae010ab84dbe8bb2b
 SHA512 
995f89beece9e7ff0b558b466c06a476f22d3161f31622a232c382d81e74399aeb0a39cb4a95080829120c527a1a93757425671e2ca3639d8637e5e905ad3e80

diff --git a/net-misc/netifrc/netifrc-0.7.5.ebuild 
b/net-misc/netifrc/netifrc-0.7.5.ebuild
deleted file mode 100644
index 5f51fbe7ef3f..
--- a/net-misc/netifrc/netifrc-0.7.5.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git;
-   #EGIT_REPO_URI="https://github.com/gentoo/${PN}; # Alternate
-   inherit git-r3
-else
-   SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-
-LICENSE="BSD-2 GPL-2"
-SLOT="0"
-IUSE="+dhcp"
-
-RDEPEND="sys-apps/gentoo-functions
-   >=sys-apps/openrc-0.15
-   dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )"
-BDEPEND="kernel_linux? ( virtual/pkgconfig )"
-
-src_prepare() {
-   if [[ ${PV} == "" ]] ; then
-   local ver="git-${EGIT_VERSION:0:6}"
-   sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
-   einfo "Producing ChangeLog from Git history"
-   GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
-   fi
-
-   default
-}
-
-src_compile() {
-   MAKE_ARGS=(
-   PREFIX="${EPREFIX}"
-   UPREFIX="${EPREFIX}/usr"
-   UDEVDIR="${EPREFIX}$(get_udevdir)"
-   LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   PF="${PF}"
-   )
-
-   emake "${MAKE_ARGS[@]}" all
-}
-
-src_install() {
-   emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
-   dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
-
-   # Install the service file
-   local LIBEXECDIR="${EPREFIX}/lib/${PN}"
-   sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-   systemd_newunit "${T}/net_at.service" 'net@.service'
-
-   local UNIT_DIR="$(systemd_get_systemunitdir)"
-   UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
-   dosym net@.service "${UNIT_DIR}/net@lo.service"
-}
-
-pkg_postinst() {
-   udev_reload
-   if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; 
then
-   elog "The network configuration scripts will use dhcp by"
-   elog "default to set up your interfaces."
-   elog "If you need to set up something more complete, see"
-   elog "${EROOT}/usr/share/doc/${P}/README"
-   fi
-}

diff --git a/net-misc/netifrc/netifrc-0.7.6-r1.ebuild 
b/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
deleted file mode 100644
index 54f749377303..
--- a/net-misc/netifrc/netifrc-0.7.6-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc;
-
-if 

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

2023-12-31 Thread Sam James
commit: 9bd8d0b92b6c3a551a461d91512970a46c60f118
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan  1 00:07:15 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan  1 00:08:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd8d0b9

skel.ebuild: happy new year!

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

 skel.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/skel.ebuild b/skel.ebuild
index 21c147ceab1d..d70f26ca8510 100644
--- a/skel.ebuild
+++ b/skel.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
 
 # NOTE: The comments in this file are for instruction and documentation.



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

2023-12-31 Thread Sam James
commit: 68c6f34924ad9295a87d01fc3238edc6e98e0f2f
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 31 23:11:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 31 23:11:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c6f349

sys-devel/gcc: add 14.0.0_pre20231231

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

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

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 0fac987f20c6..177ce8d8a000 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -23,9 +23,11 @@ DIST gcc-13.2.0-patches-11.tar.xz 46340 BLAKE2B 
c9f12ccbe7bb7ba3a2afec16695e69b0
 DIST gcc-13.2.0-patches-7.tar.xz 37064 BLAKE2B 
4a8700a8d44bfaa84926f8bfd0da4c5b0c0377f47fc0679456e909f7c9029b9cf1b72c0ba0bc505d9035d5c38e27f7e5b029727eaf2bc7aca417a6be966b2f43
 SHA512 
f440c97e6782ecb8581d41608e31a648ac426e2d870bc1d171da7794cdeff2fd0546cae0c7214e72fd3a00ead8a5c66f3f633b670b74553a2f3a40378b51f20c
 DIST gcc-14-20231217.tar.xz 86943032 BLAKE2B 
8d5ab21fedffad0d4d4e02201c74f3b90cfabe5c2c1abbc048b6c4d179cbf3977cffc6bfc1b7b679d0276b66f86d58ef5c0b8451a4fcb75b88b7240fd7baf41c
 SHA512 
23d8e6dd76aff0a5d7687ce8753aba7bdc374d3330553314da378af84ad629e67dbb532ba416816ce81812857c4c54e31cc5460d3f86619d7a9fb368328ff11d
 DIST gcc-14-20231224.tar.xz 87027056 BLAKE2B 
412a0e8c82063f3aac828620648e5a57942dc2028408904290f7051b5756fe1f78d81fea8d1fba607db57e1905104ed236f86fc7d07b0bb35f407ce6c91f6e4a
 SHA512 
c05eaa660732cbe57e7390afa9218eb99253dd58a00f376287dfd4765ed43acc4672635031439226b2e068899796a20ef14e5ac610f32ca31e285a4cdfa2f65e
+DIST gcc-14-20231231.tar.xz 87027004 BLAKE2B 
55c12dea8b446793667220dd17a75f3081f1ca6608654f1d2c5860f65d757efa4dcd044e9f15373ec7afc89c475876502529abbb96ddaac77206c0a63ff23882
 SHA512 
79a704d54bd8ace8ebfbf720dca71c70dc7c1d0c70f8f586f70fb476006317846aa29a4754a3f34ebbbe436f4e548a4837f778bacb86f97d8bfc03627bfcaf03
 DIST gcc-14.0.0-musl-patches-1.tar.xz 3576 BLAKE2B 
692baee8a7709905d53aeb150d73a3721c4ba47ee5f397cfb1b5be905cf003ca02b60c94ee294d90ac39645cd5cdf186c7a3aa950c47d8cf680c128ed705b807
 SHA512 
0592ab98a7142e404623a6511c67dff61e9ade32c3fb2c0e75b456306e0af3799ad13252b50b3d2fdd31e5815d7f0b16b0ad63ab8386fe4d78729fc9c182d617
 DIST gcc-14.0.0-patches-11.tar.xz 11272 BLAKE2B 
81c63b8aebcfd5b33b698ef4ef8f2d12b94ea2753ecec2b160cf9fab534dccd12875bcb16cfac2aa81211f8d9ff530cfc18f486567721beac487e08daa62363e
 SHA512 
0f51352cbc6815cd1dbc8b73e9c83842a58242220ba712291cc76c08c19b3a612c88a3221b2da437a9c7ecb410a83c2e538aa1984b733f444843bdf79d314a71
 DIST gcc-14.0.0-patches-13.tar.xz 47572 BLAKE2B 
8f0fc6ba8f9310eab3f6b568ffce39f64e399552ed5c9fdd261e3cc9292200e7ab66724872b392f64bd9bf05ddf9a1fd26ba4092a98d991202b4f6a28861a829
 SHA512 
a56abdd95f03ed0586df709fdc28cc6af4573465b99750502986efd7f0ce73fd8ab455fdb9621d9227e835721be3cf42a9997a97eacf148b8a0dcf3ba44cc5be
+DIST gcc-14.0.0-patches-14.tar.xz 47788 BLAKE2B 
0d243208f0e94c609f931091bb44ddad25b9fcfb1f57c7ee1c00f94d7af7d6ebbcc3c40951df5ab039c14056db21dce9c4ef11489cd7df4bcdbb199fbcce4816
 SHA512 
077fc39b95a5f2d24f4bb4ed77f2066dc156950e60f57e3b5ddf3d784df42cccacb0c71a97acdf0b1fe774420bfb4ccba4e10d1296ceb6a144efd90fddd0
 DIST gcc-8.5.0-patches-4.tar.xz 18616 BLAKE2B 
7594cbaea5daecf1a0b3d526c06aeba0a84c6da66aee2e105a51fda6be8d30a37ccc3814281b284a4582d892a1d556bca063551584edfc2525bed8ea5b6888e7
 SHA512 
1aa5742c361186637e7855f06feb1a4547e7d4d5de6e51f3d049e0ef3c19e2eff179465f52781739f59422035b7f8e4c0efa3844849f920f3c96acfdc37ca6a6
 DIST gcc-8.5.0.tar.xz 63841008 BLAKE2B 
aa81a1a730fd7371360f6abed6ba78b5843fd18c58d5de5687acc320741b9e430e85df3535a1ef7a26051409be8d2f0945f503e5968480d919103123a99d4b12
 SHA512 
92f599680e6b7fbce88bcdda810f468777d541e5fddfbb287f7977d51093de2a5178bd0e6a08dfe37090ea10a0508a43ccd00220041abbbec33f1179bfc174d8
 DIST gcc-9.5.0-patches-2.tar.xz 14324 BLAKE2B 
1d3bf3e673108ad2fcdcb86daefb4603d1c9f6aa815e34d1591054d466b76d6f50cce124ab4760528c4951ea16eb00888a3e6485417f81ebf250548732df4a8e
 SHA512 
a6d6f650aaf0bd193a17ac279649f0544a282cea295824384c59341c3000eac4b574b60e00dd427585d928f9768166abf85168b47772132790ad98854acacbbf

diff --git a/sys-devel/gcc/gcc-14.0.0_pre20231231.ebuild 
b/sys-devel/gcc/gcc-14.0.0_pre20231231.ebuild
new file mode 100644
index ..af1f684970bc
--- /dev/null
+++ b/sys-devel/gcc/gcc-14.0.0_pre20231231.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+TOOLCHAIN_PATCH_DEV="sam"
+PATCH_GCC_VER="14.0.0"
+PATCH_VER="14"
+MUSL_VER="1"
+MUSL_GCC_VER="14.0.0"
+
+if [[ ${PV} == *. ]] ; then
+   MY_PV_2=$(ver_cut 2)
+   MY_PV_3=1
+   if [[ ${MY_PV_2} == 0 ]] ; then
+   MY_PV_2=0
+   MY_PV_3=0
+   else
+   MY_PV_

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

2023-12-31 Thread Sam James
commit: ff3336c450f32a41e1907a87b2e12aedbdc2c209
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 31 22:45:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 31 23:02:35 2023 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=ff3336c4

14.0.0: cut patchset 14

13 seems to have been a mess where I'd already done it and used it in
14.0.0_pre20231224-r1.

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

 14.0.0/gentoo/README.history | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/14.0.0/gentoo/README.history b/14.0.0/gentoo/README.history
index b0f3170..b3ba265 100644
--- a/14.0.0/gentoo/README.history
+++ b/14.0.0/gentoo/README.history
@@ -1,6 +1,10 @@
-13 ?? ??? 
+14 31 Dec 2023
 
-+ 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch
+   + 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch
+
+13 25 Dec 2023
+
+   N/A
 
 12 25 Dec 2023
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/zen-util/, dev-python/pycpio/, dev-python/zen-logging/, ...

2023-12-31 Thread George Zenner
commit: fb2744d80071ec136192752c8e594e5b51b152d2
Author: Zen  pyl  onl>
AuthorDate: Sun Dec 31 22:41:46 2023 +
Commit: George Zenner  pyl  onl>
CommitDate: Sun Dec 31 22:45:44 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb2744d8

Add zen-util and zen-logging to split zenlib. Update packages which use
zenlib to use more split libraries

Signed-off-by: Zen  pyl.onl>

 dev-python/pycpio/Manifest |  3 +-
 .../{pycpio-0.6.1.ebuild => pycpio-0.7.3.ebuild}   |  3 +-
 dev-python/zen-logging/Manifest|  1 +
 dev-python/zen-logging/metadata.xml| 11 ++
 .../zen-logging-1.1.0.ebuild}  |  6 +--
 dev-python/zen-util/Manifest   |  1 +
 dev-python/zen-util/metadata.xml   | 11 ++
 .../zen-util-1.0.1.ebuild} |  9 ++---
 sys-kernel/ugrd/Manifest   |  1 +
 sys-kernel/ugrd/ugrd-0.19.2.ebuild | 44 ++
 10 files changed, 77 insertions(+), 13 deletions(-)

diff --git a/dev-python/pycpio/Manifest b/dev-python/pycpio/Manifest
index e6bbe54a64..b5aa717b6d 100644
--- a/dev-python/pycpio/Manifest
+++ b/dev-python/pycpio/Manifest
@@ -1,2 +1 @@
-DIST pycpio-0.6.1.tar.gz 17236 BLAKE2B 
4951ba3b7ad2fe603eb1cc07c851349de2ad73985ad1b2efcdb138f2ba26c43040a09d036ef993a28190b381af58bb8dc2e876ed1dff309ac010b69341a8c881
 SHA512 
49386b45172b13ecdeb040b719eaae0f17e5cbf7d68d3dcbcec99e01bfb3c539b8b02a768da640f56bb8941e79053c56e391b7186c9a5e5226d91fbdc55eeb11
-DIST pycpio-0.7.0.tar.gz 17942 BLAKE2B 
760bfec68fe77ac9495a01fd8481e7f7a88fce0be983e60220bba66e12b104214117fd0e18e362bf1fc7a367226a5c874940fa43c23f7fee2bb39f76ec4a2ccb
 SHA512 
4730083295e0bde39651d323507d12adef6b27e2cde095e281c76f4b6f20262eaa40cf31eb900d6818a7266b3b21c6159a334fd088249a55d054e277200ffaaa
+DIST pycpio-0.7.3.tar.gz 17991 BLAKE2B 
92b6ae62dd1d81b9c87423e417ef24989df6340b22cf1686a7718dd164c2ed4193b65fd2be55bb17d86500fefec9e2a81efd2c518943bca6d6225e819c30cf86
 SHA512 
509294f8f0688cd3c9b82790bbf23627a3aeb045ecb7f2371fbaae10c6d9ae98a7965d25e19f8ef3d230faeddb5fad82b8305876fb144122f2bd6c46b4fe19f0

diff --git a/dev-python/pycpio/pycpio-0.6.1.ebuild 
b/dev-python/pycpio/pycpio-0.7.3.ebuild
similarity index 85%
copy from dev-python/pycpio/pycpio-0.6.1.ebuild
copy to dev-python/pycpio/pycpio-0.7.3.ebuild
index cc9f2e41e4..a36203e9fa 100644
--- a/dev-python/pycpio/pycpio-0.6.1.ebuild
+++ b/dev-python/pycpio/pycpio-0.7.3.ebuild
@@ -15,4 +15,5 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DEPEND=">=dev-python/zenlib-1.2.0"
+DEPEND=">=dev-python/zen-logging-1.1.0
+>=dev-python/zen-util-1.0.1"

diff --git a/dev-python/zen-logging/Manifest b/dev-python/zen-logging/Manifest
new file mode 100644
index 00..564edcccab
--- /dev/null
+++ b/dev-python/zen-logging/Manifest
@@ -0,0 +1 @@
+DIST zen-logging-1.1.0.tar.gz 9798 BLAKE2B 
3a97b934e8c35bce0c3fbf720b776e0c563f2b06e57c29a6ffbb58786ed6e8ffc39da7ab2db3196affbc43029f14ff0b55c4647aa7fbe1f03f7a1b54accf4c59
 SHA512 
febdc2fe9cf2d44f9c2547b0eb3d79aef097e9c191a5118031e330210bc092c0c6b4242eeaa0f27f6b2181d3689bd4369b1ac4c28629c2554038766690204822

diff --git a/dev-python/zen-logging/metadata.xml 
b/dev-python/zen-logging/metadata.xml
new file mode 100644
index 00..248b2b4feb
--- /dev/null
+++ b/dev-python/zen-logging/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   d...@pyl.onl
+   Zen
+   
+   
+   desultory/zen-logging
+   
+

diff --git a/dev-python/pycpio/pycpio-0.6.1.ebuild 
b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
similarity index 73%
rename from dev-python/pycpio/pycpio-0.6.1.ebuild
rename to dev-python/zen-logging/zen-logging-1.1.0.ebuild
index cc9f2e41e4..058a94d25c 100644
--- a/dev-python/pycpio/pycpio-0.6.1.ebuild
+++ b/dev-python/zen-logging/zen-logging-1.1.0.ebuild
@@ -7,12 +7,10 @@ DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{11..12} )
 inherit distutils-r1
 
-DESCRIPTION="Python CPIO library"
-HOMEPAGE="https://github.com/desultory/pycpio;
+DESCRIPTION="Python logging helpers"
+HOMEPAGE="https://github.com/desultory/zen_logging;
 SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/zenlib-1.2.0"

diff --git a/dev-python/zen-util/Manifest b/dev-python/zen-util/Manifest
new file mode 100644
index 00..6883e71eba
--- /dev/null
+++ b/dev-python/zen-util/Manifest
@@ -0,0 +1 @@
+DIST zen-util-1.0.1.tar.gz 11025 BLAKE2B 
0e47e9a62a4f0f2e573e16a11956ee20505d5618c7e2c47b5699d699a6e920f23f935122de9b0fd5128a070a99758f9b40aa9df39190805ca609814a26b8a4b8
 SHA512 
88110ab041255def72364e5dfc95818b250b8f52a0d7505a7023b8a3a418247f38707f6c9d0858ae492976969c78bc8a292545c28d22721c8c5b2cce7c90d68c

diff --git a/dev-python/zen-util/metadata.xml 

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

2023-12-31 Thread Mike Pagano
commit: 63ea4b9e9952ea5649d52fcef8e67bb965dc820e
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Dec 31 22:20:47 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Dec 31 22:20:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ea4b9e

sys-kernel/git-sources: add 6.7_rc8

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

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

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 93ca1704034d..aa8883575e98 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -6,3 +6,4 @@ DIST patch-6.7-rc4.patch 72676847 BLAKE2B 
f81414a35d846b7cca8192d7c0b5df98555f1a
 DIST patch-6.7-rc5.patch 73084909 BLAKE2B 
094526599ccb63a3b7658178468a6188e179110ac80e0b3cb890047351cdd23b8ac68f18d90ec6c86f01577ad70e00c177ce1a1d5ebd84f4897ae49229f2bec7
 SHA512 
02c37a6fea68a1fa280a613f9d8dc88655c43004e42bcb2580e8983ff95fb08c57630e0fec55714cb028a234e28616e40c3642a92785e0fa9b437c0dccd06c81
 DIST patch-6.7-rc6.patch 73376662 BLAKE2B 
78e4d145caddb81c033fac6388496090fb8d4900f9fde6e95fc8a7cf8c39fcaf3a63f26cf387354b2177fc1b5710e8aa2f721a58bb42807c081f3a3602e89f0b
 SHA512 
3cf301c327adaead8021607cc6e4b72e2f0985319bed6578b272e765cdb859c34754b572e69d322f7397063086e9f6a4333bce47f2e4c9ff73c1a48c17a1743b
 DIST patch-6.7-rc7.patch 73633759 BLAKE2B 
e5d23ce499d7fdb37dc19766ab2b15251da3c520e22ccdcb1bfa5531a6637d2438d452fabe26e59eb1ec90f67cb9be8756000671ba9da78c70620e1f418ac778
 SHA512 
d0cb6fc201ba2ccb59b56ca870fb8bbb5d0a15426bc24eccf6025616756d06cc078403fc9eb2cf9cdeb8facccaea34d1ba35dcf49faf96a9f067195f61f0bb04
+DIST patch-6.7-rc8.patch 73683256 BLAKE2B 
009c4fa19a9779e49d19eaa5572ae4fe7e1e35aa666e8cb4e5308815f77fd0b8f861e0996faf64a35d875d53111c6b99e1ebc722ac75bd4a7c5421033bd484fe
 SHA512 
5f2e60f146a5168fd17dc3ce1a26c3c46250a2d4d666a13b452395d2565e06250cb7315426040da58e34f651eee4e3dd3ecbf5d521c7d8b386634428f985278d

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



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

2023-12-31 Thread Andreas Sturmlechner
commit: 40c41777fd4abbf00b8fdbad2a6f90dc2d56ab57
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 19:46:21 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 21:21:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c41777

kde-plasma/plasma-activities: Drop bogus/add missing test dependency

Closes: https://github.com/gentoo/gentoo/pull/34551
Closes: https://bugs.gentoo.org/920164
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-activities/plasma-activities-5.112.0.ebuild | 6 ++
 kde-plasma/plasma-activities/plasma-activities-5.113.0.ebuild | 6 ++
 kde-plasma/plasma-activities/plasma-activities-5.91.0.ebuild  | 1 +
 3 files changed, 13 insertions(+)

diff --git a/kde-plasma/plasma-activities/plasma-activities-5.112.0.ebuild 
b/kde-plasma/plasma-activities/plasma-activities-5.112.0.ebuild
index 7dda8d7503b4..d7ed7518d8a2 100644
--- a/kde-plasma/plasma-activities/plasma-activities-5.112.0.ebuild
+++ b/kde-plasma/plasma-activities/plasma-activities-5.112.0.ebuild
@@ -30,4 +30,10 @@ RDEPEND="${COMMON_DEPEND}
 "
 DEPEND="${COMMON_DEPEND}
dev-libs/boost
+   test? ( =kde-frameworks/kwindowsystem-${KFMIN}*:5 )
 "
+
+src_prepare() {
+   ecm_src_prepare
+   cmake_run_in src/cli ecm_punt_kf_module WindowSystem # bug 920164
+}

diff --git a/kde-plasma/plasma-activities/plasma-activities-5.113.0.ebuild 
b/kde-plasma/plasma-activities/plasma-activities-5.113.0.ebuild
index e3684e39fd24..d0976f45ac5e 100644
--- a/kde-plasma/plasma-activities/plasma-activities-5.113.0.ebuild
+++ b/kde-plasma/plasma-activities/plasma-activities-5.113.0.ebuild
@@ -27,4 +27,10 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-libs/boost
+   test? ( =kde-frameworks/kwindowsystem-${KFMIN}*:5 )
 "
+
+src_prepare() {
+   ecm_src_prepare
+   cmake_run_in src/cli ecm_punt_kf_module WindowSystem # bug 920164
+}

diff --git a/kde-plasma/plasma-activities/plasma-activities-5.91.0.ebuild 
b/kde-plasma/plasma-activities/plasma-activities-5.91.0.ebuild
index c5196db099b9..6e964ddc9b77 100644
--- a/kde-plasma/plasma-activities/plasma-activities-5.91.0.ebuild
+++ b/kde-plasma/plasma-activities/plasma-activities-5.91.0.ebuild
@@ -25,4 +25,5 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-libs/boost
+   test? ( =kde-frameworks/kwindowsystem-${KFMIN}*:6 )
 "



[gentoo-commits] proj/kde:master commit in: media-libs/pulseaudio-qt/

2023-12-31 Thread Andreas Sturmlechner
commit: 6b8c2036a8c082badcf405dc1e9afa896fb5c73b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 20:25:54 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 20:26:25 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6b8c2036

media-libs/pulseaudio-qt: Port to KF6

Thanks-to: Aidan Harris  aidanharr.is>
Closes: https://github.com/gentoo/kde/pull/969
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/pulseaudio-qt/pulseaudio-qt-.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/media-libs/pulseaudio-qt/pulseaudio-qt-.ebuild 
b/media-libs/pulseaudio-qt/pulseaudio-qt-.ebuild
index 30714ce1fb..ad07d70db9 100644
--- a/media-libs/pulseaudio-qt/pulseaudio-qt-.ebuild
+++ b/media-libs/pulseaudio-qt/pulseaudio-qt-.ebuild
@@ -6,7 +6,8 @@ EAPI=8
 ECM_HANDBOOK="forceoptional"
 ECM_QTHELP="true"
 ECM_TEST="optional"
-QTMIN=5.15.9
+KFMIN=5.247.0
+QTMIN=6.6.0
 inherit ecm kde.org
 
 DESCRIPTION="Qt bindings for libpulse"
@@ -21,14 +22,10 @@ LICENSE="LGPL-2.1"
 SLOT="0/3"
 
 RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
+   >=dev-qt/qtbase-${QTMIN}:6[gui,dbus]
media-libs/libpulse
 "
 DEPEND="${RDEPEND}
-   test? (
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   )
+   test? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
 "
 BDEPEND="virtual/pkgconfig"



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

2023-12-31 Thread Andreas Sturmlechner
commit: 60fe6c6d07ae500c2c6bd202eb68f74831f2d0b4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 19:23:48 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 19:23:48 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=60fe6c6d

kde-apps/juk: Port to KF6

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

 kde-apps/juk/juk-.ebuild | 51 +---
 1 file changed, 24 insertions(+), 27 deletions(-)

diff --git a/kde-apps/juk/juk-.ebuild b/kde-apps/juk/juk-.ebuild
index cf194f641c..157f886695 100644
--- a/kde-apps/juk/juk-.ebuild
+++ b/kde-apps/juk/juk-.ebuild
@@ -5,44 +5,41 @@ EAPI=8
 
 ECM_HANDBOOK="forceoptional"
 ECM_TEST="forceoptional"
-KFMIN=5.106.0
-QTMIN=5.15.9
+KFMIN=5.247.0
+QTMIN=6.6.0
 inherit ecm gear.kde.org
 
 DESCRIPTION="Jukebox and music manager by KDE"
 HOMEPAGE="https://apps.kde.org/juk/;
 
 LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
+SLOT="6"
 KEYWORDS=""
 IUSE=""
 
 RDEPEND="
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtsvg-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/kglobalaccel-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kiconthemes-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kjobwidgets-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/ktextwidgets-${KFMIN}:5
-   >=kde-frameworks/kwallet-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-   >=media-libs/phonon-4.11.0[qt5(+)]
+   >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml]
+   >=dev-qt/qtsvg-${QTMIN}:6
+   >=kde-frameworks/kcompletion-${KFMIN}:6
+   >=kde-frameworks/kconfig-${KFMIN}:6
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+   >=kde-frameworks/kcoreaddons-${KFMIN}:6
+   >=kde-frameworks/kcrash-${KFMIN}:6
+   >=kde-frameworks/kglobalaccel-${KFMIN}:6
+   >=kde-frameworks/ki18n-${KFMIN}:6
+   >=kde-frameworks/kiconthemes-${KFMIN}:6
+   >=kde-frameworks/kio-${KFMIN}:6
+   >=kde-frameworks/kjobwidgets-${KFMIN}:6
+   >=kde-frameworks/knotifications-${KFMIN}:6
+   >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+   >=kde-frameworks/ktextwidgets-${KFMIN}:6
+   >=kde-frameworks/kwallet-${KFMIN}:6
+   >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+   >=kde-frameworks/kwindowsystem-${KFMIN}:6
+   >=kde-frameworks/kxmlgui-${KFMIN}:6
+   >=media-libs/phonon-4.12.0[qt6]
>=media-libs/taglib-1.6
 "
 DEPEND="${RDEPEND}
-   >=dev-qt/qtconcurrent-${QTMIN}:5
+   >=dev-qt/qtbase-${QTMIN}:6[concurrent]
 "



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

2023-12-31 Thread Andreas Sturmlechner
commit: 0b956101ca473b9547de02d9f67eb397d7847aee
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 21:12:10 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 21:12:38 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0b956101

gear.kde.org.eclass: Add juk and kdeconnect to SLOT=5 blocklist

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

 eclass/gear.kde.org.eclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eclass/gear.kde.org.eclass b/eclass/gear.kde.org.eclass
index 69460c1c16..02c06c5c81 100644
--- a/eclass/gear.kde.org.eclass
+++ b/eclass/gear.kde.org.eclass
@@ -97,6 +97,7 @@ if $(ver_test -gt 24.01.75); then
grantlee-editor | \
grantleetheme | \
incidenceeditor | \
+   juk | \
kaccounts-integration | \
kaccounts-providers | \
kaddressbook | \
@@ -124,6 +125,7 @@ if $(ver_test -gt 24.01.75); then
kcolorchooser | \
kcron | \
kdebugsettings | \
+   kdeconnect | \
kdegraphics-mobipocket | \
kdenetwork-filesharing | \
kdepim-addons | \



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

2023-12-31 Thread Andreas Sturmlechner
commit: 138fa5fbf049ca42057e67694d266d0a1a75a7d4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 20:19:05 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 20:20:40 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=138fa5fb

kde-misc/kdeconnect: Pin 23.08 down to https://github.com/gentoo/kde/pull/969

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

 kde-misc/kdeconnect/kdeconnect-23.08.49..ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kdeconnect/kdeconnect-23.08.49..ebuild 
b/kde-misc/kdeconnect/kdeconnect-23.08.49..ebuild
index 14e1a7f6aa..36c220f023 100644
--- a/kde-misc/kdeconnect/kdeconnect-23.08.49..ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-23.08.49..ebuild
@@ -54,7 +54,7 @@ COMMON_DEPEND="
>=kde-plasma/libplasma-${KFMIN}:5
x11-libs/libxkbcommon
bluetooth? ( >=dev-qt/qtbluetooth-${QTMIN}:5 )
-   pulseaudio? ( media-libs/pulseaudio-qt:= )
+   pulseaudio? ( =kde-frameworks/modemmanager-qt-${KFMIN}:5 )
X? (
x11-libs/libfakekey



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

2023-12-31 Thread Andreas Sturmlechner
commit: 732a0ce760e29de2207abf428ed0a0982ffdc604
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 20:29:56 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 21:07:42 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=732a0ce7

kde-misc/kdeconnect: Port to KF6, set ECM_HANDBOOK=forceoptional

Upstream dependency changes commits:
495e3019e48c5c577c7ffd92554b1ac90b182f20
b8b30ba571d2c155a09bc7d10fb65338e06ecea9
d948d882aa77cfbe9440912fd3972ef6a81be7f5
0baeece353489128e53c51fc3f2de95cdf14b0f0
7c9032c85af8fed4e5cfa688e101b0ed39f37683

Thanks-to: Aidan Harris  aidanharr.is>
Closes: https://github.com/gentoo/kde/pull/970
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kdeconnect/kdeconnect-.ebuild | 88 ++
 1 file changed, 42 insertions(+), 46 deletions(-)

diff --git a/kde-misc/kdeconnect/kdeconnect-.ebuild 
b/kde-misc/kdeconnect/kdeconnect-.ebuild
index 14e1a7f6aa..ca0253c71e 100644
--- a/kde-misc/kdeconnect/kdeconnect-.ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-.ebuild
@@ -3,59 +3,56 @@
 
 EAPI=8
 
-ECM_HANDBOOK="optional"
+ECM_HANDBOOK="forceoptional"
 ECM_TEST="true"
 KDE_ORG_NAME="${PN}-kde"
 KDE_SELINUX_MODULE="${PN}"
-KFMIN=5.106.0
-QTMIN=5.15.9
+KFMIN=5.247.0
+QTMIN=6.6.0
 inherit ecm gear.kde.org
 
 DESCRIPTION="Adds communication between KDE Plasma and your smartphone"
 HOMEPAGE="https://kdeconnect.kde.org/ https://apps.kde.org/kdeconnect/;
 
 LICENSE="GPL-2+"
-SLOT="5"
+SLOT="6"
 KEYWORDS=""
 IUSE="bluetooth pulseaudio telephony X"
 
 RESTRICT="test"
 
 COMMON_DEPEND="
-   >=app-crypt/qca-2.3.0:2[qt5(+),ssl]
dev-libs/glib:2
+   dev-libs/openssl:=
>=dev-libs/wayland-1.15.0
-   >=dev-qt/qtdbus-${QTMIN}:5
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5=
-   >=dev-qt/qtmultimedia-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   >=dev-qt/qtwayland-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=dev-qt/qtx11extras-${QTMIN}:5
-   >=kde-frameworks/kcmutils-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/kguiaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kiconthemes-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kirigami-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kpeople-${KFMIN}:5
-   >=kde-frameworks/kservice-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/qqc2-desktop-style-${KFMIN}:5
-   >=kde-frameworks/solid-${KFMIN}:5
-   >=kde-plasma/libplasma-${KFMIN}:5
+   >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets]
+   >=dev-qt/qtdeclarative-${QTMIN}:6
+   >=dev-qt/qtmultimedia-${QTMIN}:6
+   >=dev-qt/qtwayland-${QTMIN}:6
+   >=kde-frameworks/kcmutils-${KFMIN}:6
+   >=kde-frameworks/kconfig-${KFMIN}:6
+   >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+   >=kde-frameworks/kcoreaddons-${KFMIN}:6
+   >=kde-frameworks/kdbusaddons-${KFMIN}:6
+   >=kde-frameworks/kdnssd-${KFMIN}:6
+   >=kde-frameworks/kguiaddons-${KFMIN}:6
+   >=kde-frameworks/ki18n-${KFMIN}:6
+   >=kde-frameworks/kiconthemes-${KFMIN}:6
+   >=kde-frameworks/kio-${KFMIN}:6
+   >=kde-frameworks/kirigami-${KFMIN}:6
+   >=kde-frameworks/knotifications-${KFMIN}:6
+   >=kde-frameworks/kpeople-${KFMIN}:6
+   >=kde-frameworks/kservice-${KFMIN}:6
+   >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+   >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+   >=kde-frameworks/kwindowsystem-${KFMIN}:6
+   >=kde-frameworks/qqc2-desktop-style-${KFMIN}:6
+   >=kde-frameworks/solid-${KFMIN}:6
+   sys-apps/dbus
x11-libs/libxkbcommon
-   bluetooth? ( >=dev-qt/qtbluetooth-${QTMIN}:5 )
-   pulseaudio? ( media-libs/pulseaudio-qt:= )
-   telephony? ( >=kde-frameworks/modemmanager-qt-${KFMIN}:5 )
+   bluetooth? ( >=dev-qt/qtconnectivity-${QTMIN}:6[bluetooth] )
+   pulseaudio? ( >=media-libs/pulseaudio-qt-1.4:= )
+   telephony? ( >=kde-frameworks/modemmanager-qt-${KFMIN}:6 )
X? (
x11-libs/libfakekey
x11-libs/libX11
@@ -66,27 +63,26 @@ DEPEND="${COMMON_DEPEND}
dev-libs/wayland-protocols
 "
 RDEPEND="${COMMON_DEPEND}
-   dev-libs/kirigami-addons:5
-   dev-libs/kpeoplevcard:5
-   >=dev-qt/qtgraphicaleffects-${QTMIN}:5
-   >=dev-qt/qtmultimedia-${QTMIN}:5[qml]
-   >=kde-frameworks/kdeclarative-${KFMIN}:5
+   dev-libs/kirigami-addons:6
+   >=dev-qt/qt5compat-${QTMIN}:6[qml]
+   >=dev-qt/qtmultimedia-${QTMIN}:6[qml]
+   

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

2023-12-31 Thread Andreas Sturmlechner
commit: 512b71e3bc3de2cec9b1217c780b97289ecdc5ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 31 19:46:21 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 31 19:46:21 2023 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=512b71e3

kde-plasma/plasma-activities: Drop bogus/add missing test dependency

Bug: https://bugs.gentoo.org/920164
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-activities/plasma-activities-5.239..ebuild | 6 ++
 kde-plasma/plasma-activities/plasma-activities-.ebuild   | 1 +
 2 files changed, 7 insertions(+)

diff --git a/kde-plasma/plasma-activities/plasma-activities-5.239..ebuild 
b/kde-plasma/plasma-activities/plasma-activities-5.239..ebuild
index ff8e51c30d..b2b0f0eca7 100644
--- a/kde-plasma/plasma-activities/plasma-activities-5.239..ebuild
+++ b/kde-plasma/plasma-activities/plasma-activities-5.239..ebuild
@@ -27,4 +27,10 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-libs/boost
+   test? ( =kde-frameworks/kwindowsystem-${KFMIN}*:5 )
 "
+
+src_prepare() {
+   ecm_src_prepare
+   cmake_run_in src/cli ecm_punt_kf_module WindowSystem # bug 920164
+}

diff --git a/kde-plasma/plasma-activities/plasma-activities-.ebuild 
b/kde-plasma/plasma-activities/plasma-activities-.ebuild
index 45a10a584d..58128e8055 100644
--- a/kde-plasma/plasma-activities/plasma-activities-.ebuild
+++ b/kde-plasma/plasma-activities/plasma-activities-.ebuild
@@ -25,4 +25,5 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-libs/boost
+   test? ( =kde-frameworks/kwindowsystem-${KFMIN}*:6 )
 "



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

2023-12-31 Thread Hans de Graaff
commit: 7687fa88e5a0288da994d3bdf1a17850b624c4f0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:48:23 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:48:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7687fa88

dev-ruby/asciimath: enable ruby33

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

 dev-ruby/asciimath/asciimath-2.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/asciimath/asciimath-2.0.5.ebuild 
b/dev-ruby/asciimath/asciimath-2.0.5.ebuild
index 39fd9e5a8606..d47558a02368 100644
--- a/dev-ruby/asciimath/asciimath-2.0.5.ebuild
+++ b/dev-ruby/asciimath/asciimath-2.0.5.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 8308f17cf2e1b9f8450e35739abeb980585b08d4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:43:46 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:43:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8308f17c

dev-ruby/blankslate: drop 3.1.3-r1

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

 dev-ruby/blankslate/blankslate-3.1.3-r1.ebuild | 25 -
 1 file changed, 25 deletions(-)

diff --git a/dev-ruby/blankslate/blankslate-3.1.3-r1.ebuild 
b/dev-ruby/blankslate/blankslate-3.1.3-r1.ebuild
deleted file mode 100644
index bb9980f49d04..
--- a/dev-ruby/blankslate/blankslate-3.1.3-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby26 ruby27 ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_EXTRADOC="README"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Base class with almost all of the methods from Object and Kernel 
being removed"
-HOMEPAGE="https://rubygems.org/gems/blankslate;
-
-IUSE=""
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86"
-
-all_ruby_prepare() {
-   # Avoid test failing with rspec 2.x.
-   sed -i -e '/cleanliness/,/^  end/ s:^:#:' spec/blankslate_spec.rb || die
-}



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

2023-12-31 Thread Hans de Graaff
commit: 8288b14d2b8d94a2ad1ab4de93738902ec9961b4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:48:57 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:48:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8288b14d

dev-ruby/asciimath: drop 2.0.4

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

 dev-ruby/asciimath/Manifest   |  1 -
 dev-ruby/asciimath/asciimath-2.0.4.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-ruby/asciimath/Manifest b/dev-ruby/asciimath/Manifest
index 05571ac335e4..c79628711c21 100644
--- a/dev-ruby/asciimath/Manifest
+++ b/dev-ruby/asciimath/Manifest
@@ -1,2 +1 @@
-DIST asciimath-2.0.4.gem 60416 BLAKE2B 
9a5d6bf967962d37e620d0b49204ba8dafadf65e95a613924c7c169fee98f00203861fbbb1c06db1ee833e401f9a2141566dc693237e1cb7e797e639c63dccfa
 SHA512 
28ab7fd7f43320112c0e7166fb2a6ef269eb91314940deb88606443bec055792cf3c49bc2d9b75c1e5ee5690c3071e66f15f817c4539fc6246da7a8d792f1803
 DIST asciimath-2.0.5.gem 60928 BLAKE2B 
ba81e68f4ae529dab80a40e5d268137af743d8c01f22c84c39c91102bea0b2293871158d157f19bd4213a59b5808a26a5d99697d79750b8a3fc39436426979f2
 SHA512 
05328306e0b750baf49eb090b02d3e840e58a764ed96dc511fc9fd1b7c3fd0b49e0be0d3300acadd809c0b2860fa2ad873e979711d6725e1420782395c5a2185

diff --git a/dev-ruby/asciimath/asciimath-2.0.4.ebuild 
b/dev-ruby/asciimath/asciimath-2.0.4.ebuild
deleted file mode 100644
index 5bef48f31f09..
--- a/dev-ruby/asciimath/asciimath-2.0.4.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure Ruby AsciiMath parsing and conversion library"
-HOMEPAGE="https://github.com/pepijnve/asciimath;
-
-LICENSE="MIT"
-SLOT="1"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/nokogiri )"



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

2023-12-31 Thread Hans de Graaff
commit: 18b5928eea222cd18bb1381e3b180fe052ad02d5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:42:13 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:42:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b5928e

dev-ruby/bson: enable ruby33

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

 dev-ruby/bson/bson-4.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/bson/bson-4.15.0.ebuild b/dev-ruby/bson/bson-4.15.0.ebuild
index 2b68221eb2e7..a1eba82312d8 100644
--- a/dev-ruby/bson/bson-4.15.0.ebuild
+++ b/dev-ruby/bson/bson-4.15.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 RUBY_FAKEGEM_EXTENSIONS=(ext/bson/extconf.rb)



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

2023-12-31 Thread Hans de Graaff
commit: b024cbd6ed6d543e8de21c6f261f3b632e66c6e0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:46:05 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:46:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b024cbd6

dev-ruby/binding_of_caller: enable ruby33

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

 dev-ruby/binding_of_caller/binding_of_caller-1.0.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/binding_of_caller/binding_of_caller-1.0.0-r2.ebuild 
b/dev-ruby/binding_of_caller/binding_of_caller-1.0.0-r2.ebuild
index 8d0a4d13f8f5..4f1a7d57733e 100644
--- a/dev-ruby/binding_of_caller/binding_of_caller-1.0.0-r2.ebuild
+++ b/dev-ruby/binding_of_caller/binding_of_caller-1.0.0-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2023-12-31 Thread Hans de Graaff
commit: 06d4010afa135c2679c148f1a0b0147391c00eed
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:43:06 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:43:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d4010a

dev-ruby/brotli: enable ruby33

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

 dev-ruby/brotli/brotli-0.4.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/brotli/brotli-0.4.0-r2.ebuild 
b/dev-ruby/brotli/brotli-0.4.0-r2.ebuild
index b41da26a6cb9..4ddb166e4f1e 100644
--- a/dev-ruby/brotli/brotli-0.4.0-r2.ebuild
+++ b/dev-ruby/brotli/brotli-0.4.0-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 



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

2023-12-31 Thread Hans de Graaff
commit: f04596b56d2eda56a09d57a52f1ec7083235b610
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:44:27 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:44:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f04596b5

dev-ruby/blankslate: enable ruby33

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

 dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild 
b/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild
index 6bb755a572de..c5e15fc17c9a 100644
--- a/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild
+++ b/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README"
 



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

2023-12-31 Thread Hans de Graaff
commit: 5c804162fb6a0775b3663f3bd8bf42da3e07f608
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:47:15 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:47:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c804162

dev-ruby/bcrypt-ruby: enable ruby33

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

 dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.20.ebuild 
b/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.20.ebuild
index 182da4d9050d..8579ba51f11d 100644
--- a/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.20.ebuild
+++ b/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.20.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: ffa894527d8a898377d8d938987440fc55436c53
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:38:36 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:38:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa89452

dev-ruby/chunky_png: enable ruby33

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

 dev-ruby/chunky_png/chunky_png-1.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/chunky_png/chunky_png-1.4.0-r1.ebuild 
b/dev-ruby/chunky_png/chunky_png-1.4.0-r1.ebuild
index baab3a035f56..60b0499c8a89 100644
--- a/dev-ruby/chunky_png/chunky_png-1.4.0-r1.ebuild
+++ b/dev-ruby/chunky_png/chunky_png-1.4.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 568f131b0a0c6d312fcf70679f994c082ea8646c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:40:25 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:40:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568f131b

dev-ruby/childlabor: enable ruby33

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

 dev-ruby/childlabor/childlabor-0.0.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/childlabor/childlabor-0.0.3-r2.ebuild 
b/dev-ruby/childlabor/childlabor-0.0.3-r2.ebuild
index e3f09787d3ce..5de75caf1d85 100644
--- a/dev-ruby/childlabor/childlabor-0.0.3-r2.ebuild
+++ b/dev-ruby/childlabor/childlabor-0.0.3-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_TASK_TEST=""



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

2023-12-31 Thread Hans de Graaff
commit: bd846d9c967837f23fa0e1e4a9f631698c8105d6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:36:14 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:36:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd846d9c

dev-ruby/colored2: enable ruby33

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

 dev-ruby/colored2/colored2-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/colored2/colored2-3.1.2-r1.ebuild 
b/dev-ruby/colored2/colored2-3.1.2-r1.ebuild
index 3d0b2e46c6fb..ee045d1e61de 100644
--- a/dev-ruby/colored2/colored2-3.1.2-r1.ebuild
+++ b/dev-ruby/colored2/colored2-3.1.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 7fba02cee5974024631d0dd7b2dede440e6c8c87
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:36:58 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:36:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fba02ce

dev-ruby/colorator: enable ruby33

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

 dev-ruby/colorator/colorator-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/colorator/colorator-1.1.0-r1.ebuild 
b/dev-ruby/colorator/colorator-1.1.0-r1.ebuild
index 098d01084826..52f2111c32a1 100644
--- a/dev-ruby/colorator/colorator-1.1.0-r1.ebuild
+++ b/dev-ruby/colorator/colorator-1.1.0-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.markdown"
 RUBY_FAKEGEM_GEMSPEC="colorator.gemspec"



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

2023-12-31 Thread Hans de Graaff
commit: 6215d664f1ae79d66d6bb91451a6ae8ae8d2af85
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:37:50 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:37:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6215d664

dev-ruby/climate_control: enable ruby33

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

 dev-ruby/climate_control/climate_control-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/climate_control/climate_control-1.2.0.ebuild 
b/dev-ruby/climate_control/climate_control-1.2.0.ebuild
index 80b38f3ad275..6f4c638be0bb 100644
--- a/dev-ruby/climate_control/climate_control-1.2.0.ebuild
+++ b/dev-ruby/climate_control/climate_control-1.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"



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

2023-12-31 Thread Hans de Graaff
commit: 97c897c73fb8516f33ffcce00ebcfc2297b4ae0d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:23:35 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:23:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c897c7

dev-ruby/ed25519: enable ruby33

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

 dev-ruby/ed25519/ed25519-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/ed25519/ed25519-1.3.0.ebuild 
b/dev-ruby/ed25519/ed25519-1.3.0.ebuild
index 8f443f84171a..8b3f2455d74b 100644
--- a/dev-ruby/ed25519/ed25519-1.3.0.ebuild
+++ b/dev-ruby/ed25519/ed25519-1.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
 



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

2023-12-31 Thread Hans de Graaff
commit: 10af5e906475314cd4ac969a7f9cbcd9606151c0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:35:08 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:35:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10af5e90

dev-ruby/contracts: enable ruby33

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

 dev-ruby/contracts/contracts-0.17-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/contracts/contracts-0.17-r1.ebuild 
b/dev-ruby/contracts/contracts-0.17-r1.ebuild
index d19c8cbb3fce..733a91667d82 100644
--- a/dev-ruby/contracts/contracts-0.17-r1.ebuild
+++ b/dev-ruby/contracts/contracts-0.17-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: af35be2659361c6a115caf3e1c993072ec2f5d77
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:34:13 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:34:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af35be26

dev-ruby/coolio: enable ruby33

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

 dev-ruby/coolio/coolio-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/coolio/coolio-1.8.0.ebuild 
b/dev-ruby/coolio/coolio-1.8.0.ebuild
index 5ea3227f632b..89809568f100 100644
--- a/dev-ruby/coolio/coolio-1.8.0.ebuild
+++ b/dev-ruby/coolio/coolio-1.8.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"



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

2023-12-31 Thread Hans de Graaff
commit: f56411565a01f9f043a03a67e05671cf7e35f891
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:30:27 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:30:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5641156

dev-ruby/dbf: enable ruby33

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

 dev-ruby/dbf/dbf-4.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/dbf/dbf-4.3.0.ebuild b/dev-ruby/dbf/dbf-4.3.0.ebuild
index bc486175047d..c1108d62c91c 100644
--- a/dev-ruby/dbf/dbf-4.3.0.ebuild
+++ b/dev-ruby/dbf/dbf-4.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 3dff36f953f3e5dfd1ff3406ec0672e6870db9aa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:31:00 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:31:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dff36f9

dev-ruby/dbf: drop 4.2.2

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

 dev-ruby/dbf/Manifest |  1 -
 dev-ruby/dbf/dbf-4.2.2.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-ruby/dbf/Manifest b/dev-ruby/dbf/Manifest
index ff14d3d9509b..5ce7d13f652b 100644
--- a/dev-ruby/dbf/Manifest
+++ b/dev-ruby/dbf/Manifest
@@ -1,3 +1,2 @@
-DIST dbf-4.2.2.gem 130048 BLAKE2B 
e701819c0a868373d38d160680759c38023c32d854e637e74d1839370161ef28155b0a470a2eb477abbe4ed3a3d1198d1da393257ce81c5fdb5ddaf7241c4256
 SHA512 
5c53e617942f7add764cb123a719cd067d5e1b379c6da3fc4d43be2ead144d14fb5e7a367d94043490f525c6aff07058451de5f26f2c6b5b90c8dec3788eb229
 DIST dbf-4.2.4.gem 128000 BLAKE2B 
21b8a08ade1a87237868879b895d0a943fa9b971775922ba1cb30fb59f9477281f0bdcd4b3d6d3c01c3bfda6e18baf29551c14fdf1637b35d5f6d08646cdd33f
 SHA512 
3f8f6b6a14f559a84f1efc7054366f5250fd473dd9846ec6d689a25673a564a97592e7efae78b1a11eae4d6497e115f2c2766d5badd878d332f11ad80f5f5f98
 DIST dbf-4.3.0.gem 128000 BLAKE2B 
f477f294d11622f4106ba825dbe03c2128c59dba5be27e28be8848812b9622312eaf41bec0c23e5e310f138725ae3fd8cfe949d1139a0db0057d2cc0de59d738
 SHA512 
e3046a5ca8207f95aa7195637b0aed4379c05511dd355cf27afc8a0c63c938ae5773469834e5c43a47d7f08580ad2c35691a0de063b646d2fbab658f99f0bc2e

diff --git a/dev-ruby/dbf/dbf-4.2.2.ebuild b/dev-ruby/dbf/dbf-4.2.2.ebuild
deleted file mode 100644
index 7f68351f26c6..
--- a/dev-ruby/dbf/dbf-4.2.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_DOCDIR="docs"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Small fast library for reading dBase, xBase, Clipper, FoxPro 
databases"
-HOMEPAGE="https://github.com/infused/dbf;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""



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

2023-12-31 Thread Hans de Graaff
commit: cb63c6345247a4d5d53567508ace25eebdcfbd78
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:32:46 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:32:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb63c634

dev-ruby/daemons: enable ruby33

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

 dev-ruby/daemons/daemons-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/daemons/daemons-1.4.1.ebuild 
b/dev-ruby/daemons/daemons-1.4.1.ebuild
index 84d7aa9d69d4..5d257fb36dc3 100644
--- a/dev-ruby/daemons/daemons-1.4.1.ebuild
+++ b/dev-ruby/daemons/daemons-1.4.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="Releases README.md"
 



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

2023-12-31 Thread Hans de Graaff
commit: 9ddd7e540272e0a5ad16e1565fa9ebacc838cafb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:21:53 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:21:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddd7e54

dev-ruby/equatable: enable ruby33

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

 dev-ruby/equatable/equatable-0.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/equatable/equatable-0.7.0-r1.ebuild 
b/dev-ruby/equatable/equatable-0.7.0-r1.ebuild
index 72b515f24fad..469beec18f89 100644
--- a/dev-ruby/equatable/equatable-0.7.0-r1.ebuild
+++ b/dev-ruby/equatable/equatable-0.7.0-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 43cb1a7715b63f840329965676693f9f37fb980d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:22:41 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:22:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43cb1a77

dev-ruby/equalizer: enable ruby33

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

 dev-ruby/equalizer/equalizer-0.0.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/equalizer/equalizer-0.0.11-r2.ebuild 
b/dev-ruby/equalizer/equalizer-0.0.11-r2.ebuild
index bf2f6202e98b..65106cfb6363 100644
--- a/dev-ruby/equalizer/equalizer-0.0.11-r2.ebuild
+++ b/dev-ruby/equalizer/equalizer-0.0.11-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"
 RUBY_FAKEGEM_TASK_DOC=""



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

2023-12-31 Thread Hans de Graaff
commit: 48aad445d2eece828968d205ffb26db0b6518fc7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:29:37 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:29:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48aad445

dev-ruby/dependor: enable ruby33

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

 dev-ruby/dependor/dependor-1.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/dependor/dependor-1.0.1-r1.ebuild 
b/dev-ruby/dependor/dependor-1.0.1-r1.ebuild
index a357d2d83d0a..102995d6e2d4 100644
--- a/dev-ruby/dependor/dependor-1.0.1-r1.ebuild
+++ b/dev-ruby/dependor/dependor-1.0.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 98f4f659f767c18537417a041d5e901bdc9fc879
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:21:06 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:21:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f4f659

dev-ruby/fake_ftp: enable ruby33

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

 dev-ruby/fake_ftp/fake_ftp-0.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fake_ftp/fake_ftp-0.3.0.ebuild 
b/dev-ruby/fake_ftp/fake_ftp-0.3.0.ebuild
index 336cf5b23e41..5de2dbec7c43 100644
--- a/dev-ruby/fake_ftp/fake_ftp-0.3.0.ebuild
+++ b/dev-ruby/fake_ftp/fake_ftp-0.3.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/celery/

2023-12-31 Thread Moritz Brunner
commit: 75cddc79d0c1300954ce89c8f0abad2605c60dc0
Author: Moritz Brunner  posteo  de>
AuthorDate: Sun Dec 31 19:32:19 2023 +
Commit: Moritz Brunner  posteo  de>
CommitDate: Sun Dec 31 19:34:58 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=75cddc79

dev-python/celery:  Add missing dependency to python-dateutil

Generating the documentation with USE=doc fails without this
package. Furthermore, it is listed in requirements/default.txt
as global runtime dependency.

Closes: https://bugs.gentoo.org/920205
Signed-off-by: Moritz Brunner  posteo.de>

 dev-python/celery/celery-5.3.6.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/celery/celery-5.3.6.ebuild 
b/dev-python/celery/celery-5.3.6.ebuild
index 9381094487..2245d6e3cb 100644
--- a/dev-python/celery/celery-5.3.6.ebuild
+++ b/dev-python/celery/celery-5.3.6.ebuild
@@ -30,6 +30,7 @@ RDEPEND="
dev-python/click-didyoumean[${PYTHON_USEDEP}]
dev-python/click-plugins[${PYTHON_USEDEP}]
dev-python/click-repl[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
>=dev-python/kombu-5.3.0_beta1[${PYTHON_USEDEP}]


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

2023-12-31 Thread Hans de Graaff
commit: 9903ae2bd24b781001e9115590d4ace61806ae12
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:16:46 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:16:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9903ae2b

dev-ruby/filesize: enable ruby33

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

 dev-ruby/filesize/filesize-0.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/filesize/filesize-0.2.0-r1.ebuild 
b/dev-ruby/filesize/filesize-0.2.0-r1.ebuild
index 027b56859127..4864cb761b5a 100644
--- a/dev-ruby/filesize/filesize-0.2.0-r1.ebuild
+++ b/dev-ruby/filesize/filesize-0.2.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 369e5d93ddbd00b8b8a5822d9cc9b599781a71fc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:11:48 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:11:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=369e5d93

dev-ruby/hashr: enable ruby33

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

 dev-ruby/hashr/hashr-2.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/hashr/hashr-2.0.1-r1.ebuild 
b/dev-ruby/hashr/hashr-2.0.1-r1.ebuild
index 6c3ce7fcd47f..e1cb77430153 100644
--- a/dev-ruby/hashr/hashr-2.0.1-r1.ebuild
+++ b/dev-ruby/hashr/hashr-2.0.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 06488048aeab392067b4d1338fdc9cff9f680c99
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:14:10 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:14:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06488048

dev-ruby/forgery: enable ruby33

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

 dev-ruby/forgery/forgery-0.8.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/forgery/forgery-0.8.1-r1.ebuild 
b/dev-ruby/forgery/forgery-0.8.1-r1.ebuild
index c1824e5391e0..9df1b010a15c 100644
--- a/dev-ruby/forgery/forgery-0.8.1-r1.ebuild
+++ b/dev-ruby/forgery/forgery-0.8.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="README.markdown"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2023-12-31 Thread Hans de Graaff
commit: 53dceabd8a52a9f23861d29094458c7e0858de32
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:17:37 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:17:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53dceabd

dev-ruby/fiber-local: enable ruby33

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

 dev-ruby/fiber-local/fiber-local-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fiber-local/fiber-local-1.0.0.ebuild 
b/dev-ruby/fiber-local/fiber-local-1.0.0.ebuild
index 4ae83e6f6a06..87e471a8fae8 100644
--- a/dev-ruby/fiber-local/fiber-local-1.0.0.ebuild
+++ b/dev-ruby/fiber-local/fiber-local-1.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2023-12-31 Thread Hans de Graaff
commit: 4570eb6e79df3a83a4ba5abf1c90a622fc44df79
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:19:49 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:19:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4570eb6e

dev-ruby/fast_gettext: enable ruby33

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

 dev-ruby/fast_gettext/fast_gettext-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fast_gettext/fast_gettext-2.3.0.ebuild 
b/dev-ruby/fast_gettext/fast_gettext-2.3.0.ebuild
index 869821381c01..3ee6d07d7a0b 100644
--- a/dev-ruby/fast_gettext/fast_gettext-2.3.0.ebuild
+++ b/dev-ruby/fast_gettext/fast_gettext-2.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md"



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

2023-12-31 Thread Hans de Graaff
commit: 1cc95d5f7dfa687e29c7d996c47f600fc9591f44
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:18:51 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:18:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cc95d5f

dev-ruby/ffi: enable ruby33

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

 dev-ruby/ffi/ffi-1.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/ffi/ffi-1.16.3.ebuild b/dev-ruby/ffi/ffi-1.16.3.ebuild
index 1f9cadb369d9..de78f53b4b27 100644
--- a/dev-ruby/ffi/ffi-1.16.3.ebuild
+++ b/dev-ruby/ffi/ffi-1.16.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2023-12-31 Thread Hans de Graaff
commit: 9cfaebbcb521aed9516c4a6f384dafdef62720f7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 31 19:13:21 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 31 19:13:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cfaebbc

dev-ruby/forwardable-extended: enable ruby33

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

 dev-ruby/forwardable-extended/forwardable-extended-2.6.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/forwardable-extended/forwardable-extended-2.6.0-r2.ebuild 
b/dev-ruby/forwardable-extended/forwardable-extended-2.6.0-r2.ebuild
index fb97c7c909a4..e5b8d89aba4c 100644
--- a/dev-ruby/forwardable-extended/forwardable-extended-2.6.0-r2.ebuild
+++ b/dev-ruby/forwardable-extended/forwardable-extended-2.6.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



  1   2   3   4   >