public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-03-16 16:25 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-03-16 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     04fccf1a5989fcaece707be1ada8824da0fa9318
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Thu Mar  7 16:20:58 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 16:25:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04fccf1a

dev-util/nihtest: New package, add version 1.5.0

A dependency of the new test suite in app-arch/torrentzip.1.3.
Tests not enabled yet.

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 +
 dev-util/nihtest/metadata.xml         | 17 ++++++++++++++++
 dev-util/nihtest/nihtest-1.5.0.ebuild | 37 +++++++++++++++++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
new file mode 100644
index 000000000000..49cf95f7d2b8
--- /dev/null
+++ b/dev-util/nihtest/Manifest
@@ -0,0 +1 @@
+DIST nihtest-1.5.0.tar.gz 39258 BLAKE2B 6f2bf228d080a705ac9c7a56e7f73cd6000e03fae09dc9076eb7c9003f8cd9629690ccc2860c7939461edc089f8e73419232ed08bc131f9b526f141b434f33f8 SHA512 aac6167c18b5af3f49f5b43b6a218f3f3921d5b0bfe74df546a6808cf826debbe587de44b04baf1d4abd8e0c193da1b86a1f6490cc6bd7888b7707e261a1ebcf

diff --git a/dev-util/nihtest/metadata.xml b/dev-util/nihtest/metadata.xml
new file mode 100644
index 000000000000..d1ef0e8cf6e2
--- /dev/null
+++ b/dev-util/nihtest/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person" proxied="yes">
+    <email>alex.miller@gmx.de</email>
+    <description>Alexander Miller</description>
+  </maintainer>
+  <maintainer type="project" proxied="proxy">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+  <stabilize-allarches/>
+  <upstream>
+    <remote-id type="github">nih-at/nihtest</remote-id>
+    <remote-id type="pypi">nihtest</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-util/nihtest/nihtest-1.5.0.ebuild b/dev-util/nihtest/nihtest-1.5.0.ebuild
new file mode 100644
index 000000000000..e71045c4aa7e
--- /dev/null
+++ b/dev-util/nihtest/nihtest-1.5.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A testing tool for command line utilities"
+HOMEPAGE="
+	https://nih.at/nihtest/
+	https://github.com/nih-at/nihtest
+	https://pypi.org/project/nihtest/
+"
+SRC_URI+="
+	https://nih.at/nihtest/${P}.tar.gz
+	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
+"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
+"
+
+DOCS=( NEWS.md README.md TODO.md )
+
+src_install() {
+	distutils-r1_src_install
+	newman manpages/nihtest.man nihtest.1
+	newman manpages/nihtest.conf.man nihtest.conf.5
+	newman manpages/nihtest-case.man nihtest-case.5
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-03-16 16:25 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-03-16 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     8f942acab59678609ede1e07522f50db9bbe04b5
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Sat Mar  9 22:49:18 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 16:25:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f942aca

dev-util/nihtest: Wire up tests

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/35644
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/nihtest/nihtest-1.5.0.ebuild | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/dev-util/nihtest/nihtest-1.5.0.ebuild b/dev-util/nihtest/nihtest-1.5.0.ebuild
index e71045c4aa7e..15d9fa136dbe 100644
--- a/dev-util/nihtest/nihtest-1.5.0.ebuild
+++ b/dev-util/nihtest/nihtest-1.5.0.ebuild
@@ -7,7 +7,7 @@ DISTUTILS_SINGLE_IMPL=1
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..12} )
 
-inherit distutils-r1 pypi
+inherit cmake distutils-r1 pypi
 
 DESCRIPTION="A testing tool for command line utilities"
 HOMEPAGE="
@@ -22,13 +22,35 @@ SRC_URI+="
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
 	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
 "
+BDEPEND="test? ( ${RDEPEND} )"
 
+CMAKE_SKIP_TESTS=(
+	preload-pass.test # https://github.com/nih-at/nihtest/issues/7
+)
 DOCS=( NEWS.md README.md TODO.md )
 
