gui-apps/tessen: initial commit

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2022-04-03 15:50:38 -04:00
parent fbf6439349
commit 319d827d45
3 changed files with 46 additions and 0 deletions

1
gui-apps/tessen/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST tessen-2.1.2.tar.gz 25110 BLAKE2B c10a1a5bbb3ca86f253f8ff997a1730562e3d7bbebdbc1981fb6279c165b20b6fe71fc4477e3275ac15a76c78194a7562ad318ac0f15a048ee8172243a4d26fc SHA512 5f0ae3614f4e1bb80453408e16ff63884287b116ca436d8486ed52e4f4b9f558ee5cc73ca236a298eb74fb5bfd20caeebcfafd9eec5d9395e2337d789c12970d

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>julien@jroy.ca</email>
<name>Julien Roy</name>
</maintainer>
<upstream>
<remote-id type="github">ayushnix/tessen</remote-id>
</upstream>
<use>
<flag name="dmenu">Enable dmenu backend</flag>
<flag name="bemenu">Enable bemenu backend</flag>
<flag name="rofi">Enable rofi backend</flag>
<flag name="wofi">Enable wofi backend</flag>
<flag name="pass">Enable pass support</flag>
<flag name="gopass">Enable gopass support</flag>
</use>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
HOMEPAGE="https://github.com/ayushnix/tessen"
SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+pass gopass dmenu bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
|| ( dmenu bemenu wofi rofi )"
DEPEND=""
RDEPEND="${DEPEND}
dmenu? ( x11-misc/dmenu )
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
rofi? ( x11-misc/rofi )
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )"
BDEPEND=""