[gentoo-commits] repo/gentoo:master commit in: dev-haskell/vector-algorithms/files/, dev-haskell/vector-algorithms/

2020-09-12 Thread Sergei Trofimovich
commit: f0f26025bbb9fd67a7e0d7a9932eafb31080e9b2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Sep 12 22:47:33 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Sep 12 22:47:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f26025

dev-haskell/vector-algorithms: drop old

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-haskell/vector-algorithms/Manifest |  2 -
 .../vector-algorithms-0.7.0.1-ghc-8.0.2_rc1.patch  | 44 --
 .../vector-algorithms-0.6.0.4.ebuild   | 40 
 .../vector-algorithms-0.7.0.1.ebuild   | 40 
 4 files changed, 126 deletions(-)

diff --git a/dev-haskell/vector-algorithms/Manifest 
b/dev-haskell/vector-algorithms/Manifest
index 95ffba10192..eb43644ef7e 100644
--- a/dev-haskell/vector-algorithms/Manifest
+++ b/dev-haskell/vector-algorithms/Manifest
@@ -1,3 +1 @@
-DIST vector-algorithms-0.6.0.4.tar.gz 20455 BLAKE2B 
0d0c4ef7ed8996d1ebe65971a451d4cb49118faedbf9cb4a987afb281adf563808778a689df608d2fb3c8fe9398af995d1c5e31cc89fd4f2075c2ebdd7ca4277
 SHA512 
5e99a1831f0b9a4485f48aa7be5f5928e811512f0a68e18fa65ecace185dfea74ec09037b05d56e1a9208d2cdbcfed94ce2678d504f6d12267496a3616bf
-DIST vector-algorithms-0.7.0.1.tar.gz 25435 BLAKE2B 
f9cb3bf592316c92bff4313d264370cc35d62c64e7dec6f14ee9954c0fc12f573e799172793501e1b4f9c556fa1ea8e3db1ac3381ff71bb143e33520c69c18b8
 SHA512 
1ea718eeb062defee830fa7dba323981678691c5d320b8929dcd695af17f82d65007cfd35103310026dab51cf10462dbead09082fc0ba5ddd0c2e18e305c4c6a
 DIST vector-algorithms-0.8.0.3.tar.gz 26559 BLAKE2B 
7541d141967faf4bc1b33dcd23f283e1a6868f0b51e784918c1516a46c38ba3e9205045c87679738d89c48fee3ee2e61286eab59cc66ec8cfc18f1a4b977c634
 SHA512 
45311e19a1e5c9994e7d666b73445d11946f60915df3d2f385a435538d1b6b0929b56a960f83c5df1b2df883566e7f8e6fdd5be4e075364d7daecd6dbec780e5

diff --git 
a/dev-haskell/vector-algorithms/files/vector-algorithms-0.7.0.1-ghc-8.0.2_rc1.patch
 
b/dev-haskell/vector-algorithms/files/vector-algorithms-0.7.0.1-ghc-8.0.2_rc1.patch
deleted file mode 100644
index 3616dd76d82..000
--- 
a/dev-haskell/vector-algorithms/files/vector-algorithms-0.7.0.1-ghc-8.0.2_rc1.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff --git a/tests/properties/Tests.hs b/tests/properties/Tests.hs
-index a0b7d35..8fcfd36 100644
 a/tests/properties/Tests.hs
