[gentoo-commits] repo/gentoo:master commit in: sys-kernel/ugrd/
commit: 3948cb4bc9b7cba44004e290fc3f9a992a740190 Author: Zen pyl onl> AuthorDate: Tue Sep 3 02:25:22 2024 + Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Sep 3 07:36:47 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3948cb4b sys-kernel/ugrd: add 1.19.4 Signed-off-by: Zen pyl.onl> Signed-off-by: Andrew Ammerlaan gentoo.org> sys-kernel/ugrd/Manifest | 1 + sys-kernel/ugrd/ugrd-1.19.4.ebuild | 74 ++ 2 files changed, 75 insertions(+) diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest index 23c8c935bd93..ad753f69ed79 100644 --- a/sys-kernel/ugrd/Manifest +++ b/sys-kernel/ugrd/Manifest @@ -1,3 +1,4 @@ DIST ugrd-1.13.0.tar.gz 63781 BLAKE2B 3f2d3095c6303b16947121071dabdbef81baaea5a7e208d53250e57edf136618497710ce3cca2906b87fbdc529b8a9ef119659365bba8c795594774cf8d096f6 SHA512 a745685668e981accfd32d1c47c6cf506ae63304ef5b3fdad200731db75b76fe56a4339876465bb1857c2fed35c273f95bbce390224fa0d01aebd67adbc31aa6 DIST ugrd-1.17.0.tar.gz 69517 BLAKE2B 2acadac8ab3830791146522ccfff6f8c5e98eff4cea355dafd5f5498bedf5d0f200ec2bc2ee4a20c62e3920590c70b2c788c776c148e7291cd3391eb2e0018df SHA512 5caeebadb579536a60cecd6c9fd9036c178ab5c5700418b95841e7102ac0c3c5fa14ceebc9994a86f65bd0623ca819ed7cb7a986f412e0358c9597c0e579f90c DIST ugrd-1.19.3.tar.gz 63991 BLAKE2B f0eb6298504969eb2740b054e45fcb541980fa7ae6aa157ea4ab275f3c24d853656dda1df4aa82c59abaa294c14e8ad1ecfbb33fa41826aff96474ad2cfb627e SHA512 0a0679a881f16fc42af6ee8b3de00da747ca685aa5dbd4ac0496097bf9642fd74d3a8f5dd6722f712065afe0574d75f5a4e4a90a2ba23f10c65015f004660206 +DIST ugrd-1.19.4.tar.gz 63998 BLAKE2B b6a0f7db7e962f84d695e478f79116329b622505393d17c94d3501ab461dafd3047c25f7ad14b8c4ceea9177b4fdb6e3536952a440096af6619fdf4154252254 SHA512 8504d1f673ed1c1510729376e4419166f88357ef655106c20783071b3dc6c442e9b9ae166781de55f60572ce24f8f31eb3079750d523d99340aafed822073729 diff --git a/sys-kernel/ugrd/ugrd-1.19.4.ebuild b/sys-kernel/ugrd/ugrd-1.19.4.ebuild new file mode 100644 index ..6869d9c50265 --- /dev/null +++ b/sys-kernel/ugrd/ugrd-1.19.4.ebuild @@ -0,0 +1,74 @@ +# Copyright 2023-2024 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 shell-completion + +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 ~arm64" + +RDEPEND=" + app-misc/pax-utils + >=dev-python/zenlib-2.2.3[${PYTHON_USEDEP}] + >=dev-python/pycpio-1.3.2[${PYTHON_USEDEP}] + sys-apps/pciutils +" + +BDEPEND=" + test? ( + amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) + arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) + ) +" + +python_install_all() { + # Call the distutils-r1_python_install_all function + distutils-r1_python_install_all + # Install the example config into /etc/ugrd/config.toml + # Do not overwrite an existing config + insinto /etc/ugrd + newins examples/example.toml config.toml + + # Install the kernel preinst.d hook + exeinto /usr/lib/kernel/preinst.d + doexe hooks/installkernel/52-ugrd.install + exeinto /usr/lib/kernel/install.d + doexe hooks/kernel-install/52-ugrd.install + + dobashcomp completion/ugrd # Install bash autocomplete script + dozshcomp completion/_ugrd # Install zsh autocomplete script +} + +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 + optfeature "ugrd.fs.lvm support" sys-fs/lvm2[lvm] +} + +distutils_enable_tests unittest + +src_test() { + if [[ ! -w '/dev/kvm' ]]; then + ewarn "Skipping tests: Cannot write to /dev/kvm." + return 1 + fi + if [[ ! -r "$(command -v mount)" ]]; then + ewarn "Cannot read the mount binary, tests may fail until" + ewarn "util-linux is re-emerged without the sfperms feature." + fi + + distutils-r1_src_test +} + +python_test() { + eunittest tests/ +}
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/ugrd/
commit: 702358da0d3785c43d21fd86509f104e4dbd838c Author: Zen pyl onl> AuthorDate: Tue Sep 3 02:25:49 2024 + Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Sep 3 07:36:51 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=702358da sys-kernel/ugrd: drop 1.19.3 Signed-off-by: Zen pyl.onl> Closes: https://github.com/gentoo/gentoo/pull/38388 Signed-off-by: Andrew Ammerlaan gentoo.org> sys-kernel/ugrd/Manifest | 1 - sys-kernel/ugrd/ugrd-1.19.3.ebuild | 74 -- 2 files changed, 75 deletions(-) diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest index ad753f69ed79..4554e26996ce 100644 --- a/sys-kernel/ugrd/Manifest +++ b/sys-kernel/ugrd/Manifest @@ -1,4 +1,3 @@ DIST ugrd-1.13.0.tar.gz 63781 BLAKE2B 3f2d3095c6303b16947121071dabdbef81baaea5a7e208d53250e57edf136618497710ce3cca2906b87fbdc529b8a9ef119659365bba8c795594774cf8d096f6 SHA512 a745685668e981accfd32d1c47c6cf506ae63304ef5b3fdad200731db75b76fe56a4339876465bb1857c2fed35c273f95bbce390224fa0d01aebd67adbc31aa6 DIST ugrd-1.17.0.tar.gz 69517 BLAKE2B 2acadac8ab3830791146522ccfff6f8c5e98eff4cea355dafd5f5498bedf5d0f200ec2bc2ee4a20c62e3920590c70b2c788c776c148e7291cd3391eb2e0018df SHA512 5caeebadb579536a60cecd6c9fd9036c178ab5c5700418b95841e7102ac0c3c5fa14ceebc9994a86f65bd0623ca819ed7cb7a986f412e0358c9597c0e579f90c -DIST ugrd-1.19.3.tar.gz 63991 BLAKE2B f0eb6298504969eb2740b054e45fcb541980fa7ae6aa157ea4ab275f3c24d853656dda1df4aa82c59abaa294c14e8ad1ecfbb33fa41826aff96474ad2cfb627e SHA512 0a0679a881f16fc42af6ee8b3de00da747ca685aa5dbd4ac0496097bf9642fd74d3a8f5dd6722f712065afe0574d75f5a4e4a90a2ba23f10c65015f004660206 DIST ugrd-1.19.4.tar.gz 63998 BLAKE2B b6a0f7db7e962f84d695e478f79116329b622505393d17c94d3501ab461dafd3047c25f7ad14b8c4ceea9177b4fdb6e3536952a440096af6619fdf4154252254 SHA512 8504d1f673ed1c1510729376e4419166f88357ef655106c20783071b3dc6c442e9b9ae166781de55f60572ce24f8f31eb3079750d523d99340aafed822073729 diff --git a/sys-kernel/ugrd/ugrd-1.19.3.ebuild b/sys-kernel/ugrd/ugrd-1.19.3.ebuild deleted file mode 100644 index 6869d9c50265.. --- a/sys-kernel/ugrd/ugrd-1.19.3.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 2023-2024 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 shell-completion - -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 ~arm64" - -RDEPEND=" - app-misc/pax-utils - >=dev-python/zenlib-2.2.3[${PYTHON_USEDEP}] - >=dev-python/pycpio-1.3.2[${PYTHON_USEDEP}] - sys-apps/pciutils -" - -BDEPEND=" - test? ( - amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) - arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) - ) -" - -python_install_all() { - # Call the distutils-r1_python_install_all function - distutils-r1_python_install_all - # Install the example config into /etc/ugrd/config.toml - # Do not overwrite an existing config - insinto /etc/ugrd - newins examples/example.toml config.toml - - # Install the kernel preinst.d hook - exeinto /usr/lib/kernel/preinst.d - doexe hooks/installkernel/52-ugrd.install - exeinto /usr/lib/kernel/install.d - doexe hooks/kernel-install/52-ugrd.install - - dobashcomp completion/ugrd # Install bash autocomplete script - dozshcomp completion/_ugrd # Install zsh autocomplete script -} - -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 - optfeature "ugrd.fs.lvm support" sys-fs/lvm2[lvm] -} - -distutils_enable_tests unittest - -src_test() { - if [[ ! -w '/dev/kvm' ]]; then - ewarn "Skipping tests: Cannot write to /dev/kvm." - return 1 - fi - if [[ ! -r "$(command -v mount)" ]]; then - ewarn "Cannot read the mount binary, tests may fail until" - ewarn "util-linux is re-emerged without the sfperms feature." - fi - - distutils-r1_src_test -} - -python_test() { - eunittest tests/ -}
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/
commit: 0ecb8ab7ee3e58c2f57a301af75a1e581a451fcc Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 06:18:25 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:25 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ecb8ab7 dev-qt/qtwebengine: update build space requirement for 6.8+ Last build test for 6.8. used exactly 8.0GiB, ebuild checks for 8G but that's too borderline and should do +1 Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtwebengine/qtwebengine-6.8..ebuild | 2 +- dev-qt/qtwebengine/qtwebengine-6..ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-qt/qtwebengine/qtwebengine-6.8..ebuild b/dev-qt/qtwebengine/qtwebengine-6.8..ebuild index 9b53b2db546f..f5dd4f0bc835 100644 --- a/dev-qt/qtwebengine/qtwebengine-6.8..ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6.8..ebuild @@ -127,7 +127,7 @@ qtwebengine_check-reqs() { ewarn "If run into issues, please try disabling before reporting a bug." fi - local CHECKREQS_DISK_BUILD=8G + local CHECKREQS_DISK_BUILD=9G local CHECKREQS_DISK_USR=360M if ! has distcc ${FEATURES}; then #830661 diff --git a/dev-qt/qtwebengine/qtwebengine-6..ebuild b/dev-qt/qtwebengine/qtwebengine-6..ebuild index 9b53b2db546f..f5dd4f0bc835 100644 --- a/dev-qt/qtwebengine/qtwebengine-6..ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6..ebuild @@ -127,7 +127,7 @@ qtwebengine_check-reqs() { ewarn "If run into issues, please try disabling before reporting a bug." fi - local CHECKREQS_DISK_BUILD=8G + local CHECKREQS_DISK_BUILD=9G local CHECKREQS_DISK_USR=360M if ! has distcc ${FEATURES}; then #830661
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qt3d/
commit: 2d7610a68694b3a3807a7a14b19649110bb390e2 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:09:42 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:25 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d7610a6 dev-qt/qt3d: re-enable unity builds in 6.8+ Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qt3d/qt3d-6.8..ebuild | 1 - dev-qt/qt3d/qt3d-6..ebuild | 1 - 2 files changed, 2 deletions(-) diff --git a/dev-qt/qt3d/qt3d-6.8..ebuild b/dev-qt/qt3d/qt3d-6.8..ebuild index 5e1b7809f57e..c67d6bef95e6 100644 --- a/dev-qt/qt3d/qt3d-6.8..ebuild +++ b/dev-qt/qt3d/qt3d-6.8..ebuild @@ -30,7 +30,6 @@ src_configure() { local mycmakeargs=( $(cmake_use_find_package qml Qt6Qml) -DQT_FEATURE_qt3d_system_assimp=ON - -DQT_UNITY_BUILD=OFF # fails to build ) qt6-build_src_configure diff --git a/dev-qt/qt3d/qt3d-6..ebuild b/dev-qt/qt3d/qt3d-6..ebuild index 5e1b7809f57e..c67d6bef95e6 100644 --- a/dev-qt/qt3d/qt3d-6..ebuild +++ b/dev-qt/qt3d/qt3d-6..ebuild @@ -30,7 +30,6 @@ src_configure() { local mycmakeargs=( $(cmake_use_find_package qml Qt6Qml) -DQT_FEATURE_qt3d_system_assimp=ON - -DQT_UNITY_BUILD=OFF # fails to build ) qt6-build_src_configure
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qttools/
commit: 1d9e509b18a4a4f7b02a90c2e469b92d855c15d1 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:11:53 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d9e509b dev-qt/qttools: re-enable unity builds for designer in 6.8+ Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qttools/qttools-6.8..ebuild | 2 -- dev-qt/qttools/qttools-6..ebuild | 2 -- 2 files changed, 4 deletions(-) diff --git a/dev-qt/qttools/qttools-6.8..ebuild b/dev-qt/qttools/qttools-6.8..ebuild index 09cdab1c0bb0..22ec0d708b1f 100644 --- a/dev-qt/qttools/qttools-6.8..ebuild +++ b/dev-qt/qttools/qttools-6.8..ebuild @@ -93,8 +93,6 @@ src_configure() { # QtHelp into another package so that qtdeclarative can depend on it # without a circular dependency with qttools $(cmake_use_find_package qmlls Qt6QmlLSPrivate) - - $(usev designer -DQT_UNITY_BUILD=OFF) # fails to build (QTBUG-122634) ) qt6-build_src_configure diff --git a/dev-qt/qttools/qttools-6..ebuild b/dev-qt/qttools/qttools-6..ebuild index 09cdab1c0bb0..22ec0d708b1f 100644 --- a/dev-qt/qttools/qttools-6..ebuild +++ b/dev-qt/qttools/qttools-6..ebuild @@ -93,8 +93,6 @@ src_configure() { # QtHelp into another package so that qtdeclarative can depend on it # without a circular dependency with qttools $(cmake_use_find_package qmlls Qt6QmlLSPrivate) - - $(usev designer -DQT_UNITY_BUILD=OFF) # fails to build (QTBUG-122634) ) qt6-build_src_configure
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtconnectivity/
commit: 8137b4905ffd0b7642f2a069b94300ee8982fa66 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:25:56 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8137b490 dev-qt/qtconnectivity: sync live keywords Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtconnectivity/qtconnectivity-6.7..ebuild | 2 +- dev-qt/qtconnectivity/qtconnectivity-6.8..ebuild | 2 +- dev-qt/qtconnectivity/qtconnectivity-6..ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-qt/qtconnectivity/qtconnectivity-6.7..ebuild b/dev-qt/qtconnectivity/qtconnectivity-6.7..ebuild index da4242aa89dc..c9923654ba1c 100644 --- a/dev-qt/qtconnectivity/qtconnectivity-6.7..ebuild +++ b/dev-qt/qtconnectivity/qtconnectivity-6.7..ebuild @@ -8,7 +8,7 @@ inherit qt6-build DESCRIPTION="Bluetooth and NFC support library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="+bluetooth nfc smartcard" diff --git a/dev-qt/qtconnectivity/qtconnectivity-6.8..ebuild b/dev-qt/qtconnectivity/qtconnectivity-6.8..ebuild index 9f8e25a38f2c..ed26392897ad 100644 --- a/dev-qt/qtconnectivity/qtconnectivity-6.8..ebuild +++ b/dev-qt/qtconnectivity/qtconnectivity-6.8..ebuild @@ -8,7 +8,7 @@ inherit qt6-build DESCRIPTION="Bluetooth and NFC support library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="+bluetooth neard nfc smartcard" diff --git a/dev-qt/qtconnectivity/qtconnectivity-6..ebuild b/dev-qt/qtconnectivity/qtconnectivity-6..ebuild index 9f8e25a38f2c..ed26392897ad 100644 --- a/dev-qt/qtconnectivity/qtconnectivity-6..ebuild +++ b/dev-qt/qtconnectivity/qtconnectivity-6..ebuild @@ -8,7 +8,7 @@ inherit qt6-build DESCRIPTION="Bluetooth and NFC support library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="+bluetooth neard nfc smartcard"
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/
commit: a5ab0becca55c5723ce4903c3e1193f4553a7d86 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:29:10 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ab0bec dev-qt/qtwebengine: cleanup exporting NINJA Not used anymore given patch was removed in favor of relying on app-alternatives/ninja to select. NINJAFLAGS is still recognized by a patch (not by ninja!). Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtwebengine/qtwebengine-6.7..ebuild | 2 +- dev-qt/qtwebengine/qtwebengine-6.8..ebuild | 2 +- dev-qt/qtwebengine/qtwebengine-6..ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild index 068abfec79cb..49de5422603a 100644 --- a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild @@ -243,7 +243,7 @@ src_configure() { use arm64 && tc-is-gcc && filter-flags '-march=*' '-mcpu=*' fi - export NINJA NINJAFLAGS=$(get_NINJAOPTS) + export NINJAFLAGS=$(get_NINJAOPTS) [[ ${NINJA_VERBOSE^^} == OFF ]] || NINJAFLAGS+=" -v" local -x EXTRA_GN="${mygnargs[*]} ${EXTRA_GN}" diff --git a/dev-qt/qtwebengine/qtwebengine-6.8..ebuild b/dev-qt/qtwebengine/qtwebengine-6.8..ebuild index f5dd4f0bc835..fec93a911d24 100644 --- a/dev-qt/qtwebengine/qtwebengine-6.8..ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6.8..ebuild @@ -244,7 +244,7 @@ src_configure() { use arm64 && tc-is-gcc && filter-flags '-march=*' '-mcpu=*' fi - export NINJA NINJAFLAGS=$(get_NINJAOPTS) + export NINJAFLAGS=$(get_NINJAOPTS) [[ ${NINJA_VERBOSE^^} == OFF ]] || NINJAFLAGS+=" -v" local -x EXTRA_GN="${mygnargs[*]} ${EXTRA_GN}" diff --git a/dev-qt/qtwebengine/qtwebengine-6..ebuild b/dev-qt/qtwebengine/qtwebengine-6..ebuild index f5dd4f0bc835..fec93a911d24 100644 --- a/dev-qt/qtwebengine/qtwebengine-6..ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6..ebuild @@ -244,7 +244,7 @@ src_configure() { use arm64 && tc-is-gcc && filter-flags '-march=*' '-mcpu=*' fi - export NINJA NINJAFLAGS=$(get_NINJAOPTS) + export NINJAFLAGS=$(get_NINJAOPTS) [[ ${NINJA_VERBOSE^^} == OFF ]] || NINJAFLAGS+=" -v" local -x EXTRA_GN="${mygnargs[*]} ${EXTRA_GN}"
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/
commit: c6c6f8345183444a509fa60aa7f32b2e3aa0c554 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:24:49 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:26 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6c6f834 dev-qt/qtspeech: sync live keywords Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtspeech/qtspeech-6.7..ebuild | 2 +- dev-qt/qtspeech/qtspeech-6.8..ebuild | 2 +- dev-qt/qtspeech/qtspeech-6..ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-qt/qtspeech/qtspeech-6.7..ebuild b/dev-qt/qtspeech/qtspeech-6.7..ebuild index b668e25bbabd..1b13d4434223 100644 --- a/dev-qt/qtspeech/qtspeech-6.7..ebuild +++ b/dev-qt/qtspeech/qtspeech-6.7..ebuild @@ -13,7 +13,7 @@ inherit qt6-build DESCRIPTION="Text-to-speech library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="flite qml +speechd" diff --git a/dev-qt/qtspeech/qtspeech-6.8..ebuild b/dev-qt/qtspeech/qtspeech-6.8..ebuild index b668e25bbabd..1b13d4434223 100644 --- a/dev-qt/qtspeech/qtspeech-6.8..ebuild +++ b/dev-qt/qtspeech/qtspeech-6.8..ebuild @@ -13,7 +13,7 @@ inherit qt6-build DESCRIPTION="Text-to-speech library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="flite qml +speechd" diff --git a/dev-qt/qtspeech/qtspeech-6..ebuild b/dev-qt/qtspeech/qtspeech-6..ebuild index b668e25bbabd..1b13d4434223 100644 --- a/dev-qt/qtspeech/qtspeech-6..ebuild +++ b/dev-qt/qtspeech/qtspeech-6..ebuild @@ -13,7 +13,7 @@ inherit qt6-build DESCRIPTION="Text-to-speech library for the Qt6 framework" if [[ ${QT6_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi IUSE="flite qml +speechd"
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtbase/
commit: df482aab0062cc4cfd13a051b0bdb48707a06d54 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 07:17:39 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:25 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df482aab dev-qt/qtbase: minor style adjustments + add missing bug number Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtbase/qtbase-6.7..ebuild | 5 ++--- dev-qt/qtbase/qtbase-6.8..ebuild | 5 ++--- dev-qt/qtbase/qtbase-6..ebuild | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/dev-qt/qtbase/qtbase-6.7..ebuild b/dev-qt/qtbase/qtbase-6.7..ebuild index cc0ae2b0de2c..b4cd4854a401 100644 --- a/dev-qt/qtbase/qtbase-6.7..ebuild +++ b/dev-qt/qtbase/qtbase-6.7..ebuild @@ -165,11 +165,10 @@ src_prepare() { } src_configure() { - # The only component that uses gdk backends is the qgtk3 platformtheme plugin if use gtk; then - # defang automagic dependencies - use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND + # defang automagic dependencies (bug #624960) use X || append-cxxflags -DGENTOO_GTK_HIDE_X11 + use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND fi local mycmakeargs=( diff --git a/dev-qt/qtbase/qtbase-6.8..ebuild b/dev-qt/qtbase/qtbase-6.8..ebuild index 7c4afe2f0a19..3c595f73638f 100644 --- a/dev-qt/qtbase/qtbase-6.8..ebuild +++ b/dev-qt/qtbase/qtbase-6.8..ebuild @@ -165,11 +165,10 @@ src_prepare() { } src_configure() { - # The only component that uses gdk backends is the qgtk3 platformtheme plugin if use gtk; then - # defang automagic dependencies - use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND + # defang automagic dependencies (bug #624960) use X || append-cxxflags -DGENTOO_GTK_HIDE_X11 + use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND fi local mycmakeargs=( diff --git a/dev-qt/qtbase/qtbase-6..ebuild b/dev-qt/qtbase/qtbase-6..ebuild index 7c4afe2f0a19..3c595f73638f 100644 --- a/dev-qt/qtbase/qtbase-6..ebuild +++ b/dev-qt/qtbase/qtbase-6..ebuild @@ -165,11 +165,10 @@ src_prepare() { } src_configure() { - # The only component that uses gdk backends is the qgtk3 platformtheme plugin if use gtk; then - # defang automagic dependencies - use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND + # defang automagic dependencies (bug #624960) use X || append-cxxflags -DGENTOO_GTK_HIDE_X11 + use wayland || append-cxxflags -DGENTOO_GTK_HIDE_WAYLAND fi local mycmakeargs=(
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtbase/, dev-qt/qtbase/files/
commit: daf905fe1fc41ee90b3fa9851b9fca858fecb789 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 06:39:34 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 07:43:25 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf905fe dev-qt/qtbase: forward qcontiguouscache patch to <=6.8 Upstreamed but currently is only in dev branch, and unclear if it will make it in 6.7.3 or 6.8.0 before release (-rc is not far for 6.8). Not to forget, add in 6.7. and 6.8. until it fails to apply. Also scrub & add links. Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtbase/files/qtbase-6.7.2-qcontiguouscache.patch | 13 + dev-qt/qtbase/files/qtbase-6.8.0-qcontiguouscache.patch | 14 ++ dev-qt/qtbase/qtbase-6.7..ebuild| 1 + dev-qt/qtbase/qtbase-6.8..ebuild| 1 + 4 files changed, 21 insertions(+), 8 deletions(-) diff --git a/dev-qt/qtbase/files/qtbase-6.7.2-qcontiguouscache.patch b/dev-qt/qtbase/files/qtbase-6.7.2-qcontiguouscache.patch index d010222e09da..02219feaf681 100644 --- a/dev-qt/qtbase/files/qtbase-6.7.2-qcontiguouscache.patch +++ b/dev-qt/qtbase/files/qtbase-6.7.2-qcontiguouscache.patch @@ -1,11 +1,8 @@ -diff '--color=auto' -ruN qtbase-everywhere-src-6.7.2/src/corelib/tools/qcontiguouscache.h my/src/corelib/tools/qcontiguouscache.h qtbase-everywhere-src-6.7.2/src/corelib/tools/qcontiguouscache.h 2024-05-07 01:06:44.0 +0200 -+++ my/src/corelib/tools/qcontiguouscache.h2024-08-25 18:20:13.958793266 +0200 -@@ -8,6 +8,7 @@ - #include - #include +https://bugs.gentoo.org/938475 +Older version of https://codereview.qt-project.org/c/qt/qtbase/+/585668 for 6.7 +--- a/src/corelib/tools/qcontiguouscache.h b/src/corelib/tools/qcontiguouscache.h +@@ -10,2 +10,3 @@ #include +#include #include - - #include diff --git a/dev-qt/qtbase/files/qtbase-6.8.0-qcontiguouscache.patch b/dev-qt/qtbase/files/qtbase-6.8.0-qcontiguouscache.patch new file mode 100644 index ..e5f14e0a1c73 --- /dev/null +++ b/dev-qt/qtbase/files/qtbase-6.8.0-qcontiguouscache.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/938475 +https://codereview.qt-project.org/c/qt/qtbase/+/585668 +From: Sam James +Date: Sun, 25 Aug 2024 17:34:22 +0100 +Subject: [PATCH] QContiguousCache: fix include for qMin + +Include `` for `qMin`. This came up downstream +in Gentoo at https://bugs.gentoo.org/938475. +--- a/src/corelib/tools/qcontiguouscache.h b/src/corelib/tools/qcontiguouscache.h +@@ -10,2 +10,3 @@ + #include ++#include + #include diff --git a/dev-qt/qtbase/qtbase-6.7..ebuild b/dev-qt/qtbase/qtbase-6.7..ebuild index b4cd4854a401..85c2de60245c 100644 --- a/dev-qt/qtbase/qtbase-6.7..ebuild +++ b/dev-qt/qtbase/qtbase-6.7..ebuild @@ -145,6 +145,7 @@ PATCHES=( "${FILESDIR}"/${PN}-6.5.2-no-symlink-check.patch "${FILESDIR}"/${PN}-6.6.1-forkfd-childstack-size.patch "${FILESDIR}"/${PN}-6.6.3-gcc14-avx512fp16.patch + "${FILESDIR}"/${PN}-6.7.2-qcontiguouscache.patch ) src_prepare() { diff --git a/dev-qt/qtbase/qtbase-6.8..ebuild b/dev-qt/qtbase/qtbase-6.8..ebuild index 3c595f73638f..0f983d79ae6f 100644 --- a/dev-qt/qtbase/qtbase-6.8..ebuild +++ b/dev-qt/qtbase/qtbase-6.8..ebuild @@ -145,6 +145,7 @@ PATCHES=( "${FILESDIR}"/${PN}-6.5.2-no-symlink-check.patch "${FILESDIR}"/${PN}-6.6.1-forkfd-childstack-size.patch "${FILESDIR}"/${PN}-6.6.3-gcc14-avx512fp16.patch + "${FILESDIR}"/${PN}-6.8.0-qcontiguouscache.patch ) src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: dev-python/spyder-kernels/
commit: 6452db8e3b09e481f397c831cd26f04aa44a2ca9 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Sep 3 07:54:55 2024 + Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Sep 3 07:54:55 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6452db8e dev-python/spyder-kernels: drop 3.0.0_beta9 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/spyder-kernels/Manifest | 1 - .../spyder-kernels-3.0.0_beta9.ebuild | 86 -- 2 files changed, 87 deletions(-) diff --git a/dev-python/spyder-kernels/Manifest b/dev-python/spyder-kernels/Manifest index ea577b6ecf3f..a3cbe2ea28c6 100644 --- a/dev-python/spyder-kernels/Manifest +++ b/dev-python/spyder-kernels/Manifest @@ -1,3 +1,2 @@ DIST spyder_kernels-2.5.2.tar.gz 99972 BLAKE2B 178f175fe03fd2b7871681ae30d10b62a4daf9ee606477eab4f88a4d81d2692b80cdcf4f9b6d46c4cfc0394b98d798e93dda870a3f1cbe6f77e243fd2b06d97c SHA512 4cf5462d6a6e72bf13f9890fbc5a4008788e132ee3315b0ad01a00beff6b78c63f47b7b5d19be601b64984196cc1a5c4706a4c5bbe878d938e487ae9ddd9f1fc DIST spyder_kernels-3.0.0.tar.gz 242868 BLAKE2B 7cf667ce42d9f0a1c6b0df337c98a702588c546eeedfeb8150cea560c7ba5f0049ccb76f1342584f7a6cf9bf400ed2d1dbbad12f5b39ae3a3343e3449aed3414 SHA512 42c176d6c8c410b375342c2fed07dd5ff6440e857dac06097d55c1f3d34bed6d51873833523b798316f100d3f226f78cf76d661a30c7e968683eaad622d5c994 -DIST spyder_kernels-3.0.0b9.tar.gz 242468 BLAKE2B b85c35f3b0fdffcb9105a6ff15388aeb0ea08f22647d654c37b9b7003d516310039dcb2d0cb41668f0903302b330dae289d9a7063ad9f970ac757f549b871a8d SHA512 c3c68b3a7c5bbd337b4461cedc388e8a9196e9ee72c2208036abe376d1621ab5db93c23935d1bf2d711a2d0de99d06599e2e0f102dc7a5d75d5c55f13cdb2a2e diff --git a/dev-python/spyder-kernels/spyder-kernels-3.0.0_beta9.ebuild b/dev-python/spyder-kernels/spyder-kernels-3.0.0_beta9.ebuild deleted file mode 100644 index 5f91c6584c02.. --- a/dev-python/spyder-kernels/spyder-kernels-3.0.0_beta9.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{10..12} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Kernels used by spyder on its ipython console" -HOMEPAGE=" - https://github.com/spyder-ide/spyder-kernels/ - https://pypi.org/project/spyder-kernels/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" - -RDEPEND=" - dev-python/cloudpickle[${PYTHON_USEDEP}] - =dev-python/ipykernel-6.29.3[${PYTHON_USEDEP}] - dev-python/ipython-8.13.0[${PYTHON_USEDEP}] - =dev-python/jupyter-client-7.4.9[${PYTHON_USEDEP}] - dev-python/matplotlib-inline[${PYTHON_USEDEP}] - >=dev-python/pyxdg-0.26[${PYTHON_USEDEP}] - >=dev-python/pyzmq-24.0.0[${PYTHON_USEDEP}] - >=dev-python/wurlitzer-1.0.3[${PYTHON_USEDEP}] -" - -BDEPEND=" - test? ( - dev-python/cython[${PYTHON_USEDEP}] - dev-python/django[${PYTHON_USEDEP}] - dev-python/flaky[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - dev-python/h5py[${PYTHON_USEDEP}] - dev-python/pandas[${PYTHON_USEDEP}] - dev-python/xarray[${PYTHON_USEDEP}] - ' 'python*') - ) -" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # we no longer package distributed, and also removed dependency on dask - spyder_kernels/console/tests/test_console_kernel.py::test_dask_multiprocessing - - # RuntimeError: There is no current event loop in thread 'MainThread'. - # https://bugs.gentoo.org/834893 - spyder_kernels/console/tests/test_console_kernel.py::test_cwd_in_sys_path - spyder_kernels/console/tests/test_console_kernel.py::test_multiprocessing - spyder_kernels/console/tests/test_console_kernel.py::test_multiprocessing_2 - spyder_kernels/console/tests/test_console_kernel.py::test_runfile - spyder_kernels/console/tests/test_console_kernel.py::test_np_threshold - spyder_kernels/console/tests/test_console_kernel.py::test_turtle_launch - spyder_kernels/console/tests/test_console_kernel.py::test_matplotlib_inline - - # pydicom only packaged in ::sci at the moment - spyder_kernels/utils/tests/test_iofuncs.py::test_load_dicom_files -) - -python_test() { - if [[ ${EPYTHON} == pypy3 ]]; then - EPYTEST_IGNORE=( - # requires pandas - spyder_kernels/utils/tests/test_nsview.py - ) - EPYTEST_DESELECT+=( - # requires hdf5 - spyder
[gentoo-commits] repo/gentoo:master commit in: dev-python/spyder/
commit: 306c3618687229a6f02b793a03e2db0607e8621c Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Sep 3 07:54:04 2024 + Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Sep 3 07:54:04 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=306c3618 dev-python/spyder: add 6.0.0 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/spyder/Manifest| 1 + dev-python/spyder/spyder-6.0.0.ebuild | 195 ++ 2 files changed, 196 insertions(+) diff --git a/dev-python/spyder/Manifest b/dev-python/spyder/Manifest index fe88f9c9ff6e..88e72a490803 100644 --- a/dev-python/spyder/Manifest +++ b/dev-python/spyder/Manifest @@ -1,5 +1,6 @@ DIST spyder-5.5.5.gh.tar.gz 16258487 BLAKE2B 3fa3ea611fc3267918e4314027c0825905f256a7fe070534c7608a4a42938c3934f34f4dc06fe0cfc0ac32e03fbdc294974672b010aaf9bc32512b817af62e6b SHA512 5f5d25822f20f8ae8767402b037cca78b760768b9bc53ef74ed95839aa59e1c24206457fd4c71003bb9ebffe8daf8ad3bda8dd40e71cc15d3d3ee2030b284b42 DIST spyder-5.5.6.gh.tar.gz 16304234 BLAKE2B 9d14b96901276ced1644eef8dd57539036aecb067ee361b6581368b371d56b2008350969224992a35fe10ee177babca7f3e941f43b4cc3f432f6d0dec9104ead SHA512 93ce6ac2e71bd4e81ca4a630a6fe152d1bf3c83d6e5c01dda8f3e5ad2735de1948a86642f5bc589c90616935e997526b26367ce178905ad2b80faf81f36f9164 +DIST spyder-6.0.0.gh.tar.gz 15687128 BLAKE2B 23319f167eb61fecc477dd3b3deab2d62a1c12109033f262ba31e349b26ba92524bde0399ca2f8ae6ff6bbcbf400360882b92b888644b9d9767f5d894e5c06b6 SHA512 3445481df35707e103646ada5fb7eef94b1b36fdbec31e15d3cb7608f637fcf21238fec0f5747f8c7a1b5bb9770ed5355b4f0fab0f9db57bc888306c6a14c003 DIST spyder-6.0.0_rc2.gh.tar.gz 15675811 BLAKE2B 1f6c8a3a952a3b6b1a89b434bd41fbe2e793562f03463c1c95b62997d46c99b8d722620ec4355815f91a8fc57fa559f4ae15b88a058fb41516718d86f9ea6e3a SHA512 3f50ac8eb8594d8a74b885e185e1f46617e63ee726e903d01f97529c48fd0020ac045a495fa0367824a9ca9148d3aa368e03a27c44a42903bb5ad4b1aab38d82 DIST spyder-docs-32efdaebc11dab0b8e0767717342b7d306dc06ea.gh.tar.gz 94897009 BLAKE2B 30e0b42e34bddb60d8fc986183a363b71455067bc7f4411cb75a00c5758e87501ee07ad0b484caed2aa3cf91153be814c7faf935be8665b6984bce38ebcd0be2 SHA512 9f9aa56ab27aed8d27c3d653119d5c5454b4317a78a7ff27715d91cac9dec79143db85d4f1c87b10fa821eb33abc043912df308fa6c84ade59539bd633eefbd2 DIST spyder-docs-6951e02799fc7cd1f29456f1d93cfdcb570dad27.gh.tar.gz 93033557 BLAKE2B 395dd2a8ddb6e1b1408ba46cbe0fa452c1f2e69da1f3b6176401ff7395ace1463e63c696e13ee0b79f992b0ceca86228ad113f95ed7873db1b970452bc679f89 SHA512 c631e720e3ca49413482df294fb032285cf217ba94de299c37cb073e4e2bdeb629d16a139db17c569c74c628c50789c90d6085383886d32fa26b942711ccedc0 diff --git a/dev-python/spyder/spyder-6.0.0.ebuild b/dev-python/spyder/spyder-6.0.0.ebuild new file mode 100644 index ..b4c6b1eb1a62 --- /dev/null +++ b/dev-python/spyder/spyder-6.0.0.ebuild @@ -0,0 +1,195 @@ +# Copyright 1999-2024 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 optfeature virtualx xdg + +# Commit of documentation to fetch +DOCS_PV="6951e02799fc7cd1f29456f1d93cfdcb570dad27" + +DESCRIPTION="The Scientific Python Development Environment" +HOMEPAGE=" + https://www.spyder-ide.org/ + https://github.com/spyder-ide/spyder/ + https://pypi.org/project/spyder/ +" +SRC_URI=" + https://github.com/spyder-ide/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz + https://github.com/spyder-ide/${PN}-docs/archive/${DOCS_PV}.tar.gz -> ${PN}-docs-${DOCS_PV}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/aiohttp-3.9.3[${PYTHON_USEDEP}] + >=dev-python/asyncssh-2.14.0[${PYTHON_USEDEP}] + =dev-python/atomicwrites-1.2.0[${PYTHON_USEDEP}] + >=dev-python/chardet-2.0.0[${PYTHON_USEDEP}] + >=dev-util/cookiecutter-1.6.0[${PYTHON_USEDEP}] + >=dev-python/diff-match-patch-2018[${PYTHON_USEDEP}] + >=dev-python/intervaltree-3.0.2[${PYTHON_USEDEP}] + >=dev-python/jellyfish-0.7[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}] + >=dev-python/keyring-17.0.0[${PYTHON_USEDEP}] + >=dev-python/nbconvert-4.0[${PYTHON_USEDEP}] + >=dev-python/numpydoc-0.6.0[${PYTHON_USEDEP}] + >=dev-python/pexpect-4.4.0[${PYTHON_USEDEP}] + >=dev-python/pickleshare-0.4[${PYTHON_USEDEP}] + >=dev-python/psutil-5.3[${PYTHON_USEDEP}] + >=dev-python/PyGithub-2.3.0[${PYTHON_USEDEP}] + >=dev-python/pygments-2.0[${PYTHON_USEDEP}] + >=dev-python/pylint-venv-3.0.2[${PYTHON_USEDEP}] + >=dev-python/python-lsp-black-2.0.0[${PYTHON_USEDEP}] + =dev-python/pyls-spyder-0.4.0[${PYTHON_USEDEP}] + >=dev-python/pyuca-1.2[${PYTHON_USEDEP}] + >=dev-python/qdarkstyle-3.2.0[${PYTHON_USEDEP}] + =dev-python/qstylizer-0.2.2[${PYTHON_USEDEP}] + >=
[gentoo-commits] repo/gentoo:master commit in: dev-python/spyder/
commit: a84fb16fcff06226fc434292065918dbbdf1be35 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Sep 3 07:54:39 2024 + Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Sep 3 07:54:39 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84fb16f dev-python/spyder: drop 5.5.5, 6.0.0_rc2 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/spyder/Manifest| 3 - dev-python/spyder/spyder-5.5.5.ebuild | 193 - dev-python/spyder/spyder-6.0.0_rc2.ebuild | 196 -- 3 files changed, 392 deletions(-) diff --git a/dev-python/spyder/Manifest b/dev-python/spyder/Manifest index 88e72a490803..3b3e5cd9684b 100644 --- a/dev-python/spyder/Manifest +++ b/dev-python/spyder/Manifest @@ -1,6 +1,3 @@ -DIST spyder-5.5.5.gh.tar.gz 16258487 BLAKE2B 3fa3ea611fc3267918e4314027c0825905f256a7fe070534c7608a4a42938c3934f34f4dc06fe0cfc0ac32e03fbdc294974672b010aaf9bc32512b817af62e6b SHA512 5f5d25822f20f8ae8767402b037cca78b760768b9bc53ef74ed95839aa59e1c24206457fd4c71003bb9ebffe8daf8ad3bda8dd40e71cc15d3d3ee2030b284b42 DIST spyder-5.5.6.gh.tar.gz 16304234 BLAKE2B 9d14b96901276ced1644eef8dd57539036aecb067ee361b6581368b371d56b2008350969224992a35fe10ee177babca7f3e941f43b4cc3f432f6d0dec9104ead SHA512 93ce6ac2e71bd4e81ca4a630a6fe152d1bf3c83d6e5c01dda8f3e5ad2735de1948a86642f5bc589c90616935e997526b26367ce178905ad2b80faf81f36f9164 DIST spyder-6.0.0.gh.tar.gz 15687128 BLAKE2B 23319f167eb61fecc477dd3b3deab2d62a1c12109033f262ba31e349b26ba92524bde0399ca2f8ae6ff6bbcbf400360882b92b888644b9d9767f5d894e5c06b6 SHA512 3445481df35707e103646ada5fb7eef94b1b36fdbec31e15d3cb7608f637fcf21238fec0f5747f8c7a1b5bb9770ed5355b4f0fab0f9db57bc888306c6a14c003 -DIST spyder-6.0.0_rc2.gh.tar.gz 15675811 BLAKE2B 1f6c8a3a952a3b6b1a89b434bd41fbe2e793562f03463c1c95b62997d46c99b8d722620ec4355815f91a8fc57fa559f4ae15b88a058fb41516718d86f9ea6e3a SHA512 3f50ac8eb8594d8a74b885e185e1f46617e63ee726e903d01f97529c48fd0020ac045a495fa0367824a9ca9148d3aa368e03a27c44a42903bb5ad4b1aab38d82 -DIST spyder-docs-32efdaebc11dab0b8e0767717342b7d306dc06ea.gh.tar.gz 94897009 BLAKE2B 30e0b42e34bddb60d8fc986183a363b71455067bc7f4411cb75a00c5758e87501ee07ad0b484caed2aa3cf91153be814c7faf935be8665b6984bce38ebcd0be2 SHA512 9f9aa56ab27aed8d27c3d653119d5c5454b4317a78a7ff27715d91cac9dec79143db85d4f1c87b10fa821eb33abc043912df308fa6c84ade59539bd633eefbd2 DIST spyder-docs-6951e02799fc7cd1f29456f1d93cfdcb570dad27.gh.tar.gz 93033557 BLAKE2B 395dd2a8ddb6e1b1408ba46cbe0fa452c1f2e69da1f3b6176401ff7395ace1463e63c696e13ee0b79f992b0ceca86228ad113f95ed7873db1b970452bc679f89 SHA512 c631e720e3ca49413482df294fb032285cf217ba94de299c37cb073e4e2bdeb629d16a139db17c569c74c628c50789c90d6085383886d32fa26b942711ccedc0 diff --git a/dev-python/spyder/spyder-5.5.5.ebuild b/dev-python/spyder/spyder-5.5.5.ebuild deleted file mode 100644 index 4361d553e778.. --- a/dev-python/spyder/spyder-5.5.5.ebuild +++ /dev/null @@ -1,193 +0,0 @@ -# Copyright 1999-2024 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 optfeature virtualx xdg - -# Commit of documentation to fetch -DOCS_PV="32efdaebc11dab0b8e0767717342b7d306dc06ea" - -DESCRIPTION="The Scientific Python Development Environment" -HOMEPAGE=" - https://www.spyder-ide.org/ - https://github.com/spyder-ide/spyder/ - https://pypi.org/project/spyder/ -" -SRC_URI=" - https://github.com/spyder-ide/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz - https://github.com/spyder-ide/${PN}-docs/archive/${DOCS_PV}.tar.gz -> ${PN}-docs-${DOCS_PV}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND=" - >=dev-python/atomicwrites-1.2.0[${PYTHON_USEDEP}] - >=dev-python/chardet-2.0.0[${PYTHON_USEDEP}] - >=dev-util/cookiecutter-1.6.0[${PYTHON_USEDEP}] - >=dev-python/diff-match-patch-2018[${PYTHON_USEDEP}] - >=dev-python/intervaltree-3.0.2[${PYTHON_USEDEP}] - >=dev-python/jellyfish-0.7[${PYTHON_USEDEP}] - >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}] - >=dev-python/keyring-17.0.0[${PYTHON_USEDEP}] - >=dev-python/nbconvert-4.0[${PYTHON_USEDEP}] - >=dev-python/numpydoc-0.6.0[${PYTHON_USEDEP}] - >=dev-python/pexpect-4.4.0[${PYTHON_USEDEP}] - >=dev-python/pickleshare-0.4[${PYTHON_USEDEP}] - >=dev-python/psutil-5.3[${PYTHON_USEDEP}] - >=dev-python/pygments-2.0[${PYTHON_USEDEP}] - >=dev-python/pylint-venv-3.0.2[${PYTHON_USEDEP}] - >=dev-python/python-lsp-black-2.0.0[${PYTHON_USEDEP}] - =dev-python/pyls-spyder-0.4.0[${PYTHON_USEDEP}] - >=dev-python/pyxdg-0.26[${PYTHON_USEDEP}] - >=dev-python/pyzmq-24.0.0[${PYTHON_USEDEP}] - >=dev-python/qdarkstyle-3.2[${PYTHON_USEDEP}] - =dev-python/qstylizer-0.2.2[${PYTHON_USEDEP}] - >=dev-p
[gentoo-commits] repo/proj/guru:dev commit in: net-im/matterhorn-bin/
commit: 3c0f0473ee255d647ff3e5d1a1d98ae660a50d94 Author: Adrian Schollmeyer nexadn de> AuthorDate: Tue Sep 3 07:56:33 2024 + Commit: Adrian Schollmeyer nexadn de> CommitDate: Tue Sep 3 07:57:31 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c0f0473 net-im/matterhorn-bin: drop myself as a maintainer Signed-off-by: Adrian Schollmeyer nexadn.de> net-im/matterhorn-bin/metadata.xml | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/net-im/matterhorn-bin/metadata.xml b/net-im/matterhorn-bin/metadata.xml index da5a9e177..de7312b56 100644 --- a/net-im/matterhorn-bin/metadata.xml +++ b/net-im/matterhorn-bin/metadata.xml @@ -1,10 +1,7 @@ https://www.gentoo.org/dtd/metadata.dtd";> - - Adrian Schollmeyer - nex+b-...@nexadn.de - + matterhorn-chat/matterhorn
[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/smtinterpol/
commit: 016c0beb70a8e56a047afad0353b001d394fc3fe Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Jul 12 10:55:16 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:02:38 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016c0beb sci-mathematics/smtinterpol: build without BSFIX, drop java-ant-2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/596ccf2967564a9e90a0fa1dd86c5b1053f179be Signed-off-by: Miroslav Šulc gentoo.org> .../smtinterpol-2.5_p20211018-r1.ebuild| 44 ++ 1 file changed, 44 insertions(+) diff --git a/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018-r1.ebuild b/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018-r1.ebuild new file mode 100644 index ..05a73e04d6b8 --- /dev/null +++ b/sci-mathematics/smtinterpol/smtinterpol-2.5_p20211018-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +[[ ${PV} == *_p20211018 ]] && COMMIT=32d7fa8751f668f9e9a18e4e96df3337b53d2150 + +inherit java-pkg-2 + +DESCRIPTION="Interpolating SMT-solver computing Craig interpolants for various theories" +HOMEPAGE="https://ultimate.informatik.uni-freiburg.de/smtinterpol/ + https://github.com/ultimate-pa/smtinterpol/"; +SRC_URI="https://github.com/ultimate-pa/${PN}/archive/${COMMIT}.tar.gz + -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${COMMIT} + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=">=dev-java/ant-1.10.14-r3:0" +RDEPEND=">=virtual/jre-1.8:*" +DEPEND=">=virtual/jdk-1.8:*" + +PATCHES=( + "${FILESDIR}"/${PN}-Version.template-version.patch + "${FILESDIR}"/${PN}-build.xml-basename.patch +) + +src_prepare() { + default #780585 + java-pkg-2_src_prepare +} + +src_compile() { + eant all +} + +src_install() { + java-pkg_dojar dist/*.jar + java-pkg_dolauncher ${PN} --jar ${PN}.jar + + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: media-tv/mythtv/
commit: 1c7b52c258345060fc06d83735e0a5737db26b89 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Jul 11 05:37:54 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:05:54 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7b52c2 media-tv/mythtv: build without BSFIX, drop java-ant-2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/7beb35b3f67ef190d453ae594646b8a03ada94dd Signed-off-by: Miroslav Šulc gentoo.org> media-tv/mythtv/mythtv-33.1-r2.ebuild | 386 ++ 1 file changed, 386 insertions(+) diff --git a/media-tv/mythtv/mythtv-33.1-r2.ebuild b/media-tv/mythtv/mythtv-33.1-r2.ebuild new file mode 100644 index ..61c42a783f0d --- /dev/null +++ b/media-tv/mythtv/mythtv-33.1-r2.ebuild @@ -0,0 +1,386 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISABLE_AUTOFORMATTING="yes" +PYTHON_COMPAT=( python3_{10..12} ) + +inherit edo flag-o-matic java-pkg-opt-2 python-any-r1 +inherit qmake-utils readme.gentoo-r1 systemd toolchain-funcs user-info + +DESCRIPTION="Open Source DVR and media center hub" +HOMEPAGE="https://www.mythtv.org https://github.com/MythTV/mythtv"; +if [[ ${PV} == *_p* ]] ; then + MY_COMMIT="5824c588db24b4e71a7d94e829e6419f71089297" + SRC_URI="https://github.com/MythTV/mythtv/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + # mythtv and mythplugins are separate builds in the github MythTV project + S="${WORKDIR}/mythtv-${MY_COMMIT}/mythtv" +else + SRC_URI="https://github.com/MythTV/mythtv/archive/v${PV}.tar.gz -> ${P}.tar.gz" + # mythtv and mythplugins are separate builds in the github mythtv project + S="${WORKDIR}/${P}/mythtv" +fi + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE_INPUT_DEVICES="input_devices_joystick" +IUSE_VIDEO_CAPTURE_DEVICES="v4l ieee1394 hdhomerun vbox ceton" +IUSE="alsa asi autostart cdda cdr cec cpu_flags_ppc_altivec debug dvd dvb exif fftw jack java" +IUSE+=" +lame lcd libass lirc nvdec +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx" +IUSE+=" +wrapper x264 x265 +xml xmltv +xvid +X zeroconf" +IUSE+=" ${IUSE_INPUT_DEVICES} ${IUSE_VIDEO_CAPTURE_DEVICES}" +REQUIRED_USE=" + cdr? ( cdda ) +" + +RDEPEND=" + acct-user/mythtv + dev-libs/glib:2 + dev-libs/lzo + dev-libs/libzip:= + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5[jpeg] + dev-qt/qtnetwork:5 + dev-qt/qtscript:5 + dev-qt/qtsql:5[mysql] + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + media-fonts/corefonts + media-fonts/dejavu + media-fonts/liberation-fonts + media-fonts/tex-gyre + media-gfx/exiv2:= + media-libs/freetype:2 + media-libs/libbluray:=[java?] + media-libs/libsamplerate + media-libs/libsoundtouch + media-libs/taglib + sys-libs/zlib + alsa? ( media-libs/alsa-lib ) + autostart? ( + net-dialup/mingetty + x11-apps/xset + x11-wm/evilwm + ) + cec? ( dev-libs/libcec ) + dvd? ( + dev-libs/libcdio:= + media-libs/libdvdcss + sys-fs/udisks:2 + ) + fftw? ( sci-libs/fftw:3.0=[threads] ) + hdhomerun? ( media-libs/libhdhomerun ) + ieee1394? ( + media-libs/libiec61883 + sys-libs/libavc1394 + sys-libs/libraw1394 + ) + jack? ( virtual/jack ) + lame? ( media-sound/lame ) + lcd? ( app-misc/lcdproc ) + libass? ( media-libs/libass:= ) + lirc? ( app-misc/lirc ) + nvdec? ( x11-drivers/nvidia-drivers ) + opengl? ( dev-qt/qtopengl:5 ) + pulseaudio? ( media-libs/libpulse ) + systemd? ( sys-apps/systemd:= ) + vaapi? ( media-libs/libva:= ) + vdpau? ( x11-libs/libvdpau ) + vpx? ( media-libs/libvpx:= ) + x264? ( media-libs/x264:= ) + X? ( + x11-apps/xinit + x11-libs/libX11:= + x11-libs/libXext:= + x11-libs/libXinerama:= + x11-libs/libXrandr:= + x11-libs/libXv:= + x11-libs/libXxf86vm:= + x11-misc/wmctrl:= + ) + x265? ( media-libs/x265 ) + xml? ( dev-libs/libxml2:2 ) + xmltv? ( + dev-perl/XML-LibXML + media-tv/xmltv + ) + xvid? ( media-libs/xvid ) + zeroconf? ( + dev-libs/openssl:= + net-dns/avahi[mdnsresponder-compat] + ) +" +DEPEND=" + ${RDEPEND} + dev-lang/yasm + sys-kernel/linux-headers + x11-base/xorg-proto + perl? ( + dev-perl/DBD-mysql + dev-perl/DBI + dev-perl/HTTP-Message + dev-perl/IO-Socket-INET6 + dev
[gentoo-commits] repo/proj/guru:dev commit in: media-libs/wivrn/
commit: c7fb4c7c881c0cc8f0ad5bd627466a722f76ba56 Author: Patrick Nicolas laposte net> AuthorDate: Tue Sep 3 08:08:51 2024 + Commit: Patrick Nicolas laposte net> CommitDate: Tue Sep 3 08:09:11 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7fb4c7c media-libs/wivrn: fix fetchcontent download and patch Signed-off-by: Patrick Nicolas laposte.net> media-libs/wivrn/Manifest | 2 +- media-libs/wivrn/wivrn-.ebuild | 13 +++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/media-libs/wivrn/Manifest b/media-libs/wivrn/Manifest index c1e3ab106..108ca90a9 100644 --- a/media-libs/wivrn/Manifest +++ b/media-libs/wivrn/Manifest @@ -1,5 +1,5 @@ DIST boostpfr_2.2.0.tar.gz 76432 BLAKE2B 70d76a5dd0034f93ff1749b1994bcd9cd8a9b09674598958da5a8f7e1b040c62e970db4e3d221173549a19d0dd15b0810f5d12f69843ed8ac35be6697bab09e0 SHA512 86a745a44e8a6e4638b9eb9045b08de9cbf27f6d20d365eabd41587d6e1171f980a65f42a31291008c421da6cc3f436b7bf07e109aff6ab5690b19e1fb621b3d -DIST monado-dfc602288ab05131584a3f2be18031a13fccd061.tar.bz2 2903074 BLAKE2B 9ba2816c0d4352b3d51cc0be35a2d3f920e0628569562bf4f07ae3fbba64edc9d7bc78732b271cbdf994314975d7249be2a272452dbbb62f840426cf91ffd1a4 SHA512 e1644cfc84b70c6aa1aeeb51f3f48a06ceb772035a7e4ac2c3ad5110df66792975e4ca7aa92b78f8438ef0fa22d771562122444d04eb395618f1c1c261b696fe +DIST monado-2d3978b1b0d0f1ce9fc20f435c7080a07124362a.tar.bz2 3798925 BLAKE2B 5839a5476bcd06091aa903c53811fc5d934b5a5ed1f16daca72a30ff1dc262d589d84c99c5fa74c097c3aec24ba2a3daf235a3bc14e1742a5d37c677d39c2624 SHA512 088711d19fca25b22dd3d6e085dd7692e57642dc2e8181c9cafbf7c48c2d30ffadf308cad0c09bf6faf53cce7ea544645f1537fe13621f736a89a3dfbcf46ad7 DIST wivrn-0.17-server-build-deps.tar.xz 17245096 BLAKE2B b531e3abe3290454029c5ba33876db4d1374d101b44f568f3c07de3ecc31aeb3a09b0ff7221c6c2a62e14de96cbe7ea201b1b302a08a2c06f8be026253e27a3d SHA512 86526a90cd029da4ff82996861ef7f7150eb81d5adee176cd36a6ce54704e15ff86c983702beff0985d2fc90178d8daddb3d81acdb6a5796506f916ba9ffafea DIST wivrn-0.17.tar.gz 11785455 BLAKE2B e3894aea4cc660a74a09c4e6eb3bf2bcc70508625d36574be6b7d9186b4f464e2acdbb282eb1adb1b445fbaf6b6e0ead32828cdb5dcb029042e0454a0f70d795 SHA512 7f6b5348b5d5a07831120e951f95c1759ea25d16d56216760be7f6640ccfa0c121f5978761e3f397a67be636c38f8bbe99e65992cd06132d643728958af489a8 DIST wivrn-0.18-server-build-deps.tar.xz 18478712 BLAKE2B 04f60048fc64194786602f27d3abe4587bf962356d44b66c3a40bc9f597ef974d6ab8937e5959ca76160df300b9a40807fd3fd0ce542fe42203e31048ef212ed SHA512 e86e4e626f895b66facf99127023a911552799f66cc6ea7df67d583e3af0ff5b052d7f2565c1bc510dff3ddfe77b7f8cb0341b908436aa37bf841cb54788b9d5 diff --git a/media-libs/wivrn/wivrn-.ebuild b/media-libs/wivrn/wivrn-.ebuild index 15d153a54..04a438583 100644 --- a/media-libs/wivrn/wivrn-.ebuild +++ b/media-libs/wivrn/wivrn-.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/WiVRn/WiVRn.git"; - MONADO_V=dfc602288ab05131584a3f2be18031a13fccd061 + MONADO_V=2d3978b1b0d0f1ce9fc20f435c7080a07124362a PFR_V=2.2.0 SRC_URI=" https://github.com/boostorg/pfr/archive/refs/tags/${PFR_V}.tar.gz -> boostpfr_${PFR_V}.tar.gz @@ -68,6 +68,15 @@ if [[ ${PV} == ]]; then cd "${WORKDIR}" mv "monado-${MONADO_V}" "monado-src" mv "pfr-${PFR_V}" "boostpfr-src" + + local THEIR_MONADO=$(grep -A1 "https://gitlab.freedesktop.org/monado/monado"; "${P}/CMakeLists.txt" | tail -n1 | sed 's/.*GIT_TAG\s*//') + [ "${THEIR_MONADO}" == "${MONADO_V}" ] || die "Mismatched monado version: ${THEIR_MONADO} (upstream) ${MONADO_V} (ebuild)" + } + + src_prepare() { + default_src_prepare + eapply --directory="${WORKDIR}/monado-src" "${WORKDIR}/${P}/patches/monado"/* + cmake_src_prepare } else src_unpack() { @@ -79,7 +88,7 @@ fi src_configure() { if [[ ${PV} == ]]; then - GIT_DESC=$(git describe) + GIT_DESC=$(git describe --always) else GIT_DESC=${PV} fi
[gentoo-commits] repo/gentoo:master commit in: games-board/megamek/, games-board/megamek/files/
commit: e40b6922428589fffd9ca1364a3bd69a708a079f Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Jul 14 06:32:13 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:08:49 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40b6922 games-board/megamek: build without BSFIX, drop java-ant-2 an update to 0.49.19 failed. it could be built but had runtime errors see https://bugs.gentoo.org/680770 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/8a4773cd67d02d6d3c5e8c1dda4dd85f6a4d9796 Signed-off-by: Miroslav Šulc gentoo.org> .../megamek/files/megamek-0.34.10-source8.patch| 22 games-board/megamek/megamek-0.34.10-r3.ebuild | 60 ++ 2 files changed, 82 insertions(+) diff --git a/games-board/megamek/files/megamek-0.34.10-source8.patch b/games-board/megamek/files/megamek-0.34.10-source8.patch new file mode 100644 index ..27d4596d8d92 --- /dev/null +++ b/games-board/megamek/files/megamek-0.34.10-source8.patch @@ -0,0 +1,22 @@ +diff --git a/build.xml b/build.xml +index 9d3a7d6..a6732b6 100644 +--- a/build.xml b/build.xml +@@ -60,7 +60,7 @@ + + + +- ++ + + + +@@ -208,7 +208,7 @@ + + + +- ++ + + + diff --git a/games-board/megamek/megamek-0.34.10-r3.ebuild b/games-board/megamek/megamek-0.34.10-r3.ebuild new file mode 100644 index ..1de1e9c1f80e --- /dev/null +++ b/games-board/megamek/megamek-0.34.10-r3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop edos2unix java-pkg-2 + +DESCRIPTION="Unofficial online version of the Classic BattleTech board game" +HOMEPAGE="https://megamek.org/"; +SRC_URI=" + https://downloads.sourceforge.net/project/megamek/Archived%20Stable/MegaMek%20v${PV}/MegaMek-v${PV}.zip + https://dev.gentoo.org/~ionen/distfiles/${PN}.png"; +S="${WORKDIR}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-arch/unzip" +DEPEND=" + >=dev-java/ant-1.10.14-r3 + >=virtual/jdk-1.8:* +" +RDEPEND=">=virtual/jre-1.8:*" + +PATCHES=( "${FILESDIR}/megamek-0.34.10-source8.patch" ) + +src_prepare() { + default #780585 + java-pkg-2_src_prepare + + rm MegaMek.jar || die + + sed -e "s|XmX|Xmx|" \ + -e "s|/usr/share/java|${EPREFIX}/usr/share/${PN}|" \ + -e "s|/usr/share/MegaMek|${EPREFIX}/usr/share/${PN}|" \ + startup.sh > ${PN} || die + edos2unix ${PN} + + # workaround encoding issues posing problems with >=jdk-1.8 + find . -name '*.java' -exec sed -i 's/\xf6/\xc3\xb6/' {} + || die +} + +src_compile() { + eant \ + -Dant.build.javac.source="$(java-pkg_get-source)" \ + -Dant.build.javac.target="$(java-pkg_get-target)" +} + +src_install() { + dobin ${PN} + + insinto /usr/share/${PN} + doins -r MegaMek.jar data docs l10n lib mmconf readme* # readme used at runtime + + dodoc HACKING readme.txt + + doicon "${DISTDIR}"/${PN}.png + make_desktop_entry ${PN} MegaMek +}
[gentoo-commits] repo/gentoo:master commit in: dev-java/sparsebitset/
commit: dc1d0ba5d623e394df9ceb4cb4b5d16db235567b Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Oct 24 10:36:47 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:11:48 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1d0ba5 dev-java/sparsebitset: add 1.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/9ddbf8f6687ffdf5158bf382af27512dc5b2 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/sparsebitset/Manifest| 1 + dev-java/sparsebitset/sparsebitset-1.3.ebuild | 28 +++ 2 files changed, 29 insertions(+) diff --git a/dev-java/sparsebitset/Manifest b/dev-java/sparsebitset/Manifest index 170900e3d8e7..e1a04093f54e 100644 --- a/dev-java/sparsebitset/Manifest +++ b/dev-java/sparsebitset/Manifest @@ -1 +1,2 @@ +DIST SparseBitSet-1.3.tar.gz 1670241 BLAKE2B e9d8ff537b65e4c2be68d66f02595048381c4a2574e3bdc5d05602d440a57a6c7a96edb23581741a6800516e3d571dce8e016e0ce477300ce7ad08c3e81bcad2 SHA512 6851613df21bcdccb28c24535fac886d6ad74d6feb37dea477dff1711218ecf30093d90ff78becb1159c6bd570a7afbd8c86482d72a5af8f0864d6e443cd603b DIST sparsebitset-1.2.tar.gz 1669439 BLAKE2B abfd88fb21f72d22bbb1f7bff11bd2a9b4e2af84689cbe8013f27f1f138512ecf843a60b8c5c196b622d024614e7f197b349a6cd510eb1c17bd757f7c1a0d90d SHA512 0c7c182556240886e0732626561401aa8695fd46ba90e5e95c5b28c90abaf5f6fd4c3b791171cdde71f6c6b08ae8f56de105779f71d0448635cbe3b0b247 diff --git a/dev-java/sparsebitset/sparsebitset-1.3.ebuild b/dev-java/sparsebitset/sparsebitset-1.3.ebuild new file mode 100644 index ..06c06a825139 --- /dev/null +++ b/dev-java/sparsebitset/sparsebitset-1.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +MAVEN_ID="com.zaxxer:SparseBitSet:1.3" +JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="An efficient sparse bitset implementation for Java" +HOMEPAGE="https://github.com/brettwooldridge/SparseBitSet"; +SRC_URI="https://github.com/brettwooldridge/SparseBitSet/archive/SparseBitSet-${PV}.tar.gz"; +S="${WORKDIR}/SparseBitSet-SparseBitSet-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=">=virtual/jdk-1.8:* + test? ( dev-java/junit:4 )" +RDEPEND=">=virtual/jre-1.8:*" + +JAVA_AUTOMATIC_MODULE_NAME="com.zaxxer.sparsebitset" +JAVA_SRC_DIR="src/main/java" +JAVA_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_TEST_SRC_DIR="src/test/java"
[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-apache-poi/
commit: ab95447f46e7ff474a841f2c510beeab9bc51c4a Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Oct 24 18:30:03 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:13:58 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab95447f sec-keys/openpgp-keys-apache-poi: new package, add 20230921 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/d4d7e7473dcb0f6f324b658e59d3f16d767ccf94 Signed-off-by: Miroslav Šulc gentoo.org> sec-keys/openpgp-keys-apache-poi/Manifest | 1 + sec-keys/openpgp-keys-apache-poi/metadata.xml | 8 .../openpgp-keys-apache-poi-20230921.ebuild | 19 +++ 3 files changed, 28 insertions(+) diff --git a/sec-keys/openpgp-keys-apache-poi/Manifest b/sec-keys/openpgp-keys-apache-poi/Manifest new file mode 100644 index ..a973ddb645e5 --- /dev/null +++ b/sec-keys/openpgp-keys-apache-poi/Manifest @@ -0,0 +1 @@ +DIST openpgp-keys-apache-poi-20230921-KEYS.asc 167947 BLAKE2B faecd737de9c8659a41d08e30df1d5534cc3588e0e5b120b47d344a4cd80d14e6c1537352cafcea569ad03b75e2ec28e17fe60b97487343f4b57717aa91dce82 SHA512 92f0100b155f64a23f430ecb09cec48f94000615723f43c01dca275948e8ac5164e9f4b5da3dae119f7516da8b53012b8d6681497890638deba7b764645767db diff --git a/sec-keys/openpgp-keys-apache-poi/metadata.xml b/sec-keys/openpgp-keys-apache-poi/metadata.xml new file mode 100644 index ..6ef2d50cf07e --- /dev/null +++ b/sec-keys/openpgp-keys-apache-poi/metadata.xml @@ -0,0 +1,8 @@ + +https://www.gentoo.org/dtd/metadata.dtd";> + + +j...@gentoo.org +Java + + diff --git a/sec-keys/openpgp-keys-apache-poi/openpgp-keys-apache-poi-20230921.ebuild b/sec-keys/openpgp-keys-apache-poi/openpgp-keys-apache-poi-20230921.ebuild new file mode 100644 index ..e9c0eaf5c551 --- /dev/null +++ b/sec-keys/openpgp-keys-apache-poi/openpgp-keys-apache-poi-20230921.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="OpenPGP keys used by poi.apache.org" +HOMEPAGE="https://poi.apache.org/download.html"; +SRC_URI="https://downloads.apache.org/poi/KEYS -> ${P}-KEYS.asc" +S="${WORKDIR}" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" + +src_install() { + local files=( ${A} ) + insinto /usr/share/openpgp-keys + newins - poi.apache.org.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die) +}
[gentoo-commits] repo/gentoo:master commit in: dev-java/poi/
commit: 63a89d20623599431e5e226957875a40082a6234 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Oct 24 18:22:43 2023 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:16:14 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a89d20 dev-java/poi: add 5.2.5 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/cccd70f6e3a414cd0b698936643fb9973727c390 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/poi/Manifest | 2 ++ dev-java/poi/poi-5.2.5.ebuild | 60 +++ 2 files changed, 62 insertions(+) diff --git a/dev-java/poi/Manifest b/dev-java/poi/Manifest index 9057f75a73c0..d98aa33f1abc 100644 --- a/dev-java/poi/Manifest +++ b/dev-java/poi/Manifest @@ -1 +1,3 @@ DIST poi-src-5.2.3-20220909.tgz 117839114 BLAKE2B 8b62f212dbbb6c7c20900dad97eaee20d416129d1529f42d3f3d15c42dd737af389f3d46c0891f733ba6ce143fa30c73aa921a2f007e68ecbfcd2a61da27baec SHA512 15d1d9387a3003fa30dc77cb42721daefb07a0f8ef1a69873107fd2266d66ae5c0138f47f2867d49154bbde4f28939ac1aa1b49e367230408e67c05099addc1c +DIST poi-src-5.2.5-20231118.tgz 120325373 BLAKE2B a998b874040ac2fb136b9ffa59d30cf5939434efe59d51fc2e79c63f6fd1f3ad1679b532840f0e1975aa0fe79368951ecf2ddc0259e3dfce9fc2c34d95cb7216 SHA512 d46e94cfadc3a843d8e06033a618098dde738830f20146c6e39abd8f467aa88987719363ee2b91ecf6812e604cdc72a5c0a799676e264a6f9d3799aa4639a6c9 +DIST poi-src-5.2.5-20231118.tgz.asc 488 BLAKE2B 634ed5e3bacd71213a96b9da147348deb3dd2837f6cf47f4d76c254442504815e41b1d9a3facfaa27c927f11f1ba552acf4dc94c4ffbfd11cc70eefd054a1523 SHA512 3588d60ad1c5e59540f19e345f2cfd6600a592fda313ab53bfd280599906e9d3c44aedae8fb72409ebae67c0285b257290bdca9128a632379db894143585dd1e diff --git a/dev-java/poi/poi-5.2.5.ebuild b/dev-java/poi/poi-5.2.5.ebuild new file mode 100644 index ..7320886dbe8a --- /dev/null +++ b/dev-java/poi/poi-5.2.5.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# No tests, #839681 +JAVA_PKG_IUSE="doc source" +MAVEN_ID="org.apache.poi:poi-main:${PV}" + +inherit java-pkg-2 java-pkg-simple verify-sig + +DESCRIPTION="Maven build of Apache POI for Sonar checks" +HOMEPAGE="https://poi.apache.org/"; +RELEASE_DATE="20231118" +SRC_URI="https://archive.apache.org/dist/poi/release/src/poi-src-${PV}-${RELEASE_DATE}.tgz + verify-sig? ( https://archive.apache.org/dist/poi/release/src/poi-src-${PV}-${RELEASE_DATE}.tgz.asc )" +S="${WORKDIR}/poi-src-${PV}-${RELEASE_DATE}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/poi.apache.org.asc" +BDEPEND="verify-sig? ( sec-keys/openpgp-keys-apache-poi )" +DEPEND=" + dev-java/commons-codec:0 + dev-java/commons-collections:4 + dev-java/commons-io:1 + dev-java/commons-math:3 + dev-java/log4j-api:2 + >=dev-java/sparsebitset-1.3:0 + >=virtual/jdk-11:* +" + +RDEPEND=">=virtual/jre-1.8:*" + +JAVA_AUTOMATIC_MODULE_NAME="org.apache.poi.poi" +JAVA_CLASSPATH_EXTRA=" + commons-codec + commons-collections-4 + commons-io-1 + commons-math-3 + log4j-api-2 + sparsebitset +" +JAVA_RESOURCE_DIRS="poi/src/main/resources" +JAVA_SRC_DIR=( poi/src/main/java{,9} ) + +src_prepare() { + java-pkg-2_src_prepare + sed \ + -e "s:@VERSION@:${PV}:g" \ + -e "s:@DSTAMP@:${RELEASE_DATE}:g" \ + poi/src/main/version/Version.java.template \ + > poi/src/main/java/org/apache/poi/Version.java || die + # log4j-api does not provide Automatic-Module + sed \ + -e '/org.apache.logging.log4j/d' \ + -i poi/src/main/java9/module-info.java || die +}
[gentoo-commits] repo/gentoo:master commit in: media-gfx/plantuml/
commit: be950d3539e3871ea44e8a314d793abe7a672ac6 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Sep 1 11:18:30 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:26:53 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be950d35 media-gfx/plantuml: add 1.2024.6 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> media-gfx/plantuml/Manifest | 1 + media-gfx/plantuml/plantuml-1.2024.6.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/media-gfx/plantuml/Manifest b/media-gfx/plantuml/Manifest index 2c06054fed4d..c9fb888709a3 100644 --- a/media-gfx/plantuml/Manifest +++ b/media-gfx/plantuml/Manifest @@ -1 +1,2 @@ DIST plantuml-1.2024.5.tar.gz 12119170 BLAKE2B 97fd8f48aa04d9d8b089547871abd954b8b1c189d32b844f1de4ac33678dabe2968a3307fb573f571adf541dbbbfd5eb5c21839b14f3cb9ed2e86ac7b447bb87 SHA512 20b9502a3d6ac9ceccb667943f8ea70990102f778175001852b1fcd2b9b7fa570f5b7a7fb237b6831c0411667c3e986f2b0ea09ce2602b5c1ca98694b37c20a5 +DIST plantuml-1.2024.6.tar.gz 12591935 BLAKE2B c9b56908538e3e98d2c8d4e56c064ffa378621d14232f8d769f1b80b610fcf22c50d94974a8c21791e2780231708e594a02466f0cba5e78a60b4b4110d0f89f0 SHA512 86633b93abdbc571ff335e61992f0db8ba20ed0e0d0dc5e9c564a8b312594051f47d453fb8b9787d3d3192ccc35f8ea99e5ddab8cc1d16458203c9309087ddbd diff --git a/media-gfx/plantuml/plantuml-1.2024.6.ebuild b/media-gfx/plantuml/plantuml-1.2024.6.ebuild new file mode 100644 index ..eafb36810423 --- /dev/null +++ b/media-gfx/plantuml/plantuml-1.2024.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +inherit java-pkg-2 java-pkg-simple desktop xdg + +DESCRIPTION="Draw UML diagrams using a simple and human readable text description" +HOMEPAGE="https://plantuml.com"; +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ant-task" + +DEPEND=">=virtual/jdk-1.8:* + ant-task? ( >=dev-java/ant-1.10.14-r3:0 )" +RDEPEND=">=virtual/jre-1.8:* + media-gfx/graphviz + ant-task? ( >=dev-java/ant-1.10.14-r3:0 )" + +JAVA_AUTOMATIC_MODULE_NAME="net.sourceforge.plantuml" +JAVA_MAIN_CLASS="net.sourceforge.plantuml.Run" +JAVA_RESOURCE_DIRS="res" +JAVA_SRC_DIR="src" + +src_prepare() { + java-pkg-2_src_prepare + if use ant-task; then + # src/net/sourceforge/plantuml/ant/readme.md + JAVA_GENTOO_CLASSPATH+="ant" + else + rm src/net/sourceforge/plantuml/ant/{CheckZip,PlantUml}Task.java || die + fi + + # java-pkg-simple wants resources in a separate directory + cp -r src res || die + cp -r skin stdlib svg themes res || die + find res -type f \( -name '*.java' -o -iname 'readme.md' \ + -o -name '*.ttf' -o -name '*.html' -o -name 'data.txt' \ + -o -name '.editorconfig' \) -exec rm -rf {} + || die +} + +src_install() { + java-pkg-simple_src_install + make_desktop_entry plantuml +}
[gentoo-commits] repo/gentoo:master commit in: dev-java/owasp-java-encoder/
commit: 8b3d7cf19527e96a61cc1446d504694f0de70696 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Aug 22 07:52:19 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:26:56 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b3d7cf1 dev-java/owasp-java-encoder: add 1.3.1 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/owasp-java-encoder/Manifest | 1 + .../owasp-java-encoder-1.3.1.ebuild| 34 ++ 2 files changed, 35 insertions(+) diff --git a/dev-java/owasp-java-encoder/Manifest b/dev-java/owasp-java-encoder/Manifest index 5e218dde6c1d..6aa812578540 100644 --- a/dev-java/owasp-java-encoder/Manifest +++ b/dev-java/owasp-java-encoder/Manifest @@ -1,2 +1,3 @@ DIST owasp-java-encoder-1.2.3.tar.gz 134303 BLAKE2B 76b9652863fcdfdce82bd26062fa500bb92b21ba6edff7b3f409a1375e135176f826dca4bb02b4dd48905112ae20a0af0a1f09cb4e21ea41c672a44c52fea209 SHA512 19c13894ce68325553bdbee41190cb113d698c79ec74885604fd9db4f083efe0fcdc4313b7191014bfd972d0ee52f0fbe0621d7bb407745bd1feeb2ac9e49783 DIST owasp-java-encoder-1.3.0.tar.gz 150029 BLAKE2B 31e350f02a7374f809e435d90ee9b4b1424cd9cb2da7d4062dfe0fc5898e02623496e464483bafd550b82b926260ab4df918f9be776e47f66587c6bc3829ebba SHA512 0ccdd6ae63e657ee28a4d9de7664269eff57802bddb03c7163fdb27326668256573d995b0111dc83cc1e5a6acc247e03da443f4b34c08cf99b085ec0a383a439 +DIST owasp-java-encoder-1.3.1.tar.gz 150103 BLAKE2B 6fc372364a13df497b1f5380d1d9b1c90e0981bfa059c31f2d138a3d0db3210105d0055b2a39a341cb3374b8149c5d61e1f967677e1159e843bb0143713e58b2 SHA512 9a75dea53e2859a4a213e2a511440c1bcbaea6c7a13fece674d155bc859f049fd45bbbd83fd6869a792af3b0e3f447e90ab450545684aa5ccc5b88a051114cdc diff --git a/dev-java/owasp-java-encoder/owasp-java-encoder-1.3.1.ebuild b/dev-java/owasp-java-encoder/owasp-java-encoder-1.3.1.ebuild new file mode 100644 index ..84640fdb1e59 --- /dev/null +++ b/dev-java/owasp-java-encoder/owasp-java-encoder-1.3.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +MAVEN_ID="org.owasp.encoder:encoder:${PV}" +JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="OWASP Java Encoder" +HOMEPAGE="https://owasp.org/www-project-java-encoder/"; +SRC_URI="https://github.com/OWASP/owasp-java-encoder/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}/core" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" + +# skipping 10 tests because they seem to be unreliable depending on hardware used +# as some of them fail on some setups because the benchmark results don't align +# with the hardcoded value 200 for the expected results. here are some examples: +# Benchmarked Encode.forJavaScript: 442,382250 ns/op (+253,85% on baseline) +# Benchmarked Encode.forCssString: 446,929231 ns/op (+257,49% on baseline) +# Benchmarked Encode.forJava: 409,038065 ns/op (+227,18% on baseline) +JAVA_RM_FILES=( src/test/java/org/owasp/encoder/BenchmarkTest.java ) +JAVA_SRC_DIR="src/main/java" +JAVA_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_TEST_RESOURCE_DIRS="src/test/resources" +JAVA_TEST_SRC_DIR="src/test/java"
[gentoo-commits] repo/gentoo:master commit in: dev-java/owasp-java-encoder/
commit: 0a95ea78b6765a121d6a2e79a24a7f6ebf869856 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Mon Sep 2 19:44:28 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 08:26:56 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a95ea78 dev-java/owasp-java-encoder: drop 1.2.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/38367 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/owasp-java-encoder/Manifest | 1 - .../owasp-java-encoder-1.2.3.ebuild| 34 -- 2 files changed, 35 deletions(-) diff --git a/dev-java/owasp-java-encoder/Manifest b/dev-java/owasp-java-encoder/Manifest index 6aa812578540..d809ac37efab 100644 --- a/dev-java/owasp-java-encoder/Manifest +++ b/dev-java/owasp-java-encoder/Manifest @@ -1,3 +1,2 @@ -DIST owasp-java-encoder-1.2.3.tar.gz 134303 BLAKE2B 76b9652863fcdfdce82bd26062fa500bb92b21ba6edff7b3f409a1375e135176f826dca4bb02b4dd48905112ae20a0af0a1f09cb4e21ea41c672a44c52fea209 SHA512 19c13894ce68325553bdbee41190cb113d698c79ec74885604fd9db4f083efe0fcdc4313b7191014bfd972d0ee52f0fbe0621d7bb407745bd1feeb2ac9e49783 DIST owasp-java-encoder-1.3.0.tar.gz 150029 BLAKE2B 31e350f02a7374f809e435d90ee9b4b1424cd9cb2da7d4062dfe0fc5898e02623496e464483bafd550b82b926260ab4df918f9be776e47f66587c6bc3829ebba SHA512 0ccdd6ae63e657ee28a4d9de7664269eff57802bddb03c7163fdb27326668256573d995b0111dc83cc1e5a6acc247e03da443f4b34c08cf99b085ec0a383a439 DIST owasp-java-encoder-1.3.1.tar.gz 150103 BLAKE2B 6fc372364a13df497b1f5380d1d9b1c90e0981bfa059c31f2d138a3d0db3210105d0055b2a39a341cb3374b8149c5d61e1f967677e1159e843bb0143713e58b2 SHA512 9a75dea53e2859a4a213e2a511440c1bcbaea6c7a13fece674d155bc859f049fd45bbbd83fd6869a792af3b0e3f447e90ab450545684aa5ccc5b88a051114cdc diff --git a/dev-java/owasp-java-encoder/owasp-java-encoder-1.2.3.ebuild b/dev-java/owasp-java-encoder/owasp-java-encoder-1.2.3.ebuild deleted file mode 100644 index 482d2d258e37.. --- a/dev-java/owasp-java-encoder/owasp-java-encoder-1.2.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" -MAVEN_ID="org.owasp.encoder:encoder:${PV}" -JAVA_TESTING_FRAMEWORKS="junit-4" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="OWASP Java Encoder" -HOMEPAGE="https://owasp.org/www-project-java-encoder/"; -SRC_URI="https://github.com/OWASP/owasp-java-encoder/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${P}/core" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64" - -RDEPEND=">=virtual/jre-1.8:*" -DEPEND=">=virtual/jdk-1.8:*" - -PATCHES=( "${FILESDIR}/owasp-java-encoder-1.2.3-BenchmarkTest.patch" ) - -JAVA_SRC_DIR="src/main/java" -JAVA_TEST_GENTOO_CLASSPATH="junit-4" -JAVA_TEST_RESOURCE_DIRS="src/test/resources" -JAVA_TEST_SRC_DIR="src/test/java" - -src_prepare() { - default #780585 - java-pkg-2_src_prepare -}
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 074703d997f81d4632e8f69d88a113c81e3220d4 Author: Sam James gentoo org> AuthorDate: Tue Sep 3 06:50:38 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 08:58:13 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074703d9 kernel-build.eclass: handle CTF if enabled genpatches will soon be adding optional CTF debug information support via a patch. If it's enabled, we need to call a few special make targets to create and install the CTF information. We also need to avoid stripping the CTF archive. Signed-off-by: Sam James gentoo.org> eclass/kernel-build.eclass | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/eclass/kernel-build.eclass b/eclass/kernel-build.eclass index 10fd0cca2cc5..1fc86c4a2208 100644 --- a/eclass/kernel-build.eclass +++ b/eclass/kernel-build.eclass @@ -296,7 +296,13 @@ kernel-build_src_configure() { kernel-build_src_compile() { debug-print-function ${FUNCNAME} "${@}" - emake O="${WORKDIR}"/build "${MAKEARGS[@]}" all + local targets=( all ) + + if grep -q "CONFIG_CTF=y" "${WORKDIR}/modprep/.config"; then + targets+=( ctf ) + fi + + emake O="${WORKDIR}"/build "${MAKEARGS[@]}" "${targets[@]}" } # @FUNCTION: kernel-build_src_test @@ -337,6 +343,10 @@ kernel-build_src_install() { targets+=( dtbs_install ) fi + if grep -q "CONFIG_CTF=y" "${WORKDIR}/modprep/.config"; then + targets+=( ctf_install ) + fi + # Use the kernel build system to strip, this ensures the modules # are stripped *before* they are signed or compressed. local strip_args @@ -430,6 +440,7 @@ kernel-build_src_install() { mv "build/vmlinux" "${ED}${kernel_dir}/vmlinux" || die fi dostrip -x "${kernel_dir}/vmlinux" + dostrip -x "${kernel_dir}/vmlinux.ctfa" fi # strip empty directories
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/
commit: 3b8a537731be33f0e4d2067dfe1482f0e8359177 Author: Sam James gentoo org> AuthorDate: Tue Sep 3 08:59:21 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 08:59:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8a5377 dev-ruby/json: Stabilize 2.7.2-r1 sparc, #938953 Signed-off-by: Sam James gentoo.org> dev-ruby/json/json-2.7.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/json/json-2.7.2-r1.ebuild b/dev-ruby/json/json-2.7.2-r1.ebuild index e0ef6a572308..c5409954115e 100644 --- a/dev-ruby/json/json-2.7.2-r1.ebuild +++ b/dev-ruby/json/json-2.7.2-r1.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/flori/json/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( BSD-2 Ruby )" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc test" DEPEND="dev-util/ragel"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/
commit: d8f0641085ab7bc307026a23ad90deacaff0fdb4 Author: Sam James gentoo org> AuthorDate: Tue Sep 3 08:59:22 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 08:59:22 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f06410 dev-ruby/json: Stabilize 2.7.2-r1 arm, #938953 Signed-off-by: Sam James gentoo.org> dev-ruby/json/json-2.7.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/json/json-2.7.2-r1.ebuild b/dev-ruby/json/json-2.7.2-r1.ebuild index c5409954115e..a32df906b198 100644 --- a/dev-ruby/json/json-2.7.2-r1.ebuild +++ b/dev-ruby/json/json-2.7.2-r1.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/flori/json/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( BSD-2 Ruby )" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc test" DEPEND="dev-util/ragel"
[gentoo-commits] repo/gentoo:master commit in: dev-python/pysmi/files/, dev-python/pysmi/
commit: 32ddad21eadb3a3376da5e05db02eac425845952 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 3 08:51:43 2024 + Commit: Michał Górny gentoo org> CommitDate: Tue Sep 3 09:20:51 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ddad21 dev-python/pysmi: Bump to 1.5.0 Signed-off-by: Michał Górny gentoo.org> dev-python/pysmi/Manifest | 1 + dev-python/pysmi/files/pysmi-1.5.0-py313.patch | 36 + dev-python/pysmi/pysmi-1.5.0.ebuild| 44 ++ 3 files changed, 81 insertions(+) diff --git a/dev-python/pysmi/Manifest b/dev-python/pysmi/Manifest index eede5251ad05..984e774ee43a 100644 --- a/dev-python/pysmi/Manifest +++ b/dev-python/pysmi/Manifest @@ -1,2 +1,3 @@ DIST pysmi-0.3.4.tar.gz 93985 BLAKE2B 71b0ed936c196381f895b4f56e8e2e328ac274b08801a77b404b964201e00f8da2cbce2719414da358a4feb7992a3d04e732942f6e7006a0cceea4496f96b758 SHA512 720c8948a590130583d6ea388f0ade5d3bfe9e845821add7ffbf1b5495b5fe00b768ffb94f67b82465c6d86234f5306c6e1a5c2e49f4825bb9c31a0df629f7bd DIST pysmi-1.4.4.tar.gz 117164 BLAKE2B 2ef1c2fc58ee90ad052fec5f0aa08fc128cc041e24dc74d8942ff81912e7e45b480e5a125e412e0c52818670dafbd9bee310a863f9a5b898c8a67a18492897ae SHA512 9ce5665d1db147cb80fe7ef17981a4231a25a8b25cfafb14784acc0355fbd0296070a7da67a7f6b1e738e0f5f1249f871ee29a72da546e639ad4d2f2e8b00c43 +DIST pysmi-1.5.0.tar.gz 124064 BLAKE2B 763501b0fd575e356944372f0f173857d8a982a1cc7342636807d7147f7b6615d9c9518f099fb3071356957f0775e7bbd6b5f37d2110947ad22585cc44dff461 SHA512 f99fbc186b2fd481b16269e5b3622821b932459ec97023968ce8e0ae5c2d863702122a44fafb26d901b8a0b03c02f97e60c6999bdde0f19d551a61daf4e926b5 diff --git a/dev-python/pysmi/files/pysmi-1.5.0-py313.patch b/dev-python/pysmi/files/pysmi-1.5.0-py313.patch new file mode 100644 index ..bebd360593f1 --- /dev/null +++ b/dev-python/pysmi/files/pysmi-1.5.0-py313.patch @@ -0,0 +1,36 @@ +From 1e9c2f7a3cc2ee78caa79d0602f3afe2030dcf5e Mon Sep 17 00:00:00 2001 +From: David van Moolenbroek +Date: Tue, 3 Sep 2024 07:54:12 + +Subject: [PATCH] Fix unit test for Python 3.13 + +As of Python 3.13, tabs in docstrings are expanded to spaces, thereby +breaking one of the unit tests. This commit fixes the unit test. Note +that neither the problem nor this fix affect the main pysmi code. +--- + tests/test_moduleidentity_smiv2_pysnmp.py | 6 -- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/tests/test_moduleidentity_smiv2_pysnmp.py b/tests/test_moduleidentity_smiv2_pysnmp.py +index 8c181a8..0f5 100644 +--- a/tests/test_moduleidentity_smiv2_pysnmp.py b/tests/test_moduleidentity_smiv2_pysnmp.py +@@ -157,7 +157,7 @@ class ModuleIdentityTextTestCase(unittest.TestCase): + organization" + CONTACT-INFO "WG-email:\\n age...@dorothy.bmc.com\\" + DESCRIPTION " +-A\tdescription with\\n ++Adescription with\\n + various characters: 0~`!@#$%^&*()-_=+[]{}\\|;:'<>,.?/ + and a very long line that must not be wrapped despite exceeding the threshold of default word wrap filters. + +@@ -170,7 +170,9 @@ class ModuleIdentityTextTestCase(unittest.TestCase): + """ + + def setUp(self): +-docstring = textwrap.dedent(self.__class__.__doc__) ++# As of Python 3.13, tabs are expanded in docstrings, so we have to use ++# a placeholder and replace it with real tab here. ++docstring = textwrap.dedent(self.__class__.__doc__.replace("", "\t")) + ast = parserFactory()().parse(docstring)[0] + mibInfo, symtable = SymtableCodeGen().genCode(ast, {}, genTexts=True) + self.mibInfo, pycode = PySnmpCodeGen().genCode( diff --git a/dev-python/pysmi/pysmi-1.5.0.ebuild b/dev-python/pysmi/pysmi-1.5.0.ebuild new file mode 100644 index ..8a27a701a3fe --- /dev/null +++ b/dev-python/pysmi/pysmi-1.5.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 2017-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 pypi + +DESCRIPTION="Pure-Python implementation of SNMP/SMI MIB parsing and conversion library" +HOMEPAGE=" + https://github.com/lextudio/pysmi/ + https://pypi.org/project/pysmi/ +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86" + +RDEPEND=" + >=dev-python/jinja-3.1.3[${PYTHON_USEDEP}] + >=dev-python/ply-3.11[${PYTHON_USEDEP}] + >=dev-python/requests-2.26.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/pysnmp-5.0.0[${PYTHON_USEDEP}] + ) +" + +EPYTEST_XDIST=1 +distutils_enable_tests pytest +# TODO: doc +# distutils_enable_sphinx docs/source dev-python/sphinx-copybutton dev-python/sphinx-sitemap + +PATCHES=( + # https://github.com/lextudio/pysmi/pull/4 + "${FILESDIR}/${P}-py313.patch" +) + +python_test() { + local -x PYTEST_DISABLE_PLUGI
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 983fe336a7571f822655c25e0785f067de80c64c Author: Sam James gentoo org> AuthorDate: Tue Sep 3 09:38:04 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 09:40:45 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983fe336 kernel-build.eclass: call ctf_install for tests too As suggested by Andrew at https://github.com/gentoo/gentoo/pull/38392#discussion_r1741574357. Signed-off-by: Sam James gentoo.org> eclass/kernel-build.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/kernel-build.eclass b/eclass/kernel-build.eclass index 1fc86c4a2208..3836bef1276b 100644 --- a/eclass/kernel-build.eclass +++ b/eclass/kernel-build.eclass @@ -321,7 +321,7 @@ kernel-build_src_test() { emake O="${WORKDIR}"/build "${MAKEARGS[@]}" \ INSTALL_MOD_PATH="${T}" INSTALL_MOD_STRIP="${strip_args}" \ - modules_install + modules_install ctf_install kernel-install_test "${KV_FULL}" \ "${WORKDIR}/build/$(dist-kernel_get_image_path)" \
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/
commit: 440f166aa7d39e0d736ac3e890075bcec62f1eaf Author: Sam James gentoo org> AuthorDate: Tue Sep 3 09:55:33 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 09:55:33 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=440f166a dev-ruby/json: Stabilize 2.7.2-r1 x86, #938953 Signed-off-by: Sam James gentoo.org> dev-ruby/json/json-2.7.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/json/json-2.7.2-r1.ebuild b/dev-ruby/json/json-2.7.2-r1.ebuild index 89d217e63d60..9edf5b07ed21 100644 --- a/dev-ruby/json/json-2.7.2-r1.ebuild +++ b/dev-ruby/json/json-2.7.2-r1.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/flori/json/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( BSD-2 Ruby )" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc test" DEPEND="dev-util/ragel"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/
commit: 3f7cbc04c72868dba9c56af3f8e1350dc63353c2 Author: Sam James gentoo org> AuthorDate: Tue Sep 3 09:55:32 2024 + Commit: Sam James gentoo org> CommitDate: Tue Sep 3 09:55:32 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7cbc04 dev-ruby/json: Stabilize 2.7.2-r1 amd64, #938953 Signed-off-by: Sam James gentoo.org> dev-ruby/json/json-2.7.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/json/json-2.7.2-r1.ebuild b/dev-ruby/json/json-2.7.2-r1.ebuild index a32df906b198..89d217e63d60 100644 --- a/dev-ruby/json/json-2.7.2-r1.ebuild +++ b/dev-ruby/json/json-2.7.2-r1.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/flori/json/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( BSD-2 Ruby )" SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="doc test" DEPEND="dev-util/ragel"
[gentoo-commits] repo/gentoo:master commit in: media-gfx/libbgcode/
commit: 632849102a6bf22e91d8cf689bddae94265cc9df Author: Miroslav Šulc gentoo org> AuthorDate: Tue Sep 3 10:36:37 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 10:36:37 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63284910 media-gfx/libbgcode: bump to 0.0.20240829 Signed-off-by: Miroslav Šulc gentoo.org> media-gfx/libbgcode/Manifest | 1 + media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild | 35 +++ 2 files changed, 36 insertions(+) diff --git a/media-gfx/libbgcode/Manifest b/media-gfx/libbgcode/Manifest index a117d1875b31..696b0c6d8677 100644 --- a/media-gfx/libbgcode/Manifest +++ b/media-gfx/libbgcode/Manifest @@ -1 +1,2 @@ DIST libbgcode-0.0.20240730.tar.gz 456671 BLAKE2B a15e903e42090eff3945f446f7d805ceabad533a2edcc9e4c82d99bac7aa42e9f10470f5ee41ed449799d9bc318c9097439a6534607a00d0bfeb2e2dea252b79 SHA512 b448d9ace946d85a4decc4a2cc05e1a41c64ba49968db1f818ba5974120f458159d5b639d5501a98daf4544a483366cd0e299c052f21577bb5ad763f7220d7e3 +DIST libbgcode-0.0.20240829.tar.gz 456740 BLAKE2B 391b86c9db133b2928205cd833f9122cde4ba8c0ef6a6d38915453f669d4fcc294e4fcbb340441daa182716356e81d822855881959dbd790f905b47ac5582951 SHA512 9b4c1a97884c0489a41eeba0bbcb7d9e0a35b2fbf26701e557880473bfe160a9c6f58cbac608f995a597ed902dca361934a56681b2c26412ccfcd9e75f498b81 diff --git a/media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild b/media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild new file mode 100644 index ..03905d0adc08 --- /dev/null +++ b/media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild @@ -0,0 +1,35 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +LIBBGCODE_COMMIT=b5c57c423c958a78dacae468aeee63ab3d2de947 + +DESCRIPTION="Prusa Block & Binary G-code reader / writer / converter" +HOMEPAGE="https://github.com/prusa3d/libbgcode"; +SRC_URI="https://github.com/prusa3d/libbgcode/archive/${LIBBGCODE_COMMIT}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/${PN}-${LIBBGCODE_COMMIT}" +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/heatshrink-0.4.1 + >=sys-libs/zlib-1.0 +" +DEPEND="${RDEPEND} + dev-libs/boost + test? ( =dev-cpp/catch-2*:0 ) +" + +src_configure() { + local mycmakeargs=( + -DLibBGCode_BUILD_TESTS=$(usex test) + ) + cmake_src_configure +}
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/
commit: 9d6c60914ebb21e53115ac5259e191e9dcd84279 Author: Joonas Niilola gentoo org> AuthorDate: Tue Sep 3 10:42:54 2024 + Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 3 10:44:28 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d6c6091 www-client/firefox: add 128.2.0 - allow connman[networkmanager] to be used instead of networkmanager for +wifi, - drop many patches that have been merged upstream for esr128.2, - fix many seds, - install gnome-shell search-provider files, - remove tc-ld-is-mold function from the ebuild since it's now merged into toolchain-funcs.eclass, - sync changes between rapid and esr to ease up future maintenance. Closes: https://bugs.gentoo.org/938205 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/Manifest | 102 +++ www-client/firefox/firefox-128.2.0.ebuild | 1354 + 2 files changed, 1456 insertions(+) diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index b3bd97c8bebd..c5e7b84a0457 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -301,7 +301,109 @@ DIST firefox-128.1.0esr-xh.xpi 417178 BLAKE2B db647fc6764380635d796baaf6084094f1 DIST firefox-128.1.0esr-zh-CN.xpi 657339 BLAKE2B 37acc3369de9339eb10a39211526bc8cbf82f3962b0415cdf96b9933fa88fd5359361fa6c0a32545cf31cbd86d590efe9814b67d835f486e2a39387c00bc6e04 SHA512 524d90cabcf3ec2f882670db7571156c61b19302371c3c17703fcf3abd6758aea898b6231c51a50b3db6607855a6d79677054a9b19cfaa522bde9211b9ae30a4 DIST firefox-128.1.0esr-zh-TW.xpi 659474 BLAKE2B 98d0e9d960a32692cd34e4ac99ec5494e74b0b55d45a2f36cd4f722ac8ea2c9074c733ef2b04a0bba60e9622c26a14bd38d8eecf8a810f0819a5c85615023ef6 SHA512 1a431fd2d01a78fb761c812bdff06361c2c5f59fbda12656a38622346cd9370e6748b61cc98ab38a3d31d9824aa9f2da4e90a0cb6d0533e40136aec7ac8f1469 DIST firefox-128.1.0esr.source.tar.xz 561953208 BLAKE2B 6d22bb17ad22d5e29008fd98f6b90bc6869f71c03b09e5b24a6a8a8304f303b316131aeee5d3e5f175a9194074d586a507ae121b9397aa371839dbdb1349f2bd SHA512 8055a7f83acf0cab6124ba5809aff1c082e81a0d30ff318ec719f8fd3f4af9aa60e2094c1abd6c981193d751075a9569370176e20e50f3c1959fe27a15511388 +DIST firefox-128.2.0esr-ach.xpi 465016 BLAKE2B 70b8839a5028d7b87218116dd44fa724fdc1aee91c371bd5e84112a9153568d7186ef4237f707e08b9e22f0208affd03141b49fa4b842cc82faa5ebe7f19004f SHA512 688b8fdb84a6bf069650a65218615d605cd9cbd52435261f3f4fcae749cd67373fb1ce34c24bd3d0712c5e9416a2c111e2bd245050130423c944b64ca9092c1b +DIST firefox-128.2.0esr-af.xpi 418343 BLAKE2B 6b52d8b28d7e1095257927e2e894276cacf131fbd8827bb321729787d4f2b9d35418c5b834a87c30fe035f31f03c003d3691d2350ffa6972d1ef8de15952fe6a SHA512 70bfdc67a3f2ad213de61387f611bd9f6231eabc7012f190b84020ee3c75d70579d88db5cc1995f86fe1eeae72c31438f64019824c4ea28ed589b39cc12b9dd9 +DIST firefox-128.2.0esr-an.xpi 506833 BLAKE2B 0c46cfef3202306b143015195ad4dc8d04c1bbb51dfd643b55abbcb44903774a4b119c0cd2336209eef2ef57abe5c2f6d0b82eae651e1cdc738580e6cb56474c SHA512 3dcc2c6ceca2d8452322fdb129537447d4bfc9951195e66a24ad7fc5c5f3bf9cff17326eb98c3fe7afc4e33ec9ae6f5d5b15e2976da34192a712bb1a08dc58d9 +DIST firefox-128.2.0esr-ar.xpi 612892 BLAKE2B 940c8caabcafa3a9c95905d820bb622adb94b259da739ff5ed88338b3354d572aeb03afa98aeb8f89b83dfd5c0fd5a6c0221c64ece8b1be8bdf0913a5c7e29fa SHA512 2c18828e3694d898bfb0c7fe36ac5937a1baf70dd1613570e1c11101197d5a66593334fd6a2b007ed680d8d62e6f5eacc1ac2e4766dd0f6fcba8fd255adc5780 +DIST firefox-128.2.0esr-ast.xpi 497291 BLAKE2B 752ad97fd9c00912228226324eb8647bd5c4cfdf3a8339aa0100047a4e75a818cdb327b5505e9ddb8a33cd80a26217a0bd9cf0fef6ea0a4895a3db331686b830 SHA512 bbbac520b9dc6eb6fd9c4a00651842d8765411fbfd2803c6c536f0e5b1fb7e0ca8886eab0714588dd26fa191363f503550d39ecc14c6263cc1247cab9d43b007 +DIST firefox-128.2.0esr-az.xpi 491719 BLAKE2B bf70d9814f2951a02ad0522d23e8162785087972ba02355613dd14f196308335b0e126845aa378cee1e11188f832cb0e11064d7ede7c3257b5dde0cc5932c32f SHA512 c35f461cc54aa04200729d212525e807c3361b081ade3d6b7a0bab462fcb43c7ecc05ca0cd8a1c3a6471126de7c45386c5bab6b9225940f3bbf11441fd9c2195 +DIST firefox-128.2.0esr-be.xpi 717327 BLAKE2B 452c846fddd81bf764903eb42d4aa87d7f96fdbb2b9a87718abf6b6ec3552855a6fa066fc69eda91bc51143ecca890fafbc5297f9c7d3f1a5730b6eab39e04c0 SHA512 7abab5270899c9ac4be6ced477c630096475164caa37d88089fde40c1c3e8c794f21c4a88a001f1ac5c7605eaa63c3d156e27eda331d77ddfde5ef393f7d45f3 +DIST firefox-128.2.0esr-bg.xpi 637126 BLAKE2B 7bfc353a577a31c3baaf8af178dc34e50b36fb02f8a23e585cb8f7a6d97252c49a642fadf2ae47ad0615af9c4dfcd77b631d164d3bc1fce87fc2008c2d109e1d SHA512 16cb5b6eaf1f4691b59d5354b4df9cf1b55d317e42d07d59226315448c9ae2b61225bd6f810bf192e2dea8ad8b0b574a51c47d7196f93367a78f873255a21eb3 +DIST firefox-128.2.0esr-bn.xpi 582470 BLAKE2B 7395bb68fd185e1559dfd94ea67c9e70004c59b0d2fca92596ebf2f7b53e3985f0dd1f00660d591317db23f460048bb89cfe832813060e53e52cf3425c5c74d2 SHA512 731c42ee4b5e0ebe309bee4370601324ced7e7d95f5543dc4fe72db60fb1d03e5d4474755b32974
[gentoo-commits] repo/proj/guru:master commit in: app-emulation/box86/
commit: 267c2bbeac133599ef3b6b95aff522d5bf1c3e0b Author: Richard-Rogalski tutanota com> AuthorDate: Mon Sep 2 17:14:43 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 17:18:32 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=267c2bbe app-emulation/box86: Added versions 0.3.6 and , QA checks Signed-off-by: Richard Rogalski tutanota.com> app-emulation/box86/Manifest | 1 + app-emulation/box86/box86-0.3.0.ebuild | 28 --- app-emulation/box86/box86-0.3.6.ebuild | 57 +++ app-emulation/box86/box86-.ebuild | 62 ++ 4 files changed, 144 insertions(+), 4 deletions(-) diff --git a/app-emulation/box86/Manifest b/app-emulation/box86/Manifest index 608cb619f..8231c3893 100644 --- a/app-emulation/box86/Manifest +++ b/app-emulation/box86/Manifest @@ -1 +1,2 @@ DIST box86-0.3.0.tar.gz 3175056 BLAKE2B 4fdef0301a53278da82eb18f235c38694d3d5b59c1386e4be14f6efd676499c5082c061f56fe9222f5994f7f043a0aa82019c42bf9b867ab8215c11ed3782f82 SHA512 133957b5b3194a034f383dd2cba503797468b973127b10b3a4bac458e1dce43b4f61efd4ff9ad0cabf7935f9b34a5287cbf3b9fee8c40c9b4bfbe206b0566957 +DIST box86-0.3.6.tar.gz 3511551 BLAKE2B 2f9211a1a472c972d2327d76f27a4f06dd2a6da78b764302659a73c0e10d7f96baf2e659e5dc0b88868fb08034346385c7b9f6b4c32abefec0d44b16dc59cbf6 SHA512 12dd71c46cf7dbb2038b543d36a0c81cd28f3f6266c096836ce2566eb3fb338b9ebb0ff25fd7b8a249d936799ddaf2579ee1f82f09e71310009998c2167fbb12 diff --git a/app-emulation/box86/box86-0.3.0.ebuild b/app-emulation/box86/box86-0.3.0.ebuild index b37b661ec..ec6db7e10 100644 --- a/app-emulation/box86/box86-0.3.0.ebuild +++ b/app-emulation/box86/box86-0.3.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake optfeature flag-o-matic +inherit cmake optfeature toolchain-funcs flag-o-matic DESCRIPTION="Linux Userspace x86 Emulator with a twist" HOMEPAGE="https://box86.org"; @@ -11,11 +11,31 @@ SRC_URI="https://github.com/ptitSeb/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P LICENSE="MIT" SLOT="0" -KEYWORDS="~arm ~arm64" +KEYWORDS="~arm" IUSE="aot" REQUIRED_USE="aot? ( || ( arm arm64 ) )" #depends on NEON, VFPv3, and non-thumb ABI, I see no good way to check -RDEPEND="${DEPEND}" +pkg_setup() { + if [[ ${CHOST} == *64* ]]; then + ewarn "" + ewarn "box86 relies on a toolchain capable of emitting 32-bit code, and a 32 bit libc." + ewarn "If you're on a non multilib 64-bit profile, you will need to add multilib capabilities to it, see:" + ewarn "https://wiki.gentoo.org/wiki/User:Aslantis/Multilib_on_targets_without_official_multilib_profiles"; + ewarn "Alternatively, box64 may work on your system, and can be used in tandem with wine's WOW64 for windows programs." + ewarn "box86 also doesn't support being built for the thumb ABI, if you have a thumb system you'll need -marm in your *FLAGS" + ewarn "" + fi + + if [[ $(tc-endian) == big ]]; then + eerror "box86/box64 sadly does not support big endian systems." + die "big endian not supported!" + fi + + if [[ ${CHOST} != *gnu* || ${CHOST} != *linux* ]]; then + eerror "box86/64 requires a glibc and a linux system. Musl support is possible, upstream welcomes PRs!" + die "Not a GNU+Linux system" + fi +} src_configure() { local -a mycmakeargs=( diff --git a/app-emulation/box86/box86-0.3.6.ebuild b/app-emulation/box86/box86-0.3.6.ebuild new file mode 100644 index 0..e921d4b7b --- /dev/null +++ b/app-emulation/box86/box86-0.3.6.ebuild @@ -0,0 +1,57 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake optfeature toolchain-funcs flag-o-matic + +DESCRIPTION="Linux Userspace x86 Emulator with a twist" +HOMEPAGE="https://box86.org"; +SRC_URI="https://github.com/ptitSeb/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~arm" +IUSE="aot" +REQUIRED_USE="aot? ( || ( arm arm64 ) )" #depends on NEON, VFPv3, and non-thumb ABI, I see no good way to check + +pkg_setup() { + if [[ ${CHOST} == *64* ]]; then + ewarn "" + ewarn "box86 relies on a toolchain capable of emitting 32-bit code, and a 32 bit libc." + ewarn "If you're on a non multilib 64-bit profile, you will need to add multilib capabilities to it, see:" + ewarn "https://wiki.gentoo.org/wiki/User:Aslantis/Multilib_on_targets_without_official_multilib_profiles"; + ewarn "Alternatively, box64 may work on your system, and can be used in tandem with wine's WOW64 for windows programs." + ewarn "box86 also do
[gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/
commit: 2724d3f48bb917948fd1367dae7f6d1b0a26af90 Author: Kacper Słomiński gmail com> AuthorDate: Mon Sep 2 13:51:28 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 13:51:28 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2724d3f4 sys-boot/limine: add 8.0.7 Signed-off-by: Kacper Słomiński gmail.com> sys-boot/limine/Manifest| 1 + sys-boot/limine/limine-8.0.7.ebuild | 49 + 2 files changed, 50 insertions(+) diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest index e1deec35e..5f922a745 100644 --- a/sys-boot/limine/Manifest +++ b/sys-boot/limine/Manifest @@ -6,3 +6,4 @@ DIST limine-7.5.0.tar.gz 518804 BLAKE2B 745929606cf5e5e297f55690573e26bea8b63f8c DIST limine-7.9.2.tar.gz 562984 BLAKE2B da301c51dfc487b83e87c25be37457ae7bd532140b3124a1903b6cc46ec15508412445cadb24675193e972fc1d1d4259441ce51282825a84e9713cabad80efb9 SHA512 d3526d1ac4e8b9172b93f6e113c78b8be3ad5196dc82e27cc2a9eb23bfb7581d421b96a736f5a149ec83be6363c2210f23af22ae6c039447ea202e56c21b9d6c DIST limine-8.0.5.tar.gz 551786 BLAKE2B 20e6fc247c27163ab0b57790853549479671f6b9f0e9da43c686485798f249d4e36fafeda426935074b28dd4676539d079c7125b27bbcd83ccb92ec30e2d SHA512 4fbab007c7ebc9648e5ba513b4cc19e42615f3c30ae4e3ee7ef10f782b38581c3fe9685eb497bf0ee6b685e032624143e606766569e1045d82321223fd5a0e61 DIST limine-8.0.6.tar.gz 553792 BLAKE2B 69a654b86a0d277893c099591fe6551328a7bbe403c64c2f4de931149fc720320f6c5d794a327346241eee6d9ee665eff9c83061d8a573daf568bc7018d4db90 SHA512 17b5b31f5ccaf22eb7c3708b42e52f15f10a2acf590c93129a01c0a4ce5ca5aa90a11bfc11572b28c1bdbda5a7013e4aef61b851a9e3dddadcd6a4feb1fb6913 +DIST limine-8.0.7.tar.gz 553771 BLAKE2B 353ddfc22bf4609c926aa94297b7b3895727cba0f8676e621c00894422421f7a4f2b03d1381870e5422125868c622100f8c39e1e2f63eb3586c5e5d627f231c7 SHA512 e72bd39ed473c9d27b1b926ce7cc0ff5bdb74d355a92d77b7f05dbdccdfa4f83769863b700b988e8d868902bd2a8b59ace7001aec44345dfc697ba2bb04fd05f diff --git a/sys-boot/limine/limine-8.0.7.ebuild b/sys-boot/limine/limine-8.0.7.ebuild new file mode 100644 index 0..8f7c11f6a --- /dev/null +++ b/sys-boot/limine/limine-8.0.7.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LLVM_COMPAT=( {16..18} ) +inherit llvm-r1 + +DESCRIPTION="Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloader" +HOMEPAGE="https://limine-bootloader.org/"; +SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.gz"; + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+bios +bios-pxe +bios-cd +cd-efi +uefi32 +uefi64 +uefiaa64 +uefirv64 +uefiloong64" + +MY_LLVM_TARGETS="AArch64 ARM X86 RISCV LoongArch" +MY_LLVM_FLAGS="llvm_targets_${MY_LLVM_TARGETS// /(-),llvm_targets_}(-)" + +BDEPEND=" + app-alternatives/gzip + dev-lang/nasm + sys-apps/findutils + $(llvm_gen_dep " + sys-devel/llvm:\${LLVM_SLOT}[${MY_LLVM_FLAGS}] + sys-devel/clang:\${LLVM_SLOT}[${MY_LLVM_FLAGS}] + sys-devel/lld:\${LLVM_SLOT} + ") + cd-efi? ( sys-fs/mtools ) +" + +src_configure() { + local myconf=( + "$(use_enable bios)" + "$(use_enable bios-cd)" + "$(use_enable bios-pxe)" + + "$(use_enable uefi32 uefi-ia32)" + "$(use_enable uefi64 uefi-x86-64)" + "$(use_enable uefiaa64 uefi-aarch64)" + "$(use_enable uefirv64 uefi-riscv64)" + "$(use_enable uefiloong64 uefi-loongarch64)" + "$(use_enable cd-efi uefi-cd)" + ) + + TOOLCHAIN_FOR_TARGET=llvm \ + econf "${myconf[@]}" +}
[gentoo-commits] repo/proj/guru:master commit in: app-emulation/box64/
commit: 880eda7f6da058451b191f7c29978716ff609e57 Author: Richard-Rogalski tutanota com> AuthorDate: Mon Sep 2 20:19:34 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 20:19:34 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=880eda7f app-emulation/box64: Add QA checks Signed-off-by: Richard Rogalski tutanota.com> app-emulation/box64/box64-0.2.2.ebuild | 12 app-emulation/box64/box64-0.3.0.ebuild | 12 app-emulation/box64/box64-.ebuild | 18 ++ 3 files changed, 42 insertions(+) diff --git a/app-emulation/box64/box64-0.2.2.ebuild b/app-emulation/box64/box64-0.2.2.ebuild index 1dcaf87e1..71cef82cd 100644 --- a/app-emulation/box64/box64-0.2.2.ebuild +++ b/app-emulation/box64/box64-0.2.2.ebuild @@ -15,6 +15,18 @@ KEYWORDS="~arm64 ~ppc64" IUSE="aot" REQUIRED_USE="aot? ( arm64 )" +pkg_setup() { + if [[ $(tc-endian) == big ]]; then + eerror "box86/box64 sadly does not support big endian systems." + die "big endian not supported!" + fi + + if [[ ${CHOST} != *gnu* || ${CHOST} != *linux* ]]; then + eerror "box86/64 requires a glibc and a linux system. Musl support is possible, upstream welcomes PRs!" + die "Not a GNU+Linux system" + fi +} + src_configure() { local -a mycmakeargs=( -DNOGIT=1 diff --git a/app-emulation/box64/box64-0.3.0.ebuild b/app-emulation/box64/box64-0.3.0.ebuild index e6b02b125..b882fa8dc 100644 --- a/app-emulation/box64/box64-0.3.0.ebuild +++ b/app-emulation/box64/box64-0.3.0.ebuild @@ -14,6 +14,18 @@ SLOT="0" KEYWORDS="~arm64 ~ppc64" IUSE="static" +pkg_setup() { + if [[ $(tc-endian) == big ]]; then + eerror "box86/box64 sadly does not support big endian systems." + die "big endian not supported!" + fi + + if [[ ${CHOST} != *gnu* || ${CHOST} != *linux* ]]; then + eerror "box86/64 requires a glibc and a linux system. Musl support is possible, upstream welcomes PRs!" + die "Not a GNU+Linux system" + fi +} + src_configure() { local -a mycmakeargs=( -DNOGIT=1 diff --git a/app-emulation/box64/box64-.ebuild b/app-emulation/box64/box64-.ebuild index 91c4682ff..6d30a199a 100644 --- a/app-emulation/box64/box64-.ebuild +++ b/app-emulation/box64/box64-.ebuild @@ -14,6 +14,24 @@ SLOT="0" KEYWORDS="" IUSE="static" +pkg_setup() { + if [[ $(tc-endian) == big ]]; then + eerror "box86/box64 sadly does not support big endian systems." + die "big endian not supported!" + fi + + if [[ ${CHOST} != *linux* ]]; then + eerror "box86/64 requires a linux system." + die "Not a GNU+Linux system" + fi + + if [[ ${CHOST} != *gnu* ]]; then #in case musl support is added in master branch + ewarn "" + ewarn "box86/64 will likely not build or run on a non-glibc system." + ewarn "" + fi +} + src_configure() { local -a mycmakeargs=( -DNOGIT=0
[gentoo-commits] repo/proj/guru:master commit in: app-admin/talosctl-bin/
commit: 4cd726b8fd2eeff1d965c88c02966edf284a232e Author: Lucio Sauer posteo net> AuthorDate: Mon Sep 2 20:40:57 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 20:41:02 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cd726b8 app-admin/talosctl-bin: add QA_PREBUILT Fix formatting issues and variable order Closes: https://bugs.gentoo.org/938917 Closes: https://bugs.gentoo.org/938916 Signed-off-by: Lucio Sauer posteo.net> app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild | 36 +--- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild index b2b183927..686fb7523 100644 --- a/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild +++ b/app-admin/talosctl-bin/talosctl-bin-1.7.6.ebuild @@ -5,27 +5,31 @@ EAPI="8" DESCRIPTION="Pre-compiled talosctl is an tool for interacting with the Talos API" HOMEPAGE="https://www.talos.dev/v1.7/"; -S="${WORKDIR}" SRC_URI=" -amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 -> - talosctl-amd64-v${PV} ) -arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 -> - talosctl-arm64-v${PV} ) -arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 -> - talosctl-armv7-v${PV} ) +amd64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-amd64 -> + talosctl-amd64-v${PV} ) +arm64? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-arm64 -> + talosctl-arm64-v${PV} ) +arm? ( https://github.com/siderolabs/talos/releases/download/v${PV}/talosctl-linux-armv7 -> + talosctl-armv7-v${PV} ) " + +S="${WORKDIR}" + LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64" +QA_PREBUILT="usr/bin/talosctl" + src_install() { -if use arm; then - newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl -fi -if use arm64; then - newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl -fi -if use amd64; then - newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl -fi + if use arm; then + newbin "${DISTDIR}"/talosctl-armv7-v${PV} talosctl + fi + if use arm64; then + newbin "${DISTDIR}"/talosctl-arm64-v${PV} talosctl + fi + if use amd64; then + newbin "${DISTDIR}"/talosctl-amd64-v${PV} talosctl + fi }
[gentoo-commits] repo/proj/guru:master commit in: dev-build/cargo-make/
commit: 4e963622112b71c36c7059f024fc7c9ad8bd2322 Author: Takuya Wakazono gmail com> AuthorDate: Mon Sep 2 14:31:59 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 14:31:59 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4e963622 dev-build/cargo-make: drop 0.37.15 Signed-off-by: Takuya Wakazono gmail.com> dev-build/cargo-make/Manifest | 43 dev-build/cargo-make/cargo-make-0.37.15.ebuild | 300 - 2 files changed, 343 deletions(-) diff --git a/dev-build/cargo-make/Manifest b/dev-build/cargo-make/Manifest index d096b5359..399012d4f 100644 --- a/dev-build/cargo-make/Manifest +++ b/dev-build/cargo-make/Manifest @@ -1,4 +1,3 @@ -DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 DIST adler2-2.0.0.crate 13529 BLAKE2B ec575b0bf12e321399ac3a1d59fce4ddbeabcc60cb3d7c2f362cce23eb29b4ea836451372d6d88552a4435ae29bb41d6230d55f625a4359eace680b9b771d0ad SHA512 12d12579ad617cf1a94cf95ab9d3f5db566c3b2de4bd5735eccd83c668fdad0eff134c996b73c46cbb9f932837682043878b8cc4764191625e9f93ccffcce423 DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 4385a4875aadaacd5284a9ca7d1bf8a7bf14bf8925d1563d52fbabacc3af2c1ea08bfcf77106f3648f4fa052ac295158a21e7a0131d31eb9aecd99ea4ba20055 SHA512 4294024c21ddd0090c42c8eedf708d40d917f55ad5a4cb7aa3e64cfb6551b6df60f2e36bc08620c1d2fc8c7ba7207411518ee5c8635f60ed8ad9efdd458a2077 @@ -12,36 +11,28 @@ DIST block-buffer-0.10.4.crate 10538 BLAKE2B d819c4f9c4be85868e8b105fb7e479d2e58 DIST bstr-1.10.0.crate 380426 BLAKE2B 19330a5a293430c09908d2174ff814351b16419f60de6463abf9b8a9dff06a4e6845e889d8047a710cef54842f2790d9cd5080b92cdcb113d89742b869979c74 SHA512 823abdbda9b13802facc7d6b1ed9ad809ed3b0b827d26e418348ffb8481b5f5735f129c5a9a8c7b2ab010d7f32ca57cba69a1ee10a64225c54c6ceacd22c05d2 DIST bumpalo-3.16.0.crate 85677 BLAKE2B 08da17b757931d2910e0299df53eb62731aa8c4ebd8915859b81d1982b331e7455dfac977c754e500a35ee07ba8eff00a61d2f62be99744e2ddbba06c1268f49 SHA512 a51b75c36f6794db444cab20eeb24f42a319080ecb486a56d254d6f873f3d188b5ccba11db30c068bd0c52c4322d4a3f5f5195c81c94b0bc04387030418835b1 DIST byteorder-1.5.0.crate 23288 BLAKE2B 7f85a7948406844070a2c8202e0bd52f73b3dfc7c666a97046128044eb9352195afb80e2bf894c0742ad109e4473339de1365d09591de70dfec6c8c02a8e1453 SHA512 96caf981177f6ded9f27f025922cb94eb0cd9de5303bd91680099912d922092e77b7361efa70011e84f1595e443193e4f1b354443b9980c123f6ae573b236f7f -DIST bytes-1.6.1.crate 60723 BLAKE2B a6f28770d1c42d7bb02964cafedc205c2730351cfca81520dbf62300284416a49e19c5d858dc37ba001d21846efb75d20977162a7e203e7171ef33868a720309 SHA512 4826cdba7a772b68f7352a3160a4c8ff93002110644c2e99537274cbb9776ba2f40ed8be9cde564f58b884c1985bdbce07cd7f5a46d34b48146ff51f317b5ab7 DIST bytes-1.7.1.crate 63623 BLAKE2B c399f7f25b85ac284bd2f139d895838eeba7deb56d109c8579966be4b8a7a56bbc26f9387bd0bef9fe5449d5e2ae8d11b254a7ef93048a4827d945b5ce09 SHA512 04cb5bb1718ee378be1d9d56aef2d117ed561935ddadd78139ef2839f998e92c88369c79560bce9d23246a3ebda1dc888af373f9ad4827a0b9a249379bc71e81 DIST bzip2-0.4.4.crate 34197 BLAKE2B b69f8ad38b44eb4912b33d53467492b0ebe6ed740451bdfe9133e71c47a8dbd85b1110a9607c4cc627fbabc44cd86fe0396bb545864632ffb6169f9cfa547b6c SHA512 9cd2b9159bd0b42ac908ecad41f0a737272af94ae0d6dcfe182d2f44bcea4632d32b0456f02322047ea9d6f46377db6cd083f468782bccd6126bcc75cb852555 DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102 SHA512 d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b -DIST camino-1.1.7.crate 36204 BLAKE2B ea87922e77401a23f25d66af303f39c568f37377e4f0cd6d206cb7b175a51528680bf67897e3b9830d276acb1b156b7c66e149b75370be202cb99fbbcea54233 SHA512 b82c809bd52549d16e286d514b5dbb1d640633b7ff05412ce3539e543de9c69d99bc3f62597b94fc0cedd7c8034ebf73663a6f647e46409b778baa4877928c45 DIST camino-1.1.9.crate 37552 BLAKE2B 28b21517730db408598f83e269ee8aa4dc5388c4b491779ebb6e76c478d407f929bda6906d88d429828d7f01be1762c72ecbb6d8c7aa4a1d1906109a17b45df1 SHA512 27a6a3cf72c46f15a6017aea44a048f2a8eb577aa9d2a088141b1cb7479106152ef0bc00a6cea9332c4df4d0c54aa6bd3dc21159f15640e347407c15a1bbf7ea -DIST cargo-make-0.37.15.tar.gz 1967295 BLAKE2B 49fe9b12787f97521536dd3457e15b379195a06804e4ad92d7659c7d81fe9629c0e01aec85b646cce706
[gentoo-commits] repo/proj/guru:master commit in: app-emulation/box64/
commit: 3520bc4a9bf43755ae18ed68fde94d01316c9726 Author: Lucio Sauer posteo net> AuthorDate: Mon Sep 2 20:46:15 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 20:46:15 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3520bc4a app-emulation/box64: directly inherit used toolchain-funcs Signed-off-by: Lucio Sauer posteo.net> app-emulation/box64/box64-0.2.2.ebuild | 2 +- app-emulation/box64/box64-0.3.0.ebuild | 2 +- app-emulation/box64/box64-.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-emulation/box64/box64-0.2.2.ebuild b/app-emulation/box64/box64-0.2.2.ebuild index 71cef82cd..d90d36cab 100644 --- a/app-emulation/box64/box64-0.2.2.ebuild +++ b/app-emulation/box64/box64-0.2.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake optfeature +inherit cmake toolchain-funcs optfeature DESCRIPTION="Linux Userspace x86_64 Emulator with a twist" HOMEPAGE="https://box86.org"; diff --git a/app-emulation/box64/box64-0.3.0.ebuild b/app-emulation/box64/box64-0.3.0.ebuild index b882fa8dc..dfe4a67d8 100644 --- a/app-emulation/box64/box64-0.3.0.ebuild +++ b/app-emulation/box64/box64-0.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake optfeature +inherit cmake toolchain-funcs optfeature DESCRIPTION="Linux Userspace x86_64 Emulator with a twist" HOMEPAGE="https://box86.org"; diff --git a/app-emulation/box64/box64-.ebuild b/app-emulation/box64/box64-.ebuild index 6d30a199a..02e652d71 100644 --- a/app-emulation/box64/box64-.ebuild +++ b/app-emulation/box64/box64-.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake optfeature git-r3 +inherit cmake git-r3 toolchain-funcs optfeature DESCRIPTION="Linux Userspace x86_64 Emulator with a twist" HOMEPAGE="https://box86.org";
[gentoo-commits] repo/proj/guru:master commit in: net-im/matterhorn-bin/
commit: 3c0f0473ee255d647ff3e5d1a1d98ae660a50d94 Author: Adrian Schollmeyer nexadn de> AuthorDate: Tue Sep 3 07:56:33 2024 + Commit: David Roman gmail com> CommitDate: Tue Sep 3 07:57:31 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c0f0473 net-im/matterhorn-bin: drop myself as a maintainer Signed-off-by: Adrian Schollmeyer nexadn.de> net-im/matterhorn-bin/metadata.xml | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/net-im/matterhorn-bin/metadata.xml b/net-im/matterhorn-bin/metadata.xml index da5a9e177..de7312b56 100644 --- a/net-im/matterhorn-bin/metadata.xml +++ b/net-im/matterhorn-bin/metadata.xml @@ -1,10 +1,7 @@ https://www.gentoo.org/dtd/metadata.dtd";> - - Adrian Schollmeyer - nex+b-...@nexadn.de - + matterhorn-chat/matterhorn
[gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/
commit: c7fb4c7c881c0cc8f0ad5bd627466a722f76ba56 Author: Patrick Nicolas laposte net> AuthorDate: Tue Sep 3 08:08:51 2024 + Commit: David Roman gmail com> CommitDate: Tue Sep 3 08:09:11 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7fb4c7c media-libs/wivrn: fix fetchcontent download and patch Signed-off-by: Patrick Nicolas laposte.net> media-libs/wivrn/Manifest | 2 +- media-libs/wivrn/wivrn-.ebuild | 13 +++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/media-libs/wivrn/Manifest b/media-libs/wivrn/Manifest index c1e3ab106..108ca90a9 100644 --- a/media-libs/wivrn/Manifest +++ b/media-libs/wivrn/Manifest @@ -1,5 +1,5 @@ DIST boostpfr_2.2.0.tar.gz 76432 BLAKE2B 70d76a5dd0034f93ff1749b1994bcd9cd8a9b09674598958da5a8f7e1b040c62e970db4e3d221173549a19d0dd15b0810f5d12f69843ed8ac35be6697bab09e0 SHA512 86a745a44e8a6e4638b9eb9045b08de9cbf27f6d20d365eabd41587d6e1171f980a65f42a31291008c421da6cc3f436b7bf07e109aff6ab5690b19e1fb621b3d -DIST monado-dfc602288ab05131584a3f2be18031a13fccd061.tar.bz2 2903074 BLAKE2B 9ba2816c0d4352b3d51cc0be35a2d3f920e0628569562bf4f07ae3fbba64edc9d7bc78732b271cbdf994314975d7249be2a272452dbbb62f840426cf91ffd1a4 SHA512 e1644cfc84b70c6aa1aeeb51f3f48a06ceb772035a7e4ac2c3ad5110df66792975e4ca7aa92b78f8438ef0fa22d771562122444d04eb395618f1c1c261b696fe +DIST monado-2d3978b1b0d0f1ce9fc20f435c7080a07124362a.tar.bz2 3798925 BLAKE2B 5839a5476bcd06091aa903c53811fc5d934b5a5ed1f16daca72a30ff1dc262d589d84c99c5fa74c097c3aec24ba2a3daf235a3bc14e1742a5d37c677d39c2624 SHA512 088711d19fca25b22dd3d6e085dd7692e57642dc2e8181c9cafbf7c48c2d30ffadf308cad0c09bf6faf53cce7ea544645f1537fe13621f736a89a3dfbcf46ad7 DIST wivrn-0.17-server-build-deps.tar.xz 17245096 BLAKE2B b531e3abe3290454029c5ba33876db4d1374d101b44f568f3c07de3ecc31aeb3a09b0ff7221c6c2a62e14de96cbe7ea201b1b302a08a2c06f8be026253e27a3d SHA512 86526a90cd029da4ff82996861ef7f7150eb81d5adee176cd36a6ce54704e15ff86c983702beff0985d2fc90178d8daddb3d81acdb6a5796506f916ba9ffafea DIST wivrn-0.17.tar.gz 11785455 BLAKE2B e3894aea4cc660a74a09c4e6eb3bf2bcc70508625d36574be6b7d9186b4f464e2acdbb282eb1adb1b445fbaf6b6e0ead32828cdb5dcb029042e0454a0f70d795 SHA512 7f6b5348b5d5a07831120e951f95c1759ea25d16d56216760be7f6640ccfa0c121f5978761e3f397a67be636c38f8bbe99e65992cd06132d643728958af489a8 DIST wivrn-0.18-server-build-deps.tar.xz 18478712 BLAKE2B 04f60048fc64194786602f27d3abe4587bf962356d44b66c3a40bc9f597ef974d6ab8937e5959ca76160df300b9a40807fd3fd0ce542fe42203e31048ef212ed SHA512 e86e4e626f895b66facf99127023a911552799f66cc6ea7df67d583e3af0ff5b052d7f2565c1bc510dff3ddfe77b7f8cb0341b908436aa37bf841cb54788b9d5 diff --git a/media-libs/wivrn/wivrn-.ebuild b/media-libs/wivrn/wivrn-.ebuild index 15d153a54..04a438583 100644 --- a/media-libs/wivrn/wivrn-.ebuild +++ b/media-libs/wivrn/wivrn-.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/WiVRn/WiVRn.git"; - MONADO_V=dfc602288ab05131584a3f2be18031a13fccd061 + MONADO_V=2d3978b1b0d0f1ce9fc20f435c7080a07124362a PFR_V=2.2.0 SRC_URI=" https://github.com/boostorg/pfr/archive/refs/tags/${PFR_V}.tar.gz -> boostpfr_${PFR_V}.tar.gz @@ -68,6 +68,15 @@ if [[ ${PV} == ]]; then cd "${WORKDIR}" mv "monado-${MONADO_V}" "monado-src" mv "pfr-${PFR_V}" "boostpfr-src" + + local THEIR_MONADO=$(grep -A1 "https://gitlab.freedesktop.org/monado/monado"; "${P}/CMakeLists.txt" | tail -n1 | sed 's/.*GIT_TAG\s*//') + [ "${THEIR_MONADO}" == "${MONADO_V}" ] || die "Mismatched monado version: ${THEIR_MONADO} (upstream) ${MONADO_V} (ebuild)" + } + + src_prepare() { + default_src_prepare + eapply --directory="${WORKDIR}/monado-src" "${WORKDIR}/${P}/patches/monado"/* + cmake_src_prepare } else src_unpack() { @@ -79,7 +88,7 @@ fi src_configure() { if [[ ${PV} == ]]; then - GIT_DESC=$(git describe) + GIT_DESC=$(git describe --always) else GIT_DESC=${PV} fi
[gentoo-commits] repo/proj/guru:master commit in: x11-themes/obsidian2-gtk-theme/
commit: b368b085155742b585075dcd01654d35e547cf4a Author: Huang Rui gmail com> AuthorDate: Tue Sep 3 05:26:59 2024 + Commit: David Roman gmail com> CommitDate: Tue Sep 3 05:26:59 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b368b085 x11-themes/obsidian2-gtk-theme: bump to 2.24 Signed-off-by: Huang Rui gmail.com> x11-themes/obsidian2-gtk-theme/Manifest | 2 +- ...gtk-theme-2.22.ebuild => obsidian2-gtk-theme-2.24.ebuild} | 12 ++-- .../obsidian2-gtk-theme/obsidian2-gtk-theme-.ebuild | 12 ++-- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/x11-themes/obsidian2-gtk-theme/Manifest b/x11-themes/obsidian2-gtk-theme/Manifest index 1c280397d..724a3d422 100644 --- a/x11-themes/obsidian2-gtk-theme/Manifest +++ b/x11-themes/obsidian2-gtk-theme/Manifest @@ -1 +1 @@ -DIST obsidian2-gtk-theme-2.22.tar.gz 930146 BLAKE2B 2264727ca31af811c7095c195ed883a304fab2b3c4c1916ffb241c5e1dcf6c300d6bf1b292f2181ad3daa36d86ab84da85a21e1d158a9112207de9b73838c5cb SHA512 806be9e4d1eba8f2239bfaed3dacf549d5172e7e7febc55729f94ec1986b3568bc81fd04127840820f8b074883897c285e3141d54ce7e66cc55e41e80abc30cf +DIST obsidian2-gtk-theme-2.24.tar.gz 1043031 BLAKE2B 645cc8434fdfd4e5739e799ba72b0f9b16f1c1b65530597742452c9d22d73e5fcecb8ca7dbf70cca9afdc4f34bc8e639795f4dfae95bdf39944ac885ad5f5356 SHA512 ef99d20c234340c014679daed368779b76ba37155823834c4428d1dcdeefbe44679eb91756ac726de0b6ec26a5a00ea688b8df0bb49f4051bad1c99ef4a36d07 diff --git a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.22.ebuild b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.24.ebuild similarity index 80% rename from x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.22.ebuild rename to x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.24.ebuild index c0e1d858a..4a0d8e80b 100644 --- a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.22.ebuild +++ b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.24.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" @@ -21,7 +21,15 @@ fi LICENSE="GPL-3" SLOT="0" -DEPEND="${RDEPEND}" +RDEPEND=" + dev-libs/libxml2:2 + x11-libs/gtk+:3 +" +DEPEND=" + ${RDEPEND} + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2 +" DOCS=( README.md ) diff --git a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-.ebuild b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-.ebuild index 119f5a814..4a0d8e80b 100644 --- a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-.ebuild +++ b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -21,7 +21,15 @@ fi LICENSE="GPL-3" SLOT="0" -DEPEND="${RDEPEND}" +RDEPEND=" + dev-libs/libxml2:2 + x11-libs/gtk+:3 +" +DEPEND=" + ${RDEPEND} + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2 +" DOCS=( README.md )
[gentoo-commits] repo/proj/guru:master commit in: dev-build/cargo-make/
commit: 340fcdced02f3a28954efb65d6272d3587634bb8 Author: Takuya Wakazono gmail com> AuthorDate: Mon Sep 2 14:31:59 2024 + Commit: David Roman gmail com> CommitDate: Mon Sep 2 14:31:59 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=340fcdce dev-build/cargo-make: add 0.37.16 Signed-off-by: Takuya Wakazono gmail.com> dev-build/cargo-make/Manifest | 47 dev-build/cargo-make/cargo-make-0.37.16.ebuild | 304 + 2 files changed, 351 insertions(+) diff --git a/dev-build/cargo-make/Manifest b/dev-build/cargo-make/Manifest index 63bb0feeb..d096b5359 100644 --- a/dev-build/cargo-make/Manifest +++ b/dev-build/cargo-make/Manifest @@ -1,4 +1,5 @@ DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 +DIST adler2-2.0.0.crate 13529 BLAKE2B ec575b0bf12e321399ac3a1d59fce4ddbeabcc60cb3d7c2f362cce23eb29b4ea836451372d6d88552a4435ae29bb41d6230d55f625a4359eace680b9b771d0ad SHA512 12d12579ad617cf1a94cf95ab9d3f5db566c3b2de4bd5735eccd83c668fdad0eff134c996b73c46cbb9f932837682043878b8cc4764191625e9f93ccffcce423 DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 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 @@ -12,28 +13,36 @@ DIST bstr-1.10.0.crate 380426 BLAKE2B 19330a5a293430c09908d2174ff814351b16419f60 DIST bumpalo-3.16.0.crate 85677 BLAKE2B 08da17b757931d2910e0299df53eb62731aa8c4ebd8915859b81d1982b331e7455dfac977c754e500a35ee07ba8eff00a61d2f62be99744e2ddbba06c1268f49 SHA512 a51b75c36f6794db444cab20eeb24f42a319080ecb486a56d254d6f873f3d188b5ccba11db30c068bd0c52c4322d4a3f5f5195c81c94b0bc04387030418835b1 DIST byteorder-1.5.0.crate 23288 BLAKE2B 7f85a7948406844070a2c8202e0bd52f73b3dfc7c666a97046128044eb9352195afb80e2bf894c0742ad109e4473339de1365d09591de70dfec6c8c02a8e1453 SHA512 96caf981177f6ded9f27f025922cb94eb0cd9de5303bd91680099912d922092e77b7361efa70011e84f1595e443193e4f1b354443b9980c123f6ae573b236f7f DIST bytes-1.6.1.crate 60723 BLAKE2B a6f28770d1c42d7bb02964cafedc205c2730351cfca81520dbf62300284416a49e19c5d858dc37ba001d21846efb75d20977162a7e203e7171ef33868a720309 SHA512 4826cdba7a772b68f7352a3160a4c8ff93002110644c2e99537274cbb9776ba2f40ed8be9cde564f58b884c1985bdbce07cd7f5a46d34b48146ff51f317b5ab7 +DIST bytes-1.7.1.crate 63623 BLAKE2B c399f7f25b85ac284bd2f139d895838eeba7deb56d109c8579966be4b8a7a56bbc26f9387bd0bef9fe5449d5e2ae8d11b254a7ef93048a4827d945b5ce09 SHA512 04cb5bb1718ee378be1d9d56aef2d117ed561935ddadd78139ef2839f998e92c88369c79560bce9d23246a3ebda1dc888af373f9ad4827a0b9a249379bc71e81 DIST bzip2-0.4.4.crate 34197 BLAKE2B b69f8ad38b44eb4912b33d53467492b0ebe6ed740451bdfe9133e71c47a8dbd85b1110a9607c4cc627fbabc44cd86fe0396bb545864632ffb6169f9cfa547b6c SHA512 9cd2b9159bd0b42ac908ecad41f0a737272af94ae0d6dcfe182d2f44bcea4632d32b0456f02322047ea9d6f46377db6cd083f468782bccd6126bcc75cb852555 DIST bzip2-sys-0.1.11+1.0.8.crate 633444 BLAKE2B 01578c512443134fc786669bea4f2ec4b9c457b9936c907315299d8b67ed78045d458c83ccc119f0fad511529fb5af5feff5fa2d983fdae832d2fcc1b343e102 SHA512 d0a86b9f03acb1e4e309d5739dc2e88cab582757d467a433afe0017017f0e5d2c0282529e3a117160958ed170d8d695ecae739805888305df0e35e4dc440582b DIST camino-1.1.7.crate 36204 BLAKE2B ea87922e77401a23f25d66af303f39c568f37377e4f0cd6d206cb7b175a51528680bf67897e3b9830d276acb1b156b7c66e149b75370be202cb99fbbcea54233 SHA512 b82c809bd52549d16e286d514b5dbb1d640633b7ff05412ce3539e543de9c69d99bc3f62597b94fc0cedd7c8034ebf73663a6f647e46409b778baa4877928c45 +DIST camino-1.1.9.crate 37552 BLAKE2B 28b21517730db408598f83e269ee8aa4dc5388c4b491779ebb6e76c478d407f929bda6906d88d429828d7f01be1762c72ecbb6d8c7aa4a1d1906109a17b45df1 SHA512 27a6a3cf72c46f15a6017aea44a048f2a8eb577aa9d2a088141b1cb7479106152ef0bc00a6cea9332c4df4d0c54aa6bd3dc21159f15640e347407c15a1bbf7ea DIST cargo-make-0.37.15.tar.gz 1967295 BLAKE2B 49fe9b12787f97521536dd3457e15b379195a06804e4ad92d7659c7d81fe9629c0
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/
commit: 246d306359a13d0d9e5f6bfaa5218f4596db90d1 Author: Joonas Niilola gentoo org> AuthorDate: Tue Sep 3 11:02:38 2024 + Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 3 11:02:38 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246d3063 www-client/firefox-bin: add 128.2.0 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox-bin/Manifest | 99 ++ www-client/firefox-bin/firefox-bin-128.2.0.ebuild | 359 ++ 2 files changed, 458 insertions(+) diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index 91a14b071379..e83a31fd1b23 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -287,6 +287,103 @@ DIST firefox-128.1.0esr-vi.xpi 655578 BLAKE2B f4a1afb49af9170608bd106c6655a415dd DIST firefox-128.1.0esr-xh.xpi 417178 BLAKE2B db647fc6764380635d796baaf6084094f15e877c0e798de889c2fd16bf71b318963dfc6d9c2a6f1a678a241970bc49e85ea524c7706c86adc2735ba47cd1fa9f SHA512 0ea3a9f7c35ee95645a973c68bbd61c871ae378141a10dd6b4826efccfaf332377bfae4d6f14840787e2e06ef80864a3010755cc56d9d05f46e9bc9539ad4542 DIST firefox-128.1.0esr-zh-CN.xpi 657339 BLAKE2B 37acc3369de9339eb10a39211526bc8cbf82f3962b0415cdf96b9933fa88fd5359361fa6c0a32545cf31cbd86d590efe9814b67d835f486e2a39387c00bc6e04 SHA512 524d90cabcf3ec2f882670db7571156c61b19302371c3c17703fcf3abd6758aea898b6231c51a50b3db6607855a6d79677054a9b19cfaa522bde9211b9ae30a4 DIST firefox-128.1.0esr-zh-TW.xpi 659474 BLAKE2B 98d0e9d960a32692cd34e4ac99ec5494e74b0b55d45a2f36cd4f722ac8ea2c9074c733ef2b04a0bba60e9622c26a14bd38d8eecf8a810f0819a5c85615023ef6 SHA512 1a431fd2d01a78fb761c812bdff06361c2c5f59fbda12656a38622346cd9370e6748b61cc98ab38a3d31d9824aa9f2da4e90a0cb6d0533e40136aec7ac8f1469 +DIST firefox-128.2.0esr-ach.xpi 465016 BLAKE2B 70b8839a5028d7b87218116dd44fa724fdc1aee91c371bd5e84112a9153568d7186ef4237f707e08b9e22f0208affd03141b49fa4b842cc82faa5ebe7f19004f SHA512 688b8fdb84a6bf069650a65218615d605cd9cbd52435261f3f4fcae749cd67373fb1ce34c24bd3d0712c5e9416a2c111e2bd245050130423c944b64ca9092c1b +DIST firefox-128.2.0esr-af.xpi 418343 BLAKE2B 6b52d8b28d7e1095257927e2e894276cacf131fbd8827bb321729787d4f2b9d35418c5b834a87c30fe035f31f03c003d3691d2350ffa6972d1ef8de15952fe6a SHA512 70bfdc67a3f2ad213de61387f611bd9f6231eabc7012f190b84020ee3c75d70579d88db5cc1995f86fe1eeae72c31438f64019824c4ea28ed589b39cc12b9dd9 +DIST firefox-128.2.0esr-an.xpi 506833 BLAKE2B 0c46cfef3202306b143015195ad4dc8d04c1bbb51dfd643b55abbcb44903774a4b119c0cd2336209eef2ef57abe5c2f6d0b82eae651e1cdc738580e6cb56474c SHA512 3dcc2c6ceca2d8452322fdb129537447d4bfc9951195e66a24ad7fc5c5f3bf9cff17326eb98c3fe7afc4e33ec9ae6f5d5b15e2976da34192a712bb1a08dc58d9 +DIST firefox-128.2.0esr-ar.xpi 612892 BLAKE2B 940c8caabcafa3a9c95905d820bb622adb94b259da739ff5ed88338b3354d572aeb03afa98aeb8f89b83dfd5c0fd5a6c0221c64ece8b1be8bdf0913a5c7e29fa SHA512 2c18828e3694d898bfb0c7fe36ac5937a1baf70dd1613570e1c11101197d5a66593334fd6a2b007ed680d8d62e6f5eacc1ac2e4766dd0f6fcba8fd255adc5780 +DIST firefox-128.2.0esr-ast.xpi 497291 BLAKE2B 752ad97fd9c00912228226324eb8647bd5c4cfdf3a8339aa0100047a4e75a818cdb327b5505e9ddb8a33cd80a26217a0bd9cf0fef6ea0a4895a3db331686b830 SHA512 bbbac520b9dc6eb6fd9c4a00651842d8765411fbfd2803c6c536f0e5b1fb7e0ca8886eab0714588dd26fa191363f503550d39ecc14c6263cc1247cab9d43b007 +DIST firefox-128.2.0esr-az.xpi 491719 BLAKE2B bf70d9814f2951a02ad0522d23e8162785087972ba02355613dd14f196308335b0e126845aa378cee1e11188f832cb0e11064d7ede7c3257b5dde0cc5932c32f SHA512 c35f461cc54aa04200729d212525e807c3361b081ade3d6b7a0bab462fcb43c7ecc05ca0cd8a1c3a6471126de7c45386c5bab6b9225940f3bbf11441fd9c2195 +DIST firefox-128.2.0esr-be.xpi 717327 BLAKE2B 452c846fddd81bf764903eb42d4aa87d7f96fdbb2b9a87718abf6b6ec3552855a6fa066fc69eda91bc51143ecca890fafbc5297f9c7d3f1a5730b6eab39e04c0 SHA512 7abab5270899c9ac4be6ced477c630096475164caa37d88089fde40c1c3e8c794f21c4a88a001f1ac5c7605eaa63c3d156e27eda331d77ddfde5ef393f7d45f3 +DIST firefox-128.2.0esr-bg.xpi 637126 BLAKE2B 7bfc353a577a31c3baaf8af178dc34e50b36fb02f8a23e585cb8f7a6d97252c49a642fadf2ae47ad0615af9c4dfcd77b631d164d3bc1fce87fc2008c2d109e1d SHA512 16cb5b6eaf1f4691b59d5354b4df9cf1b55d317e42d07d59226315448c9ae2b61225bd6f810bf192e2dea8ad8b0b574a51c47d7196f93367a78f873255a21eb3 +DIST firefox-128.2.0esr-bn.xpi 582470 BLAKE2B 7395bb68fd185e1559dfd94ea67c9e70004c59b0d2fca92596ebf2f7b53e3985f0dd1f00660d591317db23f460048bb89cfe832813060e53e52cf3425c5c74d2 SHA512 731c42ee4b5e0ebe309bee4370601324ced7e7d95f5543dc4fe72db60fb1d03e5d4474755b329744e00ebb3fb1c3cc905c50ec4a9a6ded85da90ec4fe4bf5c86 +DIST firefox-128.2.0esr-br.xpi 590836 BLAKE2B 3d3352e5466a2df24f294eab8d604ad97615aeb5edc02edda2485ae47db99702e6dd163dffe4d356e651ac1bc36b3815cee22b2d27ff1ec6bffca007a4552197 SHA512 1a59e68eb68c3f2be052ea6291bf4cea5543c3843ab31f76018515e3cee2d8e0191e0ab9ddebc3cfa2563e242e6a8a58c72ff6d087ef0e3bc5fb80f6c2a30aef +DIST firefox-128.2.0esr-bs.xpi 510170
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/
commit: 3cd30de75e3bd4cf9d438e61fc80e92c7e5adb14 Author: Joonas Niilola gentoo org> AuthorDate: Tue Sep 3 11:02:50 2024 + Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 3 11:02:50 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd30de7 www-client/firefox-bin: add 130.0 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox-bin/Manifest | 99 +++ www-client/firefox-bin/firefox-bin-130.0.ebuild | 359 2 files changed, 458 insertions(+) diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index e83a31fd1b23..c1adc9c6445b 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -481,13 +481,112 @@ DIST firefox-129.0.2-vi.xpi 658018 BLAKE2B c4270754419a125f05094000afbcfd3cfd484 DIST firefox-129.0.2-xh.xpi 419349 BLAKE2B f7e5832c8557d13d02b1afec6da0a277ff1ef3ccd9da50928a345792073f7a08a9d82ec7a01eb9d1513fd10f63b2c8055703db6e994747b7a4779e518f0ad840 SHA512 949f7553b0d50df1b6a8c74b97bc65d0226ef883d0dfcd1f35704bc00f69fe520f42ed854298a3567eeeae4077f9ca50a0ef38d009ddb879525ee832fd903fdd DIST firefox-129.0.2-zh-CN.xpi 659755 BLAKE2B 9ae434ddbf71f457f35104064d014915be20139f612867b5da10d028284676e9156fe01e5f66b7df411e521e21a57d4a6d1b005eef675facbe254cc7160a741e SHA512 600b187ea9e2c2b0795052c0dda9bd7ecd9961e3a135fabf5ca656120445d4326c89e6ac8c9905460218a5b85fb0e02d4fd625d055529bccbdf05907c2db04f0 DIST firefox-129.0.2-zh-TW.xpi 661609 BLAKE2B e93e814e9096baf65c99011b62bbacded0c9820cac8272ea16059e458efb686c71d9ae110d9ae365fdaba15253dce825a3cd884e9d18b84457a25fcb58a7550d SHA512 1cf2a02b4b7d9680d661fb969d1f249f1e4e7b3af16fdeb60f45b6825e893052206331df2b05cb603546601f9ba98f3e840672390c067991d30c6803b1bf78eb +DIST firefox-130.0-ach.xpi 467588 BLAKE2B 13924fd0dcc0d0c1a2cf7760ef263d257da8d6f761bd48d503c6e7fa8438996f36f83424383d6b285ed76eb6f284e45eb83ea19dc5892d99e0b5851b4635e4a6 SHA512 fa41e89ab9237b76094b660d439a8100bcf971c81c7f4f628f908978cc22f2018f21fa10a415925ce0f34e00815efb9f55210bc4629b9185035a26beac0ea5f6 +DIST firefox-130.0-af.xpi 420693 BLAKE2B 7e93d3dcf9a7e9ff348fac82174e0b103a6e3d9c6fe57b3500263211cf1e325b701343d01f6117669eef0197d0fb31e75be9ff0e7bbae3f952183ece781c15ad SHA512 3add870cee9dae595b7b4fe7f2e1a122f51ef937090422b7ea5723b87500b0daa7e90ff5e0a9f1e5346dfaf9ed78eda4df64b1dc5d4cc3732e76f626d38551b6 +DIST firefox-130.0-an.xpi 509179 BLAKE2B 1727e110a5328e5cad21a601db2b61318441fa58a4289584fa7dfeeaffc3591b5e14f45342365fab0e34db9210e0ead4b1a1d603b5199fe216a1227db1bf9e91 SHA512 ed9520e7c2825959e5239ecb7e4e56850fcd20abf9f749b8990d77a418aadb691ddef95de0c4193de7351ba59c4c96ad766f07cd19c1b893d3315ec814936617 +DIST firefox-130.0-ar.xpi 615236 BLAKE2B 888a050b002e1e09c1c245d25db64d096e8ed5ac20e2eb024aaa8101713548fd8b13979ac5ee9469326321ec16b238c332c74402054129fb88841a98a6be86b1 SHA512 14aeaf22b05e2574f0699a7abc86e6a96d8c22ba71477fcaac7478a562921c16399518b7007cfe7411efe51c8a0bade72a1e47f6570fa58efc6b99f550da2fdf +DIST firefox-130.0-ast.xpi 499645 BLAKE2B d9fac1d64e938bb3dad3d9d675a2aeb393682020babed7f95d8258dbe9aa49bbefe6599ed314d50cbc0def96c7398b911f56721c9e4cff98c68151e3655c6464 SHA512 249eb1526ef6c474fde33bb0cf81155e14be8df9a06e1308428e6eee43159c164f32c1fd2b79d3a1c6190ef566bdb5e281a379ede68e189f71c507d8f0a5cd1f +DIST firefox-130.0-az.xpi 494320 BLAKE2B b1a72494ca10887329f33c56c553e71db44c5fe6974905e3ee5ed2a4189c9f83d9c79e4edb0a96818668964667b24f01741406d925be31c14e4c544fa609a287 SHA512 afae69e0fa446a9b8d710686ece98ed148effe4e1038c863a2342a8d97caacc726547520a12375125a27b3771f9a44cad627a7516bea34d884e685d6612fcf23 +DIST firefox-130.0-be.xpi 726464 BLAKE2B 46a0ea6d367c6c5e0342b64f841344fd9f9b5f43434aa3f1d7cf6abb990d776d00469d40b4e77d53a9e4f35272e61e7e780be815cb9e7b6c7bcf19b328a41d5a SHA512 b8d26bb08317850ba0bcd7405978fabe361f7254b0bf861ece7bcfde09ee04db659817769ccf60db858fa5543bad14cb9cc43abc8070759df4435ebcc05d1b12 +DIST firefox-130.0-bg.xpi 640068 BLAKE2B 597a3613635d6835b9482be4892ac5729585ed0ffe18c07f0981273ada8a2d275f403f9c838a2e5981d98d486842e38bb3f3e2f0b7aeb0cbe09398d286fa6fc7 SHA512 0ea21b50ca8d7314ba0b8ed53c18005f7e203c4f172d55e363ab4d698eec99d346d7dc870d4e8ce0c8bf14c7d31c123c6d28a3861d378d1bdd7454bf512b8c55 +DIST firefox-130.0-bn.xpi 585048 BLAKE2B ed70f1f513f568a435b4d646f38c9a87950b064675f06f5dbdbf2c4b4cee60564a8ce2ecd0bb4d053d605dc10df321f807bad29915df5e06360298d5650ad751 SHA512 6afc892e77f826767f2fae8b3eadac13f63369255f60b4846b25d2b17acf45d63f2add409313be98522c04e6f47730712853bb8e279685a64b9e7073a45ef136 +DIST firefox-130.0-br.xpi 593557 BLAKE2B e52c14887baf248cebb64314e20079751833d6afe78de174c21fa759261b3287d20e2bae8d56d048253e0e54be5b3cceded51782a25c771f5516148017788850 SHA512 08fb191925d131b72529c8af0cffcb83766e63345f9813a0e2d93c4bd19d08e5ed215c4c1c3fb32b10bf12f078f9e16b4a97568c09257d5b359850a3f71002d9 +DIST firefox-130.0-bs.xpi 512747 BLAKE2B 8af1891916cd6b99c32aa0dd3fbe09905e1731bf9937c13f4b1fc35a2
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/
commit: 66647794bba11121e9c029e45a19f420403448e4 Author: Joonas Niilola gentoo org> AuthorDate: Tue Sep 3 11:02:24 2024 + Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 3 11:02:24 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66647794 www-client/firefox-bin: add 115.15.0 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox-bin/Manifest| 98 ++ www-client/firefox-bin/firefox-bin-115.15.0.ebuild | 378 + 2 files changed, 476 insertions(+) diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index 1e4258a9d0b4..91a14b071379 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -94,6 +94,102 @@ DIST firefox-115.14.0esr-vi.xpi 654030 BLAKE2B 50c98562477a14b9335085facd70c57f5 DIST firefox-115.14.0esr-xh.xpi 414958 BLAKE2B 1af9337e005c4e0f41417b5ef8531b5382d19eec5bd21fe04a8f2cf78b814e0cf465e1def6ed1264820bc655e8913012351490babe27f6189e136f3c14686179 SHA512 482f64c4d78028f4e8425c03471a9a52fd10f12954d3eb4a51234765c4b488b8647789fbce49360a6f7d3a7b19cc7bf4d311e327b909ea198021d067cc3e0a7f DIST firefox-115.14.0esr-zh-CN.xpi 657110 BLAKE2B f47b3c47f1cf85113d54ae55ee271d5630aedfdf8ead93a642a183a8c2c3be6a1bfba773041f4bd85196bc0accf86c43933863719e9dbd8cb010692fef9da197 SHA512 c6d950a9f7b47a4e354ace74f3029fd81c2eb22a9fb164fe8516faf3c1d3151881580273c29a6fb3bbdab3ba440eb78a6087e5e7ceae26fc230156def218529f DIST firefox-115.14.0esr-zh-TW.xpi 659310 BLAKE2B 2f552df1a66f7c4f05e598c55d977058fb625aa256f3e252e69a3511a34dcb294737a5ae44f5cb836e595581aa6886e5a37488fdb9cd78915eb152fdc40e9092 SHA512 263a0bf61992005d76570f13c3472fc7ea7d04dfcb3b5dc468577c6be6d95045d7d0ac743fe636650e3dcd056063ed9cd6e25983d8fd8f5078fa68c774d8dde1 +DIST firefox-115.15.0esr-ach.xpi 459032 BLAKE2B 13e159c7270e5a22005107568fd1f91e13abbc16ba00f2bf6acdddf5b8cf138fea437f2f115a2fd47bfdb5b4b461e8d69b0055402f2a2246afd15da165ec SHA512 2dfbd17fe8069ccbcb79bfe4d777cefd99d170aa692776373f3d89d79d97369df04158f338c4dcd1811c87432b10d2d89ab2854840ee4585008e7931ed4090c1 +DIST firefox-115.15.0esr-af.xpi 415184 BLAKE2B 6a6b02bdaed92601de9b04f45fd8b375dcf30719d4a911f03cb56bb75d7a1ee63f8e96955bbd3c24a8c28ee3f67fe138225cd229a7f393888fb4d314d8a7c0d9 SHA512 fcf0974406aadaa7ac26415071c19f413a4cc8617f8db9812ba72d18493e4165f1071918067054b6c8f9bb16709884d1711c964adf6ce8586e7568e074043325 +DIST firefox-115.15.0esr-an.xpi 499567 BLAKE2B bd5f21f0b62d3f27eb9515c90f10ff2455c410661ff7d0cad205dc5fe85bd5ad57a02661e18fab4e843f7021ccb1a1e3e14916eea752ce3445f6d9996ff1fa04 SHA512 239c2a53a27250c28a9719088f166c1d5f265d096bba37f63cada8ad60b33a9aa41fecb57c68b2b6c0805c8d1cdde4dc07babf43f116cd1a0ec0c4eb68b4d3fa +DIST firefox-115.15.0esr-ar.xpi 606286 BLAKE2B 6efb4de8944e9fbcc38917534d6c5cb7d730d16fa0ff4d02d0fc97e2e7dbd21bfc8b3f87450bc393b181feba4e35dab2f928594ee95efe813760597092c07ae0 SHA512 3294354361ae59ecf9bbc668e6e10dfa9d0c1d37579e271341cce02017a9c8fd6a864fa2f0208382719199049537f7b05d6aefe9a71ef952edef15e96b632528 +DIST firefox-115.15.0esr-ast.xpi 491345 BLAKE2B d122be5c30720e63f3e1b304f0e2d439783478353d4a7a02a7f2678a4740eb860467a90c4cb8be92cf644308af0abb3115bb86deec82e5139f37ec03d2f8b5a9 SHA512 d352c7a25bd428a02f6909a3cdab24131ababd12b6e8d0697c2c838b86919123f6e70b4056e7eeed70fe84c5bd604546c86110dd47cb08abebc0a0d198b18b44 +DIST firefox-115.15.0esr-az.xpi 486087 BLAKE2B 4e8970966673b49e81ed8316c1b605a73c6981f0047dfbf252129877c607ab21a57d1e020416e84b5a2dad7063416d3b49d948b9206b09dc87cccbf486714199 SHA512 d4c7ba927cf036e90f6dd5b420a8e1245fa9508c8ad82df438c10b334f13ade77a1b0ff7350b6b0504af0a8a6af5a3b8e141974f20f7a20695026f7c2e57e22e +DIST firefox-115.15.0esr-be.xpi 715649 BLAKE2B 8d88effde67725519870d237865de84a5cd282895e949f68e261068f88e16c8d4c87514df09a7d573bcd5ca7dc896a44e8a824e8924d85c514b37b9f38ca3fa0 SHA512 5fa6e1bd429d6d430fe3feeb79a19c1f60257677f9a1036a31deaa772ddb70b5d09d23d6b88257dcdd68f27c685cfd5741fd252b2e5c13f05073604571a00747 +DIST firefox-115.15.0esr-bg.xpi 600392 BLAKE2B 15c6a5ea2b953a6d2e06754422e773d07177ed6ed9f3985bec6bcb9f40885054b423e50d1bc1371b63f120d5fa6c644cbdf2e32c38c150d6dd1aa67a61c26b24 SHA512 a0de80f4cef8f3b8ae19b5ea47e17433e81b6910ea537bccecbfe18c521c1df0f1ccd4e0cf0fd2c533e0013ac989d9e31e90d7ed7fbabbe22c9c56e20b9fc996 +DIST firefox-115.15.0esr-bn.xpi 576362 BLAKE2B a70a8daf6e486ce2b32b3c00d307dc93ce92c511abfe9088b1124fb9a0f99ad22923a188fc357264c3c2d8bc4ae01cf1e6a7966020a565b2469be41eea09c17a SHA512 3e8770a8bdaca4d12f1534f5436eef77f191aa1275c236c49732f76f4e39e5753ceadbeef25a2658d34446301948469939236bcb10ce59e89ae6ebf104d12174 +DIST firefox-115.15.0esr-br.xpi 585005 BLAKE2B df78592aa869ecba8831a5d323f33a039ab07b6cbc656ca73aa27d00045cb7c8fe82ad23e82e6203d50c2c0f3d413b56dc9d58c2d206ffd9db4a55f9c8eb4c5f SHA512 041b6abec3800a133f99283088569a70beb52daaa31a94912729e44164f6e97089aad5fb9db3f514e5383eb8c6c2e26e2ad39e3024cf9112c68f856f6ad4fcec +DIST firefox-115.15.0esr-
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/
commit: 9bc12b85c6a5b7b984a5a2764514c58d7e1db1a4 Author: Joonas Niilola gentoo org> AuthorDate: Tue Sep 3 11:03:02 2024 + Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 3 11:03:02 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc12b85 www-client/firefox-bin: drop 115.14.0, 128.1.0, 129.0.2 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox-bin/Manifest| 296 www-client/firefox-bin/firefox-bin-115.14.0.ebuild | 378 - www-client/firefox-bin/firefox-bin-128.1.0.ebuild | 359 --- www-client/firefox-bin/firefox-bin-129.0.2.ebuild | 359 --- 4 files changed, 1392 deletions(-) diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index c1adc9c6445b..64518c3f93b5 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -1,99 +1,3 @@ -DIST firefox-115.14.0esr-ach.xpi 459031 BLAKE2B d3cdbd91af8e9d03a7624b1d8374dbd31edf0a619851422403e8fef616ee66705a186d8d5eb84e449965298a7e81abc70c1104d2138241d07948c01cfab022e4 SHA512 84c30cede83bb4075950375748ff2c48a799829d57de6b8bac6fb38996242a6cd42f71b716619e7f66120af4a4063342d78762b8d954cf49a9dce355dc1b6e24 -DIST firefox-115.14.0esr-af.xpi 415184 BLAKE2B 76b0ccf4cf4969e4007cd770b40a2fa486145d270887a85130c63f3443c85f1134b5f396a1e5f53211180ed27b5e63f9f1a4117faf2fe57a9275f68d0f2a30bc SHA512 d8427668d07571007968f476758907f0dc2c4ca3424331280477791df267954aa982ec5f26885a7b7c174fec3cef946d326dd38c59fb39e80942befb74f99503 -DIST firefox-115.14.0esr-an.xpi 499580 BLAKE2B 61641d853bd906600179e58047cfff47d05a0ef760a072de84f3905bca08400036423c55e1b68ac6ae06dcbc983e99d0f1db73d0a9ae70e0d8cf6889ba6321f3 SHA512 26d6c2bdb55d070b1f74a74564e8d8a45c93935b532d4532e133a3a3b4119d18ff0d609a703ce4136d0161f840a6a34a2012867a4ca0d596c693a2fb396b7fb3 -DIST firefox-115.14.0esr-ar.xpi 606291 BLAKE2B 7cbabd7af93763a04f6da7245929d8cc71d1913b8e6e83879e878238a4de82fb341ea6800818f60ead1e3047f9bfd51d4983d3b0448fcc1a7304bd7bdf0903d2 SHA512 d727b6c0230a2229abe77b47ab12dc8f8b2b2e3dec7e05447de3a69d0e54e636229e158bde032c8718b034c3866c0f5d20d797de5c60b075b669ae5c01bc065a -DIST firefox-115.14.0esr-ast.xpi 491347 BLAKE2B dbe9b24006b8684f3bce6642ff4287449e6aa37529b6a15930a0ff259f19e982c0b49dc18165d59a579261d09eb01a79d7e4a5d992d60baa8615b638f179 SHA512 f48598254612eb31c49a7680cd76d7ec19810e7f456d49994c7876ea69a71f2b2ce202b78d4edafdce03e9fce380d4594d42fbdb77de4731f8be3135236477df -DIST firefox-115.14.0esr-az.xpi 486093 BLAKE2B 79c846b33bbd744c5bf9799bd5f27af5b473465b73160305cd290228e73564a9425318d4fd5e8b6b23f32cd88fc3b26d52b2bc6bfc0e09a096b4d9ed83c41d17 SHA512 a56ebb803dcee256ff69fb5aad02b9343c1462469292ad581732bf1827492c478c45c730bfd62245bbdd5d21ef89e2ac3381f1ffe4eb66dc65530bccb269ddba -DIST firefox-115.14.0esr-be.xpi 715663 BLAKE2B fa47bba709eca24f1043727aa1ac8bf657925bdbd95d788d88fef39f9d2725d1e3586a02e7239fecd0ad33ec64fee65b7cae54f3f499d56b6a3c73a87fab6690 SHA512 07ccf8b64ae69d6b85fab6f85634a4624920bd7a6025d0d781f74f9ae734bbbaef4fc8b817f2779ca0420696518aee101610184b197927e4023ed5d39a26c227 -DIST firefox-115.14.0esr-bg.xpi 600412 BLAKE2B da2f5d0bf9883c493e69c2eff9f92dea95f8f91d47686aba133b42320cc07a494ceec0479e7aae83f8545f49efcc2f0d2c117592ffa70b0a0bb897aa808b287e SHA512 4e957ba651437a2799d2aa40fdcea71780a0489d47cde50b2f3f242e3d01477ae3ceb82c38bd267f818ce35c5f39241efd1fbe40708ab1d29ed5cfc8b840e4da -DIST firefox-115.14.0esr-bn.xpi 576350 BLAKE2B a1557db1ef6f4eaaae58568b20c3b98af3e5a88f9ef16b6a2e894afda338e60f51983eba1573f71f5831f25f5c871ac3cae3be9394dbdf5da5848be8eb3b45d4 SHA512 ca0e3c8228e5644e7ee3123cf73525266071e395fd02a98b78ba59708ec13eeedb52652132ce1389104733ac7e12ec5b3e2aaa0e22d15fb6d626f18f0e3fbe39 -DIST firefox-115.14.0esr-br.xpi 585003 BLAKE2B 7e3f3d54a2e0da65c77842355448cfc802b6e99708cb6e30585c83f094a392c61e2fc28212df0c398af2831d98144933cce9dbb365f2c5f3ac46a3c5a833931f SHA512 cceffbbf37c5680d31765a728779d70ec15269ef9f9e4a6a006a7e308c8116d3c62cd8041823cc2ea306bb93f5ed811226ccb8d57b6b981718c6d5404d9150b0 -DIST firefox-115.14.0esr-bs.xpi 496792 BLAKE2B 67f48379e0da2dce9f79b71c157b26310f7876e42add689e21d03125fdf365721858a0e5e6ed54c34bde4a0cac960aacfedc623451dff9564ed73e4da0792709 SHA512 1e5afc91618224251521ae4dbccc0fd76f0f74db0bf73198e91a6543142f523ce017532241fdd113344dee15922bdc29fb59c61f8d35a12efdece203f59f9069 -DIST firefox-115.14.0esr-ca-valencia.xpi 539259 BLAKE2B d35b8af4c76d7fd47830fef0498924fa5e64b1eff84f7585b616ffa0ff42bfba673de28b5bab79662df6d9fa240918bccf1fd5a3d72ebec05abf944ba9006e31 SHA512 538a962bb31747cb45f231b8349edf13b271bc5173c4d3821b96888df1ea5e6040906cece726fb41e0d2a84fa783c8294d364db0ad3c9434635f4680a2be878a -DIST firefox-115.14.0esr-ca.xpi 591043 BLAKE2B 8fcdf43c9505e0bb92a39e9ad29a57e68d4a63bad4bbc0af6cc9435db6c992470a782fcc45521027846df6a62adf4f500cf8c9a5d38c474481e7eaec9be45f66 SHA512 100f449d402ef2a07258e51995e1814de0d5aa518eec4a92adb1
[gentoo-commits] repo/gentoo:master commit in: media-radio/svxlink/
commit: cbc701c5c90bd2ff5e0e87b365181b9789ce3084 Author: Jakov Smolić gentoo org> AuthorDate: Tue Sep 3 11:09:01 2024 + Commit: Jakov Smolić gentoo org> CommitDate: Tue Sep 3 11:09:01 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbc701c5 media-radio/svxlink: Stabilize 24.02-r2 amd64, #938735 Signed-off-by: Jakov Smolić gentoo.org> media-radio/svxlink/svxlink-24.02-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-radio/svxlink/svxlink-24.02-r2.ebuild b/media-radio/svxlink/svxlink-24.02-r2.ebuild index b0f5f4b192f7..d62e1b7badd7 100644 --- a/media-radio/svxlink/svxlink-24.02-r2.ebuild +++ b/media-radio/svxlink/svxlink-24.02-r2.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/sm0svx/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="ogg qt5 rtlsdr" DEPEND="dev-lang/tcl:=
[gentoo-commits] repo/gentoo:master commit in: media-radio/svxlink/
commit: 63782d0555de213491ffe58abe248f6432eb1005 Author: Jakov Smolić gentoo org> AuthorDate: Tue Sep 3 11:09:06 2024 + Commit: Jakov Smolić gentoo org> CommitDate: Tue Sep 3 11:09:06 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63782d05 media-radio/svxlink: Stabilize 24.02-r2 x86, #938735 Signed-off-by: Jakov Smolić gentoo.org> media-radio/svxlink/svxlink-24.02-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-radio/svxlink/svxlink-24.02-r2.ebuild b/media-radio/svxlink/svxlink-24.02-r2.ebuild index d62e1b7badd7..64d96f379833 100644 --- a/media-radio/svxlink/svxlink-24.02-r2.ebuild +++ b/media-radio/svxlink/svxlink-24.02-r2.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/sm0svx/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="ogg qt5 rtlsdr" DEPEND="dev-lang/tcl:=
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libcpuid/
commit: 9b3e519d747616557cec7e1e42bfe4666fe0433f Author: Ben Kohler gentoo org> AuthorDate: Mon Sep 2 12:06:59 2024 + Commit: Ben Kohler gentoo org> CommitDate: Tue Sep 3 11:17:44 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b3e519d dev-libs/libcpuid: revbump for subslot change Signed-off-by: Ben Kohler gentoo.org> dev-libs/libcpuid/{libcpuid-0.7.0.ebuild => libcpuid-0.7.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libcpuid/libcpuid-0.7.0.ebuild b/dev-libs/libcpuid/libcpuid-0.7.0-r1.ebuild similarity index 98% rename from dev-libs/libcpuid/libcpuid-0.7.0.ebuild rename to dev-libs/libcpuid/libcpuid-0.7.0-r1.ebuild index b50a14f5886c..a336c5daa7e3 100644 --- a/dev-libs/libcpuid/libcpuid-0.7.0.ebuild +++ b/dev-libs/libcpuid/libcpuid-0.7.0-r1.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="A small C library for x86 (and x86_64) CPU detection and feature ex HOMEPAGE="http://libcpuid.sourceforge.net/"; SRC_URI="https://github.com/anrieff/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" -SLOT="0/16" +SLOT="0/17" KEYWORDS="~amd64" IUSE="static-libs test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: games-engines/devilutionx/
commit: 6e88fd1c3d281c3d60309e5cb1abb40f9a061ed2 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 09:28:36 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:17 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e88fd1c games-engines/devilutionx: add 1.5.3 Signed-off-by: Ionen Wolkens gentoo.org> games-engines/devilutionx/Manifest | 1 + games-engines/devilutionx/devilutionx-1.5.3.ebuild | 89 ++ 2 files changed, 90 insertions(+) diff --git a/games-engines/devilutionx/Manifest b/games-engines/devilutionx/Manifest index 511b29de8cd0..299e15cb86fe 100644 --- a/games-engines/devilutionx/Manifest +++ b/games-engines/devilutionx/Manifest @@ -1 +1,2 @@ DIST devilutionx-1.5.2.tar.xz 21968848 BLAKE2B 5a8c280f262e2d0f47ee5978cfc858ea62481eac838ad691996f359f1c4889499e4c78b5e6a1f2dc998cf0fc89ebbdf79296a25adb411e30e9248cce1b07d3a8 SHA512 b7fd5814c8671e439d4349297cfda0d89eb1f7a0945ec11bdf7a83637371664c9c39c036249e1650911397111e1b5d9e931f221ffd2d4a1f9e80d5ca58357dcf +DIST devilutionx-1.5.3.tar.xz 22394112 BLAKE2B 1b04c7fe334ddfd6b1eb619b1e86c1e429f6c26c980a16129d8322bb30641409d9d11a203e42ccdbce60a05e00dc49b1a2acbdd1007c5f99e40b88acd1251440 SHA512 619873bb232d1b344f5001c232364af9cfcda72e44f28fd2a15332292fa37c0e64b7fccade3570b96bd648be235ed56e0cc2e3fd8299ac57ef26f2ce844cbc2f diff --git a/games-engines/devilutionx/devilutionx-1.5.3.ebuild b/games-engines/devilutionx/devilutionx-1.5.3.ebuild new file mode 100644 index ..d344483cdb2b --- /dev/null +++ b/games-engines/devilutionx/devilutionx-1.5.3.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Diablo engine for modern operating systems" +HOMEPAGE="https://github.com/diasurgical/devilutionX/"; +SRC_URI=" + https://github.com/diasurgical/devilutionX/releases/download/${PV}/devilutionx-src.tar.xz + -> ${P}.tar.xz +" +S=${WORKDIR}/${PN}-src-${PV} + +LICENSE="Unlicense BSD CC-BY-4.0 GPL-2+ LGPL-2.1+ MIT OFL-1.1 zerotier? ( BUSL-1.1 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +sodium test zerotier" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-arch/bzip2:= + dev-libs/libfmt:= + media-libs/libsdl2[haptic,joystick,opengl,video] + media-libs/sdl2-image[png] + media-libs/sdl_audiolib + sys-libs/zlib:= + sodium? ( dev-libs/libsodium:= ) +" +DEPEND=" + ${RDEPEND} + dev-cpp/asio + dev-cpp/simpleini + test? ( dev-cpp/gtest ) +" +BDEPEND=" + sys-devel/gettext +" + +CMAKE_SKIP_TESTS=( + # timedemo tests only pass when game assets are available + Timedemo. +) + +src_prepare() { + cmake_src_prepare + + # use system asio + echo 'add_library(asio INTERFACE)' > 3rdParty/asio/CMakeLists.txt || die + + # ensure system copies are used + rm -r dist/{asio,simpleini,sdl_audiolib}-src || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + -DCCACHE_PROGRAM=no #813768 + -DDEBUG=$(usex debug) + -DDISABLE_LTO=yes # let CFLAGS control this + -DDISABLE_ZERO_TIER=$(usex !zerotier) + -DPACKET_ENCRYPTION=$(usex sodium) + -DPIE=yes + ) + + cmake_src_configure +} + +src_install() { + local DOCS=( Packaging/nix/README.txt docs/*.md ) + cmake_src_install + + rm -- "${ED}"/usr/share/diasurgical/devilutionx/README.txt || die +} + +pkg_postinst() { + xdg_pkg_postinst + + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "In order to play the game, you will need to copy the following data file" + elog "from the original game, and optionally the hellfire expansion files:" + elog " - DIABDAT.MPQ" + elog " - hellfire.mpq hfmonk.mpq hfmusic.mpq hfvoice.mpq" + elog "to ~/.local/share/diasurgical/devilution/" + elog + elog "See ${EROOT}/usr/share/doc/${PF}/README.txt* for details." + fi +}
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/rapidyaml/
commit: 37681577b557e0c57f7b1e17d4f9bae8de286414 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 09:48:44 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:17 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37681577 dev-cpp/rapidyaml: add 0.7.2 (unkeyworded) See ebuild comment. Signed-off-by: Ionen Wolkens gentoo.org> dev-cpp/rapidyaml/Manifest | 3 + dev-cpp/rapidyaml/rapidyaml-0.7.2.ebuild | 97 2 files changed, 100 insertions(+) diff --git a/dev-cpp/rapidyaml/Manifest b/dev-cpp/rapidyaml/Manifest index 0e0a6986813e..2197240b2ad2 100644 --- a/dev-cpp/rapidyaml/Manifest +++ b/dev-cpp/rapidyaml/Manifest @@ -1,4 +1,7 @@ DIST c4fs-0ee9c03d0ef3a7f12db6cb03570aa7606f12ba1b.tar.gz 25156 BLAKE2B 864a6a75c5ebe15d73fb6ffa5a83cd6448f37a0f465bf3992fc5bc1000f06d6e945c99b9a4f8f3625499c47ea719a49dd340d11e37c11ed759d1adcb1ea585be SHA512 58149c055b1f87abb12a01b042600a2927bfe7afeb878ca4523b658b0736aff6f752cd579c748cf9d4c85b4229ea50a1e70d633f85f9041fe157765286fa5233 +DIST c4fs-59cfbae26b821f4d4c50ff0775219cb739fa7f46.tar.gz 25149 BLAKE2B 8c8fbc59112e5a2e5d2a9aa8a0dc6665466ca309b78bbd5fe0203489bd8823097c79ff09f0dd1d33595f5b052fc95bde911580b8b083ee63f349a7fd0d0dde86 SHA512 3a76522f230c26bbe3b893421b1785259a79a4e7e01f83a2530f35af5d2a10195e4b85cfad6e8a6942715120f3c3b7f3eec3e95ac043ac5b47029dcd0ee8c3cf DIST c4log-457a2997e8ea26ea2a659b8152621f7fead1eb48.tar.gz 12056 BLAKE2B f0dc357c8beb28b2fa73e77f85918c3285be08a6e6c750317b7babddfc2372532d56b29a01adbc2284b7e850aeb2a45f1b24599acca0d0feccf5d60c00432627 SHA512 f728b34c000bbd58ad02d003697de1185feffc1a349600153a7d851f8dac28b88433e97c81dcb14769a74faa9e3d86b297536e8764d6e00b886f11bb2343518f +DIST c4log-f4cf64caedd622a739aaa3ecb67a5aac105c2919.tar.gz 12076 BLAKE2B a5d09011d65aabad37f6821430a48e2ab0808863c34c750c7685f3de4b112251a6c7679b5d8962e83f3fe0847cbc9d80b791ec58907a4ee613dda950c947b553 SHA512 097c4566ad4f2906299e544ee067b01369433b654590cf4cf87cb56017caa5757ba037fef5ed1fd00c143a59e8d66013b07a28ad014903d761919a5ddda7c9d1 DIST rapidyaml-0.6.0-src.tgz 7384217 BLAKE2B b81f797dcdac10368231256765bff08fa9d911550b620c286a657b41e74e589701a41d4f6e33317a7149fd1a2aabbad6bac6c66c1e494db053251e20bc5e505c SHA512 6637aa970919d76339ca7d3d131032ca97720650e275f7e285c0fa46671daf8638695c4db6ccb06f93671171110c445781a7f2c8e37f6d9a4951d6e649f60cde +DIST rapidyaml-0.7.2-src.tgz 10139792 BLAKE2B f50005a313414073281258ed66d973adb9cf22995bf8742727b5f1910f05065bb14baac7273e437c450f72e984b713680a83951706f0cc0564113c406a07748c SHA512 076420688d9e230627ec48013928ede74a65980c1bf5335a187270f90958eb15af11e7958379e4915dbd35723f2eadfb425531a460fb0a0467559f9d1ba34b6e DIST yaml-test-suite-6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f.tar.gz 99765 BLAKE2B d55a605623c988a4c58daa6dd155980129ffefe86570d55b1ce2514dfa77c352e0467b12e95d6e2bd38cc0454f0b30c3109c088841ddbe423b8bbb7d9e41bc9b SHA512 4ab0e52369d085e696196ef1aab8ecb4f0218e48e8ce33c4ecc863942639141601cb1c83b41027eceddc20a6a4cebfc51abcb83779007e890b87d79c76394946 diff --git a/dev-cpp/rapidyaml/rapidyaml-0.7.2.ebuild b/dev-cpp/rapidyaml/rapidyaml-0.7.2.ebuild new file mode 100644 index ..107332c03e0e --- /dev/null +++ b/dev-cpp/rapidyaml/rapidyaml-0.7.2.ebuild @@ -0,0 +1,97 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +# see no-download.patch, match with release date if "master" +HASH_C4FS=59cfbae26b821f4d4c50ff0775219cb739fa7f46 +HASH_C4LOG=f4cf64caedd622a739aaa3ecb67a5aac105c2919 +HASH_YAMLTS=6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f + +DESCRIPTION="Library to parse and emit YAML, and do it fast" +HOMEPAGE="https://github.com/biojppm/rapidyaml/"; +SRC_URI=" + https://github.com/biojppm/rapidyaml/releases/download/v${PV}/${P}-src.tgz + test? ( + https://github.com/biojppm/c4fs/archive/${HASH_C4FS}.tar.gz + -> c4fs-${HASH_C4FS}.tar.gz + https://github.com/biojppm/c4log/archive/${HASH_C4LOG}.tar.gz + -> c4log-${HASH_C4LOG}.tar.gz + https://github.com/yaml/yaml-test-suite/archive/${HASH_YAMLTS}.tar.gz + -> yaml-test-suite-${HASH_YAMLTS}.tar.gz + ) +" +S=${WORKDIR}/${P}-src + +LICENSE="MIT Boost-1.0 BSD" +SLOT="0/${PV}" +# Bumped fwiw, but believe the future of this package is to be last-rited -- +# its build system is a maintenance headache and the only remaining revdep +# (jsonnet) is not only incompatible with this version but upstream has +# switched to single-header version and will not be able to easily use +# system's anymore: https://github.com/google/jsonnet/commit/4003c4df8ee +# +# Leaving unkeyworded rather than do extra work until likely last-rites. +# If kept, will be dropped to m-n given I no longer need this. Feel free +# to take over and drop this comment if needed
[gentoo-commits] repo/gentoo:master commit in: app-emulation/ruffle/
commit: 159c27171e677cca25451a38437a613c537dacb6 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 08:20:56 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:16 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=159c2717 app-emulation/ruffle: drop 0_p20240622 Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/ruffle/Manifest | 40 -- app-emulation/ruffle/ruffle-0_p20240622.ebuild | 754 - 2 files changed, 794 deletions(-) diff --git a/app-emulation/ruffle/Manifest b/app-emulation/ruffle/Manifest index 926fcc97a3bb..bbadb57cf619 100644 --- a/app-emulation/ruffle/Manifest +++ b/app-emulation/ruffle/Manifest @@ -1,9 +1,7 @@ -DIST ab_glyph-0.2.26.crate 19078 BLAKE2B 3b5f367cac98a4f5d724ac33cea2879f34973e567e137e7a75878ee84b6467470041556f9ae0b9ac9bf9f7f396941a71a6cae714918d90cde08b8d0a26dad93b SHA512 63d6c4ec942d3dd9c74913a6c697821f57a4a97caaba2c039cdf49ee15f4d7968a5f0f6dda52b354a8c001abe7a28405b873609dc4a56854f8a804d1352264fa DIST ab_glyph-0.2.28.crate 19965 BLAKE2B 3cebcf213bd99da72e59dcd7b23611a9472065f2da5bdece92540977888b8dfadb8ea7b1cc341dc37b05171512a60e102a0b46e6597914b168349509bf463cd6 SHA512 ab2e4c2ddbb5a93bc049892e2703086a66eced9bfd267f4ea161ca68b5906d41c1cff1c9d75e4beb8f5cd8674f8e6bcec7eb0278f37285a1beef24015444a3f5 DIST ab_glyph_rasterizer-0.1.8.crate 11010 BLAKE2B 2a20fd3ff646559d704e214ae7c4e5b8297e20be0909c403c140edb67002665447a6a796e5ca5d71f5c8c55000489a14a101ec43dd90101be9c246d1a0138dc4 SHA512 6fd5ff2d068da84c4ac2e6e2c5ad6ab2f4926f1664afb8ba701b60a35c3bd7bf00b200b22c455ca15dfc7d4303c8caa0bb150c18dcce01ce107deaf323cde17f DIST addr2line-0.22.0.crate 39156 BLAKE2B 3fbb55f6cacbb177d06359bcd39885247a9eeef96d95ffac0dfd1d45ed394dcd1e9e069c02c71a9ffca0b69e3a974e4d96bc3385470ee39c87d7a30ea7914303 SHA512 b334f51bd369348b4446805b4f624ec9b4cc8eefcc53ceb57b523ff55bf018d1dfe23259daf48d1878170ad4fcb44181d4738456eb5e35ede6932ff29686268e DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 -DIST adler32-1.2.0.crate 6411 BLAKE2B 51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483 SHA512 8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3 DIST ahash-0.8.11.crate 43607 BLAKE2B 7dff8e41798ba25df8c4827ff414a182bb25da4825f0119a74916fe775db5445b87be8fc87f7c7f98d3b5053e1d47546f98873de1a942d36e5f308a3fb7dd620 SHA512 47d211b2422de0b381dfe32229faa346406eb7a22dff867dc04c22389609a8671ce3218e662000c49891a06c259d82e0ff4413740f007729d80e097a6c3f0d9d DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 DIST allocator-api2-0.2.18.crate 62504 BLAKE2B 8152c5a611be91ba23b1e8647511e21f48e7d4f1a7b9a828083f5bb8747cdc92aee66f73251b19195bbdc1f65aad992632e820d86cbeff287d598257ae3628a6 SHA512 5e5b0e23e1f5b259e5d3746e3e05817af8dee95af7105ea775a5c1d69b4e537a4d6a25e2c1d46ab83e2385217b158f7940dc1315ae581c35ee23289647105e73 @@ -49,9 +47,7 @@ DIST bindgen-0.69.4.crate 221092 BLAKE2B 69ed55a5827bfe850f589e39bc6e2f4445e2036 DIST bit-set-0.5.3.crate 14470 BLAKE2B f6525500a494236103df2b27e964bae0b2caf718156879f972b9972fa509794bcc663c2130e3d872ecadb7ead0982b415dfa4468ef12523ee248fb1bbec2559e SHA512 c5ce7ef71559706d996505e138ce95d9f008ac3375928012a36339bfec48986ad935b384e2d21fa0d505d4cf98bd3e93be15955ecd9607d253b8a276351334c6 DIST bit-vec-0.6.3.crate 19927 BLAKE2B f5bd3bb9c87fdf3b206739b74df20cab50a1a45af3a58b2642a5a061c26207884be58ef8369a3cd06dfd3615bff0ce15915fdd4b6b6f03facc4a0f86c0b7e910 SHA512 b4b4a82c80d0ff13527ae4fff449ac9c1c7bc519c013af6ea3428348e0e5b9306b725c0a13a42d7d9dcf0f895a9eee0c63695a2503eb7fd2200083c9ea3a9aa8 DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 -DIST bitflags-2.5.0.crate 43821 BLAKE2B 2d2a78b0a19dcb39580e6f73ed6c468b0626043010b34661084944c83561fe49db24bee1ab57fd692d57617be6506d529e095aea27b753a77e26d0b1ebf7ed78 SHA512 75d7a89e53e5e7582591932bc430e6a1db7ed0f914ded6dbcf957125be52975598df7fee14ef816f66544432ef0505f0a081f3794d17138ec429e283fe14fcf9 DIST bitflags-2.6.0.crate 45357 BLAKE2B 3a368bd2eb58c095b7b4a46680cc2d90a28e24b2e37c854bbf8647c861c4b8fb37eca
[gentoo-commits] repo/gentoo:master commit in: dev-util/mingw64-toolchain/
commit: 28f62579b520ad4b852022ad8a2cd8ad5d49d9fd Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:04:46 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:17 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f62579 dev-util/mingw64-toolchain: drop 11.0.0_p2 Signed-off-by: Ionen Wolkens gentoo.org> dev-util/mingw64-toolchain/Manifest| 3 - .../mingw64-toolchain-11.0.0_p2.ebuild | 345 - 2 files changed, 348 deletions(-) diff --git a/dev-util/mingw64-toolchain/Manifest b/dev-util/mingw64-toolchain/Manifest index d33cfbe97b77..82ac375ad0f5 100644 --- a/dev-util/mingw64-toolchain/Manifest +++ b/dev-util/mingw64-toolchain/Manifest @@ -1,6 +1,3 @@ -DIST binutils-2.41.tar.xz 26765692 BLAKE2B 3bccec2b52f7e82a727121bf2a2e51a6249ba63dcd74c665fd834e858645c912ffd8245d848435288b938852830b482905606f55c40df4061215fd75c52ffc75 SHA512 5df45d0bd6ddabdce4f35878c041e46a92deef01e7dea5facc97fd65cc06b59abc6fba0eb454b68e571c7e14038dc823fe7f2263843e6e627b7444eaf0fe9374 DIST binutils-2.42.tar.xz 27567160 BLAKE2B e67a5c028fba70e70088fd11b38ec8c9c4ed5a019badefda25abeb6275997b16f0891e7ff3424c4b82bbfae92e8992669826920dd53df61cd48469d8f7cd5bd1 SHA512 155f3ba14cd220102f4f29a4f1e5cfee3c48aa03b74603460d05afb73c70d6657a9d87eee6eb88bf13203fe6f31177a5c9addc04384e956e7da8069c8ecd20a6 -DIST gcc-13.2.0.tar.xz 87858592 BLAKE2B 0034b29d3d6cc05821f0c4253ce077805943aff7b370729dd203bda57d89c107edd657eeddc2fb1e69ea15c7b0323b961f46516c7f4af89a3ccf7fea84701be2 SHA512 d99e4826a70db04504467e349e9fbaedaa5870766cda7c5cab50cdebedc4be755ebca5b789e1232a34a20be1a0b60097de9280efe47bdb71c73251e30b0862a2 DIST gcc-14.1.0.tar.xz 92265736 BLAKE2B 7efd6574b8bca081de6e31480ec0565c6d7fb773383e8e1fdcc17e35bba2bf44b3f4f995cdbcccd001689926e96a6563ef3d099902fe3b37ab09dcf553ab0596 SHA512 e9e224f2b26646fcf038d28dfa08b94c623bc57941f99894a321d01c600f7c68aff6b8837fd25e73e540de1f8de5606e98694a62cdcdfb525ce768b3ef6879ea -DIST mingw-w64-v11.0.0.tar.bz2 10058657 BLAKE2B 3f7637bcc7c3f25b2141d35105ea086eab74e228d7275725ffb4f07e283fd75169dbe0900a9c29494fba9ddb2ea03bdd6ae26f06048311e9c93ae3e317c4c060 SHA512 bc1c9fd9d8593ead9375fcbe40950f06cf7616b94dc676db2793ac9b496fe3a6cc94b5793effda3b752942be0d7d01a1c37a8f221aaf178df0d4eeb0aa6d1f8d DIST mingw-w64-v12.0.0.tar.bz2 10474283 BLAKE2B 6500045f7d77f7de01dea0f4e03f3e4ddf6154586c5e3ee9718ee2c7ef1cc83ce3cbd644b6f1dc293ae6e0bfb55a6b68d439622bd1cfdefefc4cc547317f1943 SHA512 949b2bfab8763ab10ec4e9fdfdaf5361517a4ab787fb98ab419b38d02694061c2e821ebbf6e2e4b39d92bdf17419d116daa8e63afd9e01d11592f39df4da69d7 diff --git a/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0_p2.ebuild b/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0_p2.ebuild deleted file mode 100644 index 1e512377b27b.. --- a/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0_p2.ebuild +++ /dev/null @@ -1,345 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MULTILIB_COMPAT=( abi_x86_{32,64} ) -inherit edo flag-o-matic multilib-build toolchain-funcs - -# Pick versions known to work for wine+dxvk, and avoid too frequent updates -# due to slow rebuilds. Do _p1++ rather than revbump on changes (not using -# Gentoo patchsets for simplicity, their changes are mostly unneeded here). -BINUTILS_PV=2.41 -GCC_PV=13.2.0 -MINGW_PV=$(ver_cut 1-3) - -DESCRIPTION="All-in-one mingw64 toolchain intended for building Wine without crossdev" -HOMEPAGE=" - https://www.mingw-w64.org/ - https://gcc.gnu.org/ - https://sourceware.org/binutils/ -" -SRC_URI=" - https://downloads.sourceforge.net/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v${MINGW_PV}.tar.bz2 - mirror://gnu/binutils/binutils-${BINUTILS_PV}.tar.xz -" -if [[ ${GCC_PV} == *-* ]]; then - SRC_URI+=" mirror://gcc/snapshots/${GCC_PV}/gcc-${GCC_PV}.tar.xz" -else - SRC_URI+=" - mirror://gcc/gcc-${GCC_PV}/gcc-${GCC_PV}.tar.xz - mirror://gnu/gcc/gcc-${GCC_PV}/gcc-${GCC_PV}.tar.xz - " -fi -S="${WORKDIR}" - -# l1:binutils+gcc, l2:gcc(libraries), l3:mingw64-runtime -LICENSE=" - GPL-3+ - LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) - ZPL BSD BSD-2 ISC LGPL-2+ LGPL-2.1+ MIT public-domain -" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="+abi_x86_32 custom-cflags debug" - -RDEPEND=" - dev-libs/gmp:= - dev-libs/mpc:= - dev-libs/mpfr:= - sys-libs/zlib:= - virtual/libiconv -" -DEPEND="${RDEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - strerror_r # libstdc++ test using -Wimplicit+error -) - -PATCHES=( - "${FILESDIR}"/gcc-12.2.0-drop-cflags-sed.patch - "${FILESDIR}"/gcc-13.2.0-libcxx-17.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} == binary ]] && return - - tc-is-cross-compiler && - die "cross-compilation of the toolchain itself is uns
[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-shell-integration/
commit: d061dd429809362fb1c09682394b4c8d3e7a671d Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:09:39 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:18 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d061dd42 x11-terms/kitty-shell-integration: drop 0.34.1-r1, 0.36.0 Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty-shell-integration/Manifest | 2 -- .../kitty-shell-integration-0.34.1-r1.ebuild | 37 -- .../kitty-shell-integration-0.36.0.ebuild | 37 -- 3 files changed, 76 deletions(-) diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest index 5f639214f672..44180fb06c6d 100644 --- a/x11-terms/kitty-shell-integration/Manifest +++ b/x11-terms/kitty-shell-integration/Manifest @@ -1,4 +1,2 @@ -DIST kitty-0.34.1.tar.xz 8176176 BLAKE2B c39709a065a04b04bf15e6decb9a96c1699c1082de44690c36e4e05a288f6835fa3c5dd059c363a272c98934b5c66cf5d79078b6403c7f15a9e94f3f72aa680c SHA512 1b361823741c8c2a6ce3c5d56d0cbbd51bd0a0d2574312ef5c05f359c70862e0889a9636e4b95865750cbd239b517763315ed0cf4ec46e1feaffc27cf20e0e66 DIST kitty-0.35.2.tar.xz 8220608 BLAKE2B 277803c7036890af34f2e0497ab1d33cb578cba4bfba425d6699e02e2106cde4e10f7dcc6859ce7eea1b4f34795a2f5180328665450ccb49d8a6da4183fa4f50 SHA512 edc78046f942965c823a1202a6d7c85cc2d2acb376824a0f5224d4ba6f48ed0978a00eb7a3e1e6053622a7d5fdcf80009ecfb61a63272cf407dd30f828f47b56 -DIST kitty-0.36.0.tar.xz 8850304 BLAKE2B 7070f1cd1f0dbdd11a91771c124d7278a4918f320b3f2bbc299cd1d5cab05e617761d97f2531736757788b130453de73951ee75a4d604ee99b8ef819080e58ac SHA512 910864d9f7d1015f42a641200a3bd3f8b682c108c6732a189098072e83bc263d53589e2dfb6e3383abc635f19d4476f3ab22bd24914c316416a8c9fd89d48b2f DIST kitty-0.36.1.tar.xz 8850472 BLAKE2B e03c192d1d523ccc6d20db450fa4f7c4ec741df846152e8363090ed28880aaab40fd5a8c832e5285b6834568730f422353e0bb7e02388e254410ce714f29aa57 SHA512 503ecfc83e367b3f2aacc1bf7849345ef4a50cae69e496325b573660d1fe592cc778d0f9d0d06d5e46210659f4b65b3a7be7dfe1e219565b7371c1848643e111 diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.34.1-r1.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.34.1-r1.ebuild deleted file mode 100644 index f0cfda0f4282.. --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.34.1-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/"; -SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"; -S="${WORKDIR}/kitty-${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86" -RESTRICT="test" # intended to be ran on the full kitty package - -src_compile() { :; } - -src_install() { - # install the whole directory in the upstream suggested location - # for consistency (i.e. less variation between distros if someone - # ssh into Gentoo), then set symlinks to autoload where possible - # (these exit immediately if KITTY_SHELL_INTEGRATION is unset) - insinto /usr/share/kitty - doins -r shell-integration - - dosym -r {/usr/share/kitty/shell-integration/bash/,/etc/bash/bashrc.d/90-}kitty.bash - - dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_completions.d/kitty.fish - dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_conf.d/kitty-shell-integration.fish - - dosym -r /usr/share/{kitty/shell-integration/zsh/completions,zsh/site-functions}/_kitty - # zsh integration is handled automatically without needing to modify rc files, - # but may require user intervention depending on zsh invocation or if remote - - # this is used internally by the ssh kitten and is not useful there - rm -r "${ED}"/usr/share/kitty/shell-integration/ssh || die -} diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.36.0.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.36.0.ebuild deleted file mode 100644 index a50a1338ca92.. --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.36.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/"; -SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"; -S="${WORKDIR}/kitty-${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" -RESTRICT="test" # intended to be ran on the full kitty package - -src_compile() { :; } - -src_install() { - #
[gentoo-commits] repo/gentoo:master commit in: dev-embedded/xa/
commit: 54c28b959f715a67e8c9c382743fc1f6a96c011e Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:13:04 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:20 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c28b95 dev-embedded/xa: drop 2.4.0 Signed-off-by: Ionen Wolkens gentoo.org> dev-embedded/xa/Manifest| 1 - dev-embedded/xa/xa-2.4.0.ebuild | 31 --- 2 files changed, 32 deletions(-) diff --git a/dev-embedded/xa/Manifest b/dev-embedded/xa/Manifest index 48ca269c753b..9035856a1422 100644 --- a/dev-embedded/xa/Manifest +++ b/dev-embedded/xa/Manifest @@ -1,2 +1 @@ -DIST xa-2.4.0.tar.gz 197862 BLAKE2B 27f8b41dafee9c1c4158681d57f971297a0a63e09df164469f665528cffae0cdd78441c0a939d742463e851f32a73ee30a95f2b2b41e2fe42137041a03041255 SHA512 eebaf67715324735203405016df7311bf2ed568ab0e609c0fec7d9d803c173cde5dea161b7f713cb5215454d1ce69acbde43372016dfe9866ed99acecb9aafb1 DIST xa-2.4.1.tar.gz 208553 BLAKE2B 86092d2a215d141f76bb8a31861f20e5124f2ec7125a5649b9b28a86e727d5f201826581c38aea8693d16692d8be13103a917c1152980d6a4764555751af7dac SHA512 aaec796bec362ab253abc33320cb36ef879fa661c2091c7e3b2ce96ccc56063c59335fb7eb1d6a3de9486ab8973cbbc71c445e1ef816572a55a1338ffed19dc0 diff --git a/dev-embedded/xa/xa-2.4.0.ebuild b/dev-embedded/xa/xa-2.4.0.ebuild deleted file mode 100644 index df008580717d.. --- a/dev-embedded/xa/xa-2.4.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="High-speed, two-pass portable 6502 cross-assembler" -HOMEPAGE="https://www.floodgap.com/retrotech/xa/"; -SRC_URI="https://www.floodgap.com/retrotech/xa/dists/${P}.tar.gz"; - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" - -PATCHES=( - "${FILESDIR}"/${PN}-2.4.0-make.patch -) - -src_configure() { - tc-export CC -} - -src_test() { - emake -j1 test -} - -src_install() { - emake DESTDIR="${ED}"/usr install - einstalldocs -}
[gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/
commit: 707e1fe4b946f25928073fd2db0e275de547ddc6 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:11:21 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707e1fe4 media-libs/libplacebo: drop 6.338.2 Signed-off-by: Ionen Wolkens gentoo.org> media-libs/libplacebo/Manifest | 1 - media-libs/libplacebo/libplacebo-6.338.2.ebuild | 126 2 files changed, 127 deletions(-) diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest index 4bcada1333eb..2687364a6dbf 100644 --- a/media-libs/libplacebo/Manifest +++ b/media-libs/libplacebo/Manifest @@ -1,4 +1,3 @@ DIST fast_float-5.2.0.tar.gz 84800 BLAKE2B 39133eda20acd5f1f049e8040815a67aee588ab93be4953bde3b9227fb691e099581ef79b12b740437b78a9b4c9007762b44d9726ca07505ad5cb51394d8e3fd SHA512 c703c7cba3c69775317c66a62ce145646fd7d3d063124501e3d6a7deebb8c62c14a2ccdffed18de2d73d9d3a8ba2061ef1d34cc780ee0b6d607935d5f1b1de81 DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67 SHA512 328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7 -DIST libplacebo-v6.338.2.tar.bz2 697450 BLAKE2B 538785bea0003ff49a14b75f26fcd255259ed3b809b4b40be4000ec715808d6603d0139fe872ff2cf4ec13851a03fe63b251d019ef163fbbbfa74a012e0efbe6 SHA512 6577d19590b4d186d721238bd4c6bf940d1e766fe58053673fb5efb4c2c0a4408f29e7a1477328689a30b22eeac8c27548b82c11bfa0bc527d16f691849479c7 DIST libplacebo-v7.349.0.tar.bz2 701309 BLAKE2B 6d0b546776c0326ab8305e7e12341b13e560e1ef53600913ece82341c762cdd466fd2d172781c769e59a57058769d5c0e48ca408ba0c2c7f936459bba6fb4212 SHA512 2e8cec7928aaafaaf9825cbacfb4758024ff04e40b98061fc6f178225647c90344e5aad23b02d82483062dbccf966a7d0178075151cefc6abaef1890f2b0c128 diff --git a/media-libs/libplacebo/libplacebo-6.338.2.ebuild b/media-libs/libplacebo/libplacebo-6.338.2.ebuild deleted file mode 100644 index 8832825d47b9.. --- a/media-libs/libplacebo/libplacebo-6.338.2.ebuild +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit meson-multilib python-any-r1 - -if [[ ${PV} == ]]; then - EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git"; - inherit git-r3 -else - GLAD_PV=2.0.4 - FASTFLOAT_PV=5.2.0 - SRC_URI=" - https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.bz2 - https://github.com/fastfloat/fast_float/archive/refs/tags/v${FASTFLOAT_PV}.tar.gz - -> fast_float-${FASTFLOAT_PV}.tar.gz - opengl? ( - https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz - -> ${PN}-glad-${GLAD_PV}.tar.gz - ) - " - S="${WORKDIR}/${PN}-v${PV}" - KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86" -fi - -DESCRIPTION="Reusable library for GPU-accelerated image processing primitives" -HOMEPAGE=" - https://libplacebo.org/ - https://code.videolan.org/videolan/libplacebo/ -" - -LICENSE=" - LGPL-2.1+ - || ( Apache-2.0 Boost-1.0 MIT ) - opengl? ( MIT ) -" -SLOT="0/$(ver_cut 2 ${PV}.)" # soname -IUSE=" - glslang +lcms libdovi llvm-libunwind +opengl +shaderc test - unwind +vulkan +xxhash -" -RESTRICT="!test? ( test )" -REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )" - -# dlopen: libglvnd (glad) -RDEPEND=" - lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] ) - libdovi? ( media-libs/libdovi:=[${MULTILIB_USEDEP}] ) - opengl? ( media-libs/libglvnd[${MULTILIB_USEDEP}] ) - shaderc? ( media-libs/shaderc[${MULTILIB_USEDEP}] ) - !shaderc? ( glslang? ( dev-util/glslang:=[${MULTILIB_USEDEP}] ) ) - unwind? ( - llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] ) - !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] ) - ) - vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] ) -" -# vulkan-headers is required even with USE=-vulkan for the stub (bug #882065) -DEPEND=" - ${RDEPEND} - dev-util/vulkan-headers - xxhash? ( dev-libs/xxhash[${MULTILIB_USEDEP}] ) -" -BDEPEND=" - $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]') - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-5.229.1-llvm-libunwind.patch - "${FILESDIR}"/${PN}-5.229.1-python-executable.patch -) - -python_check_deps() { - python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" -} - -src_unpack() { - if [[ ${PV} == ]]; then - local EGIT_SUBMODULE
[gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/
commit: bc6598715ed52588053331382dc8cde0d590515b Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:12:06 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc659871 www-client/qutebrowser: drop 3.2.0 Signed-off-by: Ionen Wolkens gentoo.org> www-client/qutebrowser/Manifest | 2 - www-client/qutebrowser/qutebrowser-3.2.0.ebuild | 169 2 files changed, 171 deletions(-) diff --git a/www-client/qutebrowser/Manifest b/www-client/qutebrowser/Manifest index a2e345783187..41b89b5ded82 100644 --- a/www-client/qutebrowser/Manifest +++ b/www-client/qutebrowser/Manifest @@ -1,4 +1,2 @@ -DIST qutebrowser-3.2.0.tar.gz 6054386 BLAKE2B 3f0589dbbc2dc34c4138bc7ea33ea090a6aff4abe087e7b80f0294789a252924fb90b2b0229e1513c96e863a612bf26579b6e895bc0b9b553c1b7439361ee589 SHA512 85980ccbb1982ecfb142a4e3fc0a66b8ac88f73c394a6c936b8f1a541ea30a65ee576abd7e202ac50fd943c85457d75b5ccac7d51ea34ff1b0f7eb8a647aa18d -DIST qutebrowser-3.2.0.tar.gz.asc 659 BLAKE2B 33d88c2d4020535616ee5d8ed8e517aabf24433ab9d712f12aa1f138398a60807a14383d300245ee7873ed027445034ced9c61ce52a54518a2cc240a01f2649f SHA512 895e6d585f4d1d7373544d763663412136ef4b397565ddac24c1bcf16c75e96c8110cc8dea6fa8457799b893a2e3d2fca8979875b8e8423f270a70100d6e57db DIST qutebrowser-3.2.1.tar.gz 6054942 BLAKE2B 7ddae7333b3ae906adc7811e0e383bb384c2105c59db935b96d165653f9570a249f3fedf9ad98f33d1ae7bd19f8637a3e1ed885f88aa724f4ceb61da4b8046a9 SHA512 753f053a157271806e273b667b656d64277d10d012d6940c5e023125e1f8fab151a32cf4defafe167141fe31461e6bf178d01b2d842f7252fd7405729a0edc68 DIST qutebrowser-3.2.1.tar.gz.asc 659 BLAKE2B d37b81d4dd6b662522c48e4704f2e09d24e4cf87f6ec92389ff841bc80a362a51cac4c7ee1a41d83b4994b2060ea64a57af4220293e93033840838c650a17310 SHA512 9fb75c016ea200735d749f9bfe9c0e85df68a9cc616bd1331e977fe13226baf020a3b09ed37b696511e6668e2e221f15d0cf3731e7070f32fd9da29e8ebef59d diff --git a/www-client/qutebrowser/qutebrowser-3.2.0.ebuild b/www-client/qutebrowser/qutebrowser-3.2.0.ebuild deleted file mode 100644 index b58568e40ad0.. --- a/www-client/qutebrowser/qutebrowser-3.2.0.ebuild +++ /dev/null @@ -1,169 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) -inherit distutils-r1 xdg - -if [[ ${PV} == ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/qutebrowser/qutebrowser.git"; -else - inherit verify-sig - SRC_URI=" - https://github.com/qutebrowser/qutebrowser/releases/download/v${PV}/${P}.tar.gz - verify-sig? ( https://github.com/qutebrowser/qutebrowser/releases/download/v${PV}/${P}.tar.gz.asc ) - " - VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/qutebrowser.gpg - KEYWORDS="amd64 ~arm64" -fi - -DESCRIPTION="Keyboard-driven, vim-like browser based on Python and Qt" -HOMEPAGE="https://qutebrowser.org/"; - -LICENSE="GPL-3+" -SLOT="0" -IUSE="+adblock pdf widevine" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/PyQt6-WebEngine[${PYTHON_USEDEP},widgets] - dev-python/PyQt6[${PYTHON_USEDEP},dbus,gui,network,opengl,printsupport,qml,sql,widgets] - dev-python/colorama[${PYTHON_USEDEP}] - dev-python/jinja[${PYTHON_USEDEP}] - dev-python/markupsafe[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/zipp[${PYTHON_USEDEP}] - dev-qt/qtbase:6[icu,sqlite] - adblock? ( dev-python/adblock[${PYTHON_USEDEP}] ) - pdf? ( www-plugins/pdfjs ) - widevine? ( www-plugins/chrome-binary-plugins ) - ') -" -BDEPEND=" - $(python_gen_cond_dep ' - test? ( - dev-python/PyQt6[testlib] - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/cheroot[${PYTHON_USEDEP}] - dev-python/flask[${PYTHON_USEDEP}] - dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/pytest-bdd[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - dev-python/pytest-qt[${PYTHON_USEDEP}] - dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] - dev-python/pytest-xvfb[${PYTHON_USEDEP}] - dev-python/tldextract[${PYTHON_USEDEP}] - ) - ') -" - -if [[ ${PV} == ]]; then - BDEPEND+=" app-text/asciidoc" -else - BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-qutebrowser )" -fi - -distutils_enable_tests pytest - -src_prepare() { - distutils-r1_src_prepare -
[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-terminfo/
commit: aaf631bed73b33ea91bb5aa312bd772c04b4f986 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:10:10 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:18 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaf631be x11-terms/kitty-terminfo: drop 0.34.1, 0.36.0 Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty-terminfo/Manifest | 2 -- .../kitty-terminfo/kitty-terminfo-0.34.1.ebuild| 23 -- .../kitty-terminfo/kitty-terminfo-0.36.0.ebuild| 23 -- 3 files changed, 48 deletions(-) diff --git a/x11-terms/kitty-terminfo/Manifest b/x11-terms/kitty-terminfo/Manifest index 5f639214f672..44180fb06c6d 100644 --- a/x11-terms/kitty-terminfo/Manifest +++ b/x11-terms/kitty-terminfo/Manifest @@ -1,4 +1,2 @@ -DIST kitty-0.34.1.tar.xz 8176176 BLAKE2B c39709a065a04b04bf15e6decb9a96c1699c1082de44690c36e4e05a288f6835fa3c5dd059c363a272c98934b5c66cf5d79078b6403c7f15a9e94f3f72aa680c SHA512 1b361823741c8c2a6ce3c5d56d0cbbd51bd0a0d2574312ef5c05f359c70862e0889a9636e4b95865750cbd239b517763315ed0cf4ec46e1feaffc27cf20e0e66 DIST kitty-0.35.2.tar.xz 8220608 BLAKE2B 277803c7036890af34f2e0497ab1d33cb578cba4bfba425d6699e02e2106cde4e10f7dcc6859ce7eea1b4f34795a2f5180328665450ccb49d8a6da4183fa4f50 SHA512 edc78046f942965c823a1202a6d7c85cc2d2acb376824a0f5224d4ba6f48ed0978a00eb7a3e1e6053622a7d5fdcf80009ecfb61a63272cf407dd30f828f47b56 -DIST kitty-0.36.0.tar.xz 8850304 BLAKE2B 7070f1cd1f0dbdd11a91771c124d7278a4918f320b3f2bbc299cd1d5cab05e617761d97f2531736757788b130453de73951ee75a4d604ee99b8ef819080e58ac SHA512 910864d9f7d1015f42a641200a3bd3f8b682c108c6732a189098072e83bc263d53589e2dfb6e3383abc635f19d4476f3ab22bd24914c316416a8c9fd89d48b2f DIST kitty-0.36.1.tar.xz 8850472 BLAKE2B e03c192d1d523ccc6d20db450fa4f7c4ec741df846152e8363090ed28880aaab40fd5a8c832e5285b6834568730f422353e0bb7e02388e254410ce714f29aa57 SHA512 503ecfc83e367b3f2aacc1bf7849345ef4a50cae69e496325b573660d1fe592cc778d0f9d0d06d5e46210659f4b65b3a7be7dfe1e219565b7371c1848643e111 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.34.1.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.34.1.ebuild deleted file mode 100644 index 454d33a36840.. --- a/x11-terms/kitty-terminfo/kitty-terminfo-0.34.1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/"; -SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"; -S="${WORKDIR}/kitty-${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86" -RESTRICT="test" # intended to be ran on the full kitty package - -BDEPEND="sys-libs/ncurses" - -src_compile() { :; } - -src_install() { - dodir /usr/share/terminfo - tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die -} diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.36.0.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.36.0.ebuild deleted file mode 100644 index b5c7cbc40759.. --- a/x11-terms/kitty-terminfo/kitty-terminfo-0.36.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/"; -SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"; -S="${WORKDIR}/kitty-${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" -RESTRICT="test" # intended to be ran on the full kitty package - -BDEPEND="sys-libs/ncurses" - -src_compile() { :; } - -src_install() { - dodir /usr/share/terminfo - tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-creator/
commit: 428554cb9beb3e721cc78c89dcdc238dd3292d74 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:12:40 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:19 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=428554cb dev-qt/qt-creator: drop 13.0.2, 14.0.0 Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qt-creator/Manifest | 2 - dev-qt/qt-creator/qt-creator-13.0.2.ebuild | 268 - dev-qt/qt-creator/qt-creator-14.0.0.ebuild | 268 - 3 files changed, 538 deletions(-) diff --git a/dev-qt/qt-creator/Manifest b/dev-qt/qt-creator/Manifest index 328e0964f1e4..4bf80b646983 100644 --- a/dev-qt/qt-creator/Manifest +++ b/dev-qt/qt-creator/Manifest @@ -1,3 +1 @@ -DIST qt-creator-opensource-src-13.0.2.tar.xz 51881672 BLAKE2B 88a5f3b88f444fda59e61c098fe5d4324a6bafb9e552c261d1b5337fb4fe3ecbe59411aaf1c5d77a8d688f8248dd10d28f63c326c53b763912a1085c93963c2a SHA512 0b065dfb5eed95d1c50c39b49ea555f49b323d150e001001ae7ce50ad2cc4c47a8476def6397c8b7c3e26750442afb9df7a93a0ebece79dc84a879a3552da2ac -DIST qt-creator-opensource-src-14.0.0.tar.xz 52488544 BLAKE2B 8ac32b41d9791a6a94c38edf6878aae7acf4520b362f043d38e0b6097a45bbea0368953b0038e64ae32697389921bab701d1daeee787fb30206c6496374b41db SHA512 75a0b2cd3e89f0c98710e43354d75d593d441b845475d5345b5784378054edd8b426bf7cf4b326ce9a56c1a2b8a2f136254f77525441528ff32c2c4a6fb441cc DIST qt-creator-opensource-src-14.0.1.tar.xz 52495220 BLAKE2B a93111abdc39550c18c8ecae9bbb8c645a06be373b179bca47dac4b9e9907c9a7d9c8b13a6cc834c656cd7d7e5a849a6512f8b48055ecc8ea32a0f56f6439176 SHA512 5ceacce80cd5cdef99606ca371134e5e8a5897b67ff1a52d202449e74e817bce22ee31b029b6f8643e19700742ddd8e616a48f005aae0720f200c3b03f8eab9a diff --git a/dev-qt/qt-creator/qt-creator-13.0.2.ebuild b/dev-qt/qt-creator/qt-creator-13.0.2.ebuild deleted file mode 100644 index ee0fcd198e6e.. --- a/dev-qt/qt-creator/qt-creator-13.0.2.ebuild +++ /dev/null @@ -1,268 +0,0 @@ -# Copyright 2023-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_COMPAT=( {15..18} ) -LLVM_OPTIONAL=1 -PYTHON_COMPAT=( python3_{10..13} ) -inherit cmake flag-o-matic llvm-r1 python-any-r1 readme.gentoo-r1 xdg - -if [[ ${PV} == ]]; then - inherit git-r3 - EGIT_REPO_URI=( - "https://code.qt.io/qt-creator/qt-creator.git"; - "https://github.com/qt-creator/qt-creator.git"; - ) - EGIT_SUBMODULES=( - perfparser - src/libs/qlitehtml - src/libs/qlitehtml/src/3rdparty/litehtml - ) -else - QTC_PV=${PV/_/-} - QTC_P=${PN}-opensource-src-${QTC_PV} - [[ ${QTC_PV} == ${PV} ]] && QTC_REL=official || QTC_REL=development - SRC_URI="https://download.qt.io/${QTC_REL}_releases/qtcreator/$(ver_cut 1-2)/${PV/_/-}/${QTC_P}.tar.xz" - S=${WORKDIR}/${QTC_P} - KEYWORDS="amd64" -fi - -DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt" -HOMEPAGE="https://www.qt.io/product/development-tools"; - -LICENSE="GPL-3" -SLOT="0" -IUSE=" - +clang designer doc +help keyring plugin-dev qmldesigner - serialterminal +svg test +tracing webengine -" -REQUIRED_USE="clang? ( ${LLVM_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -QT_PV=6.2.0:6 # IDE_QT_VERSION_MIN - -# := is used where Qt's private APIs are used for safety -COMMON_DEPEND=" - dev-cpp/yaml-cpp:= - >=dev-qt/qt5compat-${QT_PV} - >=dev-qt/qtbase-${QT_PV}=[concurrent,dbus,gui,network,widgets,xml] - >=dev-qt/qtdeclarative-${QT_PV}= - clang? ( $(llvm_gen_dep 'sys-devel/clang:${LLVM_SLOT}=') ) - designer? ( >=dev-qt/qttools-${QT_PV}[designer] ) - help? ( - >=dev-qt/qttools-${QT_PV}[assistant] - webengine? ( >=dev-qt/qtwebengine-${QT_PV} ) - ) - keyring? ( - app-crypt/libsecret - dev-libs/glib:2 - ) - qmldesigner? ( - >=dev-qt/qtquick3d-${QT_PV}= - >=dev-qt/qtsvg-${QT_PV} - ) - serialterminal? ( >=dev-qt/qtserialport-${QT_PV} ) - svg? ( >=dev-qt/qtsvg-${QT_PV} ) - tracing? ( - app-arch/zstd:= - dev-libs/elfutils - >=dev-qt/qtshadertools-${QT_PV} - ) -" -# qtimageformats for .webp in examples, semi-optfeature but useful in general -RDEPEND=" - ${COMMON_DEPEND} - help? ( >=dev-qt/qtimageformats-${QT_PV} ) - qmldesigner? ( >=dev-qt/qtquicktimeline-${QT_PV} ) -" -DEPEND="${COMMON_DEPEND}" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-qt/qttools-${QT_PV}[linguist] - doc? ( >=dev-qt/qttools-${QT_PV}[qdoc,qtattributionsscanner] ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-11.0.2-musl-no-execinfo.patch - "${FILESDIR}"/${PN}-12.0.0-musl-no-malloc-trim.patch -) - -pkg_setup() { - python-any-r1_pkg_setup -
[gentoo-commits] repo/gentoo:master commit in: gui-libs/egl-wayland/
commit: e0a931f0af29b8516d62e094b00e9eb39b8f7ad3 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:13:54 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:20 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0a931f0 gui-libs/egl-wayland: drop 1.1.15 Signed-off-by: Ionen Wolkens gentoo.org> gui-libs/egl-wayland/Manifest | 1 - gui-libs/egl-wayland/egl-wayland-1.1.15.ebuild | 42 -- 2 files changed, 43 deletions(-) diff --git a/gui-libs/egl-wayland/Manifest b/gui-libs/egl-wayland/Manifest index 49c788e57529..7d90b2ea9043 100644 --- a/gui-libs/egl-wayland/Manifest +++ b/gui-libs/egl-wayland/Manifest @@ -1,3 +1,2 @@ DIST egl-wayland-1.1.13.1.tar.gz 68181 BLAKE2B 12587c24828570b5ad399042bb339b27c4d17e14896398d331970b32020956f12d56155e6b97f82c0e7c5f7aa5ad962b923c37ff1609f5384a99bb83e02c2dd7 SHA512 264373b22bab2a26dcd8391308ae24c0afe31168c318fd8fdf74a9958bc41658f9295645c4d91e395b5ab472cdf9dcf5160c448ba54e0aa8eccf04c294ffdb5b -DIST egl-wayland-1.1.15.tar.gz 74483 BLAKE2B f457f27a70b132fa753c688711bb03301d7c22bc1bf039fa6dbf87f8a288572fdd4feb9b5da9e5545d06be95b8c3b3259a82189af14a5ae036f72cf0d01a8a1d SHA512 714f3d52dc1a884adc7d4942bc2486774637f61a05e74b3f00cc9389fadb1328b7fc87b31be9f49bd5be65e43bd6e6dc5341e2e7755ff6549dabaafcd2c50a3c DIST egl-wayland-1.1.16.tar.gz 74615 BLAKE2B ebb6c5ca00bcf78a2d09bc555da8023c16d340c0793b92833fbcc2b05de5a92e26bc59391af9b42d9ed079290c19e94897cf925bc92a926bd518aa3c1a3ccd38 SHA512 cd32f565c287808ebcc46650aecbd023d2df6e1824d30c58822e2f93fe807b37eb87c4626b0874797ad61cfcc75a436f528ec7947dd98c5bae24ca6e7a28 diff --git a/gui-libs/egl-wayland/egl-wayland-1.1.15.ebuild b/gui-libs/egl-wayland/egl-wayland-1.1.15.ebuild deleted file mode 100644 index 93079328f2a5.. --- a/gui-libs/egl-wayland/egl-wayland-1.1.15.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson-multilib - -DESCRIPTION="EGLStream-based Wayland external platform" -HOMEPAGE="https://github.com/NVIDIA/egl-wayland/"; -SRC_URI=" - https://github.com/NVIDIA/egl-wayland/archive/refs/tags/${PV}.tar.gz - -> ${P}.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64" - -RDEPEND=" - dev-libs/wayland[${MULTILIB_USEDEP}] - x11-libs/libdrm[${MULTILIB_USEDEP}] -" -DEPEND=" - ${RDEPEND} - dev-libs/wayland-protocols - >=gui-libs/eglexternalplatform-1.1-r1 - media-libs/libglvnd -" -BDEPEND=" - dev-util/wayland-scanner -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.1.6-remove-werror.patch -) - -src_install() { - meson-multilib_src_install - - insinto /usr/share/egl/egl_external_platform.d - doins "${FILESDIR}"/10_nvidia_wayland.json -}
[gentoo-commits] repo/gentoo:master commit in: gui-libs/eglexternalplatform/
commit: 82db3a3746e69b4abe7d002597dc978eddfbcc52 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:14:13 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:20 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82db3a37 gui-libs/eglexternalplatform: drop 1.1 Signed-off-by: Ionen Wolkens gentoo.org> .../eglexternalplatform-1.1.ebuild | 31 -- 1 file changed, 31 deletions(-) diff --git a/gui-libs/eglexternalplatform/eglexternalplatform-1.1.ebuild b/gui-libs/eglexternalplatform/eglexternalplatform-1.1.ebuild deleted file mode 100644 index f08b0f1981d0.. --- a/gui-libs/eglexternalplatform/eglexternalplatform-1.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="EGL External Platform interface" -HOMEPAGE="https://github.com/NVIDIA/eglexternalplatform"; -SRC_URI="https://github.com/NVIDIA/eglexternalplatform/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64" - -src_prepare() { - default - - use !prefix || sed -i "/^inc/s|=|=${EPREFIX}|" eglexternalplatform.pc || die -} - -src_install() { - insinto /usr/$(get_libdir)/pkgconfig - doins eglexternalplatform.pc - - insinto /usr/include/EGL - doins interface/*.h - - einstalldocs - - docinto examples - dodoc samples/*.c -}
[gentoo-commits] repo/gentoo:master commit in: app-emulation/ruffle/
commit: 8e949fcb0e7f0239e5f322d512baf597700ea50d Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 08:53:41 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:16 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e949fcb app-emulation/ruffle: sync live Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/ruffle/ruffle-.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/ruffle/ruffle-.ebuild b/app-emulation/ruffle/ruffle-.ebuild index 55782a3c6b41..457bc5e52efc 100644 --- a/app-emulation/ruffle/ruffle-.ebuild +++ b/app-emulation/ruffle/ruffle-.ebuild @@ -11,8 +11,8 @@ EGIT_REPO_URI="https://github.com/ruffle-rs/ruffle.git"; LICENSE="|| ( Apache-2.0 MIT )" LICENSE+=" - Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC UbuntuFontLicense-1.0 MIT - MPL-2.0 OFL-1.1 openssl Unicode-DFS-2016 ZLIB + Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 openssl + Unicode-DFS-2016 ZLIB " # crates SLOT="0" IUSE="test"
[gentoo-commits] repo/gentoo:master commit in: dev-python/PyQt6/
commit: bc3a243647b0310975ebf8ffb5d1d500f7108e97 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:14:39 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc3a2436 dev-python/PyQt6: drop 6.7.0 Signed-off-by: Ionen Wolkens gentoo.org> dev-python/PyQt6/Manifest | 1 - dev-python/PyQt6/PyQt6-6.7.0.ebuild | 180 2 files changed, 181 deletions(-) diff --git a/dev-python/PyQt6/Manifest b/dev-python/PyQt6/Manifest index e9d3f8bb89cf..25840d70f239 100644 --- a/dev-python/PyQt6/Manifest +++ b/dev-python/PyQt6/Manifest @@ -1,2 +1 @@ -DIST PyQt6-6.7.0.tar.gz 1050408 BLAKE2B 30dc8a2762cb5a149c401d497af714bb9209bc46847c0699522ee60080c46f0b1d4da854e70151a508c90820a2aa32da422bfd20c4320bcc9b5d5f92fd9e8677 SHA512 619210d2de3e149b55e2d45cbd8ec2113b3effcaccd25eef6067ea99b82e250f1ce288b38136604536053690071f8c843339b934b5ce5e539a5dfdecc26f44d2 DIST PyQt6-6.7.1.tar.gz 1051212 BLAKE2B 9c1c619b08cc14e0a92ea22812c14d5a3cb47e45eea917d50ab63918d8433d54b354f26b885f2567b9c6e2f0380e819972d055d1a1751f6646ebb5e6cf72b228 SHA512 1e0fec009e1823b06460fd96eddc00ed31388c20f6d832aa0ebaa130baf06d83514df43af7961c3cb2872570d27e539d6db7bf6143ccdfd61a19da7521be2c7e diff --git a/dev-python/PyQt6/PyQt6-6.7.0.ebuild b/dev-python/PyQt6/PyQt6-6.7.0.ebuild deleted file mode 100644 index feeb9ad16db7.. --- a/dev-python/PyQt6/PyQt6-6.7.0.ebuild +++ /dev/null @@ -1,180 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=sip -PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{10..13} ) -inherit distutils-r1 flag-o-matic multiprocessing pypi qmake-utils - -# 'can' work with older Qt depending on features, but keeping it simple -QT_PV=$(ver_cut 1-2):6 - -DESCRIPTION="Python bindings for the Qt framework" -HOMEPAGE="https://www.riverbankcomputing.com/software/pyqt/"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv" -# defaults match what is provided with qtbase by default (except testlib), -# reduces the need to set flags but does increase build time a fair amount -IUSE=" - bluetooth +dbus debug designer examples gles2-only +gui help - multimedia +network nfc opengl pdfium positioning +printsupport - qml quick quick3d serialport sensors spatialaudio speech +sql - +ssl svg testlib webchannel websockets +widgets +xml -" -# see `grep -r "%Import " sip` and `grep qmake_QT project.py` -REQUIRED_USE=" - designer? ( gui widgets ) - help? ( gui widgets ) - multimedia? ( gui network ) - opengl? ( gui ) - pdfium? ( gui ) - printsupport? ( gui widgets ) - qml? ( network ) - quick3d? ( gui qml ) - quick? ( gui qml ) - spatialaudio? ( multimedia ) - sql? ( widgets ) - svg? ( gui ) - testlib? ( gui widgets ) - webchannel? ( network ) - websockets? ( network ) - widgets? ( gui ) -" - -# may use qt private symbols wrt qtbase's := -# non-trivially broken with Qt6.8 wrt upper bound, waiting for PyQt6-6.8.0 -DEPEND=" - >=dev-qt/qtbase-${QT_PV}=[dbus?,gles2-only=,gui?,network?,opengl?,sql?,ssl=,widgets?,xml?] - =dev-qt/qtconnectivity-${QT_PV}[bluetooth] ) - dbus? ( - dev-python/dbus-python[${PYTHON_USEDEP}] - sys-apps/dbus - ) - designer? ( >=dev-qt/qttools-${QT_PV}[designer] ) - help? ( >=dev-qt/qttools-${QT_PV}[assistant] ) - multimedia? ( >=dev-qt/qtmultimedia-${QT_PV} ) - nfc? ( >=dev-qt/qtconnectivity-${QT_PV}[nfc] ) - opengl? ( - gles2-only? ( media-libs/libglvnd ) - ) - pdfium? ( >=dev-qt/qtwebengine-${QT_PV}[pdfium,widgets?] ) - positioning? ( >=dev-qt/qtpositioning-${QT_PV} ) - qml? ( >=dev-qt/qtdeclarative-${QT_PV}[widgets?] ) - quick3d? ( >=dev-qt/qtquick3d-${QT_PV} ) - quick? ( >=dev-qt/qtdeclarative-${QT_PV}[opengl] ) - sensors? ( >=dev-qt/qtsensors-${QT_PV} ) - serialport? ( >=dev-qt/qtserialport-${QT_PV} ) - speech? ( - >=dev-qt/qtdeclarative-${QT_PV} - >=dev-qt/qtspeech-${QT_PV} - ) - svg? ( >=dev-qt/qtsvg-${QT_PV} ) - webchannel? ( >=dev-qt/qtwebchannel-${QT_PV} ) - websockets? ( >=dev-qt/qtwebsockets-${QT_PV} ) -" -RDEPEND=" - ${DEPEND} - >=dev-python/PyQt6-sip-13.6[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/PyQt-builder-1.15[${PYTHON_USEDEP}] - >=dev-python/sip-6.8[${PYTHON_USEDEP}] - >=dev-qt/qtbase-${QT_PV} - dbus? ( virtual/pkgconfig ) -" - -src_prepare() { - default - - # hack: PyQt-builder runs qmake without our arguments and calls g++ - # or clang++ depending on what qtbase was built with, not used for - # building but fails with -native-symlinks
[gentoo-commits] repo/gentoo:master commit in: media-libs/vips/
commit: 6639a7b9e8eb83870281f5c26acfd656fff7e1db Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:29:20 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6639a7b9 media-libs/vips: enable py3.13 Signed-off-by: Ionen Wolkens gentoo.org> media-libs/vips/vips-8.15.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/vips/vips-8.15.2.ebuild b/media-libs/vips/vips-8.15.2.ebuild index 5c06e49cb788..317bef1eb0a8 100644 --- a/media-libs/vips/vips-8.15.2.ebuild +++ b/media-libs/vips/vips-8.15.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit flag-o-matic meson python-single-r1 toolchain-funcs vala MY_PV=${PV}a # cleanup next bump
[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/
commit: 0fb380fd49935f0fa217ed3c91141f8222df51fc Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:09:12 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:18 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb380fd x11-terms/kitty: drop 0.34.1, 0.36.0 Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty/Manifest| 6 -- x11-terms/kitty/kitty-0.34.1.ebuild | 180 -- x11-terms/kitty/kitty-0.36.0.ebuild | 187 3 files changed, 373 deletions(-) diff --git a/x11-terms/kitty/Manifest b/x11-terms/kitty/Manifest index 063f02a41162..f38abdf18127 100644 --- a/x11-terms/kitty/Manifest +++ b/x11-terms/kitty/Manifest @@ -1,12 +1,6 @@ -DIST kitty-0.34.1-vendor.tar.xz 1528400 BLAKE2B fde7ba3a9713e10e1b6f3d4e3a35bb1edf0ed50004862e2f367df30b416a1b8e34c03c38c47ec4f7363bc10eace0dd03215875c1b5121151671c0b22ac47e189 SHA512 875ca8c324b80e3be8fead1c56710f7f9ca7f5aa0f8e4e8f1e825005cbe85837d9b58a2b271ead201637f9b10fd5e61b7e8e52276e950f30fe326546c6ee33ee -DIST kitty-0.34.1.tar.xz 8176176 BLAKE2B c39709a065a04b04bf15e6decb9a96c1699c1082de44690c36e4e05a288f6835fa3c5dd059c363a272c98934b5c66cf5d79078b6403c7f15a9e94f3f72aa680c SHA512 1b361823741c8c2a6ce3c5d56d0cbbd51bd0a0d2574312ef5c05f359c70862e0889a9636e4b95865750cbd239b517763315ed0cf4ec46e1feaffc27cf20e0e66 -DIST kitty-0.34.1.tar.xz.sig 566 BLAKE2B fb01069e33f958bfc1aee3e42ab5d8d775d79cf0c54b427690f4455c524d9baff3789823a6a8dce6494a8006715bc17530f1569c540b30f423c41f8833ae08f8 SHA512 cf60f1044661a62e73191526680ce862ae02e0dd89e017c139261cff8667b20be6aca0fb3b56f06c8ddb0e08a3c55eb428358a9db0b59ef65f2bd246fcf9cd01 DIST kitty-0.35.2-vendor.tar.xz 1558376 BLAKE2B be02d81411e8549afa81f1f84f05fbc9f9aef8b634bb5572f4301721b25b18c22381e5d8d9ab724cd98e5aee45ac58c338b56e69813cc5d38b6ec1eb39c2b3fb SHA512 bd1ecd57b7a29bbc391fcc093c3a92223656422ee7726815f07015bfd9fd829118570d8177c19867a3e6a200d1f5ba73919e7a7639584d1bfcae21853c3d7140 DIST kitty-0.35.2.tar.xz 8220608 BLAKE2B 277803c7036890af34f2e0497ab1d33cb578cba4bfba425d6699e02e2106cde4e10f7dcc6859ce7eea1b4f34795a2f5180328665450ccb49d8a6da4183fa4f50 SHA512 edc78046f942965c823a1202a6d7c85cc2d2acb376824a0f5224d4ba6f48ed0978a00eb7a3e1e6053622a7d5fdcf80009ecfb61a63272cf407dd30f828f47b56 DIST kitty-0.35.2.tar.xz.sig 566 BLAKE2B 89e636f2fcd8ee12be37e41187d131d2092e667ec8b62a5ca1c745d8c5813e55c1d776cafa7d1b9ba7b6142f6bd9c204c6943f22ecc0236329a02912d767831c SHA512 bc3d6734012e81727494c5879f847a72e0a84263a9c156578260592b5ae8b880315977c586e0f9c4845485d2a10ef414929fb3a12a27ae3248df46338bfc -DIST kitty-0.36.0-vendor.tar.xz 1559096 BLAKE2B 11190ac82f4ba36dc3d27d1ec2b43c4ace682e2013a60cb0f8a8dbc9d9976b6be3ea9fbfc908d89e637876a0fca6df1884b1fbf97a5973835078e4e9ba22af11 SHA512 fdabacc31135f8377b31376389af921d52de2ffa393b75c5e3036bab2eebbdb7c8204a1251fb0393d8367a462b078345ad0809754550b3a8fdb8368b839e24ff -DIST kitty-0.36.0.tar.xz 8850304 BLAKE2B 7070f1cd1f0dbdd11a91771c124d7278a4918f320b3f2bbc299cd1d5cab05e617761d97f2531736757788b130453de73951ee75a4d604ee99b8ef819080e58ac SHA512 910864d9f7d1015f42a641200a3bd3f8b682c108c6732a189098072e83bc263d53589e2dfb6e3383abc635f19d4476f3ab22bd24914c316416a8c9fd89d48b2f -DIST kitty-0.36.0.tar.xz.sig 566 BLAKE2B e114f1b639fa564bffdc5595137df01dccb1b6f1102f6616ef206f0d5be20326b0c66e79a58525468b8a406b4c2701e79c7d03d4216404ee458da104cad0ed7d SHA512 71c9efcd45dd2a05afd26947a7379b45b479654bbf639abe8e20543b2bc233b891365b674502b9d076b9e56f5d8a6da2d79d8a2efd08093be3662a98da30f78e DIST kitty-0.36.1-vendor.tar.xz 1559304 BLAKE2B 11eee577a24b3fbdf9fa1aa9a9acf5f089804ce4634a69e89194139f70fafd120f9dcd87d17882a2d2695101b3cfdb55371dfafa5e65cafc10690699139d7f53 SHA512 84b42ff0ae6af16f80005df06d79ed237560a1fdbb6c4f8eb7436b988f30eae108b5535b84772605f6f5e7ef8e65b49f48309654cbc0144f7b17ddda6865784c DIST kitty-0.36.1.tar.xz 8850472 BLAKE2B e03c192d1d523ccc6d20db450fa4f7c4ec741df846152e8363090ed28880aaab40fd5a8c832e5285b6834568730f422353e0bb7e02388e254410ce714f29aa57 SHA512 503ecfc83e367b3f2aacc1bf7849345ef4a50cae69e496325b573660d1fe592cc778d0f9d0d06d5e46210659f4b65b3a7be7dfe1e219565b7371c1848643e111 DIST kitty-0.36.1.tar.xz.sig 566 BLAKE2B 849762f3fe1702ad6104bb94bf04c1d7717796a2761e2a3b1de3d7a8504ed4f86949d18b1c3743e5194e90f373cb0d82d0df3677e33cd4a19a15569147fa74d9 SHA512 259d537b88553bc8ab0761e23c3455e10b7a024e1c71dbeea2f8d0c4514e35f8fe56d298d460d51ab450ee05e731009b06d48c3c996e297f2afd2aa787243cdf diff --git a/x11-terms/kitty/kitty-0.34.1.ebuild b/x11-terms/kitty/kitty-0.34.1.ebuild deleted file mode 100644 index cdd3efe60acc.. --- a/x11-terms/kitty/kitty-0.34.1.ebuild +++ /dev/null @@ -1,180 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit edo go-env optfeature multiprocessing -inherit python-single-r1 tool
[gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/
commit: 21e0d917e8904d0e73925a6c7c33e526250ae33c Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:20:21 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e0d917 media-libs/libplacebo: enable py3.13 Signed-off-by: Ionen Wolkens gentoo.org> media-libs/libplacebo/libplacebo-7.349.0.ebuild | 2 +- media-libs/libplacebo/libplacebo-.ebuild| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/libplacebo/libplacebo-7.349.0.ebuild b/media-libs/libplacebo/libplacebo-7.349.0.ebuild index 8832825d47b9..9d16436f4759 100644 --- a/media-libs/libplacebo/libplacebo-7.349.0.ebuild +++ b/media-libs/libplacebo/libplacebo-7.349.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit meson-multilib python-any-r1 if [[ ${PV} == ]]; then diff --git a/media-libs/libplacebo/libplacebo-.ebuild b/media-libs/libplacebo/libplacebo-.ebuild index 0bf9834ccf55..1831a83708b6 100644 --- a/media-libs/libplacebo/libplacebo-.ebuild +++ b/media-libs/libplacebo/libplacebo-.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit meson-multilib python-any-r1 if [[ ${PV} == ]]; then
[gentoo-commits] repo/gentoo:master commit in: media-libs/libdovi/
commit: c1b76da633646b887a6e377883832c085e87f938 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:14:24 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:20 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b76da6 media-libs/libdovi: drop 3.3.0 Signed-off-by: Ionen Wolkens gentoo.org> media-libs/libdovi/Manifest | 49 --- media-libs/libdovi/libdovi-3.3.0.ebuild | 143 2 files changed, 192 deletions(-) diff --git a/media-libs/libdovi/Manifest b/media-libs/libdovi/Manifest index ba3697e7ef1b..e511f805d30b 100644 --- a/media-libs/libdovi/Manifest +++ b/media-libs/libdovi/Manifest @@ -1,17 +1,11 @@ DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 DIST anes-0.1.6.crate 23857 BLAKE2B 9ef464a964709b408c7d7846b9b1e54e52d6ae8f21f22ccfe509ef7197d4694f439084dbdb01fdf88829d181965ea9d1452253789a46fdf6d0520e3413c50d61 SHA512 f9dfaaca9ca327881ec30efaf24e208daae668b1e9d6963c8b0ca9f9fd13be777c793076a87980429f0dfa4db28ef5331ce6652a76da4d5a87485b23fc2fde29 -DIST anstyle-1.0.6.crate 14604 BLAKE2B 0716d0dbb62bf05c63c2bfe1c689896660073a423d26965ce2570f11e1925752a61209d78c2f2fe65ec4eb64ea4ffbb39669e789c0ba5d1b71e75de929153b20 SHA512 dc0e505465be54799b9faad70d0c6f7f0dcf9f5e1aaa43177b826c85dae626b054910244da0499862f066f6723a1560ad12100aec523f28c6198f1ea0d1b78fa DIST anstyle-1.0.8.crate 15771 BLAKE2B c039613e7de27cc990e5764810f9351754b160928a8954dc19041354cf9fef1422ed964237a5d39d16e4e9f8592ed52c523ccf36b0b5506f464d4f818f3332ff SHA512 3b867f73df0b2f69a0c7d5d6e62c7515045e053656afaa303e5aade8012e838cdf5d15d2c3d7c297db9e297d08ea69a9c8eed04b97922a83f56c58962c1c0b69 -DIST anyhow-1.0.81.crate 45142 BLAKE2B 9b8678c5336fe5fd2823c58eae827f7aba726e12fb6edfa958c6e3b38a96dc3310bc8d044ee2e9db0bc611548f0be9a7b664b75321bd0b8a7e168d27dd3d7e78 SHA512 3d328c6b45a4780cfb6fc8daa5581cb5e45b230cb5f55837b0fcc8331c8d53630950c281115c06b21e655821a46d360c4aa667cbb24e87f3a534206361b08af5 DIST anyhow-1.0.86.crate 46741 BLAKE2B 21b1f3acd1c1b659e6e9a53693178de67c806d7dbad30dedea0fb7078b2388baa196d1e7240a7dc88ed9dc93ee4c00bca8e608dad1b6bfb5bfa4f4c5ab51f0d3 SHA512 3853da32a2c53d73969bb29a1e622f3a6d5832ddc6bc8eedb76394b392f983aa3fcb1f542933e238841486106f0f38e9a2400c12c7699baba0ebe1d8193a -DIST autocfg-1.1.0.crate 13272 BLAKE2B 7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203 SHA512 df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f DIST autocfg-1.3.0.crate 16524 BLAKE2B 7d5a03853d6b4f0da08d8e139fb200da21e47fa7e50d1956270d0ff0cc496f660f8f800122c95eee9ba98d9210ab200c3010b782097483d12d6be4ac0df0e7c9 SHA512 a5570b955d57a7183ba148b335837dc5af24b202e80681027536d33fe2822509ba644fc70c29f018c893285ced2bf6774f44ca6c59f7c7e2226d5349cf7c3635 -DIST bitstream-io-2.2.0.crate 34113 BLAKE2B a449d31429b3aed5ec54c2590d285a532377c7d5e614eb785e11bb208c3541d1df8c43202ac52227544ca42008a60b0989696ed0888ef2bfdedbc23f6b95 SHA512 51d328fb67df4d89f755769cb8806249349d9d69a4c1c538f72120b058fb7fed81356b867363396234a96061da92446c6e07b6498c7bf9c1f3f99de60aad3f2f DIST bitstream-io-2.5.0.crate 37723 BLAKE2B b9841766c4cfb1a669a8f180d9e2a0ed110a60f535fb69046859d740b672f78ee12fb805c2323164868a2dcfe6b55f8a6ee5e59003088a7533a5e537b02158e1 SHA512 8db74c147412c2ea335455d740cb2ef33be8ec0c3ffba08fdfd3983515abd8b47621d178bf1290a7830a9f15bd32912d17b3df7d39e9ac786970a868b8ed76d3 DIST bitvec-1.0.1.crate 224375 BLAKE2B 9f109db6888cf73d69646911cc1c9e90535e54a7afc436d878bbc63ca20a30cc6e5b5b5cd42aa78c38df5a4012454769c126f9072f39d58bdd09e54887ba6d9f SHA512 83d643c5aca020ebbe9094b5aaba6a796e7c3c509228a4348444e57a06bc3a5dd042eed57a2254d91661e73bdab2bc0d1bd02be376906acc6b6d75b5354a8d8e -DIST bitvec_helpers-3.1.4.crate 5139 BLAKE2B 2f1b430e1548f82887b7e42750dbb5dce2288dfa4694a77dafc23687630af5b5289a22292c44a881f0a4bc23dd68cc247e868bb4def4f8c0258ddca169cdb4fe SHA512 fa1e3434b5b21d72b20b3b20f7359d24e882a6b3822231fe1cb060ae846c74e14990a69611aa79a4797906c6658413a505b6d4aeb20734fc76d70a370d2eda69 DIST bitvec_helpers-3.1.5.crate 5147 BLAKE2B 4f9b297493abfdc6c8ea38db2c8bcaa23787d4aba746a9b0682afd27e7b04a1ffeeb5a51bdc3ea76080972de44321e5264a3e5150910f819178a73dfe78c4d95 SHA512 08ba37eb2c1d68ace18e82afe8e5f6a46259e44d3b3625234f68059acd72d53badc0016c1e9fb323488e85d7c7db5f8b8d8af14a3a947a98545492a49b218f65 -DIST bumpalo-3.15.4.crate 85028 BLAKE2B 9ec98f430fef4e9b59e61d413b3703430f91bc818f3294aea7416cf8a35e0606357bb5b4d1edebe590f07fb614f832da16016c8530ff39ca853aff1d1369cc60 SHA512 59ca9f8e6b74bdd95b9b4ad1bff3bf4be46dacedeb1eea619
[gentoo-commits] repo/gentoo:master commit in: media-sound/xmms2/
commit: 3e03e409f8d2cb9fb3114e7d9e7cfd3e55d5a471 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:41:13 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:22 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e03e409 media-sound/xmms2: enable py3.13 Unknown if bindings are ok given we have no xmms2 python client packaged, USE=python serve no purpose right now. More importantly waf and building seems fine with 3.13. Signed-off-by: Ionen Wolkens gentoo.org> media-sound/xmms2/xmms2-0.9.3-r1.ebuild | 22 ++ 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild index a466553f269a..eda60ca94541 100644 --- a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild +++ b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) PYTHON_REQ_USE="threads(+)" inherit flag-o-matic optfeature perl-functions python-single-r1 waf-utils @@ -36,10 +36,12 @@ XMMS2_PLUGINS=( IUSE=" ${XMMS2_OPTIONALS[@]%:*} ${XMMS2_PLUGINS[@]%:*} - +server" + +server +" REQUIRED_USE=" ${PYTHON_REQUIRED_USE} - test? ( server )" + test? ( server ) +" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -96,7 +98,8 @@ COMMON_DEPEND=" net-dns/avahi[mdnsresponder-compat] net-misc/curl ) - )" + ) +" RDEPEND=" ${COMMON_DEPEND} perl? ( @@ -109,16 +112,19 @@ RDEPEND=" python? ( ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') - )" + ) +" DEPEND=" ${COMMON_DEPEND} cxx? ( dev-libs/boost ) - test? ( dev-util/cunit )" + test? ( dev-util/cunit ) +" BDEPEND=" ${PYTHON_DEPS} virtual/pkgconfig perl? ( dev-perl/Pod-Parser ) - python? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]') )" + python? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]') ) +" QA_CONFIG_IMPL_DECL_SKIP=( avcodec_free_frame # succcessfully detects that this is gone in newer ffmpeg
[gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/
commit: 40a59069037f3bfa8a9830cfbbad70fa7804f0a8 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:45:05 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:22 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40a59069 www-client/qutebrowser: note link for py3.13 support Next release has some fixes, albeit unsure if complete yet. Signed-off-by: Ionen Wolkens gentoo.org> www-client/qutebrowser/qutebrowser-3.2.1.ebuild | 1 + www-client/qutebrowser/qutebrowser-.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/www-client/qutebrowser/qutebrowser-3.2.1.ebuild b/www-client/qutebrowser/qutebrowser-3.2.1.ebuild index b58568e40ad0..f889d8fed698 100644 --- a/www-client/qutebrowser/qutebrowser-3.2.1.ebuild +++ b/www-client/qutebrowser/qutebrowser-3.2.1.ebuild @@ -5,6 +5,7 @@ EAPI=8 DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_PEP517=setuptools +# py3.13: https://github.com/qutebrowser/qutebrowser/issues/8205 PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 xdg diff --git a/www-client/qutebrowser/qutebrowser-.ebuild b/www-client/qutebrowser/qutebrowser-.ebuild index 5525cd7811df..8d8a36382b17 100644 --- a/www-client/qutebrowser/qutebrowser-.ebuild +++ b/www-client/qutebrowser/qutebrowser-.ebuild @@ -5,6 +5,7 @@ EAPI=8 DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_PEP517=setuptools +# py3.13: https://github.com/qutebrowser/qutebrowser/issues/8205 PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 xdg
[gentoo-commits] repo/gentoo:master commit in: dev-util/mingw64-runtime/
commit: e9e0390581b175904a2ba391cf050a17bc447597 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:05:35 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:17 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e03905 dev-util/mingw64-runtime: drop 11.0.1 Kept this version for a while due to an issue when using gcc-14+runtime-12+perl but "believe" this been resolved with gcc-14.2.0. Feel free to file a bug if still need 11.0.1, can be restored if needed. Signed-off-by: Ionen Wolkens gentoo.org> dev-util/mingw64-runtime/Manifest | 1 - .../mingw64-runtime/mingw64-runtime-11.0.1.ebuild | 147 - 2 files changed, 148 deletions(-) diff --git a/dev-util/mingw64-runtime/Manifest b/dev-util/mingw64-runtime/Manifest index 7c9183d52e6f..307eef7d003d 100644 --- a/dev-util/mingw64-runtime/Manifest +++ b/dev-util/mingw64-runtime/Manifest @@ -1,2 +1 @@ -DIST mingw-w64-v11.0.1.tar.bz2 10057401 BLAKE2B 3222eed35522bf95a571b11dc52ea23153068b32497676dbb2837306ba52a78e6d1c9c44a4d64d314e64583b54f6fe86dcff3e467e101acf71cebb7d2a963963 SHA512 56870210011f7f9c9596dd70df3fb2577492459cf55da38691af1504b91127cb5f3eff268850dcbaa461fdc72e4e2379f7a576fd4a0e537ee1fe42531c01 DIST mingw-w64-v12.0.0.tar.bz2 10474283 BLAKE2B 6500045f7d77f7de01dea0f4e03f3e4ddf6154586c5e3ee9718ee2c7ef1cc83ce3cbd644b6f1dc293ae6e0bfb55a6b68d439622bd1cfdefefc4cc547317f1943 SHA512 949b2bfab8763ab10ec4e9fdfdaf5361517a4ab787fb98ab419b38d02694061c2e821ebbf6e2e4b39d92bdf17419d116daa8e63afd9e01d11592f39df4da69d7 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-11.0.1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-11.0.1.ebuild deleted file mode 100644 index 15f76259b1af.. --- a/dev-util/mingw64-runtime/mingw64-runtime-11.0.1.ebuild +++ /dev/null @@ -1,147 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit crossdev flag-o-matic toolchain-funcs - -DESCRIPTION="Free Win64 runtime and import library definitions" -HOMEPAGE="https://www.mingw-w64.org/"; -SRC_URI="https://downloads.sourceforge.net/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v${PV}.tar.bz2"; -S=${WORKDIR}/mingw-w64-v${PV} - -LICENSE="ZPL BSD BSD-2 ISC LGPL-2+ LGPL-2.1+ MIT public-domain tools? ( GPL-3+ )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# default-ucrt: enabling requires to be done during the bootstrap process -# or else will cause e.g. undefined reference to __intrinsic_setjmpex -# libraries: needs working stage2 compiler (bug #665512) -IUSE="default-ucrt headers-only idl libraries tools" -RESTRICT="strip" # portage would use the wrong strip executable - -pkg_setup() { - target_is_not_host && MW_CROSS=true || MW_CROSS=false - [[ ${CBUILD} == ${CHOST} && ${CTARGET} == ${CHOST} ]] && - die "Invalid configuration, please see: https://wiki.gentoo.org/wiki/Mingw"; -} - -mingw-foreach_tool() { - use !tools || use headers-only && return - - local tool=widl - if use !amd64 && use !x86 && use !arm64 && use !arm; then - einfo "Skipping widl due to unsupported platform" #853250 - tool= - fi - - for tool in gendef genidl ${tool}; do - # not using top-level --with-tools given it skips widl - pushd mingw-w64-tools/${tool} >/dev/null || die - "${@}" - popd >/dev/null || die - done -} - -src_configure() { - # native tools, see #644556 - local toolsconf=() - # normally only widl is prefixed, but avoids clash with other targets - ${MW_CROSS} && toolsconf+=( --program-prefix=${CTARGET}- ) - - mingw-foreach_tool econf "${toolsconf[@]}" - - MW_LDFLAGS=${LDFLAGS} # keep non-stripped for gendef not respecting it - - # likely cross-compiling from here, update toolchain variables - if ${MW_CROSS} && [[ ! -v MINGW_BYPASS ]]; then - unset AR AS CC CPP CXX DLLTOOL LD NM OBJCOPY OBJDUMP RANLIB RC STRIP - filter-flags '-fuse-ld=*' - filter-flags '-mfunction-return=thunk*' #878849 - fi - local CHOST=${CTARGET} - - # some bashrc-mv users tend to do CFLAGS="${LDFLAGS}" and then - # strip-unsupported-flags miss these during compile-only tests - # (primarily done for 23.0 profiles' -z, not full coverage) - filter-flags '-Wl,-z,*' - - # -mavx with mingw-gcc has a history of obscure issues and - # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` - # crashes with -march=skylake >=wine-8.10, similar issues with - # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 - tc-is-gcc && append-flags -mno-avx - - strip-unsupported-flags - - # Normally mingw64 does not use dynamic linker, but at configure time it - # uses LDFLAGS. When -Wl,--hash-style=gnu is passed __CTORS_LIST_
[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xvfb/
commit: 1c8c24dd9ea85d8c0a0dfdcdd0fcc7862cdc1258 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:31:42 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:22 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c8c24dd dev-python/pytest-xvfb: enable py3.13 Signed-off-by: Ionen Wolkens gentoo.org> dev-python/pytest-xvfb/pytest-xvfb-3.0.0.ebuild | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-python/pytest-xvfb/pytest-xvfb-3.0.0.ebuild b/dev-python/pytest-xvfb/pytest-xvfb-3.0.0.ebuild index 4f09bfae28da..d343380ff98b 100644 --- a/dev-python/pytest-xvfb/pytest-xvfb-3.0.0.ebuild +++ b/dev-python/pytest-xvfb/pytest-xvfb-3.0.0.ebuild @@ -1,20 +1,16 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) PYTHON_REQ_USE="tk" - inherit distutils-r1 pypi DESCRIPTION="Pytest plugin to run Xvfb for tests" -HOMEPAGE=" - https://github.com/The-Compiler/pytest-xvfb/ - https://pypi.org/project/pytest-xvfb/ -" +HOMEPAGE="https://github.com/The-Compiler/pytest-xvfb/"; LICENSE="MIT" SLOT="0" @@ -31,5 +27,6 @@ distutils_enable_tests pytest python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 local -x PYTEST_PLUGINS=pytest_xvfb + epytest --runpytest=subprocess }
[gentoo-commits] repo/gentoo:master commit in: media-sound/jack2/
commit: 001d9c91a97466bb88658eeb755515fbc40175ed Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 11:27:15 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 11:51:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=001d9c91 media-sound/jack2: enable py3.13 Signed-off-by: Ionen Wolkens gentoo.org> media-sound/jack2/jack2-1.9.22.ebuild | 2 +- media-sound/jack2/jack2-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/jack2/jack2-1.9.22.ebuild b/media-sound/jack2/jack2-1.9.22.ebuild index c52bbee4676b..3a33beb69665 100644 --- a/media-sound/jack2/jack2-1.9.22.ebuild +++ b/media-sound/jack2/jack2-1.9.22.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) PYTHON_REQ_USE="threads(+)" inherit flag-o-matic python-single-r1 waf-utils multilib-minimal diff --git a/media-sound/jack2/jack2-.ebuild b/media-sound/jack2/jack2-.ebuild index 2241477aa20d..5f680d13f15f 100644 --- a/media-sound/jack2/jack2-.ebuild +++ b/media-sound/jack2/jack2-.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) PYTHON_REQ_USE="threads(+)" inherit flag-o-matic python-single-r1 waf-utils multilib-minimal
[gentoo-commits] repo/gentoo:master commit in: dev-ml/dune-private-libs/
commit: 084ecf16c2a03b111df71cb66b4c9d35f4975919 Author: Alfredo Tupone gentoo org> AuthorDate: Tue Sep 3 13:23:07 2024 + Commit: Alfredo Tupone gentoo org> CommitDate: Tue Sep 3 13:23:58 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084ecf16 dev-ml/dune-private-libs: drop 2.8.4, 3.6.2, 3.7.1, 3.11.1-r3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/dune-private-libs/Manifest | 4 - .../dune-private-libs-2.8.4.ebuild | 119 - .../dune-private-libs-3.11.1-r3.ebuild | 40 --- .../dune-private-libs-3.6.2.ebuild | 36 --- .../dune-private-libs-3.7.1.ebuild | 36 --- 5 files changed, 235 deletions(-) diff --git a/dev-ml/dune-private-libs/Manifest b/dev-ml/dune-private-libs/Manifest index 4f329369c670..07ed9773b1b6 100644 --- a/dev-ml/dune-private-libs/Manifest +++ b/dev-ml/dune-private-libs/Manifest @@ -1,9 +1,5 @@ -DIST dune-2.8.4.tar.gz 1372925 BLAKE2B 5b6d6738a0dc701d852e6cc59a1998f64c006d233f43a804b0b9b677a6eadda25aa20f52799c90910d361e4bc565636a50d218ad5d0a9927239adc5be36b3889 SHA512 13b36eb6a943f9513987a23dab467b2e449cc3a4de35227f8323c3c724b27f19daac500602141ab22a0457924c8484ce27a7f73e46a72e796d30fb1c3253 DIST dune-2.9.1.tar.gz 1385381 BLAKE2B 27224f803547d02f7110dcfc486ef41f9a4586f6f862ef7f8bbf05cc1f3f6dc8ea03fca99c01842f4226ea3d08f4127daa0e5811dd46cc00f1b96ad7eaafe43d SHA512 4fcff34de4acc4429dd73864ca90e695d8ba436839fd679608f7db292e44be70c3db455a58f59477f2055f84ce497bfa8e90e485ed9536acad3c1b3be3d4be77 DIST dune-2.9.3.tar.gz 1387667 BLAKE2B 3db54c780b9d13f40c774f53c3fe471dba4a640e7cb5aa5d70ef1dc20a217b95a66149ca5f99f07f3a20450577d622e0cda149f656f06f5a42231b89667c1152 SHA512 df6e06a9beebf41f3ed375384be781b5c87c7949048995cc0bbad13dd65c96bd8b27415cd41e43b1112bd86524a59a7dd418e14b5c72b4f1f8fd4ac5ca2d1494 DIST dune-3.10.0.tar.gz 2640800 BLAKE2B 5fc479a91ee6792f07a4fb61af530d55f46dea56b2fd5919975c0bfb231229395e7d0769bdae88419a89d378b8d7e2b229f7410ce7a34414629aa5117e606230 SHA512 2884a4eaaa44164ce911286ca6670b548a4a564e2b5040f05405d1d2729af84083fbfdde7c92db4f6f7a54d15a43fc9dddcec19d8d79d5a66221b2be861473de -DIST dune-3.11.1.tar.gz 2753844 BLAKE2B de80e4be355fe7c6f04f0004fbf28dac18c803fb055bd74a1c30a8983f8a234a487244561bd622f3330cfb55670163355c2a1647e847d2e3966690a62a10b644 SHA512 8d2eef71ae04a95b1d69784311726cafc3b275e1f202851eb116d6e7740015ce2453ec00278ef3b28c0b1544b10dbff36d942b063d7bb0ebc0a03a9a5f8261d4 DIST dune-3.13.1.tar.gz 2891852 BLAKE2B 88cee2428134ddcd6b929915b6bbeb2d17be8b8190f963919a74c63ffcf80f596fb1556f88c41ee602b2386e02fdf396596a6b2097d67c720bd00e16cdda3a57 SHA512 910d4ddd55a91ee65d8ea35b8915506db74c924eb3b67f7b0715da5599ee5088ea3edec81ce6735addd5b17234e445608e59fa353b83e991c14768d83c97a2b5 DIST dune-3.16.0.tar.gz 2999701 BLAKE2B 5e371fa1003cec31273aeeb1a830036f48d3734588bd7a980b57aaae30d4984a34dec6f9be0ee9985c72dee08c2c6d456a789eab83cfce42c142a3abc6951b2e SHA512 3b1d041907128b6598e0f6150fe300a4a69098822f823ceead63b46e1005a21485738c6fa92641dd940c9f9cde48ae141ea51959a9b250bee3cbeb06ba788e23 -DIST dune-3.6.2.tar.gz 1906058 BLAKE2B 7bbf1f346805432015a0e2a20bbeb1d94bbdc9f10537d31129c70466f88713d6659fddae18ab48c95d1a97f5e7931d8a5505eb08b89a27b6193b82b059f1c29e SHA512 636f6cbccca588b576f36840b752fc17d4a46b4c0625262a43c10f948bbb9820bdbee752a8d9a5cf7d5b79987bf824bdef9a44ecf49696959c9f597c4950d7be -DIST dune-3.7.1.tar.gz 2011275 BLAKE2B dd0f473a720fc65ac550a2aab64930ff472a9bd306d603f088d813817df56148f676abe2a56ff3458bb1ed887784e565154eee08988bf984585b35bc9333d929 SHA512 d741b2a92e970f9747240d4356045f46447238f7c8d8c47ba0b1cad96b8194461a47fa315d86a1eef2033a4d38001c999e6033c31b0c75a311367fb78ea12b6b diff --git a/dev-ml/dune-private-libs/dune-private-libs-2.8.4.ebuild b/dev-ml/dune-private-libs/dune-private-libs-2.8.4.ebuild deleted file mode 100644 index 17169982c7f9.. --- a/dev-ml/dune-private-libs/dune-private-libs-2.8.4.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit dune - -DESCRIPTION="A composable build system for OCaml" -HOMEPAGE="https://github.com/ocaml/dune"; -SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> dune-${PV}.tar.gz" -S="${WORKDIR}/dune-${PV}" - -LICENSE="Apache-2.0" -SLOT="0/${PV}" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86" -IUSE="+ocamlopt test" -RESTRICT="!test? ( test )" - -BDEPEND=" - ~dev-ml/dune-${PV} - test? ( - dev-ml/core_bench - dev-ml/menhir - dev-ml/opam - dev-ml/ppx_expect - ) -" -DEPEND=" - dev-ml/csexp:=[ocamlopt?] - dev-ml/findlib:=[ocamlopt?] - >=dev-lang/ocaml-4.09:= -" -RDEPEND="${DEPEND}" - -# TODO for test deps: -# Add cram? -# Add dev-ml/js_of_ocaml once dev-ml/ocaml-base64 is ported to Dune -# Add coq? - -src_prepare() { -
[gentoo-commits] repo/gentoo:master commit in: app-misc/fastfetch/
commit: 9519c4394b18173dd1aa3c6acf8b6af1a755d02b Author: Viorel Munteanu gentoo org> AuthorDate: Tue Sep 3 06:58:51 2024 + Commit: Viorel Munteanu gentoo org> CommitDate: Tue Sep 3 13:46:09 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9519c439 app-misc/fastfetch: add 2.23.0 Signed-off-by: Viorel Munteanu gentoo.org> app-misc/fastfetch/Manifest| 1 + app-misc/fastfetch/fastfetch-2.23.0.ebuild | 110 + 2 files changed, 111 insertions(+) diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest index 83d8e9d0beeb..044e51f33b66 100644 --- a/app-misc/fastfetch/Manifest +++ b/app-misc/fastfetch/Manifest @@ -1,3 +1,4 @@ DIST fastfetch-2.20.0.tar.gz 1076860 BLAKE2B 61c50a4c96962063f18ae895d2f7cbe505c9276fcba8fb5a3d7e9cc6b6854709cdb955681a868b23421f172f5cecfa51fb526f17d6800e072d96698efe7758bb SHA512 96b02688d8817ef84bb926ffa3c77ee95c8d402a6f1e5daeb8170484e6092f953f05a5ab463cdce544adb052a1e89b4ee530cc9f09e54223d5f666099e0ad6dc DIST fastfetch-2.21.3.tar.gz 1093534 BLAKE2B dca99e337e1239958add6323c159f58de5f38fe92c9a7c778d04b127e1467066948e4bc5503afb1054ccbab914eb35d8f35cd2a3cb88bf2ba595255fac5f2ece SHA512 e097d9360b7c5b93b30ad117e47ae5375c48c7e941eaaa56ee5f39b7757374c1ecfe321bec0999ee81aa52deff1be001ff057b621d34a90e95ec6ea83bf9f0b6 DIST fastfetch-2.22.0.tar.gz 1099230 BLAKE2B 4faef7574bc8897f17c9e59f05f033f8952d97ed56677f0ebe5afec11b7b708fce5d907431dda567cc71b0dd067239d97614b6035792009fff340a069691b547 SHA512 edb4532d220e031d666eac3ae12a004e1481a7c36c68a94b17323953822d0cedb80cdf34c84a184766e9bad64089aaadc3828b5e13f8867e961533c6919dbeae +DIST fastfetch-2.23.0.tar.gz 1105725 BLAKE2B 8b79deb0f35d8238979441014ca049fcfa838c27323fec13127f5a48e6b28feb03965135c1a338b6bd1e59913e660fc91196c27acbe1b693bc5ff7727efaa5cb SHA512 aad3d549c0f4be3b1f99e7bbbf992dccf79f9ef7ea6a26bfc31ba574b1a32496a1cf75b85c32e0643941cad4061d7ba003b42924f9f272a825a1a09b628acc39 diff --git a/app-misc/fastfetch/fastfetch-2.23.0.ebuild b/app-misc/fastfetch/fastfetch-2.23.0.ebuild new file mode 100644 index ..2609a6c86f16 --- /dev/null +++ b/app-misc/fastfetch/fastfetch-2.23.0.ebuild @@ -0,0 +1,110 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Fast neofetch-like system information tool" +HOMEPAGE="https://github.com/fastfetch-cli/fastfetch"; +if [[ ${PV} == * ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/fastfetch-cli/fastfetch.git"; + [[ ${PV} == *0.1. ]] && EGIT_BRANCH=master + [[ ${PV} == *0.2. ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="X chafa dbus ddcutil drm elf gnome imagemagick opencl opengl osmesa pulseaudio sqlite test vulkan wayland xcb xfce xrandr" +RESTRICT="!test? ( test )" + +# note - qa-vdb will always report errors because fastfetch loads the libs dynamically +# make sure to crank yyjson minimum version to match bundled version +RDEPEND=" + >=dev-libs/yyjson-0.10.0 + sys-libs/zlib + X? ( x11-libs/libX11 ) + chafa? ( media-gfx/chafa ) + dbus? ( sys-apps/dbus ) + ddcutil? ( app-misc/ddcutil:= ) + drm? ( x11-libs/libdrm ) + elf? ( virtual/libelf:= ) + gnome? ( + dev-libs/glib + gnome-base/dconf + ) + imagemagick? ( media-gfx/imagemagick:= ) + opencl? ( virtual/opencl ) + opengl? ( media-libs/libglvnd[X] ) + osmesa? ( media-libs/mesa[osmesa] ) + pulseaudio? ( media-libs/libpulse ) + sqlite? ( dev-db/sqlite:3 ) + vulkan? ( + media-libs/vulkan-loader + sys-apps/pciutils + ) + wayland? ( dev-libs/wayland ) + xcb? ( x11-libs/libxcb ) + xfce? ( xfce-base/xfconf ) + xrandr? ( x11-libs/libXrandr ) +" +DEPEND=" + ${RDEPEND} + vulkan? ( dev-util/vulkan-headers ) +" +BDEPEND="virtual/pkgconfig" + +REQUIRED_USE=" + xrandr? ( X ) + chafa? ( imagemagick ) +" + +src_configure() { + local fastfetch_enable_imagemagick7=no + local fastfetch_enable_imagemagick6=no + if use imagemagick; then + fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fastfetch_enable_imagemagick6=$(has_version '
[gentoo-commits] repo/gentoo:master commit in: www-apps/sonarr-bin/
commit: f52aa4cb529fab10187bc7536826ecdb86832ae0 Author: Craig Andrews gentoo org> AuthorDate: Tue Sep 3 13:51:30 2024 + Commit: Craig Andrews gentoo org> CommitDate: Tue Sep 3 13:51:44 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52aa4cb www-apps/sonarr-bin: add 4.0.9.2332 Signed-off-by: Craig Andrews gentoo.org> www-apps/sonarr-bin/Manifest | 5 ++ www-apps/sonarr-bin/sonarr-bin-4.0.9.2332.ebuild | 74 2 files changed, 79 insertions(+) diff --git a/www-apps/sonarr-bin/Manifest b/www-apps/sonarr-bin/Manifest index abce6c7e70a7..176ea5d88615 100644 --- a/www-apps/sonarr-bin/Manifest +++ b/www-apps/sonarr-bin/Manifest @@ -3,3 +3,8 @@ DIST Sonarr.develop.4.0.9.2300.linux-arm64.tar.gz 94944148 BLAKE2B ec2fb63999f5f DIST Sonarr.develop.4.0.9.2300.linux-musl-arm64.tar.gz 94997452 BLAKE2B d6a26a591719292213ad63484fb9f5851a29253f086d0ec4e985da54ebd0754c73b12b4439a132ee72f9470cd07b72701c5b60982aad9f168532fde2a81e3629 SHA512 168d002924a867f37f0f1d4738e9ee08699755ae5e03619b29d2919a9b1f119ab2091e1b9cf2f309d067889c9b14d7e42b19cd555b0a54c31aa7bbeb9b221bea DIST Sonarr.develop.4.0.9.2300.linux-musl-x64.tar.gz 99947496 BLAKE2B 836fe8833ecaeaf8fc119c0d35c34b07c4e9ab8fd72c148f3e616f9e3d850f8688e31ac326423a90b829dd1adf42ef6687b834ce4b8a34fe3b2bf1736837a2d7 SHA512 4514fe6692016f422bab99ccf41476ed58cd7ed9106afa2c6f50ca23ceb9e2606a405a94b985b18d30edb4fc26da5a9111f3d8a1500dd8eab1f1516469c37d8f DIST Sonarr.develop.4.0.9.2300.linux-x64.tar.gz 100880229 BLAKE2B bb379f7d7b4494299c444885fd49fed4833897ad2455220d835097f6e394f6e0d703a4d99fbb6ef2d98124e9b21a89f3812ed8800319aec2f177007134ef6d38 SHA512 5f769d54d26a1ab11c6168c5f72d546b6e4fbf3e96a2d1c18197c83236b73ec6987350e39ebc19d1b57c878506b8e0487a69f1e2686c3f81f8392e69511d6d19 +DIST Sonarr.develop.4.0.9.2332.linux-arm.tar.gz 95212632 BLAKE2B 4b88923f22d66b43061e1ec4922cc4b00822a04bb435167b8bf82bf887847fb384dad9f6a0a9a8c71129d99fcf31e98bdce7d9bb370234bea162bfaab1dc53e5 SHA512 e98d653cfb402584302063d2c14d4b8dc9da4ee113e22f46fa018971df599c19fb59618ad90fb077db5dbb167f7a12e8091889af08b5df6bef165b850b2a94ee +DIST Sonarr.develop.4.0.9.2332.linux-arm64.tar.gz 94944309 BLAKE2B e0663c48c554ef2d9236726467251112be5a715e240149d355220fb0dcaf985b213293a215bd0d7a77e7b660769ad453e1c9daf7e236429c9159be085cfb5c70 SHA512 da38d401464e69b2a89d0887b38a02e334b488ec5782675bc27270b8a200329f4fe606a66fbb550db1bd18514ae9e6df871629a4a35f5fae9099737cb094f383 +DIST Sonarr.develop.4.0.9.2332.linux-musl-arm64.tar.gz 95000215 BLAKE2B 377b83751d470271b131aebd2dbd942f31df5dabe15c1018b15dcb70a9c2c53c244719028dbed59657c4fc53b5ad38da047567578c508a68c605fab1b9518c8d SHA512 fd6bbb04497cf2f23b6277f20eae73bc6a146146e56b96f30289b149544a1d8fcf370bfd15f27bea417d4afa43730a364bc0a30c3a8aac041ed9d3f400f95c06 +DIST Sonarr.develop.4.0.9.2332.linux-musl-x64.tar.gz 99952055 BLAKE2B d3013c7f0d5ead0b9066856f29766bffe2b8584c4e97b4a7f57c0bda6424ad840906599e0cb810c6f9478fde3523edecece87213cdaa2f2d55e8601c7d9f0aa7 SHA512 e76b3508b5f2e463a8595eabb4bdae88f4984d875c667023bbb81b471a6236f98aacb969bba53bc4911dd2d9da0e56219926011dfac371cc44985e7463d6542c +DIST Sonarr.develop.4.0.9.2332.linux-x64.tar.gz 100882668 BLAKE2B c65b885aa918a78bea0022d1f39abbf0fe857e135550668f0b86250780799d2d5923231799ffc686191af5c2342c23d58f7da30bdfde32e0a4b1bd8c0907548e SHA512 55c4a7cc46fa779f324e33515a43b98f998da11d732800a9c975278159bb70a2d1606e1e05bf82fdc3fe963a3d48602014bf2c77cad3ae4fbc6c2ac40407cc77 diff --git a/www-apps/sonarr-bin/sonarr-bin-4.0.9.2332.ebuild b/www-apps/sonarr-bin/sonarr-bin-4.0.9.2332.ebuild new file mode 100644 index ..f10489599d33 --- /dev/null +++ b/www-apps/sonarr-bin/sonarr-bin-4.0.9.2332.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit systemd + +DESCRIPTION="Sonarr is a Smart PVR for newsgroup and bittorrent users" +HOMEPAGE="https://www.sonarr.tv"; + +SRC_URI=" + amd64? ( + elibc_glibc? ( + https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-x64.tar.gz + ) + elibc_musl? ( + https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-x64.tar.gz + ) + ) + arm? ( + elibc_glibc? ( + https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm.tar.gz + ) + ) + arm64? ( + elibc_glibc? ( + https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm64.tar.gz + ) + elibc_musl? ( + https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-arm64.tar.gz + ) + ) +" +S="${WORKDIR}
[gentoo-commits] repo/gentoo:master commit in: www-apps/sonarr-bin/
commit: 3af9ae3cb1ec1628a6c37ad097272b303683146d Author: Craig Andrews gentoo org> AuthorDate: Tue Sep 3 13:51:38 2024 + Commit: Craig Andrews gentoo org> CommitDate: Tue Sep 3 13:51:44 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af9ae3c www-apps/sonarr-bin: drop 4.0.9.2300 Signed-off-by: Craig Andrews gentoo.org> www-apps/sonarr-bin/Manifest | 5 -- www-apps/sonarr-bin/sonarr-bin-4.0.9.2300.ebuild | 74 2 files changed, 79 deletions(-) diff --git a/www-apps/sonarr-bin/Manifest b/www-apps/sonarr-bin/Manifest index 176ea5d88615..12440fa8913e 100644 --- a/www-apps/sonarr-bin/Manifest +++ b/www-apps/sonarr-bin/Manifest @@ -1,8 +1,3 @@ -DIST Sonarr.develop.4.0.9.2300.linux-arm.tar.gz 95206822 BLAKE2B b936d4b6c989e34356f8b1b5ee414352390fc2d4e947a62d43301220833c8aec0a70e93308b0b6fef9254ea36e46fe127c5853f4decdc944cd9a2171bee5a4fc SHA512 214f03f508898ff131c66968e6e7482dc94eefa38c1d38080ea4d60f1ab4fc9debe3004b113aedef186abf1f34639da48ef49da48d75a73221b000186200a7e2 -DIST Sonarr.develop.4.0.9.2300.linux-arm64.tar.gz 94944148 BLAKE2B ec2fb63999f5f29ca57d9b21c850ac2405bb95d0978af5b2ad15c362dfb81d33ece9ed8b6cbcd410a6b302ca75f4b5597231f955932121b2bdd6502b4fad98af SHA512 05aaf98266c25c0cd22a90711d7e53a225f69f6e13d5fbef4b53a0619efdb89295ba9f752f81836ddab25969f79b8119b622411218afa65f01ceffa89656 -DIST Sonarr.develop.4.0.9.2300.linux-musl-arm64.tar.gz 94997452 BLAKE2B d6a26a591719292213ad63484fb9f5851a29253f086d0ec4e985da54ebd0754c73b12b4439a132ee72f9470cd07b72701c5b60982aad9f168532fde2a81e3629 SHA512 168d002924a867f37f0f1d4738e9ee08699755ae5e03619b29d2919a9b1f119ab2091e1b9cf2f309d067889c9b14d7e42b19cd555b0a54c31aa7bbeb9b221bea -DIST Sonarr.develop.4.0.9.2300.linux-musl-x64.tar.gz 99947496 BLAKE2B 836fe8833ecaeaf8fc119c0d35c34b07c4e9ab8fd72c148f3e616f9e3d850f8688e31ac326423a90b829dd1adf42ef6687b834ce4b8a34fe3b2bf1736837a2d7 SHA512 4514fe6692016f422bab99ccf41476ed58cd7ed9106afa2c6f50ca23ceb9e2606a405a94b985b18d30edb4fc26da5a9111f3d8a1500dd8eab1f1516469c37d8f -DIST Sonarr.develop.4.0.9.2300.linux-x64.tar.gz 100880229 BLAKE2B bb379f7d7b4494299c444885fd49fed4833897ad2455220d835097f6e394f6e0d703a4d99fbb6ef2d98124e9b21a89f3812ed8800319aec2f177007134ef6d38 SHA512 5f769d54d26a1ab11c6168c5f72d546b6e4fbf3e96a2d1c18197c83236b73ec6987350e39ebc19d1b57c878506b8e0487a69f1e2686c3f81f8392e69511d6d19 DIST Sonarr.develop.4.0.9.2332.linux-arm.tar.gz 95212632 BLAKE2B 4b88923f22d66b43061e1ec4922cc4b00822a04bb435167b8bf82bf887847fb384dad9f6a0a9a8c71129d99fcf31e98bdce7d9bb370234bea162bfaab1dc53e5 SHA512 e98d653cfb402584302063d2c14d4b8dc9da4ee113e22f46fa018971df599c19fb59618ad90fb077db5dbb167f7a12e8091889af08b5df6bef165b850b2a94ee DIST Sonarr.develop.4.0.9.2332.linux-arm64.tar.gz 94944309 BLAKE2B e0663c48c554ef2d9236726467251112be5a715e240149d355220fb0dcaf985b213293a215bd0d7a77e7b660769ad453e1c9daf7e236429c9159be085cfb5c70 SHA512 da38d401464e69b2a89d0887b38a02e334b488ec5782675bc27270b8a200329f4fe606a66fbb550db1bd18514ae9e6df871629a4a35f5fae9099737cb094f383 DIST Sonarr.develop.4.0.9.2332.linux-musl-arm64.tar.gz 95000215 BLAKE2B 377b83751d470271b131aebd2dbd942f31df5dabe15c1018b15dcb70a9c2c53c244719028dbed59657c4fc53b5ad38da047567578c508a68c605fab1b9518c8d SHA512 fd6bbb04497cf2f23b6277f20eae73bc6a146146e56b96f30289b149544a1d8fcf370bfd15f27bea417d4afa43730a364bc0a30c3a8aac041ed9d3f400f95c06 diff --git a/www-apps/sonarr-bin/sonarr-bin-4.0.9.2300.ebuild b/www-apps/sonarr-bin/sonarr-bin-4.0.9.2300.ebuild deleted file mode 100644 index f10489599d33.. --- a/www-apps/sonarr-bin/sonarr-bin-4.0.9.2300.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit systemd - -DESCRIPTION="Sonarr is a Smart PVR for newsgroup and bittorrent users" -HOMEPAGE="https://www.sonarr.tv"; - -SRC_URI=" - amd64? ( - elibc_glibc? ( - https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-x64.tar.gz - ) - elibc_musl? ( - https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-x64.tar.gz - ) - ) - arm? ( - elibc_glibc? ( - https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm.tar.gz - ) - ) - arm64? ( - elibc_glibc? ( - https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm64.tar.gz - ) - elibc_musl? ( - https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-arm64.tar.gz - ) - ) -" -S="${WORKDIR}/Sonarr" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -RESTRICT="bindist strip
[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/
commit: 4a72498be7cae9e71dc22bd11306dedbb877378d Author: Christian Ruppert gentoo org> AuthorDate: Tue Sep 3 06:38:42 2024 + Commit: Christian Ruppert gentoo org> CommitDate: Tue Sep 3 14:02:16 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a72498b net-proxy/haproxy: Cleanup Signed-off-by: Christian Ruppert gentoo.org> net-proxy/haproxy/Manifest | 3 - net-proxy/haproxy/haproxy-2.4.23.ebuild | 218 net-proxy/haproxy/haproxy-2.6.14.ebuild | 218 net-proxy/haproxy/haproxy-3.0.2.ebuild | 217 --- 4 files changed, 656 deletions(-) diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest index e53dc71bcd6e..e439d5cb13b5 100644 --- a/net-proxy/haproxy/Manifest +++ b/net-proxy/haproxy/Manifest @@ -1,8 +1,6 @@ DIST VTest-af198470d7ce482d3d26eb9ca3f246a438739366.tar.gz 196700 BLAKE2B d740e19104a91b4cf978596ccda861974e96c9ed85a49c91e996c5bc6dde40f1cdcf49e6a75243aba7bf59abfd8d2c051a7ee574bab22f9e512d74376c9e1738 SHA512 cdc62271bb75ef7032745a457e1a54a84bcaadce73324272462b647383177338c5c2c8a17993d6344840e8ce0308a7e6f0df9bb766ebe0e8d4ee6dd4914e188c -DIST haproxy-2.4.23.tar.gz 3652465 BLAKE2B 271fd166365f5589653b6651d30306689e99710c27964e70a126469c3b9b616af2923be2276fc8c87362303388ee2bf28e80ca8bfa02dc45bc0e2d931e33e685 SHA512 d40203f9bf4f4a76dce09d0b1c785060d545dd8b7907b752d7fec9b12d7e2e4c2c7aca915d72c79e19040a75bd7d338c0783f9897cf1a46bdb047e336a0aa227 DIST haproxy-2.4.25.tar.gz 3664305 BLAKE2B b02eca0ef2719fad33c8db65b6568706cff3af9b19e2e0656970986b59116c054972341b5efd010907adb8d664fe1f72dd29feeab6a7b8bb9508e65c3bed9076 SHA512 bffe50c4155f28743fc4368e08f5912d137ac8fcad2bea70b9fb171be6a1c46c82e24059634add0b42a1d8da7d6fc76bf5287ffa8d4d530d46dbe522ad51a9e1 DIST haproxy-2.4.27.tar.gz 3671596 BLAKE2B 987df4b07686e68805ff31a6832498ad8a7487a63b37e8d5ba9cd20be245a91c42e50d754d7d580d0899fed630a6bf99bd594cfec7b3a9d00ccac744a09da19b SHA512 97227805acd6131df8b4d398099bd9b89d1cd2aaddce4a3f334bf5b8b4dd01a30a0c3b56a7c23268456cf0e3a39244ddfd3ea0c27ee44f2c3bdf49c045b5fd8c -DIST haproxy-2.6.14.tar.gz 4067797 BLAKE2B 20439faeca2c3e789542cf34d988f4de2ef643e7dd1214cad4cb2d70e39b047f32bd180cd8c410a4f7b17f7ed891938bf1b18e21d20bb41eef603ae99619810d SHA512 5acfaffba8df65d4dbbc57cdb61fd4a9e415214ee2dc8dabc3877da5501c46f4abe64a4512999ebd391e03d38f8ed146fe8a6a5deb90197c5255325f8749a601 DIST haproxy-2.6.16.tar.gz 4084854 BLAKE2B 15a33d6d88de9181d4b1b05d59d32f1c76496e3c8d4a8be8d762ff5945a3e56d416f463473dfb9e3c266032458dab737264fea0d18f467e66cca016da33c9fdc SHA512 81d55c46debe61f691cd0d8ccefd6eb8b5387ce1f4591ed7011ddbcc13b521f708499c9921983c9089e7f9ffcf1ed545d5b6124a92409b78def1f7eb1044e147 DIST haproxy-2.6.18.tar.gz 4103766 BLAKE2B e55f401ede25e54b199b33b7fc3dd788a45e9abbeef10fde5be6939124ab14e119ace3a2dd9d191b7c32270989c98787bdc30d2defa80c012215e2761538ce4c SHA512 44bc0504b62c9553fe084c607e8e4d73df100b371a3493663f82fe661d07852046e1be5dc7d195a3d85f1170d9096c6a0770251ed10c1bc88f8f982ce740042f DIST haproxy-2.7.11.tar.gz 4213212 BLAKE2B ca5713d694b8d709188457dd821218d3474d05dd63ed6d3906d98bf4b24b2ea9847b032d6264c7e80a59043a9e085595fdcbdc0dec44137f0b7d71f1189688e0 SHA512 1e5298397e8759cb260997bf23336b9aa62b56ca7dd832cb4155526d9e7c5c664122e33717ce5be34bbf1539a85a8fbdb6e535aa056d2c232673a4034446288a @@ -12,5 +10,4 @@ DIST haproxy-2.8.7.tar.gz 4376705 BLAKE2B ae145fe6b642f860af814c2c43e84452a0bbc1 DIST haproxy-2.9.6.tar.gz 4507680 BLAKE2B 524d340cba70bc21f53efbe0a7b37897a616e55aa865ffa80471b6b5c03b3eae10bf86078245ec87cc2681b1fd2777148e0fa7f0d4a0a6bc65733f0e8692 SHA512 4e00069356083c8d428bf056e2a26ccfb3e18029cc96769189010d59d0b4f1c7af58986f1653067db83838dcbc2c138798663d3fbb9aac1d3c49c30cfc579c2a DIST haproxy-2.9.7.tar.gz 4516225 BLAKE2B 60590f2ff726bce2078c2075fe7f5476b870bda935560bcbecaf2deeb097c031d458105920f04b441dd59418b7a45b451b16be142f3bb89ddc5efd92ba98303c SHA512 23f320d49f822761cc0a4d8b7e15c8a58b804e4601c9421fa2433afe19798944d5a7264bf83502534b99236dda7c44ec72b97c1e6cdbcf203ab3090ae5313b3b DIST haproxy-2.9.9.tar.gz 4527952 BLAKE2B ef20ad71bf4ac0bf628267bc496c57598b2166002c71bd566323ec9e73bc2cea8ebac406d1eb87c5ec07b1253a54604f6b5f798caa29655c342d9846f62619a6 SHA512 6c0cd9fefc82d340ff2ac8427936b0c3e5a48208728f31239c511ee6c1e09299f8bb77b46a20194a31fee8b8299092979978d6564c0bbab033b2e437331c7dae -DIST haproxy-3.0.2.tar.gz 4679721 BLAKE2B 301605d6e0c3e05241aeaac0c2c4d208896f0a8a239d0961f002c981da844ac8006cf11cd89e6017fe96030723d3dbea910a52d311fc82342f5eea196dea2a57 SHA512 f8add239e7c85ceff7a2fbc1a4e2394a449e247682d1868983ddb34943f14e01b74c710ded7a758b1e985dfaecf24e07a0b47c4c9d195f74ee1d3c2ef4567c71 DIST haproxy-3.0.3.tar.gz 4684023 BLAKE2B d5f10110f0c95e214885b3a2248ed048adaf747e382fd343f90cfd35ed58e58f71a643260d87208e70f4d37101ba80471cd06ccd2d4cd9915031aa42fc86104f SHA512 a5aa15c0b95ab7920b6cd531a640f6a1fd75339b92a7b5dd0905ff
[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/
commit: b935fa36f142459290bf8d7de7e8159ec98c8c1a Author: Christian Ruppert gentoo org> AuthorDate: Tue Sep 3 14:01:43 2024 + Commit: Christian Ruppert gentoo org> CommitDate: Tue Sep 3 14:02:16 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b935fa36 net-proxy/haproxy: Bump to 3.0.4 re CVE-2024-45506 Signed-off-by: Christian Ruppert gentoo.org> net-proxy/haproxy/Manifest | 2 +- net-proxy/haproxy/{haproxy-3.0.3.ebuild => haproxy-3.0.4.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest index e439d5cb13b5..e23db9831dc4 100644 --- a/net-proxy/haproxy/Manifest +++ b/net-proxy/haproxy/Manifest @@ -10,4 +10,4 @@ DIST haproxy-2.8.7.tar.gz 4376705 BLAKE2B ae145fe6b642f860af814c2c43e84452a0bbc1 DIST haproxy-2.9.6.tar.gz 4507680 BLAKE2B 524d340cba70bc21f53efbe0a7b37897a616e55aa865ffa80471b6b5c03b3eae10bf86078245ec87cc2681b1fd2777148e0fa7f0d4a0a6bc65733f0e8692 SHA512 4e00069356083c8d428bf056e2a26ccfb3e18029cc96769189010d59d0b4f1c7af58986f1653067db83838dcbc2c138798663d3fbb9aac1d3c49c30cfc579c2a DIST haproxy-2.9.7.tar.gz 4516225 BLAKE2B 60590f2ff726bce2078c2075fe7f5476b870bda935560bcbecaf2deeb097c031d458105920f04b441dd59418b7a45b451b16be142f3bb89ddc5efd92ba98303c SHA512 23f320d49f822761cc0a4d8b7e15c8a58b804e4601c9421fa2433afe19798944d5a7264bf83502534b99236dda7c44ec72b97c1e6cdbcf203ab3090ae5313b3b DIST haproxy-2.9.9.tar.gz 4527952 BLAKE2B ef20ad71bf4ac0bf628267bc496c57598b2166002c71bd566323ec9e73bc2cea8ebac406d1eb87c5ec07b1253a54604f6b5f798caa29655c342d9846f62619a6 SHA512 6c0cd9fefc82d340ff2ac8427936b0c3e5a48208728f31239c511ee6c1e09299f8bb77b46a20194a31fee8b8299092979978d6564c0bbab033b2e437331c7dae -DIST haproxy-3.0.3.tar.gz 4684023 BLAKE2B d5f10110f0c95e214885b3a2248ed048adaf747e382fd343f90cfd35ed58e58f71a643260d87208e70f4d37101ba80471cd06ccd2d4cd9915031aa42fc86104f SHA512 a5aa15c0b95ab7920b6cd531a640f6a1fd75339b92a7b5dd0905ff281dea138ac287fc92cd5d8910fbbd18f2ae92d76d7ce09482debba9838def511b02f998c5 +DIST haproxy-3.0.4.tar.gz 4689835 BLAKE2B bb3691ac99db91a4a9faecce14f032d152d2fec36bc7722e7a71a8218e05e258c2667e45109af2006f20df38739d911db0be2f4845789824e7a012d4adc7bc38 SHA512 354d441d39a981ca16d844b64e06fde62df9ba0bc7fdd9e79e4890312be18378d7231ac997b035d5ef990f67f0b2cf8e60592026634777ccdb99286078c12867 diff --git a/net-proxy/haproxy/haproxy-3.0.3.ebuild b/net-proxy/haproxy/haproxy-3.0.4.ebuild similarity index 100% rename from net-proxy/haproxy/haproxy-3.0.3.ebuild rename to net-proxy/haproxy/haproxy-3.0.4.ebuild
[gentoo-commits] repo/gentoo:master commit in: net-libs/nodejs/
commit: c051b9e04dd9197a973595a8536baf191f32f1d1 Author: William Hubbs gentoo org> AuthorDate: Tue Sep 3 14:08:54 2024 + Commit: William Hubbs gentoo org> CommitDate: Tue Sep 3 14:08:54 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c051b9e0 net-libs/nodejs: fix -systen-ssl dependency in 22.7.0 If system-ssl isn't used, also require that net-libs/ngtcp2 be built without gnutls. Bug: https://bugs.gentoo.org/934497 Bug: https://bugs.gentoo.org/938455 Signed-off-by: William Hubbs gentoo.org> net-libs/nodejs/nodejs-22.7.0.ebuild | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-libs/nodejs/nodejs-22.7.0.ebuild b/net-libs/nodejs/nodejs-22.7.0.ebuild index 40e5d335039b..a6437d109013 100644 --- a/net-libs/nodejs/nodejs-22.7.0.ebuild +++ b/net-libs/nodejs/nodejs-22.7.0.ebuild @@ -7,7 +7,7 @@ CONFIG_CHECK="~ADVISE_SYSCALLS" PYTHON_COMPAT=( python3_{10..12} ) PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 check-reqs flag-o-matic linux-info ninja-utils pax-utils python-any-r1 xdg-utils +inherit bash-completion-r1 check-reqs flag-o-matic linux-info ninja-utils pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/"; @@ -39,11 +39,14 @@ RDEPEND=">=app-arch/brotli-1.0.9:= >=dev-libs/simdjson-3.9.1:= >=net-dns/c-ares-1.18.1:= >=net-libs/nghttp2-1.61.0:= - >=net-libs/ngtcp2-1.3.0:= sys-libs/zlib corepack? ( !sys-apps/yarn ) system-icu? ( >=dev-libs/icu-73:= ) - system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) + system-ssl? ( + >=net-libs/ngtcp2-1.3.0:= + >=dev-libs/openssl-1.1.1:0= + ) + !system-ssl? ( >=net-libs/ngtcp2-1.3.0:=[-gnutls] ) sys-devel/gcc:*" BDEPEND="${PYTHON_DEPS} app-alternatives/ninja
[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/
commit: 6c57c17026a383938d4e34fe3fcd1f6b044d3dba Author: Christian Ruppert gentoo org> AuthorDate: Tue Sep 3 14:35:37 2024 + Commit: Christian Ruppert gentoo org> CommitDate: Tue Sep 3 14:35:59 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c57c170 net-proxy/haproxy: Bump to 2.9.10 re CVE-2024-45506 Signed-off-by: Christian Ruppert gentoo.org> net-proxy/haproxy/Manifest| 2 +- net-proxy/haproxy/{haproxy-2.9.9.ebuild => haproxy-2.9.10.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest index e23db9831dc4..daebdfc0ea27 100644 --- a/net-proxy/haproxy/Manifest +++ b/net-proxy/haproxy/Manifest @@ -7,7 +7,7 @@ DIST haproxy-2.7.11.tar.gz 4213212 BLAKE2B ca5713d694b8d709188457dd821218d3474d0 DIST haproxy-2.7.9.tar.gz 4186553 BLAKE2B a2c7e92d008886ac5b5cf9f67be808bed68faea41b4bc25a3e5e187a4a2116bc37c40a5df9e2f640dba6c79caea39615eff434e904470e67d7703125a5ffc7e2 SHA512 774d0ae7a402fae0805706f4b88891162e18179f6ad9c2d0916ae30be2502409afdd11dfbbbce9b49564c7e14e8625e4a26751bbfc3b19e3e13ac12c8cc19495 DIST haproxy-2.8.10.tar.gz 4392333 BLAKE2B 4afc387970adbd6f882aa9b1d95cf6cc914d98ce69648282798fe2d97be82adc60c6ad4d0f3a78f56e2eca26d91a47044de2ca7277ca2567ecfdd2233ad64f32 SHA512 0a36f1e17702f4ab6eccf1c10643f4685e8c8b272cc71cbf5feb61c8c95ea52b5fc47eeefc97390bb8cb4ac1d52db0c9ad3c0510f8ca017bf10204690554c6d2 DIST haproxy-2.8.7.tar.gz 4376705 BLAKE2B ae145fe6b642f860af814c2c43e84452a0bbc1b545b1b11eb07c65d903b97e42576b94e1774838b32b29ce32778941b79222669fc7615779c49f2ced85bf3fdc SHA512 dd2fe2ccd5d8805da3f7544451507b182377c34a9951747643c04cb9ee178b7be0978d56a0586c59771c2bb955765d3e961f6f06187afb768dc1fd27f08da464 +DIST haproxy-2.9.10.tar.gz 4532342 BLAKE2B a015b04cb008b6b0d0397e57caa0ae2fda7c91cf0c21f581cc58088fc853d962a5fc1750cd07012e03e3a063e9710803c5100e326aa89bc013b87d638764b11b SHA512 3aea657c37251cdeed295e90cbe0b54a87821c87ef17f80cd057a16102212fb1b992c6fe8b7c4f1a5d6f1890170f470a703b74bd17e2546cfd9847323d2c687f DIST haproxy-2.9.6.tar.gz 4507680 BLAKE2B 524d340cba70bc21f53efbe0a7b37897a616e55aa865ffa80471b6b5c03b3eae10bf86078245ec87cc2681b1fd2777148e0fa7f0d4a0a6bc65733f0e8692 SHA512 4e00069356083c8d428bf056e2a26ccfb3e18029cc96769189010d59d0b4f1c7af58986f1653067db83838dcbc2c138798663d3fbb9aac1d3c49c30cfc579c2a DIST haproxy-2.9.7.tar.gz 4516225 BLAKE2B 60590f2ff726bce2078c2075fe7f5476b870bda935560bcbecaf2deeb097c031d458105920f04b441dd59418b7a45b451b16be142f3bb89ddc5efd92ba98303c SHA512 23f320d49f822761cc0a4d8b7e15c8a58b804e4601c9421fa2433afe19798944d5a7264bf83502534b99236dda7c44ec72b97c1e6cdbcf203ab3090ae5313b3b -DIST haproxy-2.9.9.tar.gz 4527952 BLAKE2B ef20ad71bf4ac0bf628267bc496c57598b2166002c71bd566323ec9e73bc2cea8ebac406d1eb87c5ec07b1253a54604f6b5f798caa29655c342d9846f62619a6 SHA512 6c0cd9fefc82d340ff2ac8427936b0c3e5a48208728f31239c511ee6c1e09299f8bb77b46a20194a31fee8b8299092979978d6564c0bbab033b2e437331c7dae DIST haproxy-3.0.4.tar.gz 4689835 BLAKE2B bb3691ac99db91a4a9faecce14f032d152d2fec36bc7722e7a71a8218e05e258c2667e45109af2006f20df38739d911db0be2f4845789824e7a012d4adc7bc38 SHA512 354d441d39a981ca16d844b64e06fde62df9ba0bc7fdd9e79e4890312be18378d7231ac997b035d5ef990f67f0b2cf8e60592026634777ccdb99286078c12867 diff --git a/net-proxy/haproxy/haproxy-2.9.9.ebuild b/net-proxy/haproxy/haproxy-2.9.10.ebuild similarity index 100% rename from net-proxy/haproxy/haproxy-2.9.9.ebuild rename to net-proxy/haproxy/haproxy-2.9.10.ebuild
[gentoo-commits] repo/gentoo:master commit in: media-gfx/libbgcode/
commit: 992eb099f8818ee49c6b8917c43b1d59530bfade Author: Miroslav Šulc gentoo org> AuthorDate: Tue Sep 3 14:55:55 2024 + Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 3 14:55:55 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=992eb099 media-gfx/libbgcode: bump to 0.0.20240903, dropped 0.0.20240829 Signed-off-by: Miroslav Šulc gentoo.org> media-gfx/libbgcode/Manifest| 2 +- .../{libbgcode-0.0.20240829.ebuild => libbgcode-0.0.20240903.ebuild}| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/libbgcode/Manifest b/media-gfx/libbgcode/Manifest index 696b0c6d8677..4c6e9576d0ef 100644 --- a/media-gfx/libbgcode/Manifest +++ b/media-gfx/libbgcode/Manifest @@ -1,2 +1,2 @@ DIST libbgcode-0.0.20240730.tar.gz 456671 BLAKE2B a15e903e42090eff3945f446f7d805ceabad533a2edcc9e4c82d99bac7aa42e9f10470f5ee41ed449799d9bc318c9097439a6534607a00d0bfeb2e2dea252b79 SHA512 b448d9ace946d85a4decc4a2cc05e1a41c64ba49968db1f818ba5974120f458159d5b639d5501a98daf4544a483366cd0e299c052f21577bb5ad763f7220d7e3 -DIST libbgcode-0.0.20240829.tar.gz 456740 BLAKE2B 391b86c9db133b2928205cd833f9122cde4ba8c0ef6a6d38915453f669d4fcc294e4fcbb340441daa182716356e81d822855881959dbd790f905b47ac5582951 SHA512 9b4c1a97884c0489a41eeba0bbcb7d9e0a35b2fbf26701e557880473bfe160a9c6f58cbac608f995a597ed902dca361934a56681b2c26412ccfcd9e75f498b81 +DIST libbgcode-0.0.20240903.tar.gz 456751 BLAKE2B 93cd8eb83083581ba1ba735c6820dc0ead18d13ca0613387559d610f39c8011881bcc92ffec65fbcb40113b2b877050c15c7816d6db063698ce7ba5df7b35eda SHA512 86e9d85f0e52ebde853979e79639dc4424e26686fe55c45d78ca683cf32d8ec059976d43ffda9339a41892d30ebb267f8c360851889ad0a48ced874c27546f04 diff --git a/media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild b/media-gfx/libbgcode/libbgcode-0.0.20240903.ebuild similarity index 92% rename from media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild rename to media-gfx/libbgcode/libbgcode-0.0.20240903.ebuild index 03905d0adc08..938eb7efa59a 100644 --- a/media-gfx/libbgcode/libbgcode-0.0.20240829.ebuild +++ b/media-gfx/libbgcode/libbgcode-0.0.20240903.ebuild @@ -5,7 +5,7 @@ EAPI=8 inherit cmake -LIBBGCODE_COMMIT=b5c57c423c958a78dacae468aeee63ab3d2de947 +LIBBGCODE_COMMIT=3db61e45713932b4a9cdd469aa567d65e0095d00 DESCRIPTION="Prusa Block & Binary G-code reader / writer / converter" HOMEPAGE="https://github.com/prusa3d/libbgcode";
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtmultimedia/
commit: 266fb6b6ac07ec45e3b30fa5d55ee085169ca7d8 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Sep 3 15:02:15 2024 + Commit: Ionen Wolkens gentoo org> CommitDate: Tue Sep 3 15:10:45 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=266fb6b6 dev-qt/qtmultimedia: skip tst_qmediacapture_gstreamer in 6.7 too Tried a full build of dev-qt/*-6.7. in preparation for 6.7.3 and this is the only thing that went wrong (like it did in 6.8). Test doesn't expect to have nothing to capture (as portage user in sandbox) and segfaults as far as I can tell and should be a non-issue. Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtmultimedia/qtmultimedia-6.7..ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.7..ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.7..ebuild index 4aefaf7a465a..2921a408326e 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-6.7..ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-6.7..ebuild @@ -70,6 +70,7 @@ CMAKE_SKIP_TESTS=( # tries to use real alsa or pulseaudio and fails in sandbox tst_qaudiosink tst_qaudiosource + tst_qmediacapture_gstreamer tst_qmediacapturesession tst_qmediaplayerbackend tst_qsoundeffect
[gentoo-commits] repo/proj/guru:dev commit in: net-vpn/mullvadvpn-app/
commit: 3a87529fc6685684e52d556ef51b447e56265fb2 Author: Itai Ferber itaiferber net> AuthorDate: Tue Sep 3 15:24:59 2024 + Commit: Itai Ferber itaiferber net> CommitDate: Tue Sep 3 15:24:59 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3a87529f net-vpn/mullvadvpn-app: drop 2024.4 Signed-off-by: Itai Ferber itaiferber.net> net-vpn/mullvadvpn-app/Manifest| 2 - .../mullvadvpn-app/mullvadvpn-app-2024.4.ebuild| 82 -- 2 files changed, 84 deletions(-) diff --git a/net-vpn/mullvadvpn-app/Manifest b/net-vpn/mullvadvpn-app/Manifest index 200500608..2a65e57d1 100644 --- a/net-vpn/mullvadvpn-app/Manifest +++ b/net-vpn/mullvadvpn-app/Manifest @@ -1,4 +1,2 @@ -DIST MullvadVPN-2024.4_aarch64.rpm 84958649 BLAKE2B 173f9675a64f16e3d1473022dee0c543faa3ce1f5a996504b3ab814a8db3efa3103ab055292e58d1c74a5b2f1283f3404dbd85695dc25f449acfb2bfff879de3 SHA512 1abcb5df358cdc1c18ea0d3e366241b2f875391eeb240af2955a907faed427655682d9e594bff1e314137711f5c141d4036e6f8eccc3178aefd9e7e65c415f51 -DIST MullvadVPN-2024.4_x86_64.rpm 90830721 BLAKE2B c9ac8bc13fc2f4789ba3e08cd8d4fe23c71b759313afed4fd7c1f3dd2f5f8d535aa48da4526e7039a64c6863747392c3537bff39cca9a9cbbfd3174a485ad4b5 SHA512 4d46bd92f5f4cbd95bfbd7e0e311ee7c2a88012b465bfe51f9d3cf760d23026dc8300511f1cef9486d70b6a10578057493afe93c98688087149bd381460b813d DIST MullvadVPN-2024.5-beta1_aarch64.rpm 85192345 BLAKE2B 9623694211b0518237645e5506ceb0c1e267f48e65bbc01c102d8a104b148ab0befdd09b37a39c5a2228531833d323bf105f5164d445931cebdfb3c2aafd3e17 SHA512 8e8294ba067e04dd503c8df32c18c6a8e6342e3c2d31bdcdb19eda001164246c99d31a6629dfefa7d58d9489e99904ce2b55c146ca0aa42197952d7c96346117 DIST MullvadVPN-2024.5-beta1_x86_64.rpm 91094269 BLAKE2B f5eb6dfc96b4413119986ab026a09d57df419a1e208e6ba58954e22cadd83625fe9ee36926cdca5090c244c77243e63c4eb324ab26a570a4f81bbbff4ee33fe7 SHA512 218a95c440606c480b293cff852a67d9b97e1c40c729b5da352bd51b17ebec91aa39fb59fba1d5bc434596df2ade7194b4a2392661a7f1c869964bf5097a1efe diff --git a/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.4.ebuild b/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.4.ebuild deleted file mode 100644 index 9ce9cffe4..0 --- a/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.4.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop rpm systemd shell-completion xdg - -DESCRIPTION="Tool used to manage daemon setup" -HOMEPAGE="https://github.com/mullvad/mullvadvpn-app https://mullvad.net/"; -SRC_URI=" - amd64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${PV}/MullvadVPN-${PV}_x86_64.rpm ) - arm64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${PV}/MullvadVPN-${PV}_aarch64.rpm ) -" - -S="${WORKDIR}" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm64" - -RESTRICT="bindist mirror strip" - -RDEPEND=" - app-accessibility/at-spi2-core:2 - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/mesa - net-print/cups - sys-apps/dbus - x11-libs/cairo - x11-libs/gtk+:3 - x11-libs/libdrm - x11-libs/libX11 - x11-libs/libxcb - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libxkbcommon - x11-libs/libXrandr - x11-libs/pango -" - -QA_PREBUILT="*" - -src_install() { - sed -i "s|SCRIPT_DIR=.*|SCRIPT_DIR=\"/opt/Mullvad VPN/\"|g" "${S}"/opt/Mullvad\ VPN/mullvad-vpn - - # Using doins -r would strip executable bits from all binaries - cp -pPR "${S}"/opt "${D}"/ || die "Failed to copy files" - fperms +x "/opt/Mullvad VPN/chrome_crashpad_handler" - fperms 4755 "/opt/Mullvad VPN/chrome-sandbox" - - dobin "${S}"/usr/bin/mullvad - dobin "${S}"/usr/bin/mullvad-daemon - dobin "${S}"/usr/bin/mullvad-exclude - dosym "../../opt/Mullvad VPN/mullvad-vpn" /usr/bin/mullvad-vpn - dosym "../../opt/Mullvad VPN/resources/mullvad-problem-report" /usr/bin/mullvad-problem-report - - # mullvad-exclude uses cgroups to manage exclusions, which requires root permissions, but is - # also most often used to exclude graphical applications which can't or shouldn't run as root - # (i.e., can't be run under `sudo/doas /usr/bin/mullvad-exclude ...`, because `sudo`/`doas` - # change user). The setuid bit allows any user to exclude executables under their own UID. - fperms 4755 /usr/bin/mullvad-exclude - - newinitd "${FILESDIR}"/mullvad-daemon.initd mullvad-daemon - - systemd_newunit "${S}"/usr/lib/systemd/system/mullvad-daemon.service mullvad-daemon.service - systemd_newunit "${S}"/usr/lib/systemd/system/mullvad-early-boot-blocking.service mullvad-early-boot-blocking.service - - newbashcomp "${S}"/usr
[gentoo-commits] repo/proj/guru:dev commit in: net-vpn/mullvadvpn-app/
commit: 3c3096569bbbfb69f984a8db5b0666b58224d5b1 Author: Itai Ferber itaiferber net> AuthorDate: Tue Sep 3 15:24:25 2024 + Commit: Itai Ferber itaiferber net> CommitDate: Tue Sep 3 15:26:08 2024 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c309656 net-vpn/mullvadvpn-app: add 2024.5, drop 2024.5_beta1 Signed-off-by: Itai Ferber itaiferber.net> net-vpn/mullvadvpn-app/Manifest | 4 ++-- ...llvadvpn-app-2024.5_beta1.ebuild => mullvadvpn-app-2024.5.ebuild} | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/net-vpn/mullvadvpn-app/Manifest b/net-vpn/mullvadvpn-app/Manifest index 2a65e57d1..d855be42a 100644 --- a/net-vpn/mullvadvpn-app/Manifest +++ b/net-vpn/mullvadvpn-app/Manifest @@ -1,2 +1,2 @@ -DIST MullvadVPN-2024.5-beta1_aarch64.rpm 85192345 BLAKE2B 9623694211b0518237645e5506ceb0c1e267f48e65bbc01c102d8a104b148ab0befdd09b37a39c5a2228531833d323bf105f5164d445931cebdfb3c2aafd3e17 SHA512 8e8294ba067e04dd503c8df32c18c6a8e6342e3c2d31bdcdb19eda001164246c99d31a6629dfefa7d58d9489e99904ce2b55c146ca0aa42197952d7c96346117 -DIST MullvadVPN-2024.5-beta1_x86_64.rpm 91094269 BLAKE2B f5eb6dfc96b4413119986ab026a09d57df419a1e208e6ba58954e22cadd83625fe9ee36926cdca5090c244c77243e63c4eb324ab26a570a4f81bbbff4ee33fe7 SHA512 218a95c440606c480b293cff852a67d9b97e1c40c729b5da352bd51b17ebec91aa39fb59fba1d5bc434596df2ade7194b4a2392661a7f1c869964bf5097a1efe +DIST MullvadVPN-2024.5_aarch64.rpm 85185769 BLAKE2B 1b6d5791f0363041b5861ed09a259053a6304c9a2efdfc14d0c0317a9f86eb446eeeca1a740d6154eee1aae349159b8d5f62358c5b2ede965ff2d6bf7b0dadf7 SHA512 cc3d58241c68b4cc3376723911f0cd9228958e8abd92572d6e946e70a172af1b90b6a3f5588e30c25d3d9072be00f95c0fffc11874349f0c03fc4b23966d5e25 +DIST MullvadVPN-2024.5_x86_64.rpm 91119641 BLAKE2B 91ec3ac8eb749592a050582a3b4038b0ad577dac3f4fe169c3bbb311c7741d78032308d76ad54bcb9ca7e6ace91ea3dcd551b232d9ac111d2fae5d7570332916 SHA512 8ddf461ed9336f82a2753c5b6071047c094e1e3dca36ce3a45985dc6681e9f208958533f90f5cb97d1574e8a03742d1e6942fbcf7ae9e97ae785a980866942f7 diff --git a/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5_beta1.ebuild b/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5.ebuild similarity index 95% rename from net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5_beta1.ebuild rename to net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5.ebuild index 74b5bde48..91b38137c 100644 --- a/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5_beta1.ebuild +++ b/net-vpn/mullvadvpn-app/mullvadvpn-app-2024.5.ebuild @@ -5,12 +5,11 @@ EAPI=8 inherit desktop rpm systemd shell-completion xdg -MYPV="${PV/_beta/-beta}" DESCRIPTION="Tool used to manage daemon setup" HOMEPAGE="https://github.com/mullvad/mullvadvpn-app https://mullvad.net/"; SRC_URI=" - amd64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${MYPV}/MullvadVPN-${MYPV}_x86_64.rpm ) - arm64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${MYPV}/MullvadVPN-${MYPV}_aarch64.rpm ) + amd64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${PV}/MullvadVPN-${PV}_x86_64.rpm ) + arm64? ( https://github.com/mullvad/mullvadvpn-app/releases/download/${PV}/MullvadVPN-${PV}_aarch64.rpm ) " S="${WORKDIR}"
[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/
commit: 77dcabbec9795f9992a45cdd66dcd82fe566722f Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Sep 3 15:34:53 2024 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Sep 3 16:04:23 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77dcabbe app-office/libreoffice: Drop kioclient patch to support kde-open5 kde-open5 has been a compatibility symlink to kde-open for a long time and is gone from ::gentoo with kde-plasma/kde-cli-tools:6. Historical reference: ::gentoo commit 0f3b29bb1e019af4afd5b3bc34abb03ddf4f509b Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libreoffice/libreoffice-24.2..ebuild | 1 - app-office/libreoffice/libreoffice-.ebuild | 1 - 2 files changed, 2 deletions(-) diff --git a/app-office/libreoffice/libreoffice-24.2..ebuild b/app-office/libreoffice/libreoffice-24.2..ebuild index 20bf4268cdef..1360d7d1e65e 100644 --- a/app-office/libreoffice/libreoffice-24.2..ebuild +++ b/app-office/libreoffice/libreoffice-24.2..ebuild @@ -312,7 +312,6 @@ PATCHES=( # "${WORKDIR}"/${PATCHSET/.tar.xz/} # not upstreamable stuff - "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" "${FILESDIR}/${PN}-6.1-nomancompress.patch" "${FILESDIR}/${PN}-24.2-qtdetect.patch" diff --git a/app-office/libreoffice/libreoffice-.ebuild b/app-office/libreoffice/libreoffice-.ebuild index 20bf4268cdef..1360d7d1e65e 100644 --- a/app-office/libreoffice/libreoffice-.ebuild +++ b/app-office/libreoffice/libreoffice-.ebuild @@ -312,7 +312,6 @@ PATCHES=( # "${WORKDIR}"/${PATCHSET/.tar.xz/} # not upstreamable stuff - "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" "${FILESDIR}/${PN}-6.1-nomancompress.patch" "${FILESDIR}/${PN}-24.2-qtdetect.patch"
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
commit: d0b506c69087eaef36b974888690a46a431f6c7e Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 11:20:28 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 16:43:32 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0b506c6 app-misc/astrolog: add github upstream metadata Signed-off-by: Petr Vaněk gentoo.org> app-misc/astrolog/metadata.xml | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-misc/astrolog/metadata.xml b/app-misc/astrolog/metadata.xml index 85e4ed814fa2..41cdaf139913 100644 --- a/app-misc/astrolog/metadata.xml +++ b/app-misc/astrolog/metadata.xml @@ -1,5 +1,8 @@ https://www.gentoo.org/dtd/metadata.dtd";> - + + + CruiserOne/Astrolog +
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
commit: 74c54cb29778f389f8857f54685381a4ef245814 Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 11:17:55 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 16:43:31 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c54cb2 app-misc/astrolog: add 7.70 - use MY_PV in SRC_URI - update LICENSE - respect user optimization CFLAGS and do not pre-strip binaries; src_prepare and src_compile phases were reworked due to that - print postinst message only on the first install Signed-off-by: Petr Vaněk gentoo.org> app-misc/astrolog/Manifest | 1 + app-misc/astrolog/astrolog-7.70.ebuild | 75 ++ 2 files changed, 76 insertions(+) diff --git a/app-misc/astrolog/Manifest b/app-misc/astrolog/Manifest index 905de738fda6..b4883f98e9a9 100644 --- a/app-misc/astrolog/Manifest +++ b/app-misc/astrolog/Manifest @@ -1 +1,2 @@ DIST ast74src.zip 4483648 BLAKE2B d15d3e5d98337c5c5884973d079cffda9144a5c9f43ab48dd38f782eeef089d9fd5fb3f5a01f1d607bd2134e6a774494d4cf7d99e117d3092c8787626436e778 SHA512 540bda7ee10cde0723f6bd4afe410e4e9c59168e31dbdbd0b3b62a9e77ae83a971543fc812876258e2b7b9636f880c74b9be5497c54e7dd0e9b444bad2edbf6b +DIST ast77src.zip 4706533 BLAKE2B ea5ae3805ea43d61f5ff27f199bd36e7263800e441b1aa31044c814b08f6ae2be8969d752a16262ec944dbaae0e0bc2ab3413ee14edbe2366f332a56452bc4d1 SHA512 f5ad29cc023e4bd6a36ddc8434f422fcfe4dbd0b3ebebb85bf6e2d12de58cf60e8304c8a5cea6cb385de346dc1441752542774ee1e7319de9af2166289fd1291 diff --git a/app-misc/astrolog/astrolog-7.70.ebuild b/app-misc/astrolog/astrolog-7.70.ebuild new file mode 100644 index ..84ef17f76a89 --- /dev/null +++ b/app-misc/astrolog/astrolog-7.70.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Please also check if app-misc/astrolog-ephemeris archive needs update + +inherit toolchain-funcs + +MY_PV=$(ver_rs 1 '') + +DESCRIPTION="A many featured astrology chart calculation program" +HOMEPAGE=" + https://www.astrolog.org/astrolog.htm + https://github.com/CruiserOne/Astrolog +" +SRC_URI="https://www.astrolog.org/ftp/ast${MY_PV:0:2}src.zip"; + +S="${WORKDIR}" + +LICENSE="AGPL-3 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="X" + +DEPEND="X? ( x11-libs/libX11 )" +RDEPEND="${DEPEND}" +BDEPEND="app-arch/unzip" + +src_prepare() { + default + + # we use /usr/share/astrolog for config and (optional) ephemeris-data-files + local cfgargs=( -e "s:~/astrolog:/usr/share/astrolog:g" ) + # if we do NOT use X, we comment the "#define X11" in astrolog.h + use X || cfgargs+=( -e "s:#define X11://&:g" ) + + sed -i "${cfgargs[@]}" astrolog.h || die + + local makeargs=( + # respect CXX (bug #243606), and LDFLAGS + -e 's:\tcc :\t$(CXX) $(LDFLAGS) :' + # respect -O flags + -e '/^CPPFLAGS/s:-O ::' + ) + sed -i "${makeargs[@]}" Makefile || die +} + +src_compile() { + local libs=( -lm -ldl ) + # we need to link with -lX11 if the X use is set + use X && libs+=( -lX11 ) + + # Makefile contains stripping flag in LIBS. It is easier to overload it + # here because we need to control LIBS content with X use anyway. + emake LIBS="${libs[*]}" +} + +src_install() { + dobin astrolog + dodoc astrolog.doc changes.doc + insinto /usr/share/astrolog + doins astrolog.as +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "There is a sample config file /usr/share/astrolog/astrolog.as" + elog "astrolog looks in current dir for a file astrolog.as before" + elog "using the file in /usr/share/astrolog" + elog "If you want extended accuracy of astrolog's calculations you" + elog "can emerge the optional package \"astrolog-ephemeris\" which" + elog "needs ~32.9 MB additional diskspace for the ephemeris-files" + fi +}
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog-ephemeris/
commit: e44f26342f299c0d35ad3c2b3a363a674441fd4c Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 16:18:19 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 16:43:35 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44f2634 app-misc/astrolog-ephemeris: drop 5.40, 7.40 Signed-off-by: Petr Vaněk gentoo.org> .../astrolog-ephemeris-5.40.ebuild | 24 .../astrolog-ephemeris-7.40.ebuild | 26 -- 2 files changed, 50 deletions(-) diff --git a/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild b/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild deleted file mode 100644 index 269fbde6ea43.. --- a/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="ephemeris files for optional extended accuracy of astrolog's calculations" -HOMEPAGE="http://www.astrolog.org/astrolog.htm"; -SRC_URI="http://www.astrolog.org/ftp/ephem/ephemall.zip"; - -LICENSE="astrolog" -SLOT="0" -# works fine on x86 - runs probably on other architectures, too -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" - -S="${WORKDIR}" - -RDEPEND="app-misc/astrolog" -BDEPEND="app-arch/unzip" - -src_install() { - insinto /usr/share/astrolog - doins -r . -} diff --git a/app-misc/astrolog-ephemeris/astrolog-ephemeris-7.40.ebuild b/app-misc/astrolog-ephemeris/astrolog-ephemeris-7.40.ebuild deleted file mode 100644 index e07bb6f43c66.. --- a/app-misc/astrolog-ephemeris/astrolog-ephemeris-7.40.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Please bump with app-misc/astrolog - -DESCRIPTION="ephemeris files for optional extended accuracy of astrolog's calculations" -HOMEPAGE="https://www.astrolog.org/astrolog.htm"; -SRC_URI="https://www.astrolog.org/ftp/ephem/ephemall.zip"; - -LICENSE="astrolog" -SLOT="0" -# works fine on x86 - runs probably on other architectures, too -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" - -S="${WORKDIR}" - -RDEPEND="app-misc/astrolog" -BDEPEND="app-arch/unzip" - -src_install() { - insinto /usr/share/astrolog - doins -r . -}
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
commit: dfd403340b7cb80b17e13d9167aded61e491859e Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 11:20:48 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 16:43:33 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd40334 app-misc/astrolog: drop 7.40 Signed-off-by: Petr Vaněk gentoo.org> app-misc/astrolog/astrolog-7.40.ebuild | 63 -- 1 file changed, 63 deletions(-) diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild deleted file mode 100644 index ab421e0eb9aa.. --- a/app-misc/astrolog/astrolog-7.40.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Please bump with app-misc/astrolog-ephemeris - -inherit toolchain-funcs - -DESCRIPTION="A many featured astrology chart calculation program" -HOMEPAGE="https://www.astrolog.org/astrolog.htm"; -SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"; - -LICENSE="astrolog" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="X" - -DEPEND="X? ( x11-libs/libX11 )" -RDEPEND="${DEPEND}" -BDEPEND="app-arch/unzip" - -S="${WORKDIR}" - -src_prepare() { - default - - # remove stripping of created binary, dump hardcoded CFLAGS, - # respect CC (bug #243606), and CFLAGS (bug #240057) - sed \ - -e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \ - -e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \ - -i Makefile || die - - # we use /usr/share/astrolog for config and (optional) ephemeris-data-files - sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die - - # if we do NOT use X, we disable it by removing the -lX11 from the Makefile - # and remove the "#define X11" and "#define MOUSE" from astrolog.h - use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile || die - sed -i -e "s:#define X11:/*#define X11:g" astrolog.h || die - sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h || die) -} - -src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin astrolog - dodoc astrolog.doc changes.doc - insinto /usr/share/astrolog - doins astrolog.as -} - -pkg_postinst() { - elog "There is a sample config file /usr/share/astrolog/astrolog.as" - elog "astrolog looks in current dir for a file astrolog.as before" - elog "using the file in /usr/share/astrolog" - elog "If you want extended accuracy of astrolog's calculations you" - elog "can emerge the optional package \"astrolog-ephemeris\" which" - elog "needs ~32.9 MB additional diskspace for the ephemeris-files" -}
[gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog-ephemeris/
commit: 0e658c56685950d5f75f8b8e85c225926d2c1952 Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 16:17:52 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 16:43:34 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e658c56 app-misc/astrolog-ephemeris: add 20230414 - switch to a different versioning scheme which is more appropriate to ephemeris files - switch from old less accurate Placalc ephemeris files to Swiss Ephemeris files, which are searched by app-misc/astrolog by default. Signed-off-by: Petr Vaněk gentoo.org> app-misc/astrolog-ephemeris/Manifest | 1 + .../astrolog-ephemeris-20230414.ebuild | 34 ++ app-misc/astrolog-ephemeris/metadata.xml | 9 +++--- 3 files changed, 40 insertions(+), 4 deletions(-) diff --git a/app-misc/astrolog-ephemeris/Manifest b/app-misc/astrolog-ephemeris/Manifest index 5ed2adfca4d3..fa28ff836eee 100644 --- a/app-misc/astrolog-ephemeris/Manifest +++ b/app-misc/astrolog-ephemeris/Manifest @@ -1 +1,2 @@ +DIST astrolog-ephemeris-20230414.zip 34586270 BLAKE2B 301cd558cf50fbea242b41388b6f04372f8d1af0dd899dc40731b3a2ac8771c5ef08a4cbb987c6b4ef6f29613b5fe4d5933601808b18f2d266dee36f17bfea36 SHA512 a058a81815c13e31cb03c22408238fe7582cd5b5b548ef9562a60fa89e37b2de2c16d729fd3e78311c9a822169e9d93987599f658ca7b6b1f536c2a0ba76307c DIST ephemall.zip 4604012 BLAKE2B 0caee003272734a71a3f2d10871e1c034c9e9039f5cb0f09ed19d85122ba875794933d53624d6a379838a7f2c33728c2da9aaadbd91887fea018ecfc1c786557 SHA512 e7822cecb87466987107e84aae64d292dad31de9d2c268886869a37ea9e99bf81b2a530129c0f6538c6b55ad46b185e16ee0c5b0d8858acfe189f19e2595c6da diff --git a/app-misc/astrolog-ephemeris/astrolog-ephemeris-20230414.ebuild b/app-misc/astrolog-ephemeris/astrolog-ephemeris-20230414.ebuild new file mode 100644 index ..f840301c959c --- /dev/null +++ b/app-misc/astrolog-ephemeris/astrolog-ephemeris-20230414.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# This archive is most probably created from files from following repository +# https://github.com/aloistr/swisseph/tree/master/ephe +# +# The version represents archive creation date. +# +# Upstream calls them Swiss Ephemeris files and Astrolog version 7.70 (most +# recent version in time of writing this comment) tries to search them by +# default. + +DESCRIPTION="ephemeris files for optional extended accuracy of astrolog's calculations" +HOMEPAGE="https://www.astrolog.org/astrolog.htm"; +SRC_URI=" + https://www.astrolog.org/ftp/ephem/astephem.zip + -> ${P}.zip +" + +S="${WORKDIR}" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +RDEPEND="app-misc/astrolog" +BDEPEND="app-arch/unzip" + +src_install() { + insinto /usr/share/astrolog + doins -r . +} diff --git a/app-misc/astrolog-ephemeris/metadata.xml b/app-misc/astrolog-ephemeris/metadata.xml index 062170537b8f..f5ac3a0ecaf3 100644 --- a/app-misc/astrolog-ephemeris/metadata.xml +++ b/app-misc/astrolog-ephemeris/metadata.xml @@ -1,8 +1,9 @@ https://www.gentoo.org/dtd/metadata.dtd";> - - s...@gentoo.org - Gentoo Science Project - + + s...@gentoo.org + Gentoo Science Project + +
[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-gear-24.05/, ...
commit: f134f02cb9c4848229227a47bb8036058c262981 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Sep 3 16:58:13 2024 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Sep 3 16:58:45 2024 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f134f02c Documentation: Cleanup obsolete, meanwhile stabilised more-deps Signed-off-by: Andreas Sturmlechner gentoo.org> .../.kde-frameworks-6.5/more-deps | 6 -- .../.kde-frameworks-live.base/more-deps| 6 -- .../.kde-frameworks-live/more-deps | 6 -- .../.kde-gear-24.05/more-deps | 22 -- .../.kde-gear-24.08.49./more-deps | 13 - .../.kde-gear-24.08/more-deps | 13 - .../.kde-gear-live.base/more-deps | 13 - .../.kde-gear-live/more-deps | 13 - .../.kde-plasma-6.1/more-deps | 13 - .../kde-frameworks-6.5.keywords| 6 -- .../kde-frameworks-live.keywords | 6 -- .../kde-gear-24.05.keywords| 22 -- .../kde-gear-24.08.49..keywords| 13 - .../kde-gear-24.08.keywords| 13 - .../package.accept_keywords/kde-gear-live.keywords | 13 - .../kde-plasma-6.1.keywords| 13 - 16 files changed, 191 deletions(-) diff --git a/Documentation/package.accept_keywords/.kde-frameworks-6.5/more-deps b/Documentation/package.accept_keywords/.kde-frameworks-6.5/more-deps index d55c283abc..e69de29bb2 100644 --- a/Documentation/package.accept_keywords/.kde-frameworks-6.5/more-deps +++ b/Documentation/package.accept_keywords/.kde-frameworks-6.5/more-deps @@ -1,6 +0,0 @@ -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/kdegraphics-mobipocket-24.05.2 -~kde-apps/kio-extras-24.05.2 -~kde-apps/libkexiv2-24.05.2 diff --git a/Documentation/package.accept_keywords/.kde-frameworks-live.base/more-deps b/Documentation/package.accept_keywords/.kde-frameworks-live.base/more-deps index d55c283abc..e69de29bb2 100644 --- a/Documentation/package.accept_keywords/.kde-frameworks-live.base/more-deps +++ b/Documentation/package.accept_keywords/.kde-frameworks-live.base/more-deps @@ -1,6 +0,0 @@ -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/kdegraphics-mobipocket-24.05.2 -~kde-apps/kio-extras-24.05.2 -~kde-apps/libkexiv2-24.05.2 diff --git a/Documentation/package.accept_keywords/.kde-frameworks-live/more-deps b/Documentation/package.accept_keywords/.kde-frameworks-live/more-deps index d55c283abc..e69de29bb2 100644 --- a/Documentation/package.accept_keywords/.kde-frameworks-live/more-deps +++ b/Documentation/package.accept_keywords/.kde-frameworks-live/more-deps @@ -1,6 +0,0 @@ -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/kdegraphics-mobipocket-24.05.2 -~kde-apps/kio-extras-24.05.2 -~kde-apps/libkexiv2-24.05.2 diff --git a/Documentation/package.accept_keywords/.kde-gear-24.05/more-deps b/Documentation/package.accept_keywords/.kde-gear-24.05/more-deps index 8a73bd9fc2..e69de29bb2 100644 --- a/Documentation/package.accept_keywords/.kde-gear-24.05/more-deps +++ b/Documentation/package.accept_keywords/.kde-gear-24.05/more-deps @@ -1,22 +0,0 @@ -~dev-db/futuresql-0.1.1 -~dev-libs/kdiagram-3.0.1 -~dev-libs/kirigami-addons-1.3.0 -~dev-libs/ktextaddons-1.5.4 -~dev-libs/kweathercore-0.8.0 -~dev-libs/qcoro-0.10.0 -~media-libs/kcolorpicker-0.3.1 -~media-libs/kimageannotator-0.7.1 -~media-libs/kquickimageeditor-0.3.0 -~media-libs/libqaccessibilityclient-0.6.0 -~media-libs/mpvqt-1.0.0 -~media-libs/phonon-4.12.0 -~media-libs/phonon-vlc-0.12.0 -~media-libs/pulseaudio-qt-1.5.0 -~net-libs/accounts-qml-0.7_p20231028 -~net-libs/accounts-qt-1.17 -~net-libs/kdsoap-2.2.0 -~net-libs/kdsoap-ws-discovery-client-0.4.0 -=net-libs/signond-8.61-r100 -~net-libs/signon-oauth2-0.25_p20210102 -~net-libs/signon-ui-0.15_p20231016 -~sys-auth/polkit-qt-0.200.0 diff --git a/Documentation/package.accept_keywords/.kde-gear-24.08.49./more-deps b/Documentation/package.accept_keywords/.kde-gear-24.08.49./more-deps index 786ea0228c..e69de29bb2 100644 --- a/Documentation/package.accept_keywords/.kde-gear-24.08.49./more-deps +++ b/Documentation/package.accept_keywords/.kde-gear-24.08.49./more-deps @@ -1,13 +0,0 @@ -~dev-db/futuresql-0.1.1 -~dev-libs/kdiagram-3.0.1 -~dev-libs/kirigami-addons-1.3.0 -~dev-libs/ktextaddons-1.5.4 -~dev-libs/kweathercore-0.8.0 -~dev-libs/qcoro-0.10.0 -~media-libs/kcolorpicker-0.3.1 -~media-libs/kimageannotator-0.7.1 -~media-libs/kquic
[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-plasma-live.base/, ...
commit: f0adbc66075bc49de640f16fbae360f20a1565db Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Sep 3 16:53:19 2024 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Sep 3 16:58:45 2024 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f0adbc66 Documentation: Cleanup more-deps, add necessary non-Plasma-cycle libs media-libs/pulseaudio-qt- dev-libs/plasma-wayland-protocols- See also: https://github.com/gentoo/kde/pull/1003 Signed-off-by: Andreas Sturmlechner gentoo.org> .../package.accept_keywords/.kde-plasma-live.base/more-deps | 13 ++--- .../package.accept_keywords/.kde-plasma-live/more-deps | 13 ++--- .../package.accept_keywords/kde-plasma-live.keywords| 13 ++--- 3 files changed, 6 insertions(+), 33 deletions(-) diff --git a/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps b/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps index 91a9dc62b2..bb21b4cd48 100644 --- a/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps +++ b/Documentation/package.accept_keywords/.kde-plasma-live.base/more-deps @@ -1,11 +1,2 @@ -~dev-libs/appstream-1.0.3 -~dev-libs/kirigami-addons-1.3.0 -~dev-python/pygdbmi-0.11.0.0 -~gui-apps/xwaylandvideobridge-0.4.0 -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/spectacle-24.05.2 -~kde-misc/kio-fuse-5.1.0 -=kde-plasma/print-manager-23.08.5-r100 -~media-libs/libqaccessibilityclient-0.6.0 +~media-libs/pulseaudio-qt- ** +~dev-libs/plasma-wayland-protocols- ** diff --git a/Documentation/package.accept_keywords/.kde-plasma-live/more-deps b/Documentation/package.accept_keywords/.kde-plasma-live/more-deps index 91a9dc62b2..bb21b4cd48 100644 --- a/Documentation/package.accept_keywords/.kde-plasma-live/more-deps +++ b/Documentation/package.accept_keywords/.kde-plasma-live/more-deps @@ -1,11 +1,2 @@ -~dev-libs/appstream-1.0.3 -~dev-libs/kirigami-addons-1.3.0 -~dev-python/pygdbmi-0.11.0.0 -~gui-apps/xwaylandvideobridge-0.4.0 -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/spectacle-24.05.2 -~kde-misc/kio-fuse-5.1.0 -=kde-plasma/print-manager-23.08.5-r100 -~media-libs/libqaccessibilityclient-0.6.0 +~media-libs/pulseaudio-qt- ** +~dev-libs/plasma-wayland-protocols- ** diff --git a/Documentation/package.accept_keywords/kde-plasma-live.keywords b/Documentation/package.accept_keywords/kde-plasma-live.keywords index cb6f5b7744..60abac77af 100644 --- a/Documentation/package.accept_keywords/kde-plasma-live.keywords +++ b/Documentation/package.accept_keywords/kde-plasma-live.keywords @@ -64,14 +64,5 @@ ~kde-plasma/systemsettings- ** ~kde-plasma/wacomtablet- ** ~kde-plasma/xdg-desktop-portal-kde- ** -~dev-libs/appstream-1.0.3 -~dev-libs/kirigami-addons-1.3.0 -~dev-python/pygdbmi-0.11.0.0 -~gui-apps/xwaylandvideobridge-0.4.0 -~kde-apps/kaccounts-integration-24.05.2 -~kde-apps/kaccounts-providers-24.05.2 -~kde-apps/signon-kwallet-extension-24.05.2 -~kde-apps/spectacle-24.05.2 -~kde-misc/kio-fuse-5.1.0 -=kde-plasma/print-manager-23.08.5-r100 -~media-libs/libqaccessibilityclient-0.6.0 +~media-libs/pulseaudio-qt- ** +~dev-libs/plasma-wayland-protocols- **
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-sources/
commit: fd22fed9182e6bb0e4f8c3e68839834d7a290fba Author: Viorel Munteanu gentoo org> AuthorDate: Tue Sep 3 14:28:37 2024 + Commit: Viorel Munteanu gentoo org> CommitDate: Tue Sep 3 17:22:23 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd22fed9 sys-kernel/raspberrypi-sources: add 6.6.47_p20240802 No tag from upstream, add a snapshot for sys-kernel/raspberrypi-image. Signed-off-by: Viorel Munteanu gentoo.org> sys-kernel/raspberrypi-sources/Manifest| 3 + .../raspberrypi-sources-6.6.47_p20240802.ebuild| 82 ++ 2 files changed, 85 insertions(+) diff --git a/sys-kernel/raspberrypi-sources/Manifest b/sys-kernel/raspberrypi-sources/Manifest index 8f516e24c5a4..48139140027f 100644 --- a/sys-kernel/raspberrypi-sources/Manifest +++ b/sys-kernel/raspberrypi-sources/Manifest @@ -4,7 +4,10 @@ DIST genpatches-6.1-25.base.tar.xz 1200876 BLAKE2B 7050f6e95a28f5886cce9b53823f6 DIST genpatches-6.1-25.extras.tar.xz 3812 BLAKE2B f73698c57031c9d7f5edd9ba2b865e32064c38b528649a8144f856bacf35ae3570d1fc936ee25a88bd52fd0765fff05bec42686b8b3fc5566df187bd57d59be5 SHA512 ac2bdccbc6bd1de82cbdfe4edac978e068445b8e064bcc6a833b04f15b86592304c19651884dc0769719ade1b220c8c0f704beca240ce24ab370621ad6849aee DIST genpatches-6.6-38.base.tar.xz 2066552 BLAKE2B 61205dc2b5d17f15af23d8eb8af0720fe5f6c560ae671c98252d7c9e28e9b93fdde067811664f095ce103beab9bcb1810e9ab9e32a82d972cbbb44ce5257f097 SHA512 ef6d0814f5bd646c49e54fadc46e73ef118466978a6fba1bd18d832e6dd089a1699ec14f40e769e061bdb84f843e94c190b31729b48a36a317d66da6a8d00622 DIST genpatches-6.6-38.extras.tar.xz 4052 BLAKE2B 7d25eaaf329cc043fd5189114c5d100f2a3dad9a97b0c87cfc9541ff95ffeb9e3a8a723e5c4fa1f9241c4fd67aac5aa1e4aba96f5cedad5609463b96bc272da7 SHA512 d5957d7ca9718bf87621fb4200b5bbc4e1457fc7fda1500714fc88730a4dfd4dce81e386bd2a2f88e02aff16c46e35402421439e6393a5ad15848d26d9056b44 +DIST genpatches-6.6-54.base.tar.xz 2922380 BLAKE2B f65404127bb6547208aeddac1996a4a2659bd99ff7429bcaff28247a867c000e962457725eab80db2c76297f1e5c27806dc6fb23e31d5694b6df783e65995227 SHA512 102f721f87478ad18599bb5ff65cd236180dd3d9d058786a5306cb36be3f30a2d2ef684e83b6f458d4de78a196323e87d346eba704bfbce733010aed6ac3d7f9 +DIST genpatches-6.6-54.extras.tar.xz 4060 BLAKE2B 22ea7d143bfe168bc5d9d30832423bcd33b49c1b3b5ddf031000d7d9fce96f6fa0fb1d06fd33b27a5de9c9f3833a139557f0ed7408ef12b23568784ff38ca7a9 SHA512 1b1a229b5923e7f3426139b17608b5feae6061313f7aea66de23f09a54696def39bf4b384c4e884a3e5c758c08e04dcfe1ab7f2aa331db74b59f5e511c6f2c5b DIST linux-5.15.76_p20221104-raspberrypi.tar.gz 199660690 BLAKE2B 899714102e52904b7a37d155e42e94ed4b0e6c6600ac40fbd3cf66d15f84bb6d06afa7acf5c9624f44e9888d03d101823b419547d7ad8e566b4e55aaa077f11b SHA512 648262937e0afdb331678e0b2f913ad22788f1373f9ecd0d495e748a78399d6a69e93024268e1c0567acb4b1c9242b3ca6bd060e73b91a77529a93e4e29181c6 DIST linux-5.15.84_p20230106-raspberrypi.tar.gz 199714807 BLAKE2B f3579d4b16921141055c0a62787084d2fb7db057bf9205c45e4a6515969bd3136a0dfe08c26848e691a5ea74d1f23533e4352c8fe70edf4b7000785958caf6ea SHA512 97ed02f35b42f144db72f802339f4952148596e3e5a0725fedd7a57618c1695cb802d58f6183e257ebfd242d35bf69f1eefea78ab9df109f6158af713d7d5f30 DIST linux-6.1.21_p20230405-raspberrypi.tar.gz 221783059 BLAKE2B 5e9e13b6410df1b9e4bcdef85a6b33de83621a74d89bb6760dcff86cd736262513f613e9279a8dccf5ca306a807c16652084a3e6b4cb34c3658a8e9e3196c5d1 SHA512 0c8252833bb737977c0981ed48764ff9742de7cb494fefec532c90312e0d8e0e48a230dd14a0d6f99b54b015e6c91e647b579f2ef7408b80e349a547767d9925 DIST linux-6.6.31_p20240529-raspberrypi.tar.gz 230924637 BLAKE2B bf8e5aba5597e98279b1c9d007112f57175c7cab15acbd2e9a7151f6290d3f1bee10299344b2655ade3cf2c73035b8f6e7fc9071d182a4c4ab839937fb0b59ef SHA512 3eb710dab82783a5254169e5bc2ac59fe4d3bd0fffbfd7a119a6182767b48186f4505d551fd7cc9ff002abf957e82108242d5a101266f77146d514fe3116fea5 +DIST linux-6.6.47_p20240802-raspberrypi.tar.gz 231225067 BLAKE2B a7848290848f33ab8ae39364c6b5895f45ae82e9a72f60b8471522c8f8bf04627b3abab26e7c1ed10c12b6621d0490d10a6cbc455013dfc8b1296d35b7230998 SHA512 98c033c3f3440c26d97d17855b6057f41d633f0d7d5d22af32feec49f12fcec4181497ec97ac78ce96eb4e601a1fd400c832acf6e148da3cad419cdfc2587382 diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240802.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240802.ebuild new file mode 100644 index ..4a0934927cd2 --- /dev/null +++ b/sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240802.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ETYPE=sources +K_DEFCONFIG="bcmrpi_defconfig" +K_SECURITY_UNSUPPORTED=1 +EXTRAVERSION="-${PN}/-*" + +K_EXP_GENPATCHES_NOUSE=1 +K_GENPATCHES_VER=54 +K_DEBLOB_AVAILABLE=0 +K_WANT_GENPATCHES="base extras" + +inherit kernel-2 linux-info +detect_version +detect_arch + +#MY_P=$(ver_cut 4-) +#MY_P="stable_${MY_P
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/
commit: e7cceed1da654effb386f93e52dd703946149884 Author: Viorel Munteanu gentoo org> AuthorDate: Tue Sep 3 14:27:07 2024 + Commit: Viorel Munteanu gentoo org> CommitDate: Tue Sep 3 17:22:11 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cceed1 sys-kernel/raspberrypi-image: add 6.6.47_p20240902 Signed-off-by: Viorel Munteanu gentoo.org> sys-kernel/raspberrypi-image/Manifest | 1 + .../raspberrypi-image-6.6.47_p20240902.ebuild | 66 ++ 2 files changed, 67 insertions(+) diff --git a/sys-kernel/raspberrypi-image/Manifest b/sys-kernel/raspberrypi-image/Manifest index 83d4e4c444d1..a54a5488e885 100644 --- a/sys-kernel/raspberrypi-image/Manifest +++ b/sys-kernel/raspberrypi-image/Manifest @@ -7,4 +7,5 @@ DIST raspberrypi-firmware-1.20220331.tar.gz 195722349 BLAKE2B 7f2748bba0cd255921 DIST raspberrypi-firmware-1.20230405.tar.gz 187674867 BLAKE2B 8f35b2dd906cd2459c83c3cec2ba10e8388afa35213f80bd3fd7a5ba7061c7ad0f9db5a5c39ab476f8a2b4754cf80665c2dff54f7ae61edf3c85d91ae37f9f9f SHA512 ddc9baeba4e2e442bfe41e427c7ecdd38ee6d44ac4e7c297ae7d5a6c64b0aa1a81206929baeb9aceb74de6f96707b30040e82450ef4f01a78b958299c72e3857 DIST raspberrypi-firmware-1.20240424.tar.gz 153632287 BLAKE2B 7718d26ee66751484edd359412bc186d7ef5e68af97abe814b340b4c21fb4d6f7abc2caa8c7d0ec62ac742a9c932a08b4393d32d4ba79480c9648d742bead0b8 SHA512 90ad6872886f3efb004b57e258ba8ec0ef0bf619e251e2f0d259c22ef9cb816f6b0f2d5fb1f3a0ece13bf69fecfe8fe70793b90ea243163b5a585930e554e3d5 DIST raspberrypi-firmware-1.20240529.tar.gz 153776579 BLAKE2B 8348429940056600e9c1a3f63d2575fc285ef379ad1663460620d1b9fb65ef1b32d789a0b525903de90e5ec9886b173c7e3692a87c4ee3c9904c88c1bf85b071 SHA512 1b127924960efe8430250fae7a496805e4285d1b72b180a829be6d5eee6be2ecf325bdf9c81f9806ef9aae0adeb5e8832197e79c281754b87028fcdfe1b0961b +DIST raspberrypi-firmware-1.20240902.tar.gz 154483648 BLAKE2B e3d9fabb23246d90948004dde37f2125779a86aa62737b51b03cacea13d1ca715724587b0da106efba19c80a1bafcf1537101ce13ba4374602ca9e4957c81f87 SHA512 b5b1a74e1e9f9760fd19f98a35505b2e127e212c17afbdf08e1b92198f32de73655fb24c16d662318ccf50621ae5e1a6ed5aa877d2d1cc654d26b8ff168c1e82 DIST raspberrypi-image-4.14.98_p20190215.tar.gz 123074917 BLAKE2B cefedb5c979db7dfd47938aad37a567d91d3ad78247c7a63f789362768ab7a39a1967ac116b4b0475e3b210ab11f6474706df042af85a622e8e7905c85ec7498 SHA512 082f26caf427222d838881e5f1e9fa0136765b3eaf74a84877fc33616fd07e49085db0889226c40c655039a9d41a10566510c7d752cfc48a67b4683616a51193 diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-6.6.47_p20240902.ebuild b/sys-kernel/raspberrypi-image/raspberrypi-image-6.6.47_p20240902.ebuild new file mode 100644 index ..8a8a4752bce4 --- /dev/null +++ b/sys-kernel/raspberrypi-image/raspberrypi-image-6.6.47_p20240902.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit mount-boot + +# Go to e.g. https://github.com/raspberrypi/firmware/tree/1.20211029/modules +# for the latest tag to see which kernel version it corresponds to. + +DESCRIPTION="Raspberry Pi (all versions) kernel and modules" +HOMEPAGE="https://github.com/raspberrypi/firmware"; +if [[ ${PV} == ]]; then + EGIT_REPO_URI="https://github.com/raspberrypi/firmware"; + EGIT_CLONE_TYPE="shallow" + inherit git-r3 +else + [[ $(ver_cut 4) == p ]] || die "Unsupported version format, tweak the ebuild." + MY_PV="1.$(ver_cut 5)" + + SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV}.tar.gz -> raspberrypi-firmware-${MY_PV}.tar.gz" + S="${WORKDIR}/firmware-${MY_PV}" + KEYWORDS="-* ~arm ~arm64" +fi + +LICENSE="GPL-2 raspberrypi-videocore-bin" +SLOT="0" +RESTRICT="binchecks strip" + +# Temporary safety measure to prevent ending up with a pair of +# sys-kernel/raspberrypi-image and sys-boot/raspberrypi-firmware +# both of which installed device tree files. +# Restore to simply "sys-boot/raspberrypi-firmware" when the mentioned version +# and all older ones are deleted. +RDEPEND=">sys-boot/raspberrypi-firmware-1.20190709" + +src_prepare() { + default + + local expected_kernel_version="$(ver_cut 1-3)+" + local found_kernel_version=( "${S}"/modules/$(ver_cut 1).*.*+ ) + + found_kernel_version=${found_kernel_version[0]} + found_kernel_version=${found_kernel_version##*/} + + if [[ ${expected_kernel_version} != ${found_kernel_version} ]] ; then + eerror "Expected kernel version: ${expected_kernel_version}" + eerror "Found kernel version: ${found_kernel_version}" + die "Please fix ebuild version to contain ${found_kernel_version}!" + fi + + if [[ ! -d "${S}"/modules/${expected_kernel_version} ]] ; then + eerror "Kernel module directory is missing!" + die "${S}/modules/${expected_kernel_version} not found!" +
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-sources/
commit: eb819a91f9c6b934ac8c707dd6e2e0194cf894c2 Author: Viorel Munteanu gentoo org> AuthorDate: Tue Sep 3 17:35:14 2024 + Commit: Viorel Munteanu gentoo org> CommitDate: Tue Sep 3 17:35:14 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb819a91 sys-kernel/raspberrypi-sources: add 6.6.47_p20240902, drop 6.6.47_p20240802 Fix typo in snapshot name. Signed-off-by: Viorel Munteanu gentoo.org> sys-kernel/raspberrypi-sources/Manifest | 2 +- 47_p20240802.ebuild => raspberrypi-sources-6.6.47_p20240902.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-kernel/raspberrypi-sources/Manifest b/sys-kernel/raspberrypi-sources/Manifest index 48139140027f..cdf24fdfbc28 100644 --- a/sys-kernel/raspberrypi-sources/Manifest +++ b/sys-kernel/raspberrypi-sources/Manifest @@ -10,4 +10,4 @@ DIST linux-5.15.76_p20221104-raspberrypi.tar.gz 199660690 BLAKE2B 899714102e5290 DIST linux-5.15.84_p20230106-raspberrypi.tar.gz 199714807 BLAKE2B f3579d4b16921141055c0a62787084d2fb7db057bf9205c45e4a6515969bd3136a0dfe08c26848e691a5ea74d1f23533e4352c8fe70edf4b7000785958caf6ea SHA512 97ed02f35b42f144db72f802339f4952148596e3e5a0725fedd7a57618c1695cb802d58f6183e257ebfd242d35bf69f1eefea78ab9df109f6158af713d7d5f30 DIST linux-6.1.21_p20230405-raspberrypi.tar.gz 221783059 BLAKE2B 5e9e13b6410df1b9e4bcdef85a6b33de83621a74d89bb6760dcff86cd736262513f613e9279a8dccf5ca306a807c16652084a3e6b4cb34c3658a8e9e3196c5d1 SHA512 0c8252833bb737977c0981ed48764ff9742de7cb494fefec532c90312e0d8e0e48a230dd14a0d6f99b54b015e6c91e647b579f2ef7408b80e349a547767d9925 DIST linux-6.6.31_p20240529-raspberrypi.tar.gz 230924637 BLAKE2B bf8e5aba5597e98279b1c9d007112f57175c7cab15acbd2e9a7151f6290d3f1bee10299344b2655ade3cf2c73035b8f6e7fc9071d182a4c4ab839937fb0b59ef SHA512 3eb710dab82783a5254169e5bc2ac59fe4d3bd0fffbfd7a119a6182767b48186f4505d551fd7cc9ff002abf957e82108242d5a101266f77146d514fe3116fea5 -DIST linux-6.6.47_p20240802-raspberrypi.tar.gz 231225067 BLAKE2B a7848290848f33ab8ae39364c6b5895f45ae82e9a72f60b8471522c8f8bf04627b3abab26e7c1ed10c12b6621d0490d10a6cbc455013dfc8b1296d35b7230998 SHA512 98c033c3f3440c26d97d17855b6057f41d633f0d7d5d22af32feec49f12fcec4181497ec97ac78ce96eb4e601a1fd400c832acf6e148da3cad419cdfc2587382 +DIST linux-6.6.47_p20240902-raspberrypi.tar.gz 231225067 BLAKE2B a7848290848f33ab8ae39364c6b5895f45ae82e9a72f60b8471522c8f8bf04627b3abab26e7c1ed10c12b6621d0490d10a6cbc455013dfc8b1296d35b7230998 SHA512 98c033c3f3440c26d97d17855b6057f41d633f0d7d5d22af32feec49f12fcec4181497ec97ac78ce96eb4e601a1fd400c832acf6e148da3cad419cdfc2587382 diff --git a/sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240802.ebuild b/sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240902.ebuild similarity index 100% rename from sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240802.ebuild rename to sys-kernel/raspberrypi-sources/raspberrypi-sources-6.6.47_p20240902.ebuild
[gentoo-commits] repo/gentoo:master commit in: app-misc/esekeyd/
commit: 8cbb30403edf46f1f700b6fec5a465c82b3c97ab Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 17:26:55 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 17:44:55 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cbb3040 app-misc/esekeyd: drop 1.2.7 Signed-off-by: Petr Vaněk gentoo.org> app-misc/esekeyd/Manifest | 1 - app-misc/esekeyd/esekeyd-1.2.7.ebuild | 14 -- 2 files changed, 15 deletions(-) diff --git a/app-misc/esekeyd/Manifest b/app-misc/esekeyd/Manifest index 2cbe0e028984..9bc100bf39f5 100644 --- a/app-misc/esekeyd/Manifest +++ b/app-misc/esekeyd/Manifest @@ -1,2 +1 @@ DIST esekeyd-1.2.7.gh.tar.gz 10623 BLAKE2B 599813e046ddbd69c218dc823c760c3598d3f1ef0411e953f7c64adc00846b63912fc143baeca8acd9d4631e99e7fac79246309af06dce6bd852c3124604908e SHA512 cc6d227ee5138b4bbc6affcf5214c7233d9245532d69233afe2322121b04428e0708c923bea8db358fe5e0bd4a6b9d6f67f3dbd8fafd0accdff8508600929b0d -DIST esekeyd-1.2.7.tar.gz 104502 BLAKE2B d8060837e533c5c3fda11dc3a2d67f3010b820035d1f1a794c296a132f3dde3c17fe132257b996532ae6caa57fe2150c370aa71d03c2e48b9a88568498144769 SHA512 dc15623e0ffdd4cc7f3834b2becabf54ce61ea5190fd44734b2aa426db3d936cb5e3caada82357d6ed41db6eba41e9f792e453e2bb93c0fe62d87ac29651c89a diff --git a/app-misc/esekeyd/esekeyd-1.2.7.ebuild b/app-misc/esekeyd/esekeyd-1.2.7.ebuild deleted file mode 100644 index ba1cc0bce966.. --- a/app-misc/esekeyd/esekeyd-1.2.7.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Multimedia key daemon that uses the Linux event interface" -HOMEPAGE="http://freshmeat.net/projects/esekeyd/"; -SRC_URI="http://www.burghardt.pl/files/${P}.tar.gz"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc x86" - -DOCS=( AUTHORS ChangeLog examples/example.conf NEWS README TODO )
[gentoo-commits] repo/gentoo:master commit in: app-misc/hello/
commit: b6e89f96d893330638b9ed2837bb62aa648250c6 Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 17:38:31 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 17:44:58 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6e89f96 app-misc/hello: drop 2.10-r1 Signed-off-by: Petr Vaněk gentoo.org> app-misc/hello/Manifest | 1 - app-misc/hello/hello-2.10-r1.ebuild | 19 --- 2 files changed, 20 deletions(-) diff --git a/app-misc/hello/Manifest b/app-misc/hello/Manifest index e5170c726a7c..0c69109c8e9f 100644 --- a/app-misc/hello/Manifest +++ b/app-misc/hello/Manifest @@ -1,2 +1 @@ -DIST hello-2.10.tar.gz 725946 BLAKE2B 0af5a3890191dff6e570e2297c20f72c8d0598cadfc2b291e2fe3612e73f7eca48b3b63032c883f11a8a5764c757625c4a736904d756d451ad0516578040290f SHA512 e301d785135c52575a8b4c35994c0316f8d366451f604eb5e74c1f907077502aebd5a1a32cd1e26cd7ca32c22f4de5623a335f8ae7e735ac977420df664f01de DIST hello-2.11.tar.gz 1018256 BLAKE2B 6e06e4a3a113fc24bca056197ba004fd97b2076bb2f5d660f337782c9a982a0d80e265e7e1dc22f3467257eab071fe5e252a020234839f30ce767ae5d5ee7a3b SHA512 9b1defc1dd7b6a989d3f64a1cb1c6f47276192d7bacf11282ae8683606eb613473c882c1a5e74c18d641f46584f0735981597a45ae4eb37830a5b4d955e3aec7 diff --git a/app-misc/hello/hello-2.10-r1.ebuild b/app-misc/hello/hello-2.10-r1.ebuild deleted file mode 100644 index 933565e40f5f.. --- a/app-misc/hello/hello-2.10-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -DESCRIPTION="GNU \"Hello, world\" application" -HOMEPAGE="https://www.gnu.org/software/hello/"; -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="FDL-1.3+ GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="nls" - -DOCS=(AUTHORS ChangeLog ChangeLog.O NEWS README THANKS TODO contrib/evolution.txt) - -src_configure() { - econf $(use_enable nls) -}
[gentoo-commits] repo/gentoo:master commit in: app-misc/evtest/files/, app-misc/evtest/
commit: 556700ba66a0d2911beaa1a20d9c70d3ba0e69cb Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 17:31:57 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 17:44:56 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556700ba app-misc/evtest: drop 1.33, 1.34 Signed-off-by: Petr Vaněk gentoo.org> app-misc/evtest/Manifest | 2 -- app-misc/evtest/evtest-1.33.ebuild | 26 --- app-misc/evtest/evtest-1.34.ebuild | 29 -- .../evtest/files/evtest-1.34-musl-include.patch| 26 --- 4 files changed, 83 deletions(-) diff --git a/app-misc/evtest/Manifest b/app-misc/evtest/Manifest index 18ab103af7b4..875c6ad0c19c 100644 --- a/app-misc/evtest/Manifest +++ b/app-misc/evtest/Manifest @@ -1,3 +1 @@ -DIST evtest-1.33.tar.gz 19736 BLAKE2B 1b36207f67fe7db12bbe8d8db119f1cd4a9adc34b839762b198c29044a36e6fe9e8275d68a27204de4d287d1f12bde43f3895003fba9403a443189fe289decb2 SHA512 e8d6b76a2256ca6085ec07a66af913873ec5bc196bea87bca4f9b3e8b3222b34fcf636572383df74940b9b5db4a07f3e0be3ffe1454c605520da0c56f38506c3 -DIST evtest-1.34.tar.gz 19954 BLAKE2B 17ca600e89070d65f2bb95b468b921278ab63e50aa6042a974e8d4ac214b51355423c910bb0911e16a6bfc27e9fce59159719aae7d280679e7b292d02a2ee955 SHA512 5b4a18f13b86b1e2f5f723f6abb18c0a50d7f96b4412f46f503895c7ea8701a67a3237701de367c6b789533d8de887baa8f8f8e7e2fc4611235408ae21021b38 DIST evtest-evtest-1.35.tar.bz2 18686 BLAKE2B b2f747fab1f47c425133fc60697448972351e22d3ae606d3c548ead4e53f359eb1cebd2ec555afb678785670bddf3ff55d13b47f3160d4a49ff9ee496f041099 SHA512 d9ec506ad326af7749bdf9e92bf96af7eee29ef9ced645a12f99453019f6c072e2a84d67f59cc6014d27f0e4e53c3e517de1c5302b0789eaaf8ad9ca3c824282 diff --git a/app-misc/evtest/evtest-1.33.ebuild b/app-misc/evtest/evtest-1.33.ebuild deleted file mode 100644 index 72db60e48298.. --- a/app-misc/evtest/evtest-1.33.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="test program for capturing input device events" -HOMEPAGE="https://gitlab.freedesktop.org/libevdev/evtest"; -SRC_URI="https://cgit.freedesktop.org/evtest/snapshot/${PN}-${P}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86" - -BDEPEND="virtual/pkgconfig" - -DEPEND="app-text/asciidoc - app-text/xmlto" - -S="${WORKDIR}/${PN}-${P}" - -src_prepare() { - default - eautoreconf -} diff --git a/app-misc/evtest/evtest-1.34.ebuild b/app-misc/evtest/evtest-1.34.ebuild deleted file mode 100644 index cc42aacb9119.. --- a/app-misc/evtest/evtest-1.34.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="test program for capturing input device events" -HOMEPAGE="https://gitlab.freedesktop.org/libevdev/evtest"; -SRC_URI="https://cgit.freedesktop.org/evtest/snapshot/${PN}-${P}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86" - -BDEPEND="app-text/asciidoc - app-text/xmlto - virtual/pkgconfig" - -S="${WORKDIR}/${PN}-${P}" - -PATCHES=( - "${FILESDIR}"/${P}-musl-include.patch -) - -src_prepare() { - default - eautoreconf -} diff --git a/app-misc/evtest/files/evtest-1.34-musl-include.patch b/app-misc/evtest/files/evtest-1.34-musl-include.patch deleted file mode 100644 index 7bf7f044c684.. --- a/app-misc/evtest/files/evtest-1.34-musl-include.patch +++ /dev/null @@ -1,26 +0,0 @@ -https://bugs.gentoo.org/716876 -https://cgit.freedesktop.org/evtest/commit/?id=049396aab18849eef257af1116951a83416339e6 - -From: Mateusz Piotrowski <0...@freebsd.org> -Date: Fri, 13 Nov 2020 13:41:41 +0100 -Subject: Remove PATH_MAX - -This makes evtest more portable. We could try to use ifdefs to include -sys/syslimits.h on FreeBSD to get PATH_MAX but it feels to be an -overkill for evtest. Let's keep it simple as just replace PATH_MAX with -4096. - -NB: it's fine to leave linux/input.h there, because this header is -actually available on FreeBSD via the devel/evdev-proto port. a/evtest.c -+++ b/evtest.c -@@ -888,7 +888,7 @@ static char* scan_devices(void) - - for (i = 0; i < ndev; i++) - { -- char fname[PATH_MAX]; -+ char fname[4096]; - int fd = -1; - char name[256] = "???"; - -cgit v1.2.1
[gentoo-commits] repo/gentoo:master commit in: app-misc/ddccontrol/
commit: 6f861c999d11fc5c87a247d1c3983ed303a5209d Author: Petr Vaněk gentoo org> AuthorDate: Tue Sep 3 17:23:41 2024 + Commit: Petr Vaněk gentoo org> CommitDate: Tue Sep 3 17:44:52 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f861c99 app-misc/ddccontrol: drop 0.6.1 Signed-off-by: Petr Vaněk gentoo.org> app-misc/ddccontrol/Manifest| 1 - app-misc/ddccontrol/ddccontrol-0.6.1.ebuild | 89 - 2 files changed, 90 deletions(-) diff --git a/app-misc/ddccontrol/Manifest b/app-misc/ddccontrol/Manifest index b4981f59079b..8ce6375b654e 100644 --- a/app-misc/ddccontrol/Manifest +++ b/app-misc/ddccontrol/Manifest @@ -1,2 +1 @@ -DIST ddccontrol-0.6.1.tar.gz 180407 BLAKE2B fba90502925320f3eb20e71498456e8b1135af9d67a78a74ec7b28d3d49a2841fcb77806a983c4231e8e97d07ef7fdf29b36145316f130ed8a529ef39ed4d104 SHA512 abc8940dcd651c25e1030bd4f5ae59774cfa08b22352a653140ec924cbcaa93855473385575636ec0cd51ea5f1871e2331ade592846eafddb7eae99f55ff1164 DIST ddccontrol-1.0.3.tar.gz 175621 BLAKE2B f3a2f477f1e2553da0069da020fa49e06ab4be5d13f2c238fa0e4e800d7632490ed91e3f3fcb234b90bdff9ea03a0a8c32613153ae45ff450b4bac4ff568e96b SHA512 5e49217c8560245d53d5a2dc71cda5683698e798bd1f75ca69e445b68b33d2fb826ff05dced1c0a40f2baf8fd26396c78d1c1bf6f95f30287da6d5b149bb98e2 diff --git a/app-misc/ddccontrol/ddccontrol-0.6.1.ebuild b/app-misc/ddccontrol/ddccontrol-0.6.1.ebuild deleted file mode 100644 index 5324da6ba848.. --- a/app-misc/ddccontrol/ddccontrol-0.6.1.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Control monitor parameters, like brightness, contrast, RGB color levels via DDC" -HOMEPAGE="https://github.com/ddccontrol/ddccontrol/"; -SRC_URI="https://github.com/ddccontrol/ddccontrol/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc gtk nls +pci static-libs" - -# Upstream doesn't seem to care about tests: failures for lack of translations, -# and no real test targets. -RESTRICT='test' - -RDEPEND="app-misc/ddccontrol-db - dev-libs/glib:2 - dev-libs/libxml2:2 - app-arch/xz-utils - gtk? ( - dev-libs/atk - media-libs/fontconfig - media-libs/freetype - media-libs/harfbuzz:= - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2 - x11-libs/pango - ) - pci? ( sys-apps/pciutils )" -DEPEND="${RDEPEND}" -BDEPEND="dev-perl/XML-Parser - dev-util/gdbus-codegen - dev-util/intltool - sys-kernel/linux-headers - doc? ( - >=app-text/docbook-xsl-stylesheets-1.65.1 - app-text/htmltidy - >=dev-libs/libxslt-1.1.6 - ) - nls? ( sys-devel/gettext )" - -src_prepare() { - # ppc/ppc64 do not have inb/outb/ioperm - # they also do not have (sys|asm)/io.h - if ! use amd64 && ! use x86 ; then - local card - for card in sis intel810 ; do - sed -r -i \ - -e "/${card}.Po/d" \ - -e "s~${card}[^[:space:]]*~ ~g" \ - src/ddcpci/Makefile.{am,ini} || die - done - sed -i \ - -e '/sis_/d' \ - -e '/i810_/d' \ - src/ddcpci/main.c || die - fi - - default - - ## Save for a rainy day or future patching - touch config.rpath ABOUT-NLS - eautoreconf - intltoolize --force || die "intltoolize failed" -} - -src_configure() { - # amdadl broken, bug #527268 - econf \ - --htmldir='$(datarootdir)'/doc/${PF}/html \ - --disable-gnome-applet \ - --disable-amdadl \ - $(use_enable doc) \ - $(use_enable gtk gnome) \ - $(use_enable nls) \ - $(use_enable pci ddcpci) \ - $(use_enable static-libs static) -} - -src_install() { - default - use static-libs || find "${ED}" -name '*.la' -delete -}