summaryrefslogtreecommitdiffstats
path: root/commands/logicalfile
diff options
context:
space:
mode:
Diffstat (limited to 'commands/logicalfile')
-rw-r--r--commands/logicalfile/Makefile20
-rw-r--r--commands/logicalfile/doc/conf.py.skel (renamed from commands/logicalfile/doc/conf.py)4
-rw-r--r--commands/logicalfile/setup.py.skel (renamed from commands/logicalfile/setup.py)7
3 files changed, 5 insertions, 26 deletions
diff --git a/commands/logicalfile/Makefile b/commands/logicalfile/Makefile
index 7d0a592..ee4552b 100644
--- a/commands/logicalfile/Makefile
+++ b/commands/logicalfile/Makefile
@@ -1,19 +1 @@
-PYTHONPATH?=$(HOME)/workspace/python_sandbox
-DEVELOPDIR?=$(shell echo $(PYTHONPATH) | cut -d : -f 1)
-
-.PHONY: sdist develop upload_docs clean
-
-all: sdist
-
-sdist:
- python setup.py sdist
-
-develop:
- python setup.py develop --install-dir=$(DEVELOPDIR)
-
-upload_docs:
- make -C doc html
- python setup.py upload_docs
-
-clean:
- make -C doc clean
+include ../../Makefile.inc
diff --git a/commands/logicalfile/doc/conf.py b/commands/logicalfile/doc/conf.py.skel
index 841f14b..eba7932 100644
--- a/commands/logicalfile/doc/conf.py
+++ b/commands/logicalfile/doc/conf.py.skel
@@ -48,9 +48,9 @@ copyright = u'2013-2014, Red Hat, Inc.'
# built documents.
#
# The short X.Y version.
-version = '0.0.3'
+version = "@@VERSION@@"
# The full version, including alpha/beta/rc tags.
-release = '0.0.3'
+release = "@@VERSION@@"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/commands/logicalfile/setup.py b/commands/logicalfile/setup.py.skel
index f3f32c8..466c6af 100644
--- a/commands/logicalfile/setup.py
+++ b/commands/logicalfile/setup.py.skel
@@ -1,8 +1,5 @@
#!/usr/bin/env python
-PROJECT = 'openlmi-scripts-logicalfile'
-VERSION = '0.0.3'
-
from setuptools import setup, find_packages
try:
@@ -11,8 +8,8 @@ except IOError:
long_description = ''
setup(
- name=PROJECT,
- version=VERSION,
+ name='openlmi-scripts-logicalfile',
+ version='@@VERSION@@',
description='LMI command for system logical file administration.',
long_description=long_description,
author='Jan Synacek',