[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2022-05-07 Thread WANG Xuerui
commit: 07df673b2b075a2edf07abf31495a81b478dc534
Author: WANG Xuerui  gentoo  org>
AuthorDate: Sun May  8 02:31:40 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sun May  8 02:31:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07df673b

dev-libs/check: keyword 0.15.2-r1 for ~loong

Tests passed on real hardware.

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-libs/check/check-0.15.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/check/check-0.15.2-r1.ebuild 
b/dev-libs/check/check-0.15.2-r1.ebuild
index a96de0605c27..49a1304f48ca 100644
--- a/dev-libs/check/check-0.15.2-r1.ebuild
+++ b/dev-libs/check/check-0.15.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/, dev-libs/check/

2021-03-20 Thread Matt Turner
commit: 85035e3ff63b4153763fc5f4b234a04f979e025a
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Mar 21 00:49:50 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Mar 21 00:51:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85035e3f

dev-libs/check: Fix pkgconfig file's libdir

Closes: https://bugs.gentoo.org/729642
Signed-off-by: Matt Turner  gentoo.org>

 ...{check-0.15.2.ebuild => check-0.15.2-r1.ebuild} | 16 ++--
 ...-0.15.2-Fix-pkgconfig-file-s-libdir-value.patch | 30 ++
 2 files changed, 38 insertions(+), 8 deletions(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2-r1.ebuild
similarity index 84%
rename from dev-libs/check/check-0.15.2.ebuild
rename to dev-libs/check/check-0.15.2-r1.ebuild
index 884e1dffe11..cdad4dc1aee 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2-r1.ebuild
@@ -25,14 +25,14 @@ DEPEND="${RDEPEND}
sys-apps/texinfo"
 BDEPEND="doc? ( app-doc/doxygen )"
 
-PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   # Fix wrong libdir, probably caused by multilib
-   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
-}
+PATCHES=(
+   "${FILESDIR}"/check-0.14.0-r2-disable-automagic-dep.patch
+   "${FILESDIR}"/${P}-Fix-pkgconfig-file-s-libdir-value.patch
+)
+
+#src_prepare() {
+#  cmake_src_prepare
+#}
 
 multilib_src_configure() {
local mycmakeargs=(

diff --git 
a/dev-libs/check/files/check-0.15.2-Fix-pkgconfig-file-s-libdir-value.patch 
b/dev-libs/check/files/check-0.15.2-Fix-pkgconfig-file-s-libdir-value.patch
new file mode 100644
index 000..195fcfb7759
--- /dev/null
+++ b/dev-libs/check/files/check-0.15.2-Fix-pkgconfig-file-s-libdir-value.patch
@@ -0,0 +1,30 @@
+From a6de6b02e6f8b971149c477eeca04de7d0fa5d3c Mon Sep 17 00:00:00 2001
+From: Matt Turner 
+Date: Wed, 10 Mar 2021 17:00:33 -0500
+Subject: [PATCH] Fix pkgconfig file's libdir value
+
+And make a similar fix for includedir while we're here.
+
+Bug: https://bugs.gentoo.org/729642
+---
+ CMakeLists.txt | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 23311d8..9d3ac07 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -439,8 +439,8 @@ if(NOT THIS_IS_SUBPROJECT)
+   set(prefix_save "${PREFIX}")
+   set(prefix "${CMAKE_INSTALL_PREFIX}")
+   set(exec_prefix "\${prefix}")
+-  set(libdir "\${exec_prefix}/lib")
+-  set(includedir "\${prefix}/include")
++  set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
++  set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
+   set(VERSION "${PROJECT_VERSION}")
+ 
+   if (HAVE_SUBUNIT)
+-- 
+2.26.2
+



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-27 Thread Joonas Niilola
commit: 52e395453c03d92ceebe2da6ed4957d6680fc03e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Sep 27 10:25:41 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Sep 27 10:27:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e39545

dev-libs/check: remove old 0.15.0

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 -
 dev-libs/check/check-0.15.0.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 820a261f630..4d4b3d81826 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,2 +1 @@
-DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84
 DIST check-0.15.2.tar.gz 306136 BLAKE2B 
e93755b58ddfea7ecc013e5449806611baedb91b362e573d4e3b6f716feeb0012cceec80f7109e44b2808deb980300c4f7825919b97878b160a1bf884357bde3
 SHA512 
cf81ca63142f33779df2e3542e049b9034d30bc502a663a4379bbfe85c7ee8fd80ce382583e781651d99fe830895122dab5b6793f87425b571c3927f0ba3b60e

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
deleted file mode 100644
index 16d464eda35..000
--- a/dev-libs/check/check-0.15.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc subunit test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   # Fix wrong libdir, probably caused by multilib
-   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TESTING=$(usex test ON OFF)
-   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
-   )
-
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   if use doc && multilib_is_native_abi; then
-   cd "${S}"/doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
-   einstalldocs
-
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-13 Thread Sergei Trofimovich
commit: fb5ae25da27c030c90f817d350fad5cf73877871
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 13 10:23:12 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 13 10:50:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5ae25d

dev-libs/check: stable 0.15.2 for hppa, bug #741738

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index 624ac0dbc32..bcc59769713 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-13 Thread Sergei Trofimovich
commit: fe69e92e0a8f457ec6ed191522fcb16b5cff5782
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 13 08:37:45 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 13 08:38:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe69e92e

dev-libs/check: stable 0.15.2 for sparc

stable wrt bug #741738

Package-Manager: Portage-3.0.6, Repoman-3.0.1
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index 3b6f34126cb..8da3fe02d22 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-13 Thread Sergei Trofimovich
commit: 2f030d7fbaf68546284f59d63b041facaa3741d5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 13 08:29:13 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 13 08:30:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f030d7f

dev-libs/check: stable 0.15.2 for ppc64

stable wrt bug #741738

Package-Manager: Portage-3.0.6, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index 3ee413e5344..3b6f34126cb 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-12 Thread Sam James
commit: 1096f0924ba4465522b14a2a61db2d6711b7d1b5
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep 12 16:51:56 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep 12 16:51:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1096f092

dev-libs/check: arm stable (bug #741738)

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index adc4df534db..3ee413e5344 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-12 Thread Sam James
commit: 5e9cbcd60e2bd24608ad533f07a085b0323bdc1f
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep 12 16:50:38 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep 12 16:50:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9cbcd6

dev-libs/check: Stabilize 0.15.2 arm64, #741738

Signed-off-by: Sam James  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index ac78b16ae62..adc4df534db 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-12 Thread Joonas Niilola
commit: 089dd0ff6f1e657a1c39c43bc3ebc8f4e5bd0a0e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Sep 12 07:24:39 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Sep 12 08:16:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089dd0ff

dev-libs/check: stabilize 0.15.2 on x86

Bug: https://bugs.gentoo.org/741738
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index 57572f77aae..cd1d9314736 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-12 Thread Joonas Niilola
commit: f0a97cb3ec5d22b93a558b59f08f44d3f8243582
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Sep 12 07:38:48 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Sep 12 08:16:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0a97cb3

dev-libs/check: stabilize 0.15.2 on amd64

Bug: https://bugs.gentoo.org/741738
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index cd1d9314736..ac78b16ae62 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 # Tests seem to timeout on ppc* systems, #736661



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-08 Thread Joonas Niilola
commit: fa95703f7365bb889014c04194565951c7a661c0
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Sep  8 06:21:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Sep  8 06:24:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa95703f

dev-libs/check: restrict tests on ppc systems

 - to prepare for next stabilization round.

Bug: https://bugs.gentoo.org/733476
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
index d882baeb2af..57572f77aae 100644
--- a/dev-libs/check/check-0.15.2.ebuild
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -15,7 +15,10 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
-RESTRICT="!test? ( test )"
+# Tests seem to timeout on ppc* systems, #736661
+RESTRICT="ppc? ( test )
+   ppc64? ( test )
+   !test? ( test )"
 
 RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-07 Thread Joonas Niilola
commit: c25ac50e9180746dc6f078ff12c54f8b813b4f82
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep  7 15:40:54 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep  7 15:43:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c25ac50e

dev-libs/check: remove old 0.14.0-r2

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest   |  1 -
 dev-libs/check/check-0.14.0-r2.ebuild | 57 ---
 2 files changed, 58 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 00b0c33ff38..820a261f630 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,3 +1,2 @@
-DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4
 DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84
 DIST check-0.15.2.tar.gz 306136 BLAKE2B 
e93755b58ddfea7ecc013e5449806611baedb91b362e573d4e3b6f716feeb0012cceec80f7109e44b2808deb980300c4f7825919b97878b160a1bf884357bde3
 SHA512 
cf81ca63142f33779df2e3542e049b9034d30bc502a663a4379bbfe85c7ee8fd80ce382583e781651d99fe830895122dab5b6793f87425b571c3927f0ba3b60e

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
deleted file mode 100644
index 565a288bac2..000
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc subunit test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   # Fix wrong libdir, probably caused by multilib
-   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TESTING=$(usex test ON OFF)
-   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
-   )
-
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   if use doc && multilib_is_native_abi; then
-   cd "${S}"/doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
-   einstalldocs
-
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-07 Thread Joonas Niilola
commit: 2f6d668f8e38793f81c4733b7cb3cbcaa87b699e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep  7 15:40:23 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep  7 15:43:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f6d668f

dev-libs/check: stabilize 0.15.0 on ppc64

Closes: https://bugs.gentoo.org/733476
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index b3814d08b3f..16d464eda35 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-09-07 Thread Joonas Niilola
commit: dcff8ef56122f1b5d869c823ef2b6698083a412f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep  7 15:39:58 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep  7 15:43:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcff8ef5

dev-libs/check:  stabilize 0.15.0 on ppc

Bug: https://bugs.gentoo.org/733476
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index 328072dc982..b3814d08b3f 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-08-09 Thread Joonas Niilola
commit: 2bdee0566ba8c9d6d42cc3e6a8a5ff56d03a3868
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Aug  9 08:48:22 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Aug  9 08:49:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bdee056

dev-libs/check: bump to 0.15.2

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.15.2.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 3463a76607d..00b0c33ff38 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,2 +1,3 @@
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4
 DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84
+DIST check-0.15.2.tar.gz 306136 BLAKE2B 
e93755b58ddfea7ecc013e5449806611baedb91b362e573d4e3b6f716feeb0012cceec80f7109e44b2808deb980300c4f7825919b97878b160a1bf884357bde3
 SHA512 
cf81ca63142f33779df2e3542e049b9034d30bc502a663a4379bbfe85c7ee8fd80ce382583e781651d99fe830895122dab5b6793f87425b571c3927f0ba3b60e

diff --git a/dev-libs/check/check-0.15.2.ebuild 
b/dev-libs/check/check-0.15.2.ebuild
new file mode 100644
index 000..d882baeb2af
--- /dev/null
+++ b/dev-libs/check/check-0.15.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   # Fix wrong libdir, probably caused by multilib
+   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
+   )
+
+   cmake_src_configure
+}
+
+multilib_src_compile() {
+   cmake_src_compile
+
+   if use doc && multilib_is_native_abi; then
+   cd "${S}"/doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
+   einstalldocs
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-08-05 Thread Agostino Sarubbo
commit: 185eed4f5ff5e836114feb80ab7b4321e9c13cd9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Aug  5 14:06:04 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Aug  5 14:06:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185eed4f

dev-libs/check: s390 stable wrt bug #733476

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index f88cbbcb9a9..328072dc982 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-27 Thread Sergei Trofimovich
commit: c936af5a934c3bf4191cbdb9fb1dcaf5c88a321d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jul 27 16:22:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jul 27 18:36:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c936af5a

dev-libs/check: stable 0.15.0 for hppa, bug #733476

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index a361b4cd96b..f88cbbcb9a9 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-27 Thread Sam James
commit: dc64fada79cdd4693cb46981b87cb7a290e2ef45
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 27 13:47:23 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 27 13:54:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc64fada

dev-libs/check: arm stable (bug #733476)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index 965601e3d72..a361b4cd96b 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-25 Thread Joonas Niilola
commit: 0ee7bcfe18ac8f1b730b2306f81f8ffb21df6301
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Jul 25 11:25:29 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Jul 25 11:25:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee7bcfe

dev-libs/check: removed 0.15.1 as it seems broken

 - upstream issues 291 & 293.

Closes: https://bugs.gentoo.org/733836
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 -
 dev-libs/check/check-0.15.1.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index f8c68e784b8..3463a76607d 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,3 +1,2 @@
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4
 DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84
-DIST check-0.15.1.tar.gz 305925 BLAKE2B 
eeb1468eb3219fb4e661374c24479f20eb985481107250bf8d997c1104c5f332ccb5ad6f1a01deab0924dce7715f589d25ed23314f842623b1b80535e2bbcdf9
 SHA512 
e8f9cf21797457b1c29f68792a53321a19ae0f5af51ad1c4c5bfc350ba60d474c90545782bccade56350ced992b26872b1ef2bd0628863691bb95009ddacd30e

diff --git a/dev-libs/check/check-0.15.1.ebuild 
b/dev-libs/check/check-0.15.1.ebuild
deleted file mode 100644
index d882baeb2af..000
--- a/dev-libs/check/check-0.15.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc subunit test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   # Fix wrong libdir, probably caused by multilib
-   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TESTING=$(usex test ON OFF)
-   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
-   )
-
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   if use doc && multilib_is_native_abi; then
-   cd "${S}"/doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
-   einstalldocs
-
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-25 Thread Sam James
commit: 1ae336259e3f46756f0671ae657e94799e8511cb
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 25 10:45:29 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 25 11:16:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ae33625

dev-libs/check: arm64 stable (bug #733476)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index 86c7f246b80..965601e3d72 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-25 Thread Sergei Trofimovich
commit: 334f47e5858132726acdc75c8ebfa2918a12b3bb
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Jul 25 08:22:09 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 25 08:42:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334f47e5

dev-libs/check: stable 0.15.0 for sparc, bug #733476

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index 2aaf4e66bed..86c7f246b80 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-23 Thread Joonas Niilola
commit: 4af6fd32007a6b802a60e4c7ebcfa10c364facb4
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Jul 23 07:32:46 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul 23 07:33:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4af6fd32

dev-libs/check: bump to 0.15.1

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.15.1.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 3463a76607d..f8c68e784b8 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,2 +1,3 @@
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4
 DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84
+DIST check-0.15.1.tar.gz 305925 BLAKE2B 
eeb1468eb3219fb4e661374c24479f20eb985481107250bf8d997c1104c5f332ccb5ad6f1a01deab0924dce7715f589d25ed23314f842623b1b80535e2bbcdf9
 SHA512 
e8f9cf21797457b1c29f68792a53321a19ae0f5af51ad1c4c5bfc350ba60d474c90545782bccade56350ced992b26872b1ef2bd0628863691bb95009ddacd30e

diff --git a/dev-libs/check/check-0.15.1.ebuild 
b/dev-libs/check/check-0.15.1.ebuild
new file mode 100644
index 000..d882baeb2af
--- /dev/null
+++ b/dev-libs/check/check-0.15.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   # Fix wrong libdir, probably caused by multilib
+   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
+   )
+
+   cmake_src_configure
+}
+
+multilib_src_compile() {
+   cmake_src_compile
+
+   if use doc && multilib_is_native_abi; then
+   cd "${S}"/doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
+   einstalldocs
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-22 Thread Joonas Niilola
commit: 6904c4043ee79073b90df495c8681d2c378090c1
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jul 22 06:19:23 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jul 22 06:19:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6904c404

dev-libs/check: stabilize on amd64, #733476

Bug: https://bugs.gentoo.org/733476
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index b859ff50bd2..2aaf4e66bed 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-07-22 Thread Joonas Niilola
commit: 11e098a8a8969e8f658349714437aedc88a1529e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jul 22 06:15:37 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jul 22 06:19:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e098a8

dev-libs/check: stabilize 0.15.0 on x86, #733476

Bug: https://bugs.gentoo.org/733476
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
index d882baeb2af..b859ff50bd2 100644
--- a/dev-libs/check/check-0.15.0.ebuild
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-06-22 Thread Joonas Niilola
commit: 417018f47ac0b8646f680cef653a15e7f0dd30cd
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jun 22 08:53:11 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jun 22 08:58:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=417018f4

dev-libs/check: 0.15.0 release

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.15.0.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 1c2f384e1f6..3463a76607d 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1 +1,2 @@
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4
+DIST check-0.15.0.tar.gz 306428 BLAKE2B 
fea2a169b86248a6657f890469f41cd699dd95efb91e311ccf188548a6c8c28568decf0b5f03b08aed31e14c69d50707b418e1e71c6db7e1b7938ee36aa19cd8
 SHA512 
efde93977a38520b3b83a9e2f678d07b916fc27e41cf839a663900c4153d645fe4274ec3b7e2dabf475457f909f61734632c97b7257c49f5853fd11d920b0c84

diff --git a/dev-libs/check/check-0.15.0.ebuild 
b/dev-libs/check/check-0.15.0.ebuild
new file mode 100644
index 000..d882baeb2af
--- /dev/null
+++ b/dev-libs/check/check-0.15.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/libcheck/check/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   # Fix wrong libdir, probably caused by multilib
+   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
+   )
+
+   cmake_src_configure
+}
+
+multilib_src_compile() {
+   cmake_src_compile
+
+   if use doc && multilib_is_native_abi; then
+   cd "${S}"/doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
+   einstalldocs
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/

2020-06-04 Thread Aaron Bauman
commit: bf4badeb02f3f19dda85f2d9a66316311850e185
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Jun  4 18:26:15 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Jun  4 22:16:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf4badeb

dev-libs/check: remove unused patches

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16069
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/check/files/check-0.12.0-fp.patch| 22 --
 dev-libs/check/files/check-0.14-xfail-tests.patch | 13 -
 2 files changed, 35 deletions(-)

diff --git a/dev-libs/check/files/check-0.12.0-fp.patch 
b/dev-libs/check/files/check-0.12.0-fp.patch
deleted file mode 100644
index 7907df989a1..000
--- a/dev-libs/check/files/check-0.12.0-fp.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 a/tests/check_check_master.c.orig  2018-01-29 20:33:55.033001412 -0700
-+++ b/tests/check_check_master.c   2018-01-29 20:34:31.501879454 -0700
-@@ -214,7 +214,7 @@ static master_test_t master_tests[] = {
-   { "Simple Tests", "test_ck_assert_ldouble_ge", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'x >= y' failed: x == 2.5, y == 3" },
-   { "Simple Tests", "test_ck_assert_ldouble_ge_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion '2%d >= 3%f' failed: 2%d == 0, 3%f == 1" },
-   { "Simple Tests", "test_ck_assert_ldouble_with_expr", CK_PASS, CK_MSG_TEXT, 
"Passed" },
--  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.001" },
-+  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.0009" },
-   { "Simple Tests", "test_ck_assert_ldouble_eq_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(2%f - 3%d) < 2%p' failed: 3%d == 1, 2%f == 0, 
2%p == 0" },
-   { "Simple Tests", "test_ck_assert_ldouble_ne_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) >= t' failed: x == 0.001, y == 0.002, t == 0.01" },
-   { "Simple Tests", "test_ck_assert_ldouble_ne_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(3%f - 3%d) >= 3%p' failed: 3%d == 1, 3%f == 1, 
3%p == 1" },
 a/tests/check_check_sub.c.orig 2017-10-20 06:44:10.0 -0600
-+++ b/tests/check_check_sub.c  2018-01-29 20:33:55.034001409 -0700
-@@ -1812,7 +1812,7 @@ START_TEST(test_ck_assert_ldouble_eq_tol
-   y*=10.0l;
-   t*=10.0l;
-   ck_assert_ldouble_eq_tol(x, y, t);
--  t/=10.0l;
-+  t=0.0009l;
-   record_failure_line_num(__LINE__);
-   ck_assert_ldouble_eq_tol(x, y, t);
- }

diff --git a/dev-libs/check/files/check-0.14-xfail-tests.patch 
b/dev-libs/check/files/check-0.14-xfail-tests.patch
deleted file mode 100644
index ea2ffe10aa4..000
--- a/dev-libs/check/files/check-0.14-xfail-tests.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 a/tests/Makefile.am2020-02-02 09:33:17.807391927 +0200
-+++ b/tests/Makefile.am.1  2020-02-02 09:34:01.267166205 +0200
-@@ -19,6 +19,10 @@
- # XFAIL_TESTS = \
- # check_thread_stress
- 
-+XFAIL_TESTS = \
-+check_check_export\
-+check_check
-+
- noinst_PROGRAMS = \
-   check_check_export  \
-   check_check \



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-27 Thread Joonas Niilola
commit: 6696321039a54c96e21cbb3b01d0fdcec4d70e70
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May 27 06:16:56 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May 27 06:18:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66963210

dev-libs/check: remove old

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 65 --
 1 file changed, 65 deletions(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
deleted file mode 100644
index 40aa0e80af0..000
--- a/dev-libs/check/check-0.14.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc static-libs subunit test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=(
-   "${FILESDIR}"/check-0.12.0-fp.patch
-   "${FILESDIR}"/check-0.14-xfail-tests.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   $(use_enable doc build-docs)
-   $(use_enable subunit)
-   $(use_enable test timeout-tests)
-   )
-   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-   default
-}
-
-src_compile() {
-   if use doc; then
-   cd doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_test() {
-   # Note: test-phase takes a long time.
-   emake -k check
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   default
-
-   rm -r "${ED}/usr/share/doc/check/" || die "Failed to remove COPYING* 
files"
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-27 Thread Joonas Niilola
commit: 5b27057b97d5f2f06c98a5018e8951d524cda2a9
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May 27 06:14:19 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May 27 06:18:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b27057b

dev-libs/check: stabilize on ppc (bug 721600)

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index e104b81ce89..5c9b6ff6795 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-27 Thread Joonas Niilola
commit: 71a349b0fba9fff2999cfbacd1b59fc516ed9dd3
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May 27 06:14:55 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May 27 06:18:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a349b0

dev-libs/check: stabilize on ppc64 (bug 721600)

Closes: https://bugs.gentoo.org/721600
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index 5c9b6ff6795..565a288bac2 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-12 Thread Agostino Sarubbo
commit: 402ac358327fb2a191a0d1e1b0408dcda571acbd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue May 12 06:36:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue May 12 06:36:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402ac358

dev-libs/check: s390 stable wrt bug #721600

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index d1b8d562eaf..e104b81ce89 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-11 Thread Mart Raudsepp
commit: 2b630997b9def7ce5f4bcff76ff7c3a29684dc36
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon May 11 15:55:45 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May 11 18:32:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b630997

dev-libs/check: arm64 stable (bug #721600)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index 9dd07e7b132..d1b8d562eaf 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-09 Thread Sergei Trofimovich
commit: 4f8ad239748e6e158fd6608dda3ece24a77ce19c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May  9 14:30:21 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May  9 19:42:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8ad239

dev-libs/check: stable 0.14.0-r2 for hppa, bug #721600

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index a57332eb0ce..9dd07e7b132 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-09 Thread Agostino Sarubbo
commit: 2d9ff34bd090957159e681a7bd68e8047290938f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May  9 07:47:37 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May  9 07:47:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9ff34b

dev-libs/check: x86 stable wrt bug #721600

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index 37cfe66a12e..a57332eb0ce 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-08 Thread Agostino Sarubbo
commit: 1bc57091e7a3695ee46e307b4c72ec2a4353d698
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May  8 17:14:59 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May  8 17:14:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bc57091

dev-libs/check: sparc stable wrt bug #721600

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index 0e5f5feec15..37cfe66a12e 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-08 Thread Agostino Sarubbo
commit: 93670683936adc1e9f1c664bd8f3d8eff8c07aa0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May  8 17:10:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May  8 17:10:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93670683

dev-libs/check: arm stable wrt bug #721600

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index ce657cf1c18..0e5f5feec15 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-05-08 Thread Agostino Sarubbo
commit: e5d04bd7f4c2a402621211751e6be9e3217e7b33
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May  8 10:47:27 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May  8 10:47:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5d04bd7

dev-libs/check: amd64 stable wrt bug #721600

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index 9f06143d72f..ce657cf1c18 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-04-04 Thread Sergei Trofimovich
commit: dac2002742f899f2951394244e15a2b02b2317b6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Apr  4 14:10:07 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr  4 15:55:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dac20027

dev-libs/check: stable 0.14.0 for hppa, bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index a0d8db1039d..40aa0e80af0 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-26 Thread Joonas Niilola
commit: 6cf035a2b8ff028e4451200ca803cd032f166bd7
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Mar 26 18:13:35 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Mar 26 18:15:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf035a2

dev-libs/check: remove old

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest   |  2 --
 dev-libs/check/check-0.10.0-r1.ebuild | 65 -
 dev-libs/check/check-0.12.0.ebuild| 67 ---
 3 files changed, 134 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 4da94a49e38..1c2f384e1f6 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,3 +1 @@
-DIST check-0.10.0.tar.gz 769119 BLAKE2B 
d5e256bef4aa010322844ce748e620ce884658d74b14e1ea5b0e1bbd4565ef7b0cb7b86d315a36f7a5e4d225e40f242ff9730790bd55fc036757b4296396d153
 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
-DIST check-0.12.0-github.tar.gz 281127 BLAKE2B 
d7dc89c10022594a37e9a4bc6b9fe1e8f355af864a5012c292cc3f1152e9e3e9be01fa34b39e5168f65650e540f36dbc8195952908a871d1c111283429f2f538
 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
deleted file mode 100644
index c59cd61cf12..000
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
-
-inherit autotools autotools-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://sourceforge.net/projects/check/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs subunit"
-
-RDEPEND="
-   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-
-DEPEND="
-   ${RDEPEND}
-   sys-apps/texinfo
-   virtual/pkgconfig"
-
-pkg_setup() {
-   # See multilib_src_test(), disable sleep()-based tests because they
-   # just take a long time doing pretty much nothing.
-   export CPPFLAGS="-DTIMEOUT_TESTS_ENABLED=0 ${CPPFLAGS}"
-}
-
-src_prepare() {
-   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
-   || die 'failed to unset docdir in Makefile.am'
-
-   # fix out-of-sourcedir build having inconsistent check.h files, for
-   # example breaks USE=subunit.
-   rm src/check.h || die 'failed to remove src/check.h'
-
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable subunit)
-   --docdir="${EPREFIX}/usr/share/doc/${PF}"
-   )
-   autotools-multilib_src_configure
-}
-
-multilib_src_test() {
-   elog "-DTIMEOUT_TESTS_ENABLED=0 has been prepended to CPPFLAGS. To run 
the"
-   elog "entire testsuite for dev-libs/check, ensure that"
-   elog "-DTIMEOUT_TESTS_ENABLED=1 is in your CPPFLAGS."
-   default_src_test
-}
-
-src_install() {
-   autotools-multilib_src_install
-   dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
-
-   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
-   die 'failed to remove COPYING files'
-}

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
deleted file mode 100644
index bcebc3559c1..000
--- a/dev-libs/check/check-0.12.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}-github.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs subunit"
-
-RDEPEND="
-   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # Fix test failures due to varying floating point behavior 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-25 Thread Joonas Niilola
commit: f0280b263ceea85b0aef3cd5d03e31bebcab95a6
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Mar 25 11:02:47 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Mar 25 11:17:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0280b26

dev-libs/check: fix DoubleEmptyLine CI issue

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
index c2a9889d2e5..a4f75b01671 100644
--- a/dev-libs/check/check-0.14.0-r2.ebuild
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -31,7 +31,6 @@ src_prepare() {
sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
 }
 
-
 multilib_src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test ON OFF)



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/, dev-libs/check/

2020-03-23 Thread Joonas Niilola
commit: 06d2b112fde3faca9767a93835c07009ada5b177
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar 23 13:12:07 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar 23 13:13:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d2b112

dev-libs/check: update subunit logic, fix pkgconfig file

 - subunit & doc handling patches from #711390
 - .pc libdir issue when using multilib #714058

Bug: https://bugs.gentoo.org/711390
Closes: https://bugs.gentoo.org/714058
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r2.ebuild  | 58 ++
 .../check-0.14.0-r2-disable-automagic-dep.patch| 23 +
 2 files changed, 81 insertions(+)

diff --git a/dev-libs/check/check-0.14.0-r2.ebuild 
b/dev-libs/check/check-0.14.0-r2.ebuild
new file mode 100644
index 000..c2a9889d2e5
--- /dev/null
+++ b/dev-libs/check/check-0.14.0-r2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/check-0.14.0-r2-disable-automagic-dep.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   # Fix wrong libdir, probably caused by multilib
+   sed -i "s|\${libdir}|/usr/$(get_libdir)|g" check.pc.in || die "sed .pc 
failed."
+}
+
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHECK_ENABLE_SUBUNIT=$(usex subunit ON OFF)
+   )
+
+   cmake_src_configure
+}
+
+multilib_src_compile() {
+   cmake_src_compile
+
+   if use doc && multilib_is_native_abi; then
+   cd "${S}"/doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
+   einstalldocs
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}

diff --git a/dev-libs/check/files/check-0.14.0-r2-disable-automagic-dep.patch 
b/dev-libs/check/files/check-0.14.0-r2-disable-automagic-dep.patch
new file mode 100644
index 000..0843413ee2e
--- /dev/null
+++ b/dev-libs/check/files/check-0.14.0-r2-disable-automagic-dep.patch
@@ -0,0 +1,23 @@
+--- a/CMakeLists.txt   2020-03-21 09:42:30.411037664 +0200
 b/CMakeLists.txt   2020-03-21 09:49:12.358161439 +0200
+@@ -365,15 +365,16 @@
+   ADD_DEFINITIONS(-DHAVE_LIBRT=1)
+ endif (HAVE_LIBRT)
+
+-check_library_exists(subunit subunit_test_start "" HAVE_SUBUNIT)
+-if (HAVE_SUBUNIT)
++option(CHECK_ENABLE_SUBUNIT "Enable subunit support" ON)
++if (CHECK_ENABLE_SUBUNIT)
+   set(SUBUNIT "subunit")
+   set(ENABLE_SUBUNIT 1)
++  set(HAVE_SUBUNIT 1)
+   add_definitions(-DENABLE_SUBUNIT=1)
+-else(HAVE_SUBUNIT)
++else(CHECK_ENABLE_SUBUNIT)
+   set(ENABLE_SUBUNIT 0)
+   add_definitions(-DENABLE_SUBUNIT=0)
+-endif (HAVE_SUBUNIT)
++endif (CHECK_ENABLE_SUBUNIT)
+
+ 
###
+ # Generate "config.h" from "cmake/config.h.in"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/, dev-libs/check/files/

2020-03-23 Thread Joonas Niilola
commit: d3efafeaa44070379d2c8d68ae976e061d921c8b
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar 23 13:12:38 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar 23 13:13:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3efafea

dev-libs/check: remove faulty 0.14.0-r1

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r1.ebuild  | 50 --
 .../check-0.14.0-r1-disable-automagic-dep.patch| 23 --
 2 files changed, 73 deletions(-)

diff --git a/dev-libs/check/check-0.14.0-r1.ebuild 
b/dev-libs/check/check-0.14.0-r1.ebuild
deleted file mode 100644
index ff085a62e15..000
--- a/dev-libs/check/check-0.14.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc subunit test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}/check-0.14.0-r1-disable-automagic-dep.patch" )
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DCHECK_ENABLE_TESTS=$(usex test ON OFF)
-   -DCHECK_ENABLE_SUBUNIT=$(usex subunit 1 0)
-   )
-
-   cmake_src_configure
-}
-
-multilib_src_compile() {
-   cmake_src_compile
-
-   if use doc && multilib_is_native_abi; then
-   cd "${S}"/doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
-   einstalldocs
-
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}

diff --git a/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch 
b/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
deleted file mode 100644
index a79a7bcccdd..000
--- a/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
+++ /dev/null
@@ -1,23 +0,0 @@
 a/CMakeLists.txt   2020-03-21 09:42:30.411037664 +0200
-+++ b/CMakeLists.txt   2020-03-21 09:49:12.358161439 +0200
-@@ -365,15 +365,16 @@
-   ADD_DEFINITIONS(-DHAVE_LIBRT=1)
- endif (HAVE_LIBRT)
-
--check_library_exists(subunit subunit_test_start "" HAVE_SUBUNIT)
--if (HAVE_SUBUNIT)
-+option(CHECK_ENABLE_SUBUNIT "Enable subunit support" ON)
-+if (CHECK_ENABLE_SUBUNIT EQUAL 1)
-   set(SUBUNIT "subunit")
-   set(ENABLE_SUBUNIT 1)
-+  set(HAVE_SUBUNIT 1)
-   add_definitions(-DENABLE_SUBUNIT=1)
--else(HAVE_SUBUNIT)
-+else(CHECK_ENABLE_SUBUNIT EQUAL 0)
-   set(ENABLE_SUBUNIT 0)
-   add_definitions(-DENABLE_SUBUNIT=0)
--endif (HAVE_SUBUNIT)
-+endif (CHECK_ENABLE_SUBUNIT)
-
- 
###
- # Generate "config.h" from "cmake/config.h.in"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-21 Thread Mart Raudsepp
commit: db1d4191e7dcf79434aea35bf412198aef1891a4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Mar 21 09:16:28 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Mar 21 09:24:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1d4191

