summaryrefslogtreecommitdiff
path: root/app-misc/votrify
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-05-01 17:20:35 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-05-01 17:20:35 +0100
commita88eb1d9b7042912d196e255eeb20e0c77f6cf47 (patch)
tree291cc788e33b3de8bf1b5e3f1fdddf315f2f5ee7 /app-misc/votrify
parentc3d14fe9accdf0b091e42f26a66ed7626ba8c24b (diff)
gentoo auto-resync : 01:05:2023 - 17:20:35
Diffstat (limited to 'app-misc/votrify')
-rw-r--r--app-misc/votrify/Manifest1
-rw-r--r--app-misc/votrify/votrify-5.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/app-misc/votrify/Manifest b/app-misc/votrify/Manifest
index 688be663ab2f..9b186c7efedd 100644
--- a/app-misc/votrify/Manifest
+++ b/app-misc/votrify/Manifest
@@ -1,4 +1,3 @@
DIST votrify-5.tar.gz 9192 BLAKE2B 5df0ccd0b5a843b384e002c2bd1001df06cb5bcf039f10c689abeda07f1a05c545a917b0a42bd78c06c537eacca58ef7b4c2920a0fe6809f4450d4c98ee2fade SHA512 3d441eb42f860e4e571541300a04c1a52a01abbe20f76615adc1c9764bafbff35faf0f1dbe9f9267ad3c4dc0e4cb4bc715b87e2104cdef8997e7918ab834bb5d
EBUILD votrify-5-r1.ebuild 1361 BLAKE2B bbea041bffe47b7689602cca2479ce87b0368d9f5087dce10e53362a671477432076d6fb9b53d9913c55195b78a7f2ec83b432786e2c67ab5a968a892e14bdba SHA512 9145319083d587cc32052dfbfe24eb2ffb8df8b56b43d6eac5f827e2f91b4696c3473e37934d00bf234f8ea1cd9596da2c8507b595ff8246fe2e695a9ec2f903
-EBUILD votrify-5.ebuild 1353 BLAKE2B 0e6ef9ce2ac720fd536f34c9c52d2e9464e85a4f5c20c16fcf59192f0e3e12706aa513218e945764285df38ec7591d18936ab029c13d041da5ccb294feddbfe8 SHA512 21fe460514c02294378a9c954cb76385e4f6b080a949b609b1d81d35e777bf9ac7d603b2299356cc459ceede8cb8c08c7f36a7e866454c0ebae497177a598f1b
MISC metadata.xml 351 BLAKE2B 7d96981218cfc5ae4d6dcdf1829abaec979416ca525e0faa77e9e6b5de245e3e651a34632982206a8b2eb86d6fa109d93cff6a968595fc82ef555b914840f61f SHA512 2e5e5e2dfbfac0b9de26ecbf2bd0bc99a24b35485721361b9d6d1040953159db22720ed30db860ecc57294d1bc211607fcaa2580475920649654e65fe2eb85d0
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"
-}