public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2015-12-13  8:21 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2015-12-13  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     1a2e3a58775b0d5c74b00567f1da79555f776771
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 08:21:01 2015 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 08:21:01 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2e3a58

sys-auth/otpcalc: Fix out-of-bounds read and other changes.

Port a patch to the extract() function from the skey patchset, fixing
an out-of-bounds read. Move patches from FILESDIR into a distfile.
Add slot 0 to dev-libs/openssl dependency. Update ebuild to EAPI 6.

Package-Manager: portage-2.2.26

 sys-auth/otpcalc/Manifest               |  1 +
 sys-auth/otpcalc/otpcalc-0.97-r7.ebuild | 49 +++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/sys-auth/otpcalc/Manifest b/sys-auth/otpcalc/Manifest
index 36425b6..1121735 100644
--- a/sys-auth/otpcalc/Manifest
+++ b/sys-auth/otpcalc/Manifest
@@ -1 +1,2 @@
 DIST otpCalc-0.97.tar.gz 123704 SHA256 e2c19fa6178ed42f0576650db6f94942cac366feadf82c2a679b35197c65f745 SHA512 5d22bd01fe90b32801d6f1c5ac3105036c14ac8197dda3c8454974ec72830a5f8cd693bd0520a51defdb0a7c7703483770410ba560436168826f8b6133a2524f WHIRLPOOL f73c745e336e9196003869c76cbf30a69dd94fde2549a2cd3391de531b36e36504e4d5c779159f254c425f69381be3bae05f0cdd13a1a920d593f82db0052459
