Skip to content

Commit

Permalink
Add license for bibliographic data (second attempt)
Browse files Browse the repository at this point in the history
We were asked [1] to state that the XEP bibliographic data is openly
available and free of charge if we want it to be consumed by third
parties.

This weas previously merged as 7477388 ("Add license for
bibliographic data"), but unfortunately later reverted in
59b2a5c ("Revert "Add license for bibliographic data"",
xsf#1221). However, the fix for the
broken docker build is trivial: simply also copy refs-LICENSE into the
container. This commit does that.

Fixes xsf#1219.

1: ietf-tools/bibxml-service#302 (comment)
  • Loading branch information
Flowdalic committed Dec 11, 2023
1 parent 636c6c6 commit f87a03a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM xmppxsf/xeps-base:latest as build
ARG NCORES=1
ARG TARGETS="html inbox-html inbox-xml pdf xeplist refs xml"

COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile /src/
COPY *.xml xep.* *.css *.xsl *.js *.xsl Makefile refs-LICENSE /src/
COPY resources/*.pdf /src/resources/
COPY tools/*.py /src/tools/
COPY inbox/*.xml inbox/*.ent inbox/*.dtd /src/inbox/
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,11 @@ inbox-xml: $(OUTDIR)/inbox $(proto_xep_xmls)
.PHONY: pdf
pdf: $(xep_pdfs)

$(REFSDIR)/LICENSE: refs-LICENSE
cp $< $@

.PHONY: refs
refs: $(xep_refs)
refs: $(xep_refs) $(REFSDIR)/LICENSE

.PHONY: examples
examples: $(xep_examples)
Expand Down

0 comments on commit f87a03a

Please sign in to comment.