[Pkg-haskell-commits] darcs: tools: Create directory with packaging template files

Joachim Breitner mail at joachim-breitner.de
Sat Mar 20 15:40:23 UTC 2010


Sat Mar 20 15:17:30 UTC 2010  Joachim Breitner <mail at joachim-breitner.de>
  * Create directory with packaging template files
  Ignore-this: aee98e56a4430e99f6b02c0b7742f43f

    A ./template-debian/
    A ./template-debian/changelog
    A ./template-debian/compat
    A ./template-debian/control
    A ./template-debian/copyright
    A ./template-debian/rules
    A ./template-debian/source/
    A ./template-debian/source/format
    A ./template-debian/watch

Sat Mar 20 15:17:30 UTC 2010  Joachim Breitner <mail at joachim-breitner.de>
  * Create directory with packaging template files
  Ignore-this: aee98e56a4430e99f6b02c0b7742f43f
diff -rN -u old-tools/template-debian/changelog new-tools/template-debian/changelog
--- old-tools/template-debian/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/changelog	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1,5 @@
+haskell-foo (0.0.0.0-1) unstable; urgency=low
+
+  * Initial release. (Closes: #000000)
+
+ -- John Maintainer <maintainer at example.com>  Thu, 01 Jan 1970 00:00:00 +0000
diff -rN -u old-tools/template-debian/compat new-tools/template-debian/compat
--- old-tools/template-debian/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/compat	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-tools/template-debian/control new-tools/template-debian/control
--- old-tools/template-debian/control	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/control	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1,63 @@
+Source: haskell-foo
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: John Maintainer <maintainer at example.com>
+Build-Depends: debhelper (>= 7)
+  , cdbs
+  , haskell-devscripts (>= 0.7)
+  , ghc6
+  , ghc6-prof
+  , libghc6-bar-dev
+  , libghc6-bar-prof
+Build-Depends-Indep: ghc6-doc
+  , libghc6-bar-doc
+Standards-Version: 3.8.4
+Homepage: http://hackage.haskell.org/package/foo
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-foo
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-foo
+
+Package: libghc6-foo-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Short description of foo
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This is the long description of the foo package.  This package was invented to
+ be used as an example for the Package Template.
+
+Package: libghc6-foo-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Short description of foo; 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.
+ .
+ This is the long description of the foo package.  This package was invented to
+ be used as an example for the Package Template.
+
+Package: libghc6-foo-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Short description of foo; documentation
+ This package provides the documentation for a library for the Haskell
+ programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This is the long description of the foo package.  This package was invented to
+ be used as an example for the Package Template.
diff -rN -u old-tools/template-debian/copyright new-tools/template-debian/copyright
--- old-tools/template-debian/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/copyright	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1,8 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: foo
+Maintainer: Jack Upstream Developer <upstream at example.com>
+Source: http://hackage.haskell.org/packages/archive/foo/0.0.0.0/foo-0.0.0.0.tar.gz
+
+Copyright: 1970, Jack Upstream Developer
+License: foo license
+ This is the text of the foo license.
diff -rN -u old-tools/template-debian/rules new-tools/template-debian/rules
--- old-tools/template-debian/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/rules	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+DEB_BUILD_DEPENDENCIES = build-arch
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-tools/template-debian/source/format new-tools/template-debian/source/format
--- old-tools/template-debian/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/source/format	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-tools/template-debian/watch new-tools/template-debian/watch
--- old-tools/template-debian/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-tools/template-debian/watch	2010-03-20 15:40:23.167966455 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|foo-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/foo \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list