public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/parallel-io/
@ 2015-11-16 18:57 Michael Orlitzky
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Orlitzky @ 2015-11-16 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f30fcf63bb6b5a974a78135eb38609e69857d1b2
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 16 17:53:52 2015 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Nov 16 18:51:52 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30fcf63

dev-haskell/parallel-io: new package for performing parallel IO computations.

Package-Manager: portage-2.2.20.1

 dev-haskell/parallel-io/Manifest                   |  1 +
 dev-haskell/parallel-io/metadata.xml               | 16 +++++++++++
 .../parallel-io/parallel-io-0.3.3-r2.ebuild        | 33 ++++++++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/dev-haskell/parallel-io/Manifest b/dev-haskell/parallel-io/Manifest
new file mode 100644
index 0000000..121c2f6
--- /dev/null
+++ b/dev-haskell/parallel-io/Manifest
@@ -0,0 +1 @@
+DIST parallel-io-0.3.3.tar.gz 9435 SHA256 3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645 SHA512 4d2ddb9ad4b3b362e431774495fa7e4cc4476768257f2915f3a6e64c1872a5bcf880d71e1f678997a23fbf9cfa22bc2b38df9f2866897d3cbb6d35e65eb542db WHIRLPOOL 867e03bbe0d38ab3de7456424282046d7de8fd5be2671528c9004e418d93969d62fefa5ef728144f9483af8b573aaf1137900bf68987b062af739eeaf1e7d060

diff --git a/dev-haskell/parallel-io/metadata.xml b/dev-haskell/parallel-io/metadata.xml
new file mode 100644
index 0000000..3e04410
--- /dev/null
+++ b/dev-haskell/parallel-io/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>haskell</herd>
+	<longdescription>
+		This package provides combinators for sequencing IO actions onto a thread pool. The
+		thread pool is guaranteed to contain no more unblocked threads than a user-specified upper limit, thus
+		minimizing contention.
+		
+		Furthermore, the parallel combinators can be used reentrantly - your parallel
+		actions can spawn more parallel actions - without violating this property of the thread pool.
+		
+		The package is inspired by the thread &lt;http://thread.gmane.org/gmane.comp.lang.haskell.cafe/56499/focus=56521&gt;.
+		Thanks to Neil Mitchell and Bulat Ziganshin for some of the code this package is based on.
+	</longdescription>
+</pkgmetadata>

diff --git a/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
new file mode 100644
index 0000000..13d9197
--- /dev/null
+++ b/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.4.9999
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Combinators for executing IO actions in parallel on a thread pool"
+HOMEPAGE="http://batterseapower.github.com/parallel-io"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+#hackport: flags: -test -fuzz -benchmark
+
+RDEPEND=">dev-haskell/extensible-exceptions-0.1.0.1:=[profile?]
+	>=dev-haskell/random-1.0:=[profile?] <dev-haskell/random-1.2:=[profile?]
+	>=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+	>=dev-haskell/cabal-1.2
+"
+
+src_prepare() {
+	cabal_chdeps \
+		'random >= 1.0 && < 1.1' 'random >= 1.0 && < 1.2'
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/parallel-io/
@ 2019-03-02  0:45 Michael Orlitzky
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Orlitzky @ 2019-03-02  0:45 UTC (permalink / raw
  To: gentoo-commits

commit:     d3f699b59825f4426e6ac961a42dd510a6a217bb
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  2 00:38:01 2019 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 00:44:32 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f699b5

dev-haskell/parallel-io: new revision to fix "containers" bound.

This Gentoo -r3 pulls in the changes from the Hackage -r2, allowing
parallel-io to build against modern versions of the containers package.
I updated to EAPI=6 while I was at it.

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 ...allel-io-0.3.3-r2.ebuild => parallel-io-0.3.3-r3.ebuild} | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
similarity index 79%
rename from dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
rename to dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
index 048d8362c8f..819e55578a6 100644
--- a/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
+++ b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-# ebuild generated by hackport 0.4.4.9999
+EAPI=6
 
 CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
 inherit haskell-cabal
@@ -27,6 +25,13 @@ DEPEND="${RDEPEND}
 "
 
 src_prepare() {
+	# Hackage metadata revision -r1.
 	cabal_chdeps \
 		'random >= 1.0 && < 1.1' 'random >= 1.0 && < 1.2'
+
+	# Hackage metadata revision -r2.
+	cabal_chdeps \
+		'containers >= 0.2 && < 0.6' 'containers >= 0.2 && < 0.7'
+
+	default
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/parallel-io/
@ 2021-07-25  8:45 Sergei Trofimovich
  0 siblings, 0 replies; 5+ messages in thread
From: Sergei Trofimovich @ 2021-07-25  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     1fff48459e3de1c9e4e36a71649101b6ba5ee979
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 25 08:44:46 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jul 25 08:45:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fff4845

dev-haskell/parallel-io: drop obsolete CABAL_FEATURES=bin

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

 dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
index 1e826580485..35205a237ba 100644
--- a/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
+++ b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
 inherit haskell-cabal
 
 DESCRIPTION="Combinators for executing IO actions in parallel on a thread pool"


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

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

commit:     805b4b37a73df9252fcecfbc35fc7d3003838651
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sun Aug 28 22:37:22 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 21:31:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805b4b37

dev-haskell/parallel-io: keyword 0.3.5 for ~arm64

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

 dev-haskell/parallel-io/parallel-io-0.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
index 398ac7e2ae14..ff8c964549a5 100644
--- a/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
+++ b/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
@@ -15,7 +15,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"
 
 RDEPEND=">dev-haskell/extensible-exceptions-0.1.0.1:=[profile?]
 	>=dev-haskell/random-1.0:=[profile?] <dev-haskell/random-1.3:=[profile?]


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

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

commit:     a28e4fa8feff1c4dec3d3ebde398e59960a1d316
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Thu Sep 22 02:10:50 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Oct  6 06:11:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28e4fa8

dev-haskell/parallel-io: keyword 0.3.5 for ~riscv

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

 dev-haskell/parallel-io/parallel-io-0.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
index ff8c964549a5..ef11ecf557b9 100644
--- a/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
+++ b/dev-haskell/parallel-io/parallel-io-0.3.5.ebuild
@@ -15,7 +15,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"
 
 RDEPEND=">dev-haskell/extensible-exceptions-0.1.0.1:=[profile?]
 	>=dev-haskell/random-1.0:=[profile?] <dev-haskell/random-1.3:=[profile?]


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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-06  6:12 [gentoo-commits] repo/gentoo:master commit in: dev-haskell/parallel-io/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2022-08-31 21:32 Sam James
2021-07-25  8:45 Sergei Trofimovich
2019-03-02  0:45 Michael Orlitzky
2015-11-16 18:57 Michael Orlitzky

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