Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hxt/
Date: Sun, 02 Aug 2020 11:33:31
Message-Id: 1596368001.876d9a45da5893f1f273011e053e861f046d589b.slyfox@gentoo
1 commit: 876d9a45da5893f1f273011e053e861f046d589b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 11:33:13 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 11:33:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=876d9a45
7
8 dev-haskell/hxt: unconditionally use network-uri
9
10 Reported-by: Toralf Förster
11 Closes: https://bugs.gentoo.org/735184
12 Package-Manager: Portage-3.0.1, Repoman-2.3.23
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 dev-haskell/hxt/hxt-9.3.1.18.ebuild | 9 ++++-----
16 1 file changed, 4 insertions(+), 5 deletions(-)
17
18 diff --git a/dev-haskell/hxt/hxt-9.3.1.18.ebuild b/dev-haskell/hxt/hxt-9.3.1.18.ebuild
19 index 1902e81622f..2a562ce245d 100644
20 --- a/dev-haskell/hxt/hxt-9.3.1.18.ebuild
21 +++ b/dev-haskell/hxt/hxt-9.3.1.18.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 +# Copyright 1999-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 @@ -15,7 +15,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
29 LICENSE="MIT"
30 SLOT="0/${PV}"
31 KEYWORDS="~amd64 ~x86"
32 -IUSE="+network-uri"
33 +IUSE=""
34
35 RDEPEND=">=dev-haskell/hxt-charproperties-9.1:=[profile?]
36 >=dev-haskell/hxt-regex-xmlschema-9.2:=[profile?]
37 @@ -23,8 +23,7 @@ RDEPEND=">=dev-haskell/hxt-charproperties-9.1:=[profile?]
38 >=dev-haskell/mtl-2.0.1:=[profile?] <dev-haskell/mtl-3:=[profile?]
39 >=dev-haskell/parsec-2.1:=[profile?] <dev-haskell/parsec-4:=[profile?]
40 >=dev-lang/ghc-7.4.1:=
41 - network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] )
42 - !network-uri? ( >=dev-haskell/network-2.4:=[profile?] <dev-haskell/network-2.6:=[profile?] )
43 + >=dev-haskell/network-uri-2.6:=[profile?]
44 "
45 DEPEND="${RDEPEND}
46 >=dev-haskell/cabal-1.8
47 @@ -32,5 +31,5 @@ DEPEND="${RDEPEND}
48
49 src_configure() {
50 haskell-cabal_src_configure \
51 - $(cabal_flag network-uri network-uri)
52 + --flag=network-uri
53 }