* [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/authenticator/
@ 2021-07-24 1:35 Gerben Jan Dijkman
0 siblings, 0 replies; 4+ messages in thread
From: Gerben Jan Dijkman @ 2021-07-24 1:35 UTC (permalink / raw
To: gentoo-commits
commit: 4d1f22b64b32761fccd5c5a1e4f60270cc5ad643
Author: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
AuthorDate: Sat Jul 24 01:35:41 2021 +0000
Commit: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
CommitDate: Sat Jul 24 01:35:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d1f22b6
gnome-extra/authenticator: Adding for PinePhone use
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Gerben jan Dijkman <gjdijkman <AT> gjdwebserver.nl>
| 1 +
.../authenticator/authenticator-4.0.3.ebuild | 46 ++++++++++++++++++++++
| 15 +++++++
3 files changed, 62 insertions(+)
--git a/gnome-extra/authenticator/Manifest b/gnome-extra/authenticator/Manifest
new file mode 100644
index 000000000..957a4c22d
--- /dev/null
+++ b/gnome-extra/authenticator/Manifest
@@ -0,0 +1 @@
+DIST authenticator-4.0.3.tar.gz 411473 BLAKE2B aebc1bd99ae78050447495ce99a6379a9358c8cd9469561cb30b8d8fd6ce3d98a1f3e7f966a3a6c9ff8ffcb39893571080eaae601a733e8a4a04a484041de529 SHA512 81900b0a31398597bab9f40a79432d3a3c31fe9eea162a9699c10ff01ba6aba210f1a3e1a70e113090f8aea49a12fd32dac005c7b64f1c73a6cfe56303243186
diff --git a/gnome-extra/authenticator/authenticator-4.0.3.ebuild b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
new file mode 100644
index 000000000..b2841fec8
--- /dev/null
+++ b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit vala meson gnome2-utils git-r3 xdg
+
+DESCRIPTION="Simple application for generating Two-Factor Authentication Codes."
+HOMEPAGE="https://gitlab.gnome.org/World/Authenticator"
+SRC_URI="https://gitlab.gnome.org/World/Authenticator/-/archive/${PV}/${PN}-${PV}.tar.gz"
+EGIT_REPO_URI="https://gitlab.gnome.org/World/Authenticator.git"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+introspection +vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+ gnome-base/gnome-common
+ gui-libs/gtk
+ x11-libs/libadwaita
+ x11-libs/gdk-pixbuf
+ >=media-libs/gstreamer-1.18.0
+ "
+RDEPEND="${DEPEND}"
+BDEPEND="
+ vala? ( $(vala_depend) )
+ dev-util/meson
+ dev-libs/gobject-introspection
+ "
+
+S="${WORKDIR}/$PN-${PV}"
+
+src_install() {
+ meson_src_install
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+}
--git a/gnome-extra/authenticator/metadata.xml b/gnome-extra/authenticator/metadata.xml
new file mode 100644
index 000000000..be6935ede
--- /dev/null
+++ b/gnome-extra/authenticator/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gjdijkman@gjdwebserver.nl</email>
+ <name>Gerben Jan Dijkman</name>
+ </maintainer>
+ <longdescription lang="en">
+ Generate Two-Factor Codes.
+ </longdescription>
+ <upstream>
+ <doc>https://gitlab.gnome.org/World/Authenticator</doc>
+ <bugs-to>https://gitlab.gnome.org/World/Authenticator/-/issues</bugs-to>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/authenticator/
@ 2021-07-24 5:22 Gerben Jan Dijkman
0 siblings, 0 replies; 4+ messages in thread
From: Gerben Jan Dijkman @ 2021-07-24 5:22 UTC (permalink / raw
To: gentoo-commits
commit: 3812619d97847afebd451daa382b225c16a9c8c9
Author: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
AuthorDate: Sat Jul 24 05:22:31 2021 +0000
Commit: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
CommitDate: Sat Jul 24 05:22:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3812619d
gnome-extra/authenticator: Removed inherit GIT
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Gerben jan Dijkman <gjdijkman <AT> gjdwebserver.nl>
| 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
--git a/gnome-extra/authenticator/authenticator-4.0.3.ebuild b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
index b2841fec8..ad8643bdc 100644
--- a/gnome-extra/authenticator/authenticator-4.0.3.ebuild
+++ b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
@@ -4,16 +4,15 @@
EAPI=7
VALA_USE_DEPEND="vapigen"
-inherit vala meson gnome2-utils git-r3 xdg
+inherit vala meson gnome2-utils xdg
DESCRIPTION="Simple application for generating Two-Factor Authentication Codes."
HOMEPAGE="https://gitlab.gnome.org/World/Authenticator"
SRC_URI="https://gitlab.gnome.org/World/Authenticator/-/archive/${PV}/${PN}-${PV}.tar.gz"
-EGIT_REPO_URI="https://gitlab.gnome.org/World/Authenticator.git"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~arm64"
IUSE="+introspection +vala"
REQUIRED_USE="vala? ( introspection )"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/authenticator/
2021-07-24 15:58 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-07-24 15:40 ` Andrew Ammerlaan
0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2021-07-24 15:40 UTC (permalink / raw
To: gentoo-commits
commit: 5e3ce259766adb382d379ee6778a462337167dd0
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 15:40:00 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 15:40:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e3ce259
gnome-extra/authenticator: drop keywords
dep does not have keywords yet
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
| 2 +-
| 3 ---
2 files changed, 1 insertion(+), 4 deletions(-)
--git a/gnome-extra/authenticator/authenticator-4.0.3.ebuild b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
index ad8643bdc..13d5e4cf5 100644
--- a/gnome-extra/authenticator/authenticator-4.0.3.ebuild
+++ b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.gnome.org/World/Authenticator/-/archive/${PV}/${PN}-${PV
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~arm64"
+#KEYWORDS="~arm64"
IUSE="+introspection +vala"
REQUIRED_USE="vala? ( introspection )"
--git a/gnome-extra/authenticator/metadata.xml b/gnome-extra/authenticator/metadata.xml
index be6935ede..d5d190b08 100644
--- a/gnome-extra/authenticator/metadata.xml
+++ b/gnome-extra/authenticator/metadata.xml
@@ -5,9 +5,6 @@
<email>gjdijkman@gjdwebserver.nl</email>
<name>Gerben Jan Dijkman</name>
</maintainer>
- <longdescription lang="en">
- Generate Two-Factor Codes.
- </longdescription>
<upstream>
<doc>https://gitlab.gnome.org/World/Authenticator</doc>
<bugs-to>https://gitlab.gnome.org/World/Authenticator/-/issues</bugs-to>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/authenticator/
@ 2021-12-08 11:24 Gerben Jan Dijkman
0 siblings, 0 replies; 4+ messages in thread
From: Gerben Jan Dijkman @ 2021-12-08 11:24 UTC (permalink / raw
To: gentoo-commits
commit: 06ff08f6ee8e5c61640b7014fa7f2818a1899b43
Author: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
AuthorDate: Wed Dec 8 11:24:23 2021 +0000
Commit: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver <DOT> nl>
CommitDate: Wed Dec 8 11:24:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06ff08f6
gnome-extra: Removed Autenthcator only works using flatpak
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Gerben Jan Dijkman <gjdijkman <AT> gjdwebserver.nl>
| 1 -
.../authenticator/authenticator-4.0.3.ebuild | 45 ----------------------
| 12 ------
3 files changed, 58 deletions(-)
diff --git a/gnome-extra/authenticator/Manifest b/gnome-extra/authenticator/Manifest
deleted file mode 100644
index 957a4c22d..000000000
--- a/gnome-extra/authenticator/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST authenticator-4.0.3.tar.gz 411473 BLAKE2B aebc1bd99ae78050447495ce99a6379a9358c8cd9469561cb30b8d8fd6ce3d98a1f3e7f966a3a6c9ff8ffcb39893571080eaae601a733e8a4a04a484041de529 SHA512 81900b0a31398597bab9f40a79432d3a3c31fe9eea162a9699c10ff01ba6aba210f1a3e1a70e113090f8aea49a12fd32dac005c7b64f1c73a6cfe56303243186
diff --git a/gnome-extra/authenticator/authenticator-4.0.3.ebuild b/gnome-extra/authenticator/authenticator-4.0.3.ebuild
deleted file mode 100644
index 13d5e4cf5..000000000
--- a/gnome-extra/authenticator/authenticator-4.0.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-inherit vala meson gnome2-utils xdg
-
-DESCRIPTION="Simple application for generating Two-Factor Authentication Codes."
-HOMEPAGE="https://gitlab.gnome.org/World/Authenticator"
-SRC_URI="https://gitlab.gnome.org/World/Authenticator/-/archive/${PV}/${PN}-${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-#KEYWORDS="~arm64"
-IUSE="+introspection +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
- gnome-base/gnome-common
- gui-libs/gtk
- x11-libs/libadwaita
- x11-libs/gdk-pixbuf
- >=media-libs/gstreamer-1.18.0
- "
-RDEPEND="${DEPEND}"
-BDEPEND="
- vala? ( $(vala_depend) )
- dev-util/meson
- dev-libs/gobject-introspection
- "
-
-S="${WORKDIR}/$PN-${PV}"
-
-src_install() {
- meson_src_install
-}
-
-pkg_postinst() {
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- gnome2_schemas_update
-}
diff --git a/gnome-extra/authenticator/metadata.xml b/gnome-extra/authenticator/metadata.xml
deleted file mode 100644
index d5d190b08..000000000
--- a/gnome-extra/authenticator/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gjdijkman@gjdwebserver.nl</email>
- <name>Gerben Jan Dijkman</name>
- </maintainer>
- <upstream>
- <doc>https://gitlab.gnome.org/World/Authenticator</doc>
- <bugs-to>https://gitlab.gnome.org/World/Authenticator/-/issues</bugs-to>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-12-08 11:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-24 1:35 [gentoo-commits] repo/proj/guru:dev commit in: gnome-extra/authenticator/ Gerben Jan Dijkman
-- strict thread matches above, loose matches on Subject: below --
2021-07-24 5:22 Gerben Jan Dijkman
2021-07-24 15:58 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-07-24 15:40 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-12-08 11:24 Gerben Jan Dijkman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox