[Git][haskell-team/package-plan][master] 3 commits: Remove packages

Ilias Tsitsimpis gitlab at salsa.debian.org
Sat Dec 12 11:56:30 GMT 2020



Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / package-plan


Commits:
dd8bb05b by Ilias Tsitsimpis at 2020-12-12T13:53:40+02:00
Remove packages

bytestring-show: https://bugs.debian.org/962890
carettah: https://bugs.debian.org/968008
crypto-pubkey-openssh: https://bugs.debian.org/962955
derive: https://bugs.debian.org/964084
EdisonAPI: https://bugs.debian.org/962959
EdisonCore: https://bugs.debian.org/962958
ftphs: https://bugs.debian.org/963184
ghc-syb-utils: https://bugs.debian.org/966708
gnutls: https://bugs.debian.org/962961
hstatsd: https://bugs.debian.org/962962
io-choice: https://bugs.debian.org/962964
ncurses: https://bugs.debian.org/971267
permutation: https://bugs.debian.org/962970
polynomial: https://bugs.debian.org/902901
regex-tdfa-text: https://bugs.debian.org/963745
vector-space-points: https://bugs.debian.org/966711
wl-pprint-extras: https://bugs.debian.org/963499
wl-pprint-terminfo: https://bugs.debian.org/963501

- - - - -
0393eaa7 by Ilias Tsitsimpis at 2020-12-12T13:53:40+02:00
Drop newer-deps patch for hakyll

- - - - -
92383a30 by Ilias Tsitsimpis at 2020-12-12T13:53:40+02:00
hedgehog: Refresh patches

- - - - -


16 changed files:

- − additional-cabals/bytestring-show-0.3.5.6.cabal
- − additional-cabals/polynomial-0.7.3.cabal
- packages.txt
- − patches/bytestring-show/0.3.5.6/newer-deps
- − patches/bytestring-show/0.3.5.6/series
- − patches/hakyll/4.13.4.0/newer-deps
- − patches/hakyll/4.13.4.0/series
- patches/hedgehog/1.0.3/no-fail
- − patches/polynomial/0.7.3/newer-hunit
- − patches/polynomial/0.7.3/series
- − patches/wl-pprint-extras/3.5.0.5/newer-deps
- − patches/wl-pprint-extras/3.5.0.5/no-nats
- − patches/wl-pprint-extras/3.5.0.5/series
- − patches/wl-pprint-terminfo/3.7.1.4/newer-deps
- − patches/wl-pprint-terminfo/3.7.1.4/no-nats
- − patches/wl-pprint-terminfo/3.7.1.4/series


Changes:

=====================================
additional-cabals/bytestring-show-0.3.5.6.cabal deleted
=====================================
@@ -1,48 +0,0 @@
-name:              bytestring-show
-version:           0.3.5.6
-license:           BSD3
-license-file:      LICENSE
-author:            Dan Doel
-maintainer:        Dan Doel <dan.doel at gmail.com>
-homepage:          http://code.haskell.org/~dolio/
-category:          Text
-synopsis:          Efficient conversion of values into readable byte strings.
-description:       Efficient conversion of values into readable byte strings.
-build-type:        Simple
-cabal-version:     >= 1.6
-
-flag integer-simple
-        default: False
-        description: use with integer-simple build of GHC
-
-library
-    build-depends: base < 5, binary < 0.8, bytestring >= 0.9 && <= 1, array < 0.6, containers < 0.6
-
-    exposed-modules:
-        Text.Show.ByteString
-
-    other-modules:
-        Text.Show.ByteString.Util
-        Text.Show.ByteString.Char
-        Text.Show.ByteString.Int
-        Text.Show.ByteString.Float
-        Text.Show.ByteString.Integer
-
-    ghc-options:
-        -O2 -Wall
-
-    if flag(integer-simple)
-        cpp-options: -DINTEGER_SIMPLE
-        build-depends: integer-simple
-
-    if impl(ghc >= 6.11) && !flag(integer-simple)
-        cpp-options: -DINTEGER_GMP
-        build-depends: integer-gmp >= 0.2
-
-    if impl(ghc >= 6.9) && impl(ghc < 6.11) && !flag(integer-simple)
-        cpp-options: -DINTEGER_GMP
-        build-depends: integer >= 0.1 && < 0.2
-
-source-repository head
-  type: darcs
-  location: http://hub.darcs.net/dolio/bytestring-show


=====================================
additional-cabals/polynomial-0.7.3.cabal deleted
=====================================
@@ -1,73 +0,0 @@
-name:                   polynomial
-version:                0.7.3
-stability:              provisional
-
-cabal-version:          >= 1.8
-build-type:             Simple
-
-author:                 James Cook <mokus at deepbondi.net>
-maintainer:             James Cook <mokus at deepbondi.net>
-license:                PublicDomain
-homepage:               https://github.com/mokus0/polynomial
-
-category:               Math, Numerical
-synopsis:               Polynomials
-description:            A type for representing polynomials, several functions
-                        for manipulating and evaluating them, and several
-                        interesting polynomial sequences.
-
-tested-with:            GHC == 7.8.4,
-                        GHC == 7.10.3,
-                        GHC == 8.0.2,
-                        GHC == 8.1.*
-
-source-repository head
-  type: git
-  location: git://github.com/mokus0/polynomial.git
-
-Library
-  ghc-options:          -Wall -fno-warn-name-shadowing
-  if impl(ghc >= 7.4)
-    ghc-options:        -fwarn-unsafe
-  hs-source-dirs:       src
-  exposed-modules:      Math.Polynomial
-                        Math.Polynomial.Bernstein
-                        Math.Polynomial.Bernoulli
-                        Math.Polynomial.Chebyshev
-                        Math.Polynomial.Hermite
-                        Math.Polynomial.Interpolation
-                        Math.Polynomial.Lagrange
-                        Math.Polynomial.Legendre
-                        Math.Polynomial.Newton
-                        Math.Polynomial.NumInstance
-                        Math.Polynomial.Type
-                        Math.Polynomial.VectorSpace
-  other-modules:        Data.List.ZipSum
-                        Data.VectorSpace.WrappedNum
-                        Math.Polynomial.Pretty
-  
-  build-depends:        base >= 3 && <5,
-                        deepseq,
-                        vector,
-                        vector-space,
-                        vector-th-unbox >= 0.2.1
-  
-  if impl(ghc < 7.10)
-    build-depends:      pretty < 1.1.2, prettyclass
-  else
-    build-depends:      pretty >= 1.1.2
-
-Test-Suite polynomial-test
-  type:                 exitcode-stdio-1.0
-  hs-source-dirs:       test
-  main-is:              Tests.hs
-  
-  build-depends:        base >= 3 && <5, 
-                        HUnit == 1.2.*,
-                        polynomial,
-                        QuickCheck >= 2, 
-                        test-framework, 
-                        test-framework-hunit,
-                        test-framework-quickcheck2,
-                        vector,
-                        vector-space


=====================================
packages.txt
=====================================
@@ -90,7 +90,6 @@ bytestring-handle 0.1.0.6
 bytestring-lexing 0.5.0.2
 bytestring-mmap 0.2.2
 bytestring-progress 1.4
-bytestring-show 0.3.5.6 ignore # see https://bugs.debian.org/962890
 bytestring-to-vector 0.3.0.1
 bz2 1.0.0.1
 bzlib 0.5.1.0
@@ -100,7 +99,6 @@ cabal-doctest 1.0.8
 cabal-install 3.0.1.0 binary -f-lukko
 cairo 0.13.8.1
 call-stack 0.2.0 notest
-carettah 0.5.1 binary ignore # depends on deprecated highlighting-kate
 casa-client 0.0.1
 casa-types 0.0.1
 case-insensitive 1.2.1.0
@@ -176,7 +174,6 @@ cryptonite 0.26
 cryptonite-conduit 0.2.2
 crypto-numbers 0.2.7
 crypto-pubkey 0.2.8
-crypto-pubkey-openssh 0.2.7 key notest ignore # https://bugs.debian.org/962955
 crypto-pubkey-types 0.4.3
 crypto-random 0.0.9
 crypto-random-api 0.2.0
