head 1.2; access; symbols pkgsrc-2026Q1:1.2.0.26 pkgsrc-2026Q1-base:1.2 pkgsrc-2025Q4:1.2.0.24 pkgsrc-2025Q4-base:1.2 pkgsrc-2025Q3:1.2.0.22 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.20 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.2.0.18 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.16 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.2.0.14 pkgsrc-2024Q3-base:1.2 pkgsrc-2024Q2:1.2.0.12 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.10 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.2.0.8 pkgsrc-2023Q4-base:1.2 pkgsrc-2023Q3:1.2.0.6 pkgsrc-2023Q3-base:1.2 pkgsrc-2023Q2:1.2.0.4 pkgsrc-2023Q2-base:1.2 pkgsrc-2023Q1:1.2.0.2 pkgsrc-2023Q1-base:1.2 pkgsrc-2022Q4:1.1.0.12 pkgsrc-2022Q4-base:1.1 pkgsrc-2022Q3:1.1.0.10 pkgsrc-2022Q3-base:1.1 pkgsrc-2022Q2:1.1.0.8 pkgsrc-2022Q2-base:1.1 pkgsrc-2022Q1:1.1.0.6 pkgsrc-2022Q1-base:1.1 pkgsrc-2021Q4:1.1.0.4 pkgsrc-2021Q4-base:1.1 pkgsrc-2021Q3:1.1.0.2 pkgsrc-2021Q3-base:1.1; locks; strict; comment @# @; 1.2 date 2023.01.30.07.57.28; author adam; state Exp; branches; next 1.1; commitid N4hOzGEPVTuptxbE; 1.1 date 2021.07.16.09.16.27; author jperkin; state Exp; branches; next ; commitid xeU13EG6ajTs0c1D; desc @@ 1.2 log @tesseract: updated to 5.3.0 5.3.0 Fix memory issues in ScrollView::MessageReceiver autotools: Add rule for svpaint executable Replace call of exit function by return statement in main function Fix the build on CodeQL/Analyze CI: Remove Ubuntu 18.04 configure.ac: fix build on aarch64_be SW CI: Add paths filter Create .mailmap Fix tesseract.pc from cmake to match autotools Update README.md Fixed 2 errors fix issue 3940 - remove colormap before thresholding Update upload-artifact action Update checkout action to version 3 Fix Markdownlint Fix broken links in CONTRIBUTING.md pdfrenderer.cpp: Ignore non-text blocks lstm.train: allow .box from .raw.png too Fix a number of performance issues Fix training tools for legacy engine Fix function tesseract::WriteFeature Modernize function ObjectCache::DeleteUnusedObjects More fixes for issue @ text @$NetBSD: patch-CMakeLists.txt,v 1.1 2021/07/16 09:16:27 jperkin Exp $ Avoid C++ issue on case-insensitive file systems. --- CMakeLists.txt.orig 2022-12-22 13:57:57.000000000 +0000 +++ CMakeLists.txt @@@@ -48,7 +48,7 @@@@ endif() project(tesseract C CXX) # Get version with components from VERSION file. -file(STRINGS "VERSION" VERSION_PLAIN) +file(STRINGS "VERSION.txt" VERSION_PLAIN) string(REGEX REPLACE "^([^.]*)\\..*" "\\1" VERSION_MAJOR ${VERSION_PLAIN}) string(REGEX REPLACE "^[^.]*\\.([^.]*)\\..*" "\\1" VERSION_MINOR ${VERSION_PLAIN}) @ 1.1 log @tesseract: Avoid C++ issue on macOS. @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- CMakeLists.txt.orig 2019-12-26 14:21:51.000000000 +0000 d7 1 a7 1 @@@@ -41,7 +41,7 @@@@ set_property(GLOBAL PROPERTY PREDEFINED_ d14 2 a15 2 string(REGEX REPLACE "^[^.]*\\.([^.]*)\\..*" "\\1" VERSION_MINOR ${VERSION_PLAIN}) string(REGEX REPLACE "^[^.]*\\.[^.]*\\.([0-9]*).*" "\\1" VERSION_PATCH ${VERSION_PLAIN}) @