diff options
Diffstat (limited to 'ipa-python')
-rw-r--r-- | ipa-python/Makefile | 3 | ||||
-rwxr-xr-x | ipa-python/ipa-python.spec.in | 4 | ||||
-rw-r--r-- | ipa-python/setup.py.in | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/ipa-python/Makefile b/ipa-python/Makefile index 13160457..4ac027e1 100644 --- a/ipa-python/Makefile +++ b/ipa-python/Makefile @@ -13,9 +13,10 @@ install: fi clean: - rm -f *~ *.pyc setup.py ipa-python.spec version.py + rm -f *~ *.pyc distclean: clean + rm -f setup.py ipa-python.spec version.py maintainer-clean: distclean rm -rf build diff --git a/ipa-python/ipa-python.spec.in b/ipa-python/ipa-python.spec.in index 77446495..a41a413e 100755 --- a/ipa-python/ipa-python.spec.in +++ b/ipa-python/ipa-python.spec.in @@ -1,6 +1,6 @@ Name: ipa-python -Version: VERSION -Release: 1%{?dist} +Version: __VERSION__ +Release: __RELEASE__%{?dist} Summary: IPA authentication server Group: System Environment/Base diff --git a/ipa-python/setup.py.in b/ipa-python/setup.py.in index a48b8e69..19940f38 100644 --- a/ipa-python/setup.py.in +++ b/ipa-python/setup.py.in @@ -52,7 +52,7 @@ def setup_package(): try: setup( name = "ipa", - version = "0.6.0", + version = "__VERSION__", license = "GPL", author = "Karl MacMillan, et.al.", author_email = "kmacmill@redhat.com", |