Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jmc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rousselie <dax@happycoders.org>2008-03-09 00:28:04 +0300
committerDavid Rousselie <dax@happycoders.org>2008-03-09 00:28:04 +0300
commitd4de07becce14ee882c1929620ada21ce04d916d (patch)
treeaeead7857e05f76f21c18d49a2c0da1c029a5874
parent470644bd24755722c3ac5722ba12b1ed508a28ff (diff)
Update Debian configuration to JMC version 0.3 beta 1
darcs-hash:20080308212804-86b55-332f775f5085342861869ed1afc14212b9b3cb93.gz
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/init.d9
-rwxr-xr-xdebian/rules2
-rw-r--r--setup.py3
4 files changed, 10 insertions, 10 deletions
diff --git a/debian/changelog b/debian/changelog
index e4935c7..c394a3e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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
* Global refactoring (Splitted and now use python-jcl)
diff --git a/debian/init.d b/debian/init.d
index 9d62b38..70a32e3 100755
--- a/debian/init.d
+++ b/debian/init.d
@@ -1,13 +1,6 @@
#! /bin/sh
#
-# skeleton example file to build /etc/init.d/ scripts.
-# 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
+# Jabber Mail Component startup script
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
diff --git a/debian/rules b/debian/rules
index 7b0b3d7..2a31bc1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,7 +5,7 @@
PACKAGE_NAME=python-jmc
MODULE_NAME=jmc
-DEB_UPSTREAM_VERSION=0.3
+DEB_UPSTREAM_VERSION=0.3b1
PYVERS=$(shell pyversions -vr)
diff --git a/setup.py b/setup.py
index 4de4341..6d42c8f 100644
--- a/setup.py
+++ b/setup.py
@@ -69,7 +69,8 @@ email accounts.""",
test_suite='jmc.tests.suite',
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)
shutil.copy("conf/jmc.conf", config_dir)
runner_file = open("src/jmc/runner.py")