Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 603 → Rev 604

/relevation/branches/1.3/GNUmakefile
28,17 → 28,18
 
all: $(PKG).1
@echo
@echo "############################################"
@echo "########################################################"
@echo "# TARGETS:"
@echo "# install"
@echo "# uninstall"
@echo "# zip (-> $(PKGVER).zip)"
@echo "# tarball (-> $(PKGVER).tar.gz)"
@echo "# dist (-> tarball + zip)"
@echo "# zip (-> $(PKGVER).zip)"
@echo "# tarball (-> $(PKGVER).tar.gz)"
@echo "# dist (-> tarball + zip)"
@echo "# clean"
@echo "# distclean"
@echo "# testman Displays compiled manpage"
@echo "############################################"
@echo "# testman Displays compiled manpage"
@echo "# test_min_python Find min. Python version required"
@echo "########################################################"
@echo
 
testman:
55,6 → 56,9
@echo PYTHONROOT=$(PYTHONROOT)
@echo INSTALL_LAYOUT=$(INSTALL_LAYOUT)
 
test_min_python: pyqver2.py
python pyqver2.py -v -m 2.4 src/$(PKG).py src/$(PKG)/*.py
 
install: setup.py
$(DUSETUP) install --prefix=$(DESTDIR)$(prefix) $(INSTALL_LAYOUT)
 
76,7 → 80,7
 
distclean: clean
-$(RM) $(PKGVER).tar.gz $(PKGVER).zip
-$(RM) -r dist build $(PKGVER)/
-$(RM) -r dist build $(PKGVER)/ pyqver2.py
 
dist: tarball zip
-$(RM) -r $(PKGVER)
124,6 → 128,9
@cat "$<" | sed -e 's/@VERSION@/$(VERSION)/g' \
-e 's/@PACKAGER@/$(PACKAGER)/g' > "$@"
 
pyqver2.py:
wget https://github.com/ghewgill/pyqver/raw/master/pyqver2.py
 
exe:
python win/setup_py2exe.py py2exe
 
/relevation/branches/1.3/debian/README.Debian
5,4 → 5,7
packaging scripts. Those are not written by a Debian developer
so they may inadvertently break packaging rules or conventions.
 
-- Toni Corvera <outlyer@gmail.com> Mon, 27 Jun 2011 01:44:10 +0200
The minimum required Python version is set based on pyqver
(https://github.com/ghewgill/pyqver/tree/master)
 
-- Toni Corvera <outlyer@gmail.com> Fri, 23 May 2014 01:04:59 +0200