public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/suite3270/
Date: Sat, 14 Sep 2019 02:41:14 +0000 (UTC)	[thread overview]
Message-ID: <1568428749.d5ce56095a91af88b6c5a55a587684689ef0006a.vapier@gentoo> (raw)

commit:     d5ce56095a91af88b6c5a55a587684689ef0006a
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 14 02:32:41 2019 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Sep 14 02:39:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ce5609

net-misc/suite3270: drop old 3.4 versions

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 net-misc/suite3270/Manifest                 |   1 -
 net-misc/suite3270/suite3270-3.4_p10.ebuild | 101 ----------------------------
 2 files changed, 102 deletions(-)

diff --git a/net-misc/suite3270/Manifest b/net-misc/suite3270/Manifest
index af20b8dced7..75a7a8b1703 100644
--- a/net-misc/suite3270/Manifest
+++ b/net-misc/suite3270/Manifest
@@ -1,4 +1,3 @@
-DIST suite3270-3.4ga10-src.tgz 3398730 BLAKE2B 4adc02b416d5fbf2facbf4e42c58a2bd3ed551ce46494ece039ef129663957632316882d5a5b28e272fa47010105a3682618b8ac2d355e745c576af74d0bb310 SHA512 d9ed4aa41c45a2e961d5c2d0c00c6b81526da64b9c1765b0c5e39cb647157026a787db2054b2feb55c57e5a458a31062141471447b1177fd46cbbeb7d71e3f28
 DIST suite3270-3.5ga10-src.tgz 3412329 BLAKE2B c9ed308cf970da150da985d76ec377c83a03041eddfcbad9baa7211776a7b68292109cccb2ec250952edb77eeca79143137eb8a94da8b774e952c3e5790c6231 SHA512 0cce1212ca7589595cd2f775d18086f231a9e6d621716be5a41123a379358d9ac08c9668de2bd6a2e401ae54d12a4905c3c260cb7ba90482bbce6790d8e3efb8
 DIST suite3270-3.5ga12-src.tgz 3412286 BLAKE2B 5602f8bbe7b916a977c97848ff9a413a873f61e1c0c62b8c118dc43703adcd4a668e3cc301f9e37a139eebeeae44aca3cdedd0c10de15870ad8ead00d783e1ef SHA512 c7cb25b5c82b0d7ccac8c3ed17317a5a5ebce24fb32dcdfcaf7158157578617a7bccc265fdb67fce0557caa9c75d1afc2d8152a06b98af43ad9a9e29b5f2a267
 DIST suite3270-3.6ga4-src.tgz 3288095 BLAKE2B 34245d6050f7d70ef6195dc669fea55eed70cb9b6c616a4bc88bc52bcfd9d837e527debc87eba4ccdc47c4a453e16749c23b9618d5bf4198e4131573f437209b SHA512 5309c4b4ad0d730033166b0bdb7638bba5fc00908776a229d5f0a131f72741897a0bf6b86dee3b1c9f3d480dc4f23e03e812d3349cec7094908c6a54a87d5ccb

