Merge "git remove old non-working packaging files"
This commit is contained in:
commit
28bcd6a532
17
.bzrignore
17
.bzrignore
@ -1,17 +0,0 @@
|
||||
*.pyc
|
||||
quantum.egg-info
|
||||
quantum_tests.sqlite
|
||||
quantum.sqlite
|
||||
*.quantum-venv
|
||||
neutron.egg-info
|
||||
neutron_tests.sqlite
|
||||
neutron.sqlite
|
||||
*.neutron-venv
|
||||
.venv
|
||||
dist/
|
||||
ChangeLog
|
||||
*.pid
|
||||
*.log
|
||||
neutron/vcsversion.py
|
||||
quantum/vcsversion.py
|
||||
.ropeproject
|
@ -1,22 +0,0 @@
|
||||
#!/bin/bash
|
||||
ALIEN=`which alien`
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "You must have alien installed to build debian packages"
|
||||
exit 1
|
||||
fi
|
||||
FAKEROOT=""
|
||||
if [ `id -u` != 0 ]; then
|
||||
FAKEROOT=`which fakeroot`
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "You must be root or have fakeroot installed to build debian packages"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
ls dist/*.rpm >/dev/null 2>&1
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "You must build rpms before building debian packages"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$FAKEROOT $ALIEN -c -v -d dist/*.noarch.rpm
|
Loading…
Reference in New Issue
Block a user