@@ -218,7 +215,6 @@ dependent-map 0.4.0.0
 dependent-sum 0.7.1.0
 dependent-sum-template 0.1.0.3
 deque 0.4.3
-derive 2.6.5 ignore # https://bugs.debian.org/964084
 deriving-compat 0.5.9
 descriptive 0.9.5
 dhall 1.32.0 notest # avoid dependency on missing turtle
@@ -257,8 +253,6 @@ easy-file 0.2.2
 easytest 0.2.1 ignore # https://bugs.debian.org/963072
 echo 0.1.3
 ed25519 0.0.5.0 -f-test-hlint key
-EdisonAPI 1.3.1 ignore # https://bugs.debian.org/962959
-EdisonCore 1.3.2.1 ignore # https://bugs.debian.org/962958
 edit-distance 0.2.2.1
 edit-distance-vector 1.0.0.4
 either 5.0.1.1 # by accident
@@ -312,7 +306,6 @@ foundation 0.0.25
 free 5.1.3
 from-sum 0.2.3.0
 fsnotify 0.3.0.1 notest
-ftphs 1.0.9.2 ignore # https://bugs.debian.org/963184
 gd 3000.7.3
 generic-data 0.8.3.0
 generic-deriving 1.13.1
@@ -333,7 +326,6 @@ ghc-lib-parser 8.10.2.20200808
 ghc-lib-parser-ex 8.10.0.16
 ghc-mtl 1.2.1.0
 ghc-paths 0.1.0.12
-ghc-syb-utils 0.3.0.0 ignore # https://bugs.debian.org/966708
 gi-atk 2.0.22 ahead
 gi-cairo 1.0.24 ahead
 gi-cairo-connector 0.0.1
@@ -368,7 +360,6 @@ gloss 1.13.1.2 key
 gloss-rendering 1.13.1.1
 GLURaw 2.0.0.4
 GLUT 2.7.0.15
-gnutls 0.2 ignore # https://bugs.debian.org/962961
 GraphSCC 1.0.4
 graphviz 2999.20.0.4 behind
 groups 0.4.1.0
@@ -472,7 +463,6 @@ hspec-expectations 0.8.2 notest
 hspec-meta 2.6.0 avoid
 hspec-smallcheck 0.5.2
 hspec-wai 0.10.1
-hstatsd 0.1 ignore # https://bugs.debian.org/962962
 HStringTemplate 0.8.7
 hsx2hs 0.14.1.8
 hsx-jmacro 7.3.8.1
@@ -521,7 +511,6 @@ intern 0.9.3 ahead
 interpolate 0.2.1
 intervals 0.9.1
 invariant 0.5.3
-io-choice 0.0.7 ignore # https://bugs.debian.org/962964
 IOSpec 0.3.1.1
 io-storage 0.3
 io-streams 1.5.1.0
@@ -653,7 +642,6 @@ names-th 0.3.0.1
 nanospec 0.2.2
 nats 1.1.2 avoid
 natural-transformation 0.4
-ncurses 0.2.16 ignore # https://bugs.debian.org/971267
 neat-interpolation 0.3.2.6 notest # Disable tests to avoid dep on HTF
 nettle 0.3.0
 netwire 5.0.3 key
@@ -717,7 +705,6 @@ patience 0.3
 pcap 0.4.5.2
 pcre-light 0.4.1.0
 pem 0.2.4
-permutation 0.5.0.5 ignore # https://bugs.debian.org/962970
 persistable-record 0.6.0.5
 persistable-types-HDBC-pg 0.0.3.5
 persistent 2.10.5.2
@@ -736,7 +723,6 @@ pipes-safe 2.3.2
 pipes-zlib 0.4.4.2 key
 pointed 5.0.1
 pointedlist 0.6.1
-polynomial 0.7.3 ignore # see https://bugs.debian.org/902901
 polyparse 1.13
 posix-pty 0.2.2
 postgresql-libpq 0.9.4.2
@@ -806,7 +792,6 @@ regex-posix 0.96.0.0
 regexpr 0.5.4
 regex-tdfa 1.3.1.0
 regex-tdfa-rc 1.1.8.3 avoid
-regex-tdfa-text 1.0.0.3 ignore # https://bugs.debian.org/963745
 reinterpret-cast 0.1.0 notest # avoid dependency on loop
 relational-query 0.12.2.3
 relational-query-HDBC 0.7.2.0
@@ -1055,7 +1040,6 @@ vector-binary-instances 0.2.5.1
 vector-builder 0.3.8 notest # missing deps
 vector-instances 3.4
 vector-space 0.16
-vector-space-points 0.2.1.2 ignore # https://bugs.debian.org/966711
 vector-th-unbox 0.2.1.7
 void 0.7.3
 vty 5.28.2 notest
@@ -1084,8 +1068,6 @@ werewolf 1.5.2.0 ignore # https://bugs.debian.org/975464
 with-location 0.1.0
 wizards 1.0.3
 wl-pprint-annotated 0.1.0.1
-wl-pprint-extras 3.5.0.5 ignore # https://bugs.debian.org/963499
-wl-pprint-terminfo 3.7.1.4 ignore # https://bugs.debian.org/963501
 wl-pprint-text 1.2.0.1
 word8 0.1.3
 word-trie 0.3.0


=====================================
patches/bytestring-show/0.3.5.6/newer-deps deleted
=====================================
@@ -1,11 +0,0 @@
---- a/bytestring-show.cabal
-+++ b/bytestring-show.cabal
-@@ -16,7 +16,7 @@
-         description: use with integer-simple build of GHC
- 
- library
--    build-depends: base < 5, binary < 0.8, bytestring >= 0.9 && <= 1, array < 0.6, containers < 0.6
-+    build-depends: base < 5, binary < 0.9, bytestring >= 0.9 && <= 1, array < 0.6, containers < 0.9
- 
-     exposed-modules:
-         Text.Show.ByteString


=====================================
patches/bytestring-show/0.3.5.6/series deleted
=====================================
@@ -1 +0,0 @@
-newer-deps


=====================================
patches/hakyll/4.13.4.0/newer-deps deleted
=====================================
@@ -1,11 +0,0 @@
---- a/hakyll.cabal
-+++ b/hakyll.cabal
-@@ -174,7 +174,7 @@
-     data-default         >= 0.4      && < 0.8,
-     deepseq              >= 1.3      && < 1.5,
-     directory            >= 1.2.7.0  && < 1.4,
--    file-embed           >= 0.0.10.1 && < 0.0.12,
-+    file-embed           >= 0.0.10.1 && < 0.0.13,
-     filepath             >= 1.0      && < 1.5,
-     lrucache             >= 1.1.1    && < 1.3,
-     memory               >= 0.14.18  && < 0.16,


=====================================
patches/hakyll/4.13.4.0/series deleted
=====================================
@@ -1 +0,0 @@
-newer-deps


=====================================
patches/hedgehog/1.0.3/no-fail
=====================================
@@ -1,10 +1,12 @@
+Index: b/hedgehog.cabal
+===================================================================
 --- a/hedgehog.cabal
 +++ b/hedgehog.cabal
-@@ -60,7 +60,6 @@
-     , directory                       >= 1.2        && < 1.4
-     , erf                             >= 2.0        && < 2.1
-     , exceptions                      >= 0.7        && < 0.11
--    , fail                            >= 4.9        && < 5
-     , lifted-async                    >= 0.7        && < 0.11
-     , mmorph                          >= 1.0        && < 1.2
-     , monad-control                   >= 1.0        && < 1.1
+@@ -61,7 +61,6 @@ library
+     , directory                       >= 1.2        && < 1.4
+     , erf                             >= 2.0        && < 2.1
+     , exceptions                      >= 0.7        && < 0.11
+-    , fail                            >= 4.9        && < 5
+     , lifted-async                    >= 0.7        && < 0.11
+     , mmorph                          >= 1.0        && < 1.2
+     , monad-control                   >= 1.0        && < 1.1


