public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2020-12-30 17:09 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2020-12-30 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     5386c8bec8b88ba48576cd75178ece07098f2099
Author:     Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
AuthorDate: Wed Dec 30 11:52:12 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Dec 30 11:52:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5386c8be

app-admin/krapplet: new ebuild

Krapplet is a password manager based on gnome-keyring, written as a
systray applet.

Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>

 app-admin/krapplet/Manifest              |  1 +
 app-admin/krapplet/krapplet-0.1.0.ebuild | 43 ++++++++++++++++++++++++++++++++
 app-admin/krapplet/metadata.xml          | 12 +++++++++
 3 files changed, 56 insertions(+)

diff --git a/app-admin/krapplet/Manifest b/app-admin/krapplet/Manifest
new file mode 100644
index 00000000..6030395f
--- /dev/null
+++ b/app-admin/krapplet/Manifest
@@ -0,0 +1 @@
+DIST krapplet-0.1.0.tar.gz 30262 BLAKE2B 26e6f08f6fb2dc6ebde9a328eb0a7c016debeec472fd89c02c2a1e8b86eb96834d731911a13d690f2a6c0754a109456eb645538472d1ba3e17f725e185598971 SHA512 dbc23cf44e059a57cd026ffa21a98cc10bf188da66c23f10a719740f8b470c8372f0298c0d4b9c6085bca8e54ad66784dc480ebfd2d8a6813a682ee8ac968c14

diff --git a/app-admin/krapplet/krapplet-0.1.0.ebuild b/app-admin/krapplet/krapplet-0.1.0.ebuild
new file mode 100644
index 00000000..c45155ad
--- /dev/null
+++ b/app-admin/krapplet/krapplet-0.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
+HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND=${PYTHON_DEPS}
+BDEPEND=${RDEPEND}
+
+# Upstream does not provide any test suite.
+RESTRICT="test"
+
+RDEPEND="${PYTHON_DEPS}
+	x11-libs/gtk+:3
+	dev-libs/glib
+	dev-libs/gobject-introspection
+	dev-python/secretstorage "
+
+DEPEND="${RDEPEND}"
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}

