Browse Source

Merge pull request #116 from yuvipanda/debian

Add debian packaging
tags/v0.4.3
Ben Kurtovic 8 years ago
parent
commit
c1ac4c7697
5 changed files with 49 additions and 0 deletions
  1. +5
    -0
      debian/changelog
  2. +1
    -0
      debian/compat
  3. +13
    -0
      debian/control
  4. +26
    -0
      debian/copyright
  5. +4
    -0
      debian/rules

+ 5
- 0
debian/changelog View File

@@ -0,0 +1,5 @@
python3-mwparserfromhell (0.4.2) UNRELEASED; urgency=medium

* Initial version of the package

-- yuvipanda <yuvipanda@riseup.net> Fri, 07 Aug 2015 18:16:37 -0700

+ 1
- 0
debian/compat View File

@@ -0,0 +1 @@
9

+ 13
- 0
debian/control View File

@@ -0,0 +1,13 @@
Source: python3-mwparserfromhell
Maintainer: Ben Kurtovic <ben.kurtovic@gmail.com>
Section: python
Priority: optional
Build-Depends: python3-setuptools, python3-all, debhelper (>= 9)
Standards-Version: 3.9.6

Package: python3-mwparserfromhell
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: **mwparserfromhell** (the *MediaWiki Parser from Hell*) is a Python package
that provides an easy-to-use and outrageously powerful parser for MediaWiki_
wikicode.

+ 26
- 0
debian/copyright View File

@@ -0,0 +1,26 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: mwparserfromhell

Files: *
Copyright: 2012-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
License: MIT

License: MIT
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 conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 4
- 0
debian/rules View File

@@ -0,0 +1,4 @@
#!/usr/bin/make -f

%:
dh $@ --with python3 --buildsystem=pybuild

Loading…
Cancel
Save