From 25795aaf8b5969b5adb2badd9ea35a34bc7af71f Mon Sep 17 00:00:00 2001 From: Gerben Jan Dijkman Date: Tue, 2 May 2023 16:20:21 +0200 Subject: [PATCH] Added authenticator --- gnome-extra/authenticator/Manifest | 1 + .../authenticator/authenticator-4.3.1.ebuild | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 gnome-extra/authenticator/Manifest create mode 100644 gnome-extra/authenticator/authenticator-4.3.1.ebuild diff --git a/gnome-extra/authenticator/Manifest b/gnome-extra/authenticator/Manifest new file mode 100644 index 0000000..593daf1 --- /dev/null +++ b/gnome-extra/authenticator/Manifest @@ -0,0 +1 @@ +DIST authenticator-4.3.1.tar.gz 600750 BLAKE2B 4b8b108c09dc42031f73e09d8a837c0b51eb671e2f9523c1e18206109f061db28a221af0c9acbee354f0cefbd36fe315ebf84577666f41c62048fc9046907439 SHA512 6e097851806aa27e446041da33b3ea1c6b9cb4cf93ee4aafda4cd1dcf57140e2634c20d622dd756c8f22f69bd7a72a64adf4942244f69d436fc1c9a9fab39463 diff --git a/gnome-extra/authenticator/authenticator-4.3.1.ebuild b/gnome-extra/authenticator/authenticator-4.3.1.ebuild new file mode 100644 index 0000000..98eded4 --- /dev/null +++ b/gnome-extra/authenticator/authenticator-4.3.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2-utils meson toolchain-funcs xdg + +DESCRIPTION="Generate Two-Factor Codes" +HOMEPAGE="https://gitlab.gnome.org/World/Authenticator" +SRC_URI="https://gitlab.gnome.org/World/${PN}/-/archive/${PV}/${PN}-${PV}.tar.gz" + +RESTRICT="network-sandbox" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +S="${WORKDIR}/Authenticator-${PV}" + +RDEPEND=" + +" + +DEPEND="${RDEPEND}" + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}