diff --git a/net-misc/suite3270/suite3270-3.4_p10.ebuild b/net-misc/suite3270/suite3270-3.4_p10.ebuild
deleted file mode 100644
index 8eaf62808b2..00000000000
--- a/net-misc/suite3270/suite3270-3.4_p10.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-MY_PV=${PV/_p/ga}
-MY_P=${PN}-${MY_PV}
-SUB_PV=${PV:0:3}
-
-S=${WORKDIR}/${PN}-${SUB_PV}
-
-# only the x3270 package installs fonts
-FONT_PN="x3270"
-FONT_S=${WORKDIR}/${FONT_PN}
-
-inherit eutils font
-
-DESCRIPTION="Complete 3270 access package"
-HOMEPAGE="http://x3270.bgp.nu/"
-SRC_URI="mirror://sourceforge/x3270/${MY_P}-src.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc s390 sparc x86"
-IUSE="cjk doc ncurses ssl tcl X"
-
-RDEPEND="ssl? ( dev-libs/openssl:0= )
-	X? (
-		x11-libs/libX11
-		x11-libs/libXaw
-		x11-libs/libXmu
-		x11-libs/libXt
-	)
-	ncurses? (
-		sys-libs/ncurses:=
-		sys-libs/readline:0=
-	)
-	tcl? ( dev-lang/tcl:0 )"
-DEPEND="${RDEPEND}
-	X? (
-		x11-base/xorg-proto
-		x11-misc/xbitmaps
-		app-text/rman
-		x11-apps/mkfontdir
-		x11-apps/bdftopcf
-	)"
-
-suite3270_makelist() {
-	echo pr3287 s3270 \
-		$(usex ncurses c3270 '') \
-		$(usex tcl tcl3270 '') \
-		$(usex X x3270 '')
-}
-
-src_prepare() {
-	# Some subdirs (like c3270/x3270/s3270) install the same set of data files
-	# (they have the same contents).  Wrap that in a retry to avoid errors.
-	cat <<-EOF > _install
-	#!/bin/sh
-	for n in 1 2 3 4 5; do
-		install "\$@" && exit
-		echo "retrying ..."
-	done
-	exit 1
-	EOF
-	chmod a+rx _install
-	# Can't use the $INSTALL var as top level configure also uses it.
-	# https://sourceforge.net/p/x3270/bugs/15/
-	export ac_cv_path_install="${S}/_install"
-}
-
-src_configure() {
-	echo "${INSTALL}"
-	econf \
-		--cache-file="${S}"/config.cache \
-		--enable-s3270 \
-		--enable-pr3287 \
-		$(use_enable ncurses c3270) \
-		$(use_enable tcl tcl3270) \
-		$(use_enable X x3270) \
-		$(use_with X x) \
-		$(use_with X fontdir "${FONTDIR}")
-}
-
-src_install() {
-	use X && dodir "${FONTDIR}"
-	emake DESTDIR="${D}" install{,.man}
-
-	local p
-	for p in $(suite3270_makelist) ; do
-		cd "${S}/${p}"
-		docinto ${p}
-		dodoc README*
-		use doc && dohtml html/*
-	done
-
-	use X && font_src_install
-}
-
-pkg_postinst() { use X && font_pkg_postinst ; }
-pkg_postrm() { use X && font_pkg_postrm ; }


             reply	other threads:[~2019-09-14  2:41 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-14  2:41 Mike Frysinger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-07 14:56 [gentoo-commits] repo/gentoo:master commit in: net-misc/suite3270/ Arthur Zamarin
2025-09-06 17:39 Arthur Zamarin
2025-09-06 16:45 Michał Górny
2025-03-07  3:03 Sam James
2025-03-07  3:03 Sam James
2025-03-07  3:03 Sam James
2025-03-07  3:03 Sam James
2024-03-10  9:01 Arthur Zamarin
2024-03-10  5:42 Sam James
2024-03-10  5:42 Sam James
2024-03-10  5:42 Sam James
2024-03-10  1:59 Sam James
2023-12-03  7:34 Sam James
2023-06-10  7:08 Sam James
2023-06-09 15:27 Arthur Zamarin
2022-09-13 17:21 Sam James
2022-01-02 20:18 Mike Frysinger
2022-01-02 20:00 Mike Frysinger
2021-02-02  4:20 Sam James
2021-01-31 18:48 Sam James
2021-01-28  2:49 Sam James
2021-01-27 17:45 Sergei Trofimovich
2021-01-27  3:00 Sam James
2021-01-15  5:13 Mike Frysinger
2021-01-14 21:27 Mike Frysinger
2021-01-14 21:27 Mike Frysinger
2020-01-06  6:54 Mike Frysinger
2020-01-06  6:54 Mike Frysinger
2019-09-14  2:41 Mike Frysinger
2018-01-09 23:03 Mike Frysinger
2018-01-09 23:03 Mike Frysinger
2018-01-09 23:03 Mike Frysinger
2017-10-13 16:36 Jonas Stein
2017-01-17 20:52 Mike Frysinger
2017-01-17 20:52 Mike Frysinger
2016-12-27  7:01 Mike Frysinger
2016-01-02  5:46 Mike Frysinger
2016-01-02  5:46 Mike Frysinger
2016-01-02  5:46 Mike Frysinger
2015-10-24  6:09 Mike Frysinger
2015-09-18 19:56 Mike Frysinger
2015-09-18 19:56 Mike Frysinger
2015-08-28 17:24 Mike Frysinger
2015-08-11  3:09 Mike Frysinger

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=1568428749.d5ce56095a91af88b6c5a55a587684689ef0006a.vapier@gentoo \
    --to=vapier@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