Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/xjobs/, sys-process/xjobs/files/
Date: Thu, 17 Sep 2020 14:56:49
Message-Id: 1600354456.113a4d88e31035b762880efdb2f1da3d1a61c123.mjo@gentoo
1 commit: 113a4d88e31035b762880efdb2f1da3d1a61c123
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 17 14:54:16 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 17 14:54:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=113a4d88
7
8 sys-process/xjobs: remove old xjobs-20190725.ebuild and its patch.
9
10 Closes: https://bugs.gentoo.org/742443
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
13
14 sys-process/xjobs/Manifest | 1 -
15 .../search-libtinfo-for-tigetstr-and-tparm.patch | 32 -------------------
16 sys-process/xjobs/xjobs-20190725.ebuild | 36 ----------------------
17 3 files changed, 69 deletions(-)
18
19 diff --git a/sys-process/xjobs/Manifest b/sys-process/xjobs/Manifest
20 index 59ad731527f..15a33044e7d 100644
21 --- a/sys-process/xjobs/Manifest
22 +++ b/sys-process/xjobs/Manifest
23 @@ -1,2 +1 @@
24 -DIST xjobs-20190725.tgz 113216 BLAKE2B 079b6e104bb160101b2c4ef11e73ff040a8efa30839a39f9c91121b4928ddeefaefa43c3a94e18c9359fb6f66862ad7554598561a4e0c7f36b8f622d9a394340 SHA512 23ead9d33ebacb1b3d7a03c72c40dfb34b6254add81b0fde9e458a4be54f6298d2ce6a0b65742ac050685212eea8c5f83d48ea98b09c3928b16e36c7447a9551
25 DIST xjobs-20200726.tgz 113795 BLAKE2B 4a6bfa405c6abf507ea9d0fce066b1547f1900687b04cf5797ced4862052596b4a32c2b24a89a7665e2253fe322ae83948d367c0ffc176bb322a0df9df0023a0 SHA512 52d84a957f53e894897770512271709bdfb1c45e51e1765cc16d96d9dc54901451d3f6ed16ed3a8ff4718e96b149fb2b53ee205d6ff1e1463f1de8b02b345705
26
27 diff --git a/sys-process/xjobs/files/search-libtinfo-for-tigetstr-and-tparm.patch b/sys-process/xjobs/files/search-libtinfo-for-tigetstr-and-tparm.patch
28 deleted file mode 100644
29 index e0600b0b7dc..00000000000
30 --- a/sys-process/xjobs/files/search-libtinfo-for-tigetstr-and-tparm.patch
31 +++ /dev/null
32 @@ -1,32 +0,0 @@
33 -From 8272978e3f90aec42101a6f254af779e20cfc0eb Mon Sep 17 00:00:00 2001
34 -From: Michael Orlitzky <michael@××××××××.com>
35 -Date: Wed, 14 Aug 2019 20:19:24 -0400
36 -Subject: [PATCH 1/1] Rename configure.in to configure.ac and search libtinfo
37 - for tigetstr/tparm.
38 -
39 ----
40 - configure.in => configure.ac | 4 ++--
41 - 1 file changed, 2 insertions(+), 2 deletions(-)
42 - rename configure.in => configure.ac (95%)
43 -
44 -diff --git a/configure.in b/configure.ac
45 -similarity index 95%
46 -rename from configure.in
47 -rename to configure.ac
48 -index 21fc034..0baa3cc 100644
49 ---- a/configure.in
50 -+++ b/configure.ac
51 -@@ -72,8 +72,8 @@ AC_CHECK_HEADER([term.h],
52 - AC_INCLUDES_DEFAULT
53 - )
54 -
55 --AC_SEARCH_LIBS(tigetstr,ncurses,)
56 --AC_SEARCH_LIBS(tparm,curses,)
57 -+AC_SEARCH_LIBS(tigetstr,ncurses tinfo)
58 -+AC_SEARCH_LIBS(tparm,curses tinfo)
59 -
60 - AC_SUBST(DEBUG)
61 - AC_SUBST(AUTOCONF)
62 ---
63 -2.21.0
64 -
65
66 diff --git a/sys-process/xjobs/xjobs-20190725.ebuild b/sys-process/xjobs/xjobs-20190725.ebuild
67 deleted file mode 100644
68 index b42479647a0..00000000000
69 --- a/sys-process/xjobs/xjobs-20190725.ebuild
70 +++ /dev/null
71 @@ -1,36 +0,0 @@
72 -# Copyright 1999-2019 Gentoo Authors
73 -# Distributed under the terms of the GNU General Public License v2
74 -
75 -EAPI=7
76 -
77 -inherit autotools
78 -
79 -DESCRIPTION="Reads commands line by line and executes them in parallel"
80 -HOMEPAGE="http://www.maier-komor.de/xjobs.html"
81 -SRC_URI="http://www.maier-komor.de/${PN}/${P}.tgz"
82 -
83 -LICENSE="GPL-2"
84 -SLOT="0"
85 -KEYWORDS="amd64 x86"
86 -IUSE="examples"
87 -
88 -BDEPEND="sys-devel/flex"
89 -
90 -# The ncurses/terminfo libraries are used to provide color and status
91 -# support; but, they're detected and enabled automagically by the build
92 -# system. Thus it would do no good to hide them behind a USE flag that
93 -# can't be turned off.
94 -DEPEND="sys-libs/ncurses:0="
95 -RDEPEND="${DEPEND}"
96 -
97 -PATCHES=( "${FILESDIR}/search-libtinfo-for-tigetstr-and-tparm.patch" )
98 -
99 -src_prepare() {
100 - default
101 - eautoreconf
102 -}
103 -
104 -src_install() {
105 - default
106 - use examples && dodoc -r examples
107 -}