[DHG_packages] 01/01: binding-dsl: add -prof and -doc
Frédéric-Emmanuel Picca
picca at moszumanska.debian.org
Sat Oct 1 16:16:24 UTC 2016
This is an automated email from the git hooks/post-receive script.
picca pushed a commit to annotated tag haskell-bindings-dsl_v1.0.23-2
in repository DHG_packages.
commit 0c20112b5758be39cc6df9e4b44291a39053ffef
Author: Picca Frédéric-Emmanuel <picca at debian.org>
Date: Sat Oct 1 18:05:31 2016 +0200
binding-dsl: add -prof and -doc
---
p/haskell-bindings-dsl/debian/changelog | 8 +++--
p/haskell-bindings-dsl/debian/control | 55 +++++++++++++++++++++++++--------
p/haskell-bindings-dsl/debian/rules | 6 ++--
3 files changed, 51 insertions(+), 18 deletions(-)
diff --git a/p/haskell-bindings-dsl/debian/changelog b/p/haskell-bindings-dsl/debian/changelog
index 0bc60eb..5bf661f 100644
--- a/p/haskell-bindings-dsl/debian/changelog
+++ b/p/haskell-bindings-dsl/debian/changelog
@@ -1,10 +1,14 @@
-haskell-bindings-dsl (1.0.23-2) UNRELEASED; urgency=medium
+haskell-bindings-dsl (1.0.23-2) unstable; urgency=medium
+ [Dmitry Bogatov]
* Use secure (https) uri in Vcs-Git field in 'debian/control'
* Bump standards version to 3.9.8 (no changes needed)
* Convert `debian/copyright' to dep5 format
- -- Dmitry Bogatov <KAction at gnu.org> Tue, 10 May 2016 09:34:49 +0300
+ [Picca Frédéric-Emmanuel]
+ * Add the -prof and -doc packages
+
+ -- Picca Frédéric-Emmanuel <picca at debian.org> Tue, 10 May 2016 09:34:49 +0300
haskell-bindings-dsl (1.0.23-1) unstable; urgency=medium
diff --git a/p/haskell-bindings-dsl/debian/control b/p/haskell-bindings-dsl/debian/control
index 30c6474..60839c2 100644
--- a/p/haskell-bindings-dsl/debian/control
+++ b/p/haskell-bindings-dsl/debian/control
@@ -3,25 +3,17 @@ Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.or
Uploaders: Clint Adams <clint at debian.org>
Priority: extra
Section: haskell
-Build-Depends: debhelper (>= 9),
- haskell-devscripts (>= 0.10),
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts (>= 0.9),
cdbs,
ghc,
ghc-prof,
+Build-Depends-Indep: ghc-doc,
Standards-Version: 3.9.8
Homepage: https://github.com/jwiegley/bindings-dsl/wiki
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-bindings-dsl
Vcs-Git: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git
-
-Package: libghc-bindings-dsl-dev
-Architecture: any
-Depends: ${haskell:Depends},
- ${shlibs:Depends},
- ${misc:Depends},
-Recommends: ${haskell:Recommends},
-Suggests: ${haskell:Suggests},
-Provides: ${haskell:Provides},
-Description: FFI domain specific language, on top of hsc2hs${haskell:ShortBlurb}
+X-Description: FFI domain specific language, on top of hsc2hs
This is a set of macros to be used when writing Haskell FFI. They were
designed to be able to fully describe C interfaces, so that hsc2hs can
extract from them all Haskell code needed to mimic such interfaces. All
@@ -32,5 +24,42 @@ Description: FFI domain specific language, on top of hsc2hs${haskell:ShortBlurb}
.
This package contains no Haskell code, only C header files designed
for hsc2hs.
+
+Package: libghc-bindings-dsl-dev
+Architecture: any
+Depends: ${haskell:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-bindings-dsl-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-bindings-dsl-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
.
${haskell:Blurb}
diff --git a/p/haskell-bindings-dsl/debian/rules b/p/haskell-bindings-dsl/debian/rules
index 1a351c3..75a18b0 100755
--- a/p/haskell-bindings-dsl/debian/rules
+++ b/p/haskell-bindings-dsl/debian/rules
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
+DEB_CABAL_PACKAGE = bindings-dsl
+DEB_DEFAULT_COMPILER = ghc
+
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
-
-install/libghc-bindings-dsl-dev:: debian/tmp-inst-ghc
- mv debian/tmp-inst-ghc/usr/lib/haskell-packages/ghc/lib/*-ghc-*/bindings-DSL-*/include debian/libghc-bindings-dsl-dev/usr
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git
More information about the Pkg-haskell-commits
mailing list