From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B046E138359 for ; Sun, 2 Aug 2020 11:33:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2E49E0BF5; Sun, 2 Aug 2020 11:33:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D30EE0BF5 for ; Sun, 2 Aug 2020 11:33:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D4C034F255 for ; Sun, 2 Aug 2020 11:33:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 809612FC for ; Sun, 2 Aug 2020 11:33:27 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1596368001.876d9a45da5893f1f273011e053e861f046d589b.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hxt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/hxt/hxt-9.3.1.18.ebuild X-VCS-Directories: dev-haskell/hxt/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 876d9a45da5893f1f273011e053e861f046d589b X-VCS-Branch: master Date: Sun, 2 Aug 2020 11:33:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8eb19bd1-71a5-414f-957c-ced0dbb29e1b X-Archives-Hash: 73203f17ce6942982cfd1ac786431eaa commit: 876d9a45da5893f1f273011e053e861f046d589b Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Aug 2 11:33:13 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Aug 2 11:33:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=876d9a45 dev-haskell/hxt: unconditionally use network-uri Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/735184 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich gentoo.org> dev-haskell/hxt/hxt-9.3.1.18.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-haskell/hxt/hxt-9.3.1.18.ebuild b/dev-haskell/hxt/hxt-9.3.1.18.ebuild index 1902e81622f..2a562ce245d 100644 --- a/dev-haskell/hxt/hxt-9.3.1.18.ebuild +++ b/dev-haskell/hxt/hxt-9.3.1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="MIT" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -IUSE="+network-uri" +IUSE="" RDEPEND=">=dev-haskell/hxt-charproperties-9.1:=[profile?] >=dev-haskell/hxt-regex-xmlschema-9.2:=[profile?] @@ -23,8 +23,7 @@ RDEPEND=">=dev-haskell/hxt-charproperties-9.1:=[profile?] >=dev-haskell/mtl-2.0.1:=[profile?] =dev-haskell/parsec-2.1:=[profile?] =dev-lang/ghc-7.4.1:= - network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) - !network-uri? ( >=dev-haskell/network-2.4:=[profile?] =dev-haskell/network-uri-2.6:=[profile?] " DEPEND="${RDEPEND} >=dev-haskell/cabal-1.8 @@ -32,5 +31,5 @@ DEPEND="${RDEPEND} src_configure() { haskell-cabal_src_configure \ - $(cabal_flag network-uri network-uri) + --flag=network-uri }