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 1EF731382C5 for ; Sun, 27 Dec 2020 14:15:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60D67E0841; Sun, 27 Dec 2020 14:15:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 474BCE0841 for ; Sun, 27 Dec 2020 14:15:15 +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 19E14340EF3 for ; Sun, 27 Dec 2020 14:15:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9554AB8 for ; Sun, 27 Dec 2020 14:15:12 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1609078510.9ba3901b85940f3ea101923e7ef0518e1a36adc7.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ding/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/ding/Manifest app-text/ding/ding-1.9.ebuild X-VCS-Directories: app-text/ding/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9ba3901b85940f3ea101923e7ef0518e1a36adc7 X-VCS-Branch: master Date: Sun, 27 Dec 2020 14:15:12 +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: 30bbaecb-250e-4ada-abbd-9d188873ebc0 X-Archives-Hash: cec1259b17b8c9aed22e320cffb2efd8 commit: 9ba3901b85940f3ea101923e7ef0518e1a36adc7 Author: Lars Wendler gentoo org> AuthorDate: Sun Dec 27 14:15:03 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Dec 27 14:15:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba3901b app-text/ding: Bump to version 1.9 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> app-text/ding/Manifest | 1 + app-text/ding/ding-1.9.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-text/ding/Manifest b/app-text/ding/Manifest index 78ec68d439e..309a55a3e1c 100644 --- a/app-text/ding/Manifest +++ b/app-text/ding/Manifest @@ -1 +1,2 @@ DIST ding-1.8.1.tar.gz 6543141 BLAKE2B 5393113bc8952553b3b5e5ee8dcd98b4cf6fec2d92069354e83b38808289053b0cc5a2c08968068f9b393b5a5e296541718c129ccbe23076ce591f6254c8293b SHA512 7d1b459d40e26482c3c16a79565cb897a492fa5807f44c5c3ed1022bcf65ba90bec9cb503cc67970742c2beeb34bd653c684e56ef5492f536254bf475d3f70a4 +DIST ding-1.9.tar.gz 7864078 BLAKE2B 9a25a2eb940b96393f556e374167a5b0aae8d26ff81de364e693f01acf79b0a5896704c39e1fe1ab2b48a875785483b2bc71339b01d3999664b78b48ecb041dc SHA512 fa5500d1ced311ba21ef8a16a25f3a3cdcebc24daacff79c05351a46cc2a1d466891caa1dec3a77ae9a4d7e59332d991974917875f967d93ac1358f5532e8a72 diff --git a/app-text/ding/ding-1.9.ebuild b/app-text/ding/ding-1.9.ebuild new file mode 100644 index 00000000000..fb609a2d281 --- /dev/null +++ b/app-text/ding/ding-1.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop xdg + +DESCRIPTION="Tk based dictionary (German-English) (incl. dictionary itself)" +HOMEPAGE="https://www-user.tu-chemnitz.de/~fri/ding/" +SRC_URI="http://wftp.tu-chemnitz.de/pub/Local/urz/ding/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-lang/tk-8.3" + +src_install() { + dobin ding + insinto /usr/share/dict + doins de-en.txt + doman ding.1 + dodoc CHANGES README.md + + doicon ding.png + domenu ding.desktop +}