From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FA4B13997D for ; Sun, 10 Nov 2019 11:05:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1A89E09C3; Sun, 10 Nov 2019 11:05:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5173E0A92 for ; Sun, 10 Nov 2019 11:05:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 620EA34CD62 for ; Sun, 10 Nov 2019 03:57:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFC6D779 for ; Sun, 10 Nov 2019 03:57:48 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573358238.9b803d4796f5c27a5c6cbc1fbc3f539339c284ab.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/elettra/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/elettra/elettra-1.0.ebuild X-VCS-Directories: app-crypt/elettra/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 9b803d4796f5c27a5c6cbc1fbc3f539339c284ab X-VCS-Branch: master Date: Sun, 10 Nov 2019 03:57:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3d42897e-3c20-4b60-9195-2fe9c4a0f854 X-Archives-Hash: 98fd51dfc8c12e31475c1ab97238a346 commit: 9b803d4796f5c27a5c6cbc1fbc3f539339c284ab Author: Aaron Bauman gentoo org> AuthorDate: Sun Nov 10 03:57:18 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Nov 10 03:57:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b803d47 app-crypt/elettra: bump EAPI and stuff Signed-off-by: Aaron Bauman gentoo.org> app-crypt/elettra/elettra-1.0.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app-crypt/elettra/elettra-1.0.ebuild b/app-crypt/elettra/elettra-1.0.ebuild index 4e47c0f1db0..c15d0571581 100644 --- a/app-crypt/elettra/elettra-1.0.ebuild +++ b/app-crypt/elettra/elettra-1.0.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 inherit toolchain-funcs MY_P="${PN}-src-${PV}" DESCRIPTION="Plausible deniable file cryptography" -HOMEPAGE="http://www.winstonsmith.info/julia/elettra/" -SRC_URI="http://www.winstonsmith.info/julia/elettra/${MY_P}.tar.gz" +HOMEPAGE="https://www.winstonsmith.info/julia/elettra/" +SRC_URI="https://www.winstonsmith.info/julia/elettra/${MY_P}.tar.gz" LICENSE="WTFPL-2" SLOT="0" @@ -17,8 +17,8 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND="sys-libs/zlib - app-crypt/mhash - dev-libs/libmcrypt" + app-crypt/mhash + dev-libs/libmcrypt" DEPEND="${RDEPEND}" @@ -31,6 +31,6 @@ src_compile() { } src_install() { - dobin elettra || die "dobin failed" - dodoc README || die "dodoc failed" + dobin elettra + dodoc README }