Add subdirectory with stackage package

This commit is contained in:
Michael Snoyman 2015-04-20 10:48:04 +03:00
parent 6f629d3809
commit 781078b126
6 changed files with 55 additions and 0 deletions

5
stackage/ChangeLog.md Normal file
View File

@ -0,0 +1,5 @@
## 0.7.0.0
* First release of this incarnation of the stackage package. Previously, this
package provided completely different functionality. That functionality has
since moved to stackage-curator.

20
stackage/LICENSE Normal file
View File

@ -0,0 +1,20 @@
Copyright (c) 2015 FP Complete
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2
stackage/README.md Normal file
View File

@ -0,0 +1,2 @@
This is a dummy wrapper package, forcing installation of other packages which
provide real functionality.

2
stackage/Setup.hs Normal file
View File

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

View File

@ -0,0 +1,3 @@
-- | This module does absolutely nothing. It's present so that cabal can more
-- easily track whether the stackage package is installed.
module Stackage.Dummy () where

23
stackage/stackage.cabal Normal file
View File

@ -0,0 +1,23 @@
name: stackage
version: 0.7.0.0
synopsis: Dummy package forcing installation of other Stackage packages
homepage: https://www.stackage.org/
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: michael@snoyman.com
category: Development
build-type: Simple
extra-source-files: README.md ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Stackage.Dummy
build-depends: base < 10
, stackage-cli
, stackage-update
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/fpco/stackage.git