Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Mar 2019 20:28:06 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496977 - in head: graphics/opencv graphics/opencv-java graphics/p5-Image-OCR-Tesseract graphics/py-opencv graphics/tesseract multimedia/vapoursynth net/tucan
Message-ID:  <201903272028.x2RKS6Yb004746@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Wed Mar 27 20:28:05 2019
New Revision: 496977
URL: https://svnweb.freebsd.org/changeset/ports/496977

Log:
  graphics/tesseract: Update to 4.0.0
  
  Changelog:
  	https://github.com/tesseract-ocr/tesseract/wiki/ReleaseNotes#tesseract-release-notes-oct-29-2018---v400
  
  - due to an issue with the build system the man pages are missing -- this will be corrected at a later stage.
  - bump revisions of dependencies due to shlib-version change.
  
  PR:		234285
  Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl> (maintainer)

Modified:
  head/graphics/opencv-java/Makefile
  head/graphics/opencv/Makefile
  head/graphics/p5-Image-OCR-Tesseract/Makefile
  head/graphics/py-opencv/Makefile
  head/graphics/tesseract/Makefile
  head/graphics/tesseract/distinfo
  head/graphics/tesseract/pkg-plist
  head/multimedia/vapoursynth/Makefile
  head/net/tucan/Makefile

Modified: head/graphics/opencv-java/Makefile
==============================================================================
--- head/graphics/opencv-java/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/opencv-java/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	graphics java
 PKGNAMESUFFIX=	-${OCV_SLAVE}
 

Modified: head/graphics/opencv/Makefile
==============================================================================
--- head/graphics/opencv/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/opencv/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -3,7 +3,7 @@
 
 PORTNAME=	opencv
 PORTVERSION=	3.4.1
-PORTREVISION=	15
+PORTREVISION=	16
 CATEGORIES=	graphics
 
 MAINTAINER=	ports@FreeBSD.org

Modified: head/graphics/p5-Image-OCR-Tesseract/Makefile
==============================================================================
--- head/graphics/p5-Image-OCR-Tesseract/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/p5-Image-OCR-Tesseract/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -2,6 +2,7 @@
 
 PORTNAME=	Image-OCR-Tesseract
 PORTVERSION=	1.24
+PORTREVISION=	1
 CATEGORIES=	graphics perl5
 MASTER_SITES=	CPAN
 MASTER_SITE_SUBDIR=	CPAN:LEOCHARRE

Modified: head/graphics/py-opencv/Makefile
==============================================================================
--- head/graphics/py-opencv/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/py-opencv/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -1,7 +1,7 @@
 # Created by: Martin Matuska <mm@FreeBSD.org>
 # $FreeBSD$
 
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 

Modified: head/graphics/tesseract/Makefile
==============================================================================
--- head/graphics/tesseract/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/tesseract/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	tesseract
-PORTVERSION=	3.05.02
-PORTREVISION=	5
+PORTVERSION=	4.0.0
 CATEGORIES=	graphics
 
 MAINTAINER=	pkubaj@anongoth.pl
@@ -14,7 +13,8 @@ LICENSE=	APACHE20
 LIB_DEPENDS=	liblept.so:graphics/leptonica
 RUN_DEPENDS=	tesseract-data>=0:graphics/tesseract-data
 
-USES=		autoreconf compiler:c++11-lang localbase libtool pathfix pkgconfig
+USES=		autoreconf compiler:c++11-lang gnome localbase libtool pathfix \
+		pkgconfig shebangfix
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
@@ -26,10 +26,11 @@ CONFIGURE_ENV=	LIBLEPT_HEADERSDIR="${LOCALBASE}/includ
 DATADIR=	${PREFIX}/share/tessdata
 PORTDATA=	*
 PORTDOCS=	AUTHORS ChangeLog README.md
-PORTEXAMPLES=	eurotext.tif phototest.tif
 INSTALL_TARGET=	install-strip
+SHEBANG_FILES=	src/training/language-specific.sh \
+		src/training/tesstrain.sh
 
-OPTIONS_DEFINE=	DOCS EXAMPLES TOOLS
+OPTIONS_DEFINE=	DOCS TOOLS
 OPTIONS_DEFAULT=TOOLS
 OPTIONS_SUB=	yes
 TOOLS_DESC=	Include training tools
@@ -47,11 +48,6 @@ post-build-TOOLS-on:
 post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
-
-post-install-EXAMPLES-on:
-	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
-	cd ${WRKSRC} && ${INSTALL_DATA} testing/eurotext.tif \
-		testing/phototest.tif ${STAGEDIR}${EXAMPLESDIR}
 
 post-install-TOOLS-on:
 	@cd ${WRKSRC} && ${MAKE} DESTDIR=${STAGEDIR} training-install