=====================================
patches/polynomial/0.7.3/newer-hunit deleted
=====================================
@@ -1,11 +0,0 @@
---- a/polynomial.cabal
-+++ b/polynomial.cabal
-@@ -63,7 +63,7 @@
-   main-is:              Tests.hs
-   
-   build-depends:        base >= 3 && <5, 
--                        HUnit == 1.2.*,
-+                        HUnit >= 1.2,
-                         polynomial,
-                         QuickCheck >= 2, 
-                         test-framework, 


=====================================
patches/polynomial/0.7.3/series deleted
=====================================
@@ -1 +0,0 @@
-newer-hunit


=====================================
patches/wl-pprint-extras/3.5.0.5/newer-deps deleted
=====================================
@@ -1,11 +0,0 @@
---- haskell-wl-pprint-extras-3.5.0.5.orig/wl-pprint-extras.cabal
-+++ haskell-wl-pprint-extras-3.5.0.5/wl-pprint-extras.cabal
-@@ -24,7 +24,7 @@ library
- 
-   build-depends:
-     base          >= 4.8     && < 5.0,
--    containers    >= 0.4     && < 0.6,
-+    containers    >= 0.4     && < 0.7,
-     semigroups    >= 0.9     && < 1,
-     semigroupoids >= 3       && < 6,
-     utf8-string   >= 0.3.6   && < 1.1,


=====================================
patches/wl-pprint-extras/3.5.0.5/no-nats deleted
=====================================
@@ -1,13 +0,0 @@
---- a/wl-pprint-extras.cabal
-+++ b/wl-pprint-extras.cabal
-@@ -23,9 +23,8 @@
- library
- 
-   build-depends:
--    base          == 4.*,
-+    base          >= 4.8     && < 5.0,
-     containers    >= 0.4     && < 0.6,
--    nats          >= 0.1     && < 2,
-     semigroups    >= 0.9     && < 1,
-     semigroupoids >= 3       && < 6,
-     utf8-string   >= 0.3.6   && < 1.1,


=====================================
patches/wl-pprint-extras/3.5.0.5/series deleted
=====================================
@@ -1,2 +0,0 @@
-no-nats
-newer-deps


=====================================
patches/wl-pprint-terminfo/3.7.1.4/newer-deps deleted
=====================================
@@ -1,11 +0,0 @@
---- haskell-wl-pprint-terminfo-3.7.1.4.orig/wl-pprint-terminfo.cabal
-+++ haskell-wl-pprint-terminfo-3.7.1.4/wl-pprint-terminfo.cabal
-@@ -48,7 +48,7 @@ library
-   build-depends:
-     base             >= 4.8     && < 5,
-     bytestring       >= 0.9.1   && < 0.11,
--    containers       >= 0.4     && < 0.6,
-+    containers       >= 0.4     && < 0.7,
-     semigroups       >= 0.9     && < 1,
-     wl-pprint-extras >= 3.4     && < 4,
-     terminfo         >= 0.3.2   && < 0.5,


=====================================
patches/wl-pprint-terminfo/3.7.1.4/no-nats deleted
=====================================
@@ -1,14 +0,0 @@
---- a/wl-pprint-terminfo.cabal
-+++ b/wl-pprint-terminfo.cabal
-@@ -46,10 +46,9 @@
-   other-extensions: TypeFamilies
- 
-   build-depends:
--    base             == 4.*,
-+    base             >= 4.8     && < 5,
-     bytestring       >= 0.9.1   && < 0.11,
-     containers       >= 0.4     && < 0.6,
--    nats             >= 0.1     && < 2,
-     semigroups       >= 0.9     && < 1,
-     wl-pprint-extras >= 3.4     && < 4,
-     terminfo         >= 0.3.2   && < 0.5,


=====================================
patches/wl-pprint-terminfo/3.7.1.4/series deleted
=====================================
@@ -1,2 +0,0 @@
-no-nats
-newer-deps



View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/compare/c9b737b598553bb0123db1048d27da90b70235be...92383a301cc2b79d325e9b77d95195914f913fef

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/compare/c9b737b598553bb0123db1048d27da90b70235be...92383a301cc2b79d325e9b77d95195914f913fef
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20201212/afebc17b/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list