+DIST otpcalc-0.97-patches-1.tar.xz 4384 SHA256 596dc03c86ed1552f3527c0649a54a98727b237c79f094d69756b2dd25165706 SHA512 950b2df68acf377750710b0b9578b431b4aa745414a494b87062fffa559485cc4117bb08e68f22a79781047cfd2682082e30b1db81cddc5a3448bc285c5553bf WHIRLPOOL d6e6d541c5e1c30ea7aa160b86c05bfba1265f314141040cc345824184beb67ac6d4d9530e3b4175f09113712dc6a34bbb15a41caecb427a980c71e20e04da11

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r7.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r7.ebuild
new file mode 100644
index 0000000..f673026
--- /dev/null
+++ b/sys-auth/otpcalc/otpcalc-0.97-r7.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A One Time Password and S/Key calculator for X"
+HOMEPAGE="http://killa.net/infosec/otpCalc/"
+SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
+	https://dev.gentoo.org/~ulm/distfiles/${P}-patches-1.tar.xz"
+
+LICENSE="GPL-2+" # bundled crypto functions are not used
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="x11-libs/gtk+:2
+	dev-libs/openssl:0"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+S="${WORKDIR}/otpCalc-${PV}"
+
+src_prepare() {
+	eapply ../patch
+	eapply_user
+
+	# override hardcoded FLAGS
+	sed -i \
+		-e 's:$(CC) $(CFLAGS) $^:$(CC) $(LDFLAGS) $(CFLAGS) $^:' \
+		-e "s#-s -O3#${CFLAGS}#g" \
+		Makefile.in || die
+
+	tc-export CC
+}
+
+src_compile() {
+	emake otpCalc otpCalc.1
+}
+
+src_install() {
+	dobin otpCalc
+	dosym otpCalc /usr/bin/otpcalc
+	doman otpCalc.1
+	newman - otpcalc.1 <<< ".so man1/otpCalc.1"
+	domenu "${FILESDIR}/${PN}.desktop"
+	dodoc BUGS ChangeLog TODO
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2015-12-13 10:39 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2015-12-13 10:39 UTC (permalink / raw
  To: gentoo-commits

commit:     9582ebef5531828cf12a9c11397cb3c3a897b049
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 10:38:30 2015 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 10:38:30 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9582ebef

sys-auth/otpcalc: Fix installation of desktop entry file.

Package-Manager: portage-2.2.26

 sys-auth/otpcalc/{otpcalc-0.97-r7.ebuild => otpcalc-0.97-r8.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r7.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
similarity index 93%
rename from sys-auth/otpcalc/otpcalc-0.97-r7.ebuild
rename to sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index f673026..76c2de4 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r7.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -44,6 +44,7 @@ src_install() {
 	dosym otpCalc /usr/bin/otpcalc
 	doman otpCalc.1
 	newman - otpcalc.1 <<< ".so man1/otpCalc.1"
-	domenu "${FILESDIR}/${PN}.desktop"
+	insinto /usr/share/applications
+	doins "${FILESDIR}/${PN}.desktop"
 	dodoc BUGS ChangeLog TODO
 }


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2016-03-06 12:58 Agostino Sarubbo
  0 siblings, 0 replies; 18+ messages in thread
From: Agostino Sarubbo @ 2016-03-06 12:58 UTC (permalink / raw
  To: gentoo-commits

commit:     381e4ca269b7c9bad68af4e6c513926b3039d39e
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  6 12:56:56 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Mar  6 12:58:31 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=381e4ca2

sys-auth/otpcalc: amd64 stable wrt bug #576364

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index 76c2de4..c366739 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
 
 LICENSE="GPL-2+" # bundled crypto functions are not used
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
 
 RDEPEND="x11-libs/gtk+:2
 	dev-libs/openssl:0"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2016-03-19 11:35 Agostino Sarubbo
  0 siblings, 0 replies; 18+ messages in thread
From: Agostino Sarubbo @ 2016-03-19 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     ac7f6cdf314f95339deb516e653dfdfda5f2a09d
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 11:33:19 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 11:33:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac7f6cdf

sys-auth/otpcalc: sparc stable wrt bug #576364

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index 117ab6e..c3a9acc 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
 
 LICENSE="GPL-2+" # bundled crypto functions are not used
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ppc sparc x86"
 
 RDEPEND="x11-libs/gtk+:2
 	dev-libs/openssl:0"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2016-05-26 13:21 Tobias Klausmann
  0 siblings, 0 replies; 18+ messages in thread
From: Tobias Klausmann @ 2016-05-26 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     64b8349c8cdee7858458eb360824e234e6060887
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Thu May 26 13:21:06 2016 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Thu May 26 13:21:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b8349c

sys-auth/otpcalc-0.97-r8: add alpha keyword

Gentoo-Bug: 576364

Package-Manager: portage-2.3.0_rc1

 sys-auth/otpcalc/otpcalc-0.97-r8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index c3a9acc..0766f13 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
 
 LICENSE="GPL-2+" # bundled crypto functions are not used
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc sparc x86"
+KEYWORDS="alpha amd64 ppc sparc x86"
 
 RDEPEND="x11-libs/gtk+:2
 	dev-libs/openssl:0"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2016-05-26 22:21 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2016-05-26 22:21 UTC (permalink / raw
  To: gentoo-commits

commit:     03e2a51b850358c65eadf116dc1c707845e6f1db
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu May 26 22:15:52 2016 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu May 26 22:15:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e2a51b

sys-auth/otpcalc: Remove old.

Package-Manager: portage-2.3.0_rc1

 sys-auth/otpcalc/otpcalc-0.97-r6.ebuild | 54 ---------------------------------
 1 file changed, 54 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild
deleted file mode 100644
index 7820ae8..0000000
--- a/sys-auth/otpcalc/otpcalc-0.97-r6.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A One Time Password and S/Key calculator for X"
-HOMEPAGE="http://killa.net/infosec/otpCalc/"
-SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz"
-
-LICENSE="GPL-2+" # bundled crypto functions are not used
-SLOT="0"
-KEYWORDS="alpha amd64 ppc sparc x86"
-IUSE=""
-
-RDEPEND="x11-libs/gtk+:2
-	dev-libs/openssl"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S="${WORKDIR}/otpCalc-${PV}"
-
-src_prepare() {
-	epatch \
-		"${FILESDIR}/${PN}-man-table-format.diff" \
-		"${FILESDIR}/${P}-badindex.diff" \
-		"${FILESDIR}/${PN}-crypto-proto.diff" \
-		"${FILESDIR}/${P}-gtk2-gentoo.patch" \
-		"${FILESDIR}/${P}-skey-md5.patch" \
-		"${FILESDIR}/${P}-sha1-byteorder.patch" \
-		"${FILESDIR}/${P}-gtk-deprecated.patch"
-
-	# print correct version in manpage
-	sed -i -e "s/VERSION/${PV}/g" otpCalc.man || die
-
-	# override hardcoded FLAGS
-	sed -i \
-		-e 's:$(CC) $(CFLAGS) $^:$(CC) $(LDFLAGS) $(CFLAGS) $^:' \
-		-e "s#-s -O3#${CFLAGS}#g" \
-		Makefile.in || die
-
-	tc-export CC
-}
-
-src_install() {
-	dobin otpCalc
-	dosym otpCalc /usr/bin/otpcalc
-	newman otpCalc.man otpCalc.1
-	newman - otpcalc.1 <<<".so man1/otpCalc.1"
-	domenu "${FILESDIR}/${PN}.desktop"
-	dodoc BUGS ChangeLog TODO
-}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2019-01-23  5:19 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2019-01-23  5:19 UTC (permalink / raw
  To: gentoo-commits

commit:     3e91237a5ab864eeb874cdb1a1a2899c2ec6cdbe
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 23 05:18:38 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Jan 23 05:18:38 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e91237a

sys-auth/otpcalc: Add slot operator to openssl dependency.

Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97-r8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index 5886ab3efd0..62d0ea92b74 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 ppc sparc x86"
 
 RDEPEND="x11-libs/gtk+:2
-	dev-libs/openssl:0"
+	dev-libs/openssl:0="
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2021-02-07  5:24 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2021-02-07  5:24 UTC (permalink / raw
  To: gentoo-commits

commit:     44590cad21715314b40480b71dadbd17a810b0e0
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  7 05:24:38 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Feb  7 05:24:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44590cad

sys-auth/otpcalc: Update HOMEPAGE and SRC_URI

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97-r8.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
index f418eb8944e..53da607dd20 100644
--- a/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97-r8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,8 +6,8 @@ EAPI=6
 inherit toolchain-funcs
 
 DESCRIPTION="A One Time Password and S/Key calculator for X"
-HOMEPAGE="http://killa.net/infosec/otpCalc/"
-SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
+HOMEPAGE="http://www.killa.net/infosec/otpCalc/"
+SRC_URI="http://www.killa.net/infosec/otpCalc/otpCalc-${PV}.tar.gz
 	https://dev.gentoo.org/~ulm/distfiles/${P}-patches-1.tar.xz"
 
 LICENSE="GPL-2+" # bundled crypto functions are not used


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2021-02-21 18:26 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2021-02-21 18:26 UTC (permalink / raw
  To: gentoo-commits

commit:     949c1f25db78cd66177ae3289c9b951227893e87
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 18:25:48 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 18:26:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=949c1f25

sys-auth/otpcalc: Version bump to 0.97.9

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/Manifest              |  1 +
 sys-auth/otpcalc/otpcalc-0.97.9.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/sys-auth/otpcalc/Manifest b/sys-auth/otpcalc/Manifest
index 0962c93e2d5..656180c563d 100644
--- a/sys-auth/otpcalc/Manifest
+++ b/sys-auth/otpcalc/Manifest
@@ -1,2 +1,3 @@
 DIST otpCalc-0.97.tar.gz 123704 BLAKE2B 197dd2dafa634a2049ec7355e89bfe3a7fb2792560c133509477d073b73d754f9a1dc5c634010db48118c486dedc4933114a5e93671fbb27f3fa4a4a3140fad1 SHA512 5d22bd01fe90b32801d6f1c5ac3105036c14ac8197dda3c8454974ec72830a5f8cd693bd0520a51defdb0a7c7703483770410ba560436168826f8b6133a2524f
 DIST otpcalc-0.97-patches-1.tar.xz 4384 BLAKE2B 3bdf043c6b0101f4c28bd90a2c7da997e64e9a794d517484e08809d47f46feacfb764ec76f58c205e71dfaef6c25868bcaa4e5fe54bd45c0d7d5958c83ab488e SHA512 950b2df68acf377750710b0b9578b431b4aa745414a494b87062fffa559485cc4117bb08e68f22a79781047cfd2682082e30b1db81cddc5a3448bc285c5553bf
+DIST otpcalc-0.97.9.tar.bz2 57967 BLAKE2B c4962944808a526f18554e8dd6c3fd3777097c6f96d7a9a998df664697eedd848a3bed8196abdef0edfde155958a498392412b3633c50af91feb3335e5a1bd20 SHA512 f06bb54f38c5b63a1f63055a83e1f3e6bd3a0578458b3c1b8903566441eaaa9ed29c88d929ffdccba1f5ff5e9e5f5f0fc64a73e699154e502ca1d608a7c6d4b8

diff --git a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
new file mode 100644
index 00000000000..7405bc0c014
--- /dev/null
+++ b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg
+
+DESCRIPTION="A One Time Password and S/Key calculator for GTK+"
+HOMEPAGE="http://www.killa.net/infosec/otpCalc/
+	https://gitlab.com/ulm/otpcalc"
+SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="dev-libs/openssl:0=
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2021-03-17  2:16 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2021-03-17  2:16 UTC (permalink / raw
  To: gentoo-commits

commit:     4e51fa05370dad717d8a7131c36ff8118b2492a5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 02:15:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 02:15:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e51fa05

sys-auth/otpcalc: Stabilize 0.97.9 amd64, #776400

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
index 7405bc0c014..28fd2fac80c 100644
--- a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2021-03-17  2:19 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2021-03-17  2:19 UTC (permalink / raw
  To: gentoo-commits

commit:     9df0f61d560787ecd4ade2adcc032f0d15857ae2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 02:18:32 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 02:18:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df0f61d

sys-auth/otpcalc: Stabilize 0.97.9 x86, #776400

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
index 28fd2fac80c..417074334b7 100644
--- a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2021-03-17  9:00 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2021-03-17  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     3a7874b1fc30fc413ccebbf9e3b1f61144ed0fa7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 08:59:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 08:59:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7874b1

sys-auth/otpcalc: Stabilize 0.97.9 ppc, #776400

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
index e703e736830..039cfb2ef3b 100644
--- a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc sparc x86"
+KEYWORDS="~alpha amd64 ppc sparc x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-02-13 15:16 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2022-02-13 15:16 UTC (permalink / raw
  To: gentoo-commits

commit:     5984879afc3a11f9bbb2eb10f15e901207d38904
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 13 15:16:09 2022 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 15:16:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5984879a

sys-auth/otpcalc: Version bump to 0.98

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/Manifest            |  1 +
 sys-auth/otpcalc/otpcalc-0.98.ebuild | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/sys-auth/otpcalc/Manifest b/sys-auth/otpcalc/Manifest
index fe1f29891541..7786c5b4f13f 100644
--- a/sys-auth/otpcalc/Manifest
+++ b/sys-auth/otpcalc/Manifest
@@ -1 +1,2 @@
 DIST otpcalc-0.97.9.tar.bz2 57967 BLAKE2B c4962944808a526f18554e8dd6c3fd3777097c6f96d7a9a998df664697eedd848a3bed8196abdef0edfde155958a498392412b3633c50af91feb3335e5a1bd20 SHA512 f06bb54f38c5b63a1f63055a83e1f3e6bd3a0578458b3c1b8903566441eaaa9ed29c88d929ffdccba1f5ff5e9e5f5f0fc64a73e699154e502ca1d608a7c6d4b8
+DIST otpcalc-0.98.tar.bz2 19770 BLAKE2B 8d875ca242e0913e6224e184f09fcc246c7ba07cda7f2d86b6fc31848910e5f669c46d36155407d0c800e394ce138d38f0332ae4d00d6e0fdd9ae4d2ff6a7fad SHA512 ebf3665d2d98d4487033d0e24966623fb1c6a73b32fe5a629c3e37feac1fe06e7689b8c38f3e3a5d93b84e66516087ceeb7d9820b922f04cab56d3613ad8ccfb

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
new file mode 100644
index 000000000000..ffe25f14a955
--- /dev/null
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="A One Time Password and S/Key calculator for GTK+"
+HOMEPAGE="https://gitlab.com/otpcalc/otpcalc
+	http://www.killa.net/infosec/otpCalc/"
+SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="dev-libs/openssl:0=
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-02-16 12:23 Ulrich Müller
  0 siblings, 0 replies; 18+ messages in thread
From: Ulrich Müller @ 2022-02-16 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     3601c99702bb0766c7a293f4bc821c27268e0e12
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 16 12:22:14 2022 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Feb 16 12:23:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3601c997

sys-auth/otpcalc: Update HOMEPAGE and SRC_URI

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.97.9.ebuild | 8 ++++----
 sys-auth/otpcalc/otpcalc-0.98.ebuild   | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
index 039cfb2ef3b8..fdf8c244a6b0 100644
--- a/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.97.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,9 +6,9 @@ EAPI=7
 inherit meson xdg
 
 DESCRIPTION="A One Time Password and S/Key calculator for GTK+"
-HOMEPAGE="http://www.killa.net/infosec/otpCalc/
-	https://gitlab.com/ulm/otpcalc"
-SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
+HOMEPAGE="https://gitlab.com/otpcalc/otpcalc
+	http://www.killa.net/infosec/otpCalc/"
+SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
index ffe25f14a955..63dbdc8a8686 100644
--- a/sys-auth/otpcalc/otpcalc-0.98.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -8,7 +8,7 @@ inherit meson xdg
 DESCRIPTION="A One Time Password and S/Key calculator for GTK+"
 HOMEPAGE="https://gitlab.com/otpcalc/otpcalc
 	http://www.killa.net/infosec/otpCalc/"
-SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
+SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-04-17  8:35 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-04-17  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     b8459f454270aa1b526ac317cf14000cc67e780d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 08:34:14 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 08:34:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8459f45

sys-auth/otpcalc: Stabilize 0.98 amd64, #838913

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.98.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
index 63dbdc8a8686..369465cae232 100644
--- a/sys-auth/otpcalc/otpcalc-0.98.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-04-17  8:35 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-04-17  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     4858d0218aeea499d9f2f6dd6b9daa4293c80138
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 08:35:07 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 08:35:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4858d021

sys-auth/otpcalc: Stabilize 0.98 x86, #838913

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.98.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
index 369465cae232..d12e6ae32de8 100644
--- a/sys-auth/otpcalc/otpcalc-0.98.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-04-17 18:33 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2022-04-17 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     8c112b502bca617376940c5fd03bd54ffda95950
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 18:33:34 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 18:33:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c112b50

sys-auth/otpcalc: Stabilize 0.98 ppc, #838913

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.98.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
index d12e6ae32de8..1fcc117d4581 100644
--- a/sys-auth/otpcalc/otpcalc-0.98.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ppc ~sparc x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

* [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/
@ 2022-04-27  4:34 Arthur Zamarin
  0 siblings, 0 replies; 18+ messages in thread
From: Arthur Zamarin @ 2022-04-27  4:34 UTC (permalink / raw
  To: gentoo-commits

commit:     47ba810f7f523bd496fc900347cf6d0d536ceff5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 27 04:33:56 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 04:33:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47ba810f

sys-auth/otpcalc: Stabilize 0.98 sparc, #838913

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-0.98.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/otpcalc/otpcalc-0.98.ebuild b/sys-auth/otpcalc/otpcalc-0.98.ebuild
index 1fcc117d4581..be1abf1c2bd1 100644
--- a/sys-auth/otpcalc/otpcalc-0.98.ebuild
+++ b/sys-auth/otpcalc/otpcalc-0.98.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/otpcalc/${PN}/-/archive/${PV}/${P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ppc sparc x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"


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

end of thread, other threads:[~2022-04-27  4:34 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 12:58 [gentoo-commits] repo/gentoo:master commit in: sys-auth/otpcalc/ Agostino Sarubbo
  -- strict thread matches above, loose matches on Subject: below --
2022-04-27  4:34 Arthur Zamarin
2022-04-17 18:33 Arthur Zamarin
2022-04-17  8:35 Sam James
2022-04-17  8:35 Sam James
2022-02-16 12:23 Ulrich Müller
2022-02-13 15:16 Ulrich Müller
2021-03-17  9:00 Sam James
2021-03-17  2:19 Sam James
2021-03-17  2:16 Sam James
2021-02-21 18:26 Ulrich Müller
2021-02-07  5:24 Ulrich Müller
2019-01-23  5:19 Ulrich Müller
2016-05-26 22:21 Ulrich Müller
2016-05-26 13:21 Tobias Klausmann
2016-03-19 11:35 Agostino Sarubbo
2015-12-13 10:39 Ulrich Müller
2015-12-13  8:21 Ulrich Müller

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