diff --git a/app-admin/krapplet/metadata.xml b/app-admin/krapplet/metadata.xml
new file mode 100644
index 00000000..75852e17
--- /dev/null
+++ b/app-admin/krapplet/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>hfern@fernhout.info</email>
+		<name>Johannes Willem (Hans) Fernhout</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">krapplet</remote-id>
+		<remote-id type="gitlab">hfernh/krapplet</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2021-01-02 12:13 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-02 12:13 UTC (permalink / raw
  To: gentoo-commits

commit:     533e16aa858a36b13f75dbf965fd0f6fd696b3c1
Author:     Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
AuthorDate: Sat Jan  2 10:07:13 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Jan  2 10:10:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=533e16aa

app-admin/krapplet: version update of krapplet ebuild

I had not relalized that krapplet's first ebuild was already merged to
the master branch. Processing the comments of @AndrewAmmerlaan then
requires a version upgrade of the ebuild.

Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>

 app-admin/krapplet/{krapplet-0.1.0.ebuild => krapplet-0.1.0-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-admin/krapplet/krapplet-0.1.0.ebuild b/app-admin/krapplet/krapplet-0.1.0-r1.ebuild
similarity index 100%
rename from app-admin/krapplet/krapplet-0.1.0.ebuild
rename to app-admin/krapplet/krapplet-0.1.0-r1.ebuild


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2021-01-02 12:13 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-02 12:13 UTC (permalink / raw
  To: gentoo-commits

commit:     fc8ab9d17607e4565260a96800bae08e7cf94488
Author:     Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
AuthorDate: Fri Jan  1 18:18:57 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Jan  1 18:18:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fc8ab9d1

app-admin/krapplet: new ebuild

Krapplet is a password manager based on gnome-keyring, written as a
systray applet.

Recommendations of AndrewAmmerlaan appreciated, and processed

Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>

 app-admin/krapplet/krapplet-0.1.0.ebuild | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/app-admin/krapplet/krapplet-0.1.0.ebuild b/app-admin/krapplet/krapplet-0.1.0.ebuild
index c45155ad..73ea8d49 100644
--- a/app-admin/krapplet/krapplet-0.1.0.ebuild
+++ b/app-admin/krapplet/krapplet-0.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 
-inherit distutils-r1 xdg-utils
+inherit distutils-r1 xdg
 
 DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
 HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
@@ -16,28 +16,15 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND=${PYTHON_DEPS}
 BDEPEND=${RDEPEND}
 
 # Upstream does not provide any test suite.
 RESTRICT="test"
 
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
 	x11-libs/gtk+:3
 	dev-libs/glib
 	dev-libs/gobject-introspection
-	dev-python/secretstorage "
+	dev-python/secretstorage"
 
 DEPEND="${RDEPEND}"
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2021-01-18  7:58 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-18  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     fda0861b6017361402a1bdc127ce3dea8bdae06a
Author:     Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
AuthorDate: Sun Jan 17 11:10:37 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Jan 17 11:36:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fda0861b

app-admin/krapplet: Version bump

Bug fix and documentation update

Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>

 app-admin/krapplet/Manifest              |  1 +
 app-admin/krapplet/krapplet-0.2.0.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/app-admin/krapplet/Manifest b/app-admin/krapplet/Manifest
index 6030395f..5656c5f6 100644
--- a/app-admin/krapplet/Manifest
+++ b/app-admin/krapplet/Manifest
@@ -1 +1,2 @@
 DIST krapplet-0.1.0.tar.gz 30262 BLAKE2B 26e6f08f6fb2dc6ebde9a328eb0a7c016debeec472fd89c02c2a1e8b86eb96834d731911a13d690f2a6c0754a109456eb645538472d1ba3e17f725e185598971 SHA512 dbc23cf44e059a57cd026ffa21a98cc10bf188da66c23f10a719740f8b470c8372f0298c0d4b9c6085bca8e54ad66784dc480ebfd2d8a6813a682ee8ac968c14
+DIST krapplet-0.2.0.tar.gz 35908 BLAKE2B 264050b1803f3985b6fa98ba67370d9306c15a1545239fa366eef5966224c8b143b66fe9d6a814bcf82e29a1aa4154c998747515764a71fd249ae9254a34681e SHA512 34466d94666b374050bdf990444e7cf31a89f18c2f573b978745e448fe899615addc498d629994ee68082f6dc80798c8e4697c261adbe4aaade000a7dae7cf40

diff --git a/app-admin/krapplet/krapplet-0.2.0.ebuild b/app-admin/krapplet/krapplet-0.2.0.ebuild
new file mode 100644
index 00000000..73ea8d49
--- /dev/null
+++ b/app-admin/krapplet/krapplet-0.2.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
+HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+
+BDEPEND=${RDEPEND}
+
+# Upstream does not provide any test suite.
+RESTRICT="test"
+
+RDEPEND="
+	x11-libs/gtk+:3
+	dev-libs/glib
+	dev-libs/gobject-introspection
+	dev-python/secretstorage"
+
+DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2021-02-24 18:50 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-02-24 18:50 UTC (permalink / raw
  To: gentoo-commits

commit:     83395d06230927cf8dcecbf9124aecdf589f9982
Author:     Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
AuthorDate: Mon Feb 22 15:41:44 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Feb 22 15:41:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=83395d06

app-admin/krapplet: Version bump to 0.3.1

Exciting new release with secret validity and complexity indicator,
ability to move keys between keyrings, and a new pass compatible storage
option.

Documentation moved to https://krapplet.readthedocs.io

Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>

 app-admin/krapplet/Manifest              |  1 +
 app-admin/krapplet/krapplet-0.3.1.ebuild | 32 ++++++++++++++++++++++++++++++++
 app-admin/krapplet/metadata.xml          |  3 +++
 3 files changed, 36 insertions(+)

diff --git a/app-admin/krapplet/Manifest b/app-admin/krapplet/Manifest
index 5656c5f6..12d2f662 100644
--- a/app-admin/krapplet/Manifest
+++ b/app-admin/krapplet/Manifest
@@ -1,2 +1,3 @@
 DIST krapplet-0.1.0.tar.gz 30262 BLAKE2B 26e6f08f6fb2dc6ebde9a328eb0a7c016debeec472fd89c02c2a1e8b86eb96834d731911a13d690f2a6c0754a109456eb645538472d1ba3e17f725e185598971 SHA512 dbc23cf44e059a57cd026ffa21a98cc10bf188da66c23f10a719740f8b470c8372f0298c0d4b9c6085bca8e54ad66784dc480ebfd2d8a6813a682ee8ac968c14
 DIST krapplet-0.2.0.tar.gz 35908 BLAKE2B 264050b1803f3985b6fa98ba67370d9306c15a1545239fa366eef5966224c8b143b66fe9d6a814bcf82e29a1aa4154c998747515764a71fd249ae9254a34681e SHA512 34466d94666b374050bdf990444e7cf31a89f18c2f573b978745e448fe899615addc498d629994ee68082f6dc80798c8e4697c261adbe4aaade000a7dae7cf40
+DIST krapplet-0.3.1.tar.gz 34455 BLAKE2B 6264b0f27cd89cda939f1ffe491947e11d9ca9d2b377261831d29094be96d0e7b976379a4f56e9212a093587f0339c722006f162b4a6629f83aa25909e3aa7a8 SHA512 2efcf604081b6f3436d8b18c6efd6bd0be59ca45e9e0af8bf6c1b50367387e1c62a71d49da32a2860f184871f16f92a6dea9571a69c0af284a87a962b9701d2d

diff --git a/app-admin/krapplet/krapplet-0.3.1.ebuild b/app-admin/krapplet/krapplet-0.3.1.ebuild
new file mode 100644
index 00000000..85010cea
--- /dev/null
+++ b/app-admin/krapplet/krapplet-0.3.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="Krapplet (keyring applet): a Linux graphical password manager"
+HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="+gnome-keyring pass"
+REQUIRED_USE="|| ( gnome-keyring pass )"
+
+# Upstream does not provide any test suite.
+RESTRICT="test"
+
+RDEPEND="
+	dev-libs/glib
+	dev-libs/gobject-introspection
+	gnome-keyring? ( dev-python/secretstorage )
+	pass? ( dev-python/python-gnupg )
+	x11-libs/gtk+:3"
+
+BDEPEND="${RDEPEND}"
+DEPEND="${BDEPEND}"

diff --git a/app-admin/krapplet/metadata.xml b/app-admin/krapplet/metadata.xml
index 75852e17..aa3eb2e0 100644
--- a/app-admin/krapplet/metadata.xml
+++ b/app-admin/krapplet/metadata.xml
@@ -5,6 +5,9 @@
 		<email>hfern@fernhout.info</email>
 		<name>Johannes Willem (Hans) Fernhout</name>
 	</maintainer>
+	<use>
+		<flag name="pass">Add support for pass compatible storage</flag>
+	</use>
 	<upstream>
 		<remote-id type="pypi">krapplet</remote-id>
 		<remote-id type="gitlab">hfernh/krapplet</remote-id>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
  2021-12-01 19:46 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2021-12-01 19:46 ` Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-12-01 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     5d7bdb641d55b5498c3485c90fdbead6ad7352be
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  1 19:46:31 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Dec  1 19:46:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5d7bdb64

app-admin/krapplet: drop old

unresolvable deps

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 app-admin/krapplet/Manifest                 |  2 --
 app-admin/krapplet/krapplet-0.1.0-r1.ebuild | 30 -----------------------------
 app-admin/krapplet/krapplet-0.2.0.ebuild    | 30 -----------------------------
 3 files changed, 62 deletions(-)

diff --git a/app-admin/krapplet/Manifest b/app-admin/krapplet/Manifest
index 12d2f662e..6fd0e08ce 100644
--- a/app-admin/krapplet/Manifest
+++ b/app-admin/krapplet/Manifest
@@ -1,3 +1 @@
-DIST krapplet-0.1.0.tar.gz 30262 BLAKE2B 26e6f08f6fb2dc6ebde9a328eb0a7c016debeec472fd89c02c2a1e8b86eb96834d731911a13d690f2a6c0754a109456eb645538472d1ba3e17f725e185598971 SHA512 dbc23cf44e059a57cd026ffa21a98cc10bf188da66c23f10a719740f8b470c8372f0298c0d4b9c6085bca8e54ad66784dc480ebfd2d8a6813a682ee8ac968c14
-DIST krapplet-0.2.0.tar.gz 35908 BLAKE2B 264050b1803f3985b6fa98ba67370d9306c15a1545239fa366eef5966224c8b143b66fe9d6a814bcf82e29a1aa4154c998747515764a71fd249ae9254a34681e SHA512 34466d94666b374050bdf990444e7cf31a89f18c2f573b978745e448fe899615addc498d629994ee68082f6dc80798c8e4697c261adbe4aaade000a7dae7cf40
 DIST krapplet-0.3.1.tar.gz 34455 BLAKE2B 6264b0f27cd89cda939f1ffe491947e11d9ca9d2b377261831d29094be96d0e7b976379a4f56e9212a093587f0339c722006f162b4a6629f83aa25909e3aa7a8 SHA512 2efcf604081b6f3436d8b18c6efd6bd0be59ca45e9e0af8bf6c1b50367387e1c62a71d49da32a2860f184871f16f92a6dea9571a69c0af284a87a962b9701d2d

diff --git a/app-admin/krapplet/krapplet-0.1.0-r1.ebuild b/app-admin/krapplet/krapplet-0.1.0-r1.ebuild
deleted file mode 100644
index d95455967..000000000
--- a/app-admin/krapplet/krapplet-0.1.0-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
-HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
-
-BDEPEND=${RDEPEND}
-
-# Upstream does not provide any test suite.
-RESTRICT="test"
-
-RDEPEND="
-	x11-libs/gtk+:3
-	dev-libs/glib
-	dev-libs/gobject-introspection
-	dev-python/secretstorage"
-
-DEPEND="${RDEPEND}"

diff --git a/app-admin/krapplet/krapplet-0.2.0.ebuild b/app-admin/krapplet/krapplet-0.2.0.ebuild
deleted file mode 100644
index d95455967..000000000
--- a/app-admin/krapplet/krapplet-0.2.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
-HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
-
-BDEPEND=${RDEPEND}
-
-# Upstream does not provide any test suite.
-RESTRICT="test"
-
-RDEPEND="
-	x11-libs/gtk+:3
-	dev-libs/glib
-	dev-libs/gobject-introspection
-	dev-python/secretstorage"
-
-DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/
@ 2023-03-08  9:08 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2023-03-08  9:08 UTC (permalink / raw
  To: gentoo-commits

commit:     6e8743bc0a75abaa3a626245b184c8bd99612329
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Mar  7 13:43:47 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Mar  7 13:43:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e8743bc

app-admin/krapplet: enable py3.11

Closes: https://bugs.gentoo.org/897358
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-admin/krapplet/krapplet-0.3.1-r1.ebuild | 29 ++++++++++++++++++++++++++
 app-admin/krapplet/krapplet-0.3.1.ebuild    | 32 -----------------------------
 2 files changed, 29 insertions(+), 32 deletions(-)

diff --git a/app-admin/krapplet/krapplet-0.3.1-r1.ebuild b/app-admin/krapplet/krapplet-0.3.1-r1.ebuild
new file mode 100644
index 000000000..583766fee
--- /dev/null
+++ b/app-admin/krapplet/krapplet-0.3.1-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 pypi xdg
+
+DESCRIPTION="Krapplet (keyring applet): a Linux graphical password manager"
+HOMEPAGE="
+	https://gitlab.com/hfernh/krapplet
+	https://pypi.org/project/krapplet/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="+gnome-keyring pass"
+REQUIRED_USE="|| ( gnome-keyring pass )"
+
+RDEPEND="
+	dev-libs/glib:2
+	dev-libs/gobject-introspection
+	dev-python/pygobject:3[${PYTHON_USEDEP}]
+	x11-libs/gtk+:3[introspection]
+	gnome-keyring? ( dev-python/secretstorage[${PYTHON_USEDEP}] )
+	pass? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
+"

diff --git a/app-admin/krapplet/krapplet-0.3.1.ebuild b/app-admin/krapplet/krapplet-0.3.1.ebuild
deleted file mode 100644
index 3d63246e7..000000000
--- a/app-admin/krapplet/krapplet-0.3.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="Krapplet (keyring applet): a Linux graphical password manager"
-HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="+gnome-keyring pass"
-REQUIRED_USE="|| ( gnome-keyring pass )"
-
-# Upstream does not provide any test suite.
-RESTRICT="test"
-
-RDEPEND="
-	dev-libs/glib
-	dev-libs/gobject-introspection
-	gnome-keyring? ( dev-python/secretstorage )
-	pass? ( dev-python/python-gnupg )
-	x11-libs/gtk+:3"
-
-BDEPEND="${RDEPEND}"
-DEPEND="${BDEPEND}"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-03-08  9:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-02 12:13 [gentoo-commits] repo/proj/guru:master commit in: app-admin/krapplet/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2023-03-08  9:08 Florian Schmaus
2021-12-01 19:46 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-12-01 19:46 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-02-24 18:50 Andrew Ammerlaan
2021-01-18  7:58 Andrew Ammerlaan
2021-01-02 12:13 Andrew Ammerlaan
2020-12-30 17:09 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox