Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update saxon9he.jar to version 9.9.1.7 #127

Merged
merged 3 commits into from
Sep 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:edge
EXPOSE 8080
COPY . /ocr-fileformat
WORKDIR /ocr-fileformat
RUN apk add --no-cache openjdk8-jre php7 php7-json php7-openssl python py-lxml py-future git make ca-certificates wget bash gcc libc-dev \
RUN apk add --no-cache openjdk8-jre php7 php7-json php7-openssl python3 py-lxml py-future git make ca-certificates wget bash gcc libc-dev \
&& update-ca-certificates \
&& make install \
&& cp docker.config.php web/config.local.php \
Expand Down
2 changes: 1 addition & 1 deletion script/validate/hocr
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ if [[ "$TERM" = *"color"* ]];then
format="ansi"
fi

python2 "$HOCR_SPEC" -f "$format" -p relaxed --filename "STDIN" "$1"
python3 "$HOCR_SPEC" -f "$format" -p relaxed --filename "STDIN" "$1"
2 changes: 1 addition & 1 deletion vendor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT_CLONE = git clone --depth 1

SAXON_HE_VERSION_MAJOR = 9
SAXON_HE_VERSION_MINOR = 9
SAXON_HE_VERSION_PATCH = 1-6J
SAXON_HE_VERSION_PATCH = 1-7J
SAXON_HE_ZIP = SaxonHE$(SAXON_HE_VERSION_MAJOR)-$(SAXON_HE_VERSION_MINOR)-$(SAXON_HE_VERSION_PATCH).zip
SAXON_HE_URL = https://netcologne.dl.sourceforge.net/project/saxon/Saxon-HE/$(SAXON_HE_VERSION_MAJOR).$(SAXON_HE_VERSION_MINOR)/$(SAXON_HE_ZIP)
SAXON_HE_JAR = saxon9he.jar
Expand Down