1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright (C) 2012 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
include buildout.mk
TEST_COMMAND=$(PY) -m testtools.run discover libdep_service_client
PROJECT_NAME=libdep-service-python
VERSION_FILE=libdep_service_client/__init__.py
NEWS_FILE=NEWS
LP_PROJECT=libdep-service-python
VERSION=$(shell grep "^__version__ " "$(VERSION_FILE)" | sed -e "s/.*=\s*'\([^']\+\)'.*/\1/")
release:
@echo Releasing version $(VERSION)
@(bzr tags | grep -vq "^$(VERSION)\s") || (echo "Tag already exists for $(VERSION), remove it and run again" && exit 1)
@grep -q "^$(VERSION)\s" "$(NEWS_FILE)" || (echo "No entry for $(VERSION) in NEWS" && exit 1)
python setup.py sdist upload --sign
bzr tag "$(VERSION)"
bzr push lp:$(LP_PROJECT)
cp "dist/$(PROJECT_NAME)-$(VERSION).tar.gz" $(CA_DOWNLOAD_CACHE_DIR)/dist
bzr add "$(CA_DOWNLOAD_CACHE_DIR)/dist/$(PROJECT_NAME)-$(VERSION).tar.gz"
bzr ci "$(CA_DOWNLOAD_CACHE_DIR)/dist/$(PROJECT_NAME)-$(VERSION).tar.gz" -m "Add $(PROJECT_NAME) $(VERSION)."
.PHONY: release
|