Update Debian configuration to JMC version 0.3 beta 1

darcs-hash:20080308212804-86b55-332f775f5085342861869ed1afc14212b9b3cb93.gz
This commit is contained in:
David Rousselie
2008-03-08 22:28:04 +01:00
parent 470644bd24
commit d4de07becc
4 changed files with 10 additions and 10 deletions

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
jmc (0.3b1) unstable; urgency=low
* JMC version 0.3 beta 1
-- David Rousselie <dax@happycoders.org> Sat, 08 Mar 2008 22:11:27 +0100
jmc (0.3.20071130) unstable; urgency=low jmc (0.3.20071130) unstable; urgency=low
* Global refactoring (Splitted and now use python-jcl) * Global refactoring (Splitted and now use python-jcl)

9
debian/init.d vendored
View File

@@ -1,13 +1,6 @@
#! /bin/sh #! /bin/sh
# #
# skeleton example file to build /etc/init.d/ scripts. # Jabber Mail Component startup script
# This file should be used to construct scripts for /etc/init.d.
#
# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
# Modified for Debian
# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
#
# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl
# #
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

2
debian/rules vendored
View File

@@ -5,7 +5,7 @@
PACKAGE_NAME=python-jmc PACKAGE_NAME=python-jmc
MODULE_NAME=jmc MODULE_NAME=jmc
DEB_UPSTREAM_VERSION=0.3 DEB_UPSTREAM_VERSION=0.3b1
PYVERS=$(shell pyversions -vr) PYVERS=$(shell pyversions -vr)

View File

@@ -69,7 +69,8 @@ email accounts.""",
test_suite='jmc.tests.suite', test_suite='jmc.tests.suite',
install_requires=["jcl==0.1b1"]) install_requires=["jcl==0.1b1"])
if len(sys.argv) >= 2 and sys.argv[1] == "install": if len(sys.argv) >= 2 and sys.argv[1] == "install" \
and not "--single-version-externally-managed" in sys.argv:
os.makedirs(config_dir) os.makedirs(config_dir)
shutil.copy("conf/jmc.conf", config_dir) shutil.copy("conf/jmc.conf", config_dir)
runner_file = open("src/jmc/runner.py") runner_file = open("src/jmc/runner.py")