Skip to content
Snippets Groups Projects
Commit 781b96f5 authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

Global: reverted retrieval of version info, set to 1.0.9

parent 7e2605e9
No related branches found
Tags mkexp-1.0.9
No related merge requests found
doc/mkexp.fodt
package_info.py
*.pyc
......@@ -6,6 +6,16 @@ Make Experiments!
Release Changes
---------------
Release 1.0.9
=============
Global
------
* Reverted retrieval of version info from version control system.
Avoids two-step setting of the tag and enables use as external.
Also avoids additional 'make' step
Release 1.0.8
=============
......
program = mkexp
package = $(shell git describe --always --tags `git log -n1 --format=%H`)
version = $(package:$(program)-%=%)
prefix = /usr/local
PACKAGE_INFO = package_info.py
all: $(PACKAGE_INFO)
package:
@echo $(package)
all:
clean:
$(RM) -r build dist MANIFEST *.pyc
distclean: clean
$(RM) $(PACKAGE_INFO) doc/*.fodt doc/*.pdf
$(RM) doc/*.pdf
doc: doc/mkexp.pdf
......@@ -29,18 +19,7 @@ dist: doc
install: doc
python setup.py install --prefix=$(prefix)
check dist install: all
$(PACKAGE_INFO): FORCE
%: %.in
sed \
-e 's,@version@,$(version),g' \
$< > $@
.PHONY: all clean distclean doc check dist install package
.PHONY: all clean distclean doc check dist install
%.pdf: %.fodt
soffice --headless --convert-to pdf --outdir $(@D) $<
FORCE:
Source diff could not be displayed: it is too large. Options to address this: view the blob.
No preview for this file type
......@@ -4,4 +4,4 @@ Information on package name and version
full_name = 'Make Experiments!'
name = 'mkexp'
version = '@version@'
version = '1.0.9'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment