Skip to content

Commit 8c0039f

Browse files
authored
Merge pull request #556 from Shimuuar/fix-cabal-description
Fix cabal description
2 parents 8943433 + fbd00da commit 8c0039f

2 files changed

Lines changed: 15 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@ jobs:
3535
- { cabal: "3.14", os: windows-latest, ghc: "9.10.2" }
3636
- { cabal: "3.14", os: windows-latest, ghc: "9.12.2" }
3737
# MacOS
38-
# Fails with linker errors
39-
# > ld: warning: -single_module is obsolete
40-
# > <command line>: can't load framework: Security (not found)
41-
# - { cabal: "3.14", os: macOS-13, ghc: "8.6.5" }
42-
# - { cabal: "3.14", os: macOS-13, ghc: "8.8.4" }
43-
- { cabal: "3.14", os: macOS-13, ghc: "8.10.7" }
44-
- { cabal: "3.14", os: macOS-13, ghc: "9.0.2" }
38+
#
39+
# Fails with:
40+
# > <command line>: can't load framework: Security (not found)
41+
# - { cabal: "3.14", os: macOS-15-intel, ghc: "8.8.4" }
42+
- { cabal: "3.14", os: macOS-15-intel, ghc: "8.10.7" }
43+
- { cabal: "3.14", os: macOS-15-intel, ghc: "9.0.2" }
4544
- { cabal: "3.14", os: macOS-latest, ghc: "9.2.8" }
4645
- { cabal: "3.14", os: macOS-latest, ghc: "9.4.8" }
4746
- { cabal: "3.14", os: macOS-latest, ghc: "9.6.7" }
@@ -66,7 +65,7 @@ jobs:
6665
name: Cache ~/.cabal/store
6766
with:
6867
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
69-
key: ${{ runner.os }}-${{ matrix.ghc }}---CACHE_V3
68+
key: ${{ runner.os }}-${{ matrix.ghc }}-CACHE_V4
7069
# ----------------
7170
- name: "Install PAPI"
7271
run: |

vector/vector.cabal

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,26 @@ Bug-Reports: https://github.com/haskell/vector/issues
2020
Category: Data, Data Structures
2121
Synopsis: Efficient Arrays
2222
Description:
23-
.
2423
An efficient implementation of @Int@-indexed arrays (both mutable
2524
and immutable), with a powerful loop optimisation framework .
26-
.
25+
2726
It is structured as follows:
28-
.
27+
2928
["Data.Vector"] Boxed vectors of arbitrary types.
30-
.
29+
3130
["Data.Vector.Unboxed"] Unboxed vectors with an adaptive
3231
representation based on data type families.
33-
.
32+
3433
["Data.Vector.Storable"] Unboxed vectors of 'Storable' types.
35-
.
34+
3635
["Data.Vector.Primitive"] Unboxed vectors of primitive types as
3736
defined by the @primitive@ package. "Data.Vector.Unboxed" is more
3837
flexible at no performance cost.
39-
.
38+
4039
["Data.Vector.Generic"] Generic interface to the vector types.
41-
.
40+
4241
There is also a (draft) tutorial on common uses of vector.
43-
.
42+
4443
* <http://haskell.org/haskellwiki/Numeric_Haskell:_A_Vector_Tutorial>
4544

4645
Tested-With:

0 commit comments

Comments
 (0)