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 73D1D138359 for ; Tue, 4 Aug 2020 08:41:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63697E0C40; Tue, 4 Aug 2020 08:41:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2CC75E0C32 for ; Tue, 4 Aug 2020 08:41:52 +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 E76FA34F1A1 for ; Tue, 4 Aug 2020 08:41:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C43B2FE for ; Tue, 4 Aug 2020 08:41:48 +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: <1596530495.65070e7b60d2a707cf6b89d0c6d3910fa1a7c3f8.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/tls/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/tls/metadata.xml dev-haskell/tls/tls-1.5.4.ebuild X-VCS-Directories: dev-haskell/tls/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 65070e7b60d2a707cf6b89d0c6d3910fa1a7c3f8 X-VCS-Branch: master Date: Tue, 4 Aug 2020 08:41:48 +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: 061cd0ea-915a-48da-b691-60f0177b9339 X-Archives-Hash: fe0e7df98381220fa23e0297de103e44 commit: 65070e7b60d2a707cf6b89d0c6d3910fa1a7c3f8 Author: Jack Todaro posteo org> AuthorDate: Tue Aug 4 07:42:29 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Aug 4 08:41:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65070e7b dev-haskell/tls: disable building against dev-haskell/hans Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Jack Todaro posteo.org> Closes: https://github.com/gentoo/gentoo/pull/16996 Signed-off-by: Sergei Trofimovich gentoo.org> dev-haskell/tls/metadata.xml | 1 - dev-haskell/tls/tls-1.5.4.ebuild | 7 +++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-haskell/tls/metadata.xml b/dev-haskell/tls/metadata.xml index 5e8b0cfbd3f..b95ef7b625d 100644 --- a/dev-haskell/tls/metadata.xml +++ b/dev-haskell/tls/metadata.xml @@ -22,7 +22,6 @@ Accept SSLv2 compatible handshake. Use the base network library. - Use the Haskell Network Stack (HaNS). vincenthz/hs-tls diff --git a/dev-haskell/tls/tls-1.5.4.ebuild b/dev-haskell/tls/tls-1.5.4.ebuild index e3524550f22..e8454a5db2c 100644 --- a/dev-haskell/tls/tls-1.5.4.ebuild +++ b/dev-haskell/tls/tls-1.5.4.ebuild @@ -4,7 +4,7 @@ EAPI=7 # ebuild generated by hackport 0.6.4 - +#hackport: flags: -hans CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal @@ -15,7 +15,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -IUSE="+compat hans +network" +IUSE="+compat +network" RDEPEND="dev-haskell/asn1-encoding:=[profile?] >=dev-haskell/asn1-types-0.2.0:=[profile?] @@ -30,7 +30,6 @@ RDEPEND="dev-haskell/asn1-encoding:=[profile?] >=dev-haskell/x509-store-1.6:=[profile?] >=dev-haskell/x509-validation-1.6.5:=[profile?] >=dev-lang/ghc-8.0.1:= - hans? ( dev-haskell/hans:=[profile?] ) network? ( >=dev-haskell/network-2.4.0.0:=[profile?] ) " DEPEND="${RDEPEND} @@ -43,6 +42,6 @@ DEPEND="${RDEPEND} src_configure() { haskell-cabal_src_configure \ $(cabal_flag compat compat) \ - $(cabal_flag hans hans) \ + --flag=-hans \ $(cabal_flag network network) }