Skip to content

Commit ec01479

Browse files
committed
renamed statistics-dense-linear-algebra to dense-linear-algebra
1 parent 54ff5eb commit ec01479

16 files changed

+75
-4
lines changed

dense-linear-algebra/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/dist/
2+
/.cabal-sandbox/
3+
/cabal.sandbox.config
4+
/.stack-work/

dense-linear-algebra/.travis.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Use new container infrastructure to enable caching
2+
sudo: false
3+
4+
# Choose a lightweight base image; we provide our own build tools.
5+
language: c
6+
7+
# GHC depends on GMP. You can add other dependencies here as well.
8+
addons:
9+
apt:
10+
packages:
11+
- libgmp-dev
12+
13+
# The different configurations we want to test. You could also do things like
14+
# change flags or use --stack-yaml to point to a different file.
15+
env:
16+
- ARGS=""
17+
#- ARGS="--resolver lts-2"
18+
- ARGS="--resolver lts-3"
19+
- ARGS="--resolver lts"
20+
- ARGS="--resolver nightly"
21+
22+
before_install:
23+
# Download and unpack the stack executable
24+
- mkdir -p ~/.local/bin
25+
- export PATH=$HOME/.local/bin:$PATH
26+
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
27+
28+
# This line does all of the work: installs GHC if necessary, build the library,
29+
# executables, and test suites, and runs the test suites. --no-terminal works
30+
# around some quirks in Travis's terminal implementation.
31+
script: stack $ARGS --no-terminal --install-ghc test --haddock
32+
33+
# Caching so the next build will be fast too.
34+
cache:
35+
directories:
36+
- $HOME/.stack

dense-linear-algebra/LICENSE

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Copyright Author name here (c) 2018
2+
3+
All rights reserved.
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
* Redistributions in binary form must reproduce the above
12+
copyright notice, this list of conditions and the following
13+
disclaimer in the documentation and/or other materials provided
14+
with the distribution.
15+
16+
* Neither the name of Author name here nor the names of other
17+
contributors may be used to endorse or promote products derived
18+
from this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

statistics-dense-linear-algebra/statistics-dense-linear-algebra.cabal renamed to dense-linear-algebra/dense-linear-algebra.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: statistics-dense-linear-algebra
1+
name: dense-linear-algebra
22
version: 0.1.0.0
33
-- synopsis:
44
-- description:
5-
homepage: https://github.com/githubuser/statistics-dense-linear-algebra
5+
homepage: https://github.com/githubuser/dense-linear-algebra
66
license: BSD3
77
license-file: LICENSE
88
author: Author name here
@@ -41,10 +41,10 @@ test-suite spec
4141
hs-source-dirs: test
4242
main-is: LibSpec.hs
4343
build-depends: base
44-
, statistics-dense-linear-algebra
44+
, dense-linear-algebra
4545
, hspec
4646
, QuickCheck
4747

4848
source-repository head
4949
type: git
50-
location: https://github.com/githubuser/statistics-dense-linear-algebra
50+
location: https://github.com/githubuser/dense-linear-algebra

dense-linear-algebra/test/Spec.hs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{-# OPTIONS_GHC -F -pgmF hspec-discover #-}

0 commit comments

Comments
 (0)