diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-04-24 17:38:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-04-24 17:38:17 +0200 |
commit | afb4ade8f48000cfb474612be3fabe88a3b57b21 (patch) | |
tree | e169ce94bd9d874a19c66f65667e032db744a094 | |
parent | 4b2194be94a1ee61c04c23022106aecdad5750d4 (diff) | |
download | Ishtar-afb4ade8f48000cfb474612be3fabe88a3b57b21.tar.bz2 Ishtar-afb4ade8f48000cfb474612be3fabe88a3b57b21.zip |
First work on debian package
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/copyright | 42 | ||||
-rwxr-xr-x | debian/rules | 18 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index e282b5668..d37362e98 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,10 @@ django-formwizard/* xhtml2odt ishtar-docs ishtar-logo +*.ignore +local_settings.py +fabfile.py +example_project/media +example_project/static +docs/build +simple_history diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..a3b0182d8 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ishtar (0.99-1) UNRELEASED; urgency=low + + * Initial release. + + -- Étienne Loks <etienne.loks@peacefrogs.net> Thu, 24 Apr 2014 17:14:29 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 000000000..6297d8604 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,42 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ishtar +Source: git://lysithea.proxience.com/git/ishtar.git + +Files: * +Copyright: 2013 Étienne Loks <etienne.loks@peacefrogs.net> +License: AGPL-3.0+ + +Files: debian/* +Copyright: 2013 Étienne Loks <etienne.loks@peacefrogs.net> +License: GPL-3.0+ + +License: GPL-3.0+ + 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 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + +License: AGPL-3.0 + This program is free software: you can use, redistribute, and/or modify + this code under the terms of the GNU Affero General Public License + version 3. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + . + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..dd12cc51f --- /dev/null +++ b/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PYTHON2=$(shell pyversions -vr) + +# Prevent setuptools/distribute from accessing the internet. +export http_proxy = http://127.0.9.1:9 + +%: + dh $@ --with python2 + +override_dh_auto_clean: + dh_auto_clean + rm -rf build + rm -rf *.egg-info diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |