Date: Sunday, November 11, 2018 @ 20:19:04 Author: jelle Revision: 406384
db-move: moved tesseract from [community-testing] to [community] (x86_64) Added: tesseract/repos/community-x86_64/PKGBUILD (from rev 406383, tesseract/repos/community-testing-x86_64/PKGBUILD) tesseract/repos/community-x86_64/fix_man_page_html.patch (from rev 406383, tesseract/repos/community-testing-x86_64/fix_man_page_html.patch) tesseract/repos/community-x86_64/tesseract.install (from rev 406383, tesseract/repos/community-testing-x86_64/tesseract.install) Deleted: tesseract/repos/community-testing-x86_64/ tesseract/repos/community-x86_64/PKGBUILD tesseract/repos/community-x86_64/tesseract.install ------------------------------------------+ /PKGBUILD | 47 +++++++++++++++++++++++++++++ /tesseract.install | 7 ++++ community-x86_64/PKGBUILD | 40 ------------------------ community-x86_64/fix_man_page_html.patch | 11 ++++++ community-x86_64/tesseract.install | 7 ---- 5 files changed, 65 insertions(+), 47 deletions(-) Deleted: community-x86_64/PKGBUILD =================================================================== --- community-x86_64/PKGBUILD 2018-11-11 19:58:23 UTC (rev 406383) +++ community-x86_64/PKGBUILD 2018-11-11 20:19:04 UTC (rev 406384) @@ -1,40 +0,0 @@ -# Maintainer: Sergej Pupykin <pupykin.s+a...@gmail.com> -# Contributor: Andreas Hauser <andy-...@splashground.de> - -_langs=(afr ara aze bel ben bul cat ces chi_sim chi_tra chr dan deu ell eng enm - epo equ est eus fin fra frk frm glg grc heb hin hrv hun ind isl ita ita_old - jpn kan kor lav lit mal mkd mlt msa nld nor pol por ron rus slk slv spa - spa_old sqi srp swa swe tam tel tgl tha tur ukr vie) - -pkgname=tesseract -pkgver=3.05.01 -pkgrel=7 -pkgdesc="An OCR program" -arch=(x86_64) -url="https://github.com/tesseract-ocr/tesseract" -license=("APACHE") -depends=(libpng libtiff libjpeg-turbo zlib giflib gcc-libs leptonica) -makedepends=(icu cairo pango) -install=tesseract.install -optdepends=('icu' 'cairo' 'pango' - $(for l in ${_langs[@]}; do echo tesseract-data-${l}; done)) -source=($pkgname-$pkgver.tar.gz::https://github.com/tesseract-ocr/tesseract/archive/$pkgver.tar.gz - https://github.com/tesseract-ocr/tessdata/raw/bf82613055ebc6e63d9e3b438a5c234bfd638c93/osd.traineddata) -sha256sums=('05898f93c5d057fada49b9a116fc86ad9310ff1726a0f499c3e5211b3af47ec1' - '9cf5d576fcc47564f11265841e5ca839001e7e6f38ff7f7aacf46d15a96b00ff') - -build() { - cd "$srcdir"/$pkgname-${pkgver} - [ -x configure ] || ./autogen.sh - [ -f Makefile ] || ./configure --prefix=/usr - make - make training -} - -package() { - cd "$srcdir"/$pkgname-${pkgver} - make DESTDIR="$pkgdir" install - make DESTDIR="$pkgdir" training-install - mkdir -p "$pkgdir"/usr/share/tessdata - install -Dm0644 "$srcdir"/osd.traineddata "$pkgdir"/usr/share/tessdata/osd.traineddata -} Copied: tesseract/repos/community-x86_64/PKGBUILD (from rev 406383, tesseract/repos/community-testing-x86_64/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-11-11 20:19:04 UTC (rev 406384) @@ -0,0 +1,47 @@ +# Maintainer: Sergej Pupykin <pupykin.s+a...@gmail.com> +# Contributor: Andreas Hauser <andy-...@splashground.de> + +_langs=(afr ara aze bel ben bul cat ces chi_sim chi_tra chr dan deu ell eng enm + epo equ est eus fin fra frk frm glg grc heb hin hrv hun ind isl ita ita_old + jpn kan kor lav lit mal mkd mlt msa nld nor pol por ron rus slk slv spa + spa_old sqi srp swa swe tam tel tgl tha tur ukr vie) + +pkgname=tesseract +pkgver=4.0.0 +pkgrel=1 +pkgdesc="An OCR program" +arch=(x86_64) +url="https://github.com/tesseract-ocr/tesseract" +license=("APACHE") +depends=(libpng libtiff libjpeg-turbo zlib giflib gcc-libs leptonica) +makedepends=(icu cairo pango asciidoc) +install=tesseract.install +optdepends=('icu' 'cairo' 'pango' + $(for l in ${_langs[@]}; do echo tesseract-data-${l}; done)) +source=($pkgname-$pkgver.tar.gz::https://github.com/tesseract-ocr/tesseract/archive/$pkgver.tar.gz + https://github.com/tesseract-ocr/tessdata/raw/bf82613055ebc6e63d9e3b438a5c234bfd638c93/osd.traineddata + fix_man_page_html.patch) +sha256sums=('a1f5422ca49a32e5f35c54dee5112b11b99928fc9f4ee6695cdc6768d69f61dd' + '9cf5d576fcc47564f11265841e5ca839001e7e6f38ff7f7aacf46d15a96b00ff' + 'd5fa9a8605afa775255404acb882471f894dc0d4de87eb8333fd155d649b7235') + +prepare() { + cd "$srcdir"/$pkgname-${pkgver} + patch -Np0 -i "${srcdir}/fix_man_page_html.patch" +} + +build() { + cd "$srcdir"/$pkgname-${pkgver} + [ -x configure ] || ./autogen.sh + [ -f Makefile ] || ./configure --prefix=/usr + make + make training +} + +package() { + cd "$srcdir"/$pkgname-${pkgver} + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" training-install + mkdir -p "$pkgdir"/usr/share/tessdata + install -Dm0644 "$srcdir"/osd.traineddata "$pkgdir"/usr/share/tessdata/osd.traineddata +} Copied: tesseract/repos/community-x86_64/fix_man_page_html.patch (from rev 406383, tesseract/repos/community-testing-x86_64/fix_man_page_html.patch) =================================================================== --- community-x86_64/fix_man_page_html.patch (rev 0) +++ community-x86_64/fix_man_page_html.patch 2018-11-11 20:19:04 UTC (rev 406384) @@ -0,0 +1,11 @@ +--- doc/Makefile.am 2018-11-04 17:53:43.979198215 +0100 ++++ doc/Makefile.am 2018-11-04 17:54:07.849192304 +0100 +@@ -36,7 +36,7 @@ + html: $(patsubst %,%.html,$(man_MANS)) + + %: %.asc +- $(asciidoc) -o $@ $< ++ a2x --doctype manpage --format manpage $< + + %.html: %.asc + asciidoc -b html5 -o $@ $< Deleted: community-x86_64/tesseract.install =================================================================== --- community-x86_64/tesseract.install 2018-11-11 19:58:23 UTC (rev 406383) +++ community-x86_64/tesseract.install 2018-11-11 20:19:04 UTC (rev 406384) @@ -1,7 +0,0 @@ -post_install() { - echo "You must install one of tesseract-data-* packages or whole tesseract-data group" -} - -post_upgrade() { - post_install -} Copied: tesseract/repos/community-x86_64/tesseract.install (from rev 406383, tesseract/repos/community-testing-x86_64/tesseract.install) =================================================================== --- community-x86_64/tesseract.install (rev 0) +++ community-x86_64/tesseract.install 2018-11-11 20:19:04 UTC (rev 406384) @@ -0,0 +1,7 @@ +post_install() { + echo "You must install one of tesseract-data-* packages or whole tesseract-data group" +} + +post_upgrade() { + post_install +}