Skip to content

Commit

Permalink
Fix silly class bug - add version update to makefile tools
Browse files Browse the repository at this point in the history
  • Loading branch information
imcleod committed Jun 30, 2011
1 parent 0c5d36c commit 24499d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Makefile
@@ -1,14 +1,18 @@
version:
git describe > version.txt
perl -p -i -e 's/-/_/g' version.txt

sdist:
python setup.py sdist

signed-rpm: sdist
rpmbuild -ba imagefactory.spec --sign --define "_sourcedir `pwd`/dist"
signed-rpm: sdist version
rpmbuild -ba imagefactory.spec --sign --define "_sourcedir `pwd`/dist"i

rpm: sdist
rpm: sdist version
rpmbuild -ba imagefactory.spec --define "_sourcedir `pwd`/dist"

srpm: sdist
srpm: sdist version
rpmbuild -bs imagefactory.spec --define "_sourcedir `pwd`/dist"

clean:
rm -rf MANIFEST build dist imagefactory.spec
rm -rf MANIFEST build dist imagefactory.spec version.txt
1 change: 1 addition & 0 deletions imagefactory/builders/RHEL5Builder.py
@@ -1 +1,2 @@
class RHEL5Builder(FedoraBuilder.FedoraBuilder):
pass
1 change: 1 addition & 0 deletions imagefactory/builders/RHEL6Builder.py
@@ -1 +1,2 @@
class RHEL6Builder(FedoraBuilder.FedoraBuilder):
pass

0 comments on commit 24499d3

Please sign in to comment.