Modified: head/graphics/tesseract/distinfo
==============================================================================
--- head/graphics/tesseract/distinfo	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/tesseract/distinfo	Wed Mar 27 20:28:05 2019	(r496977)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1529694939
-SHA256 (tesseract-ocr-tesseract-3.05.02_GH0.tar.gz) = 494d64ffa7069498a97b909a0e65a35a213989e0184f1ea15332933a90d43445
-SIZE (tesseract-ocr-tesseract-3.05.02_GH0.tar.gz) = 3571750
+TIMESTAMP = 1544717557
+SHA256 (tesseract-ocr-tesseract-4.0.0_GH0.tar.gz) = a1f5422ca49a32e5f35c54dee5112b11b99928fc9f4ee6695cdc6768d69f61dd
+SIZE (tesseract-ocr-tesseract-4.0.0_GH0.tar.gz) = 1961372

Modified: head/graphics/tesseract/pkg-plist
==============================================================================
--- head/graphics/tesseract/pkg-plist	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/graphics/tesseract/pkg-plist	Wed Mar 27 20:28:05 2019	(r496977)
@@ -1,31 +1,32 @@
 %%TOOLS%%bin/ambiguous_words
 %%TOOLS%%bin/classifier_tester
 %%TOOLS%%bin/cntraining
+%%TOOLS%%bin/combine_lang_model
 %%TOOLS%%bin/combine_tessdata
 %%TOOLS%%bin/dawg2wordlist
+%%TOOLS%%bin/language-specific.sh
+%%TOOLS%%bin/lstmtraining
+%%TOOLS%%bin/lstmeval
+%%TOOLS%%bin/merge_unicharsets
 %%TOOLS%%bin/mftraining
 %%TOOLS%%bin/set_unicharset_properties
 %%TOOLS%%bin/shapeclustering
 bin/tesseract
+%%TOOLS%%bin/tesstrain.sh
+%%TOOLS%%bin/tesstrain_utils.sh
 %%TOOLS%%bin/text2image
 %%TOOLS%%bin/unicharset_extractor
 %%TOOLS%%bin/wordlist2dawg
 include/tesseract/apitypes.h
 include/tesseract/baseapi.h
-include/tesseract/basedir.h
 include/tesseract/capi.h
-include/tesseract/errcode.h
-include/tesseract/fileerr.h
 include/tesseract/genericvector.h
 include/tesseract/helpers.h
 include/tesseract/host.h
 include/tesseract/ltrresultiterator.h
-include/tesseract/memry.h
-include/tesseract/ndminx.h
 include/tesseract/ocrclass.h
 include/tesseract/osdetect.h
 include/tesseract/pageiterator.h
-include/tesseract/params.h
 include/tesseract/platform.h
 include/tesseract/publictypes.h
 include/tesseract/renderer.h
@@ -33,23 +34,11 @@ include/tesseract/resultiterator.h
 include/tesseract/serialis.h
 include/tesseract/strngs.h
 include/tesseract/tesscallback.h
+include/tesseract/tess_version.h
 include/tesseract/thresholder.h
 include/tesseract/unichar.h
-include/tesseract/unicharmap.h
-include/tesseract/unicharset.h
 lib/libtesseract.a
 lib/libtesseract.so
-lib/libtesseract.so.3
-lib/libtesseract.so.3.0.5
+lib/libtesseract.so.4
+lib/libtesseract.so.4.0.0
 libdata/pkgconfig/tesseract.pc
-man/man1/ambiguous_words.1.gz
-man/man1/cntraining.1.gz
-man/man1/combine_tessdata.1.gz
-man/man1/dawg2wordlist.1.gz
-man/man1/mftraining.1.gz
-man/man1/shapeclustering.1.gz
-man/man1/tesseract.1.gz
-man/man1/unicharset_extractor.1.gz
-man/man1/wordlist2dawg.1.gz
-man/man5/unicharambigs.5.gz
-man/man5/unicharset.5.gz

Modified: head/multimedia/vapoursynth/Makefile
==============================================================================
--- head/multimedia/vapoursynth/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/multimedia/vapoursynth/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -2,7 +2,7 @@
 
 PORTNAME=	vapoursynth
 PORTVERSION=	R45.1
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	multimedia
 
 MAINTAINER=	jbeich@FreeBSD.org

Modified: head/net/tucan/Makefile
==============================================================================
--- head/net/tucan/Makefile	Wed Mar 27 19:23:40 2019	(r496976)
+++ head/net/tucan/Makefile	Wed Mar 27 20:28:05 2019	(r496977)
@@ -3,7 +3,7 @@
 
 PORTNAME=	tucan
 PORTVERSION=	0.3.10
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net
 MASTER_SITES=	http://forja.rediris.es/frs/download.php/2051/
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903272028.x2RKS6Yb004746>