Codebase list agda / b114c08
add sdl2 Clint Adams 6 years ago
8 changed file(s) with 153 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 haskell-sdl2 (2.4.0.1-1) unstable; urgency=low
1
2 * Initial release.
3
4 -- Clint Adams <clint@debian.org> Sun, 29 Apr 2018 07:49:27 -0400
0 Source: haskell-sdl2
1 Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
2 Uploaders: Clint Adams <clint@debian.org>
3 Priority: optional
4 Section: haskell
5 Build-Depends: debhelper (>= 9),
6 haskell-devscripts (>= 0.8),
7 cdbs,
8 ghc,
9 ghc-prof,
10 libghc-statevar-dev (>= 1.1.0.0),
11 libghc-statevar-dev (<< 1.2),
12 libghc-statevar-prof (>= 1.1.0.0),
13 libghc-statevar-prof (<< 1.2),
14 libghc-exceptions-dev (>= 0.4),
15 libghc-exceptions-dev (<< 0.11),
16 libghc-exceptions-prof (>= 0.4),
17 libghc-exceptions-prof (<< 0.11),
18 libghc-linear-dev (>= 1.10.1.2),
19 libghc-linear-dev (<< 1.21),
20 libghc-linear-prof (>= 1.10.1.2),
21 libghc-linear-prof (<< 1.21),
22 libghc-text-dev (>= 1.1.0.0),
23 libghc-text-dev (<< 1.3),
24 libghc-text-prof (>= 1.1.0.0),
25 libghc-text-prof (<< 1.3),
26 libghc-vector-dev (>= 0.10.9.0),
27 libghc-vector-dev (<< 0.13),
28 libghc-vector-prof (>= 0.10.9.0),
29 libghc-vector-prof (<< 0.13),
30 libsdl2-dev,
31 Build-Depends-Indep: ghc-doc,
32 libghc-statevar-doc,
33 libghc-exceptions-doc,
34 libghc-linear-doc,
35 libghc-text-doc,
36 libghc-vector-doc,
37 Standards-Version: 4.1.4
38 X-Description: high- and low-level bindings to the SDL 2 library
39 This package contains bindings to the SDL 2 library, in both high- and
40 low-level forms:
41 .
42 The SDL namespace contains high-level bindings, where enumerations are split
43 into sum types, and automatic error-checking is performed.
44 .
45 The SDL.Raw namespace contains an almost 1-1 translation of the C API into
46 Haskell FFI calls. As such, this does not contain sum types nor error
47 checking. Thus this namespace is suitable for building your own abstraction
48 over SDL, but is not recommended for day-to-day programming.
49
50 Package: libghc-sdl2-dev
51 Architecture: any
52 Depends: ${haskell:Depends},
53 ${misc:Depends},
54 ${shlibs:Depends},
55 libsdl2-dev,
56 Recommends: ${haskell:Recommends},
57 Suggests: ${haskell:Suggests},
58 Conflicts: ${haskell:Conflicts},
59 Provides: ${haskell:Provides},
60 Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
61 ${haskell:LongDescription}
62 .
63 ${haskell:Blurb}
64
65 Package: libghc-sdl2-prof
66 Architecture: any
67 Depends: ${haskell:Depends},
68 ${misc:Depends},
69 Recommends: ${haskell:Recommends},
70 Suggests: ${haskell:Suggests},
71 Conflicts: ${haskell:Conflicts},
72 Provides: ${haskell:Provides},
73 Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
74 ${haskell:LongDescription}
75 .
76 ${haskell:Blurb}
77
78 Package: libghc-sdl2-doc
79 Architecture: all
80 Section: doc
81 Depends: ${haskell:Depends},
82 ${misc:Depends},
83 Recommends: ${haskell:Recommends},
84 Suggests: ${haskell:Suggests},
85 Conflicts: ${haskell:Conflicts},
86 Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
87 ${haskell:LongDescription}
88 .
89 ${haskell:Blurb}
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: sdl2
2 Upstream-Contact: gabriel@system.is, ollie@ocharles.org.uk
3 Source: https://hackage.haskell.org/package/sdl2
4
5 Files: *
6 Copyright: 2013-2017 Gabríel Arthúr Pétursson
7 License: BSD-3-clause
8
9 Files: src/SDL/Internal/Vect.hs
10 Copyright: 2012-2015 Edward Kmett
11 License: BSD-3-clause
12
13 Files: debian/*
14 Copyright: held by the contributors mentioned in debian/changelog
15 License: BSD-3-clause
16
17 License: BSD-3-clause
18 Redistribution and use in source and binary forms, with or without
19 modification, are permitted provided that the following conditions are met:
20 .
21 * Redistributions of source code must retain the above copyright
22 notice, this list of conditions and the following disclaimer.
23 .
24 * Redistributions in binary form must reproduce the above
25 copyright notice, this list of conditions and the following
26 disclaimer in the documentation and/or other materials provided
27 with the distribution.
28 .
29 * Neither the name of Gabríel Arthúr Pétursson nor the names of other
30 contributors may be used to endorse or promote products derived
31 from this software without specific prior written permission.
32 .
33 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
34 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
35 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
36 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
37 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
38 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
39 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
40 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
41 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
43 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0 ./examples/lazyfoo/*.bmp usr/share/sdl2/examples/lazyfoo
1 ./examples/twinklebear/*.bmp usr/share/sdl2/examples/twinklebear
0 #!/usr/bin/make -f
1
2 DEB_SETUP_BIN_NAME = debian/hlibrary.setup
3 DEB_CABAL_PACKAGE = sdl2
4 DEB_DEFAULT_COMPILER = ghc
5
6 include /usr/share/cdbs/1/rules/debhelper.mk
7 include /usr/share/cdbs/1/class/hlibrary.mk
0 version=3
1 https://hackage.haskell.org/package/sdl2/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))