Rename ceo-gui to ceo-python

pull/5/head
Michael Spang 14 years ago
parent db6b95a7cf
commit 47a2e5e689
  1. 2
      debian/.gitignore
  2. 0
      debian/ceo-python.manpages
  3. 6
      debian/control
  4. 2
      debian/rules
  5. 10
      setupd.py

2
debian/.gitignore vendored

@ -2,7 +2,7 @@
/ceo-common
/ceo-clients
/ceo-daemon
/ceo-gui
/ceo-python
/files
/*.debhelper
/*.debhelper.log

6
debian/control vendored

@ -11,8 +11,10 @@ Description: Computer Science Club Common Files
This package contains the CSC Electronic Office
common files.
Package: ceo-gui
Package: ceo-python
Architecture: all
Replaces: ceo-gui
Conflicts: ceo-gui
Depends: ceo-clients, python-ldap, python-urwid, python-sqlobject, python-protobuf, python-psycopg | python-psycopg2, ${python:Depends}, ${shlibs:Depends}
Description: Computer Science Club Administrative GUI
This package contains the CSC Electronic Office
@ -27,7 +29,7 @@ Description: Computer Science Club Administrative Clients
Package: ceo-daemon
Architecture: any
Depends: ceo-common, ${shlibs:Depends}
Depends: ceo-python, ${shlibs:Depends}
Description: Computer Science Club Administrative Daemon
This package contains the CSC Electronic Office
daemon.

2
debian/rules vendored

@ -18,7 +18,7 @@ install: build
dh_testdir
dh_testroot
dh_installdirs
python setup.py -q install --no-compile -O0 --prefix=/usr --root=debian/ceo-gui
python setup.py -q install --no-compile -O0 --prefix=/usr --root=debian/ceo-python
$(MAKE) -C src DESTDIR=$(CURDIR)/debian/ceo-clients PREFIX=/usr install_clients
$(MAKE) -C src DESTDIR=$(CURDIR)/debian/ceo-daemon PREFIX=/usr install_daemon

@ -0,0 +1,10 @@
#!/usr/bin/env python
from distutils.core import setup
setup(
name='ceod',
description='CSC Electronic Office Daemon',
scripts=['src/op-mysql'],
)
Loading…
Cancel
Save