public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-10 20:14 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-10 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     b84728e6967d5fe54c62cf73ae51fff582d42483
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 10 20:13:30 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jul 10 20:13:35 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84728e6

app-misc/votrify: Package the election verification tool

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  1 +
 app-misc/votrify/metadata.xml     |  8 ++++++++
 app-misc/votrify/votrify-1.ebuild | 36 ++++++++++++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
new file mode 100644
index 00000000000..20f81a5828d
--- /dev/null
+++ b/app-misc/votrify/Manifest
@@ -0,0 +1 @@
+DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a82210c16e44bee8f71b690c7dba5acf48a39beff0189106db1fe141ef1ec30d68f25573a19a53c12618d346 SHA512 14fdb4ee185d96f416b47df7b29175cebc6e003aca7c1faf927b258f7dbe39b7ed69c4defb25900c6856b6e9abde3b03a69ca02152755d8532708b6cfb7f51a0

diff --git a/app-misc/votrify/metadata.xml b/app-misc/votrify/metadata.xml
new file mode 100644
index 00000000000..0319eec4c8b
--- /dev/null
+++ b/app-misc/votrify/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-misc/votrify/votrify-1.ebuild b/app-misc/votrify/votrify-1.ebuild
new file mode 100644
index 00000000000..f067073ac0c
--- /dev/null
+++ b/app-misc/votrify/votrify-1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify"
+SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-misc/gentoo-elections"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		make-confirmation.py || die
+
+	# update script names
+	sed -i -e 's:\(./\)\?\(make-confirmation\|verify-confirmations\).py:votrify-\2:g' \
+		README.rst || die
+
+	python_fix_shebang *.py
+}
+
+src_install() {
+	newbin make-confirmation.py votrify-make-confirmation
+	newbin verify-confirmations.py votrify-verify-confirmations
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-12 13:03 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-12 13:03 UTC (permalink / raw
  To: gentoo-commits

commit:     90362928c2dd6d13c7435d1d4ac962fc042a65fa
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 13:02:47 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 13:03:43 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90362928

app-misc/votrify: Bump to v2

Now with friendly wrappers for Council 2019 election.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  1 +
 app-misc/votrify/votrify-2.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index 20f81a5828d..84bdc7053b1 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -1 +1,2 @@
 DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a82210c16e44bee8f71b690c7dba5acf48a39beff0189106db1fe141ef1ec30d68f25573a19a53c12618d346 SHA512 14fdb4ee185d96f416b47df7b29175cebc6e003aca7c1faf927b258f7dbe39b7ed69c4defb25900c6856b6e9abde3b03a69ca02152755d8532708b6cfb7f51a0
+DIST votrify-2.tar.gz 9095 BLAKE2B 801c9ad89f93349ce6ad0d9421e9a968a511d9699454c91cc713dd3a133c4f87666de3bc3905041999a5090eb5794d6ceed89aabc997e6950d2b5a4b4bb185cc SHA512 8c3795520d6ee5d34c8aa649a24309e30da8843bcddbfc8ff0b822eab5529a621d9fa475dc6714a6de0ed1d229d3a949870666967448a23036d28af5e7da00ab

diff --git a/app-misc/votrify/votrify-2.ebuild b/app-misc/votrify/votrify-2.ebuild
new file mode 100644
index 00000000000..278667874da
--- /dev/null
+++ b/app-misc/votrify/votrify-2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify"
+SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-misc/gentoo-elections"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		votrify-make-confirmation || die
+
+	python_fix_shebang votrify-{make,verify}-*
+}
+
+make_wrappers() {
+	local election=${1}
+
+	newbin - "votrify-${election}-make" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-make.bash.in || die)
+	newbin - "votrify-${election}-verify" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-verify.bash.in || die)
+}
+
+src_install() {
+	dobin votrify-{make,verify}-*
+	make_wrappers council-201906
+	einstalldocs
+}
+
+pkg_postinst() {
+	elog "In order to interactively create confirmation for Council 2019 election:"
+	elog "  votrify-council-201906-make"
+	elog
+	elog "In order to verify the results for Council 2019 election:"
+	elog "  votrify-council-201906-verify"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-12 17:50 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-12 17:50 UTC (permalink / raw
  To: gentoo-commits

commit:     622467f2d4781537a54e13a65dfc94ff4155bd61
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 17:50:17 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 17:50:17 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=622467f2

app-misc/votrify: Bump to v3

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  1 +
 app-misc/votrify/votrify-3.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index 84bdc7053b1..5bb9256fc18 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -1,2 +1,3 @@
 DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a82210c16e44bee8f71b690c7dba5acf48a39beff0189106db1fe141ef1ec30d68f25573a19a53c12618d346 SHA512 14fdb4ee185d96f416b47df7b29175cebc6e003aca7c1faf927b258f7dbe39b7ed69c4defb25900c6856b6e9abde3b03a69ca02152755d8532708b6cfb7f51a0
 DIST votrify-2.tar.gz 9095 BLAKE2B 801c9ad89f93349ce6ad0d9421e9a968a511d9699454c91cc713dd3a133c4f87666de3bc3905041999a5090eb5794d6ceed89aabc997e6950d2b5a4b4bb185cc SHA512 8c3795520d6ee5d34c8aa649a24309e30da8843bcddbfc8ff0b822eab5529a621d9fa475dc6714a6de0ed1d229d3a949870666967448a23036d28af5e7da00ab
+DIST votrify-3.tar.gz 9153 BLAKE2B fdff14dd7332bd6688cb2d04d87e7cf0888aa881cac6a98961cc544182869b190ac8591545c773e7a14293ff0fac7efd646be3cc7f8d059a8e45b709051eae69 SHA512 bde636cb238e114814f1246f49c9b5f363d7c9255da4cf2f5da6cb8da19f1b970e0027b630f21b0166c73de770e5bc931b811c3326ccc790db6d1d873731ef9e

diff --git a/app-misc/votrify/votrify-3.ebuild b/app-misc/votrify/votrify-3.ebuild
new file mode 100644
index 00000000000..278667874da
--- /dev/null
+++ b/app-misc/votrify/votrify-3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify"
+SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-misc/gentoo-elections"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		votrify-make-confirmation || die
+
+	python_fix_shebang votrify-{make,verify}-*
+}
+
+make_wrappers() {
+	local election=${1}
+
+	newbin - "votrify-${election}-make" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-make.bash.in || die)
+	newbin - "votrify-${election}-verify" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-verify.bash.in || die)
+}
+
+src_install() {
+	dobin votrify-{make,verify}-*
+	make_wrappers council-201906
+	einstalldocs
+}
+
+pkg_postinst() {
+	elog "In order to interactively create confirmation for Council 2019 election:"
+	elog "  votrify-council-201906-make"
+	elog
+	elog "In order to verify the results for Council 2019 election:"
+	elog "  votrify-council-201906-verify"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-12 17:59 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-12 17:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1753b97b925faccbbb446d0fb7ab228dcbf17fa8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 17:55:27 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 17:59:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1753b97b

app-misc/votrify: Bump to v4

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  1 +
 app-misc/votrify/votrify-4.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index 5bb9256fc18..ec855c97614 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -1,3 +1,4 @@
 DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a82210c16e44bee8f71b690c7dba5acf48a39beff0189106db1fe141ef1ec30d68f25573a19a53c12618d346 SHA512 14fdb4ee185d96f416b47df7b29175cebc6e003aca7c1faf927b258f7dbe39b7ed69c4defb25900c6856b6e9abde3b03a69ca02152755d8532708b6cfb7f51a0
 DIST votrify-2.tar.gz 9095 BLAKE2B 801c9ad89f93349ce6ad0d9421e9a968a511d9699454c91cc713dd3a133c4f87666de3bc3905041999a5090eb5794d6ceed89aabc997e6950d2b5a4b4bb185cc SHA512 8c3795520d6ee5d34c8aa649a24309e30da8843bcddbfc8ff0b822eab5529a621d9fa475dc6714a6de0ed1d229d3a949870666967448a23036d28af5e7da00ab
 DIST votrify-3.tar.gz 9153 BLAKE2B fdff14dd7332bd6688cb2d04d87e7cf0888aa881cac6a98961cc544182869b190ac8591545c773e7a14293ff0fac7efd646be3cc7f8d059a8e45b709051eae69 SHA512 bde636cb238e114814f1246f49c9b5f363d7c9255da4cf2f5da6cb8da19f1b970e0027b630f21b0166c73de770e5bc931b811c3326ccc790db6d1d873731ef9e
+DIST votrify-4.tar.gz 9184 BLAKE2B 78149b3e53a830c405de70b0dff301eb4467489a59af8de76fade98eeeacc9ae78cc229db23eef26355579a9944917074419e2f38eb59eb0cae6d314985d0383 SHA512 1639fd6b6e96fb767088fb4b3be4d2d09cb0f6a12bdd745d610b6853ff2f585f8100523e92ee75d7800fe54cb42a5c716bbefe57d85395627e8c67d75e45aae1

diff --git a/app-misc/votrify/votrify-4.ebuild b/app-misc/votrify/votrify-4.ebuild
new file mode 100644
index 00000000000..278667874da
--- /dev/null
+++ b/app-misc/votrify/votrify-4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify"
+SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-misc/gentoo-elections"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		votrify-make-confirmation || die
+
+	python_fix_shebang votrify-{make,verify}-*
+}
+
+make_wrappers() {
+	local election=${1}
+
+	newbin - "votrify-${election}-make" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-make.bash.in || die)
+	newbin - "votrify-${election}-verify" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-verify.bash.in || die)
+}
+
+src_install() {
+	dobin votrify-{make,verify}-*
+	make_wrappers council-201906
+	einstalldocs
+}
+
+pkg_postinst() {
+	elog "In order to interactively create confirmation for Council 2019 election:"
+	elog "  votrify-council-201906-make"
+	elog
+	elog "In order to verify the results for Council 2019 election:"
+	elog "  votrify-council-201906-verify"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-12 18:04 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-12 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     0d921fb9c272d16408469d503a60a7a719bcab98
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 18:01:49 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 18:01:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d921fb9

app-misc/votrify: Bump to v5

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  1 +
 app-misc/votrify/votrify-5.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index ec855c97614..409d9a85f16 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -2,3 +2,4 @@ DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a8221
 DIST votrify-2.tar.gz 9095 BLAKE2B 801c9ad89f93349ce6ad0d9421e9a968a511d9699454c91cc713dd3a133c4f87666de3bc3905041999a5090eb5794d6ceed89aabc997e6950d2b5a4b4bb185cc SHA512 8c3795520d6ee5d34c8aa649a24309e30da8843bcddbfc8ff0b822eab5529a621d9fa475dc6714a6de0ed1d229d3a949870666967448a23036d28af5e7da00ab
 DIST votrify-3.tar.gz 9153 BLAKE2B fdff14dd7332bd6688cb2d04d87e7cf0888aa881cac6a98961cc544182869b190ac8591545c773e7a14293ff0fac7efd646be3cc7f8d059a8e45b709051eae69 SHA512 bde636cb238e114814f1246f49c9b5f363d7c9255da4cf2f5da6cb8da19f1b970e0027b630f21b0166c73de770e5bc931b811c3326ccc790db6d1d873731ef9e
 DIST votrify-4.tar.gz 9184 BLAKE2B 78149b3e53a830c405de70b0dff301eb4467489a59af8de76fade98eeeacc9ae78cc229db23eef26355579a9944917074419e2f38eb59eb0cae6d314985d0383 SHA512 1639fd6b6e96fb767088fb4b3be4d2d09cb0f6a12bdd745d610b6853ff2f585f8100523e92ee75d7800fe54cb42a5c716bbefe57d85395627e8c67d75e45aae1
+DIST votrify-5.tar.gz 9192 BLAKE2B 5df0ccd0b5a843b384e002c2bd1001df06cb5bcf039f10c689abeda07f1a05c545a917b0a42bd78c06c537eacca58ef7b4c2920a0fe6809f4450d4c98ee2fade SHA512 3d441eb42f860e4e571541300a04c1a52a01abbe20f76615adc1c9764bafbff35faf0f1dbe9f9267ad3c4dc0e4cb4bc715b87e2104cdef8997e7918ab834bb5d

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
new file mode 100644
index 00000000000..278667874da
--- /dev/null
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify"
+SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-misc/gentoo-elections"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		votrify-make-confirmation || die
+
+	python_fix_shebang votrify-{make,verify}-*
+}
+
+make_wrappers() {
+	local election=${1}
+
+	newbin - "votrify-${election}-make" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-make.bash.in || die)
+	newbin - "votrify-${election}-verify" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-verify.bash.in || die)
+}
+
+src_install() {
+	dobin votrify-{make,verify}-*
+	make_wrappers council-201906
+	einstalldocs
+}
+
+pkg_postinst() {
+	elog "In order to interactively create confirmation for Council 2019 election:"
+	elog "  votrify-council-201906-make"
+	elog
+	elog "In order to verify the results for Council 2019 election:"
+	elog "  votrify-council-201906-verify"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-20 18:55 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-20 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     932242a6ec5d6767e28c8a6a2187081cfe9df417
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 18:48:22 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 18:48:22 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=932242a6

app-misc/votrify: Fix missing deps & REQUIRED_USE

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 278667874da..9b8d0b51538 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -14,8 +14,10 @@ LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
-RDEPEND="app-misc/gentoo-elections"
+RDEPEND="${PYTHON_DEPS}
+	app-misc/gentoo-elections"
 
 src_configure() {
 	# update default location for election scripts


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-20 18:55 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-07-20 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     96e6d4f24621731b72babe13e5cc2cb98a8de8e4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 20 18:49:06 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 20 18:49:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96e6d4f2

app-misc/votrify: Drop old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/Manifest         |  4 ---
 app-misc/votrify/votrify-1.ebuild | 36 ---------------------------
 app-misc/votrify/votrify-2.ebuild | 51 ---------------------------------------
 app-misc/votrify/votrify-3.ebuild | 51 ---------------------------------------
 app-misc/votrify/votrify-4.ebuild | 51 ---------------------------------------
 5 files changed, 193 deletions(-)

diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index 409d9a85f16..a6062567373 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -1,5 +1 @@
-DIST votrify-1.tar.gz 6936 BLAKE2B 7c9a5668842c5b1783e5c8b2341d42aa21257b96a82210c16e44bee8f71b690c7dba5acf48a39beff0189106db1fe141ef1ec30d68f25573a19a53c12618d346 SHA512 14fdb4ee185d96f416b47df7b29175cebc6e003aca7c1faf927b258f7dbe39b7ed69c4defb25900c6856b6e9abde3b03a69ca02152755d8532708b6cfb7f51a0
-DIST votrify-2.tar.gz 9095 BLAKE2B 801c9ad89f93349ce6ad0d9421e9a968a511d9699454c91cc713dd3a133c4f87666de3bc3905041999a5090eb5794d6ceed89aabc997e6950d2b5a4b4bb185cc SHA512 8c3795520d6ee5d34c8aa649a24309e30da8843bcddbfc8ff0b822eab5529a621d9fa475dc6714a6de0ed1d229d3a949870666967448a23036d28af5e7da00ab
-DIST votrify-3.tar.gz 9153 BLAKE2B fdff14dd7332bd6688cb2d04d87e7cf0888aa881cac6a98961cc544182869b190ac8591545c773e7a14293ff0fac7efd646be3cc7f8d059a8e45b709051eae69 SHA512 bde636cb238e114814f1246f49c9b5f363d7c9255da4cf2f5da6cb8da19f1b970e0027b630f21b0166c73de770e5bc931b811c3326ccc790db6d1d873731ef9e
-DIST votrify-4.tar.gz 9184 BLAKE2B 78149b3e53a830c405de70b0dff301eb4467489a59af8de76fade98eeeacc9ae78cc229db23eef26355579a9944917074419e2f38eb59eb0cae6d314985d0383 SHA512 1639fd6b6e96fb767088fb4b3be4d2d09cb0f6a12bdd745d610b6853ff2f585f8100523e92ee75d7800fe54cb42a5c716bbefe57d85395627e8c67d75e45aae1
 DIST votrify-5.tar.gz 9192 BLAKE2B 5df0ccd0b5a843b384e002c2bd1001df06cb5bcf039f10c689abeda07f1a05c545a917b0a42bd78c06c537eacca58ef7b4c2920a0fe6809f4450d4c98ee2fade SHA512 3d441eb42f860e4e571541300a04c1a52a01abbe20f76615adc1c9764bafbff35faf0f1dbe9f9267ad3c4dc0e4cb4bc715b87e2104cdef8997e7918ab834bb5d

diff --git a/app-misc/votrify/votrify-1.ebuild b/app-misc/votrify/votrify-1.ebuild
deleted file mode 100644
index f067073ac0c..00000000000
--- a/app-misc/votrify/votrify-1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-
-inherit python-single-r1
-
-DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify"
-SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-misc/gentoo-elections"
-
-src_configure() {
-	# update default location for election scripts
-	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
-		make-confirmation.py || die
-
-	# update script names
-	sed -i -e 's:\(./\)\?\(make-confirmation\|verify-confirmations\).py:votrify-\2:g' \
-		README.rst || die
-
-	python_fix_shebang *.py
-}
-
-src_install() {
-	newbin make-confirmation.py votrify-make-confirmation
-	newbin verify-confirmations.py votrify-verify-confirmations
-	einstalldocs
-}

diff --git a/app-misc/votrify/votrify-2.ebuild b/app-misc/votrify/votrify-2.ebuild
deleted file mode 100644
index 278667874da..00000000000
--- a/app-misc/votrify/votrify-2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-
-inherit python-single-r1
-
-DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify"
-SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-misc/gentoo-elections"
-
-src_configure() {
-	# update default location for election scripts
-	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
-		votrify-make-confirmation || die
-
-	python_fix_shebang votrify-{make,verify}-*
-}
-
-make_wrappers() {
-	local election=${1}
-
-	newbin - "votrify-${election}-make" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-make.bash.in || die)
-	newbin - "votrify-${election}-verify" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-verify.bash.in || die)
-}
-
-src_install() {
-	dobin votrify-{make,verify}-*
-	make_wrappers council-201906
-	einstalldocs
-}
-
-pkg_postinst() {
-	elog "In order to interactively create confirmation for Council 2019 election:"
-	elog "  votrify-council-201906-make"
-	elog
-	elog "In order to verify the results for Council 2019 election:"
-	elog "  votrify-council-201906-verify"
-}

