Compare commits
No commits in common. "0db09b04202c1cdec326e8e2690f8e4428967364" and "925f887af12adebb0e93080088089c35af84ba12" have entirely different histories.
0db09b0420
...
925f887af1
|
@ -0,0 +1,40 @@
|
||||||
|
# This is the simple Travis configuration, which is intended for use
|
||||||
|
# on applications which do not require cross-platform and
|
||||||
|
# multiple-GHC-version support. For more information and other
|
||||||
|
# options, see:
|
||||||
|
#
|
||||||
|
# https://docs.haskellstack.org/en/stable/travis_ci/
|
||||||
|
#
|
||||||
|
# Copy these contents into the root directory of your Github project in a file
|
||||||
|
# named .travis.yml
|
||||||
|
|
||||||
|
# Choose a build environment
|
||||||
|
dist: xenial
|
||||||
|
|
||||||
|
# Do not choose a language; we provide our own build tools.
|
||||||
|
language: generic
|
||||||
|
|
||||||
|
# Caching so the next build will be fast too.
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.stack
|
||||||
|
|
||||||
|
# Ensure necessary system libraries are present
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libgmp-dev
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
# Download and unpack the stack executable
|
||||||
|
- mkdir -p ~/.local/bin
|
||||||
|
- export PATH=$HOME/.local/bin:$PATH
|
||||||
|
- travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
||||||
|
|
||||||
|
install:
|
||||||
|
# Build dependencies
|
||||||
|
- stack --no-terminal --install-ghc test --only-dependencies
|
||||||
|
|
||||||
|
script:
|
||||||
|
# Build the package, its tests, and its docs and run the tests
|
||||||
|
- stack --no-terminal test --haddock --no-haddock-deps
|
|
@ -1,10 +1,10 @@
|
||||||
name: subfix
|
name: subfix
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
|
github: "jlamothe/subfix"
|
||||||
license: GPL-3
|
license: GPL-3
|
||||||
author: "Jonathan Lamothe"
|
author: "Jonathan Lamothe"
|
||||||
maintainer: "jonathan@jlamothe.net"
|
maintainer: "jonathan@jlamothe.net"
|
||||||
copyright: "Jonathan Lamothe"
|
copyright: "Jonathan Lamothe"
|
||||||
homepage: "https://git.fingerprintsoftware.ca/jlamothe/subfix"
|
|
||||||
|
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
- README.md
|
- README.md
|
||||||
|
|
11
subfix.cabal
11
subfix.cabal
|
@ -1,17 +1,18 @@
|
||||||
cabal-version: 1.12
|
cabal-version: 1.12
|
||||||
|
|
||||||
-- This file has been generated from package.yaml by hpack version 0.34.4.
|
-- This file has been generated from package.yaml by hpack version 0.33.0.
|
||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: d27dd9ccaaf539b7d1e0fc8be1df5576122d1476e8235b5a3dee69a33e391c9f
|
-- hash: b41ddefa80def277ca2c1c6b04f8b656de59824a18abac5d5385b1f25f2a643e
|
||||||
|
|
||||||
name: subfix
|
name: subfix
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
synopsis: Fixes .srt files
|
synopsis: Fixes .srt files
|
||||||
description: Please see the README on GitHub at <https://github.com/jlamothe/subfix#readme>
|
description: Please see the README on GitHub at <https://github.com/jlamothe/subfix#readme>
|
||||||
category: Utilities
|
category: Utilities
|
||||||
homepage: https://git.fingerprintsoftware.ca/jlamothe/subfix
|
homepage: https://github.com/jlamothe/subfix#readme
|
||||||
|
bug-reports: https://github.com/jlamothe/subfix/issues
|
||||||
author: Jonathan Lamothe
|
author: Jonathan Lamothe
|
||||||
maintainer: jonathan@jlamothe.net
|
maintainer: jonathan@jlamothe.net
|
||||||
copyright: Jonathan Lamothe
|
copyright: Jonathan Lamothe
|
||||||
|
@ -22,6 +23,10 @@ extra-source-files:
|
||||||
README.md
|
README.md
|
||||||
ChangeLog.md
|
ChangeLog.md
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/jlamothe/subfix
|
||||||
|
|
||||||
library
|
library
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
SubFix
|
SubFix
|
||||||
|
|
Loading…
Reference in New Issue
Block a user