[Git][haskell-team/tools][master] move binNMUs into its own directory and make cabal-buildable

Clint Adams gitlab at salsa.debian.org
Thu Aug 2 06:37:38 BST 2018


Clint Adams pushed to branch master at Debian Haskell Group / tools


Commits:
9cb3a644 by Clint Adams at 2018-08-02T05:37:14Z
move binNMUs into its own directory and make cabal-buildable

- - - - -


5 changed files:

- + binnmus/ChangeLog.md
- + binnmus/LICENSE
- + binnmus/Setup.hs
- + binnmus/binNMUs.cabal
- binNMUs.hs → binnmus/binNMUs.hs


Changes:

=====================================
binnmus/ChangeLog.md
=====================================
--- /dev/null
+++ b/binnmus/ChangeLog.md
@@ -0,0 +1,5 @@
+# Revision history for binNMUs
+
+## 0.1.0.0  -- 2018-08-02
+
+* First cabal-enabled version.


=====================================
binnmus/LICENSE
=====================================
--- /dev/null
+++ b/binnmus/LICENSE
@@ -0,0 +1,19 @@
+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.


=====================================
binnmus/Setup.hs
=====================================
--- /dev/null
+++ b/binnmus/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain


=====================================
binnmus/binNMUs.cabal
=====================================
--- /dev/null
+++ b/binnmus/binNMUs.cabal
@@ -0,0 +1,34 @@
+name:                binNMUs
+version:             0.1.0.0
+-- synopsis:            
+-- description:         
+license:             MIT
+license-file:        LICENSE
+author:              Joachim Breitner
+maintainer:          nomeata at debian.org
+copyright:           2014-2018 Joachim Breitner et al.
+category:            Development
+build-type:          Simple
+extra-source-files:  ChangeLog.md
+cabal-version:       >=1.10
+
+executable binNMUs
+  main-is:             binNMUs.hs
+  other-modules:       AcquireFile
+  build-depends:       base >=4.10 && <5
+                     , bytestring
+                     , containers
+                     , debian
+                     , deepseq
+                     , directory
+                     , lens
+                     , lzma
+                     , optparse-applicative
+                     , parallel
+                     , process
+                     , regex-pcre
+                     , split
+                     , strict
+                     , time
+                     , zlib
+  default-language:    Haskell2010


=====================================
binNMUs.hs → binnmus/binNMUs.hs
=====================================
--- a/binNMUs.hs
+++ b/binnmus/binNMUs.hs
@@ -1,3 +1,8 @@
+-- bin-NMU calculator
+-- Copyright © 2014-2018 Joachim Breitner et al.
+-- This software can be copied under the terms of the Expat license
+-- (https://spdx.org/licenses/MIT)
+
 {-# LANGUAGE CPP, DeriveGeneric #-}
 
 import Text.Printf



View it on GitLab: https://salsa.debian.org/haskell-team/tools/commit/9cb3a644f8bbbb648156099d804fc1037eb9306e

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/tools/commit/9cb3a644f8bbbb648156099d804fc1037eb9306e
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20180802/3c6cd770/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list