diff --git a/app-misc/votrify/votrify-3.ebuild b/app-misc/votrify/votrify-3.ebuild
deleted file mode 100644
index 278667874da..00000000000
--- a/app-misc/votrify/votrify-3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-
-inherit python-single-r1
-
-DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify"
-SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-misc/gentoo-elections"
-
-src_configure() {
-	# update default location for election scripts
-	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
-		votrify-make-confirmation || die
-
-	python_fix_shebang votrify-{make,verify}-*
-}
-
-make_wrappers() {
-	local election=${1}
-
-	newbin - "votrify-${election}-make" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-make.bash.in || die)
-	newbin - "votrify-${election}-verify" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-verify.bash.in || die)
-}
-
-src_install() {
-	dobin votrify-{make,verify}-*
-	make_wrappers council-201906
-	einstalldocs
-}
-
-pkg_postinst() {
-	elog "In order to interactively create confirmation for Council 2019 election:"
-	elog "  votrify-council-201906-make"
-	elog
-	elog "In order to verify the results for Council 2019 election:"
-	elog "  votrify-council-201906-verify"
-}

diff --git a/app-misc/votrify/votrify-4.ebuild b/app-misc/votrify/votrify-4.ebuild
deleted file mode 100644
index 278667874da..00000000000
--- a/app-misc/votrify/votrify-4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-
-inherit python-single-r1
-
-DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify"
-SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-misc/gentoo-elections"
-
-src_configure() {
-	# update default location for election scripts
-	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
-		votrify-make-confirmation || die
-
-	python_fix_shebang votrify-{make,verify}-*
-}
-
-make_wrappers() {
-	local election=${1}
-
-	newbin - "votrify-${election}-make" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-make.bash.in || die)
-	newbin - "votrify-${election}-verify" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-verify.bash.in || die)
-}
-
-src_install() {
-	dobin votrify-{make,verify}-*
-	make_wrappers council-201906
-	einstalldocs
-}
-
-pkg_postinst() {
-	elog "In order to interactively create confirmation for Council 2019 election:"
-	elog "  votrify-council-201906-make"
-	elog
-	elog "In order to verify the results for Council 2019 election:"
-	elog "  votrify-council-201906-verify"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-22 13:54 Agostino Sarubbo
  0 siblings, 0 replies; 20+ messages in thread
From: Agostino Sarubbo @ 2019-07-22 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     57213cee577ffcaa64f661792566fb1eb800db4a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 22 13:53:57 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jul 22 13:53:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57213cee

app-misc/votrify: amd64 stable wrt bug #690314

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-misc/votrify/votrify-5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 9b8d0b51538..5a470ebaf00 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-07-24  8:19 Agostino Sarubbo
  0 siblings, 0 replies; 20+ messages in thread
From: Agostino Sarubbo @ 2019-07-24  8:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8ae34bb86b6f7b088a15034909e6b81bc83d1077
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 08:19:05 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 08:19:05 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ae34bb8

app-misc/votrify: x86 stable wrt bug #690314

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 app-misc/votrify/votrify-5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 5a470ebaf00..179f0affaf9 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2019-12-08 10:20 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2019-12-08 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     d76c3725484dcd2980691ecee8250e276b453299
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 10:07:08 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 10:20:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d76c3725

app-misc/votrify: Tested on python3.8

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 179f0affaf9..9715317888e 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
+PYTHON_COMPAT=( python3_{5,6,7,8} )
 
 inherit python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2021-04-20  7:02 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2021-04-20  7:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1375a492100b5b8663bb1484fdafced80186fb19
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 20 06:55:04 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 06:55:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1375a492

app-misc/votrify: Enable py3.9

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 4815b6699fa..4c03ed94d29 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -1,8 +1,8 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-05-18  7:36 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2022-05-18  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     3b9bd5829d31679d7a26483f6b11940c1cda78fe
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 18 07:10:28 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 18 07:36:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9bd582

app-misc/votrify: Modernize

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5-r1.ebuild | 58 ++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
new file mode 100644
index 000000000000..333d87cf357d
--- /dev/null
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit python-single-r1
+
+DESCRIPTION="Tool for community verification of Gentoo elections"
+HOMEPAGE="https://github.com/mgorny/votrify/"
+SRC_URI="
+	https://github.com/mgorny/votrify/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-misc/gentoo-elections
+"
+
+src_configure() {
+	# update default location for election scripts
+	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
+		votrify-make-confirmation || die
+
+	python_fix_shebang votrify-{make,verify}-*
+}
+
+make_wrappers() {
+	local election=${1}
+
+	newbin - "votrify-${election}-make" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-make.bash.in || die)
+	newbin - "votrify-${election}-verify" \
+		< <(sed -e "s^@ELECTION@^${election}^" \
+			votrify-wrapper-verify.bash.in || die)
+}
+
+src_install() {
+	dobin votrify-{make,verify}-*
+	make_wrappers council-201906
+	einstalldocs
+}
+
+pkg_postinst() {
+	elog "In order to interactively create confirmation for Council 2019 election:"
+	elog "  votrify-council-201906-make"
+	elog
+	elog "In order to verify the results for Council 2019 election:"
+	elog "  votrify-council-201906-verify"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-05-18  7:36 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2022-05-18  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     0a0b13d6e6e6f26ce41c3841fbe647bcf8fce99f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 18 07:10:37 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 18 07:36:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a0b13d6

app-misc/votrify: Enable py3.10 & py3.11

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
index 333d87cf357d..7f231de10431 100644
--- a/app-misc/votrify/votrify-5-r1.ebuild
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-06-07  5:21 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-06-07  5:21 UTC (permalink / raw
  To: gentoo-commits

commit:     ec2921686d3aa1af70e0318665ec626f650267cf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 05:21:20 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 05:21:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec292168

app-misc/votrify: Stabilize 5-r1 amd64, #850226

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

 app-misc/votrify/votrify-5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
index 7f231de10431..24c1a49468fa 100644
--- a/app-misc/votrify/votrify-5-r1.ebuild
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-06-07  5:23 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-06-07  5:23 UTC (permalink / raw
  To: gentoo-commits

commit:     65ab365d8b9383f91186c7520f1383203370cb20
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 05:22:51 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 05:23:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ab365d

app-misc/votrify: mark ALLARCHES

Bug: https://bugs.gentoo.org/850226
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/votrify/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/votrify/metadata.xml b/app-misc/votrify/metadata.xml
index 076793e3f54b..996eb9fa78a2 100644
--- a/app-misc/votrify/metadata.xml
+++ b/app-misc/votrify/metadata.xml
@@ -5,4 +5,5 @@
 		<email>mgorny@gentoo.org</email>
 		<name>Michał Górny</name>
 	</maintainer>
+	<stabilize-allarches/>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-06-07  5:23 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-06-07  5:23 UTC (permalink / raw
  To: gentoo-commits

commit:     6b133a71cf1ba994b0431e31402cec25d0c83949
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 05:23:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 05:23:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b133a71

app-misc/votrify: add github upstream metadata

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

 app-misc/votrify/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-misc/votrify/metadata.xml b/app-misc/votrify/metadata.xml
index 996eb9fa78a2..cb57e8bc4008 100644
--- a/app-misc/votrify/metadata.xml
+++ b/app-misc/votrify/metadata.xml
@@ -6,4 +6,7 @@
 		<name>Michał Górny</name>
 	</maintainer>
 	<stabilize-allarches/>
+	<upstream>
+		<remote-id type="github">mgorny/votrify</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2022-06-07  5:23 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-06-07  5:23 UTC (permalink / raw
  To: gentoo-commits

commit:     1b9404bca0145b9c2f1bbd86ef224bd5dbe04641
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 05:23:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 05:23:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b9404bc

app-misc/votrify: Stabilize 5-r1 ALLARCHES, #850226

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

 app-misc/votrify/votrify-5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
index 24c1a49468fa..1d8d0d94c282 100644
--- a/app-misc/votrify/votrify-5-r1.ebuild
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2023-03-09  7:38 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-03-09  7:38 UTC (permalink / raw
  To: gentoo-commits

commit:     ed0ed176687d15da88899236f4af91ed8f4f51dd
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Mar  6 17:10:57 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar  9 07:35:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0ed176

app-misc/votrify: update HOMEPAGE

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/votrify/metadata.xml        | 2 +-
 app-misc/votrify/votrify-5-r1.ebuild | 4 ++--
 app-misc/votrify/votrify-5.ebuild    | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-misc/votrify/metadata.xml b/app-misc/votrify/metadata.xml
index cb57e8bc4008..f1f74f15305a 100644
--- a/app-misc/votrify/metadata.xml
+++ b/app-misc/votrify/metadata.xml
@@ -7,6 +7,6 @@
 	</maintainer>
 	<stabilize-allarches/>
 	<upstream>
-		<remote-id type="github">mgorny/votrify</remote-id>
+		<remote-id type="github">projg2/votrify</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
index 2128726838ff..3b1e35ab8a2a 100644
--- a/app-misc/votrify/votrify-5-r1.ebuild
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -8,9 +8,9 @@ PYTHON_COMPAT=( python3_{9..11} )
 inherit python-single-r1
 
 DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify/"
+HOMEPAGE="https://github.com/projg2/votrify/"
 SRC_URI="
-	https://github.com/mgorny/votrify/archive/v${PV}.tar.gz
+	https://github.com/projg2/votrify/archive/v${PV}.tar.gz
 		-> ${P}.tar.gz
 "
 

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
index 279c9bc6b841..673bbaad1dc5 100644
--- a/app-misc/votrify/votrify-5.ebuild
+++ b/app-misc/votrify/votrify-5.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_9 )
 inherit python-single-r1
 
 DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/mgorny/votrify"
-SRC_URI="https://github.com/mgorny/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/projg2/votrify"
+SRC_URI="https://github.com/projg2/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2023-05-01 12:34 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2023-05-01 12:34 UTC (permalink / raw
  To: gentoo-commits

commit:     69e60a68bdb98da49e4f69c681140c53ecb88ace
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 12:32:27 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May  1 12:32:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e60a68

app-misc/votrify: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5.ebuild | 53 ---------------------------------------
 1 file changed, 53 deletions(-)

diff --git a/app-misc/votrify/votrify-5.ebuild b/app-misc/votrify/votrify-5.ebuild
deleted file mode 100644
index 673bbaad1dc5..000000000000
--- a/app-misc/votrify/votrify-5.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_9 )
-
-inherit python-single-r1
-
-DESCRIPTION="Tool for community verification of Gentoo elections"
-HOMEPAGE="https://github.com/projg2/votrify"
-SRC_URI="https://github.com/projg2/votrify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-RDEPEND="${PYTHON_DEPS}
-	app-misc/gentoo-elections"
-
-src_configure() {
-	# update default location for election scripts
-	sed -i -e "s^os.path.dirname(__file__)^'${EPREFIX}/usr/lib'^" \
-		votrify-make-confirmation || die
-
-	python_fix_shebang votrify-{make,verify}-*
-}
-
-make_wrappers() {
-	local election=${1}
-
-	newbin - "votrify-${election}-make" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-make.bash.in || die)
-	newbin - "votrify-${election}-verify" \
-		< <(sed -e "s^@ELECTION@^${election}^" \
-			votrify-wrapper-verify.bash.in || die)
-}
-
-src_install() {
-	dobin votrify-{make,verify}-*
-	make_wrappers council-201906
-	einstalldocs
-}
-
-pkg_postinst() {
-	elog "In order to interactively create confirmation for Council 2019 election:"
-	elog "  votrify-council-201906-make"
-	elog
-	elog "In order to verify the results for Council 2019 election:"
-	elog "  votrify-council-201906-verify"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
@ 2024-03-03 16:20 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2024-03-03 16:20 UTC (permalink / raw
  To: gentoo-commits

commit:     098949e251258a57253bd7afc12001bba7687d4b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  3 16:09:48 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar  3 16:19:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098949e2

app-misc/votrify: Enable py3.12

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-misc/votrify/votrify-5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/votrify/votrify-5-r1.ebuild b/app-misc/votrify/votrify-5-r1.ebuild
index 3b1e35ab8a2a..c3e458361ede 100644
--- a/app-misc/votrify/votrify-5-r1.ebuild
+++ b/app-misc/votrify/votrify-5-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit python-single-r1
 


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

end of thread, other threads:[~2024-03-03 16:20 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-08 10:20 [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-03-03 16:20 Michał Górny
2023-05-01 12:34 Michał Górny
2023-03-09  7:38 Arthur Zamarin
2022-06-07  5:23 Sam James
2022-06-07  5:23 Sam James
2022-06-07  5:23 Sam James
2022-06-07  5:21 Sam James
2022-05-18  7:36 Michał Górny
2022-05-18  7:36 Michał Górny
2021-04-20  7:02 Michał Górny
2019-07-24  8:19 Agostino Sarubbo
2019-07-22 13:54 Agostino Sarubbo
2019-07-20 18:55 Michał Górny
2019-07-20 18:55 Michał Górny
2019-07-12 18:04 Michał Górny
2019-07-12 17:59 Michał Górny
2019-07-12 17:50 Michał Górny
2019-07-12 13:03 Michał Górny
2019-07-10 20:14 Michał Górny

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