diff options
| author | Joachim Breitner <mail@joachim-breitner.de> | 2013-05-18 00:03:05 +0400 |
|---|---|---|
| committer | Joachim Breitner <mail@joachim-breitner.de> | 2013-05-18 00:03:05 +0400 |
| commit | bf65c52dc0fb2aefce66526f2377bd6bf1210762 (patch) | |
| tree | 4a39386b2b99837b7793ce615c3de73e192343ac /p/haskell-gloss | |
| parent | a4660abf22c9f3fc53caf9240490026703daa1fb (diff) | |
| download | DHG_packages-bf65c52dc0fb2aefce66526f2377bd6bf1210762.tar.gz | |
haskell-gloss: Intial check-in
Diffstat (limited to 'p/haskell-gloss')
| -rw-r--r-- | p/haskell-gloss/debian/changelog | 5 | ||||
| -rw-r--r-- | p/haskell-gloss/debian/compat | 1 | ||||
| -rw-r--r-- | p/haskell-gloss/debian/control | 68 | ||||
| -rw-r--r-- | p/haskell-gloss/debian/copyright | 25 | ||||
| -rwxr-xr-x | p/haskell-gloss/debian/rules | 4 | ||||
| -rw-r--r-- | p/haskell-gloss/debian/source/format | 1 | ||||
| -rw-r--r-- | p/haskell-gloss/debian/watch | 5 |
7 files changed, 109 insertions, 0 deletions
diff --git a/p/haskell-gloss/debian/changelog b/p/haskell-gloss/debian/changelog new file mode 100644 index 000000000..4d74784d3 --- /dev/null +++ b/p/haskell-gloss/debian/changelog @@ -0,0 +1,5 @@ +haskell-gloss (1.7.8.2-1) UNRELEASED; urgency=low + + * Initial release. + + -- Joachim Breitner <nomeata@debian.org> Thu, 01 Jan 1970 00:00:00 +0000 diff --git a/p/haskell-gloss/debian/compat b/p/haskell-gloss/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/p/haskell-gloss/debian/compat @@ -0,0 +1 @@ +7 diff --git a/p/haskell-gloss/debian/control b/p/haskell-gloss/debian/control new file mode 100644 index 000000000..8fbf50170 --- /dev/null +++ b/p/haskell-gloss/debian/control @@ -0,0 +1,68 @@ +Source: haskell-gloss +Section: haskell +Priority: extra +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Joachim Breitner <nomeata@debian.org> +Build-Depends: debhelper (>= 7) + , cdbs + , haskell-devscripts (>= 0.8.15) + , ghc + , ghc-prof + , libghc-opengl-dev (>= 2.6) + , libghc-opengl-dev (<< 2.7) + , libghc-opengl-prof + , libghc-glut-dev (>= 2.3) + , libghc-glut-dev (<< 2.4) + , libghc-glut-prof + , libghc-bmp-dev (>= 1.2) + , libghc-bmp-dev (<< 1.3) + , libghc-bmp-prof +Build-Depends-Indep: ghc-doc + , libghc-opengl-doc + , libghc-glut-doc + , libghc-bmp-doc +Standards-Version: 3.9.2 +Homepage: http://hackage.haskell.org/package/gloss +Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-gloss +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-gloss +X-Description: Painless 2D vector graphics, animations and simulations. + Gloss hides the pain of drawing simple vector graphics behind a nice data type + and a few display functions. Gloss comes for with support for animations and + simulations as well, and allows to create simple interactive games. Gloss + uses OpenGL under the hood, but you won't need to worry about any of that. + +Package: libghc-gloss-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-gloss-prof +Architecture: any +Depends: ${haskell:Depends} + , ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Provides: ${haskell:Provides} +Description: ${haskell:ShortDescription}${haskell:ShortBlurb} + ${haskell:LongDescription} + . + ${haskell:Blurb} + +Package: libghc-gloss-doc +Section: doc +Architecture: all +Depends: ${misc:Depends}, ${haskell:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Description: ${haskell:ShortDescription}${haskell:ShortBlurb} + ${haskell:LongDescription} + . + ${haskell:Blurb} diff --git a/p/haskell-gloss/debian/copyright b/p/haskell-gloss/debian/copyright new file mode 100644 index 000000000..90e3967b4 --- /dev/null +++ b/p/haskell-gloss/debian/copyright @@ -0,0 +1,25 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: gloss +Upstream-Contact: Ben Lippmeier <benl@ouroborus.net> +Source: http://hackage.haskell.org/package/gloss + +Files: * +Copyright: 2010-2012 Benjamin Lippmeier +License: MIT/X11 + +Files: debian/* +Copyright: 2013 Joachim Breitner +License: MIT/X11 + +License: MIT/X11 + 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 + condition: + . + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. diff --git a/p/haskell-gloss/debian/rules b/p/haskell-gloss/debian/rules new file mode 100755 index 000000000..683e77bcf --- /dev/null +++ b/p/haskell-gloss/debian/rules @@ -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 --git a/p/haskell-gloss/debian/source/format b/p/haskell-gloss/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-gloss/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-gloss/debian/watch b/p/haskell-gloss/debian/watch new file mode 100644 index 000000000..035c26dd3 --- /dev/null +++ b/p/haskell-gloss/debian/watch @@ -0,0 +1,5 @@ +version=3 +opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\ +filenamemangle=s|(.*)/$|gloss-$1.tar.gz|" \ + http://hackage.haskell.org/packages/archive/gloss \ + ([\d\.]*\d)/ |
