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 221BA1395E2 for ; Sun, 6 Nov 2016 12:03:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D883E0B31; Sun, 6 Nov 2016 12:03:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15D44E0B31 for ; Sun, 6 Nov 2016 12:03:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F6323416F3 for ; Sun, 6 Nov 2016 12:03:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4F9E24C2 for ; Sun, 6 Nov 2016 12:03:11 +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: <1478433777.afc683ae6c02e67c26b7ed1126623d05185a655c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/shellish/files/, dev-haskell/shellish/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/shellish/files/shellish-0.1.4-ghc-8.patch dev-haskell/shellish/shellish-0.1.4.ebuild X-VCS-Directories: dev-haskell/shellish/files/ dev-haskell/shellish/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: afc683ae6c02e67c26b7ed1126623d05185a655c X-VCS-Branch: master Date: Sun, 6 Nov 2016 12:03:11 +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-Archives-Salt: c1730894-d38c-4991-93ec-4f68ad6eb6be X-Archives-Hash: 980dda6796c0d56a8a93e020696fb4c6 commit: afc683ae6c02e67c26b7ed1126623d05185a655c Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Nov 6 11:39:52 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Nov 6 12:02:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afc683ae dev-haskell/shellish: tweak for ghc-8 Package-Manager: portage-2.3.2 dev-haskell/shellish/files/shellish-0.1.4-ghc-8.patch | 9 +++++++++ dev-haskell/shellish/shellish-0.1.4.ebuild | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-haskell/shellish/files/shellish-0.1.4-ghc-8.patch b/dev-haskell/shellish/files/shellish-0.1.4-ghc-8.patch new file mode 100644 index 00000000..4952554 --- /dev/null +++ b/dev-haskell/shellish/files/shellish-0.1.4-ghc-8.patch @@ -0,0 +1,9 @@ +diff --git a/Shellish.hs b/Shellish.hs +index 0ac20c2..7de0e11 100644 +--- a/Shellish.hs ++++ b/Shellish.hs +@@ -180,3 +180,3 @@ test_s = path >=> liftIO . \f -> do + stat <- getSymbolicLinkStatus f +- return $ isSymbolicLink stat ++ return $ System.PosixCompat.Files.isSymbolicLink stat + diff --git a/dev-haskell/shellish/shellish-0.1.4.ebuild b/dev-haskell/shellish/shellish-0.1.4.ebuild index f93d879..55236c9 100644 --- a/dev-haskell/shellish/shellish-0.1.4.ebuild +++ b/dev-haskell/shellish/shellish-0.1.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -27,4 +27,5 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${P}-ghc-7.10.patch + epatch "${FILESDIR}"/${P}-ghc-8.patch }