public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-process/xjobs/, sys-process/xjobs/files/
@ 2019-08-15  1:07 Michael Orlitzky
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Orlitzky @ 2019-08-15  1:07 UTC (permalink / raw
  To: gentoo-commits

commit:     a3769d82e127646e75a8fa32d79e971ea5063aa8
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 15 01:01:31 2019 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu Aug 15 01:01:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3769d82

sys-process/xjobs: new version 20190725.

This version comes with a few fixes/improvements:

  * An update to EAPI=7.

  * A patch to fix the build against separate libtinfo (bug #689982).
    Upstream will include a similar fix in subsequent versions.

  * An unconditional build/runtime dependency on ncurses/libtinfo
    which are detected and used automagically by the build system.

Bug: https://bugs.gentoo.org/689982
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sys-process/xjobs/Manifest                         |  1 +
 .../search-libtinfo-for-tigetstr-and-tparm.patch   | 32 +++++++++++++++++++
 sys-process/xjobs/xjobs-20190725.ebuild            | 36 ++++++++++++++++++++++
 3 files changed, 69 insertions(+)

diff --git a/sys-process/xjobs/Manifest b/sys-process/xjobs/Manifest
index 90c00b2226c..f6db8bc3c73 100644
--- a/sys-process/xjobs/Manifest
+++ b/sys-process/xjobs/Manifest
@@ -1 +1,2 @@
 DIST xjobs-20170829.tgz 109732 BLAKE2B 7c1db1b8bd5a382364d62093f7c28d4f6d13220c01b757c0f92fe1d20acdce699234e8e0c3fc98105a0e9cd93eb10738473ef95bb1e5bb64725155bc878bdb4e SHA512 9308c239ebf0dfa8374a85d753b2234c083b29e2b65b19028e5e67864df80df345ec232c13777cef8a21d3872408967a065fa8d54761b14a2f452b483b86f80c
+DIST xjobs-20190725.tgz 113216 BLAKE2B 079b6e104bb160101b2c4ef11e73ff040a8efa30839a39f9c91121b4928ddeefaefa43c3a94e18c9359fb6f66862ad7554598561a4e0c7f36b8f622d9a394340 SHA512 23ead9d33ebacb1b3d7a03c72c40dfb34b6254add81b0fde9e458a4be54f6298d2ce6a0b65742ac050685212eea8c5f83d48ea98b09c3928b16e36c7447a9551

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
new file mode 100644
index 00000000000..e0600b0b7dc
--- /dev/null
+++ b/sys-process/xjobs/files/search-libtinfo-for-tigetstr-and-tparm.patch
@@ -0,0 +1,32 @@
+From 8272978e3f90aec42101a6f254af779e20cfc0eb Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky <michael@orlitzky.com>
+Date: Wed, 14 Aug 2019 20:19:24 -0400
+Subject: [PATCH 1/1] Rename configure.in to configure.ac and search libtinfo
+ for tigetstr/tparm.
+
+---
+ configure.in => configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+ rename configure.in => configure.ac (95%)
+
+diff --git a/configure.in b/configure.ac
+similarity index 95%
+rename from configure.in
+rename to configure.ac
+index 21fc034..0baa3cc 100644
+--- a/configure.in
++++ b/configure.ac
+@@ -72,8 +72,8 @@ AC_CHECK_HEADER([term.h],
+ 	AC_INCLUDES_DEFAULT
+ 	)
+ 
+-AC_SEARCH_LIBS(tigetstr,ncurses,)
+-AC_SEARCH_LIBS(tparm,curses,)
++AC_SEARCH_LIBS(tigetstr,ncurses tinfo)
++AC_SEARCH_LIBS(tparm,curses tinfo)
+ 
+ AC_SUBST(DEBUG)
+ AC_SUBST(AUTOCONF)
+-- 
+2.21.0
+

diff --git a/sys-process/xjobs/xjobs-20190725.ebuild b/sys-process/xjobs/xjobs-20190725.ebuild
new file mode 100644
index 00000000000..9a5ad730ef3
--- /dev/null
+++ b/sys-process/xjobs/xjobs-20190725.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Reads commands line by line and executes them in parallel"
+HOMEPAGE="http://www.maier-komor.de/xjobs.html"
+SRC_URI="http://www.maier-komor.de/${PN}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+BDEPEND="sys-devel/flex"
+
+# The ncurses/terminfo libraries are used to provide color and status
+# support; but, they're detected and enabled automagically by the build
+# system. Thus it would do no good to hide them behind a USE flag that
+# can't be turned off.
+DEPEND="sys-libs/ncurses:0="
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/search-libtinfo-for-tigetstr-and-tparm.patch" )
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_install() {
+	default
+	use examples && dodoc -r examples
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/xjobs/, sys-process/xjobs/files/
@ 2020-09-17 14:56 Michael Orlitzky
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Orlitzky @ 2020-09-17 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     113a4d88e31035b762880efdb2f1da3d1a61c123
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 17 14:54:16 2020 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu Sep 17 14:54:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=113a4d88

sys-process/xjobs: remove old xjobs-20190725.ebuild and its patch.

Closes: https://bugs.gentoo.org/742443
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sys-process/xjobs/Manifest                         |  1 -
 .../search-libtinfo-for-tigetstr-and-tparm.patch   | 32 -------------------
 sys-process/xjobs/xjobs-20190725.ebuild            | 36 ----------------------
 3 files changed, 69 deletions(-)

diff --git a/sys-process/xjobs/Manifest b/sys-process/xjobs/Manifest
index 59ad731527f..15a33044e7d 100644
--- a/sys-process/xjobs/Manifest
+++ b/sys-process/xjobs/Manifest
@@ -1,2 +1 @@
-DIST xjobs-20190725.tgz 113216 BLAKE2B 079b6e104bb160101b2c4ef11e73ff040a8efa30839a39f9c91121b4928ddeefaefa43c3a94e18c9359fb6f66862ad7554598561a4e0c7f36b8f622d9a394340 SHA512 23ead9d33ebacb1b3d7a03c72c40dfb34b6254add81b0fde9e458a4be54f6298d2ce6a0b65742ac050685212eea8c5f83d48ea98b09c3928b16e36c7447a9551
 DIST xjobs-20200726.tgz 113795 BLAKE2B 4a6bfa405c6abf507ea9d0fce066b1547f1900687b04cf5797ced4862052596b4a32c2b24a89a7665e2253fe322ae83948d367c0ffc176bb322a0df9df0023a0 SHA512 52d84a957f53e894897770512271709bdfb1c45e51e1765cc16d96d9dc54901451d3f6ed16ed3a8ff4718e96b149fb2b53ee205d6ff1e1463f1de8b02b345705

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
deleted file mode 100644
index e0600b0b7dc..00000000000
--- a/sys-process/xjobs/files/search-libtinfo-for-tigetstr-and-tparm.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 8272978e3f90aec42101a6f254af779e20cfc0eb Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Wed, 14 Aug 2019 20:19:24 -0400
-Subject: [PATCH 1/1] Rename configure.in to configure.ac and search libtinfo
- for tigetstr/tparm.
-
----
- configure.in => configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- rename configure.in => configure.ac (95%)
-
-diff --git a/configure.in b/configure.ac
-similarity index 95%
-rename from configure.in
-rename to configure.ac
-index 21fc034..0baa3cc 100644
---- a/configure.in
-+++ b/configure.ac
-@@ -72,8 +72,8 @@ AC_CHECK_HEADER([term.h],
- 	AC_INCLUDES_DEFAULT
- 	)
- 
--AC_SEARCH_LIBS(tigetstr,ncurses,)
--AC_SEARCH_LIBS(tparm,curses,)
-+AC_SEARCH_LIBS(tigetstr,ncurses tinfo)
-+AC_SEARCH_LIBS(tparm,curses tinfo)
- 
- AC_SUBST(DEBUG)
- AC_SUBST(AUTOCONF)
--- 
-2.21.0
-

diff --git a/sys-process/xjobs/xjobs-20190725.ebuild b/sys-process/xjobs/xjobs-20190725.ebuild
deleted file mode 100644
index b42479647a0..00000000000
--- a/sys-process/xjobs/xjobs-20190725.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Reads commands line by line and executes them in parallel"
-HOMEPAGE="http://www.maier-komor.de/xjobs.html"
-SRC_URI="http://www.maier-komor.de/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples"
-
-BDEPEND="sys-devel/flex"
-
-# The ncurses/terminfo libraries are used to provide color and status
-# support; but, they're detected and enabled automagically by the build
-# system. Thus it would do no good to hide them behind a USE flag that
-# can't be turned off.
-DEPEND="sys-libs/ncurses:0="
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/search-libtinfo-for-tigetstr-and-tparm.patch" )
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_install() {
-	default
-	use examples && dodoc -r examples
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/xjobs/, sys-process/xjobs/files/
@ 2025-03-12  6:59 Michael Orlitzky
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Orlitzky @ 2025-03-12  6:59 UTC (permalink / raw
  To: gentoo-commits

commit:     ea8d233ca76234be0737b4411233fafd3df18d58
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 12 06:55:51 2025 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed Mar 12 06:59:50 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea8d233c

sys-process/xjobs: drop 20200726

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sys-process/xjobs/Manifest                         |  1 -
 .../xjobs/files/xjobs-20200726-command-v.patch     | 48 ----------------------
 .../files/xjobs-20200726-dont-page-tests.patch     | 27 ------------
 sys-process/xjobs/xjobs-20200726.ebuild            | 32 ---------------
 4 files changed, 108 deletions(-)

diff --git a/sys-process/xjobs/Manifest b/sys-process/xjobs/Manifest
index e2675f341ef5..b31ade629836 100644
--- a/sys-process/xjobs/Manifest
+++ b/sys-process/xjobs/Manifest
@@ -1,2 +1 @@
-DIST xjobs-20200726.tgz 113795 BLAKE2B 4a6bfa405c6abf507ea9d0fce066b1547f1900687b04cf5797ced4862052596b4a32c2b24a89a7665e2253fe322ae83948d367c0ffc176bb322a0df9df0023a0 SHA512 52d84a957f53e894897770512271709bdfb1c45e51e1765cc16d96d9dc54901451d3f6ed16ed3a8ff4718e96b149fb2b53ee205d6ff1e1463f1de8b02b345705
 DIST xjobs-20241010.tgz 118169 BLAKE2B a7dfb303d3745867893cda7b3c895e20ce9eb216324d18268fca5785067a9a4421ff7489e2abeca0164403dbdc6f7191a0d7dff2a005a3a063f92034c7d77e91 SHA512 df1621648edfc4ecbfa1bc63e975691adf70d27350bd05244ca27e6aed8b4b0b772fb976aea7fc029ed8ffe9173f3d232be92ac053107649d0a5dba2f18c51e1

diff --git a/sys-process/xjobs/files/xjobs-20200726-command-v.patch b/sys-process/xjobs/files/xjobs-20200726-command-v.patch
deleted file mode 100644
index 8e233ba816c2..000000000000
--- a/sys-process/xjobs/files/xjobs-20200726-command-v.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From c25bbd08331d88dc1f68806e204a091ed5693f9a Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Tue, 15 Sep 2020 20:03:06 -0400
-Subject: [PATCH 1/2] runtest1.sh,testdummy: use "command -v" instead of
- "which".
-
-The "command -v" incantation is the POSIX-compatible version of the
-"which" command, described in
-
-  https://pubs.opengroup.org/onlinepubs/9699919799/utilities/command.html
-
-This commit changes two uses of "which" to "command -v" for maximum
-compatibility. This has a nice side effect; it eliminates the error
-output when the first of two alternatives is not found, as in
-
-  which: no gsleep in (...)
-
-before the "sleep" command is used as a fallback.
----
- runtest1.sh | 2 +-
- testdummy   | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/runtest1.sh b/runtest1.sh
-index 7584116..2dfadd1 100755
---- a/runtest1.sh
-+++ b/runtest1.sh
-@@ -1,4 +1,4 @@
- #!/bin/sh
- 
--A=`which gawk || which awk`
-+A="$(command -v gawk || command -v awk)"
- $A "BEGIN{for (i=0;i<10;++i) print rand()*10}" | ./xjobs -j8 ./testdummy
-diff --git a/testdummy b/testdummy
-index 1787a46..f511806 100755
---- a/testdummy
-+++ b/testdummy
-@@ -1,6 +1,6 @@
- #!/bin/sh
- 
--S=`which gsleep||which sleep`
-+S="$(command -v gsleep || command -v sleep)"
- $S $1
- expr "$1" \> "4" > /dev/null
- if [ "$?" != "0" ]; then
--- 
-2.26.2
-

diff --git a/sys-process/xjobs/files/xjobs-20200726-dont-page-tests.patch b/sys-process/xjobs/files/xjobs-20200726-dont-page-tests.patch
deleted file mode 100644
index 078a0a2af5aa..000000000000
--- a/sys-process/xjobs/files/xjobs-20200726-dont-page-tests.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From d8b0e6f20d3e4bfc1989e98856ab11a16851b32e Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Tue, 15 Sep 2020 20:13:44 -0400
-Subject: [PATCH 2/2] runtest1.sh: unset PAGER while running tests.
-
-There's no need to page this output, and it makes automating the test
-suite a pain in the butt. Unsetting PAGER in the test script makes
-it work normally again.
-
-Gentoo-bug: https://bugs.gentoo.org/742443
----
- runtest1.sh | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/runtest1.sh b/runtest1.sh
-index 2dfadd1..8d5c46d 100755
---- a/runtest1.sh
-+++ b/runtest1.sh
-@@ -1,4 +1,5 @@
- #!/bin/sh
- 
- A="$(command -v gawk || command -v awk)"
-+unset PAGER
- $A "BEGIN{for (i=0;i<10;++i) print rand()*10}" | ./xjobs -j8 ./testdummy
--- 
-2.26.2
-

diff --git a/sys-process/xjobs/xjobs-20200726.ebuild b/sys-process/xjobs/xjobs-20200726.ebuild
deleted file mode 100644
index 4698be650efd..000000000000
--- a/sys-process/xjobs/xjobs-20200726.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Reads commands line by line and executes them in parallel"
-HOMEPAGE="https://www.maier-komor.de/xjobs.html"
-SRC_URI="https://www.maier-komor.de/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="examples"
-
-BDEPEND="app-alternatives/lex"
-
-# The ncurses/terminfo libraries are used to provide color and status
-# support; but, they're detected and enabled automagically by the build
-# system. Thus it would do no good to hide them behind a USE flag that
-# can't be turned off.
-DEPEND="sys-libs/ncurses:0="
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-	"${FILESDIR}/xjobs-20200726-command-v.patch"
-	"${FILESDIR}/xjobs-20200726-dont-page-tests.patch"
-)
-
-src_install() {
-	default
-	use examples && dodoc -r examples
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-03-12  7:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-17 14:56 [gentoo-commits] repo/gentoo:master commit in: sys-process/xjobs/, sys-process/xjobs/files/ Michael Orlitzky
  -- strict thread matches above, loose matches on Subject: below --
2025-03-12  6:59 Michael Orlitzky
2019-08-15  1:07 Michael Orlitzky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox