Skip to content

Commit a187b32

Browse files
committed
Export compact.py fixes to CASE-Utilities-Python
This patch is ready to merge into the feature branch CASE-Utilities-Python-next when a release is issued with this pull request merged: casework/CASE-Utilities-Python#2 (This is another place where compact.py had been updated out of sync with what was loaded into CASE-Utilities-Python. The GNU-Time repository's copy was in sync. with the ExifTool repository's copy.) References: * [AC-154] XML Schema datatype prefix needs to be explicit in all examples Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent 90d6834 commit a187b32

File tree

6 files changed

+17
-90
lines changed

6 files changed

+17
-90
lines changed

tests/as_import/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ echo.txt.time.log: \
8383
process.json: \
8484
process.ttl \
8585
$(RDF_TOOLKIT_JAR) \
86-
$(tests_srcdir)/src/compact.py
86+
$(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py
8787
java -jar $(RDF_TOOLKIT_JAR) \
8888
--infer-base-iri \
8989
--inline-blank-nodes \
@@ -92,9 +92,9 @@ process.json: \
9292
--target __$@ \
9393
--target-format json-ld
9494
source $(tests_srcdir)/venv/bin/activate \
95-
&& python $(tests_srcdir)/src/compact.py \
96-
__$@ \
97-
_$@
95+
&& python3 $(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py \
96+
_$@ \
97+
__$@
9898
rm __$@
9999
mv _$@ $@
100100

tests/from_pip/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ echo.txt.time.log: \
8080
process.json: \
8181
process.ttl \
8282
$(RDF_TOOLKIT_JAR) \
83-
$(tests_srcdir)/src/compact.py
83+
$(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py
8484
java -jar $(RDF_TOOLKIT_JAR) \
8585
--infer-base-iri \
8686
--inline-blank-nodes \
@@ -89,9 +89,9 @@ process.json: \
8989
--target __$@ \
9090
--target-format json-ld
9191
source $(tests_srcdir)/venv/bin/activate \
92-
&& python $(tests_srcdir)/src/compact.py \
93-
__$@ \
94-
_$@
92+
&& python3 $(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py \
93+
_$@ \
94+
__$@
9595
rm __$@
9696
mv _$@ $@
9797

tests/gtime_and_done_log/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ echo.txt.time.log: \
8080
process.json: \
8181
process.ttl \
8282
$(RDF_TOOLKIT_JAR) \
83-
$(tests_srcdir)/src/compact.py
83+
$(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py
8484
java -jar $(RDF_TOOLKIT_JAR) \
8585
--infer-base-iri \
8686
--inline-blank-nodes \
@@ -89,9 +89,9 @@ process.json: \
8989
--target __$@ \
9090
--target-format json-ld
9191
source $(tests_srcdir)/venv_minimal/bin/activate \
92-
&& python $(tests_srcdir)/src/compact.py \
93-
__$@ \
94-
_$@
92+
&& python3 $(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py \
93+
_$@ \
94+
__$@
9595
rm __$@
9696
mv _$@ $@
9797

tests/gtime_log/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ echo.txt.time.log: \
6969
process.json: \
7070
process.ttl \
7171
$(RDF_TOOLKIT_JAR) \
72-
$(tests_srcdir)/src/compact.py
72+
$(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py
7373
java -jar $(RDF_TOOLKIT_JAR) \
7474
--infer-base-iri \
7575
--inline-blank-nodes \
@@ -78,9 +78,9 @@ process.json: \
7878
--target __$@ \
7979
--target-format json-ld
8080
source $(tests_srcdir)/venv_minimal/bin/activate \
81-
&& python $(tests_srcdir)/src/compact.py \
82-
__$@ \
83-
_$@
81+
&& python3 $(top_srcdir)/dependencies/CASE-Utilities-Python/tests/src/compact.py \
82+
_$@ \
83+
__$@
8484
rm __$@
8585
mv _$@ $@
8686

tests/src/compact.py

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)