From: Benjamin Mako Hill Date: Sun, 13 Feb 2011 02:55:42 +0000 (-0500) Subject: created packaging scripts in debian directory X-Git-Url: https://projects.mako.cc/source/mw/commitdiff_plain/e4ca6107fdb72b690cef9e6bacf438c5278d00b7 created packaging scripts in debian directory --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..bb206cf --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +mw (0.1~20110213-1) unstable; urgency=low + + * Initial packaging. + + -- Benjamin Mako Hill Thu, 10 Feb 2011 23:37:14 -0500 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3491349 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: mw +Section: python +Priority: extra +Maintainer: Benjamin Mako Hill +Build-Depends: cdbs, debhelper (>= 7.0.50~), python (>= 2.6), python-support +Standards-Version: 3.9.1 +Homepage: https://github.com/ianweller/mw +XS-Python-Version: >= 2.6 + +Package: mw +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Provides: ${python:Provides} +Description: VCS-like interface to MediaWiki websites + VCS-like interface to MediaWiki websites. Working within an empty + directory, the system lets users initialize a directory, authenticate + against a copy of MediaWiki using the MW API, pull either particular + articles or all articles beloning to a particular category, provide + status information on whether pages have been changed, diff local + versions against remote ones, run a merge tool to help resolve + conflicts, and committe or write changes to the remote version of + MediaWiki. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c162527 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +This work was packaged for Debian by: + + Benjamin Mako Hill on Thu, 10 Feb 2011 23:37:14 -0500 + +It was downloaded from: + + https://github.com/ianweller/mw + +Upstream Author(s): + + Ian Weller + +Copyright: + + Copyright (C) 2011 Ian Weller and others + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + +On Debian systems, the complete text of the GNU General Public License +version 2 can be found in "/usr/share/common-licenses/GPL-2". + +The Debian packaging is: + + Copyright (C) 2011 Benjamin Mako Hill and is + licensed under the GPL version 2 or any later version, see above. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f0a45b3 --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +#include /usr/share/cdbs/1/class/makefile.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +# Add here any variable or target overrides you need.