From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1513826-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id C710F15ACFD
	for <garchives@archives.gentoo.org>; Mon,  1 May 2023 12:34:23 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 969EBE084A;
	Mon,  1 May 2023 12:34:22 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 7A0DDE084A
	for <gentoo-commits@lists.gentoo.org>; Mon,  1 May 2023 12:34:22 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 5F35D340F8E
	for <gentoo-commits@lists.gentoo.org>; Mon,  1 May 2023 12:34:21 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 84D3EA5F
	for <gentoo-commits@lists.gentoo.org>; Mon,  1 May 2023 12:34:18 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1682944347.69e60a68bdb98da49e4f69c681140c53ecb88ace.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/votrify/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-misc/votrify/votrify-5.ebuild
X-VCS-Directories: app-misc/votrify/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 69e60a68bdb98da49e4f69c681140c53ecb88ace
X-VCS-Branch: master
Date: Mon,  1 May 2023 12:34:18 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 05db4826-7ec7-40c4-8404-3315b689d19c
X-Archives-Hash: 1ac2e9d016724520994c0ad97286757d

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"
-}