version 3.2.3 nepi-3.2.3-pypi
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 5 Jun 2015 14:08:48 +0000 (16:08 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 5 Jun 2015 14:08:48 +0000 (16:08 +0200)
'make pypi' sets the git tag

Makefile
VERSION

index 100dcdb..a89ea3a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -72,14 +72,20 @@ PYPI_TARGET=pypi
 PYPI_TARBALL_HOST=root@build.onelab.eu
 PYPI_TARBALL_TOPDIR=/build/nepi
 
-VERSIONTAG=$(shell cat VERSION)
+VERSION=$(shell cat VERSION)
+VERSIONTAG=nepi-$(VERSION)-pypi
+ALREADY_SET=$(shell git tag | grep '^$(VERSIONTAG)$$')
 
 # run this only once the sources are in on the right tag
-pypi: 
+pypi:
+       @echo "Have you committed all changes (type Ctrl-c if not) ? " ; read _
+       @if [ -n "$(ALREADY_SET)" ] ; then echo "tag $(VERSIONTAG) already set"; false; fi
+       @echo "You are about to release $(VERSION) - OK (Ctrl-c if not) ? " ; read _
+       git tag $(VERSIONTAG)
        setup.py sdist upload -r pypi
-       @if [ ssh $(PYPI_TARBALL_HOST) ls $(PYPI_TARBALL_TOPDIR)/nepi-$(VERSIONTAG).tar.gz ] ;\
-         then echo "nepi-$(VERSIONTAG).tar.gz already present on $(PYPI_TARBALL_HOST) - ignored" ;\
-         else rsync -av dist/nepi-$(VERSIONTAG).tar.gz $(PYPI_TARBALL_HOST):$(PYPI_TARBALL_TOPDIR)/ ;\
+       @if [ ssh $(PYPI_TARBALL_HOST) ls $(PYPI_TARBALL_TOPDIR)/nepi-$(VERSION).tar.gz ] ;\
+         then echo "nepi-$(VERSION).tar.gz already present on $(PYPI_TARBALL_HOST) - ignored" ;\
+         else rsync -av dist/nepi-$(VERSION).tar.gz $(PYPI_TARBALL_HOST):$(PYPI_TARBALL_TOPDIR)/ ;\
          fi
 
 
diff --git a/VERSION b/VERSION
index be94e6f..b347b11 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.2.2
+3.2.3