public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Johannes Huber" <johu@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gtypist/
Date: Sun, 20 May 2018 11:51:34 +0000 (UTC)	[thread overview]
Message-ID: <1526816960.364ea486a88f4f6abd602d5659b545285d926f8a.johu@gentoo> (raw)

commit:     364ea486a88f4f6abd602d5659b545285d926f8a
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 11:49:20 2018 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 20 11:49:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364ea486

app-misc/gtypist: Remove 2.9.1

Uses deprecated EAPI 4 and overshadowed by 2.9.5.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-misc/gtypist/Manifest             |  1 -
 app-misc/gtypist/gtypist-2.9.1.ebuild | 67 -----------------------------------
 2 files changed, 68 deletions(-)

diff --git a/app-misc/gtypist/Manifest b/app-misc/gtypist/Manifest
index 9f1fcacdfa7..5e96602f39b 100644
--- a/app-misc/gtypist/Manifest
+++ b/app-misc/gtypist/Manifest
@@ -1,4 +1,3 @@
 DIST colemak.typ 8922 BLAKE2B e3c422e9172e215406a5165a44c51c38f3372c9988f1bafdb537463a9a3209f1759a312c2a5d316ec3a2a0b39563521b87aa6944cdd0b4cf94c960cbe70c7ca3 SHA512 f2c2816836c83d7b640f7f703a4924c62ff0746e0d4cf2a2ca36d434017770272518b835ea273815c93ab9df1c0e4d142f5fea1e5f0b1484ecdc652a53bdc499
-DIST gtypist-2.9.1.tar.xz 954920 BLAKE2B 3d2a110ac45455f893669379dc4527e8e25c16c31825f08e5a80f9833ee42c767e8b1607f168e4a0e1d94f9c7b41b7efda0f9f696a78efc0c0c7f1212bbd1c25 SHA512 dd5d96882c1fa9c786e30d21ab3424be25caecf2850a00edee531ba58aba026efedb12ca8edf34a52033bd0ba28b25ae6a62590e938d7f86124097e7e166e8d9
 DIST gtypist-2.9.2.tar.xz 956252 BLAKE2B e9b5ff106c9b102a012d5dd9d9f64b64f07c8ef05090732685b277851c76b0eabc9eec38f1021b983cfc790d46e72de4a064f5ea3b956733b0039aaa60eac349 SHA512 6191735c383aeedf3017f9bcd1897d35b2f40ea9de74e94d5c544708e4eca86585ce11984ace75945ac5b61e0f5b73c0f2461c55a6dd3b5d2833b4ceeee90c3f
 DIST gtypist-2.9.5.tar.xz 929356 BLAKE2B d83506ee8ab26290fae47f98aed4e5e63260f39d5391a9a735d009f34a787cd670b034375c946c7562545b84ed4655d51c385209d676de76cf4891ead9845ea9 SHA512 d6891cd58d23f9b023aec97dc825cb15f7371ab18e82133b9a284d3329b1526bda8e1c5d7225f335c5ec673280cbbe3ad92471eeb15db4ecf29e7feffe27e095

diff --git a/app-misc/gtypist/gtypist-2.9.1.ebuild b/app-misc/gtypist/gtypist-2.9.1.ebuild
deleted file mode 100644
index 6e51a0c171b..00000000000
--- a/app-misc/gtypist/gtypist-2.9.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils elisp-common
-
-DESCRIPTION="Universal typing tutor"
-HOMEPAGE="https://www.gnu.org/software/gtypist/"
-SRC_URI="mirror://gnu/gtypist/${P}.tar.xz
-	http://colemak.com/pub/learn/colemak.typ"
-
-LICENSE="GPL-2 public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
-IUSE="nls emacs xemacs"
-
-DEPEND=">=sys-libs/ncurses-5.2
-	emacs? ( virtual/emacs )
-	xemacs? ( !emacs? ( app-editors/xemacs app-xemacs/fsf-compat ) )"
-
-RDEPEND="${DEPEND}"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_unpack() {
-	unpack ${P}.tar.xz
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-2.8.3-xemacs-compat.patch
-}
-
-src_configure() {
-	local lispdir=""
-	if use emacs; then
-		lispdir="${SITELISP}/${PN}"
-		einfo "Configuring to build with GNU Emacs support"
-	elif use xemacs; then
-		lispdir="${EPREFIX}/usr/lib/xemacs/site-packages/lisp/${PN}"
-		einfo "Configuring to build with XEmacs support"
-	fi
-
-	econf $(use_enable nls) \
-		EMACS=$(usev emacs || usev xemacs || echo no) \
-		--with-lispdir="${lispdir}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-
-	insinto /usr/share/gtypist
-	doins "${DISTDIR}"/colemak.typ
-
-	if use emacs; then
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


             reply	other threads:[~2018-05-20 11:51 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-20 11:51 Johannes Huber [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-29  2:45 [gentoo-commits] repo/gentoo:master commit in: app-misc/gtypist/ Sam James
2024-10-28 21:30 Sam James
2024-10-28 21:30 Sam James
2021-12-21  3:39 Yixun Lan
2021-04-23 16:15 Sam James
2020-05-05 16:59 Mike Gilbert
2020-05-05  3:09 Mike Gilbert
2018-05-20 11:51 Johannes Huber
2018-05-20 11:51 Johannes Huber
2017-12-10 14:16 David Seifert
2017-10-24 12:47 Jonas Stein

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1526816960.364ea486a88f4f6abd602d5659b545285d926f8a.johu@gentoo \
    --to=johu@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox