[Pkg-haskell-commits] darcs: haskell-yaml: Initial Check-In

clint at debian.org clint at debian.org
Thu Aug 25 02:24:10 UTC 2011


Thu Aug 25 02:23:35 UTC 2011  clint at debian.org
  * Initial Check-In
  Ignore-this: 51e8ba9f2c60d7b4c5d9d12359d4663

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./patches/
    A ./patches/series
    A ./patches/use-shared-libyaml.diff
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Thu Aug 25 02:23:35 UTC 2011  clint at debian.org
  * Initial Check-In
  Ignore-this: 51e8ba9f2c60d7b4c5d9d12359d4663
diff -rN -u old-haskell-yaml//changelog new-haskell-yaml//changelog
--- old-haskell-yaml//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//changelog	2011-08-25 02:24:10.854058495 +0000
@@ -0,0 +1,5 @@
+haskell-yaml (0.4.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Wed, 24 Aug 2011 20:41:45 -0400
diff -rN -u old-haskell-yaml//compat new-haskell-yaml//compat
--- old-haskell-yaml//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//compat	2011-08-25 02:24:10.854058495 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-yaml//control new-haskell-yaml//control
--- old-haskell-yaml//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//control	2011-08-25 02:24:10.854058495 +0000
@@ -0,0 +1,66 @@
+Source: haskell-yaml
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Build-Depends: debhelper (>= 7)
+  , cdbs
+  , haskell-devscripts (>= 0.8)
+  , ghc
+  , ghc-prof
+  , libghc-bytestring-dev
+  , libghc-bytestring-prof
+  , libghc-enumerator-dev
+  , libghc-enumerator-prof
+  , libghc-transformers-dev
+  , libghc-transformers-prof
+  , libyaml-dev
+Build-Depends-Indep: ghc-doc
+  , libghc-bytestring-doc
+  , libghc-enumerator-doc
+  , libghc-transformers-doc
+Standards-Version: 3.9.2
+Homepage: http://hackage.haskell.org/package/yaml
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-yaml
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-yaml
+
+Package: libghc-yaml-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: interface to syck YAML library
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ Provides support for parsing and emitting Yaml documents.
+
+Package: libghc-yaml-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: interface to syck YAML library; profiling libraries
+ This package provides a library for the Haskell programming language,
+ compiled for profiling.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ Provides support for parsing and emitting Yaml documents.
+
+Package: libghc-yaml-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: interface to syck YAML library; documentation
+ This package provides the documentation for a library for the Haskell
+ programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ Provides support for parsing and emitting Yaml documents.
diff -rN -u old-haskell-yaml//copyright new-haskell-yaml//copyright
--- old-haskell-yaml//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//copyright	2011-08-25 02:24:10.854058495 +0000
@@ -0,0 +1,37 @@
+This package was debianized by Clint Adams <clint at debian.org> on
+Thu, 25 Aug 2011 00:41:45 -0000
+
+It was downloaded from
+http://hackage.haskell.org/package/yaml
+
+Upstream Authors:
+
+    Michael Snoyman <michael at snoyman.com>
+    Anton Ageev <antage at gmail.com>
+
+Copyright:
+
+    2008 Michael Snoyman
+
+License:
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff -rN -u old-haskell-yaml//patches/series new-haskell-yaml//patches/series
--- old-haskell-yaml//patches/series	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//patches/series	2011-08-25 02:24:10.858056323 +0000
@@ -0,0 +1 @@
+use-shared-libyaml.diff
diff -rN -u old-haskell-yaml//patches/use-shared-libyaml.diff new-haskell-yaml//patches/use-shared-libyaml.diff
--- old-haskell-yaml//patches/use-shared-libyaml.diff	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//patches/use-shared-libyaml.diff	2011-08-25 02:24:10.858056323 +0000
@@ -0,0 +1,46 @@
+--- a/yaml.cabal
++++ b/yaml.cabal
+@@ -11,9 +11,6 @@
+ cabal-version:   >= 1.2
+ build-type:      Simple
+ homepage:        http://github.com/snoyberg/yaml/
+-extra-source-files: c/helper.h,
+-                    c/yaml_private.h,
+-                    c/yaml.h
+ 
+ flag nolib
+   description: Skip building the library
+@@ -33,16 +30,7 @@
+                    , enumerator >= 0.4 && < 0.5
+     exposed-modules: Text.Libyaml
+     ghc-options:     -Wall
+-    c-sources:       c/helper.c,
+-                     c/api.c,
+-                     c/dumper.c,
+-                     c/emitter.c,
+-                     c/loader.c,
+-                     c/parser.c,
+-                     c/reader.c,
+-                     c/scanner.c,
+-                     c/writer.c
+-    include-dirs:    c
++    extra-libraries: yaml
+ 
+ executable           runtests
+     if flag(buildtests)
+@@ -60,14 +48,5 @@
+     else
+         Buildable: False
+     ghc-options:     -Wall
+-    c-sources:       c/helper.c,
+-                     c/api.c,
+-                     c/dumper.c,
+-                     c/emitter.c,
+-                     c/loader.c,
+-                     c/parser.c,
+-                     c/reader.c,
+-                     c/scanner.c,
+-                     c/writer.c
+-    include-dirs:    c
++    extra-libraries: yaml
+     main-is:         runtests.hs
diff -rN -u old-haskell-yaml//rules new-haskell-yaml//rules
--- old-haskell-yaml//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//rules	2011-08-25 02:24:10.858056323 +0000
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-yaml//source/format new-haskell-yaml//source/format
--- old-haskell-yaml//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//source/format	2011-08-25 02:24:10.858056323 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-yaml//watch new-haskell-yaml//watch
--- old-haskell-yaml//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-yaml//watch	2011-08-25 02:24:10.858056323 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|yaml-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/yaml \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list