Remove Debian bits and let the debian package take care of it.

Change-Id: I33424eea5077e66787930127079c580b568f81e2
This commit is contained in:
Chuck Short 2011-11-09 12:52:57 -05:00
parent 2532d25c08
commit 3e8413be30
8 changed files with 0 additions and 65 deletions

View File

@ -1,6 +1,5 @@
PYTHON=`which python`
DESTDIR=/
BUILDIR=$(CURDIR)/debian/horizon
PROJECT=horizon
all:
@ -9,7 +8,6 @@ all:
@echo "make source - Create source package"
@echo "make install - Install on local system"
@echo "make buildrpm - Generate a rpm package"
@echo "make builddeb - Generate a deb package"
@echo "make clean - Get rid of scratch and byte files"
buildout: ./bin/buildout
@ -27,17 +25,7 @@ install:
buildrpm:
$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
builddeb:
# build the source package in the parent directory
# then rename it to project_version.orig.tar.gz
$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
# build the package
#dpkg-buildpackage -i -I -rfakeroot
dpkg-buildpackage -b -rfakeroot -tc -uc -D
clean:
$(PYTHON) setup.py clean
$(MAKE) -f $(CURDIR)/debian/rules clean
rm -rf build/ MANIFEST
find . -name '*.pyc' -delete

View File

@ -1,6 +1,5 @@
PYTHON=`which python`
DESTDIR=/
BUILDIR=$(CURDIR)/debian/openstack-dashboard
PROJECT=openstack-dashboard
all:
@ -9,7 +8,6 @@ all:
@echo "make source - Create source package"
@echo "make install - Install on local system"
@echo "make buildrpm - Generate a rpm package"
@echo "make builddeb - Generate a deb package"
@echo "make clean - Get rid of scratch and byte files"
buildout: ./bin/buildout
@ -27,15 +25,6 @@ install:
buildrpm:
$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
builddeb:
# build the source package in the parent directory
# then rename it to project_version.orig.tar.gz
$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
# build the package
#dpkg-buildpackage -i -I -rfakeroot
dpkg-buildpackage -b -rfakeroot -tc -uc -D
clean:
$(PYTHON) setup.py clean
$(MAKE) -f $(CURDIR)/debian/rules clean

View File

@ -1,5 +0,0 @@
openstack-dashboard (0.2.0) UNRELEASED; urgency=low
* Initial release. (Closes: #XXXXXX)
-- anthony <sleepsonthefloor@gmail.com> Mon, 20 Jun 2011 20:29:57 +0000

View File

@ -1 +0,0 @@
7

View File

@ -1,17 +0,0 @@
Source: openstack-dashboard
Section: python
Priority: optional
Maintainer: Anthony Young (sleepsonthefloor)
Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49), python-all-dev
XS-Python-Version: >=2.5
Standards-Version: 3.9.1
Package: openstack-dashboard
Architecture: all
Homepage: https://github.com/4P/openstack-dashboard
XB-Python-Version: ${python:Versions}
Depends: ${misc:Depends}, ${python:Depends}
Description: Dashboard for Openstack
Here you should put a long description your package. This line *MUST* (this is
for default printing) begin with a single space.
Look for more information about this.

View File

@ -1,12 +0,0 @@
#!/usr/bin/make -f
# -*- makefile -*-
DEB_PYTHON_SYSTEM := pysupport
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
clean::
rm -rf build build-stamp configure-stamp build/ MANIFEST
dh_clean

View File

@ -26,13 +26,6 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dst = 'debian/openstack-dashboard/var/lib/dash'
os.system('rm -rf %s' % dst)
shutil.copytree('tools', '%s/tools' % dst)
shutil.copytree('dashboard', '%s/dashboard' % dst)
shutil.copytree('local', '%s/local' % dst)
setuptools.setup(
name = 'openstack-dashboard',
version = '0.4',