public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2021-05-24  4:58 Sergei Trofimovich
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Trofimovich @ 2021-05-24  4:58 UTC (permalink / raw
  To: gentoo-commits

commit:     99fef3753769f1195b74c27d208e2e35b351920b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon May 24 04:58:04 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon May 24 04:58:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99fef375

dev-haskell/hexpat: drop USE=bundled-expat

Reported-by: Sebastian Pipping
Closes: https://bugs.gentoo.org/591136
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-haskell/hexpat/hexpat-0.20.13.ebuild | 19 ++++++-----
 dev-haskell/hexpat/metadata.xml          | 55 +-------------------------------
 2 files changed, 10 insertions(+), 64 deletions(-)

diff --git a/dev-haskell/hexpat/hexpat-0.20.13.ebuild b/dev-haskell/hexpat/hexpat-0.20.13.ebuild
index 01a2c7198d8..6bdd5415179 100644
--- a/dev-haskell/hexpat/hexpat-0.20.13.ebuild
+++ b/dev-haskell/hexpat/hexpat-0.20.13.ebuild
@@ -1,34 +1,33 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-# ebuild generated by hackport 0.5.3.9999
-#hackport: flags: bundle:bundled-expat
+# ebuild generated by hackport 0.6.7.9999
+#hackport: flags: -bundle
 
 CABAL_FEATURES="lib profile haddock hoogle hscolour"
 inherit haskell-cabal
 
 DESCRIPTION="XML parser/formatter based on expat"
-HOMEPAGE="http://haskell.org/haskellwiki/Hexpat/"
+HOMEPAGE="https://haskell.org/haskellwiki/Hexpat/"
 SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
 KEYWORDS="~amd64 ~x86"
-IUSE="bundled-expat"
 
 RDEPEND=">=dev-haskell/list-0.4.2:=[profile?] <dev-haskell/list-0.7:=[profile?]
 	>=dev-haskell/text-0.5.0.0:=[profile?] <dev-haskell/text-1.3.0.0:=[profile?]
 	>=dev-haskell/utf8-string-0.3:=[profile?] <dev-haskell/utf8-string-1.1:=[profile?]
-	>=dev-lang/ghc-7.8.2:=
-	!bundled-expat? ( dev-libs/expat )
+	>=dev-lang/ghc-8.4.3:=
+	dev-libs/expat
 "
 DEPEND="${RDEPEND}
-	>=dev-haskell/cabal-1.18.1.3
+	>=dev-haskell/cabal-2.2.0.1
 "
 
 src_configure() {
 	haskell-cabal_src_configure \
-		$(cabal_flag bundled-expat bundle)
+		--flag=-bundle
 }

diff --git a/dev-haskell/hexpat/metadata.xml b/dev-haskell/hexpat/metadata.xml
index b858ead0d5e..b7878815d80 100644
--- a/dev-haskell/hexpat/metadata.xml
+++ b/dev-haskell/hexpat/metadata.xml
@@ -3,59 +3,6 @@
 <pkgmetadata>
 	<maintainer type="project">
 		<email>haskell@gentoo.org</email>
+		<name>Gentoo Haskell</name>
 	</maintainer>
-	<use>
-		<flag name="bundled-expat"> Use bundled expat instead of <pkg>dev-libs/expat</pkg></flag>
-	</use>
-	<longdescription>
-		This package provides a general purpose Haskell XML library using Expat to
-		do its parsing (&lt;http://expat.sourceforge.net/&gt; - a fast stream-oriented XML
-		parser written in C).  It is extensible to any string type, with @String@,
-		@ByteString@ and @Text@ provided out of the box.
-		
-		Basic usage: Parsing a tree (/Tree/), formatting a tree (/Format/).
-		Other features: Helpers for processing XML trees (/Proc/), trees annotated with
-		XML source location (/Annotated/), extended XML trees with comments,
-		processing instructions, etc (/Extended/), XML cursors (/Cursor/),
-		SAX-style parse (/SAX/), and access to the low-level interface in case speed
-		is paramount (/Internal.IO/).
-		
-		The design goals are speed, speed, speed, interface simplicity and modularity.
-		
-		For introduction and examples, see the /Text.XML.Expat.Tree/ module. For benchmarks,
-		&lt;http://haskell.org/haskellwiki/Hexpat/&gt;
-		
-		If you want to do interactive I\/O, an obvious option is to use lazy parsing
-		with one of the lazy I\/O functions such as hGetContents.  However, this can be
-		problematic in some applications because it doesn't handle I\/O errors properly
-		and can give no guarantee of timely resource cleanup.  In these cases, chunked
-		I\/O is a better approach: Take a look at the /hexpat-enumerator/ package.
-		
-		/IO/ is filed under /Internal/ because it's low-level and most users won't want
-		it.  The other /Internal/ modules are re-exported by /Annotated/, /Tree/ and /Extended/,
-		so you won't need to import them directly.
-		
-		Credits to Iavor Diatchki and the @xml@ (XML.Light) package for /Proc/ and /Cursor/.
-		Thanks to the many contributors.
-		
-		BOUND VS. UNBOUND THREADS: GHC (at least versions 6.12.X) will spawn threads
-		if you call a safe FFI callback from an unbound thread.  This can get out of
-		control in a busy application.  To avoid this, from version 0.19.1 we now delegate
-		processing to a single worker thread if the calling thread is not bound.
-		This essentially means that hexpat currently won't exploit multicores very well.
-		It also means that hexpat may be more efficient on threads spawned with forkOS
-		(to give you a bound thread) rather than forkIO.
-		
-		ChangeLog: 0.15 changes intended to fix a (rare) \"error: a C finalizer called back into Haskell.\"
-		that seemed only to happen only on ghc6.12.X; 0.15.1 Fix broken Annotated parse;
-		0.16 switch from mtl to transformers; 0.17 fix mapNodeContainer &amp; rename some things.;
-		0.18 rename defaultEncoding to overrideEncoding. 0.18.3 formatG and indent were demanding list
-		items more than once (inefficient in chunked processing); 0.19 add Extended.hs;
-		0.19.1 fix a memory leak introduced in 0.19, delegate parsing to bound thread
-		if unbound (see note above); 0.19.2 include expat source code so \'cabal install\' just works
-		on Linux, Mac and Windows (thanks Jacob Stanley); 0.19.3 fix misconfiguration of expat
-		which broke entity parsing; 0.19.4 bump version constraint for text; 0.19.5 bump text
-		to &lt; 0.12 and fix text-0.10.0.1 breakage; 0.19.6 dependency breakage with List;
-		0.19.7 ghc-7.2.1 compatibility; 0.19.8 fix space leak on lazy parse under ghc-7.2.1
-	</longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2017-10-19 21:23 Jonas Stein
  0 siblings, 0 replies; 6+ messages in thread
From: Jonas Stein @ 2017-10-19 21:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5568efb991336a02b0c6f41c149ee01e8ffe72c0
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 19 21:23:16 2017 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Thu Oct 19 21:23:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5568efb9

dev-haskell/hexpat: Remove proxy-maint

Remove proxy maintainer project from metadata, because there was no
proxied maintainer left.
Reported-By: Michael Mair-Keimberger
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-haskell/hexpat/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-haskell/hexpat/metadata.xml b/dev-haskell/hexpat/metadata.xml
index f816e0717e8..686f514d51e 100644
--- a/dev-haskell/hexpat/metadata.xml
+++ b/dev-haskell/hexpat/metadata.xml
@@ -4,10 +4,6 @@
 	<maintainer type="project">
 		<email>haskell@gentoo.org</email>
 	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
 	<use>
 		<flag name='bundled-expat'> Use bundled expat instead of <pkg>dev-libs/expat</pkg></flag>
 	</use>


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2017-08-20 11:36 Sergei Trofimovich
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Trofimovich @ 2017-08-20 11:36 UTC (permalink / raw
  To: gentoo-commits

commit:     f49b572487044b635dadd0db10851963ab42ffda
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 20 11:36:34 2017 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Aug 20 11:36:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49b5724

dev-haskell/hexpat: bump up to 0.20.13

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-haskell/hexpat/Manifest              |  1 +
 dev-haskell/hexpat/hexpat-0.20.13.ebuild | 34 ++++++++++++++++++++++++++++++++
 dev-haskell/hexpat/metadata.xml          |  3 +++
 3 files changed, 38 insertions(+)

diff --git a/dev-haskell/hexpat/Manifest b/dev-haskell/hexpat/Manifest
index 887ad13a540..28adfc9ef74 100644
--- a/dev-haskell/hexpat/Manifest
+++ b/dev-haskell/hexpat/Manifest
@@ -1,3 +1,4 @@
 DIST hexpat-0.20.10.tar.gz 132682 SHA256 39e6a1a30e80873165c3287a5b84de325c0b1dee1ddfd271daa360c1b15e0e2e SHA512 aa230d3e002bc74d7f8c9d72eb373f63ec62f391b855119b1163504c2d4ef54ec555f9f56983f02d9268ca8615415ffee2466f404adca6393b2114b0f8f9001b WHIRLPOOL c7a688307aedfab8564d2497cc02f2f56207b95a35bc93fd73d303b88df00e7b9fe4ff781f07be9a2febce490b6d722e5c802e3c1906378a64693f5054cb96a2
 DIST hexpat-0.20.11.tar.gz 143476 SHA256 2e38de0ae39cf00c1c5c2f755e249ccd51d6945a98b77a9648d333fa227ca467 SHA512 c1cb174ad8668826b3b45909589ad339683a54e9fe3c4df246530c2510a5f72b98edd66bd2730478809b3dfd7e98a6bfebec2d88871dc433ef794038988dd982 WHIRLPOOL f9d4bf6f2b49434e3c48685ef28c0541b587242db89b704dd4ef10fd3e25572e82fe89ca7cacecdf69c27e7b82ae2ed63bd786053b120b2b290b9f436d6bbc11
+DIST hexpat-0.20.13.tar.gz 143733 SHA256 46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1 SHA512 900abcb599bd66856c822b791222a814cc6293d655f45c4295e991ba74f750a80fd1c3993a0dfd943de6a83e90a5905711a7ce9c599471b043b10f661ca5a598 WHIRLPOOL 082d77e2d167f87959528366f7626f00b60d259f47c36c6fd2abf19fd241b28a62567559a3abeda6ea5cf0ac9aab9cd4aecb278f0a9a793f6f5906973a9b10dc
 DIST hexpat-0.20.9.tar.gz 132649 SHA256 5d1c075f1ae00be2e80c0018b522a351b2f4ef73b9baca1113ee80e554449d9d SHA512 619bf92d60f2d43c11861507daf6f93716b5ed5c1fc1957a27470b65264d7c0b5edb3f6e2a1a9d25cd5d7edd8146abaf5cbb772f2d84dacd9f2fe9913b81b543 WHIRLPOOL b8be8167a12d9fbbd437c657d64564d9f510d2e7c0af5ccb1bbbd42168b6557dc692117213ed43f1af6fdd46870444a3db1f6a083e70f6904329a485e4683c6c

diff --git a/dev-haskell/hexpat/hexpat-0.20.13.ebuild b/dev-haskell/hexpat/hexpat-0.20.13.ebuild
new file mode 100644
index 00000000000..0ea6497b4e0
--- /dev/null
+++ b/dev-haskell/hexpat/hexpat-0.20.13.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.3.9999
+#hackport: flags: bundle:bundled-expat
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="XML parser/formatter based on expat"
+HOMEPAGE="http://haskell.org/haskellwiki/Hexpat/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="bundled-expat"
+
+RDEPEND=">=dev-haskell/list-0.4.2:=[profile?] <dev-haskell/list-0.7:=[profile?]
+	>=dev-haskell/text-0.5.0.0:=[profile?] <dev-haskell/text-1.3.0.0:=[profile?]
+	>=dev-haskell/utf8-string-0.3:=[profile?] <dev-haskell/utf8-string-1.1:=[profile?]
+	>=dev-lang/ghc-7.8.2:=
+	!bundled-expat? ( dev-libs/expat )
+"
+DEPEND="${RDEPEND}
+	>=dev-haskell/cabal-1.18.1.3
+"
+
+src_configure() {
+	haskell-cabal_src_configure \
+		$(cabal_flag bundled-expat bundle)
+}

diff --git a/dev-haskell/hexpat/metadata.xml b/dev-haskell/hexpat/metadata.xml
index f8ee4863121..f816e0717e8 100644
--- a/dev-haskell/hexpat/metadata.xml
+++ b/dev-haskell/hexpat/metadata.xml
@@ -8,6 +8,9 @@
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>
 	</maintainer>
+	<use>
+		<flag name='bundled-expat'> Use bundled expat instead of <pkg>dev-libs/expat</pkg></flag>
+	</use>
 	<longdescription>
 		This package provides a general purpose Haskell XML library using Expat to
 		do its parsing (&lt;http://expat.sourceforge.net/&gt; - a fast stream-oriented XML


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2017-06-20 20:14 Sergei Trofimovich
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Trofimovich @ 2017-06-20 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     0d2e70f8521711ad294ee2c097aa86d44ba9dcca
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 20 20:13:48 2017 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jun 20 20:14:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2e70f8

dev-haskell/hexpat: bump up to 0.20.11, bug #622260

Reported-by: Sebastian Pipping
Bug: https://bugs.gentoo.org/622260
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-haskell/hexpat/Manifest              |  1 +
 dev-haskell/hexpat/hexpat-0.20.11.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-haskell/hexpat/Manifest b/dev-haskell/hexpat/Manifest
index f0539824833..887ad13a540 100644
--- a/dev-haskell/hexpat/Manifest
+++ b/dev-haskell/hexpat/Manifest
@@ -1,2 +1,3 @@
 DIST hexpat-0.20.10.tar.gz 132682 SHA256 39e6a1a30e80873165c3287a5b84de325c0b1dee1ddfd271daa360c1b15e0e2e SHA512 aa230d3e002bc74d7f8c9d72eb373f63ec62f391b855119b1163504c2d4ef54ec555f9f56983f02d9268ca8615415ffee2466f404adca6393b2114b0f8f9001b WHIRLPOOL c7a688307aedfab8564d2497cc02f2f56207b95a35bc93fd73d303b88df00e7b9fe4ff781f07be9a2febce490b6d722e5c802e3c1906378a64693f5054cb96a2
+DIST hexpat-0.20.11.tar.gz 143476 SHA256 2e38de0ae39cf00c1c5c2f755e249ccd51d6945a98b77a9648d333fa227ca467 SHA512 c1cb174ad8668826b3b45909589ad339683a54e9fe3c4df246530c2510a5f72b98edd66bd2730478809b3dfd7e98a6bfebec2d88871dc433ef794038988dd982 WHIRLPOOL f9d4bf6f2b49434e3c48685ef28c0541b587242db89b704dd4ef10fd3e25572e82fe89ca7cacecdf69c27e7b82ae2ed63bd786053b120b2b290b9f436d6bbc11
 DIST hexpat-0.20.9.tar.gz 132649 SHA256 5d1c075f1ae00be2e80c0018b522a351b2f4ef73b9baca1113ee80e554449d9d SHA512 619bf92d60f2d43c11861507daf6f93716b5ed5c1fc1957a27470b65264d7c0b5edb3f6e2a1a9d25cd5d7edd8146abaf5cbb772f2d84dacd9f2fe9913b81b543 WHIRLPOOL b8be8167a12d9fbbd437c657d64564d9f510d2e7c0af5ccb1bbbd42168b6557dc692117213ed43f1af6fdd46870444a3db1f6a083e70f6904329a485e4683c6c

diff --git a/dev-haskell/hexpat/hexpat-0.20.11.ebuild b/dev-haskell/hexpat/hexpat-0.20.11.ebuild
new file mode 100644
index 00000000000..d376e49dfe1
--- /dev/null
+++ b/dev-haskell/hexpat/hexpat-0.20.11.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.3.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="XML parser/formatter based on expat"
+HOMEPAGE="http://haskell.org/haskellwiki/Hexpat/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/list-0.4.2:=[profile?] <dev-haskell/list-0.7:=[profile?]
+	>=dev-haskell/text-0.5.0.0:=[profile?] <dev-haskell/text-1.3.0.0:=[profile?]
+	>=dev-haskell/utf8-string-0.3:=[profile?] <dev-haskell/utf8-string-1.1:=[profile?]
+	>=dev-lang/ghc-7.8.2:=
+"
+DEPEND="${RDEPEND}
+	>=dev-haskell/cabal-1.18.1.3
+"


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2017-06-19 21:52 Sergei Trofimovich
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Trofimovich @ 2017-06-19 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bccaf5ff65855f772ec2fe192740c71999c2afa1
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 19 21:51:02 2017 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jun 19 21:51:02 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bccaf5ff

dev-haskell/hexpat: bump up to 0.20.10, bug #622260

Reporte-by: Sebastian Pipping
Bug: https://bugs.gentoo.org/622260
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-haskell/hexpat/Manifest              |  1 +
 dev-haskell/hexpat/hexpat-0.20.10.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-haskell/hexpat/Manifest b/dev-haskell/hexpat/Manifest
index 1286e50a2bd..f0539824833 100644
--- a/dev-haskell/hexpat/Manifest
+++ b/dev-haskell/hexpat/Manifest
@@ -1 +1,2 @@
+DIST hexpat-0.20.10.tar.gz 132682 SHA256 39e6a1a30e80873165c3287a5b84de325c0b1dee1ddfd271daa360c1b15e0e2e SHA512 aa230d3e002bc74d7f8c9d72eb373f63ec62f391b855119b1163504c2d4ef54ec555f9f56983f02d9268ca8615415ffee2466f404adca6393b2114b0f8f9001b WHIRLPOOL c7a688307aedfab8564d2497cc02f2f56207b95a35bc93fd73d303b88df00e7b9fe4ff781f07be9a2febce490b6d722e5c802e3c1906378a64693f5054cb96a2
 DIST hexpat-0.20.9.tar.gz 132649 SHA256 5d1c075f1ae00be2e80c0018b522a351b2f4ef73b9baca1113ee80e554449d9d SHA512 619bf92d60f2d43c11861507daf6f93716b5ed5c1fc1957a27470b65264d7c0b5edb3f6e2a1a9d25cd5d7edd8146abaf5cbb772f2d84dacd9f2fe9913b81b543 WHIRLPOOL b8be8167a12d9fbbd437c657d64564d9f510d2e7c0af5ccb1bbbd42168b6557dc692117213ed43f1af6fdd46870444a3db1f6a083e70f6904329a485e4683c6c

diff --git a/dev-haskell/hexpat/hexpat-0.20.10.ebuild b/dev-haskell/hexpat/hexpat-0.20.10.ebuild
new file mode 100644
index 00000000000..58416216d3a
--- /dev/null
+++ b/dev-haskell/hexpat/hexpat-0.20.10.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.2.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="XML parser/formatter based on expat"
+HOMEPAGE="http://haskell.org/haskellwiki/Hexpat/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/list-0.4.2:=[profile?] <dev-haskell/list-0.7:=[profile?]
+	>=dev-haskell/text-0.5.0.0:=[profile?] <dev-haskell/text-1.3.0.0:=[profile?]
+	>=dev-haskell/utf8-string-0.3:=[profile?] <dev-haskell/utf8-string-1.1:=[profile?]
+	>=dev-lang/ghc-7.8.2:=
+"
+DEPEND="${RDEPEND}
+	>=dev-haskell/cabal-1.18.1.3
+"


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/
@ 2015-08-16 22:35 Mikle Kolyada
  0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2015-08-16 22:35 UTC (permalink / raw
  To: gentoo-commits

commit:     49cd4bd2d61698f4b75d581c424ed3d0b5187e1f
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 22:29:51 2015 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 22:33:13 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49cd4bd2

dev-haskell/hexpat: amd64 stable wrt bug #550420

Package-Manager: portage-2.2.20.1

 dev-haskell/hexpat/hexpat-0.20.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/hexpat/hexpat-0.20.9.ebuild b/dev-haskell/hexpat/hexpat-0.20.9.ebuild
index f3d2c78..e7b7671 100644
--- a/dev-haskell/hexpat/hexpat-0.20.9.ebuild
+++ b/dev-haskell/hexpat/hexpat-0.20.9.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=dev-haskell/list-0.4.2:=[profile?] <dev-haskell/list-0.6:=[profile?]


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

end of thread, other threads:[~2021-05-24  4:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-24  4:58 [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hexpat/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2017-10-19 21:23 Jonas Stein
2017-08-20 11:36 Sergei Trofimovich
2017-06-20 20:14 Sergei Trofimovich
2017-06-19 21:52 Sergei Trofimovich
2015-08-16 22:35 Mikle Kolyada

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