* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2021-07-29 12:08 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2021-07-29 12:08 UTC (permalink / raw
To: gentoo-commits
commit: 82c1657e6087a9ec05c52ca98a220b2c089f000f
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 29 12:08:48 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jul 29 12:08:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c1657e
app-crypt/yubioath-desktop: initial import
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-crypt/yubioath-desktop/Manifest | 1 +
app-crypt/yubioath-desktop/metadata.xml | 8 ++++
.../yubioath-desktop/yubioath-desktop-5.0.5.ebuild | 52 ++++++++++++++++++++++
3 files changed, 61 insertions(+)
diff --git a/app-crypt/yubioath-desktop/Manifest b/app-crypt/yubioath-desktop/Manifest
new file mode 100644
index 00000000000..79259f2181a
--- /dev/null
+++ b/app-crypt/yubioath-desktop/Manifest
@@ -0,0 +1 @@
+DIST yubioath-desktop-5.0.5.tar.gz 5659179 BLAKE2B 31dd1a7e9b8a5034e916f38c7893572b6b7e75fa0bc45b5b807c89010ac0e4a01a446f03d1591dd6323a015fc8fb17861fa60dc5a5e4eff40b5261fb6e3f7088 SHA512 b5a0df306916896e1fd84d6a794a43365b0e0a2cecd97ec1dacc6312507dd2e4dd55fc12b0de9d72d1d0a1b40625330373b7c74dacb2ec37a24ea3e1fd2d4ff7
diff --git a/app-crypt/yubioath-desktop/metadata.xml b/app-crypt/yubioath-desktop/metadata.xml
new file mode 100644
index 00000000000..70f78a5392d
--- /dev/null
+++ b/app-crypt/yubioath-desktop/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>soap@gentoo.org</email>
+ <name>David Seifert</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
new file mode 100644
index 00000000000..67898ac59b2
--- /dev/null
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit desktop python-single-r1 qmake-utils xdg
+
+DESCRIPTION="Library and tool for personalization of Yubico's YubiKey NEO"
+HOMEPAGE="
+ https://developers.yubico.com/yubioath-desktop/
+ https://github.com/Yubico/yubioath-desktop"
+SRC_URI="https://github.com/Yubico/yubioath-desktop/archive/${P}.tar.gz"
+S="${WORKDIR}/${PN}-${P}"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtquickcontrols2:5
+ dev-qt/qtdeclarative:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ x11-libs/libdrm"
+RDEPEND="${DEPEND}
+ $(python_gen_cond_dep '>=app-crypt/yubikey-manager-4.0.0[${PYTHON_USEDEP}]')
+ dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]"
+
+src_prepare() {
+ default
+ sed -i \
+ -e "s:python build_qrc.py:${PYTHON} build_qrc.py:" \
+ yubioath-desktop.pro || die
+
+ python_fix_shebang "${S}"
+}
+
+src_configure() {
+ eqmake5 yubioath-desktop.pro
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+
+ domenu resources/com.yubico.yubioath.desktop
+ doicon resources/icons/com.yubico.yubioath.png
+ doicon -s scalable resources/icons/com.yubico.yubioath.svg
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2021-07-29 15:05 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2021-07-29 15:05 UTC (permalink / raw
To: gentoo-commits
commit: 630c0a171c6be1ba2f22964d1b72b8c145276e65
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 29 15:05:35 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jul 29 15:05:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630c0a17
app-crypt/yubioath-desktop: fix missing python deps
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
index 67898ac59b2..7c9e0959879 100644
--- a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
@@ -17,8 +17,10 @@ S="${WORKDIR}/${PN}-${P}"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
+ ${PYTHON_DEPS}
dev-qt/qtcore:5
dev-qt/qtquickcontrols2:5
dev-qt/qtdeclarative:5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2021-08-11 16:07 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2021-08-11 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 43282be38e697a6049c71948ffdb125016b09861
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 16:06:40 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 16:07:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43282be3
app-crypt/yubioath-desktop: add self as co-maintainer
As discussed with Soap on IRC.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-crypt/yubioath-desktop/metadata.xml b/app-crypt/yubioath-desktop/metadata.xml
index 70f78a5392d..3b66fccf0eb 100644
--- a/app-crypt/yubioath-desktop/metadata.xml
+++ b/app-crypt/yubioath-desktop/metadata.xml
@@ -5,4 +5,8 @@
<email>soap@gentoo.org</email>
<name>David Seifert</name>
</maintainer>
+ <maintainer type="person">
+ <email>marecki@gentoo.org</email>
+ <name>Marek Szuba</name>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2021-09-10 8:56 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2021-09-10 8:56 UTC (permalink / raw
To: gentoo-commits
commit: e40a7a88e8c87b0c48a55cdc64eb994aa4af7f92
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 10 08:40:58 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Sep 10 08:56:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40a7a88
app-crypt/yubioath-desktop: keyword 5.0.5 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
index 7c9e0959879..aa669dbe591 100644
--- a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${P}"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2021-11-11 20:15 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2021-11-11 20:15 UTC (permalink / raw
To: gentoo-commits
commit: c9c0e2920b970b5cd69d1204efdb34344c8d8ffb
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 11 16:53:22 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Nov 11 20:15:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c0e292
app-crypt/yubioath-desktop: add 5.1.0
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/Manifest | 1 +
.../yubioath-desktop/yubioath-desktop-5.1.0.ebuild | 56 ++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/app-crypt/yubioath-desktop/Manifest b/app-crypt/yubioath-desktop/Manifest
index 79259f2181a..e37919968b5 100644
--- a/app-crypt/yubioath-desktop/Manifest
+++ b/app-crypt/yubioath-desktop/Manifest
@@ -1 +1,2 @@
DIST yubioath-desktop-5.0.5.tar.gz 5659179 BLAKE2B 31dd1a7e9b8a5034e916f38c7893572b6b7e75fa0bc45b5b807c89010ac0e4a01a446f03d1591dd6323a015fc8fb17861fa60dc5a5e4eff40b5261fb6e3f7088 SHA512 b5a0df306916896e1fd84d6a794a43365b0e0a2cecd97ec1dacc6312507dd2e4dd55fc12b0de9d72d1d0a1b40625330373b7c74dacb2ec37a24ea3e1fd2d4ff7
+DIST yubioath-desktop-5.1.0.tar.gz 6322224 BLAKE2B e1fc93bd38af3c6937f390c738248e43dbd17052df5103a0e25547adf7b34eca60ed8b45c9681568202d01802a5d8503cf2a5bf53d57c7c18ee2ee53cecd8d51 SHA512 152e27fca3c082c996c96fb05ed66781a52a47f30d8c5649d43937cf87c566f09c1fcb6afd65402b5f7fbe2a1f71872f10c8b456bd8a9b240c360018defd48c9
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0.ebuild
new file mode 100644
index 00000000000..e2f85896c57
--- /dev/null
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit desktop python-single-r1 qmake-utils xdg
+
+DESCRIPTION="Library and tool for personalization of Yubico's YubiKey NEO"
+HOMEPAGE="
+ https://developers.yubico.com/yubioath-desktop/
+ https://github.com/Yubico/yubioath-desktop"
+SRC_URI="https://github.com/Yubico/yubioath-desktop/archive/${P}.tar.gz"
+S="${WORKDIR}/${PN}-${P}"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+ ${PYTHON_DEPS}
+ dev-qt/qtconcurrent:5
+ dev-qt/qtcore:5
+ dev-qt/qtquickcontrols2:5
+ dev-qt/qtdeclarative:5
+ dev-qt/qtmultimedia:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ x11-libs/libdrm"
+RDEPEND="${DEPEND}
+ $(python_gen_cond_dep '>=app-crypt/yubikey-manager-4.0.0[${PYTHON_USEDEP}]')
+ dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]"
+
+src_prepare() {
+ default
+ sed -i \
+ -e "s:python build_qrc.py:${PYTHON} build_qrc.py:" \
+ yubioath-desktop.pro || die
+
+ python_fix_shebang "${S}"
+}
+
+src_configure() {
+ eqmake5 yubioath-desktop.pro
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install
+
+ domenu resources/com.yubico.yubioath.desktop
+ doicon resources/icons/com.yubico.yubioath.png
+ doicon -s scalable resources/icons/com.yubico.yubioath.svg
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2022-01-20 21:21 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2022-01-20 21:21 UTC (permalink / raw
To: gentoo-commits
commit: 53ef040f13a9736eeb51e3c9ade7b87593e7d03d
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 20 21:21:13 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Jan 20 21:21:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ef040f
app-crypt/yubioath-desktop: drop 5.0.5
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/Manifest | 1 -
.../yubioath-desktop/yubioath-desktop-5.0.5.ebuild | 54 ----------------------
2 files changed, 55 deletions(-)
diff --git a/app-crypt/yubioath-desktop/Manifest b/app-crypt/yubioath-desktop/Manifest
index e37919968b57..a86044250f36 100644
--- a/app-crypt/yubioath-desktop/Manifest
+++ b/app-crypt/yubioath-desktop/Manifest
@@ -1,2 +1 @@
-DIST yubioath-desktop-5.0.5.tar.gz 5659179 BLAKE2B 31dd1a7e9b8a5034e916f38c7893572b6b7e75fa0bc45b5b807c89010ac0e4a01a446f03d1591dd6323a015fc8fb17861fa60dc5a5e4eff40b5261fb6e3f7088 SHA512 b5a0df306916896e1fd84d6a794a43365b0e0a2cecd97ec1dacc6312507dd2e4dd55fc12b0de9d72d1d0a1b40625330373b7c74dacb2ec37a24ea3e1fd2d4ff7
DIST yubioath-desktop-5.1.0.tar.gz 6322224 BLAKE2B e1fc93bd38af3c6937f390c738248e43dbd17052df5103a0e25547adf7b34eca60ed8b45c9681568202d01802a5d8503cf2a5bf53d57c7c18ee2ee53cecd8d51 SHA512 152e27fca3c082c996c96fb05ed66781a52a47f30d8c5649d43937cf87c566f09c1fcb6afd65402b5f7fbe2a1f71872f10c8b456bd8a9b240c360018defd48c9
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
deleted file mode 100644
index aa669dbe591a..000000000000
--- a/app-crypt/yubioath-desktop/yubioath-desktop-5.0.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit desktop python-single-r1 qmake-utils xdg
-
-DESCRIPTION="Library and tool for personalization of Yubico's YubiKey NEO"
-HOMEPAGE="
- https://developers.yubico.com/yubioath-desktop/
- https://github.com/Yubico/yubioath-desktop"
-SRC_URI="https://github.com/Yubico/yubioath-desktop/archive/${P}.tar.gz"
-S="${WORKDIR}/${PN}-${P}"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
- ${PYTHON_DEPS}
- dev-qt/qtcore:5
- dev-qt/qtquickcontrols2:5
- dev-qt/qtdeclarative:5
- dev-qt/qtwidgets:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- x11-libs/libdrm"
-RDEPEND="${DEPEND}
- $(python_gen_cond_dep '>=app-crypt/yubikey-manager-4.0.0[${PYTHON_USEDEP}]')
- dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]"
-
-src_prepare() {
- default
- sed -i \
- -e "s:python build_qrc.py:${PYTHON} build_qrc.py:" \
- yubioath-desktop.pro || die
-
- python_fix_shebang "${S}"
-}
-
-src_configure() {
- eqmake5 yubioath-desktop.pro
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-
- domenu resources/com.yubico.yubioath.desktop
- doicon resources/icons/com.yubico.yubioath.png
- doicon -s scalable resources/icons/com.yubico.yubioath.svg
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2022-11-14 11:06 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2022-11-14 11:06 UTC (permalink / raw
To: gentoo-commits
commit: a7d974a6f8c7d904bcf39fbe3f88273098086e86
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 09:21:10 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 11:05:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7d974a6
app-crypt/yubioath-desktop: block >=app-crypt/yubikey-manager-5.0.0
Does not and will not work on this major branch, see
https://github.com/Yubico/yubikey-manager/issues/523#issuecomment-1285985218
Closes: https://bugs.gentoo.org/881159
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
...oath-desktop-5.1.0-r2.ebuild => yubioath-desktop-5.1.0-r3.ebuild} | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r2.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
similarity index 90%
rename from app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r2.ebuild
rename to app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
index 4c36fdb3a992..cf6768da262e 100644
--- a/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r2.ebuild
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
@@ -31,7 +31,10 @@ DEPEND="
dev-qt/qtnetwork:5
x11-libs/libdrm"
RDEPEND="${DEPEND}
- $(python_gen_cond_dep '>=app-crypt/yubikey-manager-4.0.0[${PYTHON_USEDEP}]')
+ $(python_gen_cond_dep '
+ >=app-crypt/yubikey-manager-4.0.0[${PYTHON_USEDEP}]
+ <app-crypt/yubikey-manager-5.0.0[${PYTHON_USEDEP}]
+ ')
dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]"
PATCHES=(
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2023-02-27 12:45 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2023-02-27 12:45 UTC (permalink / raw
To: gentoo-commits
commit: 700d53522db4b5739b8278365eeab68d44ef0cfd
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 27 12:41:27 2023 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 12:45:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=700d5352
app-crypt/yubioath-desktop: add github upstream metadata
Sticking with the original repo name for now, for consistency with the
ebuilds and to make it absolutely clear this is not the Flutter rewrite.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/app-crypt/yubioath-desktop/metadata.xml b/app-crypt/yubioath-desktop/metadata.xml
index 1fad7916d280..e3ffb2c669e2 100644
--- a/app-crypt/yubioath-desktop/metadata.xml
+++ b/app-crypt/yubioath-desktop/metadata.xml
@@ -9,4 +9,7 @@
<email>marecki@gentoo.org</email>
<name>Marek Szuba</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">Yubico/yubioath-desktop</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/
@ 2023-02-27 12:45 Marek Szuba
0 siblings, 0 replies; 9+ messages in thread
From: Marek Szuba @ 2023-02-27 12:45 UTC (permalink / raw
To: gentoo-commits
commit: dcb4985601e1d119f3315d13de3a4a0433f8e636
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 27 12:16:41 2023 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 12:45:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb49856
app-crypt/yubioath-desktop: enable py3.11
Closes: https://bugs.gentoo.org/896518
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
index 0cf919d9712a..71795479f0b7 100644
--- a/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
+++ b/app-crypt/yubioath-desktop/yubioath-desktop-5.1.0-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
inherit desktop python-single-r1 qmake-utils xdg
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-02-27 12:45 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-10 8:56 [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubioath-desktop/ Marek Szuba
-- strict thread matches above, loose matches on Subject: below --
2023-02-27 12:45 Marek Szuba
2023-02-27 12:45 Marek Szuba
2022-11-14 11:06 Marek Szuba
2022-01-20 21:21 Marek Szuba
2021-11-11 20:15 Marek Szuba
2021-08-11 16:07 Marek Szuba
2021-07-29 15:05 David Seifert
2021-07-29 12:08 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox