mirror of
https://github.com/flynx/photobook.git
synced 2025-10-29 02:10:08 +00:00
Updated/fixed the build system, not worrect versions are publshed.
This update also contains all the chaniges from v0.1.11. Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
c72756c693
commit
246d7b2f48
27
Makefile
27
Makefile
@ -45,6 +45,8 @@
|
|||||||
|
|
||||||
.EXPORT_ALL_VARIABLES:
|
.EXPORT_ALL_VARIABLES:
|
||||||
|
|
||||||
|
#.ONESHELL:
|
||||||
|
|
||||||
# NOTE: this makes things run consistently on different systems including
|
# NOTE: this makes things run consistently on different systems including
|
||||||
# things like Android...
|
# things like Android...
|
||||||
SHELL := bash
|
SHELL := bash
|
||||||
@ -287,8 +289,6 @@ ctan-dist: dist
|
|||||||
cp -f $(DIST_DIR)/$(DIST_NAME).zip $(DIST_DIR)/$(MODULE).zip
|
cp -f $(DIST_DIR)/$(DIST_NAME).zip $(DIST_DIR)/$(MODULE).zip
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# XXX add checks for commit and push...
|
|
||||||
.PHONY: tag
|
.PHONY: tag
|
||||||
tag:
|
tag:
|
||||||
@echo "Will create and publish git tag:"
|
@echo "Will create and publish git tag:"
|
||||||
@ -298,10 +298,25 @@ tag:
|
|||||||
| tail -n 5 \
|
| tail -n 5 \
|
||||||
| sed 's/^/ /' \
|
| sed 's/^/ /' \
|
||||||
| tac
|
| tac
|
||||||
@[ $$(git status --porcelain=v1 2> /dev/null | grep -v '??' | wc -l) = 0 ] \
|
# # check if we need to bug the user about committing and/or pushing stuff...
|
||||||
|| echo -e "\nWARNING: There are uncommited changes!\n"
|
@\
|
||||||
@echo "Note that this must be done after a commit and a push."
|
UNCOMITTED=$$(git status --porcelain=v1 2> /dev/null | grep -v '??' | wc -l) ;\
|
||||||
@read -p "(press any key to continue or ctrl-c to cancel)"
|
UNPUSHED=$$(git log origin..HEAD | wc -l) ;\
|
||||||
|
if ! [ $$UNCOMITTED = 0 ] ; then \
|
||||||
|
echo ;\
|
||||||
|
echo "WARNING: Uncommited changes found!" ;\
|
||||||
|
fi ;\
|
||||||
|
if ! [ $$UNPUSHED = 0 ] ; then \
|
||||||
|
[ $$UNCOMITTED = 0 ] \
|
||||||
|
&& echo ;\
|
||||||
|
echo "WARNING: Unpushed commits found!" ;\
|
||||||
|
fi ;\
|
||||||
|
if ! [ $$UNCOMITTED = 0 ] || ! [ $$UNPUSHED = 0 ] ; then \
|
||||||
|
echo ;\
|
||||||
|
echo "Note that this must be done after a commit and a push." ;\
|
||||||
|
echo "(press any key to continue or ctrl-c to cancel)" ;\
|
||||||
|
read ;\
|
||||||
|
fi ;\
|
||||||
git tag "v$(VERSION)"
|
git tag "v$(VERSION)"
|
||||||
git push origin "v$(VERSION)"
|
git push origin "v$(VERSION)"
|
||||||
|
|
||||||
|
|||||||
@ -76,8 +76,8 @@
|
|||||||
|
|
||||||
%%% NOTE: \def\<module-name>@[A-Z]+ macros will be visible to both the
|
%%% NOTE: \def\<module-name>@[A-Z]+ macros will be visible to both the
|
||||||
%%% code and the generated docs...
|
%%% code and the generated docs...
|
||||||
\edef\photobook@FILEVERSION{v0.1.11}
|
\edef\photobook@FILEVERSION{v0.1.12}
|
||||||
\edef\photobook@FILEDATE{2023-03-11}
|
\edef\photobook@FILEDATE{2023-03-13}
|
||||||
|
|
||||||
|
|
||||||
%% \documentclass{ltxdoc}
|
%% \documentclass{ltxdoc}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user