-+++ b/tests/properties/Tests.hs
-@@ -1,2 +1,2 @@
--{-# LANGUAGE ImpredicativeTypes, RankNTypes, TypeOperators, FlexibleContexts 
#-}
-+{-# LANGUAGE ImpredicativeTypes, RankNTypes, TypeOperators, FlexibleContexts, 
ScopedTypeVariables #-}
- 
-@@ -44,4 +44,4 @@ args = stdArgs
- 
--check_Int_sort = forM_ algos $ \(name,algo) ->
--  quickCheckWith args (label name . prop_fullsort algo)
-+check_Int_sort = forM_ algos (\(name,algo :: Algo Int ()) ->
-+  quickCheckWith args (label name . prop_fullsort algo))
-  where
-@@ -55,4 +55,4 @@ check_Int_sort = forM_ algos $ \(name,algo) ->
- 
--check_Int_partialsort = forM_ algos $ \(name,algo) ->
--  quickCheckWith args (label name . prop_partialsort algo)
-+check_Int_partialsort = forM_ algos (\(name,algo :: SizeAlgo Int ()) ->
-+  quickCheckWith args (label name . prop_partialsort algo))
-  where
-@@ -63,4 +63,4 @@ check_Int_partialsort = forM_ algos $ \(name,algo) ->
- 
--check_Int_select = forM_ algos $ \(name,algo) ->
--  quickCheckWith args (label name . prop_select algo)
-+check_Int_select = forM_ algos (\(name,algo :: SizeAlgo Int ()) ->
-+  quickCheckWith args (label name . prop_select algo))
-  where
-@@ -119,10 +119,10 @@ check_permutation = do
-   qc $ label "introsort". prop_permutation (INT.sort :: Algo Int ())
--  qc $ label "intropartial" . prop_sized (const . prop_permutation)
-+  qc $ label "intropartial" . prop_sized (\x -> const (prop_permutation x))
-  (INT.partialSort :: SizeAlgo Int ())
--  qc $ label "introselect"  . prop_sized (const . prop_permutation)
-+  qc $ label "introselect"  . prop_sized (\x -> const (prop_permutation x))
-  (INT.select :: SizeAlgo Int ())
-   qc $ label "heapsort" . prop_permutation (H.sort :: Algo Int ())
--  qc $ label "heappartial"  . prop_sized (const . prop_permutation)
-+  qc $ label "heappartial"  . prop_sized (\x -> const (prop_permutation x))
-  (H.partialSort :: SizeAlgo Int ())
--  qc $ label "heapselect"   . prop_sized (const . prop_permutation)
-+  qc $ label "heapselect"   . prop_sized (\x -> const (prop_permutation x))
-  (H.select :: SizeAlgo Int ())

diff --git a/dev-haskell/vector-algorithms/vector-algorithms-0.6.0.4.ebuild 
b/dev-haskell/vector-algorithms/vector-algorithms-0.6.0.4.ebuild
deleted file mode 100644
index 60de2b4a02f..000
--- a/dev-haskell/vector-algorithms/vector-algorithms-0.6.0.4.ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/vector-algorithms/files/

2019-12-29 Thread Aaron Bauman
commit: 0087e029b2e5e0162c1821fd915262bc9b8deae5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Dec 29 08:58:00 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Dec 29 18:33:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0087e029

dev-haskell/vector-algorithms: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14159
Signed-off-by: Aaron Bauman  gentoo.org>

 .../files/vector-algorithms-0.5.4.1-ghc-7.4.patch   | 21 -
 1 file changed, 21 deletions(-)

diff --git 
a/dev-haskell/vector-algorithms/files/vector-algorithms-0.5.4.1-ghc-7.4.patch 
b/dev-haskell/vector-algorithms/files/vector-algorithms-0.5.4.1-ghc-7.4.patch
deleted file mode 100644
index edabcf2e8b5..000
--- 
a/dev-haskell/vector-algorithms/files/vector-algorithms-0.5.4.1-ghc-7.4.patch
+++ /dev/null
@@ -1,21 +0,0 @@
 vector-algorithms-0.5.4.1-orig/vector-algorithms.cabal 2012-08-16 
06:39:54.0 +1000
-+++ vector-algorithms-0.5.4.1/vector-algorithms.cabal  2012-08-17 
17:05:37.875993915 +1000
-@@ -52,9 +52,15 @@
- FlexibleContexts,
- CPP
- 
--GHC-Options:
---Odph
---funbox-strict-fields
-+if impl(ghc >= 7.4.0)
-+GHC-Options:
-+-Odph
-+-funbox-strict-fields
-+-fsimpl-tick-factor=153
-+else
-+GHC-Options:
-+   -Odph
-+   -funbox-strict-fields
- 
- Include-Dirs:
- include