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 710A71382C5 for ; Fri, 22 Jan 2021 21:50:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89EA0E0B92; Fri, 22 Jan 2021 21:50:23 +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 6A746E0B92 for ; Fri, 22 Jan 2021 21:50:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D74E334116F for ; Fri, 22 Jan 2021 21:50:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1A2553 for ; Fri, 22 Jan 2021 21:50:19 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1611352207.31c811ece88770bebd5540084d990132a0fd110f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/tkdiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/tkdiff/Manifest dev-util/tkdiff/tkdiff-5.1.ebuild X-VCS-Directories: dev-util/tkdiff/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 31c811ece88770bebd5540084d990132a0fd110f X-VCS-Branch: master Date: Fri, 22 Jan 2021 21:50:19 +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: 4b39393c-8e33-47a9-882b-12cb8797a298 X-Archives-Hash: 4981825f86d3e060ed674c8498114a33 commit: 31c811ece88770bebd5540084d990132a0fd110f Author: Alfredo Tupone gentoo org> AuthorDate: Fri Jan 22 21:50:07 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Jan 22 21:50:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c811ec dev-util/tkdiff: version bump to 5.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-util/tkdiff/Manifest | 1 + dev-util/tkdiff/tkdiff-5.1.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-util/tkdiff/Manifest b/dev-util/tkdiff/Manifest index 357bd6e3777..11a176ce11c 100644 --- a/dev-util/tkdiff/Manifest +++ b/dev-util/tkdiff/Manifest @@ -1 +1,2 @@ DIST tkdiff-4.2.tar.gz 92063 BLAKE2B 4c3d1fbbc4bc76c8a39dca454a6630b8022acf33aa11b899db8960534f3df91fa068162fd0a7f16a00c6dde697d8cfd6dbcc4157035a340e162e113ceaf102ac SHA512 6c16475b808a9ac4d51a3e0b348d12739d821743eb205281473408a722ef7329e7dee61b4e0536741fab0c88eb67b00080d84598fca5e3215d4b183a858f6984 +DIST tkdiff-5-1.zip 233467 BLAKE2B 711d5bf0ea1d919d235e5cfcb76c2597a849293652544a5bc5ed969ca8d1a9720a406504b07d382a1ae84447709984fddf627129e70f4d043648731bea54039e SHA512 76301e74a1396ae540470fd0f4b8c7b4e214bdb4027f5ed52d98e5ea48afd99971a7880d1ec54812f6f13a3f1e92c7cd0d2c4d6d0b6e098e47fd36759fe7a047 diff --git a/dev-util/tkdiff/tkdiff-5.1.ebuild b/dev-util/tkdiff/tkdiff-5.1.ebuild new file mode 100644 index 00000000000..6b7e55a3191 --- /dev/null +++ b/dev-util/tkdiff/tkdiff-5.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYP=${PN}-$(ver_rs 1- -) + +DESCRIPTION="Graphical front end to the diff program" +HOMEPAGE="http://tkdiff.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${MYP}.zip" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-lang/tk" +DEPEND="${DEPEND}" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}/${MYP}" + +src_install() { + dobin tkdiff + dodoc CHANGELOG.txt +}