allpy
changeset 198:bae30e5037b1
Added rules for building Debian packages.
Also, modified .hgignore to hide all of the debian-generated junk.
The debianisation is still to be tested.
author | Daniil Alexeyevsky <me.dendik@gmail.com> |
---|---|
date | Mon, 22 Nov 2010 13:43:23 +0300 |
parents | 72db5aa461c0 |
children | 3c02ec279a77 |
files | .hgignore debian/changelog debian/compat debian/control.in debian/geometrical-core.install debian/rules |
diffstat | 6 files changed, 52 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- a/.hgignore Mon Nov 22 13:40:51 2010 +0300 1.2 +++ b/.hgignore Mon Nov 22 13:43:23 2010 +0300 1.3 @@ -1,5 +1,24 @@ 1.4 syntax: glob 1.5 + 1.6 +# Compiler-generated junk 1.7 *.pyc 1.8 build 1.9 + 1.10 +# Junk from text-editors 1.11 *.geany 1.12 *.swp 1.13 + 1.14 +# Temporary files from debianization 1.15 +debian/python-allpy/ 1.16 +debian/geometrical-core/ 1.17 +debian/*.substvars 1.18 +debian/*.debhelper* 1.19 +debian/*stamp* 1.20 +debian/files 1.21 +debian/control 1.22 +debian/*.log 1.23 +debian/*/*.log 1.24 +debian/tmp/ 1.25 +debian/pycompat 1.26 +*.deb 1.27 +*.cdbs-config_list
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/debian/changelog Mon Nov 22 13:43:23 2010 +0300 2.3 @@ -0,0 +1,7 @@ 2.4 +allpy (0.0-2) unstable; urgency=medium 2.5 + 2.6 + * Initial debianization. 2.7 + 2.8 + -- Danya Alexeyevsky <dendik@kodomo.fbb.msu.ru> Mon, 15 Nov 2010 17:40:37 +0300 2.9 + 2.10 +vim: set ft=debchangelog et ai:
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/debian/compat Mon Nov 22 13:43:23 2010 +0300 3.3 @@ -0,0 +1,1 @@ 3.4 +7
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/debian/control.in Mon Nov 22 13:43:23 2010 +0300 4.3 @@ -0,0 +1,16 @@ 4.4 +Source: allpy 4.5 +Section: science 4.6 +Priority: optional 4.7 +Maintainer: Danya Alexeyevsky <dendik@kodomo.fbb.msu.ru> 4.8 +Standards-Version: 3.6.1 4.9 +Build-Depends: @cdbs@ 4.10 + 4.11 +Package: python-allpy 4.12 +Architecture: all 4.13 +Depends: python (>> 2.5) 4.14 +Description: Python library for working with alignments 4.15 + 4.16 +Package: geometrical-core 4.17 +Architecture: all 4.18 +Depends: python-allpy 4.19 +Description: Find geometrical core in a multiple alignment
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/debian/geometrical-core.install Mon Nov 22 13:43:23 2010 +0300 5.3 @@ -0,0 +1,1 @@ 5.4 +geometrical_core/geometrical-core usr/bin
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/debian/rules Mon Nov 22 13:43:23 2010 +0300 6.3 @@ -0,0 +1,8 @@ 6.4 +#!/usr/bin/make -f 6.5 +DEB_AUTO_UPDATE_DEBIAN_CONTROL = yes 6.6 +DEB_PYTHON_SYSTEM = pysupport 6.7 +include /usr/share/cdbs/1/rules/debhelper.mk 6.8 +include /usr/share/cdbs/1/class/python-distutils.mk 6.9 + 6.10 +DEB_COMPRESS_EXCLUDE := .py 6.11 +DEB_DESTDIR = debian/python-allpy