Commit 886cacd2 authored by Aggelos Avgerinos's avatar Aggelos Avgerinos
Browse files

haskell-iwlib: initial packaging draft

parent 9ec12aca
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-iwlib (0.1.0-1) UNRELEASED; urgency=low

  * Initial release (Closes: #893137)

 -- Aggelos Avgerinos <evaggelos.avgerinos@gmail.com>  Mon, 11 Jun 2018 22:43:59 +0300
+1 −0
Original line number Diff line number Diff line
10
+48 −0
Original line number Diff line number Diff line
Source: haskell-iwlib
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders:
 Aggelos Avgerinos <evaggelos.avgerinos@gmail.com>,
Priority: optional
Build-Depends: debhelper (>= 10),
               haskell-devscripts (>= 0.13),
               cdbs,
               ghc (>= 8),
               ghc-prof,
               libiw-dev,
Build-Depends-indep: ghc-doc
Standards-Version: 4.1.4
Section: haskell
Homepage: https://github.com/jaor/iwlib
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-iwlib
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-iwlib]
X-Description: binding to the iw library
 This package provides a thin wrapper over the iw C library,
 providing access to wireless card information in supported systems.

Package: libghc-iw-dev
Architecture: any
Depends: libiw-dev, ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
Recommends: ${haskell:Recommends}
Suggests: ${haskell:Suggests}
Provides: ${haskell:Provides}
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}

Package: libghc-iw-prof
Architecture: any
Depends: libiw-dev, ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
Recommends: ${haskell:Recommends}
Suggests: ${haskell:Suggests}
Provides: ${haskell:Provides}
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}

Package: libghc-iw-doc
Architecture: all
Section: doc
Depends: libiw-dev, ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
Recommends: ${haskell:Recommends}
Suggests: ${haskell:Suggests}
Provides: ${haskell:Provides}
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
+36 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libghc-iw-dev
Source: https://github.com/jaor/iwlib

Files: *
Copyright: 2018, Jose A. Ortega Ruiz <jao@gnu.org>
License: BSD-3-Clause

Files: debian/*
Copyright: 2018 Aggelos Avgerinos <evaggelos.avgerinos@gmail.com>
License: BSD-3-Clause

License: BSD-3-Clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE HOLDERS OR
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+8 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

DEB_CABAL_PACKAGE = iw

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading