Rename ceo-gui to ceo-python

This commit is contained in:
Michael Spang 2009-09-09 07:04:49 -04:00
parent db6b95a7cf
commit 47a2e5e689
5 changed files with 16 additions and 4 deletions

2
debian/.gitignore vendored
View File

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

6
debian/control vendored
View File

@ -11,8 +11,10 @@ Description: Computer Science Club Common Files
This package contains the CSC Electronic Office This package contains the CSC Electronic Office
common files. common files.
Package: ceo-gui Package: ceo-python
Architecture: all 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} 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 Description: Computer Science Club Administrative GUI
This package contains the CSC Electronic Office This package contains the CSC Electronic Office
@ -27,7 +29,7 @@ Description: Computer Science Club Administrative Clients
Package: ceo-daemon Package: ceo-daemon
Architecture: any Architecture: any
Depends: ceo-common, ${shlibs:Depends} Depends: ceo-python, ${shlibs:Depends}
Description: Computer Science Club Administrative Daemon Description: Computer Science Club Administrative Daemon
This package contains the CSC Electronic Office This package contains the CSC Electronic Office
daemon. daemon.

2
debian/rules vendored
View File

@ -18,7 +18,7 @@ install: build
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_installdirs 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-clients PREFIX=/usr install_clients
$(MAKE) -C src DESTDIR=$(CURDIR)/debian/ceo-daemon PREFIX=/usr install_daemon $(MAKE) -C src DESTDIR=$(CURDIR)/debian/ceo-daemon PREFIX=/usr install_daemon

10
setupd.py Executable file
View File

@ -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'],
)