dev-libs/check: arm64 stable (bug #711082)

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 20309fd5ba0..f894fc49cf5 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/, dev-libs/check/files/

2020-03-21 Thread Joonas Niilola
commit: 6c5026b88f869f521d85d6a130982c2e92f63e75
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Mar 21 08:52:58 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Mar 21 08:53:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c5026b8

dev-libs/check: migrate to CMake, "fix" tests, revbump 0.14.0

Bug: https://bugs.gentoo.org/711390
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0-r1.ebuild  | 50 ++
 .../check-0.14.0-r1-disable-automagic-dep.patch| 23 ++
 2 files changed, 73 insertions(+)

diff --git a/dev-libs/check/check-0.14.0-r1.ebuild 
b/dev-libs/check/check-0.14.0-r1.ebuild
new file mode 100644
index 000..ff085a62e15
--- /dev/null
+++ b/dev-libs/check/check-0.14.0-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=( "${FILESDIR}/check-0.14.0-r1-disable-automagic-dep.patch" )
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DCHECK_ENABLE_TESTS=$(usex test ON OFF)
+   -DCHECK_ENABLE_SUBUNIT=$(usex subunit 1 0)
+   )
+
+   cmake_src_configure
+}
+
+multilib_src_compile() {
+   cmake_src_compile
+
+   if use doc && multilib_is_native_abi; then
+   cd "${S}"/doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( "${S}"/doc/html/. )
+   einstalldocs
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}

diff --git a/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch 
b/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
new file mode 100644
index 000..a79a7bcccdd
--- /dev/null
+++ b/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
@@ -0,0 +1,23 @@
+--- a/CMakeLists.txt   2020-03-21 09:42:30.411037664 +0200
 b/CMakeLists.txt   2020-03-21 09:49:12.358161439 +0200
+@@ -365,15 +365,16 @@
+   ADD_DEFINITIONS(-DHAVE_LIBRT=1)
+ endif (HAVE_LIBRT)
+
+-check_library_exists(subunit subunit_test_start "" HAVE_SUBUNIT)
+-if (HAVE_SUBUNIT)
++option(CHECK_ENABLE_SUBUNIT "Enable subunit support" ON)
++if (CHECK_ENABLE_SUBUNIT EQUAL 1)
+   set(SUBUNIT "subunit")
+   set(ENABLE_SUBUNIT 1)
++  set(HAVE_SUBUNIT 1)
+   add_definitions(-DENABLE_SUBUNIT=1)
+-else(HAVE_SUBUNIT)
++else(CHECK_ENABLE_SUBUNIT EQUAL 0)
+   set(ENABLE_SUBUNIT 0)
+   add_definitions(-DENABLE_SUBUNIT=0)
+-endif (HAVE_SUBUNIT)
++endif (CHECK_ENABLE_SUBUNIT)
+
+ 
###
+ # Generate "config.h" from "cmake/config.h.in"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: a34932f4f763bf6405e90143dd9a12540d5bf923
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 15:22:21 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 15:22:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a34932f4

dev-libs/check: ppc stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index d1341d65f94..20309fd5ba0 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: 16051fcaf77d3d7923d75c94efe4c40ec400d5c0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 12:39:03 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 12:39:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16051fca

dev-libs/check: ppc64 stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 7149555709b..d1341d65f94 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: 5a78f7bcf4bb67d7920d844b57fe06bf53a8ad81
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 12:37:50 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 12:37:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a78f7bc

dev-libs/check: ia64 stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index ebad9764f13..7149555709b 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: b0b53b7fc4bd8e896626a5a1a1a857f45b0a8f2b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 12:33:53 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 12:33:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b53b7f

dev-libs/check: s390 stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 9fb98b85142..ebad9764f13 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: 5c31d7e69c053ee69cd2854e480f5e5e61628a61
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 12:29:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 12:29:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c31d7e6

dev-libs/check: sparc stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 72f21a19240..9fb98b85142 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-03-02 Thread Agostino Sarubbo
commit: 7d5a21c8f0680c0fb398500a844ce70c15c8d3e4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Mar  2 12:28:07 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Mar  2 12:28:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5a21c8

dev-libs/check: arm stable wrt bug #711082

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 8f03514f758..72f21a19240 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-02-29 Thread Joonas Niilola
commit: 2b17c6bc3ef138900cd81099d32e431b5e0636a2
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Feb 29 08:45:51 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Feb 29 09:02:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b17c6bc

dev-libs/check: stabilize 0.14 on amd64

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index 4523528ee3e..c11140e4d37 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-02-29 Thread Joonas Niilola
commit: c8401aa81953c4955f610e4b0d18a8b5d3688d85
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sat Feb 29 09:02:04 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Feb 29 09:02:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8401aa8

dev-libs/check: stabilize 0.14 on x86

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
index c11140e4d37..8f03514f758 100644
--- a/dev-libs/check/check-0.14.0.ebuild
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/, dev-libs/check/files/

2020-02-02 Thread Joonas Niilola
commit: 37cad266778683a94016f0f77877464f248af6c4
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Feb  2 07:55:23 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Feb  2 08:08:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37cad266

dev-libs/check: bump to 0.14.0

Closes: https://bugs.gentoo.org/603234
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest   |  1 +
 dev-libs/check/check-0.14.0.ebuild| 66 +++
 dev-libs/check/files/check-0.14-xfail-tests.patch | 13 +
 3 files changed, 80 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 1a02283e0aa..9171a0811f9 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,3 +1,4 @@
 DIST check-0.10.0.tar.gz 769119 BLAKE2B 
d5e256bef4aa010322844ce748e620ce884658d74b14e1ea5b0e1bbd4565ef7b0cb7b86d315a36f7a5e4d225e40f242ff9730790bd55fc036757b4296396d153
 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 DIST check-0.12.0-github.tar.gz 281127 BLAKE2B 
d7dc89c10022594a37e9a4bc6b9fe1e8f355af864a5012c292cc3f1152e9e3e9be01fa34b39e5168f65650e540f36dbc8195952908a871d1c111283429f2f538
 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
 DIST check-0.13.0.tar.gz 301386 BLAKE2B 
fbc79ad9f0bacd7c7461cde631a499d92e004233b5d35ba35cb0791195362e12fc21ca059e2019280cbf256215528af239de988755e0183cb6e332a5b145624e
 SHA512 
7943021c5bc3b5ca7bc552f6fe1287e384724d69e5bb128d58256692e810b194e506fc1b65ea4fed27d065e2176e7371483e918beb48125abfe3b6f1ca68eb8f
+DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4

diff --git a/dev-libs/check/check-0.14.0.ebuild 
b/dev-libs/check/check-0.14.0.ebuild
new file mode 100644
index 000..c1de319b23d
--- /dev/null
+++ b/dev-libs/check/check-0.14.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc static-libs subunit test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+PATCHES=(
+   "${FILESDIR}"/check-0.12.0-fp.patch
+   "${FILESDIR}"/check-0.14-xfail-tests.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   --disable-dependency-tracking
+   $(use_enable doc build-docs)
+   $(use_enable subunit)
+   $(use_enable test timeout-tests)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+   default
+}
+
+src_compile() {
+   if use doc; then
+   cd doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_test() {
+   # Note: test-phase takes a long time.
+   emake -k check
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   default
+
+   rm -r "${ED}/usr/share/doc/check/" || die "Failed to remove COPYING* 
files"
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}

diff --git a/dev-libs/check/files/check-0.14-xfail-tests.patch 
b/dev-libs/check/files/check-0.14-xfail-tests.patch
new file mode 100644
index 000..ea2ffe10aa4
--- /dev/null
+++ b/dev-libs/check/files/check-0.14-xfail-tests.patch
@@ -0,0 +1,13 @@
+--- a/tests/Makefile.am2020-02-02 09:33:17.807391927 +0200
 b/tests/Makefile.am.1  2020-02-02 09:34:01.267166205 +0200
+@@ -19,6 +19,10 @@
+ # XFAIL_TESTS = \
+ # check_thread_stress
+ 
++XFAIL_TESTS = \
++check_check_export\
++check_check
++
+ noinst_PROGRAMS = \
+   check_check_export  \
+   check_check \



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2020-02-02 Thread Joonas Niilola
commit: 074552b638cfecfd2e211f92312dac9647830017
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Feb  2 08:06:22 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Feb  2 08:08:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074552b6

dev-libs/check: remove old 0.13

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 -
 dev-libs/check/check-0.13.0.ebuild | 58 --
 2 files changed, 59 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 9171a0811f9..4da94a49e38 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,4 +1,3 @@
 DIST check-0.10.0.tar.gz 769119 BLAKE2B 
d5e256bef4aa010322844ce748e620ce884658d74b14e1ea5b0e1bbd4565ef7b0cb7b86d315a36f7a5e4d225e40f242ff9730790bd55fc036757b4296396d153
 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 DIST check-0.12.0-github.tar.gz 281127 BLAKE2B 
d7dc89c10022594a37e9a4bc6b9fe1e8f355af864a5012c292cc3f1152e9e3e9be01fa34b39e5168f65650e540f36dbc8195952908a871d1c111283429f2f538
 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
-DIST check-0.13.0.tar.gz 301386 BLAKE2B 
fbc79ad9f0bacd7c7461cde631a499d92e004233b5d35ba35cb0791195362e12fc21ca059e2019280cbf256215528af239de988755e0183cb6e332a5b145624e
 SHA512 
7943021c5bc3b5ca7bc552f6fe1287e384724d69e5bb128d58256692e810b194e506fc1b65ea4fed27d065e2176e7371483e918beb48125abfe3b6f1ca68eb8f
 DIST check-0.14.0.tar.gz 303471 BLAKE2B 
d602bb56d205eccf06e4177e3f6d3f7270c3a0cba0e1d397480f0409a916ec4118c48340ad6f6a8955ea30d9e22252ff8381a687d000c3f8e62828cf656f1245
 SHA512 
54ad175c00cf0c73b4386cf6b3d6a404a5da4f57897d099e772f148f410108c44767c3266a940113be73a6861b3f3ee1706c558cc71ec51df99687f19f3a3bb4

diff --git a/dev-libs/check/check-0.13.0.ebuild 
b/dev-libs/check/check-0.13.0.ebuild
deleted file mode 100644
index bda5701d57b..000
--- a/dev-libs/check/check-0.13.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc static-libs subunit test"
-
-# https://github.com/libcheck/check/issues/208
-RESTRICT="test"
-#RESTRICT="!test? ( test )"
-
-RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   --disable-dependency-tracking
-   $(use_enable doc build-docs)
-   $(use_enable subunit)
-   $(use_enable test timeout-tests)
-   )
-   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-   default
-}
-
-src_compile() {
-   if use doc; then
-   cd doc/ || die "Failed to switch directories."
-   doxygen "." || die "Failed to run doxygen to generate docs."
-   fi
-}
-
-multilib_src_install_all() {
-   use doc && local HTML_DOCS=( doc/html/. )
-   default
-
-   rm -r "${ED}/usr/share/doc/check/" || die "Failed to remove COPYING* 
files"
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/, profiles/arch/riscv/

2019-11-13 Thread Joonas Niilola
commit: 305e141036fa24de6c9881f55dd12a5e94c6231f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 14 04:15:47 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 14 04:15:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=305e1410

dev-libs/check: readd ~riscv for 0.13.0

Originally dropped due to not having time to check profile use masks.

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/check-0.13.0.ebuild   | 2 +-
 profiles/arch/riscv/package.use.mask | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/check/check-0.13.0.ebuild 
b/dev-libs/check/check-0.13.0.ebuild
index dad18b128cb..bda5701d57b 100644
--- a/dev-libs/check/check-0.13.0.ebuild
+++ b/dev-libs/check/check-0.13.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs subunit test"
 
 # https://github.com/libcheck/check/issues/208

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index a16d07ecc34..e14810d5ecf 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -29,7 +29,7 @@ app-text/asciidoc graphviz test
 app-text/po4a test
 app-text/xmlto text
 dev-lang/python tk
-dev-libs/check subunit
+dev-libs/check doc subunit
 dev-libs/glib gtk-doc test
 dev-libs/icu doc
 dev-libs/iniparser doc



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2019-10-27 Thread Joonas Niilola
commit: a04a5656720e4da5f119f6f28cf0f550468c945e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Oct 27 07:07:11 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 27 07:07:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a04a5656

dev-libs/check: bump to 0.13.0

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.13.0.ebuild | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 67762185f55..1a02283e0aa 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,2 +1,3 @@
 DIST check-0.10.0.tar.gz 769119 BLAKE2B 
d5e256bef4aa010322844ce748e620ce884658d74b14e1ea5b0e1bbd4565ef7b0cb7b86d315a36f7a5e4d225e40f242ff9730790bd55fc036757b4296396d153
 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 DIST check-0.12.0-github.tar.gz 281127 BLAKE2B 
d7dc89c10022594a37e9a4bc6b9fe1e8f355af864a5012c292cc3f1152e9e3e9be01fa34b39e5168f65650e540f36dbc8195952908a871d1c111283429f2f538
 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
+DIST check-0.13.0.tar.gz 301386 BLAKE2B 
fbc79ad9f0bacd7c7461cde631a499d92e004233b5d35ba35cb0791195362e12fc21ca059e2019280cbf256215528af239de988755e0183cb6e332a5b145624e
 SHA512 
7943021c5bc3b5ca7bc552f6fe1287e384724d69e5bb128d58256692e810b194e506fc1b65ea4fed27d065e2176e7371483e918beb48125abfe3b6f1ca68eb8f

diff --git a/dev-libs/check/check-0.13.0.ebuild 
b/dev-libs/check/check-0.13.0.ebuild
new file mode 100644
index 000..dad18b128cb
--- /dev/null
+++ b/dev-libs/check/check-0.13.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc static-libs subunit test"
+
+# https://github.com/libcheck/check/issues/208
+RESTRICT="test"
+#RESTRICT="!test? ( test )"
+
+RDEPEND="subunit? ( dev-python/subunit[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   --disable-dependency-tracking
+   $(use_enable doc build-docs)
+   $(use_enable subunit)
+   $(use_enable test timeout-tests)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+   default
+}
+
+src_compile() {
+   if use doc; then
+   cd doc/ || die "Failed to switch directories."
+   doxygen "." || die "Failed to run doxygen to generate docs."
+   fi
+}
+
+multilib_src_install_all() {
+   use doc && local HTML_DOCS=( doc/html/. )
+   default
+
+   rm -r "${ED}/usr/share/doc/check/" || die "Failed to remove COPYING* 
files"
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2019-10-03 Thread Joonas Niilola
commit: 50a16e19a2e0dfbd86ddd321104652fc06b19c52
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Oct  3 15:37:43 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Oct  3 15:37:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a16e19

dev-libs/check: update maintainer

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/check/metadata.xml | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/dev-libs/check/metadata.xml b/dev-libs/check/metadata.xml
index 2f39b9d091b..9db0afcb5ff 100644
--- a/dev-libs/check/metadata.xml
+++ b/dev-libs/check/metadata.xml
@@ -1,12 +1,15 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   
-   Enable support for the subunit unit test 
protocol
-   
-   
-   check
-   libcheck/check
-   
+  
+juip...@gentoo.org
+Joonas Niilola
+  
+  
+Enable support for the subunit unit test 
protocol
+  
+  
+check
+libcheck/check
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2019-05-04 Thread Mikle Kolyada
commit: 76546525d716a3fdaa7efc23d9bc9d624eefb79c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat May  4 13:15:18 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat May  4 13:15:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76546525

dev-libs/check: Add ~riscv keyword

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-libs/check/check-0.10.0-r1.ebuild | 4 ++--
 dev-libs/check/check-0.12.0.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 4f0967eefc8..338e7eeda11 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index cd733f879a3..58717a22bd6 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-04-25 Thread Matt Turner
commit: ac8c3a406b38a6aae286bd3fbf1eefa0d79991f9
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr 26 05:24:50 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr 26 05:27:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8c3a40

dev-libs/check-0.12.0: ppc stable, bug 644648

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 410db4fea02..5551a340a02 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-04-25 Thread Matt Turner
commit: 7f1c0165f7920138f77752533789cbe26375bc03
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr 26 05:24:55 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr 26 05:27:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f1c0165

dev-libs/check-0.12.0: ppc64 stable, bug 644648

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 5551a340a02..cd733f879a3 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-04-22 Thread Mart Raudsepp
commit: 742b6623c7765b246da5904d8a17e820cb2039fe
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Apr 22 08:18:56 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Apr 22 08:18:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742b6623

dev-libs/check-0.12.0: arm64 stable (bug #644648)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 25d0f16bf8a..410db4fea02 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/, dev-libs/check/

2018-04-14 Thread Pacho Ramos
commit: 812ed593f07a3c6518b7ccaa4e5acc156fc07d5d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 08:13:35 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 08:13:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812ed593

dev-libs/check: Fix tests (#648920 by ernsteiswuerfel)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-libs/check/check-0.12.0.ebuild | 18 +++---
 dev-libs/check/files/check-0.12.0-fp.patch | 22 ++
 2 files changed, 33 insertions(+), 7 deletions(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index acde41e304b..25d0f16bf8a 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -15,14 +15,18 @@ KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc 
~ppc64 ~s390 ~sh spa
 IUSE="static-libs subunit"
 
 RDEPEND="
-   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-
-DEPEND="
-   ${RDEPEND}
+   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
sys-apps/texinfo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README.md THANKS TODO )
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   # Fix test failures due to varying floating point behavior across 
platforms
+   # (#648920), patch from Fedora.
+   "${FILESDIR}/${PN}-0.12.0-fp.patch"
+)
 
 pkg_setup() {
# See multilib_src_test(), disable sleep()-based tests because they

diff --git a/dev-libs/check/files/check-0.12.0-fp.patch 
b/dev-libs/check/files/check-0.12.0-fp.patch
new file mode 100644
index 000..7907df989a1
--- /dev/null
+++ b/dev-libs/check/files/check-0.12.0-fp.patch
@@ -0,0 +1,22 @@
+--- a/tests/check_check_master.c.orig  2018-01-29 20:33:55.033001412 -0700
 b/tests/check_check_master.c   2018-01-29 20:34:31.501879454 -0700
+@@ -214,7 +214,7 @@ static master_test_t master_tests[] = {
+   { "Simple Tests", "test_ck_assert_ldouble_ge", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'x >= y' failed: x == 2.5, y == 3" },
+   { "Simple Tests", "test_ck_assert_ldouble_ge_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion '2%d >= 3%f' failed: 2%d == 0, 3%f == 1" },
+   { "Simple Tests", "test_ck_assert_ldouble_with_expr", CK_PASS, CK_MSG_TEXT, 
"Passed" },
+-  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.001" },
++  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.0009" },
+   { "Simple Tests", "test_ck_assert_ldouble_eq_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(2%f - 3%d) < 2%p' failed: 3%d == 1, 2%f == 0, 
2%p == 0" },
+   { "Simple Tests", "test_ck_assert_ldouble_ne_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) >= t' failed: x == 0.001, y == 0.002, t == 0.01" },
+   { "Simple Tests", "test_ck_assert_ldouble_ne_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(3%f - 3%d) >= 3%p' failed: 3%d == 1, 3%f == 1, 
3%p == 1" },
+--- a/tests/check_check_sub.c.orig 2017-10-20 06:44:10.0 -0600
 b/tests/check_check_sub.c  2018-01-29 20:33:55.034001409 -0700
+@@ -1812,7 +1812,7 @@ START_TEST(test_ck_assert_ldouble_eq_tol
+   y*=10.0l;
+   t*=10.0l;
+   ck_assert_ldouble_eq_tol(x, y, t);
+-  t/=10.0l;
++  t=0.0009l;
+   record_failure_line_num(__LINE__);
+   ck_assert_ldouble_eq_tol(x, y, t);
+ }



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-03-25 Thread Markus Meier
commit: 74265b284467feb0e20feb8699932e8fe5bbe45a
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Mar 25 17:15:17 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Mar 25 17:15:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74265b28

dev-libs/check: arm stable, bug #644648

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 872612ff940..acde41e304b 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-03-21 Thread Matt Turner
commit: 6e1a6088bd6b64d82298e252e03b276d9932a4c6
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 22 00:14:40 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 22 00:14:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1a6088

dev-libs/check-0.12.0: hppa stable, bug 644648

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 6fb0d04904d..872612ff940 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-03-20 Thread Sergei Trofimovich
commit: 6dd503fa6fcd6831b9ff69176f9cb1f3cd4201fc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 20 09:14:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 20 09:14:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd503fa

Revert "dev-libs/check: stable 0.12.0 for ppc, bug #644648"

This reverts commit 4c137a7e98c746ef020035e8c75e4a6a369906a3.

Lets sort out indeger division failures first.

Bug: https://bugs.gentoo.org/648920

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 8c07390682e..6fb0d04904d 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-03-20 Thread Sergei Trofimovich
commit: 4c137a7e98c746ef020035e8c75e4a6a369906a3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 20 09:07:16 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 20 09:07:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c137a7e

dev-libs/check: stable 0.12.0 for ppc, bug #644648

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 6fb0d04904d..8c07390682e 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-03-04 Thread Tobias Klausmann
commit: b70802afa6aac0430347ee4251748cccad635750
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Mar  4 11:06:05 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Mar  4 11:34:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70802af

dev-libs/check-0.12.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/644648

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index bea0623e835..6fb0d04904d 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-02-19 Thread Sergei Trofimovich
commit: e85a80640bdab6115d1591b0d84f48bf924412af
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Feb 19 08:37:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Feb 19 08:37:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e85a8064

dev-libs/check: stable 0.12.0 for ia64, bug #644648

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 42ae7b0394d..bea0623e835 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-02-18 Thread Sergei Trofimovich
commit: 7ebfba16c65e45ea3eca202862c594ed3428c6a0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Feb 18 07:34:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Feb 18 08:30:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ebfba16

dev-libs/check: stable 0.12.0 for sparc, bug #644648

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 1e01364fcac..42ae7b0394d 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-02-06 Thread Thomas Deutschmann
commit: 4b9f7d77acdfa8f1cdd2f5333b3adfaf4e99713b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Feb  6 13:09:27 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Feb  6 15:09:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b9f7d77

dev-libs/check: x86 stable (bug #644648)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 61fb128be13..1e01364fcac 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-01-27 Thread Mike Frysinger
commit: b69bf1d3a7d5c9c556ef4a0c0ffb1a27e68eabf8
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Jan 27 19:06:28 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Sat Jan 27 19:07:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b69bf1d3

dev-libs/check: mark 0.10.0-r1 arm64/m68k/s390/sh stable

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 58b13fb046b..4f0967eefc8 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-01-23 Thread Patrice Clement
commit: 955d680e5a344ff3e7a2f80bb16f4b24fb9cc1a1
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Jan 23 22:05:24 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 23 22:06:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955d680e

dev-libs/check: add amd64-fbsd keyword.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-libs/check/check-0.10.0-r1.ebuild | 11 +++
 dev-libs/check/check-0.12.0.ebuild| 11 +++
 2 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 35f15fde800..58b13fb046b 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,11 +13,14 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris ~amd64-fbsd"
 IUSE="static-libs subunit"
 
-RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
+RDEPEND="
+   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+
+DEPEND="
+   ${RDEPEND}
sys-apps/texinfo
virtual/pkgconfig"
 

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index b959e47a7fa..61fb128be13 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,11 +11,14 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~amd64-fbsd"
 IUSE="static-libs subunit"
 
-RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
+RDEPEND="
+   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+
+DEPEND="
+   ${RDEPEND}
sys-apps/texinfo
virtual/pkgconfig"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2018-01-15 Thread Tobias Klausmann
commit: 8c5ae8a163a848a34c26da7985cb0a78bb3ca23d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Jan 15 19:02:42 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Jan 15 19:02:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c5ae8a1

dev-libs/check-0.12.0-r0: amd64 stable

Gentoo-Bug: http://bugs.gentoo.org/644648

 dev-libs/check/check-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index 6f9ee0d01c5..b959e47a7fa 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/

2017-11-05 Thread Amy Liffey
commit: d6008d5da2ae30b86fea0f8ee943a27a9c408653
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Nov  5 09:39:07 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Nov  6 07:31:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6008d5d

dev-libs/check: remove unused patch

Closes:#6129

 .../check/files/check-0.9.10-AM_PATH_CHECK.patch   | 33 --
 1 file changed, 33 deletions(-)

diff --git a/dev-libs/check/files/check-0.9.10-AM_PATH_CHECK.patch 
b/dev-libs/check/files/check-0.9.10-AM_PATH_CHECK.patch
deleted file mode 100644
index a433549a363..000
--- a/dev-libs/check/files/check-0.9.10-AM_PATH_CHECK.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Index: doc/example/tests/Makefile.am
-===
 doc/example/tests/Makefile.am  (revision 747)
-+++ doc/example/tests/Makefile.am  (working copy)
-@@ -3,5 +3,5 @@
- TESTS = check_money
- check_PROGRAMS = check_money
- check_money_SOURCES = check_money.c $(top_builddir)/src/money.h
--check_money_CFLAGS = @CHECK_CFLAGS@
--check_money_LDADD = $(top_builddir)/src/libmoney.la @CHECK_LIBS@
-+check_money_CFLAGS = $(CHECK_CFLAGS)
-+check_money_LDADD = $(top_builddir)/src/libmoney.la $(CHECK_LIBS)
-Index: doc/example/configure.ac
-===
 doc/example/configure.ac   (revision 747)
-+++ doc/example/configure.ac   (working copy)
-@@ -20,12 +20,10 @@
- 
- # Checks for libraries.
- 
--# This macro is defined in check.m4 and tests if check.h and
--# libcheck.a are installed in your system. It sets CHECK_CFLAGS and
--# CHECK_LIBS accordingly.  
--#  AM_PATH_CHECK([MINIMUM-VERSION,
--#[ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
--AM_PATH_CHECK()
-+# Use pkg-config instead of upstream-provided and possibly-broken
-+# AM_PATH_CHECK. This command sets CHECK_CFLAGS and CHECK_LIBS
-+# appropriately.
-+PKG_CHECK_MODULES([CHECK], [check])
- 
- # Checks for header files.
- AC_HEADER_STDC



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-11-03 Thread Michael Palimaka
commit: 1c149db5c64e00a0c1f4e30058a86c3a0c6efd7c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Nov  3 13:26:27 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Nov  3 13:26:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c149db5

dev-libs/check: remove old

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 dev-libs/check/Manifest   |  3 --
 dev-libs/check/check-0.10.0-r2.ebuild | 59 -
 dev-libs/check/check-0.11.0.ebuild| 62 ---
 dev-libs/check/check-0.9.11.ebuild| 54 --
 4 files changed, 178 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 0d91e30d7da..2917679b4a9 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,5 +1,2 @@
-DIST check-0.10.0-github.tar.gz 257887 SHA256 
38daf46cc8bf9081d63970b6ea371e8462beb5e77c03443f275cf4b10ac3a0c2 SHA512 
d4a5881e07c9285a5ca4eff6f63172b19c968bab3cd5cfc06c2be54fd25ef71d63b0bd6b425c7af5cfe89d7bc3fae17e56b8648cad1db58a9972e6de1b6fd96f
 WHIRLPOOL 
f254b3cd77db9735388f482aaf0d93be24a6bbea08558632d28eeb9d0573ea73ef4d9c36b2e0571fa7c938e288d8261a51dede5bb0ccd8a2671f5788512a230a
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
-DIST check-0.11.0-github.tar.gz 275579 SHA256 
df18bb72ba31eed2e06c21dd97402174500a211645e4b3748e9e277551acc97d SHA512 
829adee2a5793dda6ac88162e355268019dd82e7a8ad95f1287bd262c3a7764425fba6a8347f1aeebdad642a972043b70aa59d54c87b3c46e1b5b569290dc359
 WHIRLPOOL 
a37225f70a27bf78e6d6d1eb27596f9778ef809aaee834d0a75de407daa160d8c98ab6aaebc98fa18dddf332a0d110faff073c62dc37f037ed7923ea6507b563
 DIST check-0.12.0-github.tar.gz 281127 SHA256 
7816b4c38f6e23ff873786f18d966e552837677bfae144041e0587e7c39e04e8 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
 WHIRLPOOL 
b3ef728b1f442a2eafd5cc431de204a6f32d28463543693d25d49e57c53b5c062786b5eae11752515f6d5b4eff35892d483d7b54705354bcea985a58c90b2266
-DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1

diff --git a/dev-libs/check/check-0.10.0-r2.ebuild 
b/dev-libs/check/check-0.10.0-r2.ebuild
deleted file mode 100644
index 7bd022c8e05..000
--- a/dev-libs/check/check-0.10.0-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
-
-inherit autotools autotools-multilib
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://libcheck.github.io/check/;
-SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}-github.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs subunit"
-
-RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   sys-apps/texinfo
-   virtual/pkgconfig"
-
-pkg_setup() {
-   # See multilib_src_test(), disable sleep()-based tests because they
-   # just take a long time doing pretty much nothing.
-   export CPPFLAGS="-DTIMEOUT_TESTS_ENABLED=0 ${CPPFLAGS}"
-}
-
-src_prepare() {
-   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
-   || die 'failed to unset docdir in Makefile.am'
-
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   --disable-dependency-tracking
-   $(use_enable subunit)
-   --docdir="${EPREFIX}/usr/share/doc/${PF}"
-   )
-   autotools-multilib_src_configure
-}
-
-multilib_src_test() {
-   elog "-DTIMEOUT_TESTS_ENABLED=0 has been prepended to CPPFLAGS. To run 
the"
-   elog "entire testsuite for dev-libs/check, ensure that"
-   elog "-DTIMEOUT_TESTS_ENABLED=1 is in your CPPFLAGS."
-   default_src_test
-}
-
-src_install() {
-   autotools-multilib_src_install
-   dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
-
-   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
-   die 'failed to remove COPYING files'
-}

diff --git a/dev-libs/check/check-0.11.0.ebuild 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-10-31 Thread Sergei Trofimovich
commit: 9d58ca1546e4353b19ac4908786c75e0d7437f09
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Oct 31 23:28:14 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Oct 31 23:28:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d58ca15

dev-libs/check: stable 0.10.0-r1 for sparc, bug #595364 (thanks to Rolf Eike 
Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 33798f356d2..35f15fde800 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-10-25 Thread Lars Wendler
commit: 9df04f91bf4298d6cb6b5ceb67820941a72e73db
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Oct 25 07:29:47 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Oct 25 07:47:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df04f91

dev-libs/check: Bump to version 0.12.0

Package-Manager: Portage-2.3.12, Repoman-2.3.3

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.12.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 27406d3ca9b..0d91e30d7da 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,4 +1,5 @@
 DIST check-0.10.0-github.tar.gz 257887 SHA256 
38daf46cc8bf9081d63970b6ea371e8462beb5e77c03443f275cf4b10ac3a0c2 SHA512 
d4a5881e07c9285a5ca4eff6f63172b19c968bab3cd5cfc06c2be54fd25ef71d63b0bd6b425c7af5cfe89d7bc3fae17e56b8648cad1db58a9972e6de1b6fd96f
 WHIRLPOOL 
f254b3cd77db9735388f482aaf0d93be24a6bbea08558632d28eeb9d0573ea73ef4d9c36b2e0571fa7c938e288d8261a51dede5bb0ccd8a2671f5788512a230a
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
 DIST check-0.11.0-github.tar.gz 275579 SHA256 
df18bb72ba31eed2e06c21dd97402174500a211645e4b3748e9e277551acc97d SHA512 
829adee2a5793dda6ac88162e355268019dd82e7a8ad95f1287bd262c3a7764425fba6a8347f1aeebdad642a972043b70aa59d54c87b3c46e1b5b569290dc359
 WHIRLPOOL 
a37225f70a27bf78e6d6d1eb27596f9778ef809aaee834d0a75de407daa160d8c98ab6aaebc98fa18dddf332a0d110faff073c62dc37f037ed7923ea6507b563
+DIST check-0.12.0-github.tar.gz 281127 SHA256 
7816b4c38f6e23ff873786f18d966e552837677bfae144041e0587e7c39e04e8 SHA512 
f7b6452b69f999a90e86a8582d980c0c1b74ba5629ee34455724463ba62bfe3501ad0415aa771170f5c638a7a253f123bf87cbef25aadc6569a7a3a4d10fce90
 WHIRLPOOL 
b3ef728b1f442a2eafd5cc431de204a6f32d28463543693d25d49e57c53b5c062786b5eae11752515f6d5b4eff35892d483d7b54705354bcea985a58c90b2266
 DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
new file mode 100644
index 000..6f9ee0d01c5
--- /dev/null
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}-github.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs subunit"
+
+RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   sys-apps/texinfo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog NEWS README.md THANKS TODO )
+
+pkg_setup() {
+   # See multilib_src_test(), disable sleep()-based tests because they
+   # just take a long time doing pretty much nothing.
+   export CPPFLAGS="-DTIMEOUT_TESTS_ENABLED=0 ${CPPFLAGS}"
+}
+
+src_prepare() {
+   default
+
+   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
+   || die 'failed to unset docdir in Makefile.am'
+
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   --disable-dependency-tracking
+   $(use_enable subunit)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   default
+
+   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
+   die 'failed to remove COPYING files'
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}
+
+multilib_src_test() {
+   elog "-DTIMEOUT_TESTS_ENABLED=0 has been prepended to CPPFLAGS. To run 
the"
+   elog "entire testsuite for dev-libs/check, ensure that"
+   elog "-DTIMEOUT_TESTS_ENABLED=1 is in your CPPFLAGS."
+   default_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-08-18 Thread Thomas Deutschmann
commit: 021420299a1cc0e4ff0e19e211fccbd07b4e7bac
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Aug 18 23:54:22 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Aug 19 00:30:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02142029

dev-libs/check: x86 stable (bug #595364)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index c6241d7a06b..33798f356d2 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-07-15 Thread Tobias Klausmann
commit: b46a8bd62095f437616748ea26b81f4cfbc4637a
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 14:39:20 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 15:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b46a8bd6

dev-libs/check-0.10.0-r1: add amd64 keyword

Gentoo-Bug: 595364

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index fe3a81218e3..c6241d7a06b 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-06-04 Thread Sergei Trofimovich
commit: 5526d1a68f814515d05b0b03f4499c14a2fc0799
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun  4 11:53:50 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun  4 11:54:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5526d1a6

dev-libs/check: ia64 stable, bug #595364

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index f587c394efb..fe3a81218e3 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-04-21 Thread Kent Fredric
commit: 53c5db08b8c24a93be0b27882b4948a713283b1a
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Apr 21 10:03:07 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Apr 21 10:05:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c5db08

dev-libs/check: Fix missing dep on texinfo re bug #613852

Both install and test invoke texinfo, so its important
that texinfo is both present _and_ working.

Lack of build dep on texinfo means that during an empty-world
driven "rebuild all the things" after a perl upgrade,
check will fail either test, or install, due to texinfo
being broken, and portage having no way to ensure texinfo
rebuilds are ordered before check builds.

Bug: https://bugs.gentoo.org/613852

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-libs/check/check-0.10.0-r1.ebuild | 1 +
 dev-libs/check/check-0.10.0-r2.ebuild | 1 +
 dev-libs/check/check-0.11.0.ebuild| 1 +
 dev-libs/check/check-0.9.11.ebuild| 4 +++-
 4 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 8e9228c9ea7..f587c394efb 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -18,6 +18,7 @@ IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}
+   sys-apps/texinfo
virtual/pkgconfig"
 
 pkg_setup() {

diff --git a/dev-libs/check/check-0.10.0-r2.ebuild 
b/dev-libs/check/check-0.10.0-r2.ebuild
index ff28e67eee4..7bd022c8e05 100644
--- a/dev-libs/check/check-0.10.0-r2.ebuild
+++ b/dev-libs/check/check-0.10.0-r2.ebuild
@@ -18,6 +18,7 @@ IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}
+   sys-apps/texinfo
virtual/pkgconfig"
 
 pkg_setup() {

diff --git a/dev-libs/check/check-0.11.0.ebuild 
b/dev-libs/check/check-0.11.0.ebuild
index 3c63bba8831..4a1f73cca3a 100644
--- a/dev-libs/check/check-0.11.0.ebuild
+++ b/dev-libs/check/check-0.11.0.ebuild
@@ -16,6 +16,7 @@ IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}
+   sys-apps/texinfo
virtual/pkgconfig"
 
 DOCS=( AUTHORS ChangeLog NEWS README.md THANKS TODO )

diff --git a/dev-libs/check/check-0.9.11.ebuild 
b/dev-libs/check/check-0.9.11.ebuild
index 6609fe2a21c..b1e03527387 100644
--- a/dev-libs/check/check-0.9.11.ebuild
+++ b/dev-libs/check/check-0.9.11.ebuild
@@ -16,7 +16,9 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
-DEPEND="subunit? ( dev-python/subunit )"
+DEPEND="subunit? ( dev-python/subunit )
+   sys-apps/texinfo
+"
 RDEPEND="${DEPEND}"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-03-10 Thread Michael Weber
commit: 6f1278755a3689db99864172e6aedf39eebb62f4
Author: Michael Weber  gentoo  org>
AuthorDate: Fri Mar 10 14:30:53 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Fri Mar 10 16:59:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f127875

dev-libs/check: ppc stable (bug 595364).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 1970dc65280..8e9228c9ea7 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-02-28 Thread Michael Weber
commit: 6249f1c68a4ddd33efc3022e4a61924233fdc6dc
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  1 00:27:59 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  1 00:27:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6249f1c6

dev-libs/check: arm64 stable (bug 596182)

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ppc64"

 dev-libs/check/check-0.9.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.9.11.ebuild 
b/dev-libs/check/check-0.9.11.ebuild
index 6474f4d14df..6609fe2a21c 100644
--- a/dev-libs/check/check-0.9.11.ebuild
+++ b/dev-libs/check/check-0.9.11.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2017-01-29 Thread Fabian Groffen
commit: add5532c234f5836d75cf1efbc78494f227db510
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 29 16:00:14 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 29 16:00:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=add5532c

dev-libs/check: dropped ~x86-freebsd ~x86-interix

Package-Manager: portage-2.3.3

 dev-libs/check/check-0.10.0-r1.ebuild | 4 ++--
 dev-libs/check/check-0.10.0-r2.ebuild | 4 ++--
 dev-libs/check/check-0.11.0.ebuild| 4 ++--
 dev-libs/check/check-0.9.11.ebuild| 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 3cd9575..ded6dae 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"

diff --git a/dev-libs/check/check-0.10.0-r2.ebuild 
b/dev-libs/check/check-0.10.0-r2.ebuild
index 82aba19..c416bc6 100644
--- a/dev-libs/check/check-0.10.0-r2.ebuild
+++ b/dev-libs/check/check-0.10.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"

diff --git a/dev-libs/check/check-0.11.0.ebuild 
b/dev-libs/check/check-0.11.0.ebuild
index d58be2f..ffa8466 100644
--- a/dev-libs/check/check-0.11.0.ebuild
+++ b/dev-libs/check/check-0.11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> ${P}-github.t
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"

diff --git a/dev-libs/check/check-0.9.11.ebuild 
b/dev-libs/check/check-0.9.11.ebuild
index 1489644..6c9f569 100644
--- a/dev-libs/check/check-0.9.11.ebuild
+++ b/dev-libs/check/check-0.9.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-12-23 Thread Lars Wendler
commit: a5dd972828d18f0dd6f241b7db40cd17e611a844
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Dec 23 08:44:51 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Dec 23 08:46:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5dd9728

dev-libs/check: Bump to version 0.11.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/check/Manifest|  1 +
 dev-libs/check/check-0.11.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index a86915c..d4c4512 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,4 +1,5 @@
 DIST check-0.10.0-github.tar.gz 257887 SHA256 
38daf46cc8bf9081d63970b6ea371e8462beb5e77c03443f275cf4b10ac3a0c2 SHA512 
d4a5881e07c9285a5ca4eff6f63172b19c968bab3cd5cfc06c2be54fd25ef71d63b0bd6b425c7af5cfe89d7bc3fae17e56b8648cad1db58a9972e6de1b6fd96f
 WHIRLPOOL 
f254b3cd77db9735388f482aaf0d93be24a6bbea08558632d28eeb9d0573ea73ef4d9c36b2e0571fa7c938e288d8261a51dede5bb0ccd8a2671f5788512a230a
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
+DIST check-0.11.0-github.tar.gz 275579 SHA256 
df18bb72ba31eed2e06c21dd97402174500a211645e4b3748e9e277551acc97d SHA512 
829adee2a5793dda6ac88162e355268019dd82e7a8ad95f1287bd262c3a7764425fba6a8347f1aeebdad642a972043b70aa59d54c87b3c46e1b5b569290dc359
 WHIRLPOOL 
a37225f70a27bf78e6d6d1eb27596f9778ef809aaee834d0a75de407daa160d8c98ab6aaebc98fa18dddf332a0d110faff073c62dc37f037ed7923ea6507b563
 DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1
 DIST check-0.9.8.tar.gz 558943 SHA256 
82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f SHA512 
a8ef659411c18f8af77006a51fe14741b990e7486c3e5c1e97cd2a100a603483ba9854c2f23bd9a5e834e133ca0dcc3ae15f41856339ab3b82a75ad769a872a2
 WHIRLPOOL 
fdc06bd44f041153f655c577c55825afb2d2b79ff066427cd224b5a6d351f9da076d39807f434d2e22e1b6b54c6bc774744c8210dc318e493b9241bb5d7ded84

diff --git a/dev-libs/check/check-0.11.0.ebuild 
b/dev-libs/check/check-0.11.0.ebuild
new file mode 100644
index ..d58be2f
--- /dev/null
+++ b/dev-libs/check/check-0.11.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}-github.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs subunit"
+
+RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog NEWS README.md THANKS TODO )
+
+pkg_setup() {
+   # See multilib_src_test(), disable sleep()-based tests because they
+   # just take a long time doing pretty much nothing.
+   export CPPFLAGS="-DTIMEOUT_TESTS_ENABLED=0 ${CPPFLAGS}"
+}
+
+src_prepare() {
+   default
+
+   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
+   || die 'failed to unset docdir in Makefile.am'
+
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   --disable-dependency-tracking
+   $(use_enable subunit)
+   )
+   ECONF_SOURCE="${S}" \
+   econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   default
+
+   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
+   die 'failed to remove COPYING files'
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}
+
+multilib_src_test() {
+   elog "-DTIMEOUT_TESTS_ENABLED=0 has been prepended to CPPFLAGS. To run 
the"
+   elog "entire testsuite for dev-libs/check, ensure that"
+   elog "-DTIMEOUT_TESTS_ENABLED=1 is in your CPPFLAGS."
+   default_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/, dev-libs/check/files/

2016-12-23 Thread Lars Wendler
commit: d8d6ce47307d9a92b733066cee0736c6f76f58f9
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Dec 23 08:45:56 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Dec 23 08:46:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d6ce47

dev-libs/check: Removed old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/check/Manifest|  1 -
 dev-libs/check/check-0.9.8-r1.ebuild   | 52 --
 dev-libs/check/files/check-0.9.6-64bitsafe.patch   | 13 --
 .../check/files/check-0.9.6-AM_PATH_CHECK.patch| 12 -
 4 files changed, 78 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index d4c4512..27406d3 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -2,4 +2,3 @@ DIST check-0.10.0-github.tar.gz 257887 SHA256 
38daf46cc8bf9081d63970b6ea371e8462
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
 DIST check-0.11.0-github.tar.gz 275579 SHA256 
df18bb72ba31eed2e06c21dd97402174500a211645e4b3748e9e277551acc97d SHA512 
829adee2a5793dda6ac88162e355268019dd82e7a8ad95f1287bd262c3a7764425fba6a8347f1aeebdad642a972043b70aa59d54c87b3c46e1b5b569290dc359
 WHIRLPOOL 
a37225f70a27bf78e6d6d1eb27596f9778ef809aaee834d0a75de407daa160d8c98ab6aaebc98fa18dddf332a0d110faff073c62dc37f037ed7923ea6507b563
 DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1
-DIST check-0.9.8.tar.gz 558943 SHA256 
82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f SHA512 
a8ef659411c18f8af77006a51fe14741b990e7486c3e5c1e97cd2a100a603483ba9854c2f23bd9a5e834e133ca0dcc3ae15f41856339ab3b82a75ad769a872a2
 WHIRLPOOL 
fdc06bd44f041153f655c577c55825afb2d2b79ff066427cd224b5a6d351f9da076d39807f434d2e22e1b6b54c6bc774744c8210dc318e493b9241bb5d7ded84

diff --git a/dev-libs/check/check-0.9.8-r1.ebuild 
b/dev-libs/check/check-0.9.8-r1.ebuild
deleted file mode 100644
index 42200c5..
--- a/dev-libs/check/check-0.9.8-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools autotools-utils eutils
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://sourceforge.net/projects/check/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs subunit"
-
-DEPEND="subunit? ( dev-python/subunit )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-0.9.6-AM_PATH_CHECK.patch \
-   "${FILESDIR}"/${PN}-0.9.6-64bitsafe.patch
-
-   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am || die
-
-   # fix out-of-sourcedir build having inconsistent check.h files, for
-   # example breaks USE=subunit.
-   rm src/check.h || die
-
-   # Fix automake warnings being treated as errors, bug #420373
-   sed -i -e s/-Werror// configure.ac || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   --disable-dependency-tracking
-   $(use_enable subunit)
-   --docdir="${EPREFIX}"/usr/share/doc/${PF}
-   )
-   autotools-utils_src_configure
-}
-
-src_install() {
-   autotools-utils_src_install
-   dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
-
-   rm -f "${ED}"/usr/share/doc/${PF}/COPYING* || die
-   find "${ED}" -name '*.la' -exec rm -f {} + || die
-}

diff --git a/dev-libs/check/files/check-0.9.6-64bitsafe.patch 
b/dev-libs/check/files/check-0.9.6-64bitsafe.patch
deleted file mode 100644
index ec73ed6..
--- a/dev-libs/check/files/check-0.9.6-64bitsafe.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: check-0.9.6/configure.ac
-===
 check-0.9.6.orig/configure.ac
-+++ check-0.9.6/configure.ac
-@@ -17,6 +17,8 @@ AC_CONFIG_AUX_DIR([build-aux])
- # really severe build strictness
- AM_INIT_AUTOMAKE([-Wall -Werror gnits 1.9.6])
- 
-+AC_USE_SYSTEM_EXTENSIONS
-+
- # FIXME: find the other places this stuff is used
- 
- CHECK_MAJOR_VERSION=0

[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-10-09 Thread Jeroen Roovers
commit: 3f0b431a3fb270ce63c7ffa41d6255a26ac28447
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Oct  9 07:18:38 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Oct  9 07:19:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f0b431a

dev-libs/check: Update HOMEPAGE/SRC_URI.

Package-Manager: portage-2.3.1

 dev-libs/check/Manifest   |  1 +
 dev-libs/check/check-0.10.0-r2.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 48e30cb..a86915c 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,3 +1,4 @@
+DIST check-0.10.0-github.tar.gz 257887 SHA256 
38daf46cc8bf9081d63970b6ea371e8462beb5e77c03443f275cf4b10ac3a0c2 SHA512 
d4a5881e07c9285a5ca4eff6f63172b19c968bab3cd5cfc06c2be54fd25ef71d63b0bd6b425c7af5cfe89d7bc3fae17e56b8648cad1db58a9972e6de1b6fd96f
 WHIRLPOOL 
f254b3cd77db9735388f482aaf0d93be24a6bbea08558632d28eeb9d0573ea73ef4d9c36b2e0571fa7c938e288d8261a51dede5bb0ccd8a2671f5788512a230a
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
 DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1
 DIST check-0.9.8.tar.gz 558943 SHA256 
82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f SHA512 
a8ef659411c18f8af77006a51fe14741b990e7486c3e5c1e97cd2a100a603483ba9854c2f23bd9a5e834e133ca0dcc3ae15f41856339ab3b82a75ad769a872a2
 WHIRLPOOL 
fdc06bd44f041153f655c577c55825afb2d2b79ff066427cd224b5a6d351f9da076d39807f434d2e22e1b6b54c6bc774744c8210dc318e493b9241bb5d7ded84

diff --git a/dev-libs/check/check-0.10.0-r2.ebuild 
b/dev-libs/check/check-0.10.0-r2.ebuild
new file mode 100644
index ..82aba19
--- /dev/null
+++ b/dev-libs/check/check-0.10.0-r2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
+
+inherit autotools autotools-multilib
+
+DESCRIPTION="A unit test framework for C"
+HOMEPAGE="https://libcheck.github.io/check/;
+SRC_URI="https://github.com/lib${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}-github.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs subunit"
+
+RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+pkg_setup() {
+   # See multilib_src_test(), disable sleep()-based tests because they
+   # just take a long time doing pretty much nothing.
+   export CPPFLAGS="-DTIMEOUT_TESTS_ENABLED=0 ${CPPFLAGS}"
+}
+
+src_prepare() {
+   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
+   || die 'failed to unset docdir in Makefile.am'
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --disable-dependency-tracking
+   $(use_enable subunit)
+   --docdir="${EPREFIX}/usr/share/doc/${PF}"
+   )
+   autotools-multilib_src_configure
+}
+
+multilib_src_test() {
+   elog "-DTIMEOUT_TESTS_ENABLED=0 has been prepended to CPPFLAGS. To run 
the"
+   elog "entire testsuite for dev-libs/check, ensure that"
+   elog "-DTIMEOUT_TESTS_ENABLED=1 is in your CPPFLAGS."
+   default_src_test
+}
+
+src_install() {
+   autotools-multilib_src_install
+   dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
+
+   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
+   die 'failed to remove COPYING files'
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-10-05 Thread Markus Meier
commit: 6140f75d67a65587266ef6d5988dd753ca6b09ab
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Oct  5 19:03:30 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Oct  5 19:08:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6140f75d

dev-libs/check: arm stable, bug #595364

Package-Manager: portage-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index 16c8e2f..3cd9575 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-10-01 Thread Jeroen Roovers
commit: ae10d90d7f9a57260e7831a0c4f6c5da0162de90
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Oct  1 12:16:38 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Oct  1 12:16:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae10d90d

dev-libs/check: Stable for HPPA PPC64 (bug #595364).

Package-Manager: portage-2.3.1
RepoMan-Options: --ignore-arches

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index a74171a..16c8e2f 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-09-29 Thread Tobias Klausmann
commit: de1c303532d42f350338d1aa159d020865fde2e7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Sep 29 09:08:23 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Sep 29 09:08:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de1c3035

dev-libs/check-0.10.0-r1: stable on alpha

Gentoo-Bug: 595364

 dev-libs/check/check-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/check/check-0.10.0-r1.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
index f0c21e3..a74171a 100644
--- a/dev-libs/check/check-0.10.0-r1.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-08-12 Thread Michael Orlitzky
commit: 0f5927896b0d4ccd5a3eb497025ebbc252632a56
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Aug 12 20:28:44 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Aug 12 20:44:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f592789

dev-libs/check: remove three old versions.

Package-Manager: portage-2.2.28

 dev-libs/check/Manifest   |  2 --
 dev-libs/check/check-0.9.12.ebuild| 53 -
 dev-libs/check/check-0.9.13-r1.ebuild | 63 ---
 dev-libs/check/check-0.9.13.ebuild| 63 ---
 4 files changed, 181 deletions(-)

diff --git a/dev-libs/check/Manifest b/dev-libs/check/Manifest
index 4085c81..48e30cb 100644
--- a/dev-libs/check/Manifest
+++ b/dev-libs/check/Manifest
@@ -1,5 +1,3 @@
 DIST check-0.10.0.tar.gz 769119 SHA256 
f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 SHA512 
82103a98382c41cf16f172ded66c0399d3da6eceb6728aab11120c028e8796f6d545a98dc4aa5f76ee68c0bfd1f842a4dd371f5d670c8ba84ce4209812bf1ac5
 WHIRLPOOL 
d3399a2500a4a1f6fa8865fe75af67e98a22587edd2525d144f4f403dd313cc59b7622cd77cfd885b9e3dfd737e2bef5366d28062b2975c882ffac6253b02b29
 DIST check-0.9.11.tar.gz 691146 SHA256 
ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 SHA512 
10883709463b76f6650197db989c348d9d07ccaa2cacc0bd6bd177bbcc1e9e0d88746c2e110e620ab18c23cb5f41b95797d60d77de279af1a810a42b355b742e
 WHIRLPOOL 
9559104a68b2f1215e9b00affb4711a69bf3e4e94e0ec894de66f0f77b5637187bb183560e29d0a889ff04d0e07f2785fc407128dee1ba74d584ce9a0ff9a3b1
-DIST check-0.9.12.tar.gz 730404 SHA256 
c7d47e55e133a0ca19a52e08a99333ac55cb22618b53719b7f4117a1875b1ea3 SHA512 
698e6cfdf24b07340fb4fa77f49811053f8307d3baca8bdcdde5e3dfe1f910bbadb6a393f03020d8b18c22e7e164d40f6bbbeb9659908b0df8459e5c4850fa50
 WHIRLPOOL 
4994c444532e1337bcda5e632d532ffd6aae59de866009b5bce3d1f25988dd203d04136dd451b6d24c6e32775159772d1c98097ff618a5cc559fca9725ad18ed
-DIST check-0.9.13.tar.gz 752880 SHA256 
ca6589c34f9c60ffd4c3e198ce581e944a9f040ca9352ed54068dd61bebb5cb7 SHA512 
a0ff64110c52fd600a8a956c2d56589e6e65ff0072b34f33e0299b4f9a2ac0a93a330b0c8cbf3645c02d0c9c748c71704bd3a8825eec22eb2f22ad99bcffa551
 WHIRLPOOL 
9f7f42ca4106deabe57051e84cec4f0a838847c45308baaf8cb4441e30667016fa95b1b2705b42dc494af8e9a22aea5d6733de71cd99ec0025652da53756275d
 DIST check-0.9.8.tar.gz 558943 SHA256 
82acf956bb07584ffea2bf04d5989fe939c3e74ecf93133a21037fd0f7996a7f SHA512 
a8ef659411c18f8af77006a51fe14741b990e7486c3e5c1e97cd2a100a603483ba9854c2f23bd9a5e834e133ca0dcc3ae15f41856339ab3b82a75ad769a872a2
 WHIRLPOOL 
fdc06bd44f041153f655c577c55825afb2d2b79ff066427cd224b5a6d351f9da076d39807f434d2e22e1b6b54c6bc774744c8210dc318e493b9241bb5d7ded84

diff --git a/dev-libs/check/check-0.9.12.ebuild 
b/dev-libs/check/check-0.9.12.ebuild
deleted file mode 100644
index 5481c52..000
--- a/dev-libs/check/check-0.9.12.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
-
-inherit autotools autotools-multilib eutils
-
-DESCRIPTION="A unit test framework for C"
-HOMEPAGE="https://sourceforge.net/projects/check/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
-IUSE="static-libs subunit"
-
-DEPEND="subunit? ( dev-python/subunit )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-0.9.10-AM_PATH_CHECK.patch
-
-   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am || die
-
-   # fix out-of-sourcedir build having inconsistent check.h files, for
-   # example breaks USE=subunit.
-   rm src/check.h || die
-
-   # Fix automake warnings being treated as errors, bug #420373
-   sed -i -e s/-Werror// configure.ac || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   --disable-dependency-tracking
-   $(use_enable subunit)
-   --docdir="${EPREFIX}"/usr/share/doc/${PF}
-   )
-   autotools-multilib_src_configure
-}
-
-src_install() {
-   autotools-multilib_src_install
-   dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
-
-   rm -f "${ED}"/usr/share/doc/${PF}/COPYING* || die
-}

diff --git a/dev-libs/check/check-0.9.13-r1.ebuild 
b/dev-libs/check/check-0.9.13-r1.ebuild
deleted file mode 100644
index 53d1b6b..000
--- a/dev-libs/check/check-0.9.13-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
-
-inherit autotools 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-08-12 Thread Michael Orlitzky
commit: db7625cc3c8155279a9cc2e2a7fcd0b77c4ca662
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Aug 12 20:44:31 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Aug 12 20:44:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db7625cc

dev-libs/check: new revision with missing virtual/pkgconfig DEPEND.

Gentoo-Bug: 504658

Package-Manager: portage-2.2.28

 ...{check-0.10.0.ebuild => check-0.10.0-r1.ebuild} | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-libs/check/check-0.10.0.ebuild 
b/dev-libs/check/check-0.10.0-r1.ebuild
similarity index 74%
rename from dev-libs/check/check-0.10.0.ebuild
rename to dev-libs/check/check-0.10.0-r1.ebuild
index 2d86028..f0c21e3 100644
--- a/dev-libs/check/check-0.10.0.ebuild
+++ b/dev-libs/check/check-0.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 
 AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"
 
-inherit autotools autotools-multilib eutils
+inherit autotools autotools-multilib
 
 DESCRIPTION="A unit test framework for C"
 HOMEPAGE="https://sourceforge.net/projects/check/;
@@ -17,8 +17,9 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
-DEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-RDEPEND="${DEPEND}"
+RDEPEND="subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
 
 pkg_setup() {
# See multilib_src_test(), disable sleep()-based tests because they
@@ -27,14 +28,12 @@ pkg_setup() {
 }
 
 src_prepare() {
-   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am || die
+   sed -i -e '/^docdir =/d' {.,doc}/Makefile.am \
+   || die 'failed to unset docdir in Makefile.am'
 
# fix out-of-sourcedir build having inconsistent check.h files, for
# example breaks USE=subunit.
-   rm src/check.h || die
-
-   # Fix automake warnings being treated as errors, bug #420373
-   sed -i -e s/-Werror// configure.ac || die
+   rm src/check.h || die 'failed to remove src/check.h'
 
eautoreconf
 }
@@ -43,7 +42,7 @@ src_configure() {
local myeconfargs=(
--disable-dependency-tracking
$(use_enable subunit)
-   --docdir="${EPREFIX}"/usr/share/doc/${PF}
+   --docdir="${EPREFIX}/usr/share/doc/${PF}"
)
autotools-multilib_src_configure
 }
@@ -59,5 +58,6 @@ src_install() {
autotools-multilib_src_install
dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO
 
-   rm -f "${ED}"/usr/share/doc/${PF}/COPYING* || die
+   rm -f "${ED}/usr/share/doc/${PF}"/COPYING* || \
+   die 'failed to remove COPYING files'
 }



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/

2016-08-07 Thread Pacho Ramos
commit: cb1430148eb8c8254fc011ad7fda27e5147c5fc1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Aug  7 07:08:52 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Aug  7 07:24:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb143014

dev-libs/check: Cleanup per bug #355897

Package-Manager: portage-2.3.0

 dev-libs/check/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-libs/check/metadata.xml b/dev-libs/check/metadata.xml
index 089310e..4808ce9 100644
--- a/dev-libs/check/metadata.xml
+++ b/dev-libs/check/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   bi...@gentoo.org
-   Nathan Phillip Brink
-   

Enable support for the subunit unit test 
protocol