* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-04-03 19:51 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-04-03 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 319d827d4529c7f0e1e799a6782f4d76c71d0b24
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Apr 3 19:50:38 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Apr 3 19:50:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=319d827d
gui-apps/tessen: initial commit
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/Manifest | 1 +
gui-apps/tessen/metadata.xml | 19 +++++++++++++++++++
gui-apps/tessen/tessen-2.1.2.ebuild | 26 ++++++++++++++++++++++++++
3 files changed, 46 insertions(+)
diff --git a/gui-apps/tessen/Manifest b/gui-apps/tessen/Manifest
new file mode 100644
index 000000000..7392fd539
--- /dev/null
+++ b/gui-apps/tessen/Manifest
@@ -0,0 +1 @@
+DIST tessen-2.1.2.tar.gz 25110 BLAKE2B c10a1a5bbb3ca86f253f8ff997a1730562e3d7bbebdbc1981fb6279c165b20b6fe71fc4477e3275ac15a76c78194a7562ad318ac0f15a048ee8172243a4d26fc SHA512 5f0ae3614f4e1bb80453408e16ff63884287b116ca436d8486ed52e4f4b9f558ee5cc73ca236a298eb74fb5bfd20caeebcfafd9eec5d9395e2337d789c12970d
diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
new file mode 100644
index 000000000..56ee527ad
--- /dev/null
+++ b/gui-apps/tessen/metadata.xml
@@ -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>
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
new file mode 100644
index 000000000..c0d5cf2f4
--- /dev/null
+++ b/gui-apps/tessen/tessen-2.1.2.ebuild
@@ -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=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-04-04 23:27 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-04-04 23:27 UTC (permalink / raw
To: gentoo-commits
commit: 3c21ef9d1ed718b405014f6c0e51e5e092080b73
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 4 23:26:07 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 4 23:26:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c21ef9d
Added -9999 and optfeature logs in postinst
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/tessen-2.1.2.ebuild | 20 ++++++++++++++++++--
.../{tessen-2.1.2.ebuild => tessen-9999.ebuild} | 20 ++++++++++++++++++--
2 files changed, 36 insertions(+), 4 deletions(-)
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
index c0d5cf2f4..825613281 100644
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ b/gui-apps/tessen/tessen-2.1.2.ebuild
@@ -3,13 +3,21 @@
EAPI=8
+inherit optfeature
+
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"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
+else
+ SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64"
IUSE="+pass gopass dmenu bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
@@ -24,3 +32,11 @@ RDEPEND="${DEPEND}
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )"
BDEPEND=""
+
+pkg_postinst() {
+ optfeature "autotype support" gui-apps/wtype
+ optfeature "clipboard support" gui-apps/wl-clipboard
+ optfeature "URL opening support" x11-misc/xdg-utils
+ optfeature "OTP support" app-admin/pass-otp
+ optfeature "notifications support" x11-libs/libnotify
+}
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-9999.ebuild
similarity index 53%
copy from gui-apps/tessen/tessen-2.1.2.ebuild
copy to gui-apps/tessen/tessen-9999.ebuild
index c0d5cf2f4..825613281 100644
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ b/gui-apps/tessen/tessen-9999.ebuild
@@ -3,13 +3,21 @@
EAPI=8
+inherit optfeature
+
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"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
+else
+ SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64"
IUSE="+pass gopass dmenu bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
@@ -24,3 +32,11 @@ RDEPEND="${DEPEND}
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )"
BDEPEND=""
+
+pkg_postinst() {
+ optfeature "autotype support" gui-apps/wtype
+ optfeature "clipboard support" gui-apps/wl-clipboard
+ optfeature "URL opening support" x11-misc/xdg-utils
+ optfeature "OTP support" app-admin/pass-otp
+ optfeature "notifications support" x11-libs/libnotify
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-04-05 0:00 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-04-05 0:00 UTC (permalink / raw
To: gentoo-commits
commit: 69180edccf6554c8f6f2dc3b0f16e64022eb6c28
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 4 23:59:37 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 4 23:59:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69180edc
gui-apps/tessen: drop dmenu optional dependency
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/metadata.xml | 1 -
gui-apps/tessen/tessen-2.1.2.ebuild | 5 ++---
gui-apps/tessen/tessen-9999.ebuild | 5 ++---
3 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
index 56ee527ad..55e9ef031 100644
--- a/gui-apps/tessen/metadata.xml
+++ b/gui-apps/tessen/metadata.xml
@@ -9,7 +9,6 @@
<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>
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
index 825613281..a215da0bf 100644
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ b/gui-apps/tessen/tessen-2.1.2.ebuild
@@ -18,14 +18,13 @@ fi
LICENSE="GPL-2"
SLOT="0"
-IUSE="+pass gopass dmenu bemenu wofi rofi"
+IUSE="+pass gopass bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
- || ( dmenu bemenu wofi rofi )"
+ || ( bemenu wofi rofi )"
DEPEND=""
RDEPEND="${DEPEND}
- dmenu? ( x11-misc/dmenu )
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
rofi? ( x11-misc/rofi )
diff --git a/gui-apps/tessen/tessen-9999.ebuild b/gui-apps/tessen/tessen-9999.ebuild
index 825613281..a215da0bf 100644
--- a/gui-apps/tessen/tessen-9999.ebuild
+++ b/gui-apps/tessen/tessen-9999.ebuild
@@ -18,14 +18,13 @@ fi
LICENSE="GPL-2"
SLOT="0"
-IUSE="+pass gopass dmenu bemenu wofi rofi"
+IUSE="+pass gopass bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
- || ( dmenu bemenu wofi rofi )"
+ || ( bemenu wofi rofi )"
DEPEND=""
RDEPEND="${DEPEND}
- dmenu? ( x11-misc/dmenu )
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
rofi? ( x11-misc/rofi )
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-04-05 21:08 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-04-05 21:08 UTC (permalink / raw
To: gentoo-commits
commit: e3a6c0fe829b257d46566a209311ba3f98ccac16
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Apr 5 21:08:03 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Apr 5 21:08:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e3a6c0fe
gui-apps/tessen: add scdoc dependency
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/tessen-2.1.2.ebuild | 2 +-
gui-apps/tessen/tessen-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
index a215da0bf..8a0540b46 100644
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ b/gui-apps/tessen/tessen-2.1.2.ebuild
@@ -23,7 +23,7 @@ IUSE="+pass gopass bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
|| ( bemenu wofi rofi )"
-DEPEND=""
+DEPEND="app-text/scdoc"
RDEPEND="${DEPEND}
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
diff --git a/gui-apps/tessen/tessen-9999.ebuild b/gui-apps/tessen/tessen-9999.ebuild
index a215da0bf..8a0540b46 100644
--- a/gui-apps/tessen/tessen-9999.ebuild
+++ b/gui-apps/tessen/tessen-9999.ebuild
@@ -23,7 +23,7 @@ IUSE="+pass gopass bemenu wofi rofi"
REQUIRED_USE="|| ( pass gopass )
|| ( bemenu wofi rofi )"
-DEPEND=""
+DEPEND="app-text/scdoc"
RDEPEND="${DEPEND}
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-11-29 21:19 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-11-29 21:19 UTC (permalink / raw
To: gentoo-commits
commit: 9bbbca1c456bc851f7ac741f032e6da2cdc4e65e
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Nov 29 21:17:17 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Nov 29 21:17:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9bbbca1c
gui-apps/tessen: remove forced USE flags
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/tessen-2.1.2.ebuild | 6 +-----
gui-apps/tessen/tessen-9999.ebuild | 6 +-----
2 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
index 8a0540b46..84ab282f5 100644
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ b/gui-apps/tessen/tessen-2.1.2.ebuild
@@ -20,14 +20,10 @@ LICENSE="GPL-2"
SLOT="0"
IUSE="+pass gopass bemenu wofi rofi"
-REQUIRED_USE="|| ( pass gopass )
- || ( bemenu wofi rofi )"
+REQUIRED_USE="|| ( pass gopass )"
DEPEND="app-text/scdoc"
RDEPEND="${DEPEND}
- bemenu? ( dev-libs/bemenu )
- wofi? ( gui-apps/wofi )
- rofi? ( x11-misc/rofi )
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )"
BDEPEND=""
diff --git a/gui-apps/tessen/tessen-9999.ebuild b/gui-apps/tessen/tessen-9999.ebuild
index 8a0540b46..84ab282f5 100644
--- a/gui-apps/tessen/tessen-9999.ebuild
+++ b/gui-apps/tessen/tessen-9999.ebuild
@@ -20,14 +20,10 @@ LICENSE="GPL-2"
SLOT="0"
IUSE="+pass gopass bemenu wofi rofi"
-REQUIRED_USE="|| ( pass gopass )
- || ( bemenu wofi rofi )"
+REQUIRED_USE="|| ( pass gopass )"
DEPEND="app-text/scdoc"
RDEPEND="${DEPEND}
- bemenu? ( dev-libs/bemenu )
- wofi? ( gui-apps/wofi )
- rofi? ( x11-misc/rofi )
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )"
BDEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2022-12-22 3:52 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2022-12-22 3:52 UTC (permalink / raw
To: gentoo-commits
commit: f2b35b8162c792132ce2645c28aa254ea858116e
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Dec 22 03:51:57 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Dec 22 03:51:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2b35b81
gui-apps/tessen: add 2.1.3
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/Manifest | 1 +
gui-apps/tessen/metadata.xml | 6 ++++++
gui-apps/tessen/tessen-2.1.3.ebuild | 37 +++++++++++++++++++++++++++++++++++++
3 files changed, 44 insertions(+)
diff --git a/gui-apps/tessen/Manifest b/gui-apps/tessen/Manifest
index 7392fd539..255b6714e 100644
--- a/gui-apps/tessen/Manifest
+++ b/gui-apps/tessen/Manifest
@@ -1 +1,2 @@
DIST tessen-2.1.2.tar.gz 25110 BLAKE2B c10a1a5bbb3ca86f253f8ff997a1730562e3d7bbebdbc1981fb6279c165b20b6fe71fc4477e3275ac15a76c78194a7562ad318ac0f15a048ee8172243a4d26fc SHA512 5f0ae3614f4e1bb80453408e16ff63884287b116ca436d8486ed52e4f4b9f558ee5cc73ca236a298eb74fb5bfd20caeebcfafd9eec5d9395e2337d789c12970d
+DIST tessen-2.1.3.tar.gz 31570 BLAKE2B ccd8764762900c92f87a84796a28caef89d2e934836061a03bcbfbce3f132395874eb5c03f175eaa275805aac9b429093a2a07bc8727da801dc000bd544eabf2 SHA512 d1c7f092c6849819c816d85fa596915478190f7efce5634fc7126c73f763f5b62edb3a92a1ab3409d0a4828de88de88605c882de64e06c2b18f41ae0e4ba8749
diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
index 55e9ef031..82dc1df22 100644
--- a/gui-apps/tessen/metadata.xml
+++ b/gui-apps/tessen/metadata.xml
@@ -6,6 +6,12 @@
<name>Julien Roy</name>
</maintainer>
<upstream>
+ <maintainer>
+ <name>ayushnix</name>
+ </maintainer>
+ <changelog>https://github.com/ayushnix/tessen/blob/master/CHANGELOG.md</changelog>
+ <doc>https://github.com/ayushnix/tessen/blob/master/README.md</doc>
+ <bugs-to>https://github.com/ayushnix/tessen/issues</bugs-to>
<remote-id type="github">ayushnix/tessen</remote-id>
</upstream>
<use>
diff --git a/gui-apps/tessen/tessen-2.1.3.ebuild b/gui-apps/tessen/tessen-2.1.3.ebuild
new file mode 100644
index 000000000..84ab282f5
--- /dev/null
+++ b/gui-apps/tessen/tessen-2.1.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
+HOMEPAGE="https://github.com/ayushnix/tessen"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
+else
+ SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+pass gopass bemenu wofi rofi"
+
+REQUIRED_USE="|| ( pass gopass )"
+
+DEPEND="app-text/scdoc"
+RDEPEND="${DEPEND}
+ pass? ( app-admin/pass )
+ gopass? ( app-admin/gopass )"
+BDEPEND=""
+
+pkg_postinst() {
+ optfeature "autotype support" gui-apps/wtype
+ optfeature "clipboard support" gui-apps/wl-clipboard
+ optfeature "URL opening support" x11-misc/xdg-utils
+ optfeature "OTP support" app-admin/pass-otp
+ optfeature "notifications support" x11-libs/libnotify
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2023-04-10 2:43 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2023-04-10 2:43 UTC (permalink / raw
To: gentoo-commits
commit: 257d5dd0955264584aa069cf16f07e42db1363b1
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 10 02:04:10 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 10 02:04:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=257d5dd0
gui-apps/tessen: add 2.2.1
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/Manifest | 1 +
gui-apps/tessen/tessen-2.2.1.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/gui-apps/tessen/Manifest b/gui-apps/tessen/Manifest
index 255b6714e..03402f795 100644
--- a/gui-apps/tessen/Manifest
+++ b/gui-apps/tessen/Manifest
@@ -1,2 +1,3 @@
DIST tessen-2.1.2.tar.gz 25110 BLAKE2B c10a1a5bbb3ca86f253f8ff997a1730562e3d7bbebdbc1981fb6279c165b20b6fe71fc4477e3275ac15a76c78194a7562ad318ac0f15a048ee8172243a4d26fc SHA512 5f0ae3614f4e1bb80453408e16ff63884287b116ca436d8486ed52e4f4b9f558ee5cc73ca236a298eb74fb5bfd20caeebcfafd9eec5d9395e2337d789c12970d
DIST tessen-2.1.3.tar.gz 31570 BLAKE2B ccd8764762900c92f87a84796a28caef89d2e934836061a03bcbfbce3f132395874eb5c03f175eaa275805aac9b429093a2a07bc8727da801dc000bd544eabf2 SHA512 d1c7f092c6849819c816d85fa596915478190f7efce5634fc7126c73f763f5b62edb3a92a1ab3409d0a4828de88de88605c882de64e06c2b18f41ae0e4ba8749
+DIST tessen-2.2.1.tar.gz 31402 BLAKE2B 6e1601a3d74969c69d302beb92f35ced6008bb74a003996d44d72b66b074944e6269ec7c7202832f85308a05d36e485a72bb9475267255c30aada7154efaecab SHA512 0fab379438386b737e04353d845d41b817d029be7e9a0406230012c5607db3244db627db186a40707ee4f59ea74f6886f3dcb6e84bcb9b05b0b4d742615bc7f5
diff --git a/gui-apps/tessen/tessen-2.2.1.ebuild b/gui-apps/tessen/tessen-2.2.1.ebuild
new file mode 100644
index 000000000..6a1cbe724
--- /dev/null
+++ b/gui-apps/tessen/tessen-2.2.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
+HOMEPAGE="https://github.com/ayushnix/tessen"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
+else
+ SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="app-text/scdoc"
+RDEPEND="${DEPEND}
+ || ( app-admin/pass
+ app-admin/gopass )"
+BDEPEND=""
+
+pkg_postinst() {
+ optfeature "autotype support" gui-apps/wtype
+ optfeature "clipboard support" gui-apps/wl-clipboard
+ optfeature "URL opening support" x11-misc/xdg-utils
+ optfeature "OTP support" app-admin/pass-otp
+ optfeature "notifications support" x11-libs/libnotify
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2023-04-10 2:43 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2023-04-10 2:43 UTC (permalink / raw
To: gentoo-commits
commit: 5fafc0b3cf87b6b3ba717695692fc24db8256b04
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 10 02:04:25 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 10 02:04:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fafc0b3
gui-apps/tessen: drop 2.1.2
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/Manifest | 1 -
gui-apps/tessen/tessen-2.1.2.ebuild | 37 -------------------------------------
2 files changed, 38 deletions(-)
diff --git a/gui-apps/tessen/Manifest b/gui-apps/tessen/Manifest
index 03402f795..b7becb327 100644
--- a/gui-apps/tessen/Manifest
+++ b/gui-apps/tessen/Manifest
@@ -1,3 +1,2 @@
-DIST tessen-2.1.2.tar.gz 25110 BLAKE2B c10a1a5bbb3ca86f253f8ff997a1730562e3d7bbebdbc1981fb6279c165b20b6fe71fc4477e3275ac15a76c78194a7562ad318ac0f15a048ee8172243a4d26fc SHA512 5f0ae3614f4e1bb80453408e16ff63884287b116ca436d8486ed52e4f4b9f558ee5cc73ca236a298eb74fb5bfd20caeebcfafd9eec5d9395e2337d789c12970d
DIST tessen-2.1.3.tar.gz 31570 BLAKE2B ccd8764762900c92f87a84796a28caef89d2e934836061a03bcbfbce3f132395874eb5c03f175eaa275805aac9b429093a2a07bc8727da801dc000bd544eabf2 SHA512 d1c7f092c6849819c816d85fa596915478190f7efce5634fc7126c73f763f5b62edb3a92a1ab3409d0a4828de88de88605c882de64e06c2b18f41ae0e4ba8749
DIST tessen-2.2.1.tar.gz 31402 BLAKE2B 6e1601a3d74969c69d302beb92f35ced6008bb74a003996d44d72b66b074944e6269ec7c7202832f85308a05d36e485a72bb9475267255c30aada7154efaecab SHA512 0fab379438386b737e04353d845d41b817d029be7e9a0406230012c5607db3244db627db186a40707ee4f59ea74f6886f3dcb6e84bcb9b05b0b4d742615bc7f5
diff --git a/gui-apps/tessen/tessen-2.1.2.ebuild b/gui-apps/tessen/tessen-2.1.2.ebuild
deleted file mode 100644
index 84ab282f5..000000000
--- a/gui-apps/tessen/tessen-2.1.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
-HOMEPAGE="https://github.com/ayushnix/tessen"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
-else
- SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+pass gopass bemenu wofi rofi"
-
-REQUIRED_USE="|| ( pass gopass )"
-
-DEPEND="app-text/scdoc"
-RDEPEND="${DEPEND}
- pass? ( app-admin/pass )
- gopass? ( app-admin/gopass )"
-BDEPEND=""
-
-pkg_postinst() {
- optfeature "autotype support" gui-apps/wtype
- optfeature "clipboard support" gui-apps/wl-clipboard
- optfeature "URL opening support" x11-misc/xdg-utils
- optfeature "OTP support" app-admin/pass-otp
- optfeature "notifications support" x11-libs/libnotify
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2023-04-14 21:09 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2023-04-14 21:09 UTC (permalink / raw
To: gentoo-commits
commit: 089bd1485bbe8134b801188c4b3c79972b958bfa
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Apr 14 21:08:36 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Apr 14 21:08:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=089bd148
gui-apps/tessen: add 2.2.1-r1
Restrict tests due to missing dependency
Closes: https://bugs.gentoo.org/904303
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/metadata.xml | 7 -------
gui-apps/tessen/tessen-2.2.1-r1.ebuild | 37 ++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+), 7 deletions(-)
diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
index 82dc1df22..e97e3a8d8 100644
--- a/gui-apps/tessen/metadata.xml
+++ b/gui-apps/tessen/metadata.xml
@@ -14,11 +14,4 @@
<bugs-to>https://github.com/ayushnix/tessen/issues</bugs-to>
<remote-id type="github">ayushnix/tessen</remote-id>
</upstream>
- <use>
- <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>
diff --git a/gui-apps/tessen/tessen-2.2.1-r1.ebuild b/gui-apps/tessen/tessen-2.2.1-r1.ebuild
new file mode 100644
index 000000000..2ec38b4aa
--- /dev/null
+++ b/gui-apps/tessen/tessen-2.2.1-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
+HOMEPAGE="https://github.com/ayushnix/tessen"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
+else
+ SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+# Requires shfmt (https://github.com/mvdan/sh) which is not packaged
+RESTRICT="test"
+
+DEPEND="app-text/scdoc"
+RDEPEND="${DEPEND}
+ || ( app-admin/pass
+ app-admin/gopass
+ )
+"
+
+pkg_postinst() {
+ optfeature "autotype support" gui-apps/wtype
+ optfeature "clipboard support" gui-apps/wl-clipboard
+ optfeature "URL opening support" x11-misc/xdg-utils
+ optfeature "OTP support" app-admin/pass-otp
+ optfeature "notifications support" x11-libs/libnotify
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
@ 2023-04-14 21:09 Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2023-04-14 21:09 UTC (permalink / raw
To: gentoo-commits
commit: 580ba710edefb0e220b0744394de6d7ba11414a0
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Apr 14 21:09:11 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Apr 14 21:09:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=580ba710
gui-apps/tessen: drop 2.1.3, 2.2.1, 9999
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/Manifest | 1 -
gui-apps/tessen/tessen-2.1.3.ebuild | 37 -------------------------------------
gui-apps/tessen/tessen-2.2.1.ebuild | 34 ----------------------------------
gui-apps/tessen/tessen-9999.ebuild | 37 -------------------------------------
4 files changed, 109 deletions(-)
diff --git a/gui-apps/tessen/Manifest b/gui-apps/tessen/Manifest
index b7becb327..5326a905a 100644
--- a/gui-apps/tessen/Manifest
+++ b/gui-apps/tessen/Manifest
@@ -1,2 +1 @@
-DIST tessen-2.1.3.tar.gz 31570 BLAKE2B ccd8764762900c92f87a84796a28caef89d2e934836061a03bcbfbce3f132395874eb5c03f175eaa275805aac9b429093a2a07bc8727da801dc000bd544eabf2 SHA512 d1c7f092c6849819c816d85fa596915478190f7efce5634fc7126c73f763f5b62edb3a92a1ab3409d0a4828de88de88605c882de64e06c2b18f41ae0e4ba8749
DIST tessen-2.2.1.tar.gz 31402 BLAKE2B 6e1601a3d74969c69d302beb92f35ced6008bb74a003996d44d72b66b074944e6269ec7c7202832f85308a05d36e485a72bb9475267255c30aada7154efaecab SHA512 0fab379438386b737e04353d845d41b817d029be7e9a0406230012c5607db3244db627db186a40707ee4f59ea74f6886f3dcb6e84bcb9b05b0b4d742615bc7f5
diff --git a/gui-apps/tessen/tessen-2.1.3.ebuild b/gui-apps/tessen/tessen-2.1.3.ebuild
deleted file mode 100644
index 84ab282f5..000000000
--- a/gui-apps/tessen/tessen-2.1.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
-HOMEPAGE="https://github.com/ayushnix/tessen"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
-else
- SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+pass gopass bemenu wofi rofi"
-
-REQUIRED_USE="|| ( pass gopass )"
-
-DEPEND="app-text/scdoc"
-RDEPEND="${DEPEND}
- pass? ( app-admin/pass )
- gopass? ( app-admin/gopass )"
-BDEPEND=""
-
-pkg_postinst() {
- optfeature "autotype support" gui-apps/wtype
- optfeature "clipboard support" gui-apps/wl-clipboard
- optfeature "URL opening support" x11-misc/xdg-utils
- optfeature "OTP support" app-admin/pass-otp
- optfeature "notifications support" x11-libs/libnotify
-}
diff --git a/gui-apps/tessen/tessen-2.2.1.ebuild b/gui-apps/tessen/tessen-2.2.1.ebuild
deleted file mode 100644
index 6a1cbe724..000000000
--- a/gui-apps/tessen/tessen-2.2.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
-HOMEPAGE="https://github.com/ayushnix/tessen"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
-else
- SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="app-text/scdoc"
-RDEPEND="${DEPEND}
- || ( app-admin/pass
- app-admin/gopass )"
-BDEPEND=""
-
-pkg_postinst() {
- optfeature "autotype support" gui-apps/wtype
- optfeature "clipboard support" gui-apps/wl-clipboard
- optfeature "URL opening support" x11-misc/xdg-utils
- optfeature "OTP support" app-admin/pass-otp
- optfeature "notifications support" x11-libs/libnotify
-}
diff --git a/gui-apps/tessen/tessen-9999.ebuild b/gui-apps/tessen/tessen-9999.ebuild
deleted file mode 100644
index 84ab282f5..000000000
--- a/gui-apps/tessen/tessen-9999.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
-HOMEPAGE="https://github.com/ayushnix/tessen"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ayushnix/${PN}.git"
-else
- SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+pass gopass bemenu wofi rofi"
-
-REQUIRED_USE="|| ( pass gopass )"
-
-DEPEND="app-text/scdoc"
-RDEPEND="${DEPEND}
- pass? ( app-admin/pass )
- gopass? ( app-admin/gopass )"
-BDEPEND=""
-
-pkg_postinst() {
- optfeature "autotype support" gui-apps/wtype
- optfeature "clipboard support" gui-apps/wl-clipboard
- optfeature "URL opening support" x11-misc/xdg-utils
- optfeature "OTP support" app-admin/pass-otp
- optfeature "notifications support" x11-libs/libnotify
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/
2024-03-06 1:09 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-03-06 1:06 ` Julien Roy
0 siblings, 0 replies; 11+ messages in thread
From: Julien Roy @ 2024-03-06 1:06 UTC (permalink / raw
To: gentoo-commits
commit: a6bcd2bdb142846905c703da8321d17d187f97f5
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Mar 6 00:59:52 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Mar 6 00:59:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a6bcd2bd
gui-apps/tessen: drop myself as a maintainer
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/tessen/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/gui-apps/tessen/metadata.xml b/gui-apps/tessen/metadata.xml
index e97e3a8d8c..07de0dd23d 100644
--- a/gui-apps/tessen/metadata.xml
+++ b/gui-apps/tessen/metadata.xml
@@ -1,10 +1,7 @@
<?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>
+ <!-- maintained-needed -->
<upstream>
<maintainer>
<name>ayushnix</name>
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-03-06 1:06 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-03 19:51 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/tessen/ Julien Roy
-- strict thread matches above, loose matches on Subject: below --
2022-04-04 23:27 Julien Roy
2022-04-05 0:00 Julien Roy
2022-04-05 21:08 Julien Roy
2022-11-29 21:19 Julien Roy
2022-12-22 3:52 Julien Roy
2023-04-10 2:43 Julien Roy
2023-04-10 2:43 Julien Roy
2023-04-14 21:09 Julien Roy
2023-04-14 21:09 Julien Roy
2024-03-06 1:09 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-03-06 1:06 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox