Skip to content

Commit 765b22b

Browse files
author
Paul Bonser
committed
Fix up Makefiles to work with git and reorganization changes
1 parent 7c3658b commit 765b22b

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

Makefile

+11-13
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
# from the subversion repository.
33

44
# use something like "VERSION=0.2 make" to override the VERSION on the command line
5-
VERSION ?= $(shell sed -n "s/^.*[\t ]*VERSION[\t ]*=[\t ]*[\"']\([^\"']*\)[\"'].*/\1/gp" src/pycam/__init__.py)
6-
SVN_REPO_BASE ?= $(shell svn info --xml 2>/dev/null | grep "^<url>" | cut -f 2 -d ">" | cut -f 1 -d "<")
7-
SVK_REPO_BASE ?= $(shell LANG= svk info 2>/dev/null| grep "^Depot Path:" | cut -f 3- -d " ")
5+
VERSION ?= $(shell sed -n "s/^.*[\t ]*VERSION[\t ]*=[\t ]*[\"']\([^\"']*\)[\"'].*/\1/gp" pycam/__init__.py)
86
REPO_TAGS ?= https://pycam.svn.sourceforge.net/svnroot/pycam/tags
97
RELEASE_PREFIX ?= pycam-
108
ARCHIVE_DIR_RELATIVE ?= release-archives
@@ -21,7 +19,7 @@ DISTUTILS_PLAT_NAME = $(shell $(PYTHON_EXE) setup.py --help build_ext | grep -q
2119
# turn the destination directory into an absolute path
2220
ARCHIVE_DIR := $(shell pwd)/$(ARCHIVE_DIR_RELATIVE)
2321

24-
.PHONY: zip tgz win32 clean dist svn_export upload create_archive_dir man
22+
.PHONY: zip tgz win32 clean dist git_export upload create_archive_dir man
2523

2624
dist: zip tgz win32
2725
@# remove the tmp directory when everything is done
@@ -30,27 +28,27 @@ dist: zip tgz win32
3028
clean:
3129
@rm -rf "$(EXPORT_DIR)"
3230

33-
man: svn_export
31+
man: git_export
3432
@make -C "$(EXPORT_DIR)/man"
3533

36-
svn_export: clean
37-
@if svn info 2>/dev/null >&2;\
38-
then svn export --quiet "$(SVN_REPO_BASE)" "$(EXPORT_DIR)";\
39-
else svk co "$(SVK_REPO_BASE)" "$(EXPORT_DIR)";\
34+
git_export: clean
35+
@if git status 2>/dev/null >&2;\
36+
then git clone . "$(EXPORT_DIR)";\
37+
else echo "No git repo found."; exit 1;\
4038
fi
4139
# Windows needs a different name for the startup script - due to process creation (no fork/exec)
42-
@cp "$(EXPORT_DIR)/pycam" "$(EXPORT_DIR)/pycam-loader.py"
40+
@cp "$(EXPORT_DIR)/scripts/pycam" "$(EXPORT_DIR)/scripts/pycam-loader.py"
4341

4442
create_archive_dir:
4543
@mkdir -p "$(ARCHIVE_DIR)"
4644

47-
zip: create_archive_dir man svn_export
45+
zip: create_archive_dir man git_export
4846
cd "$(EXPORT_DIR)"; $(PYTHON_EXE) setup.py sdist --format zip --dist-dir "$(ARCHIVE_DIR)"
4947

50-
tgz: create_archive_dir man svn_export
48+
tgz: create_archive_dir man git_export
5149
cd "$(EXPORT_DIR)"; $(PYTHON_EXE) setup.py sdist --format gztar --dist-dir "$(ARCHIVE_DIR)"
5250

53-
win32: create_archive_dir man svn_export
51+
win32: create_archive_dir man git_export
5452
# this is a binary release
5553
cd "$(EXPORT_DIR)"; $(PYTHON_EXE) setup.py bdist_wininst --user-access-control force --dist-dir "$(ARCHIVE_DIR)" $(DISTUTILS_PLAT_NAME)
5654

man/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pycam.1: ../pycam pycam.1.inc
44
help2man --no-info --name="Toolpath Generation for 3-Axis CNC machining" \
5-
--section=1 --manual="PyCAM manual" --include=pycam.1.inc --output=pycam.1 ../pycam
5+
--section=1 --manual="PyCAM manual" --include=pycam.1.inc --output=pycam.1 ../scripts/pycam
66

77
clean:
88
@rm -f pycam.1

0 commit comments

Comments
 (0)