From b1a3c11f6e8c6d474a4d4ae784f59ffdc380d5b2 Mon Sep 17 00:00:00 2001 From: Jake Zimmerman Date: Sun, 19 May 2019 15:05:30 +0800 Subject: [PATCH] stack new bingo-sim jez-simple.hsfiles --- .gitignore | 5 ++++ LICENSE | 22 +++++++++++++++++ README.md | 1 + Setup.hs | 2 ++ bingo-sim.cabal | 45 ++++++++++++++++++++++++++++++++++ package.yaml | 39 ++++++++++++++++++++++++++++++ stack.yaml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 178 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 Setup.hs create mode 100644 bingo-sim.cabal create mode 100644 package.yaml create mode 100644 stack.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..706cec9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.stack-work/ +.stack-work-profile/ +tags +.*.sw[nop] +*~ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b8d33e3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +Copyright Jake Zimmerman (c) 2019 +The MIT License (MIT) + +Copyright (c) 2019 Jake Zimmerman + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..488ec65 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# bingo-sim diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..9a994af --- /dev/null +++ b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/bingo-sim.cabal b/bingo-sim.cabal new file mode 100644 index 0000000..7ade247 --- /dev/null +++ b/bingo-sim.cabal @@ -0,0 +1,45 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.31.1. +-- +-- see: https://github.com/sol/hpack +-- +-- hash: 395bd0817263e9250ab33ee808a41e7beb5698eb332b5588c05d5c0a7647fabd + +name: bingo-sim +version: 0.0.0.0 +synopsis: A small playground to learn about profiling Haskell. + +description: This package simulates the probability of scoring a bingo at a particular children's carnival game. I've been using it to learn how profiling in Haskell works. +category: Simple +homepage: https://github.com/jez/bingo-sim +author: Jake Zimmerman +maintainer: zimmerman.jake@gmail.com +copyright: 2019 Jake Zimmerman +license: MIT +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + +library + other-modules: + Paths_bingo_sim + hs-source-dirs: + src + ghc-options: -Wall -Wcompat -Wmissing-signatures -Werror -funbox-strict-fields + build-depends: + base >=4.7 && <5 + default-language: Haskell2010 + +executable bingo-sim + main-is: Main.hs + other-modules: + Paths_bingo_sim + hs-source-dirs: + app + ghc-options: -Wall -Wcompat -Wmissing-signatures -Werror -funbox-strict-fields + build-depends: + base >=4.7 && <5 + , bingo-sim + default-language: Haskell2010 diff --git a/package.yaml b/package.yaml new file mode 100644 index 0000000..70153a8 --- /dev/null +++ b/package.yaml @@ -0,0 +1,39 @@ +name: bingo-sim +version: 0.0.0.0 +homepage: https://github.com/jez/bingo-sim +author: Jake Zimmerman +maintainer: zimmerman.jake@gmail.com +copyright: 2019 Jake Zimmerman +license: MIT + +extra-source-files: +- README.md + +# Metadata used when publishing your package +synopsis: > + A small playground to learn about profiling Haskell. +description: > + This package simulates the probability of scoring a bingo at a particular + children's carnival game. I've been using it to learn how profiling in + Haskell works. +category: Simple + +ghc-options: +- -Wall +- -Wcompat +- -Wmissing-signatures +- -Werror +- -funbox-strict-fields + +dependencies: +- base >=4.7 && <5 + +library: + source-dirs: src + +executables: + bingo-sim: + main: Main.hs + source-dirs: app + dependencies: + - bingo-sim diff --git a/stack.yaml b/stack.yaml new file mode 100644 index 0000000..8bb37f4 --- /dev/null +++ b/stack.yaml @@ -0,0 +1,64 @@ +# This file was automatically generated by 'stack init' +# +# Some commonly used options have been documented as comments in this file. +# For advanced use and comprehensive documentation of the format, please see: +# https://docs.haskellstack.org/en/stable/yaml_configuration/ + +# Resolver to choose a 'specific' stackage snapshot or a compiler version. +# A snapshot resolver dictates the compiler version and the set of packages +# to be used for project dependencies. For example: +# +# resolver: lts-3.5 +# resolver: nightly-2015-09-21 +# resolver: ghc-7.10.2 +# +# The location of a snapshot can be provided as a file or url. Stack assumes +# a snapshot provided as a file might change, whereas a url resource does not. +# +# resolver: ./custom-snapshot.yaml +# resolver: https://example.com/snapshots/2018-01-01.yaml +resolver: lts-13.21 + +# User packages to be built. +# Various formats can be used as shown in the example below. +# +# packages: +# - some-directory +# - https://example.com/foo/bar/baz-0.0.2.tar.gz +# - location: +# git: https://github.com/commercialhaskell/stack.git +# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a +# - location: https://github.com/commercialhaskell/stack/commit/e7b331f14bcffb8367cd58fbfc8b40ec7642100a +# subdirs: +# - auto-update +# - wai +packages: +- . +# Dependency packages to be pulled from upstream that are not in the resolver +# using the same syntax as the packages field. +# (e.g., acme-missiles-0.3) +# extra-deps: [] + +# Override default flag values for local packages and extra-deps +# flags: {} + +# Extra package databases containing global packages +# extra-package-dbs: [] + +# Control whether we use the GHC we find on the path +# system-ghc: true +# +# Require a specific version of stack, using version ranges +# require-stack-version: -any # Default +# require-stack-version: ">=1.9" +# +# Override the architecture used by stack, especially useful on Windows +# arch: i386 +# arch: x86_64 +# +# Extra directories used by stack for building +# extra-include-dirs: [/path/to/dir] +# extra-lib-dirs: [/path/to/dir] +# +# Allow a newer minor version of GHC than the snapshot specifies +# compiler-check: newer-minor