diff options
author | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-01-08 04:00:35 +0000 |
---|---|---|
committer | roktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-01-08 04:00:35 +0000 |
commit | 71e508f98a3b8712e1feadce455116e86340bd24 (patch) | |
tree | 27452c4a925c3334747810a50de4448d073cf8dd | |
parent | 65e118ec581d544dca069505860024b67d86b2e3 (diff) | |
download | pandoc-71e508f98a3b8712e1feadce455116e86340bd24.tar.gz |
* Debian packaging changes:
+ Remove the empty 'include' directory in -dev package, which lintian
complains about.
+ Bump Standarts-Version to 3.7.3.
+ Use new 'Homepage:' field to specify the upstream URL on suggestion of
lintian.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1177 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | debian/changelog | 12 | ||||
-rw-r--r-- | debian/control | 9 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 16 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog index 9f24b2510..6a7d6abf0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -183,6 +183,18 @@ pandoc (0.46) unstable; urgency=low See http://www.american.edu/econ/itex2mml/mathhack.rst for the strategy. + [ Recai Oktaş ] + + * Debian packaging changes: + + + Remove the empty 'include' directory in -dev package, which lintian + complains about. + + Bump Standarts-Version to 3.7.3. + + Use new 'Homepage:' field to specify the upstream URL on suggestion of + lintian. + + -- Recai Oktaş <roktas@debian.org> Tue, 08 Jan 2008 05:13:31 +0200 + pandoc (0.45) unstable; urgency=low [ John MacFarlane ] diff --git a/debian/control b/debian/control index f906710e4..1300449a6 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,8 @@ Maintainer: Recai Oktaş <roktas@debian.org> Build-Depends: debhelper (>= 4.0.0), haskell-devscripts (>=0.5.12), ghc6 (>= 6.6-1), libghc6-xhtml-dev, libghc6-mtl-dev, libghc6-network-dev, perl Build-Depends-Indep: haddock Build-Conflicts: ghc6 (>= 6.8), ghc6 (<= 6.4) -Standards-Version: 3.7.2.0 +Standards-Version: 3.7.3 +Homepage: http://johnmacfarlane.net/pandoc/ XS-Vcs-Svn: http://pandoc.googlecode.com/svn/trunk XS-Vcs-Browser: http://pandoc.googlecode.com/svn/trunk @@ -33,8 +34,6 @@ Description: general markup converter representation of the document, and a set of writers, which convert this native representation into a target format. Thus, adding an input or output format requires only adding a reader or writer. - . - Homepage: http://johnmacfarlane.net/pandoc/ Package: libghc6-pandoc-dev Section: libdevel @@ -62,8 +61,6 @@ Description: general markup converter or output format requires only adding a reader or writer. . This package contains the libraries compiled for GHC 6. - . - Homepage: http://johnmacfarlane.net/pandoc/ Package: pandoc-doc Section: doc @@ -89,5 +86,3 @@ Description: general markup converter or output format requires only adding a reader or writer. . This package contains the library documentation for Pandoc. - . - Homepage: http://johnmacfarlane.net/pandoc/ diff --git a/debian/rules b/debian/rules index 8e3dc240f..a9fe650bf 100755 --- a/debian/rules +++ b/debian/rules @@ -63,6 +63,8 @@ install: build dh_haskell -a + # Remove empty directories, which lintian complains about. + find debian/libghc6-$(THIS)-dev -type d -name 'include' -empty -delete # Hack! Cabal builds executables while building libraries. Move these # files to top dir where the Makefile install target expects to find. # See "BUGS" section at the following document: |