escaping fix - description
This commit is contained in:
parent
6f78225559
commit
34b3da579b
@ -68,7 +68,7 @@ __DEPENDENCIES__ = []
|
|||||||
|
|
||||||
|
|
||||||
__DESCRIPTION__ = """The Module {\\tt %s} is designed to help on all issues with media files, like tags (e.g. exif, id3) and transformations.
|
__DESCRIPTION__ = """The Module {\\tt %s} is designed to help on all issues with media files, like tags (e.g. exif, id3) and transformations.
|
||||||
For more Information read the documentation.""" % __name__.replace('_', '\_')
|
For more Information read the documentation.""" % __name__.replace('_', '\\_')
|
||||||
"""The Module Description"""
|
"""The Module Description"""
|
||||||
__INTERPRETER__ = (3, )
|
__INTERPRETER__ = (3, )
|
||||||
"""The Tested Interpreter-Versions"""
|
"""The Tested Interpreter-Versions"""
|
||||||
|
29
_examples_/Makefile
Normal file
29
_examples_/Makefile
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# pylibs examples Makefile: Version 1.0 (2025-08-15)
|
||||||
|
|
||||||
|
.ONESHELL:
|
||||||
|
SHELL = /usr/bin/bash
|
||||||
|
MAKEFLAGS += --no-print-directory
|
||||||
|
.SILENT:
|
||||||
|
|
||||||
|
INTERPRETER = python3
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
|
EXAMPLES := $(wildcard *.py)
|
||||||
|
EXAMPLES := $(filter-out config.py, $(EXAMPLES))
|
||||||
|
LOGFILES := ${EXAMPLES:.py=.log}
|
||||||
|
LOGFILES_1st := ${EXAMPLES:.py=.log_1st}
|
||||||
|
|
||||||
|
all: $(LOGFILES)
|
||||||
|
|
||||||
|
-include __make.d__/*.mk
|
||||||
|
|
||||||
|
%.log: %.py
|
||||||
|
$(MAKE) $@_1st 2> /dev/null
|
||||||
|
echo -e "\e[1m * Running example $<\e[0m"
|
||||||
|
$(INTERPRETER) $< > $@
|
||||||
|
|
||||||
|
localclean:
|
||||||
|
clean: localclean
|
||||||
|
echo -e "\e[1m * Example logs...\e[0m"
|
||||||
|
rm -f $(LOGFILES)
|
||||||
|
rm -f $(LOGFILES_1st)
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user