+src_prepare() {
+	distutils-r1_src_prepare
+	if use test; then
+		CMAKE_USE_DIR=${S}/tests
+		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
+	fi
+}
+
+python_test() {
+	local BUILD_DIR=${WORKDIR}/tests_build
+	local mycmakeargs=( -DNIHTEST=nihtest )
+	cmake_src_configure
+	cmake_src_compile
+	cmake_src_test
+}
+
 src_install() {
 	distutils-r1_src_install
 	newman manpages/nihtest.man nihtest.1


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-03-17 13:06 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-03-17 13:06 UTC (permalink / raw
  To: gentoo-commits

commit:     6fa3dfcbdc0b91e97b6b56400cd2b48fc0b4a4e2
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Sun Mar 17 12:53:12 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 13:06:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa3dfcb

dev-util/nihtest: add 1.5.1

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/35801
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 +
 dev-util/nihtest/nihtest-1.5.1.ebuild | 56 +++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index 49cf95f7d2b8..c5e5a38ac74b 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1 +1,2 @@
 DIST nihtest-1.5.0.tar.gz 39258 BLAKE2B 6f2bf228d080a705ac9c7a56e7f73cd6000e03fae09dc9076eb7c9003f8cd9629690ccc2860c7939461edc089f8e73419232ed08bc131f9b526f141b434f33f8 SHA512 aac6167c18b5af3f49f5b43b6a218f3f3921d5b0bfe74df546a6808cf826debbe587de44b04baf1d4abd8e0c193da1b86a1f6490cc6bd7888b7707e261a1ebcf
+DIST nihtest-1.5.1.tar.gz 39866 BLAKE2B 6e499db71d894e6fe3a5bcd2fe42b89c588edbec451b4c580feac1e07fe7b3cfa9e658dd52d21b0bda3a13be305a240698654eba672b22d9593af7a7335081ff SHA512 269b21c6e4baf2c00b01e799394361631f96a7876c5df7f08e8d97ab640312f77251b5024804cb66a3aa5cb5dd0e43f8e54eb4644d985038fe25de24de30f93a

diff --git a/dev-util/nihtest/nihtest-1.5.1.ebuild b/dev-util/nihtest/nihtest-1.5.1.ebuild
new file mode 100644
index 000000000000..5dbe563be3c9
--- /dev/null
+++ b/dev-util/nihtest/nihtest-1.5.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit cmake distutils-r1 pypi
+
+DESCRIPTION="A testing tool for command line utilities"
+HOMEPAGE="
+	https://nih.at/nihtest/
+	https://github.com/nih-at/nihtest
+	https://pypi.org/project/nihtest/
+"
+SRC_URI+="
+	https://nih.at/nihtest/${P}.tar.gz
+	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
+"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+DOCS=( NEWS.md README.md TODO.md )
+
+src_prepare() {
+	distutils-r1_src_prepare
+	if use test; then
+		CMAKE_USE_DIR=${S}/tests
+		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
+	fi
+}
+
+python_test() {
+	local BUILD_DIR=${WORKDIR}/tests_build
+	local mycmakeargs=( -DNIHTEST=nihtest )
+	cmake_src_configure
+	cmake_src_compile
+	cmake_src_test
+}
+
+src_install() {
+	distutils-r1_src_install
+	newman manpages/nihtest.man nihtest.1
+	newman manpages/nihtest.conf.man nihtest.conf.5
+	newman manpages/nihtest-case.man nihtest-case.5
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-03-21  2:19 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-03-21  2:19 UTC (permalink / raw
  To: gentoo-commits

commit:     5043186ac684f33225d26a902f8ed099496497ea
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Wed Mar 20 22:44:58 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 21 02:18:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5043186a

dev-util/nihtest: add 1.5.2

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/35845
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 +
 dev-util/nihtest/nihtest-1.5.2.ebuild | 56 +++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index c5e5a38ac74b..ed6ebb3be1fb 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1,2 +1,3 @@
 DIST nihtest-1.5.0.tar.gz 39258 BLAKE2B 6f2bf228d080a705ac9c7a56e7f73cd6000e03fae09dc9076eb7c9003f8cd9629690ccc2860c7939461edc089f8e73419232ed08bc131f9b526f141b434f33f8 SHA512 aac6167c18b5af3f49f5b43b6a218f3f3921d5b0bfe74df546a6808cf826debbe587de44b04baf1d4abd8e0c193da1b86a1f6490cc6bd7888b7707e261a1ebcf
 DIST nihtest-1.5.1.tar.gz 39866 BLAKE2B 6e499db71d894e6fe3a5bcd2fe42b89c588edbec451b4c580feac1e07fe7b3cfa9e658dd52d21b0bda3a13be305a240698654eba672b22d9593af7a7335081ff SHA512 269b21c6e4baf2c00b01e799394361631f96a7876c5df7f08e8d97ab640312f77251b5024804cb66a3aa5cb5dd0e43f8e54eb4644d985038fe25de24de30f93a
+DIST nihtest-1.5.2.tar.gz 39901 BLAKE2B c6b71b457ec7ff2d154061d31f009e44b4208901bfaf7ff16c3b70d4da7e0790238ed21c310651e89ac7a8a335c9d5131b974a945ad41bff74da5ba14ecbf581 SHA512 7f7e29e6c1320cb2f1886b6a73c43e11a672bd42471d01a47d0941970b478361b3e463d7d64b4275ed707d87fe27773b34c0f79f398494393330d7091f9f2f53

diff --git a/dev-util/nihtest/nihtest-1.5.2.ebuild b/dev-util/nihtest/nihtest-1.5.2.ebuild
new file mode 100644
index 000000000000..5dbe563be3c9
--- /dev/null
+++ b/dev-util/nihtest/nihtest-1.5.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit cmake distutils-r1 pypi
+
+DESCRIPTION="A testing tool for command line utilities"
+HOMEPAGE="
+	https://nih.at/nihtest/
+	https://github.com/nih-at/nihtest
+	https://pypi.org/project/nihtest/
+"
+SRC_URI+="
+	https://nih.at/nihtest/${P}.tar.gz
+	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
+"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+DOCS=( NEWS.md README.md TODO.md )
+
+src_prepare() {
+	distutils-r1_src_prepare
+	if use test; then
+		CMAKE_USE_DIR=${S}/tests
+		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
+	fi
+}
+
+python_test() {
+	local BUILD_DIR=${WORKDIR}/tests_build
+	local mycmakeargs=( -DNIHTEST=nihtest )
+	cmake_src_configure
+	cmake_src_compile
+	cmake_src_test
+}
+
+src_install() {
+	distutils-r1_src_install
+	newman manpages/nihtest.man nihtest.1
+	newman manpages/nihtest.conf.man nihtest.conf.5
+	newman manpages/nihtest-case.man nihtest-case.5
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-04-13 14:18 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-04-13 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     404edc457df9d45f00a244965429fabfd1704e1f
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Wed Apr 10 13:47:33 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 14:18:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404edc45

dev-util/nihtest: add 1.6.0

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 +
 dev-util/nihtest/nihtest-1.6.0.ebuild | 56 +++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index ed6ebb3be1fb..7890d7b6fad3 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1,3 +1,4 @@
 DIST nihtest-1.5.0.tar.gz 39258 BLAKE2B 6f2bf228d080a705ac9c7a56e7f73cd6000e03fae09dc9076eb7c9003f8cd9629690ccc2860c7939461edc089f8e73419232ed08bc131f9b526f141b434f33f8 SHA512 aac6167c18b5af3f49f5b43b6a218f3f3921d5b0bfe74df546a6808cf826debbe587de44b04baf1d4abd8e0c193da1b86a1f6490cc6bd7888b7707e261a1ebcf
 DIST nihtest-1.5.1.tar.gz 39866 BLAKE2B 6e499db71d894e6fe3a5bcd2fe42b89c588edbec451b4c580feac1e07fe7b3cfa9e658dd52d21b0bda3a13be305a240698654eba672b22d9593af7a7335081ff SHA512 269b21c6e4baf2c00b01e799394361631f96a7876c5df7f08e8d97ab640312f77251b5024804cb66a3aa5cb5dd0e43f8e54eb4644d985038fe25de24de30f93a
 DIST nihtest-1.5.2.tar.gz 39901 BLAKE2B c6b71b457ec7ff2d154061d31f009e44b4208901bfaf7ff16c3b70d4da7e0790238ed21c310651e89ac7a8a335c9d5131b974a945ad41bff74da5ba14ecbf581 SHA512 7f7e29e6c1320cb2f1886b6a73c43e11a672bd42471d01a47d0941970b478361b3e463d7d64b4275ed707d87fe27773b34c0f79f398494393330d7091f9f2f53
+DIST nihtest-1.6.0.tar.gz 40473 BLAKE2B 98c1247485fc49a3a4b8f96dce16e35f7ac706ce8da7fc491ed62ad2c18a1514225ffdfcecae05266958f210d839897263bf2862abf0d771870f29a911f257fe SHA512 b70a7cd5624f7930f48cc75b454993f878a1d3d42035fa6dd90e89cc6d2b1928e8489974c583a814fa009f33749d9dc4614869f0693f51de1d1c74cf77801f0f

diff --git a/dev-util/nihtest/nihtest-1.6.0.ebuild b/dev-util/nihtest/nihtest-1.6.0.ebuild
new file mode 100644
index 000000000000..5dbe563be3c9
--- /dev/null
+++ b/dev-util/nihtest/nihtest-1.6.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit cmake distutils-r1 pypi
+
+DESCRIPTION="A testing tool for command line utilities"
+HOMEPAGE="
+	https://nih.at/nihtest/
+	https://github.com/nih-at/nihtest
+	https://pypi.org/project/nihtest/
+"
+SRC_URI+="
+	https://nih.at/nihtest/${P}.tar.gz
+	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
+"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+DOCS=( NEWS.md README.md TODO.md )
+
+src_prepare() {
+	distutils-r1_src_prepare
+	if use test; then
+		CMAKE_USE_DIR=${S}/tests
+		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
+	fi
+}
+
+python_test() {
+	local BUILD_DIR=${WORKDIR}/tests_build
+	local mycmakeargs=( -DNIHTEST=nihtest )
+	cmake_src_configure
+	cmake_src_compile
+	cmake_src_test
+}
+
+src_install() {
+	distutils-r1_src_install
+	newman manpages/nihtest.man nihtest.1
+	newman manpages/nihtest.conf.man nihtest.conf.5
+	newman manpages/nihtest-case.man nihtest-case.5
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-04-13 14:18 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2024-04-13 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     8077df19a9b241d5997cc589e5626e6e065853a8
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Wed Apr 10 13:55:08 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 14:18:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8077df19

dev-util/nihtest: drop 1.5.0, 1.5.1

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/36194
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  2 --
 dev-util/nihtest/nihtest-1.5.0.ebuild | 59 -----------------------------------
 dev-util/nihtest/nihtest-1.5.1.ebuild | 56 ---------------------------------
 3 files changed, 117 deletions(-)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index 7890d7b6fad3..1494b30b9ebe 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1,4 +1,2 @@
-DIST nihtest-1.5.0.tar.gz 39258 BLAKE2B 6f2bf228d080a705ac9c7a56e7f73cd6000e03fae09dc9076eb7c9003f8cd9629690ccc2860c7939461edc089f8e73419232ed08bc131f9b526f141b434f33f8 SHA512 aac6167c18b5af3f49f5b43b6a218f3f3921d5b0bfe74df546a6808cf826debbe587de44b04baf1d4abd8e0c193da1b86a1f6490cc6bd7888b7707e261a1ebcf
-DIST nihtest-1.5.1.tar.gz 39866 BLAKE2B 6e499db71d894e6fe3a5bcd2fe42b89c588edbec451b4c580feac1e07fe7b3cfa9e658dd52d21b0bda3a13be305a240698654eba672b22d9593af7a7335081ff SHA512 269b21c6e4baf2c00b01e799394361631f96a7876c5df7f08e8d97ab640312f77251b5024804cb66a3aa5cb5dd0e43f8e54eb4644d985038fe25de24de30f93a
 DIST nihtest-1.5.2.tar.gz 39901 BLAKE2B c6b71b457ec7ff2d154061d31f009e44b4208901bfaf7ff16c3b70d4da7e0790238ed21c310651e89ac7a8a335c9d5131b974a945ad41bff74da5ba14ecbf581 SHA512 7f7e29e6c1320cb2f1886b6a73c43e11a672bd42471d01a47d0941970b478361b3e463d7d64b4275ed707d87fe27773b34c0f79f398494393330d7091f9f2f53
 DIST nihtest-1.6.0.tar.gz 40473 BLAKE2B 98c1247485fc49a3a4b8f96dce16e35f7ac706ce8da7fc491ed62ad2c18a1514225ffdfcecae05266958f210d839897263bf2862abf0d771870f29a911f257fe SHA512 b70a7cd5624f7930f48cc75b454993f878a1d3d42035fa6dd90e89cc6d2b1928e8489974c583a814fa009f33749d9dc4614869f0693f51de1d1c74cf77801f0f

diff --git a/dev-util/nihtest/nihtest-1.5.0.ebuild b/dev-util/nihtest/nihtest-1.5.0.ebuild
deleted file mode 100644
index 15d9fa136dbe..000000000000
--- a/dev-util/nihtest/nihtest-1.5.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit cmake distutils-r1 pypi
-
-DESCRIPTION="A testing tool for command line utilities"
-HOMEPAGE="
-	https://nih.at/nihtest/
-	https://github.com/nih-at/nihtest
-	https://pypi.org/project/nihtest/
-"
-SRC_URI+="
-	https://nih.at/nihtest/${P}.tar.gz
-	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
-"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
-"
-BDEPEND="test? ( ${RDEPEND} )"
-
-CMAKE_SKIP_TESTS=(
-	preload-pass.test # https://github.com/nih-at/nihtest/issues/7
-)
-DOCS=( NEWS.md README.md TODO.md )
-
-src_prepare() {
-	distutils-r1_src_prepare
-	if use test; then
-		CMAKE_USE_DIR=${S}/tests
-		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
-	fi
-}
-
-python_test() {
-	local BUILD_DIR=${WORKDIR}/tests_build
-	local mycmakeargs=( -DNIHTEST=nihtest )
-	cmake_src_configure
-	cmake_src_compile
-	cmake_src_test
-}
-
-src_install() {
-	distutils-r1_src_install
-	newman manpages/nihtest.man nihtest.1
-	newman manpages/nihtest.conf.man nihtest.conf.5
-	newman manpages/nihtest-case.man nihtest-case.5
-}

diff --git a/dev-util/nihtest/nihtest-1.5.1.ebuild b/dev-util/nihtest/nihtest-1.5.1.ebuild
deleted file mode 100644
index 5dbe563be3c9..000000000000
--- a/dev-util/nihtest/nihtest-1.5.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit cmake distutils-r1 pypi
-
-DESCRIPTION="A testing tool for command line utilities"
-HOMEPAGE="
-	https://nih.at/nihtest/
-	https://github.com/nih-at/nihtest
-	https://pypi.org/project/nihtest/
-"
-SRC_URI+="
-	https://nih.at/nihtest/${P}.tar.gz
-	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
-"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
-"
-BDEPEND="test? ( ${RDEPEND} )"
-
-DOCS=( NEWS.md README.md TODO.md )
-
-src_prepare() {
-	distutils-r1_src_prepare
-	if use test; then
-		CMAKE_USE_DIR=${S}/tests
-		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
-	fi
-}
-
-python_test() {
-	local BUILD_DIR=${WORKDIR}/tests_build
-	local mycmakeargs=( -DNIHTEST=nihtest )
-	cmake_src_configure
-	cmake_src_compile
-	cmake_src_test
-}
-
-src_install() {
-	distutils-r1_src_install
-	newman manpages/nihtest.man nihtest.1
-	newman manpages/nihtest.conf.man nihtest.conf.5
-	newman manpages/nihtest-case.man nihtest-case.5
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-04-16  5:34 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-04-16  5:34 UTC (permalink / raw
  To: gentoo-commits

commit:     2ffb3366c091b65489935b83e45b5a4ae9de196e
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 16 05:31:13 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 16 05:34:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffb3366

dev-util/nihtest: Stabilize 1.5.2 x86, #928335

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/nihtest/nihtest-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/nihtest/nihtest-1.5.2.ebuild b/dev-util/nihtest/nihtest-1.5.2.ebuild
index 5dbe563be3c9..de2684d5d7ad 100644
--- a/dev-util/nihtest/nihtest-1.5.2.ebuild
+++ b/dev-util/nihtest/nihtest-1.5.2.ebuild
@@ -21,7 +21,7 @@ SRC_URI+="
 "
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-04-16  5:34 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-04-16  5:34 UTC (permalink / raw
  To: gentoo-commits

commit:     c0b1001a3e3e9aff37998a145cd2c362020ade6f
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 16 05:31:37 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 16 05:34:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b1001a

dev-util/nihtest: Stabilize 1.5.2 amd64, #928335

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/nihtest/nihtest-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/nihtest/nihtest-1.5.2.ebuild b/dev-util/nihtest/nihtest-1.5.2.ebuild
index de2684d5d7ad..2f04bae2a2cb 100644
--- a/dev-util/nihtest/nihtest-1.5.2.ebuild
+++ b/dev-util/nihtest/nihtest-1.5.2.ebuild
@@ -21,7 +21,7 @@ SRC_URI+="
 "
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-06-02  7:30 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-06-02  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     3771a67353daac01e9d322d855af2930b330fe3c
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Fri Apr 19 15:43:31 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun  2 07:30:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3771a673

dev-util/nihtest: add 1.7.0

Switch to mdoc manual pages since man format files aren't updated
in the release tarball (again).

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 +
 dev-util/nihtest/nihtest-1.7.0.ebuild | 56 +++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index 1494b30b9ebe..ccb8081ac77f 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1,2 +1,3 @@
 DIST nihtest-1.5.2.tar.gz 39901 BLAKE2B c6b71b457ec7ff2d154061d31f009e44b4208901bfaf7ff16c3b70d4da7e0790238ed21c310651e89ac7a8a335c9d5131b974a945ad41bff74da5ba14ecbf581 SHA512 7f7e29e6c1320cb2f1886b6a73c43e11a672bd42471d01a47d0941970b478361b3e463d7d64b4275ed707d87fe27773b34c0f79f398494393330d7091f9f2f53
 DIST nihtest-1.6.0.tar.gz 40473 BLAKE2B 98c1247485fc49a3a4b8f96dce16e35f7ac706ce8da7fc491ed62ad2c18a1514225ffdfcecae05266958f210d839897263bf2862abf0d771870f29a911f257fe SHA512 b70a7cd5624f7930f48cc75b454993f878a1d3d42035fa6dd90e89cc6d2b1928e8489974c583a814fa009f33749d9dc4614869f0693f51de1d1c74cf77801f0f
+DIST nihtest-1.7.0.tar.gz 40925 BLAKE2B c21a5de44c3739b8e9dceac2391f1dc53ad276759389cfbf93e4cc0688ae7170f3cd56423f3c0be3b12ca7ea07f7168b78f3a0e3ad7c6a959019253360b57ed1 SHA512 2f84a4e3491fff64f9ae41c69cb79cd917c9c3ce7f6912d54e2110e1221b62c1a129c2e31ebac077d635f5cd788e97c4d9465eb3fb414bb054e5ceed32260ddd

diff --git a/dev-util/nihtest/nihtest-1.7.0.ebuild b/dev-util/nihtest/nihtest-1.7.0.ebuild
new file mode 100644
index 000000000000..00f9602d2d51
--- /dev/null
+++ b/dev-util/nihtest/nihtest-1.7.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit cmake distutils-r1 pypi
+
+DESCRIPTION="A testing tool for command line utilities"
+HOMEPAGE="
+	https://nih.at/nihtest/
+	https://github.com/nih-at/nihtest
+	https://pypi.org/project/nihtest/
+"
+SRC_URI+="
+	https://nih.at/nihtest/${P}.tar.gz
+	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
+"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+DOCS=( NEWS.md README.md TODO.md )
+
+src_prepare() {
+	distutils-r1_src_prepare
+	if use test; then
+		CMAKE_USE_DIR=${S}/tests
+		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
+	fi
+}
+
+python_test() {
+	local BUILD_DIR=${WORKDIR}/tests_build
+	local mycmakeargs=( -DNIHTEST=nihtest )
+	cmake_src_configure
+	cmake_src_compile
+	cmake_src_test
+}
+
+src_install() {
+	distutils-r1_src_install
+	newman manpages/nihtest.mdoc nihtest.1
+	newman manpages/nihtest.conf.mdoc nihtest.conf.5
+	newman manpages/nihtest-case.mdoc nihtest-case.5
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/
@ 2024-06-02  7:30 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2024-06-02  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     058ca2f268d140ad6f04d339682c4ae0df16bf81
Author:     Alexander Miller <alex.miller <AT> gmx <DOT> de>
AuthorDate: Fri Apr 19 15:49:11 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun  2 07:30:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058ca2f2

dev-util/nihtest: drop 1.6.0

Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/36324
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/nihtest/Manifest             |  1 -
 dev-util/nihtest/nihtest-1.6.0.ebuild | 56 -----------------------------------
 2 files changed, 57 deletions(-)

diff --git a/dev-util/nihtest/Manifest b/dev-util/nihtest/Manifest
index ccb8081ac77f..7561dc92b20e 100644
--- a/dev-util/nihtest/Manifest
+++ b/dev-util/nihtest/Manifest
@@ -1,3 +1,2 @@
 DIST nihtest-1.5.2.tar.gz 39901 BLAKE2B c6b71b457ec7ff2d154061d31f009e44b4208901bfaf7ff16c3b70d4da7e0790238ed21c310651e89ac7a8a335c9d5131b974a945ad41bff74da5ba14ecbf581 SHA512 7f7e29e6c1320cb2f1886b6a73c43e11a672bd42471d01a47d0941970b478361b3e463d7d64b4275ed707d87fe27773b34c0f79f398494393330d7091f9f2f53
-DIST nihtest-1.6.0.tar.gz 40473 BLAKE2B 98c1247485fc49a3a4b8f96dce16e35f7ac706ce8da7fc491ed62ad2c18a1514225ffdfcecae05266958f210d839897263bf2862abf0d771870f29a911f257fe SHA512 b70a7cd5624f7930f48cc75b454993f878a1d3d42035fa6dd90e89cc6d2b1928e8489974c583a814fa009f33749d9dc4614869f0693f51de1d1c74cf77801f0f
 DIST nihtest-1.7.0.tar.gz 40925 BLAKE2B c21a5de44c3739b8e9dceac2391f1dc53ad276759389cfbf93e4cc0688ae7170f3cd56423f3c0be3b12ca7ea07f7168b78f3a0e3ad7c6a959019253360b57ed1 SHA512 2f84a4e3491fff64f9ae41c69cb79cd917c9c3ce7f6912d54e2110e1221b62c1a129c2e31ebac077d635f5cd788e97c4d9465eb3fb414bb054e5ceed32260ddd

diff --git a/dev-util/nihtest/nihtest-1.6.0.ebuild b/dev-util/nihtest/nihtest-1.6.0.ebuild
deleted file mode 100644
index 5dbe563be3c9..000000000000
--- a/dev-util/nihtest/nihtest-1.6.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit cmake distutils-r1 pypi
-
-DESCRIPTION="A testing tool for command line utilities"
-HOMEPAGE="
-	https://nih.at/nihtest/
-	https://github.com/nih-at/nihtest
-	https://pypi.org/project/nihtest/
-"
-SRC_URI+="
-	https://nih.at/nihtest/${P}.tar.gz
-	https://github.com/nih-at/nihtest/releases/download/v${PV}/${P}.tar.gz
-"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	$(python_gen_cond_dep 'dev-python/python-dateutil[${PYTHON_USEDEP}]')
-"
-BDEPEND="test? ( ${RDEPEND} )"
-
-DOCS=( NEWS.md README.md TODO.md )
-
-src_prepare() {
-	distutils-r1_src_prepare
-	if use test; then
-		CMAKE_USE_DIR=${S}/tests
-		BUILD_DIR=${WORKDIR}/tests_build cmake_src_prepare
-	fi
-}
-
-python_test() {
-	local BUILD_DIR=${WORKDIR}/tests_build
-	local mycmakeargs=( -DNIHTEST=nihtest )
-	cmake_src_configure
-	cmake_src_compile
-	cmake_src_test
-}
-
-src_install() {
-	distutils-r1_src_install
-	newman manpages/nihtest.man nihtest.1
-	newman manpages/nihtest.conf.man nihtest.conf.5
-	newman manpages/nihtest-case.man nihtest-case.5
-}


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

end of thread, other threads:[~2024-06-02  7:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-16  5:34 [gentoo-commits] repo/gentoo:master commit in: dev-util/nihtest/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2024-06-02  7:30 Joonas Niilola
2024-06-02  7:30 Joonas Niilola
2024-04-16  5:34 Joonas Niilola
2024-04-13 14:18 Michał Górny
2024-04-13 14:18 Michał Górny
2024-03-21  2:19 Sam James
2024-03-17 13:06 Michał Górny
2024-03-16 16:25 Michał Górny
2024-03-16 16:25 Michał Górny

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