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 F3E7313835A for ; Sun, 15 Nov 2020 20:03:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CED9CE0916; Sun, 15 Nov 2020 20:03:39 +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 B732CE0916 for ; Sun, 15 Nov 2020 20:03:39 +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 CB2593412AC for ; Sun, 15 Nov 2020 20:03:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0828342F for ; Sun, 15 Nov 2020 20:03:35 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1605470555.0cd6ea0f6f0d16ab338ac3c9250fb764541976e8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/tf/, games-mud/tf/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-mud/tf/files/tf-50_beta8-stdarg.patch games-mud/tf/tf-50_beta8-r2.ebuild X-VCS-Directories: games-mud/tf/ games-mud/tf/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0cd6ea0f6f0d16ab338ac3c9250fb764541976e8 X-VCS-Branch: master Date: Sun, 15 Nov 2020 20:03:35 +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: b91fd46c-a624-4127-a506-c86f69eb7feb X-Archives-Hash: 46d32b3ebc7669feb69846346953e42e commit: 0cd6ea0f6f0d16ab338ac3c9250fb764541976e8 Author: Alexey Sokolov google com> AuthorDate: Sun Nov 15 20:02:35 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 15 20:02:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd6ea0f games-mud/tf: drop old (or, rather, too new) Closes: https://github.com/gentoo/gentoo/pull/17545 Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: Alexey Sokolov asokolov.org> Signed-off-by: David Seifert gentoo.org> games-mud/tf/files/tf-50_beta8-stdarg.patch | 30 ------------- games-mud/tf/tf-50_beta8-r2.ebuild | 70 ----------------------------- 2 files changed, 100 deletions(-) diff --git a/games-mud/tf/files/tf-50_beta8-stdarg.patch b/games-mud/tf/files/tf-50_beta8-stdarg.patch deleted file mode 100644 index a34b70abe1f..00000000000 --- a/games-mud/tf/files/tf-50_beta8-stdarg.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -U5 -r a/src/tfio.c b/src/tfio.c ---- a/src/tfio.c 2007-01-13 18:12:39.000000000 -0500 -+++ b/src/tfio.c 2007-02-02 16:50:12.000000000 -0500 -@@ -495,10 +495,11 @@ - const char *q, *sval; - char *specptr, quote; - const conString *Sval; - int len, min, max, leftjust, stars; - attr_t attrs = buf->attrs; -+ va_list aq; - - if (!(flags & SP_APPEND) && buf->data) Stringtrunc(buf, 0); - while (*fmt) { - if (*fmt != '%' || *++fmt == '%') { - for (q = fmt + 1; *q && *q != '%'; q++); -@@ -520,11 +521,13 @@ - switch (*fmt) { - case 'd': case 'i': - case 'x': case 'X': case 'u': case 'o': - case 'f': case 'e': case 'E': case 'g': case 'G': - case 'p': -- vsprintf(tempbuf, spec, ap); -+ va_copy(aq, ap); -+ vsprintf(tempbuf, spec, aq); -+ va_end(aq); - Stringcat(buf, tempbuf); - /* eat the arguments used by vsprintf() */ - while (stars--) (void)va_arg(ap, int); - switch (*fmt) { - case 'd': case 'i': diff --git a/games-mud/tf/tf-50_beta8-r2.ebuild b/games-mud/tf/tf-50_beta8-r2.ebuild deleted file mode 100644 index 1009fb07dc0..00000000000 --- a/games-mud/tf/tf-50_beta8-r2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P="${P/_beta/b}" - -DESCRIPTION="A small, flexible, screen-oriented MUD client (aka TinyFugue)" -HOMEPAGE="http://tinyfugue.sourceforge.net/" -SRC_URI=" - mirror://sourceforge/tinyfugue/${MY_P}.tar.gz - http://homepage.mac.com/mikeride/abelinc/scripts/allrootpatch.txt -> tf-allrootpatch.txt - http://homepage.mac.com/mikeride/abelinc/scripts/allsrcpatch.txt -> tf-allsrcpatch.txt - doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+atcp debug doc +gmcp ipv6 +option102 ssl" - -RDEPEND=" - ssl? ( dev-libs/openssl:0= ) - dev-libs/libpcre" -DEPEND=${RDEPEND} - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${DISTDIR}"/tf-allrootpatch.txt - "${DISTDIR}"/tf-allsrcpatch.txt - "${FILESDIR}"/${P}-pcre.patch - "${FILESDIR}"/${P}-stdarg.patch -) - -src_configure() { - STRIP=: econf \ - $(use_enable atcp) \ - $(use_enable gmcp) \ - $(use_enable option102) \ - $(use_enable ssl) \ - $(use_enable debug core) \ - $(use_enable ipv6 inet6) \ - --enable-manpage -} - -src_install() { - dobin src/tf - newman src/tf.1.nroffman tf.1 - - use doc && HTML_DOCS=( ../${MY_P}-help/{*.html,commands,topics} ) - einstalldocs - - insinto /usr/share/${PN}-lib - # the application looks for this file here if /changes is called. - # see comments on bug #23274 - doins CHANGES - insopts -m0755 - doins -r tf-lib/. -} - -pkg_postinst() { - if use ipv6; then - ewarn - ewarn "You have merged TinyFugue with IPv6-support." - ewarn "Support for IPv6 is still being experimental." - ewarn "If you experience problems with connecting to hosts," - ewarn "try re-merging this package with USE="-ipv6"" - ewarn - fi -}