Browse Source

Add python2 package as well

pull/117/head
YuviPanda 8 years ago
parent
commit
0cbac02d41
3 changed files with 15 additions and 4 deletions
  1. +1
    -1
      debian/changelog
  2. +13
    -2
      debian/control
  3. +1
    -1
      debian/rules

+ 1
- 1
debian/changelog View File

@@ -1,4 +1,4 @@
python3-mwparserfromhell (0.4.2) UNRELEASED; urgency=medium
python-mwparserfromhell (0.4.2) UNRELEASED; urgency=medium

* Initial version of the package



+ 13
- 2
debian/control View File

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

Package: python3-mwparserfromhell
@@ -11,3 +11,14 @@ 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.
.
This is the Python 3 version.

Package: python-mwparserfromhell
Architecture: all
Depends: ${misc:Depends}, ${python: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.
.
This is the Python 2 version

+ 1
- 1
debian/rules View File

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

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

Loading…
Cancel
Save