public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck-classes/
@ 2020-08-22 21:31 Sergei Trofimovich
  0 siblings, 0 replies; 4+ messages in thread
From: Sergei Trofimovich @ 2020-08-22 21:31 UTC (permalink / raw
  To: gentoo-commits

commit:     4a5dcbf34470c6ec171bbb3afd02312953463b8c
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 22 21:23:37 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 21:31:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a5dcbf3

dev-haskell/quickcheck-classes: new package, a depend of arithmoi-0.11

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-haskell/quickcheck-classes/Manifest            |  1 +
 dev-haskell/quickcheck-classes/metadata.xml        | 47 +++++++++++++++++++
 .../quickcheck-classes-0.6.4.0.ebuild              | 54 ++++++++++++++++++++++
 3 files changed, 102 insertions(+)

diff --git a/dev-haskell/quickcheck-classes/Manifest b/dev-haskell/quickcheck-classes/Manifest
new file mode 100644
index 00000000000..c6932af438a
--- /dev/null
+++ b/dev-haskell/quickcheck-classes/Manifest
@@ -0,0 +1 @@
+DIST quickcheck-classes-0.6.4.0.tar.gz 19976 BLAKE2B 614ebc6e1be382a942a55a039921021fd4bcaa2f5c977a8d83bd7b1fb76feebb31f94da908c2389d5f9ab5f7e2481f76223375db41d12b3583658d5d7361ed9b SHA512 2d5786d3cd386a795d5e1ca58ef55fb2efb9285724cf8cbb2f28577973ac2b2a9058ba6185904bc29da88f6d080f4a38629df272502796a0c2e31f9a0e8b658c

diff --git a/dev-haskell/quickcheck-classes/metadata.xml b/dev-haskell/quickcheck-classes/metadata.xml
new file mode 100644
index 00000000000..aaf10d4bc2b
--- /dev/null
+++ b/dev-haskell/quickcheck-classes/metadata.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>haskell@gentoo.org</email>
+		<name>Gentoo Haskell</name>
+	</maintainer>
+	<use>
+		<flag name="aeson">
+			Enable the use of the `aeson` package. This may be useful for
+			accelerating builds in sandboxes for expert users.
+		</flag>
+		<flag name="semigroupoids">
+			Enable the use of the `semigroupoids` package. This may be
+			useful for accelerating builds in sandboxes for expert users.
+		</flag>
+		<flag name="semirings">
+			Enable the use of the `semirings` package. This may be useful
+			for accelerating builds in sandboxes for expert users.
+		</flag>
+		<flag name="vector">
+			Enable the use of the `vector` package. This may be useful
+			for accelerating builds in sandboxes for expert users.
+		</flag>
+		<flag name="unary-laws">
+			Include infrastructure for testing class laws of unary type constructors.
+		</flag>
+		<flag name="binary-laws">
+			Include infrastructure for testing class laws of binary type constructors.
+			Disabling `unary-laws` while keeping `binary-laws` enabled is an unsupported
+			configuration.
+		</flag>
+	</use>
+	<longdescription>
+		This library provides QuickCheck properties to ensure
+		that typeclass instances adhere to the set of laws that
+		they are supposed to. There are other libraries that do
+		similar things, such as `genvalidity-hspec` and `checkers`.
+		This library differs from other solutions by not introducing
+		any new typeclasses that the user needs to learn.
+		
+		/Note:/ on GHC &lt; 8.5, this library uses the higher-kinded typeclasses
+		(&#39;Data.Functor.Classes.Show1&#39;, &#39;Data.Functor.Classes.Eq1&#39;, &#39;Data.Functor.Classes.Ord1&#39;, etc.),
+		but on GHC &gt;= 8.5, it uses `-XQuantifiedConstraints` to express these
+		constraints more cleanly.
+	</longdescription>
+</pkgmetadata>

diff --git a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
new file mode 100644
index 00000000000..e4dbaa88407
--- /dev/null
+++ b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# ebuild generated by hackport 0.6.2
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="QuickCheck common typeclasses"
+HOMEPAGE="https://github.com/andrewthad/quickcheck-classes#readme"
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+aeson +binary-laws +semigroupoids +semirings +unary-laws +vector"
+
+RDEPEND=">=dev-haskell/base-orphans-0.1:=[profile?]
+	dev-haskell/bifunctors:=[profile?]
+	dev-haskell/contravariant:=[profile?]
+	dev-haskell/fail:=[profile?]
+	>=dev-haskell/primitive-0.6.4:=[profile?] <dev-haskell/primitive-0.8:=[profile?]
+	>=dev-haskell/primitive-addr-0.1.0.2:=[profile?] <dev-haskell/primitive-addr-0.2:=[profile?]
+	>=dev-haskell/quickcheck-classes-base-0.6:=[profile?] <dev-haskell/quickcheck-classes-base-0.7:=[profile?]
+	>=dev-haskell/semigroups-0.17:=[profile?]
+	dev-haskell/tagged:=[profile?]
+	>=dev-lang/ghc-8.0.1:=
+	aeson? ( >=dev-haskell/aeson-0.9:=[profile?] )
+	binary-laws? ( >=dev-haskell/quickcheck-2.10.0:2=[profile?] )
+	semigroupoids? ( dev-haskell/semigroupoids:=[profile?] )
+	semirings? ( >=dev-haskell/semirings-0.4.2:=[profile?] )
+	unary-laws? ( >=dev-haskell/quickcheck-2.10.0:2=[profile?] )
+	!unary-laws? ( !binary-laws? ( >=dev-haskell/quickcheck-2.7:2=[profile?] ) )
+	vector? ( >=dev-haskell/vector-0.12:=[profile?] )
+"
+DEPEND="${RDEPEND}
+	>=dev-haskell/cabal-1.24.0.0
+	test? ( >=dev-haskell/base-orphans-0.5
+		dev-haskell/tasty
+		dev-haskell/tasty-quickcheck
+		!vector? ( dev-haskell/vector ) )
+"
+
+src_configure() {
+	haskell-cabal_src_configure \
+		$(cabal_flag aeson aeson) \
+		$(cabal_flag binary-laws binary-laws) \
+		$(cabal_flag semigroupoids semigroupoids) \
+		$(cabal_flag semirings semirings) \
+		$(cabal_flag unary-laws unary-laws) \
+		$(cabal_flag vector vector)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck-classes/
@ 2022-08-18 18:45 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-08-18 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b8852b78c5e5ecb0dff8ea953827d41653b850e7
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Mon Aug 15 05:28:12 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 18:44:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8852b78

dev-haskell/quickcheck-classes: keyword 0.6.4.0 for ~ppc64

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
index e4dbaa884075..83489b398b25 100644
--- a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
+++ b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="+aeson +binary-laws +semigroupoids +semirings +unary-laws +vector"
 
 RDEPEND=">=dev-haskell/base-orphans-0.1:=[profile?]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck-classes/
@ 2022-08-31 21:32 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-08-31 21:32 UTC (permalink / raw
  To: gentoo-commits

commit:     17d73fa5881754fe48b5fc9c67157b7b75ec8553
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sun Aug 28 17:42:47 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 21:31:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d73fa5

dev-haskell/quickcheck-classes: keyword 0.6.4.0 for ~arm64

Thanks-to: Marcus Comstedt <marcus <AT> mc.pp.se>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
index 83489b398b25..e0deefbe60dd 100644
--- a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
+++ b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="+aeson +binary-laws +semigroupoids +semirings +unary-laws +vector"
 
 RDEPEND=">=dev-haskell/base-orphans-0.1:=[profile?]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck-classes/
@ 2022-10-06  6:12 Jakov Smolić
  0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2022-10-06  6:12 UTC (permalink / raw
  To: gentoo-commits

commit:     6fe538e64d287d6a186be7547063d98199bd4f57
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Wed Sep 21 22:56:02 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Oct  6 06:11:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe538e6

dev-haskell/quickcheck-classes: keyword 0.6.4.0 for ~riscv

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
index e0deefbe60dd..32c1d4913d9b 100644
--- a/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
+++ b/dev-haskell/quickcheck-classes/quickcheck-classes-0.6.4.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
 IUSE="+aeson +binary-laws +semigroupoids +semirings +unary-laws +vector"
 
 RDEPEND=">=dev-haskell/base-orphans-0.1:=[profile?]


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

end of thread, other threads:[~2022-10-06  6:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-22 21:31 [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck-classes/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2022-08-18 18:45 Sam James
2022-08-31 21:32 Sam James
2022-10-06  6:12 Jakov Smolić

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