From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0CA421381F1 for ; Sun, 5 Jun 2016 08:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBCC6254028; Sun, 5 Jun 2016 08:20:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 346FF254026 for ; Sun, 5 Jun 2016 08:20:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB9E634092E for ; Sun, 5 Jun 2016 08:20:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 270B2208D for ; Sun, 5 Jun 2016 08:20:05 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1465113081.16842129280e5c5ca666da0cc7cd347e80a10362.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gummi/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/gummi/gummi-9999.ebuild X-VCS-Directories: app-editors/gummi/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 16842129280e5c5ca666da0cc7cd347e80a10362 X-VCS-Branch: master Date: Sun, 5 Jun 2016 08:20:05 +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-Archives-Salt: 00a473a4-a48c-4ac9-b5fe-f7b7c69c28f1 X-Archives-Hash: c0a040a30379308111557788d10fb699 commit: 16842129280e5c5ca666da0cc7cd347e80a10362 Author: Christian Tietz mailbox org> AuthorDate: Sat Jun 4 23:42:49 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jun 5 07:51:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16842129 app-editors/gummi: drop live ebuild Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1611 Signed-off-by: Patrice Clement gentoo.org> app-editors/gummi/gummi-9999.ebuild | 54 ------------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-editors/gummi/gummi-9999.ebuild b/app-editors/gummi/gummi-9999.ebuild deleted file mode 100644 index 786b700..0000000 --- a/app-editors/gummi/gummi-9999.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools eutils - -DESCRIPTION="Simple LaTeX editor for GTK+ users" -HOMEPAGE="https://github.com/alexandervdm/gummi" - -if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/alexandervdm/gummi.git" - KEYWORDS="" -else - SRC_URI="https://github.com/alexandervdm/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="" - -LANGS="ar ca cs da de el es fr hu it nl pl pt pt_BR ro ru sv zh_CN zh_TW" - -for X in ${LANGS} ; do - IUSE="${IUSE} +linguas_${X}" -done - -RDEPEND=" - dev-libs/glib:2 - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - x11-libs/gtk+:2" - -DEPEND="${RDEPEND} - app-text/gtkspell:2 - app-text/poppler[cairo] - x11-libs/gtksourceview:2.0 - x11-libs/pango" - -DOCS=( AUTHORS ChangeLog README.md ) - -src_prepare() { - strip-linguas ${LANGS} - eautoreconf -} - -pkg_postinst() { - elog "Gummi >=0.4.8 supports spell-checking through gtkspell. Support for" - elog "additional languages can be added by installing myspell-** packages" - elog "for your language of choice." -}