From ee5caaa5885e26cd48f7fd6abda5c9a77632880c Mon Sep 17 00:00:00 2001 From: Daichi Yamamoto Date: Wed, 21 Feb 2024 17:48:40 +0900 Subject: [PATCH 1/5] dev-util/rye: fix tests Closes: https://bugs.gentoo.org/925134 Signed-off-by: Daichi Yamamoto --- dev-util/rye/rye-0.25.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-util/rye/rye-0.25.0.ebuild b/dev-util/rye/rye-0.25.0.ebuild index ccd289b08d..518a60f177 100644 --- a/dev-util/rye/rye-0.25.0.ebuild +++ b/dev-util/rye/rye-0.25.0.ebuild @@ -336,7 +336,10 @@ QA_FLAGS_IGNORED=".*" src_test() { local mytestargs=( - --skip utils::test_is_inside_git_work_tree::test_is_inside_git_work_tree_true + --skip test_is_inside_git_work_tree_true + --skip test_lint_and_format + --skip test_empty_sync + --skip test_add_and_sync ) cargo_src_test -- "${mytestargs[@]}" From 7e40f20b81425822fb7fdd789d5c69628cef306a Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 21 Feb 2024 09:56:29 +0100 Subject: [PATCH 2/5] gui-apps/intiface-central-bin: add 2.5.5 Signed-off-by: tastytea --- gui-apps/intiface-central-bin/Manifest | 1 + .../intiface-central-bin-2.5.5.ebuild | 48 +++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 gui-apps/intiface-central-bin/intiface-central-bin-2.5.5.ebuild diff --git a/gui-apps/intiface-central-bin/Manifest b/gui-apps/intiface-central-bin/Manifest index bdf6a3f8e4..b78bd035d7 100644 --- a/gui-apps/intiface-central-bin/Manifest +++ b/gui-apps/intiface-central-bin/Manifest @@ -1,2 +1,3 @@ DIST intiface-central-v2.5.0-linux-x64.zip 18691459 BLAKE2B 82580131220ddb6a498a887bc4c76c782681dc4a2b64845b654e186933d1f4eff9e2b967627e57e683f8488d1b57a7e252707fbd7ec24042426b15bcd13b1363 SHA512 219ae95723dab9c3e256060043119fbfcda23a37ba999110f9699c8d2d9e15d5099941b110893a465fbb6c42e573fd17030d7abf132e3cc7db5c76070b18b17c DIST intiface-central-v2.5.3-linux-ubuntu-22.04-x64.zip 19222068 BLAKE2B 05a2e33c5aeae2a839fcdbd5bc2fc5b58c8af0d985b962a158fd412bfbe60a5cd0cb350e62f6b76473a8ca6349579b610fe1702a2c8077bb8e54bd76e21a34ae SHA512 904bd8d24a8982aed7bfd510022081d077897e3900859556ff0a93b3c6f87757f20c84a65cb398595656f6f5ebc54655b7fd85b119491f5ddb0d962c8c9a470b +DIST intiface-central-v2.5.5-linux-ubuntu-22.04-x64.zip 39887250 BLAKE2B d854274adcac9d06ee412142908d77f6332f12178bfb45cd7895cba014d2227ae2a56220d553af2381029c9aa2c6c93634a9872fdfcc9aa6ec69def0fdcd0710 SHA512 81b4b604c417df1d6d5b4246207c2847eb861543e3722c79c72781a57aa7f1ffdbdbfa079741b9cb42ee98b33f7e36a0c6df7963d1b0eb9c52d0eb9ef6c49086 diff --git a/gui-apps/intiface-central-bin/intiface-central-bin-2.5.5.ebuild b/gui-apps/intiface-central-bin/intiface-central-bin-2.5.5.ebuild new file mode 100644 index 0000000000..8dccf7be9a --- /dev/null +++ b/gui-apps/intiface-central-bin/intiface-central-bin-2.5.5.ebuild @@ -0,0 +1,48 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop xdg + +DESCRIPTION="Buttplug frontend application" +HOMEPAGE="https://github.com/intiface/intiface-central" +SRC_URI="https://github.com/intiface/intiface-central/releases/download/v${PV}/intiface-central-v${PV}-linux-ubuntu-22.04-x64.zip" +S="${WORKDIR}/${PN/-bin/}-v${PV}-linux-ubuntu-22.04-x64" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-accessibility/at-spi2-core + media-gfx/graphite2 + sys-apps/dbus + sys-apps/systemd-utils + x11-libs/gtk+:3[X] + dev-libs/openssl:0/3 +" +BDEPEND="app-arch/unzip" + +QA_PREBUILT=" + opt/${PN}/lib/*.so + opt/${PN}/intiface_central +" + +src_install() { + insinto /opt/${PN} + doins -r . + fperms +x /opt/${PN}/intiface_central + + cat << EOF > intiface_central +#!/bin/sh +cd /opt/${PN} +./intiface_central "\${@}" +EOF + dobin intiface_central + + newicon --size 512 \ + data/flutter_assets/assets/icons/intiface_central_icon.png ${PN}.png + + make_desktop_entry intiface_central "Intiface Central" ${PN} "Utility" +} From 677b95a51a69d7465ec960414f45fc295728883d Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 21 Feb 2024 09:56:54 +0100 Subject: [PATCH 3/5] gui-apps/intiface-central-bin: drop 2.5.0 Signed-off-by: tastytea --- gui-apps/intiface-central-bin/Manifest | 1 - .../intiface-central-bin-2.5.0.ebuild | 48 ------------------- 2 files changed, 49 deletions(-) delete mode 100644 gui-apps/intiface-central-bin/intiface-central-bin-2.5.0.ebuild diff --git a/gui-apps/intiface-central-bin/Manifest b/gui-apps/intiface-central-bin/Manifest index b78bd035d7..868d059461 100644 --- a/gui-apps/intiface-central-bin/Manifest +++ b/gui-apps/intiface-central-bin/Manifest @@ -1,3 +1,2 @@ -DIST intiface-central-v2.5.0-linux-x64.zip 18691459 BLAKE2B 82580131220ddb6a498a887bc4c76c782681dc4a2b64845b654e186933d1f4eff9e2b967627e57e683f8488d1b57a7e252707fbd7ec24042426b15bcd13b1363 SHA512 219ae95723dab9c3e256060043119fbfcda23a37ba999110f9699c8d2d9e15d5099941b110893a465fbb6c42e573fd17030d7abf132e3cc7db5c76070b18b17c DIST intiface-central-v2.5.3-linux-ubuntu-22.04-x64.zip 19222068 BLAKE2B 05a2e33c5aeae2a839fcdbd5bc2fc5b58c8af0d985b962a158fd412bfbe60a5cd0cb350e62f6b76473a8ca6349579b610fe1702a2c8077bb8e54bd76e21a34ae SHA512 904bd8d24a8982aed7bfd510022081d077897e3900859556ff0a93b3c6f87757f20c84a65cb398595656f6f5ebc54655b7fd85b119491f5ddb0d962c8c9a470b DIST intiface-central-v2.5.5-linux-ubuntu-22.04-x64.zip 39887250 BLAKE2B d854274adcac9d06ee412142908d77f6332f12178bfb45cd7895cba014d2227ae2a56220d553af2381029c9aa2c6c93634a9872fdfcc9aa6ec69def0fdcd0710 SHA512 81b4b604c417df1d6d5b4246207c2847eb861543e3722c79c72781a57aa7f1ffdbdbfa079741b9cb42ee98b33f7e36a0c6df7963d1b0eb9c52d0eb9ef6c49086 diff --git a/gui-apps/intiface-central-bin/intiface-central-bin-2.5.0.ebuild b/gui-apps/intiface-central-bin/intiface-central-bin-2.5.0.ebuild deleted file mode 100644 index 5561775b83..0000000000 --- a/gui-apps/intiface-central-bin/intiface-central-bin-2.5.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop xdg - -DESCRIPTION="Buttplug frontend application" -HOMEPAGE="https://github.com/intiface/intiface-central" -SRC_URI="https://github.com/intiface/intiface-central/releases/download/v${PV}/intiface-central-v${PV}-linux-x64.zip" -S="${WORKDIR}/intiface_central_v${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - app-accessibility/at-spi2-core - media-gfx/graphite2 - sys-apps/dbus - sys-apps/systemd-utils - x11-libs/gtk+:3[X] - dev-libs/openssl:0/3 -" -BDEPEND="app-arch/unzip" - -QA_PREBUILT=" - opt/${PN}/lib/*.so - opt/${PN}/intiface_central -" - -src_install() { - insinto /opt/${PN} - doins -r . - fperms +x /opt/${PN}/intiface_central - - cat << EOF > intiface_central -#!/bin/sh -cd /opt/${PN} -./intiface_central "\${@}" -EOF - dobin intiface_central - - newicon --size 512 \ - data/flutter_assets/assets/icons/intiface_central_icon.png ${PN}.png - - make_desktop_entry intiface_central "Intiface Central" ${PN} "Utility" -} From 39d73433ffa02c655ff47c9affd76c9b126143bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?= Date: Wed, 21 Feb 2024 11:45:35 +0000 Subject: [PATCH 4/5] gui-apps/hypridle: update maintainers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gonçalo Negrier Duarte --- gui-apps/hypridle/metadata.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui-apps/hypridle/metadata.xml b/gui-apps/hypridle/metadata.xml index 87a14a4cbe..ff0faa4099 100644 --- a/gui-apps/hypridle/metadata.xml +++ b/gui-apps/hypridle/metadata.xml @@ -1,14 +1,14 @@ - - julien@jroy.ca - Julien Roy - gonegrier.duarte@gmail.com Gonçalo Negrier Duarte + + julien@jroy.ca + Julien Roy + https://github.com/hyprwm/hypridle/releases https://wiki.hyprland.org/Hypr-Ecosystem/hypridle/ From f0de236ce166c44d1dcd5402681809153134b6b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?= Date: Wed, 21 Feb 2024 11:46:02 +0000 Subject: [PATCH 5/5] gui-apps/hyprlock: update maintainers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gonçalo Negrier Duarte --- gui-apps/hyprlock/metadata.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui-apps/hyprlock/metadata.xml b/gui-apps/hyprlock/metadata.xml index a095a38dcc..0987899599 100644 --- a/gui-apps/hyprlock/metadata.xml +++ b/gui-apps/hyprlock/metadata.xml @@ -1,14 +1,14 @@ - - julien@jroy.ca - Julien Roy - gonegrier.duarte@gmail.com Gonçalo Negrier Duarte + + julien@jroy.ca + Julien Roy + https://github.com/hyprwm/hyrlock/releases https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/