[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/files/, app-text/paperwork-backend/

2024-05-06 Thread Bernard Cafarelli
commit: 72ad69be765f14a5ffc3f45e8314012f260024d3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon May  6 23:01:53 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon May  6 23:05:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ad69be

app-text/paperwork-backend: add 2.2.2

Closes: https://bugs.gentoo.org/931299
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  2 +
 .../files/paperwork-backend-2.2.2-scipy.patch  | 55 +++
 .../paperwork-backend-2.2.2.ebuild | 63 ++
 3 files changed, 120 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 5d17894750df..3bb713c3cb5a 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,4 @@
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
+DIST paperwork-2.2.2.tar.bz2 2531134 BLAKE2B 
760d5fdc949ed44993c9845232e3f92b26b8dcb84ef82b08be7dbb0b262461feaf06f930f3fce0b94fdd8412a8264969bac117e3ea7aef70e1b47436a9dba3c0
 SHA512 
e0d3c24a0d611ffea231e129461d2925dc8318aaade185e83361bca8d1757e4601510db6122dc412863e617a387eb1c6008d0974c2b37be7ac4e4c3e68bc450b
 DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b
+DIST paperwork-data-2.2.2.tar.gz 5206588 BLAKE2B 
7dd15d31b0b3b59900556d78b271f36cc1cab533d273948a7d0eb364028ec0d1c26b2743a10565e2fc1d65786a11a1589c776c2ec1df6030efe8a79b2fba53a0
 SHA512 
aaf8e4174504eed7b33b2a0d3ad1b0af489d70bd9a425cf9363011fc6e24dd42a6822a5d078898279e78bbe15b4e36075c5a57a5ec74eabb3c2af7b9c3cc3e76

diff --git 
a/app-text/paperwork-backend/files/paperwork-backend-2.2.2-scipy.patch 
b/app-text/paperwork-backend/files/paperwork-backend-2.2.2-scipy.patch
new file mode 100644
index ..9add28626a23
--- /dev/null
+++ b/app-text/paperwork-backend/files/paperwork-backend-2.2.2-scipy.patch
@@ -0,0 +1,55 @@
+From abcebfe9714644d4e259e53b10e0e9417b5b864f Mon Sep 17 00:00:00 2001
+From: Jerome Flesch 
+Date: Sun, 21 Apr 2024 13:31:03 +0200
+Subject: [PATCH] backend/guesswork/labels/sklearn: fix use of
+ scipy.sparse.hstack() + numpy.zeros()
+
+Closes #
+---
+ .../paperwork_backend/guesswork/label/sklearn/__init__.py   | 5 +++--
+ paperwork-backend/src/paperwork_backend/model/fake.py   | 6 ++
+ 2 files changed, 9 insertions(+), 2 deletions(-)
+
+diff --git 
a/paperwork-backend/src/paperwork_backend/guesswork/label/sklearn/__init__.py 
b/paperwork-backend/src/paperwork_backend/guesswork/label/sklearn/__init__.py
+index b2af4350..8633211f 100644
+--- 
a/paperwork-backend/src/paperwork_backend/guesswork/label/sklearn/__init__.py
 
b/paperwork-backend/src/paperwork_backend/guesswork/label/sklearn/__init__.py
+@@ -191,7 +191,8 @@ class UpdatableVectorizer(object):
+ )
+ if required_padding > 0:
+ doc_vector = numpy.hstack([
+-doc_vector, numpy.zeros((required_padding,))
++doc_vector,
++numpy.zeros((required_padding,))
+ ])
+ if sum_features is None:
+ sum_features = doc_vector
+@@ -339,7 +340,7 @@ class Corpus(object):
+ if required_padding > 0:
+ doc_vector = scipy.sparse.hstack([
+ scipy.sparse.csr_matrix(doc_vector),
+-numpy.zeros((required_padding,))
++numpy.zeros((1, required_padding))
+ ])
+ else:
+ doc_vector = scipy.sparse.csr_matrix(doc_vector)
+diff --git a/paperwork-backend/src/paperwork_backend/model/fake.py 
b/paperwork-backend/src/paperwork_backend/model/fake.py
+index 29beae97..f06fe18e 100644
+--- a/paperwork-backend/src/paperwork_backend/model/fake.py
 b/paperwork-backend/src/paperwork_backend/model/fake.py
+@@ -125,6 +125,12 @@ class Plugin(openpaperwork_core.PluginBase):
+ if doc['url'] == doc_url:
+ out.update(doc['labels'])
+ 
++def doc_has_labels_by_url(self, doc_url):
++for doc in self.docs:
++if doc['url'] == doc_url:
++return True if len(doc["labels"]) > 0 else None
++return None
++
+ def doc_add_label_by_url(self, doc_url, label, color=None):
+ if color is None:
+ all_labels = set()
+-- 
+GitLab
+

diff --git 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2024-05-06 Thread Bernard Cafarelli
commit: d535560e582ff1b43d45bc549ed1e26a783b4b9a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon May  6 23:03:07 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon May  6 23:05:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d535560e

app-text/paperwork: add 2.2.2

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  2 +
 app-text/paperwork/paperwork-2.2.2.ebuild | 66 +++
 2 files changed, 68 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 5d17894750df..3bb713c3cb5a 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,4 @@
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
+DIST paperwork-2.2.2.tar.bz2 2531134 BLAKE2B 
760d5fdc949ed44993c9845232e3f92b26b8dcb84ef82b08be7dbb0b262461feaf06f930f3fce0b94fdd8412a8264969bac117e3ea7aef70e1b47436a9dba3c0
 SHA512 
e0d3c24a0d611ffea231e129461d2925dc8318aaade185e83361bca8d1757e4601510db6122dc412863e617a387eb1c6008d0974c2b37be7ac4e4c3e68bc450b
 DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b
+DIST paperwork-data-2.2.2.tar.gz 5206588 BLAKE2B 
7dd15d31b0b3b59900556d78b271f36cc1cab533d273948a7d0eb364028ec0d1c26b2743a10565e2fc1d65786a11a1589c776c2ec1df6030efe8a79b2fba53a0
 SHA512 
aaf8e4174504eed7b33b2a0d3ad1b0af489d70bd9a425cf9363011fc6e24dd42a6822a5d078898279e78bbe15b4e36075c5a57a5ec74eabb3c2af7b9c3cc3e76

diff --git a/app-text/paperwork/paperwork-2.2.2.ebuild 
b/app-text/paperwork/paperwork-2.2.2.ebuild
new file mode 100644
index ..ee6ce4a56117
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.2.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+# Update from release hash at:
+# https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/tags
+REL_HASH="3f51346f"
+REL_HASH="0bea4054"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2
+   
https://download.openpaper.work/data/paperwork/master_${REL_HASH}/data.tar.gz 
-> paperwork-data-${PV}.tar.gz"
+S=${WORKDIR}/paperwork-${PV}/${PN}-gtk
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pyxdg-0.25[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-apps/which
+   sys-devel/gettext"
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+src_prepare() {
+   default
+   cp -a "${WORKDIR}"/${PN}-gtk "${WORKDIR}"/paperwork-${PV}/
+}
+
+python_compile() {
+   emake l10n_compile
+
+   distutils-r1_python_compile
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bugs #793446 #830012 #852134
+   addpredict /dev/dri/renderD128
+   addpredict /dev/kfd
+   addpredict /dev/nvidiactl
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2024-05-06 Thread Bernard Cafarelli
commit: c81ca2baea667c8bfe80512643415b2f2e703d1b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon May  6 22:56:13 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon May  6 23:05:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81ca2ba

app-text/paperwork-backend: drop 2.1.2, 2.2.1

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 -
 .../paperwork-backend-2.1.2.ebuild | 51 --
 .../paperwork-backend-2.2.1.ebuild | 62 --
 3 files changed, 114 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 21ae5b75780d..5d17894750df 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1,2 @@
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
-DIST paperwork-backend-2.1.2.tar.gz 1346499 BLAKE2B 
daf8c6dee97b0bdf814bcf7e9c83a80ab878250994a770f5fa6be4c0b4e23f0def51e22c0a8652a19e9294f3fab0b522b25c2a91c306ad760d568faf76a78610
 SHA512 
0156baa658a9fe26680bf6d146af3f03b98da307ee1cfaf4803f8b70a2ffdb0010fe23c4d4f9b5a572919c4be94a1aad4fd070220849248cdb18c5b1c4bc478b
 DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild
deleted file mode 100644
index 6bfad6df712f..
--- a/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/openpaperwork-core[${PYTHON_USEDEP}]
-   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
-   app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/Levenshtein[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/scikit-learn[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   ${RDEPEND}
-   test? (
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # remove dep to allow both old python-Levenshtein and new
-   # Levenshtein packages
-   sed -i -e '/python-Levenshtein/d' setup.py || die
-   distutils-r1_src_prepare
-}

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
deleted file mode 100644
index 210c3d2fb541..
--- a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-# Update from release hash at:
-# https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/tags
-REL_HASH="0bea4054"
-SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2
-   
https://download.openpaper.work/data/paperwork/master_${REL_HASH}/data.tar.gz 
-> paperwork-data-${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/openpaperwork-core[${PYTHON_USEDEP}]
-   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
-   app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
- 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2024-05-06 Thread Bernard Cafarelli
commit: 945e7df23552a1679ee8522eca0119eb0b36be30
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon May  6 22:55:42 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon May  6 23:05:09 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=945e7df2

app-text/paperwork: drop 2.1.2

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 -
 app-text/paperwork/paperwork-2.1.2.ebuild | 52 ---
 2 files changed, 53 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 2837b256f07d..5d17894750df 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1,2 @@
-DIST paperwork-2.1.2.tar.gz 5907738 BLAKE2B 
9b376e5ed13d69f0664c98d43a41cf876d21d46c31129b50c5c44e6d4279b04d302e7527906dad49b4416f698dfe9f5bafbc5130f41463efb5ca49fed0da308f
 SHA512 
0f75fba66a0b9ed1b4b28caf9dbbcc4a0b7e68fa24f5faa40251c3f39c610be372f89a2f4e2e6807babd930bfeb45cc82216761f0da042deac991d779fdfdfbb
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
 DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b

diff --git a/app-text/paperwork/paperwork-2.1.2.ebuild 
b/app-text/paperwork/paperwork-2.1.2.ebuild
deleted file mode 100644
index 1e1cb20f2bb5..
--- a/app-text/paperwork/paperwork-2.1.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 xdg pypi
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
-   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
-   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   # remove dep to allow both old python-Levenshtein and new
-   # Levenshtein packages
-   sed -i -e '/python-Levenshtein/d' setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   # This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bugs #793446 #830012 #852134
-   addpredict /dev/dri/renderD128
-   addpredict /dev/kfd
-   addpredict /dev/nvidiactl
-
-   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
-   --icon_base_dir="${ED}"/usr/share/icons \
-   --data_base_dir="${ED}"/usr/share
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/files/, app-text/paperwork-backend/

2024-02-04 Thread Bernard Cafarelli
commit: d7930585b2eaf14c6e93263898b0f311ce12969a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Feb  4 23:05:08 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Feb  4 23:05:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7930585

app-text/paperwork-backend: fix PDF file segfault

Backport from upstream workaround

Closes: https://bugs.gentoo.org/765526
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../paperwork-backend-2.2.1-cairo_workaround.patch | 52 ++
 .../paperwork-backend-2.2.1-r1.ebuild  | 63 ++
 2 files changed, 115 insertions(+)

diff --git 
a/app-text/paperwork-backend/files/paperwork-backend-2.2.1-cairo_workaround.patch
 
b/app-text/paperwork-backend/files/paperwork-backend-2.2.1-cairo_workaround.patch
new file mode 100644
index ..01eb2a6154b0
--- /dev/null
+++ 
b/app-text/paperwork-backend/files/paperwork-backend-2.2.1-cairo_workaround.patch
@@ -0,0 +1,52 @@
+From c9430b844fbcedc9119e3d464f5f0c85feb7b197 Mon Sep 17 00:00:00 2001
+From: Jerome Flesch 
+Date: Sun, 4 Feb 2024 20:33:27 +0100
+Subject: [PATCH] Backend/docexport PDF: Workaround Cairo bug that causes
+ occasional crashes when exporting to generated PDF.
+
+Closes #942
+---
+ .../src/paperwork_backend/docexport/pdf.py  | 13 +
+ 1 file changed, 13 insertions(+)
+
+diff --git a/paperwork-backend/src/paperwork_backend/docexport/pdf.py 
b/paperwork-backend/src/paperwork_backend/docexport/pdf.py
+index 160e60710..befded73c 100644
+--- a/paperwork-backend/src/paperwork_backend/docexport/pdf.py
 b/paperwork-backend/src/paperwork_backend/docexport/pdf.py
+@@ -115,6 +115,8 @@ class PdfCreator(object):
+ )
+ self.pdf_context = cairo.Context(self.pdf_surface)
+ 
++self.gc_protection = []  # WORKAROUND(Jflesch): Cairo crash
++
+ def set_page_size(self, img_size):
+ # portrait or landscape
+ if (img_size[0] < img_size[1]):
+@@ -187,6 +189,16 @@ class PdfCreator(object):
+ "pillow_to_surface", img,
+ intermediate="jpeg", quality=int(self.quality * 100)
+ )
++# WORKAROUND(Jflesch):
++# If Cairo supports JPEG embedding, we use
++# cairo.ImageSurface.set_mime_data() instead of the usual Cairo
++# surface functions to draw the image. It seems this function does
++# not increment the ref counter of the surface object
++# --> the Python GC tends to collect it while Cairo is still going
++# to use it to generate the PDF.
++# --> we have to keep a reference on it ourselves, until the page has
++# been generated.
++self.gc_protection.append(img_surface)
+ 
+ self.pdf_context.save()
+ try:
+@@ -199,6 +211,7 @@ class PdfCreator(object):
+ 
+ def next_page(self):
+ self.pdf_context.show_page()
++self.gc_protection = []  # WORKAROUND(Jflesch): Cairo crash
+ 
+ def finish(self):
+ self.pdf_surface.flush()
+-- 
+GitLab
+

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1-r1.ebuild
new file mode 100644
index ..bb7a9c75061b
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.2.1-r1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+# Update from release hash at:
+# https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/tags
+REL_HASH="0bea4054"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2
+   
https://download.openpaper.work/data/paperwork/master_${REL_HASH}/data.tar.gz 
-> paperwork-data-${PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/openpaperwork-core[${PYTHON_USEDEP}]
+   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
+   app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-apps/which
+   sys-devel/gettext
+   test? (
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   )
+"
+S=${WORKDIR}/paperwork-${PV}/${PN}
+
+distutils_enable_tests unittest
+

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-11-07 Thread Bernard Cafarelli
commit: 9df6ab311181f9411b3a684c5b4baf3d95c3cd67
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 19:37:05 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 19:39:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df6ab31

app-text/paperwork-backend: add sys-apps/which BDEP

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
index fbaf8d92135b..e38955fb7d3f 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
@@ -37,6 +37,7 @@ RDEPEND="
 BDEPEND="
${RDEPEND}
dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-apps/which
sys-devel/gettext
test? (
dev-python/libpillowfight[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-11-07 Thread Bernard Cafarelli
commit: 6e47bb399c293890a887321c32d1ae06cd5802d3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 19:37:11 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 19:39:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e47bb39

app-text/paperwork: add sys-apps/which BDEP

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-2.2.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork/paperwork-2.2.1.ebuild 
b/app-text/paperwork/paperwork-2.2.1.ebuild
index 26f60728935f..9124bd50a325 100644
--- a/app-text/paperwork/paperwork-2.2.1.ebuild
+++ b/app-text/paperwork/paperwork-2.2.1.ebuild
@@ -33,6 +33,7 @@ RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
x11-libs/libnotify[introspection]"
 DEPEND="${RDEPEND}"
 BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-apps/which
sys-devel/gettext"
 
 S=${WORKDIR}/paperwork-${PV}/${PN}-gtk



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-11-07 Thread Bernard Cafarelli
commit: 43acecded70a261f64f58a22a55662495103597a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 19:15:13 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 19:15:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43acecde

app-text/paperwork: fix quoting

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/paperwork/paperwork-2.2.1.ebuild 
b/app-text/paperwork/paperwork-2.2.1.ebuild
index a5fa423d906a..26f60728935f 100644
--- a/app-text/paperwork/paperwork-2.2.1.ebuild
+++ b/app-text/paperwork/paperwork-2.2.1.ebuild
@@ -41,7 +41,7 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 
 src_prepare() {
default
-   cp -a "${WORKDIR}"/${PN}-gtk ${WORKDIR}/paperwork-${PV}/
+   cp -a "${WORKDIR}"/${PN}-gtk "${WORKDIR}"/paperwork-${PV}/
 }
 
 python_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-11-07 Thread Bernard Cafarelli
commit: 661beeb9c62bbd79347e94bfe1e9b4cb3b805a16
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 19:08:27 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 19:15:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=661beeb9

app-text/paperwork-backend: fix quoting

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
index 7a31ab09d094..fbaf8d92135b 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
@@ -51,7 +51,7 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 
 src_prepare() {
default
-   cp -a "${WORKDIR}"/${PN} ${WORKDIR}/paperwork-${PV}/
+   cp -a "${WORKDIR}"/${PN} "${WORKDIR}"/paperwork-${PV}/
 }
 
 python_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-11-07 Thread Bernard Cafarelli
commit: f2e5d1861f5d8b7359ab64247838a6e27dfaadb3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 14:38:47 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 14:51:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e5d186

app-text/paperwork: install l10n and data files

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.2.1.ebuild | 20 ++--
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 5e38d896d24e..2837b256f07d 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-2.1.2.tar.gz 5907738 BLAKE2B 
9b376e5ed13d69f0664c98d43a41cf876d21d46c31129b50c5c44e6d4279b04d302e7527906dad49b4416f698dfe9f5bafbc5130f41463efb5ca49fed0da308f
 SHA512 
0f75fba66a0b9ed1b4b28caf9dbbcc4a0b7e68fa24f5faa40251c3f39c610be372f89a2f4e2e6807babd930bfeb45cc82216761f0da042deac991d779fdfdfbb
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
+DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b

diff --git a/app-text/paperwork/paperwork-2.2.1.ebuild 
b/app-text/paperwork/paperwork-2.2.1.ebuild
index 50978a913269..a5fa423d906a 100644
--- a/app-text/paperwork/paperwork-2.2.1.ebuild
+++ b/app-text/paperwork/paperwork-2.2.1.ebuild
@@ -10,7 +10,11 @@ inherit distutils-r1 xdg
 
 DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
 HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2;
+# Update from release hash at:
+# https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/tags
+REL_HASH="0bea4054"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2
+   
https://download.openpaper.work/data/paperwork/master_${REL_HASH}/data.tar.gz 
-> paperwork-data-${PV}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -28,12 +32,24 @@ 
RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
media-libs/libinsane
x11-libs/libnotify[introspection]"
 DEPEND="${RDEPEND}"
-BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]"
+BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-devel/gettext"
 
 S=${WORKDIR}/paperwork-${PV}/${PN}-gtk
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
 
+src_prepare() {
+   default
+   cp -a "${WORKDIR}"/${PN}-gtk ${WORKDIR}/paperwork-${PV}/
+}
+
+python_compile() {
+   emake l10n_compile
+
+   distutils-r1_python_compile
+}
+
 python_install_all() {
distutils-r1_python_install_all
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-11-07 Thread Bernard Cafarelli
commit: 602733778586efa7490ecee3542e858e795b01a2
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 14:34:43 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 14:51:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60273377

app-text/paperwork-backend: install l10n and AUTHORS

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend/paperwork-backend-2.2.1.ebuild   | 18 +-
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 1b3fd1654632..21ae5b75780d 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
 DIST paperwork-backend-2.1.2.tar.gz 1346499 BLAKE2B 
daf8c6dee97b0bdf814bcf7e9c83a80ab878250994a770f5fa6be4c0b4e23f0def51e22c0a8652a19e9294f3fab0b522b25c2a91c306ad760d568faf76a78610
 SHA512 
0156baa658a9fe26680bf6d146af3f03b98da307ee1cfaf4803f8b70a2ffdb0010fe23c4d4f9b5a572919c4be94a1aad4fd070220849248cdb18c5b1c4bc478b
+DIST paperwork-data-2.2.1.tar.gz 5210355 BLAKE2B 
48ee8f9828f7aed9b41c998c2cdc43a2b98c2a2482e388500b8d04867a450bbf3264ef5a87d7f215f1389943e4cbab452d3a7a6235d63cfdb27127ab56ad9c2f
 SHA512 
cf663368f733f45dde8242c3ad9ba405361628bddb7e8aed9dffeb5bb86c1abac7a3485cb7e2042d65006f8f336390fa81ea182dad62f4259b79805ac7a0416b

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
index a6242fea4889..7a31ab09d094 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
@@ -10,7 +10,11 @@ inherit distutils-r1
 
 DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
 HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2;
+# Update from release hash at:
+# https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/tags
+REL_HASH="0bea4054"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2
+   
https://download.openpaper.work/data/paperwork/master_${REL_HASH}/data.tar.gz 
-> paperwork-data-${PV}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -33,6 +37,7 @@ RDEPEND="
 BDEPEND="
${RDEPEND}
dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   sys-devel/gettext
test? (
dev-python/libpillowfight[${PYTHON_USEDEP}]
media-libs/libinsane
@@ -43,3 +48,14 @@ S=${WORKDIR}/paperwork-${PV}/${PN}
 distutils_enable_tests unittest
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+src_prepare() {
+   default
+   cp -a "${WORKDIR}"/${PN} ${WORKDIR}/paperwork-${PV}/
+}
+
+python_compile() {
+   emake l10n_compile
+
+   distutils-r1_python_compile
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-11-07 Thread Bernard Cafarelli
commit: 685261c31b2c6bf140a4ad4d3df305f94a858528
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 12:48:27 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 14:51:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=685261c3

app-text/paperwork-backend: add 2.2.1

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.2.1.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 32a41efcb10a..1b3fd1654632 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
+DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f
 DIST paperwork-backend-2.1.2.tar.gz 1346499 BLAKE2B 
daf8c6dee97b0bdf814bcf7e9c83a80ab878250994a770f5fa6be4c0b4e23f0def51e22c0a8652a19e9294f3fab0b522b25c2a91c306ad760d568faf76a78610
 SHA512 
0156baa658a9fe26680bf6d146af3f03b98da307ee1cfaf4803f8b70a2ffdb0010fe23c4d4f9b5a572919c4be94a1aad4fd070220849248cdb18c5b1c4bc478b

diff --git a/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
new file mode 100644
index ..a6242fea4889
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.2.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/openpaperwork-core[${PYTHON_USEDEP}]
+   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
+   app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   )
+"
+S=${WORKDIR}/paperwork-${PV}/${PN}
+
+distutils_enable_tests unittest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-11-07 Thread Bernard Cafarelli
commit: 29d127c54f0f3a70732671fabc506b25c44ab384
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov  7 13:02:26 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov  7 14:51:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d127c5

app-text/paperwork: add 2.2.1

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.2.1.ebuild | 49 +++
 2 files changed, 50 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 6a846d60a943..5e38d896d24e 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-2.1.2.tar.gz 5907738 BLAKE2B 
9b376e5ed13d69f0664c98d43a41cf876d21d46c31129b50c5c44e6d4279b04d302e7527906dad49b4416f698dfe9f5bafbc5130f41463efb5ca49fed0da308f
 SHA512 
0f75fba66a0b9ed1b4b28caf9dbbcc4a0b7e68fa24f5faa40251c3f39c610be372f89a2f4e2e6807babd930bfeb45cc82216761f0da042deac991d779fdfdfbb
+DIST paperwork-2.2.1.tar.bz2 2529505 BLAKE2B 
e5545d3fbb5e41d0ddd21a0358fae496d127b30a3f72e1438eef679c520a3152e4db006d9dc42023431907281452931e90aea187c4928309bde7add2d54b5844
 SHA512 
f96ddf3efe3b5021e612600fa2e3a9c83db7ec78b9637e434facefcc422700be1b67b74231b4738a7762905ac5267f412839ff9d43cb9dcf7f95a5f3d6f7091f

diff --git a/app-text/paperwork/paperwork-2.2.1.ebuild 
b/app-text/paperwork/paperwork-2.2.1.ebuild
new file mode 100644
index ..50978a913269
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.2.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/archive/${PV}/paperwork-${PV}.tar.bz2;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pyxdg-0.25[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/paperwork-${PV}/${PN}-gtk
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bugs #793446 #830012 #852134
+   addpredict /dev/dri/renderD128
+   addpredict /dev/kfd
+   addpredict /dev/nvidiactl
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-05-20 Thread Michał Górny
commit: 707ef79a17563fd47338fdbd220cfa41b9b1ab90
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 20 06:26:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 20 06:31:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707ef79a

app-text/paperwork-backend: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 -
 .../paperwork-backend-2.1.1-r1.ebuild  | 50 --
 2 files changed, 51 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 60723d0c259e..32a41efcb10a 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1 @@
-DIST paperwork-backend-2.1.1.tar.gz 1383107 BLAKE2B 
0e814a829581fe6322cc0ae44e9e3a20a2fc066e9be5de038c4d08b9d85218961ca8271ebc646b03425e78017109ddf35c05a4b11e8fcc3bb4b6d10a6273
 SHA512 
ab75aaf01571eaa52a283ac6e1b9ff080d09e2514e1efb98bc96e9986acf85ec2ab2d94fc27ba15230370c642e39fddf6e11922a3d18b16af38f4281ff9c628f
 DIST paperwork-backend-2.1.2.tar.gz 1346499 BLAKE2B 
daf8c6dee97b0bdf814bcf7e9c83a80ab878250994a770f5fa6be4c0b4e23f0def51e22c0a8652a19e9294f3fab0b522b25c2a91c306ad760d568faf76a78610
 SHA512 
0156baa658a9fe26680bf6d146af3f03b98da307ee1cfaf4803f8b70a2ffdb0010fe23c4d4f9b5a572919c4be94a1aad4fd070220849248cdb18c5b1c4bc478b

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
deleted file mode 100644
index f450c1442c0d..
--- a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/openpaperwork-core[${PYTHON_USEDEP}]
-   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
-   app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/Levenshtein[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]
-   sci-libs/scikit-learn[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   ${RDEPEND}
-   test? (
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # remove dep to allow both old python-Levenshtein and new
-   # Levenshtein packages
-   sed -i -e '/python-Levenshtein/d' setup.py || die
-   distutils-r1_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-05-20 Thread Michał Górny
commit: 50bad693efcbf77e0aecd03c77bb5279e3022fea
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 20 06:24:45 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 20 06:26:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50bad693

app-text/paperwork: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 app-text/paperwork/Manifest  |  1 -
 app-text/paperwork/paperwork-2.1.1-r1.ebuild | 51 
 2 files changed, 52 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index f0fe9f9e87fe..6a846d60a943 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1 @@
-DIST paperwork-2.1.1.tar.gz 5886436 BLAKE2B 
5fd5a8a5d45a39298d3bc905360544f695c8c1ffa6e4bac56f3ec7bb9f31842aa71e2dadf0c8f072da59065f15fe5e768e42b8a1574722dfb99f66cc24c5b038
 SHA512 
e2164dc54eacb6153182c073e15f0605ec2131e17fa1c508d4923d37c1848c286d36807994ce07de99fb9cc5da012c111d84768c2c7c876dfb163811995b10c0
 DIST paperwork-2.1.2.tar.gz 5907738 BLAKE2B 
9b376e5ed13d69f0664c98d43a41cf876d21d46c31129b50c5c44e6d4279b04d302e7527906dad49b4416f698dfe9f5bafbc5130f41463efb5ca49fed0da308f
 SHA512 
0f75fba66a0b9ed1b4b28caf9dbbcc4a0b7e68fa24f5faa40251c3f39c610be372f89a2f4e2e6807babd930bfeb45cc82216761f0da042deac991d779fdfdfbb

diff --git a/app-text/paperwork/paperwork-2.1.1-r1.ebuild 
b/app-text/paperwork/paperwork-2.1.1-r1.ebuild
deleted file mode 100644
index 2d9d09f4d008..
--- a/app-text/paperwork/paperwork-2.1.1-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
-   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
-   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   # remove dep to allow both old python-Levenshtein and new
-   # Levenshtein packages
-   sed -i -e '/python-Levenshtein/d' setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   # This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bugs #793446 #830012 #852134
-   addpredict /dev/dri/renderD128
-   addpredict /dev/kfd
-   addpredict /dev/nvidiactl
-
-   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
-   --icon_base_dir="${ED}"/usr/share/icons \
-   --data_base_dir="${ED}"/usr/share
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-01-31 Thread Bernard Cafarelli
commit: 07a59fad00afdebf28a5cc994245a3afc7882047
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Feb  1 07:53:50 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a59fad

app-text/paperwork: add 2.1.2

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.1.2.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index bf6aa30e374e..f0fe9f9e87fe 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-2.1.1.tar.gz 5886436 BLAKE2B 
5fd5a8a5d45a39298d3bc905360544f695c8c1ffa6e4bac56f3ec7bb9f31842aa71e2dadf0c8f072da59065f15fe5e768e42b8a1574722dfb99f66cc24c5b038
 SHA512 
e2164dc54eacb6153182c073e15f0605ec2131e17fa1c508d4923d37c1848c286d36807994ce07de99fb9cc5da012c111d84768c2c7c876dfb163811995b10c0
+DIST paperwork-2.1.2.tar.gz 5907738 BLAKE2B 
9b376e5ed13d69f0664c98d43a41cf876d21d46c31129b50c5c44e6d4279b04d302e7527906dad49b4416f698dfe9f5bafbc5130f41463efb5ca49fed0da308f
 SHA512 
0f75fba66a0b9ed1b4b28caf9dbbcc4a0b7e68fa24f5faa40251c3f39c610be372f89a2f4e2e6807babd930bfeb45cc82216761f0da042deac991d779fdfdfbb

diff --git a/app-text/paperwork/paperwork-2.1.2.ebuild 
b/app-text/paperwork/paperwork-2.1.2.ebuild
new file mode 100644
index ..000ebd41d82b
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.1.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   # remove dep to allow both old python-Levenshtein and new
+   # Levenshtein packages
+   sed -i -e '/python-Levenshtein/d' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bugs #793446 #830012 #852134
+   addpredict /dev/dri/renderD128
+   addpredict /dev/kfd
+   addpredict /dev/nvidiactl
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-01-31 Thread Bernard Cafarelli
commit: 73f107569174cf72633c334969f8c24a9905e4c3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Feb  1 07:52:44 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f10756

app-text/paperwork: drop 2.1.0

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 -
 app-text/paperwork/paperwork-2.1.0.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 1cb0077b96e6..bf6aa30e374e 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1 @@
-DIST paperwork-2.1.0.tar.gz 5887310 BLAKE2B 
a28229c73342769fe004be38d5782c6e29d3893bf1fbdd8ccac9790057e2af0b01ef0ad6719310a40d609811efd6c13c7b3761bb9d5feab91a6127eca1526a3a
 SHA512 
4362b7feba917017d5c04cbfaf3d77a2619b7431f2687800f112ecac2edc48604f8bca8d4e6defd09bae1c69c6dfc3e1f22327166aa3563eb6b2c575827e536c
 DIST paperwork-2.1.1.tar.gz 5886436 BLAKE2B 
5fd5a8a5d45a39298d3bc905360544f695c8c1ffa6e4bac56f3ec7bb9f31842aa71e2dadf0c8f072da59065f15fe5e768e42b8a1574722dfb99f66cc24c5b038
 SHA512 
e2164dc54eacb6153182c073e15f0605ec2131e17fa1c508d4923d37c1848c286d36807994ce07de99fb9cc5da012c111d84768c2c7c876dfb163811995b10c0

diff --git a/app-text/paperwork/paperwork-2.1.0.ebuild 
b/app-text/paperwork/paperwork-2.1.0.ebuild
deleted file mode 100644
index 45c083368e7a..
--- a/app-text/paperwork/paperwork-2.1.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
-   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
-   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   # This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bugs #793446 #830012 #852134
-   addpredict /dev/dri/renderD128
-   addpredict /dev/kfd
-   addpredict /dev/nvidiactl
-
-   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
-   --icon_base_dir="${ED}"/usr/share/icons \
-   --data_base_dir="${ED}"/usr/share
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2023-01-31 Thread Bernard Cafarelli
commit: cd8e454f819be2d57861a90667e4c9475e8d3cf7
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Feb  1 07:54:13 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd8e454f

app-text/paperwork: add gnome-gitlab upstream metadata

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork/metadata.xml b/app-text/paperwork/metadata.xml
index 63d36aa33df1..d7596dc0e9e5 100644
--- a/app-text/paperwork/metadata.xml
+++ b/app-text/paperwork/metadata.xml
@@ -13,6 +13,7 @@
   In other words, let the machine do most of the work for you.
   
   
+World/OpenPaperwork
 paperwork-backend
   
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-01-31 Thread Bernard Cafarelli
commit: 4c2eebff403581e8efc145fa952bae92849501ed
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Feb  1 07:52:38 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2eebff

app-text/paperwork-backend: add 2.1.2

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.1.2.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index d71ea7a047ec..60723d0c259e 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-2.1.1.tar.gz 1383107 BLAKE2B 
0e814a829581fe6322cc0ae44e9e3a20a2fc066e9be5de038c4d08b9d85218961ca8271ebc646b03425e78017109ddf35c05a4b11e8fcc3bb4b6d10a6273
 SHA512 
ab75aaf01571eaa52a283ac6e1b9ff080d09e2514e1efb98bc96e9986acf85ec2ab2d94fc27ba15230370c642e39fddf6e11922a3d18b16af38f4281ff9c628f
+DIST paperwork-backend-2.1.2.tar.gz 1346499 BLAKE2B 
daf8c6dee97b0bdf814bcf7e9c83a80ab878250994a770f5fa6be4c0b4e23f0def51e22c0a8652a19e9294f3fab0b522b25c2a91c306ad760d568faf76a78610
 SHA512 
0156baa658a9fe26680bf6d146af3f03b98da307ee1cfaf4803f8b70a2ffdb0010fe23c4d4f9b5a572919c4be94a1aad4fd070220849248cdb18c5b1c4bc478b

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild
new file mode 100644
index ..a9afa9ad51d7
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/openpaperwork-core[${PYTHON_USEDEP}]
+   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
+   app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/Levenshtein[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   )
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+   # remove dep to allow both old python-Levenshtein and new
+   # Levenshtein packages
+   sed -i -e '/python-Levenshtein/d' setup.py || die
+   distutils-r1_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-01-31 Thread Bernard Cafarelli
commit: 11502580ebb902b7408617c0515f76de6e416111
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan 31 22:25:55 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11502580

app-text/paperwork-backend: add gnome-gitlab upstream metadata

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork-backend/metadata.xml 
b/app-text/paperwork-backend/metadata.xml
index f6e9749123d3..20c7c0afde7f 100644
--- a/app-text/paperwork-backend/metadata.xml
+++ b/app-text/paperwork-backend/metadata.xml
@@ -6,6 +6,7 @@
 Bernard Cafarelli
   
   
+World/OpenPaperwork
 paperwork-backend
   
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2023-01-31 Thread Bernard Cafarelli
commit: 630754f0eb48912440920d98264e2d21b7daa5ad
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan 31 22:22:57 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Feb  1 07:58:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630754f0

app-text/paperwork-backend: drop 2.1.0

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 -
 .../paperwork-backend-2.1.0.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 3ca1895164f4..d71ea7a047ec 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1 @@
-DIST paperwork-backend-2.1.0.tar.gz 1352553 BLAKE2B 
84bf9f34be50c2cd762c1afb496e4625bed50018242e94925ad4d5428228fadc9ac8d3866f8fbb9f0a78d049599048db62c6d7201852638cc5ad0674ebc791f0
 SHA512 
72cf3176091d899433a50d8a166a2505f0be9e5917df311a6f5139af472363df427102dcde99e6097b11f6aa26571bdaba06047fafd2365b4dedec0d3a47da7a
 DIST paperwork-backend-2.1.1.tar.gz 1383107 BLAKE2B 
0e814a829581fe6322cc0ae44e9e3a20a2fc066e9be5de038c4d08b9d85218961ca8271ebc646b03425e78017109ddf35c05a4b11e8fcc3bb4b6d10a6273
 SHA512 
ab75aaf01571eaa52a283ac6e1b9ff080d09e2514e1efb98bc96e9986acf85ec2ab2d94fc27ba15230370c642e39fddf6e11922a3d18b16af38f4281ff9c628f

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild
deleted file mode 100644
index c17ccf43fd48..
--- a/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-DISTUTILS_USE_SETUPTOOLS=bdepend
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/Levenshtein[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]
-   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2022-09-20 Thread Michał Górny
commit: 2b25ea0be424e100eee0b197d33116af29b1d9a3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 20 16:27:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 20 16:55:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b25ea0b

app-text/paperwork: Fix compat w/ new Levenshtein pkg

Closes: https://bugs.gentoo.org/872071
Signed-off-by: Michał Górny  gentoo.org>

 .../{paperwork-2.1.1.ebuild => paperwork-2.1.1-r1.ebuild}  | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/app-text/paperwork/paperwork-2.1.1.ebuild 
b/app-text/paperwork/paperwork-2.1.1-r1.ebuild
similarity index 88%
rename from app-text/paperwork/paperwork-2.1.1.ebuild
rename to app-text/paperwork/paperwork-2.1.1-r1.ebuild
index 5fb6e834f6a9..cd4fb6cfa7a0 100644
--- a/app-text/paperwork/paperwork-2.1.1.ebuild
+++ b/app-text/paperwork/paperwork-2.1.1-r1.ebuild
@@ -29,6 +29,13 @@ RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
x11-libs/libnotify[introspection]"
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   # remove dep to allow both old python-Levenshtein and new
+   # Levenshtein packages
+   sed -i -e '/python-Levenshtein/d' setup.py || die
+   distutils-r1_src_prepare
+}
+
 python_install_all() {
distutils-r1_python_install_all
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2022-09-20 Thread Michał Górny
commit: 6ce25c39503cae5806f213ca58394ea6341abdf2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 20 16:14:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 20 16:55:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce25c39

app-text/paperwork-backend: Add missing test dependencies

This does not fix all of the test failures but gets some obvious ones
out of the way.

Closes: https://bugs.gentoo.org/866041
Signed-off-by: Michał Górny  gentoo.org>

 1.1.ebuild => paperwork-backend-2.1.1-r1.ebuild} | 20 +++-
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
similarity index 74%
rename from app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
rename to app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
index f5bcf8a9e058..5667253b8140 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-DISTUTILS_USE_SETUPTOOLS=bdepend
+
 PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
@@ -14,9 +14,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
-RDEPEND="app-text/poppler[introspection]
+RDEPEND="
+   app-text/openpaperwork-core[${PYTHON_USEDEP}]
+   app-text/openpaperwork-gtk[${PYTHON_USEDEP}]
+   app-text/poppler[introspection]
dev-python/distro[${PYTHON_USEDEP}]
dev-python/Levenshtein[${PYTHON_USEDEP}]
dev-python/natsort[${PYTHON_USEDEP}]
@@ -28,6 +30,14 @@ RDEPEND="app-text/poppler[introspection]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
dev-python/whoosh[${PYTHON_USEDEP}]
-   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   )
+"
+
 distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2022-09-20 Thread Michał Górny
commit: 2104111e9ffcd1d995e16c74abff4f6256c28c1b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 20 16:26:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 20 16:55:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2104111e

app-text/paperwork-backend: Fix compat w/ new Levenshtein pkg

Closes: https://bugs.gentoo.org/872071
Signed-off-by: Michał Górny  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
index 5667253b8140..fc9f7013f9c4 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild
@@ -41,3 +41,10 @@ BDEPEND="
 "
 
 distutils_enable_tests unittest
+
+src_prepare() {
+   # remove dep to allow both old python-Levenshtein and new
+   # Levenshtein packages
+   sed -i -e '/python-Levenshtein/d' setup.py || die
+   distutils-r1_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2022-07-10 Thread Bernard Cafarelli
commit: b9a2490fa4d397f726a9ea243e54bff4df008b2c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Jul 10 14:53:39 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Jul 10 14:53:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9a2490f

app-text/paperwork-backend: enable unit tests

Closes: https://bugs.gentoo.org/796290
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
index 03be19a641d1..820e83331f39 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
@@ -30,3 +30,4 @@ RDEPEND="app-text/poppler[introspection]
dev-python/whoosh[${PYTHON_USEDEP}]
sci-libs/scikit-learn[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"
+distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2022-06-29 Thread Bernard Cafarelli
commit: 0b4e0956a65a4dfc5266f42324611f66a4fb
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jun 29 09:04:22 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jun 29 09:04:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b4e0956

app-text/paperwork: fix renderD128 access violation

Closes: https://bugs.gentoo.org/852134
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-2.1.0.ebuild | 7 ---
 app-text/paperwork/paperwork-2.1.1.ebuild | 5 +++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/app-text/paperwork/paperwork-2.1.0.ebuild 
b/app-text/paperwork/paperwork-2.1.0.ebuild
index 4167c0385cff..344a70f29743 100644
--- a/app-text/paperwork/paperwork-2.1.0.ebuild
+++ b/app-text/paperwork/paperwork-2.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -34,9 +34,10 @@ python_install_all() {
distutils-r1_python_install_all
 
# This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bugs #793446 #830012
-   addpredict /dev/nvidiactl
+   # USE=opencl, bugs #793446 #830012 #852134
+   addpredict /dev/dri/renderD128
addpredict /dev/kfd
+   addpredict /dev/nvidiactl
 
PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
--icon_base_dir="${ED}"/usr/share/icons \

diff --git a/app-text/paperwork/paperwork-2.1.1.ebuild 
b/app-text/paperwork/paperwork-2.1.1.ebuild
index 27169a2d1a1f..5fb6e834f6a9 100644
--- a/app-text/paperwork/paperwork-2.1.1.ebuild
+++ b/app-text/paperwork/paperwork-2.1.1.ebuild
@@ -33,9 +33,10 @@ python_install_all() {
distutils-r1_python_install_all
 
# This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bugs #793446 #830012
-   addpredict /dev/nvidiactl
+   # USE=opencl, bugs #793446 #830012 #852134
+   addpredict /dev/dri/renderD128
addpredict /dev/kfd
+   addpredict /dev/nvidiactl
 
PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
--icon_base_dir="${ED}"/usr/share/icons \



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/, app-text/paperwork/files/

2022-02-04 Thread Bernard Cafarelli
commit: cd9d62867b34ca846a74e60d3ce9b2745bb048a4
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  4 12:15:14 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  4 12:15:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9d6286

app-text/paperwork: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest|  2 -
 .../files/paperwork-2.0.3-desktop_file.patch   | 12 --
 app-text/paperwork/paperwork-2.0.2.ebuild  | 32 ---
 app-text/paperwork/paperwork-2.0.3.ebuild  | 46 --
 4 files changed, 92 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 3fbe845b439e..1cb0077b96e6 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,4 +1,2 @@
-DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853
-DIST paperwork-2.0.3.tar.gz 6224520 BLAKE2B 
099d76893b0b89e5f7914456ec31346f2833561a4528efed6ab4c596fa24893d375557d6c1e89f7c83f4a1acac161004138b7e1537aa2f3cb2de0460bcc3
 SHA512 
d5cf30ef8a6011817947c9878d4defe93a0c82f77562fd707c198d944657db754ba57d703ae3f931ac9e2d7f9f1eb7f9f9093a1d26f25dac0e336b03f9b25ed3
 DIST paperwork-2.1.0.tar.gz 5887310 BLAKE2B 
a28229c73342769fe004be38d5782c6e29d3893bf1fbdd8ccac9790057e2af0b01ef0ad6719310a40d609811efd6c13c7b3761bb9d5feab91a6127eca1526a3a
 SHA512 
4362b7feba917017d5c04cbfaf3d77a2619b7431f2687800f112ecac2edc48604f8bca8d4e6defd09bae1c69c6dfc3e1f22327166aa3563eb6b2c575827e536c
 DIST paperwork-2.1.1.tar.gz 5886436 BLAKE2B 
5fd5a8a5d45a39298d3bc905360544f695c8c1ffa6e4bac56f3ec7bb9f31842aa71e2dadf0c8f072da59065f15fe5e768e42b8a1574722dfb99f66cc24c5b038
 SHA512 
e2164dc54eacb6153182c073e15f0605ec2131e17fa1c508d4923d37c1848c286d36807994ce07de99fb9cc5da012c111d84768c2c7c876dfb163811995b10c0

diff --git a/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch 
b/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch
deleted file mode 100644
index 0fbad956449a..
--- a/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur paperwork-2.0.3.orig/src/paperwork_gtk/cmd/install.py 
paperwork-2.0.3/src/paperwork_gtk/cmd/install.py
 paperwork-2.0.3.orig/src/paperwork_gtk/cmd/install.py  2021-02-05 
17:46:17.0 +0100
-+++ paperwork-2.0.3/src/paperwork_gtk/cmd/install.py   2021-05-30 
12:26:21.316348652 +0200
-@@ -122,8 +122,6 @@
- # PDF and all image formats supported by pillow
- entry.set("MimeType",
-   "application/pdf;"
--  "image/png;"
--  "image/jpeg;"
-   "image/bmp;"
-   "image/gif;"
-   "image/ico;"

diff --git a/app-text/paperwork/paperwork-2.0.2.ebuild 
b/app-text/paperwork/paperwork-2.0.2.ebuild
deleted file mode 100644
index d106fb32559b..
--- a/app-text/paperwork/paperwork-2.0.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
-   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
-   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-2.0.3.ebuild 
b/app-text/paperwork/paperwork-2.0.3.ebuild
deleted file mode 100644
index 3095f01e5a0d..
--- a/app-text/paperwork/paperwork-2.0.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1 xdg
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2022-02-04 Thread Bernard Cafarelli
commit: 2af9ee241e392b8211165923416082bbcd0a8059
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  4 12:12:42 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  4 12:12:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af9ee24

app-text/paperwork-backend: 2.1.1 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.1.1.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index f4d04ec6e715..3b4517dd4fc3 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2
 DIST paperwork-backend-2.0.3.tar.gz 1315449 BLAKE2B 
b5f788d1f3dd02ae9693ffbde6909fb343d5d68555c2d7225300371d545fc96550a34d5214b7b68594e6c5558aad6c50b38de26e444a7a2ca4f9318a7fbc4c84
 SHA512 
ed705910a09aedc124d6f14c1fd6d76d5e3790d2d01363bcea3cbb28955c1a08725276f09828ce1e286df06d7310b78630b95201146940d1680395c6420190a6
 DIST paperwork-backend-2.1.0.tar.gz 1352553 BLAKE2B 
84bf9f34be50c2cd762c1afb496e4625bed50018242e94925ad4d5428228fadc9ac8d3866f8fbb9f0a78d049599048db62c6d7201852638cc5ad0674ebc791f0
 SHA512 
72cf3176091d899433a50d8a166a2505f0be9e5917df311a6f5139af472363df427102dcde99e6097b11f6aa26571bdaba06047fafd2365b4dedec0d3a47da7a
+DIST paperwork-backend-2.1.1.tar.gz 1383107 BLAKE2B 
0e814a829581fe6322cc0ae44e9e3a20a2fc066e9be5de038c4d08b9d85218961ca8271ebc646b03425e78017109ddf35c05a4b11e8fcc3bb4b6d10a6273
 SHA512 
ab75aaf01571eaa52a283ac6e1b9ff080d09e2514e1efb98bc96e9986acf85ec2ab2d94fc27ba15230370c642e39fddf6e11922a3d18b16af38f4281ff9c628f

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
new file mode 100644
index ..03be19a641d1
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2022-02-04 Thread Bernard Cafarelli
commit: ee7f9614d4b74b4bae62ffdaaf80562aec2220fc
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  4 12:15:37 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  4 12:15:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7f9614

app-text/paperwork-backend: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  2 --
 .../paperwork-backend-2.0.2-r1.ebuild  | 32 --
 .../paperwork-backend-2.0.3.ebuild | 32 --
 3 files changed, 66 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 3b4517dd4fc3..3ca1895164f4 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,4 +1,2 @@
-DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2
-DIST paperwork-backend-2.0.3.tar.gz 1315449 BLAKE2B 
b5f788d1f3dd02ae9693ffbde6909fb343d5d68555c2d7225300371d545fc96550a34d5214b7b68594e6c5558aad6c50b38de26e444a7a2ca4f9318a7fbc4c84
 SHA512 
ed705910a09aedc124d6f14c1fd6d76d5e3790d2d01363bcea3cbb28955c1a08725276f09828ce1e286df06d7310b78630b95201146940d1680395c6420190a6
 DIST paperwork-backend-2.1.0.tar.gz 1352553 BLAKE2B 
84bf9f34be50c2cd762c1afb496e4625bed50018242e94925ad4d5428228fadc9ac8d3866f8fbb9f0a78d049599048db62c6d7201852638cc5ad0674ebc791f0
 SHA512 
72cf3176091d899433a50d8a166a2505f0be9e5917df311a6f5139af472363df427102dcde99e6097b11f6aa26571bdaba06047fafd2365b4dedec0d3a47da7a
 DIST paperwork-backend-2.1.1.tar.gz 1383107 BLAKE2B 
0e814a829581fe6322cc0ae44e9e3a20a2fc066e9be5de038c4d08b9d85218961ca8271ebc646b03425e78017109ddf35c05a4b11e8fcc3bb4b6d10a6273
 SHA512 
ab75aaf01571eaa52a283ac6e1b9ff080d09e2514e1efb98bc96e9986acf85ec2ab2d94fc27ba15230370c642e39fddf6e11922a3d18b16af38f4281ff9c628f

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild
deleted file mode 100644
index 6b3c1b66ea73..
--- a/app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-DISTUTILS_USE_SETUPTOOLS=bdepend
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild
deleted file mode 100644
index 111e95df603f..
--- a/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-DISTUTILS_USE_SETUPTOOLS=bdepend
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]
-   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2022-02-04 Thread Bernard Cafarelli
commit: f4c66541adec8b24ac4cf39cd99724e87f335294
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  4 12:14:41 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  4 12:14:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4c66541

app-text/paperwork: 2.1.1 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.1.1.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 1667cc967000..3fbe845b439e 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853
 DIST paperwork-2.0.3.tar.gz 6224520 BLAKE2B 
099d76893b0b89e5f7914456ec31346f2833561a4528efed6ab4c596fa24893d375557d6c1e89f7c83f4a1acac161004138b7e1537aa2f3cb2de0460bcc3
 SHA512 
d5cf30ef8a6011817947c9878d4defe93a0c82f77562fd707c198d944657db754ba57d703ae3f931ac9e2d7f9f1eb7f9f9093a1d26f25dac0e336b03f9b25ed3
 DIST paperwork-2.1.0.tar.gz 5887310 BLAKE2B 
a28229c73342769fe004be38d5782c6e29d3893bf1fbdd8ccac9790057e2af0b01ef0ad6719310a40d609811efd6c13c7b3761bb9d5feab91a6127eca1526a3a
 SHA512 
4362b7feba917017d5c04cbfaf3d77a2619b7431f2687800f112ecac2edc48604f8bca8d4e6defd09bae1c69c6dfc3e1f22327166aa3563eb6b2c575827e536c
+DIST paperwork-2.1.1.tar.gz 5886436 BLAKE2B 
5fd5a8a5d45a39298d3bc905360544f695c8c1ffa6e4bac56f3ec7bb9f31842aa71e2dadf0c8f072da59065f15fe5e768e42b8a1574722dfb99f66cc24c5b038
 SHA512 
e2164dc54eacb6153182c073e15f0605ec2131e17fa1c508d4923d37c1848c286d36807994ce07de99fb9cc5da012c111d84768c2c7c876dfb163811995b10c0

diff --git a/app-text/paperwork/paperwork-2.1.1.ebuild 
b/app-text/paperwork/paperwork-2.1.1.ebuild
new file mode 100644
index ..27169a2d1a1f
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bugs #793446 #830012
+   addpredict /dev/nvidiactl
+   addpredict /dev/kfd
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2021-12-30 Thread Bernard Cafarelli
commit: eea9c0d3ac54b36a0054114aae370aa91cd07687
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec 30 10:03:37 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec 30 10:03:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eea9c0d3

app-text/paperwork: fix install with opencl and amd cards

Closes: https://bugs.gentoo.org/830012
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-2.1.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-text/paperwork/paperwork-2.1.0.ebuild 
b/app-text/paperwork/paperwork-2.1.0.ebuild
index d5656e6f06c5..4167c0385cff 100644
--- a/app-text/paperwork/paperwork-2.1.0.ebuild
+++ b/app-text/paperwork/paperwork-2.1.0.ebuild
@@ -34,8 +34,9 @@ python_install_all() {
distutils-r1_python_install_all
 
# This queries tesseract languages and will fail sandbox with
-   # USE=opencl, bug #793446
+   # USE=opencl, bugs #793446 #830012
addpredict /dev/nvidiactl
+   addpredict /dev/kfd
 
PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
--icon_base_dir="${ED}"/usr/share/icons \



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2021-12-22 Thread Bernard Cafarelli
commit: e61d6fc9b1951990d2bc02d7f72bc7a56cb05ae1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Dec 22 12:42:51 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Dec 22 13:09:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61d6fc9

app-text/paperwork-backend: 2.1.0 bump

paperwork can now import libreoffice documents, this is a pure runtime
dependency

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.1.0.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 5371758ce59a..f4d04ec6e715 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2
 DIST paperwork-backend-2.0.3.tar.gz 1315449 BLAKE2B 
b5f788d1f3dd02ae9693ffbde6909fb343d5d68555c2d7225300371d545fc96550a34d5214b7b68594e6c5558aad6c50b38de26e444a7a2ca4f9318a7fbc4c84
 SHA512 
ed705910a09aedc124d6f14c1fd6d76d5e3790d2d01363bcea3cbb28955c1a08725276f09828ce1e286df06d7310b78630b95201146940d1680395c6420190a6
+DIST paperwork-backend-2.1.0.tar.gz 1352553 BLAKE2B 
84bf9f34be50c2cd762c1afb496e4625bed50018242e94925ad4d5428228fadc9ac8d3866f8fbb9f0a78d049599048db62c6d7201852638cc5ad0674ebc791f0
 SHA512 
72cf3176091d899433a50d8a166a2505f0be9e5917df311a6f5139af472363df427102dcde99e6097b11f6aa26571bdaba06047fafd2365b4dedec0d3a47da7a

diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild
new file mode 100644
index ..b20acac9dac9
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2021-12-22 Thread Bernard Cafarelli
commit: 1615e6b0688b02485e265b4193879eae2763fdf2
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Dec 22 12:47:11 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Dec 22 13:09:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1615e6b0

app-text/paperwork: 2.1.0 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.1.0.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 7f7bd954b947..1667cc967000 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853
 DIST paperwork-2.0.3.tar.gz 6224520 BLAKE2B 
099d76893b0b89e5f7914456ec31346f2833561a4528efed6ab4c596fa24893d375557d6c1e89f7c83f4a1acac161004138b7e1537aa2f3cb2de0460bcc3
 SHA512 
d5cf30ef8a6011817947c9878d4defe93a0c82f77562fd707c198d944657db754ba57d703ae3f931ac9e2d7f9f1eb7f9f9093a1d26f25dac0e336b03f9b25ed3
+DIST paperwork-2.1.0.tar.gz 5887310 BLAKE2B 
a28229c73342769fe004be38d5782c6e29d3893bf1fbdd8ccac9790057e2af0b01ef0ad6719310a40d609811efd6c13c7b3761bb9d5feab91a6127eca1526a3a
 SHA512 
4362b7feba917017d5c04cbfaf3d77a2619b7431f2687800f112ecac2edc48604f8bca8d4e6defd09bae1c69c6dfc3e1f22327166aa3563eb6b2c575827e536c

diff --git a/app-text/paperwork/paperwork-2.1.0.ebuild 
b/app-text/paperwork/paperwork-2.1.0.ebuild
new file mode 100644
index ..d5656e6f06c5
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bug #793446
+   addpredict /dev/nvidiactl
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2021-06-01 Thread Bernard Cafarelli
commit: db48ef9ae8e400c4144b4e0314f1db3c53ff6f9b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jun  1 19:27:12 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jun  1 19:27:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db48ef9a

app-text/paperwork: fix install with tesseract[opencl] and nvidia

Closes: https://bugs.gentoo.org/793446
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-2.0.3.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-text/paperwork/paperwork-2.0.3.ebuild 
b/app-text/paperwork/paperwork-2.0.3.ebuild
index b9ec9918ccc..3095f01e5a0 100644
--- a/app-text/paperwork/paperwork-2.0.3.ebuild
+++ b/app-text/paperwork/paperwork-2.0.3.ebuild
@@ -36,6 +36,10 @@ PATCHES=( "${FILESDIR}"/${P}-desktop_file.patch )
 python_install_all() {
distutils-r1_python_install_all
 
+   # This queries tesseract languages and will fail sandbox with
+   # USE=opencl, bug #793446
+   addpredict /dev/nvidiactl
+
PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
--icon_base_dir="${ED}"/usr/share/icons \
--data_base_dir="${ED}"/usr/share



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/files/, app-text/paperwork/

2021-05-30 Thread Bernard Cafarelli
commit: d8d52d1eabd4c6961e6ea035fb324379e31a65ce
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun May 30 18:51:36 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun May 30 23:47:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d52d1e

app-text/paperwork: 2.0.3 bump

Add back desktop file and icons installation

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest|  1 +
 .../files/paperwork-2.0.3-desktop_file.patch   | 12 +++
 app-text/paperwork/paperwork-2.0.3.ebuild  | 42 ++
 3 files changed, 55 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 7007fcd1a13..7f7bd954b94 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853
+DIST paperwork-2.0.3.tar.gz 6224520 BLAKE2B 
099d76893b0b89e5f7914456ec31346f2833561a4528efed6ab4c596fa24893d375557d6c1e89f7c83f4a1acac161004138b7e1537aa2f3cb2de0460bcc3
 SHA512 
d5cf30ef8a6011817947c9878d4defe93a0c82f77562fd707c198d944657db754ba57d703ae3f931ac9e2d7f9f1eb7f9f9093a1d26f25dac0e336b03f9b25ed3

diff --git a/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch 
b/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch
new file mode 100644
index 000..0fbad956449
--- /dev/null
+++ b/app-text/paperwork/files/paperwork-2.0.3-desktop_file.patch
@@ -0,0 +1,12 @@
+diff -Naur paperwork-2.0.3.orig/src/paperwork_gtk/cmd/install.py 
paperwork-2.0.3/src/paperwork_gtk/cmd/install.py
+--- paperwork-2.0.3.orig/src/paperwork_gtk/cmd/install.py  2021-02-05 
17:46:17.0 +0100
 paperwork-2.0.3/src/paperwork_gtk/cmd/install.py   2021-05-30 
12:26:21.316348652 +0200
+@@ -122,8 +122,6 @@
+ # PDF and all image formats supported by pillow
+ entry.set("MimeType",
+   "application/pdf;"
+-  "image/png;"
+-  "image/jpeg;"
+   "image/bmp;"
+   "image/gif;"
+   "image/ico;"

diff --git a/app-text/paperwork/paperwork-2.0.3.ebuild 
b/app-text/paperwork/paperwork-2.0.3.ebuild
new file mode 100644
index 000..b9ec9918ccc
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.0.3.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 xdg
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-desktop_file.patch )
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   PYTHONPATH="src" "${EPYTHON}" src/paperwork_gtk/main.py install \
+   --icon_base_dir="${ED}"/usr/share/icons \
+   --data_base_dir="${ED}"/usr/share
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2021-05-30 Thread Bernard Cafarelli
commit: 21d0633494d22d05362692209fc5c2a4a337
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun May 30 09:27:08 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun May 30 23:47:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d06334

app-text/paperwork-backend: 2.0.3 bump

scikit-learn replaces simplebayes for label guessing

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.0.3.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 4d20ab856ec..5371758ce59 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2
+DIST paperwork-backend-2.0.3.tar.gz 1315449 BLAKE2B 
b5f788d1f3dd02ae9693ffbde6909fb343d5d68555c2d7225300371d545fc96550a34d5214b7b68594e6c5558aad6c50b38de26e444a7a2ca4f9318a7fbc4c84
 SHA512 
ed705910a09aedc124d6f14c1fd6d76d5e3790d2d01363bcea3cbb28955c1a08725276f09828ce1e286df06d7310b78630b95201146940d1680395c6420190a6

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild
new file mode 100644
index 000..111e95df603
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.0.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2021-05-20 Thread Bernard Cafarelli
commit: 609b9e3cb008a035b626b753a02ed75b2e4338c0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu May 20 10:23:59 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu May 20 10:27:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609b9e3c

app-text/paperwork-backend: drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  2 --
 .../paperwork-backend-1.3.1-r1.ebuild  | 31 --
 .../paperwork-backend-1.3.1.ebuild | 30 -
 .../paperwork-backend-2.0.1.ebuild | 31 --
 4 files changed, 94 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index b4a3ee1ada2..4d20ab856ec 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1 @@
-DIST paperwork-backend-1.3.1.tar.gz 62343 BLAKE2B 
2d391f63b0eaa010695b3c11b35a6c89df9df9f60d45401d8bad711743037379cdb856d8f6b0ba9f7837ac272c2d6fcbe6f58808d8b5047dccf210fbd9a3c98c
 SHA512 
e845ddd4d01be0f4d89e7e4a0a728d06b90b87a551dca3a88426d1ce6487bc000676c997df73d13662ea8f93aced8e8dee8d44ed4fa588a4c8bd514135610c35
-DIST paperwork-backend-2.0.1.tar.gz 1283518 BLAKE2B 
853e4733e16f1da503eb0a8de940c0d5a9379a3f82db50a96c6cdee82ff1b137c3b4ae4f128385217ab6cf43dfd0a3087fdd05bbde0da901c07053273b63f8e0
 SHA512 
14b072264436a300467ec9e45dc40c3ff9fab5c4ec383f6656b9cd89eabf37bf5e79118c02c67c65eece5e5d3809f3944049503a578e4616d440efbacfb46495
 DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild
deleted file mode 100644
index f31341c81d2..000
--- a/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
deleted file mode 100644
index eb14895f3a4..000
--- a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild
deleted file mode 100644
index 763e51cff3f..000
--- a/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-DISTUTILS_USE_SETUPTOOLS=bdepend
-PYTHON_COMPAT=( 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2021-05-20 Thread Bernard Cafarelli
commit: 5e80cd83dbde1e19f0af44aa626a3a0faa9c8c0a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu May 20 10:23:21 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu May 20 10:27:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e80cd83

app-text/paperwork: drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  2 --
 app-text/paperwork/paperwork-1.3.1.ebuild | 31 --
 app-text/paperwork/paperwork-2.0.1.ebuild | 32 ---
 3 files changed, 65 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 169e0c483ef..7007fcd1a13 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1 @@
-DIST paperwork-1.3.1.tar.gz 4631298 BLAKE2B 
9b111c524da29c6d547141a64ff39a5c50f18375484ae60702a2c7ce57a7be51b62621cf114ffbfa9c2175f9978225525f321449a4a9cad2570cd26dd956e496
 SHA512 
a0e6a95ebd0b5bfc290b8981488967bb5f2198ac5ec768f824ed487648d0dea6abc3ab8b8cfd8107eac1223a5ecb351a5362d9cbd7d5efccf5cb8c9a318490bc
-DIST paperwork-2.0.1.tar.gz 6224111 BLAKE2B 
b643548caa306ed3a7ce049694518ee25e102c73968eab9a812d4b088213593d08d262f71510bae61b015f685f0ca38e578c4ec6db0df279f42ba068b450a813
 SHA512 
bda94421e48a76878c661f201f07cb3d10c932dab3da33cacf229214022ec0ebcfbfef675d12bf62865b11e05d9450057244d5ed6bf4d3073df99823dece6087
 DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853

diff --git a/app-text/paperwork/paperwork-1.3.1.ebuild 
b/app-text/paperwork/paperwork-1.3.1.ebuild
deleted file mode 100644
index bba7cd76a1e..000
--- a/app-text/paperwork/paperwork-1.3.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-2.0.1.ebuild 
b/app-text/paperwork/paperwork-2.0.1.ebuild
deleted file mode 100644
index f7b6ea16416..000
--- a/app-text/paperwork/paperwork-2.0.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
-   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
-   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2021-05-20 Thread Bernard Cafarelli
commit: 843c334485fc6d0e41150b0f4f5dfb604c3412d9
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu May 20 10:27:28 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu May 20 10:27:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=843c3344

app-text/paperwork-backend: add psutil dep

This is a new dependency in 2.0.2, reported by xgqt

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli  gentoo.org>

 ...{paperwork-backend-2.0.2.ebuild => paperwork-backend-2.0.2-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild
similarity index 96%
rename from app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild
rename to app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild
index dbded23925c..6b3c1b66ea7 100644
--- a/app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-2.0.2-r1.ebuild
@@ -20,6 +20,7 @@ RDEPEND="app-text/poppler[introspection]
dev-python/distro[${PYTHON_USEDEP}]
dev-python/natsort[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]
dev-python/pyenchant[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2021-01-02 Thread Bernard Cafarelli
commit: b647a551077dce56395757846ec5ec8f55ef5099
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 10:46:37 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 10:58:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b647a551

app-text/paperwork: 2.0.2 bump

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.0.2.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 5188a21e886..169e0c483ef 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-1.3.1.tar.gz 4631298 BLAKE2B 
9b111c524da29c6d547141a64ff39a5c50f18375484ae60702a2c7ce57a7be51b62621cf114ffbfa9c2175f9978225525f321449a4a9cad2570cd26dd956e496
 SHA512 
a0e6a95ebd0b5bfc290b8981488967bb5f2198ac5ec768f824ed487648d0dea6abc3ab8b8cfd8107eac1223a5ecb351a5362d9cbd7d5efccf5cb8c9a318490bc
 DIST paperwork-2.0.1.tar.gz 6224111 BLAKE2B 
b643548caa306ed3a7ce049694518ee25e102c73968eab9a812d4b088213593d08d262f71510bae61b015f685f0ca38e578c4ec6db0df279f42ba068b450a813
 SHA512 
bda94421e48a76878c661f201f07cb3d10c932dab3da33cacf229214022ec0ebcfbfef675d12bf62865b11e05d9450057244d5ed6bf4d3073df99823dece6087
+DIST paperwork-2.0.2.tar.gz 6222075 BLAKE2B 
6dba798ae2b18ba81891c8f9c29e1e2bc8670f24a65e554aa169f05fbf1a89382b9ea24abaa1784da657ac5b9d9d145ffbadaff86ddc3583023f164ffb40c351
 SHA512 
bde28c167eac5b134b4bdf0f2ac8d93eca4f99c1881ca0edc105c33674114b3a4e3508a1f45048f45ce1c2f6b690a0f765c1b980dbe42c7e1282172f12c3a853

diff --git a/app-text/paperwork/paperwork-2.0.2.ebuild 
b/app-text/paperwork/paperwork-2.0.2.ebuild
new file mode 100644
index 000..0e238eca623
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.0.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2021-01-02 Thread Bernard Cafarelli
commit: 95f343770af0a5ef80c556f6723d8f0b0ac00f26
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Jan  2 10:45:59 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Jan  2 10:58:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f34377

app-text/paperwork-backend: 2.0.2 bump

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.0.2.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 9d34bac8f71..b4a3ee1ada2 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.3.1.tar.gz 62343 BLAKE2B 
2d391f63b0eaa010695b3c11b35a6c89df9df9f60d45401d8bad711743037379cdb856d8f6b0ba9f7837ac272c2d6fcbe6f58808d8b5047dccf210fbd9a3c98c
 SHA512 
e845ddd4d01be0f4d89e7e4a0a728d06b90b87a551dca3a88426d1ce6487bc000676c997df73d13662ea8f93aced8e8dee8d44ed4fa588a4c8bd514135610c35
 DIST paperwork-backend-2.0.1.tar.gz 1283518 BLAKE2B 
853e4733e16f1da503eb0a8de940c0d5a9379a3f82db50a96c6cdee82ff1b137c3b4ae4f128385217ab6cf43dfd0a3087fdd05bbde0da901c07053273b63f8e0
 SHA512 
14b072264436a300467ec9e45dc40c3ff9fab5c4ec383f6656b9cd89eabf37bf5e79118c02c67c65eece5e5d3809f3944049503a578e4616d440efbacfb46495
+DIST paperwork-backend-2.0.2.tar.gz 1293642 BLAKE2B 
3785f69e941c14c1146ff1c9a5afa149559821f915ff1068b38f94c3fc3fbd591c2144f24070232e885b616eeb88b5dd1a7c86d608d9ad42f6512688db79b1fe
 SHA512 
36261b89078e7ca10ddda3ad03871db34931d8a04f16edd663873a2f7c46b527bd607c27d0f4ff005ed869c16e0b7065992e629e257677b46d5ccb4b9a1dc7b2

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild
new file mode 100644
index 000..c4ef89b0740
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.0.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2020-12-29 Thread Bernard Cafarelli
commit: 2e1287b139a16df2589990b5ec15dda115ff58ed
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Dec 29 16:40:44 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Dec 29 16:41:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1287b1

app-text/paperwork: 2.0.1 bump

New dependencies from code split

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-2.0.1.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index bf47c396a8d..5188a21e886 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-1.3.1.tar.gz 4631298 BLAKE2B 
9b111c524da29c6d547141a64ff39a5c50f18375484ae60702a2c7ce57a7be51b62621cf114ffbfa9c2175f9978225525f321449a4a9cad2570cd26dd956e496
 SHA512 
a0e6a95ebd0b5bfc290b8981488967bb5f2198ac5ec768f824ed487648d0dea6abc3ab8b8cfd8107eac1223a5ecb351a5362d9cbd7d5efccf5cb8c9a318490bc
+DIST paperwork-2.0.1.tar.gz 6224111 BLAKE2B 
b643548caa306ed3a7ce049694518ee25e102c73968eab9a812d4b088213593d08d262f71510bae61b015f685f0ca38e578c4ec6db0df279f42ba068b450a813
 SHA512 
bda94421e48a76878c661f201f07cb3d10c932dab3da33cacf229214022ec0ebcfbfef675d12bf62865b11e05d9450057244d5ed6bf4d3073df99823dece6087

diff --git a/app-text/paperwork/paperwork-2.0.1.ebuild 
b/app-text/paperwork/paperwork-2.0.1.ebuild
new file mode 100644
index 000..1faa310cc1f
--- /dev/null
+++ b/app-text/paperwork/paperwork-2.0.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/openpaperwork-core-${PV}[${PYTHON_USEDEP}]
+   ~app-text/openpaperwork-gtk-${PV}[${PYTHON_USEDEP}]
+   ~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2020-12-29 Thread Bernard Cafarelli
commit: d21d5bc37cd0075d3003fe9de270760f58b5c76f
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Dec 29 16:11:22 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Dec 29 16:41:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d21d5bc3

app-text/paperwork-backend: 2.0.1 bump

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-2.0.1.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 86ef9a516c4..9d34bac8f71 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-1.3.1.tar.gz 62343 BLAKE2B 
2d391f63b0eaa010695b3c11b35a6c89df9df9f60d45401d8bad711743037379cdb856d8f6b0ba9f7837ac272c2d6fcbe6f58808d8b5047dccf210fbd9a3c98c
 SHA512 
e845ddd4d01be0f4d89e7e4a0a728d06b90b87a551dca3a88426d1ce6487bc000676c997df73d13662ea8f93aced8e8dee8d44ed4fa588a4c8bd514135610c35
+DIST paperwork-backend-2.0.1.tar.gz 1283518 BLAKE2B 
853e4733e16f1da503eb0a8de940c0d5a9379a3f82db50a96c6cdee82ff1b137c3b4ae4f128385217ab6cf43dfd0a3087fdd05bbde0da901c07053273b63f8e0
 SHA512 
14b072264436a300467ec9e45dc40c3ff9fab5c4ec383f6656b9cd89eabf37bf5e79118c02c67c65eece5e5d3809f3944049503a578e4616d440efbacfb46495

diff --git a/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild
new file mode 100644
index 000..b0dd1ae934b
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-2.0.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2020-10-07 Thread Bernard Cafarelli
commit: f5ba41c6f41b4fc109a2eb782029947c9054658c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Oct  7 20:58:23 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Oct  7 20:58:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ba41c6

app-text/paperwork-backend: set DISTUTILS_USE_SETUPTOOLS

It has entry_points

Closes: https://bugs.gentoo.org/746659
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../paperwork-backend-1.3.1-r1.ebuild  | 31 ++
 1 file changed, 31 insertions(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild
new file mode 100644
index 000..3b1b1ba13b5
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.3.1-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2020-04-19 Thread Bernard Cafarelli
commit: 6265a43f8c7428a09cf5a479fcf111fcf3750a18
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Apr 19 12:15:38 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Apr 19 12:25:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6265a43f

app-text/paperwork: update python version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/paperwork/paperwork-1.3.1.ebuild 
b/app-text/paperwork/paperwork-1.3.1.ebuild
index e734cbe20ef..a5449c6e047 100644
--- a/app-text/paperwork/paperwork-1.3.1.ebuild
+++ b/app-text/paperwork/paperwork-1.3.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2020-04-19 Thread Bernard Cafarelli
commit: e3f0df636cfac35c804086486fbe322d03a25ff5
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Apr 19 12:09:15 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Apr 19 12:25:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3f0df63

app-text/paperwork-backend: update python version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
index ec1773147b2..b45ed850cb7 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2020-03-17 Thread Bernard Cafarelli
commit: d9b51dbc1be613cff39149ebdaf22893d4046ff3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 17 10:32:10 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 17 10:32:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b51dbc

app-text/paperwork-backend: drop github remote-id

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/metadata.xml   | 1 -
 app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-text/paperwork-backend/metadata.xml 
b/app-text/paperwork-backend/metadata.xml
index a6369c9ecae..0119fbc6c78 100644
--- a/app-text/paperwork-backend/metadata.xml
+++ b/app-text/paperwork-backend/metadata.xml
@@ -7,6 +7,5 @@
   
   
 paperwork-backend
-openpaperwork/paperwork-backend
   
 

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
index 3e203a399ad..ec1773147b2 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_6 )
 inherit distutils-r1
 
 DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2020-03-17 Thread Bernard Cafarelli
commit: 15b8323929935abee98ad475d685bdf00cf0df8e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 17 10:23:47 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 17 10:32:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b83239

app-text/paperwork: drop old

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest  |  2 --
 app-text/paperwork/paperwork-1.2.4-r2.ebuild | 31 
 app-text/paperwork/paperwork-1.3.0.ebuild| 31 
 3 files changed, 64 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 330c65bc48c..bf47c396a8d 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1 @@
-DIST paperwork-1.2.4.tar.gz 4379567 BLAKE2B 
19d9c00ba678ef4c2236379311d4b9f0d01bbf908ca26c0dfebf53894f4a89539ddff9ac4065f703a981e723d0573b417b8ac39c3a2a94c75f94401fa537d688
 SHA512 
33292b0cc16046a10a49f5df4a1750b395e95fb898637c81e980ee10cc1525a5783878451ad84a70b62c1c1de73f3701bf40452779490171966decd9b896f4d9
-DIST paperwork-1.3.0.tar.gz 4625505 BLAKE2B 
866a043216dd603fa4700ac09b998c55735e6a5fe09fc3ab02aeb6b68cc62f239e86f8116d84ae1571235e7d9230cbe25bb878909e3f7e542164d5f76440f367
 SHA512 
6f0b7b88d62520dd69fe8ee6a033a8cde9e48ba093ce7ec77df26549df29e7a0d8eb2bfef9f74e41a722cbd1d2d7693efbffa5327838708c9af54c76634b967e
 DIST paperwork-1.3.1.tar.gz 4631298 BLAKE2B 
9b111c524da29c6d547141a64ff39a5c50f18375484ae60702a2c7ce57a7be51b62621cf114ffbfa9c2175f9978225525f321449a4a9cad2570cd26dd956e496
 SHA512 
a0e6a95ebd0b5bfc290b8981488967bb5f2198ac5ec768f824ed487648d0dea6abc3ab8b8cfd8107eac1223a5ecb351a5362d9cbd7d5efccf5cb8c9a318490bc

diff --git a/app-text/paperwork/paperwork-1.2.4-r2.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r2.ebuild
deleted file mode 100644
index 79426a67db7..000
--- a/app-text/paperwork/paperwork-1.2.4-r2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.3.0.ebuild 
b/app-text/paperwork/paperwork-1.3.0.ebuild
deleted file mode 100644
index 95b004a9b3e..000
--- a/app-text/paperwork/paperwork-1.3.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   media-libs/libinsane
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2020-03-17 Thread Bernard Cafarelli
commit: f6965df2147ba6748a36b74279de3b2b3de64819
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 17 10:24:24 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 17 10:32:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6965df2

app-text/paperwork-backend: drop old

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  2 --
 .../paperwork-backend-1.2.4.ebuild | 29 -
 .../paperwork-backend-1.3.0.ebuild | 30 --
 3 files changed, 61 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 1f1b908194f..86ef9a516c4 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1 @@
-DIST paperwork-backend-1.2.4.tar.gz 59998 BLAKE2B 
e92bfbc311a38563fcb38511e8961c081b7c5d3a445ae9b18a80cb6848edbca2460a37b3f0c81d284a04974954cecbced0122a0bc66b3bbf10dc1bc1784b9969
 SHA512 
aba8cfd7abe9058e3433c64a96c1f79b451d8bdc661fa16ed7eb19f1b7e15efef024c94557082ec4d71c5adbaf268254af34f1eef8a35bad5e322409821ed5c4
-DIST paperwork-backend-1.3.0.tar.gz 62119 BLAKE2B 
0dcb4c4d3c96cef8ab993449da46a01168be0b1ade8bb56eada723f046a0b82eb9b8b7c15b7706ab8b6be8e22166e2e01082e57d85a68c5ca919a081ad67fade
 SHA512 
127b71db39a54533f520bb6969a36c48b54827f5720efb40728b133d4362901cbe4a20aa84337c1e8262338ae528ed502c23fedee703898a53e08b3bd5dfd7e0
 DIST paperwork-backend-1.3.1.tar.gz 62343 BLAKE2B 
2d391f63b0eaa010695b3c11b35a6c89df9df9f60d45401d8bad711743037379cdb856d8f6b0ba9f7837ac272c2d6fcbe6f58808d8b5047dccf210fbd9a3c98c
 SHA512 
e845ddd4d01be0f4d89e7e4a0a728d06b90b87a551dca3a88426d1ce6487bc000676c997df73d13662ea8f93aced8e8dee8d44ed4fa588a4c8bd514135610c35

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
deleted file mode 100644
index 0a832e42581..000
--- a/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild
deleted file mode 100644
index c49aa73fbd5..000
--- a/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2020-03-17 Thread Bernard Cafarelli
commit: 57ed633f6504f5ca0fea4b7300ae60ddd7d62948
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 17 10:30:53 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 17 10:32:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ed633f

app-text/paperwork: drop github remote-id

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-text/paperwork/metadata.xml b/app-text/paperwork/metadata.xml
index e2d2240fe2c..de2ee75db18 100644
--- a/app-text/paperwork/metadata.xml
+++ b/app-text/paperwork/metadata.xml
@@ -14,6 +14,5 @@ In other words, let the machine do most of the work for you.
 
   
 paperwork-backend
-openpaperwork/paperwork
   
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2019-12-30 Thread Bernard Cafarelli
commit: dab56720f2a6e669f70307aabfda901d710d0489
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Dec 30 13:44:03 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Dec 30 13:57:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab56720

app-text/paperwork-backend: 1.3.1 bump

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.3.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index e6889e2ce50..1f1b908194f 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.2.4.tar.gz 59998 BLAKE2B 
e92bfbc311a38563fcb38511e8961c081b7c5d3a445ae9b18a80cb6848edbca2460a37b3f0c81d284a04974954cecbced0122a0bc66b3bbf10dc1bc1784b9969
 SHA512 
aba8cfd7abe9058e3433c64a96c1f79b451d8bdc661fa16ed7eb19f1b7e15efef024c94557082ec4d71c5adbaf268254af34f1eef8a35bad5e322409821ed5c4
 DIST paperwork-backend-1.3.0.tar.gz 62119 BLAKE2B 
0dcb4c4d3c96cef8ab993449da46a01168be0b1ade8bb56eada723f046a0b82eb9b8b7c15b7706ab8b6be8e22166e2e01082e57d85a68c5ca919a081ad67fade
 SHA512 
127b71db39a54533f520bb6969a36c48b54827f5720efb40728b133d4362901cbe4a20aa84337c1e8262338ae528ed502c23fedee703898a53e08b3bd5dfd7e0
+DIST paperwork-backend-1.3.1.tar.gz 62343 BLAKE2B 
2d391f63b0eaa010695b3c11b35a6c89df9df9f60d45401d8bad711743037379cdb856d8f6b0ba9f7837ac272c2d6fcbe6f58808d8b5047dccf210fbd9a3c98c
 SHA512 
e845ddd4d01be0f4d89e7e4a0a728d06b90b87a551dca3a88426d1ce6487bc000676c997df73d13662ea8f93aced8e8dee8d44ed4fa588a4c8bd514135610c35

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
new file mode 100644
index 000..9d645de62a8
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.3.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2019-12-30 Thread Bernard Cafarelli
commit: 3f5277aee865ae8a2c90744adfaaedbbffa70f12
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Dec 30 13:44:45 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Dec 30 13:57:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f5277ae

app-text/paperwork: 1.3.1 bump

Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.3.1.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 8560c3e03ca..330c65bc48c 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-1.2.4.tar.gz 4379567 BLAKE2B 
19d9c00ba678ef4c2236379311d4b9f0d01bbf908ca26c0dfebf53894f4a89539ddff9ac4065f703a981e723d0573b417b8ac39c3a2a94c75f94401fa537d688
 SHA512 
33292b0cc16046a10a49f5df4a1750b395e95fb898637c81e980ee10cc1525a5783878451ad84a70b62c1c1de73f3701bf40452779490171966decd9b896f4d9
 DIST paperwork-1.3.0.tar.gz 4625505 BLAKE2B 
866a043216dd603fa4700ac09b998c55735e6a5fe09fc3ab02aeb6b68cc62f239e86f8116d84ae1571235e7d9230cbe25bb878909e3f7e542164d5f76440f367
 SHA512 
6f0b7b88d62520dd69fe8ee6a033a8cde9e48ba093ce7ec77df26549df29e7a0d8eb2bfef9f74e41a722cbd1d2d7693efbffa5327838708c9af54c76634b967e
+DIST paperwork-1.3.1.tar.gz 4631298 BLAKE2B 
9b111c524da29c6d547141a64ff39a5c50f18375484ae60702a2c7ce57a7be51b62621cf114ffbfa9c2175f9978225525f321449a4a9cad2570cd26dd956e496
 SHA512 
a0e6a95ebd0b5bfc290b8981488967bb5f2198ac5ec768f824ed487648d0dea6abc3ab8b8cfd8107eac1223a5ecb351a5362d9cbd7d5efccf5cb8c9a318490bc

diff --git a/app-text/paperwork/paperwork-1.3.1.ebuild 
b/app-text/paperwork/paperwork-1.3.1.ebuild
new file mode 100644
index 000..b7294905015
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.3.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2019-08-23 Thread Bernard Cafarelli
commit: 681188b533fce37252a3d93313abbcc0eaffe23b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Aug 23 16:51:47 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Aug 23 16:54:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681188b5

app-text/paperwork-backend: 1.3.0 bump

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.3.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 2b12c3bfd7a..e6889e2ce50 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-1.2.4.tar.gz 59998 BLAKE2B 
e92bfbc311a38563fcb38511e8961c081b7c5d3a445ae9b18a80cb6848edbca2460a37b3f0c81d284a04974954cecbced0122a0bc66b3bbf10dc1bc1784b9969
 SHA512 
aba8cfd7abe9058e3433c64a96c1f79b451d8bdc661fa16ed7eb19f1b7e15efef024c94557082ec4d71c5adbaf268254af34f1eef8a35bad5e322409821ed5c4
+DIST paperwork-backend-1.3.0.tar.gz 62119 BLAKE2B 
0dcb4c4d3c96cef8ab993449da46a01168be0b1ade8bb56eada723f046a0b82eb9b8b7c15b7706ab8b6be8e22166e2e01082e57d85a68c5ca919a081ad67fade
 SHA512 
127b71db39a54533f520bb6969a36c48b54827f5720efb40728b133d4362901cbe4a20aa84337c1e8262338ae528ed502c23fedee703898a53e08b3bd5dfd7e0

diff --git a/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild
new file mode 100644
index 000..05cf31677eb
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.3.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2019-08-23 Thread Bernard Cafarelli
commit: 3481a13019c393fdc75726a268e433138e00b85d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Aug 23 16:52:07 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Aug 23 16:54:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3481a130

app-text/paperwork: 1.3.0 bump

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.3.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 86a078363d8..8560c3e03ca 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-1.2.4.tar.gz 4379567 BLAKE2B 
19d9c00ba678ef4c2236379311d4b9f0d01bbf908ca26c0dfebf53894f4a89539ddff9ac4065f703a981e723d0573b417b8ac39c3a2a94c75f94401fa537d688
 SHA512 
33292b0cc16046a10a49f5df4a1750b395e95fb898637c81e980ee10cc1525a5783878451ad84a70b62c1c1de73f3701bf40452779490171966decd9b896f4d9
+DIST paperwork-1.3.0.tar.gz 4625505 BLAKE2B 
866a043216dd603fa4700ac09b998c55735e6a5fe09fc3ab02aeb6b68cc62f239e86f8116d84ae1571235e7d9230cbe25bb878909e3f7e542164d5f76440f367
 SHA512 
6f0b7b88d62520dd69fe8ee6a033a8cde9e48ba093ce7ec77df26549df29e7a0d8eb2bfef9f74e41a722cbd1d2d7693efbffa5327838708c9af54c76634b967e

diff --git a/app-text/paperwork/paperwork-1.3.0.ebuild 
b/app-text/paperwork/paperwork-1.3.0.ebuild
new file mode 100644
index 000..bff55ca7a05
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.3.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   media-libs/libinsane
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2019-03-08 Thread Bernard Cafarelli
commit: a0e52d4edf1f4e56cbb9b6aecfa60965077e62df
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Mar  8 14:24:01 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Mar  8 14:24:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0e52d4e

app-text/paperwork: drop py3.4

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-1.2.4-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/paperwork/paperwork-1.2.4-r2.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r2.ebuild
index 9e4ef25a507..0003108d428 100644
--- a/app-text/paperwork/paperwork-1.2.4-r2.ebuild
+++ b/app-text/paperwork/paperwork-1.2.4-r2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{5,6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2019-03-08 Thread Bernard Cafarelli
commit: 78ee79cb150ab8de921ae8acd285512791f22afa
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Mar  8 14:23:35 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Mar  8 14:24:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ee79cb

app-text/paperwork-backend: drop py3.4

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
index 5eb5f6caeeb..c2523e5983c 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{5,6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2019-03-08 Thread Bernard Cafarelli
commit: b33407c934b2bfeeb13562bb262aa34be5b9f01a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Mar  8 11:11:55 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Mar  8 11:24:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33407c9

app-text/paperwork: drop old revisions

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 app-text/paperwork/paperwork-1.2.4-r1.ebuild | 30 ---
 app-text/paperwork/paperwork-1.2.4.ebuild| 31 
 2 files changed, 61 deletions(-)

diff --git a/app-text/paperwork/paperwork-1.2.4-r1.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r1.ebuild
deleted file mode 100644
index 9156358a08b..000
--- a/app-text/paperwork/paperwork-1.2.4-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.2.4.ebuild 
b/app-text/paperwork/paperwork-1.2.4.ebuild
deleted file mode 100644
index 2c75a8c54b2..000
--- a/app-text/paperwork/paperwork-1.2.4.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-09-27 Thread Bernard Cafarelli
commit: 0b388e1bbe0585fcfb5333f8a222dc28cab5adb4
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Sep 27 13:13:18 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Sep 27 13:14:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b388e1b

app-text/paperwork: require dev-python/python-dateutil

Closes: https://bugs.gentoo.org/666300
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 app-text/paperwork/paperwork-1.2.4-r2.ebuild | 31 
 1 file changed, 31 insertions(+)

diff --git a/app-text/paperwork/paperwork-1.2.4-r2.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r2.ebuild
new file mode 100644
index 000..9e4ef25a507
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.4-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-09-27 Thread Bernard Cafarelli
commit: d6d9fc63637078905e55be7faf8ee0f72c42f927
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Sep 27 13:11:09 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Sep 27 13:14:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d9fc63

app-text/paperwork: drop old

Package-Manager: Portage-2.3.50, Repoman-2.3.11

 app-text/paperwork/Manifest   |  2 --
 app-text/paperwork/paperwork-1.2.2.ebuild | 31 ---
 app-text/paperwork/paperwork-1.2.3.ebuild | 31 ---
 3 files changed, 64 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index a875eea79ce..86a078363d8 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1 @@
-DIST paperwork-1.2.2.tar.gz 8124352 BLAKE2B 
b88d03f0ab5f2512a2fb87a614c61458c3bb771b7803316feae526299e8823aaec73133a96e501f44d10f0c540c9697ddff32de557f060f289a2c7245d808b27
 SHA512 
e38d269e03f77bc3ffc75f9b77c960e69b8c3f67aac26a38f39b324118ecdcb5a293de8f50226da07f913f3c849b7602b3250304bc348fb2f6d6816d09b17257
-DIST paperwork-1.2.3.tar.gz 8120802 BLAKE2B 
8af1b9ff1f7049b0be04186a9b658804283cffcd94aa795e53fbce92e54abef8f6e63416aebbb3fdd54fd462c4ab057214283b4267a42d5cabc33cd2b84f0d2f
 SHA512 
95e0909253e942917825b3475f5c8a0ea81dfc311c90f17f9141326ef58e82e4bcbb8235223cc2ce15bf491895de93810caaacc90cc7bcbe8a65aeafdf1eb9f9
 DIST paperwork-1.2.4.tar.gz 4379567 BLAKE2B 
19d9c00ba678ef4c2236379311d4b9f0d01bbf908ca26c0dfebf53894f4a89539ddff9ac4065f703a981e723d0573b417b8ac39c3a2a94c75f94401fa537d688
 SHA512 
33292b0cc16046a10a49f5df4a1750b395e95fb898637c81e980ee10cc1525a5783878451ad84a70b62c1c1de73f3701bf40452779490171966decd9b896f4d9

diff --git a/app-text/paperwork/paperwork-1.2.2.ebuild 
b/app-text/paperwork/paperwork-1.2.2.ebuild
deleted file mode 100644
index ca20baeb28f..000
--- a/app-text/paperwork/paperwork-1.2.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.2.3.ebuild 
b/app-text/paperwork/paperwork-1.2.3.ebuild
deleted file mode 100644
index ca20baeb28f..000
--- a/app-text/paperwork/paperwork-1.2.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2018-09-27 Thread Bernard Cafarelli
commit: b04f2c6f4e72a901b77260d9cf5cd1887a88026f
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Sep 27 13:11:55 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Sep 27 13:14:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04f2c6f

app-text/paperwork-backend: drop old

Package-Manager: Portage-2.3.50, Repoman-2.3.11

 app-text/paperwork-backend/Manifest|  2 --
 .../paperwork-backend-1.2.2.ebuild | 29 --
 .../paperwork-backend-1.2.3.ebuild | 29 --
 3 files changed, 60 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 946d66f6f02..2b12c3bfd7a 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1 @@
-DIST paperwork-backend-1.2.2.tar.gz 64271 BLAKE2B 
8261f64585d113a0a06a556e93c06cb528c60e1a906e2926aa55a39d363988ba9949ee7c51ab83efb683aa9beb986883e12e0895063e1a350a4ecdc23bb71cf6
 SHA512 
6fbf00f657134f1aeae0850f58adce0cef4dc292898db3fde725d404bea5d2fc73c386ce8c1f37ae7980997c23ba9489c13e02e3e9d056cca8014cf5691e5ef8
-DIST paperwork-backend-1.2.3.tar.gz 64676 BLAKE2B 
9d6b43b7fea5a246e78d6cb250cbe94dc33dd0afea086933819d3392242c02c47789465e710313fd00b3e1731d936fa52d3086f00ba51a5c7cbaa4a9dfb2870a
 SHA512 
1d79fa258c9e08d582797444257877e87bd8bb8413cea48419c6fea76d4b023b18fcb4d5831e09eca1561bea852e27f105841b04a44c319a0f9d7fc102c2c4d5
 DIST paperwork-backend-1.2.4.tar.gz 59998 BLAKE2B 
e92bfbc311a38563fcb38511e8961c081b7c5d3a445ae9b18a80cb6848edbca2460a37b3f0c81d284a04974954cecbced0122a0bc66b3bbf10dc1bc1784b9969
 SHA512 
aba8cfd7abe9058e3433c64a96c1f79b451d8bdc661fa16ed7eb19f1b7e15efef024c94557082ec4d71c5adbaf268254af34f1eef8a35bad5e322409821ed5c4

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild
deleted file mode 100644
index da6daad0240..000
--- a/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild
deleted file mode 100644
index f0f34d215f9..000
--- a/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-07-26 Thread Manuel Rüger
commit: 616d9f9a47c4eed744924823eea647ab8476c7e5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 26 13:41:45 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 26 13:41:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616d9f9a

app-text/paperwork: Drop dependency on pycrypto, update Homepage

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-text/paperwork/paperwork-1.2.4-r1.ebuild | 30 
 1 file changed, 30 insertions(+)

diff --git a/app-text/paperwork/paperwork-1.2.4-r1.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r1.ebuild
new file mode 100644
index 000..9156358a08b
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.4-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2018-04-09 Thread Bernard Cafarelli
commit: 1a1fb208d8c8af87657ea222b240f31aa89241b6
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  9 09:46:13 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  9 10:15:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1fb208

app-text/paperwork-backend: 1.2.4 bump

Switch to pypi releases (and add link in metadata)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-text/paperwork-backend/Manifest|  1 +
 app-text/paperwork-backend/metadata.xml|  1 +
 .../paperwork-backend-1.2.4.ebuild | 29 ++
 3 files changed, 31 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index c7e0b823d89..946d66f6f02 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.2.2.tar.gz 64271 BLAKE2B 
8261f64585d113a0a06a556e93c06cb528c60e1a906e2926aa55a39d363988ba9949ee7c51ab83efb683aa9beb986883e12e0895063e1a350a4ecdc23bb71cf6
 SHA512 
6fbf00f657134f1aeae0850f58adce0cef4dc292898db3fde725d404bea5d2fc73c386ce8c1f37ae7980997c23ba9489c13e02e3e9d056cca8014cf5691e5ef8
 DIST paperwork-backend-1.2.3.tar.gz 64676 BLAKE2B 
9d6b43b7fea5a246e78d6cb250cbe94dc33dd0afea086933819d3392242c02c47789465e710313fd00b3e1731d936fa52d3086f00ba51a5c7cbaa4a9dfb2870a
 SHA512 
1d79fa258c9e08d582797444257877e87bd8bb8413cea48419c6fea76d4b023b18fcb4d5831e09eca1561bea852e27f105841b04a44c319a0f9d7fc102c2c4d5
+DIST paperwork-backend-1.2.4.tar.gz 59998 BLAKE2B 
e92bfbc311a38563fcb38511e8961c081b7c5d3a445ae9b18a80cb6848edbca2460a37b3f0c81d284a04974954cecbced0122a0bc66b3bbf10dc1bc1784b9969
 SHA512 
aba8cfd7abe9058e3433c64a96c1f79b451d8bdc661fa16ed7eb19f1b7e15efef024c94557082ec4d71c5adbaf268254af34f1eef8a35bad5e322409821ed5c4

diff --git a/app-text/paperwork-backend/metadata.xml 
b/app-text/paperwork-backend/metadata.xml
index 911820b2dd3..a6369c9ecae 100644
--- a/app-text/paperwork-backend/metadata.xml
+++ b/app-text/paperwork-backend/metadata.xml
@@ -6,6 +6,7 @@
 Bernard Cafarelli
   
   
+paperwork-backend
 openpaperwork/paperwork-backend
   
 

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
new file mode 100644
index 000..5eb5f6caeeb
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-04-09 Thread Bernard Cafarelli
commit: a9f7ab73d7e62c306b64d861fb9159d2e3894ad5
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  9 09:47:38 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  9 10:15:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f7ab73

app-text/paperwork: 1.2.4 bump

Switch to pypi releases (and add link in metadata)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/metadata.xml   |  1 +
 app-text/paperwork/paperwork-1.2.4.ebuild | 31 +++
 3 files changed, 33 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 439d18521fa..a875eea79ce 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-1.2.2.tar.gz 8124352 BLAKE2B 
b88d03f0ab5f2512a2fb87a614c61458c3bb771b7803316feae526299e8823aaec73133a96e501f44d10f0c540c9697ddff32de557f060f289a2c7245d808b27
 SHA512 
e38d269e03f77bc3ffc75f9b77c960e69b8c3f67aac26a38f39b324118ecdcb5a293de8f50226da07f913f3c849b7602b3250304bc348fb2f6d6816d09b17257
 DIST paperwork-1.2.3.tar.gz 8120802 BLAKE2B 
8af1b9ff1f7049b0be04186a9b658804283cffcd94aa795e53fbce92e54abef8f6e63416aebbb3fdd54fd462c4ab057214283b4267a42d5cabc33cd2b84f0d2f
 SHA512 
95e0909253e942917825b3475f5c8a0ea81dfc311c90f17f9141326ef58e82e4bcbb8235223cc2ce15bf491895de93810caaacc90cc7bcbe8a65aeafdf1eb9f9
+DIST paperwork-1.2.4.tar.gz 4379567 BLAKE2B 
19d9c00ba678ef4c2236379311d4b9f0d01bbf908ca26c0dfebf53894f4a89539ddff9ac4065f703a981e723d0573b417b8ac39c3a2a94c75f94401fa537d688
 SHA512 
33292b0cc16046a10a49f5df4a1750b395e95fb898637c81e980ee10cc1525a5783878451ad84a70b62c1c1de73f3701bf40452779490171966decd9b896f4d9

diff --git a/app-text/paperwork/metadata.xml b/app-text/paperwork/metadata.xml
index 2b459e66b55..e2d2240fe2c 100644
--- a/app-text/paperwork/metadata.xml
+++ b/app-text/paperwork/metadata.xml
@@ -13,6 +13,7 @@ It's designed to be easy and fast to use. The idea behind 
Paperwork is "scan and
 In other words, let the machine do most of the work for you.
 
   
+paperwork-backend
 openpaperwork/paperwork
   
 

diff --git a/app-text/paperwork/paperwork-1.2.4.ebuild 
b/app-text/paperwork/paperwork-1.2.4.ebuild
new file mode 100644
index 000..2c75a8c54b2
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2018-02-18 Thread Bernard Cafarelli
commit: b0f632b5b557632c3973e461cc8d008a57a56015
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  8 10:45:38 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Feb 18 19:23:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f632b5

app-text/paperwork-backend: 1.2.3 bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.2.3.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 2ebd2ab84b4..c7e0b823d89 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-1.2.2.tar.gz 64271 BLAKE2B 
8261f64585d113a0a06a556e93c06cb528c60e1a906e2926aa55a39d363988ba9949ee7c51ab83efb683aa9beb986883e12e0895063e1a350a4ecdc23bb71cf6
 SHA512 
6fbf00f657134f1aeae0850f58adce0cef4dc292898db3fde725d404bea5d2fc73c386ce8c1f37ae7980997c23ba9489c13e02e3e9d056cca8014cf5691e5ef8
+DIST paperwork-backend-1.2.3.tar.gz 64676 BLAKE2B 
9d6b43b7fea5a246e78d6cb250cbe94dc33dd0afea086933819d3392242c02c47789465e710313fd00b3e1731d936fa52d3086f00ba51a5c7cbaa4a9dfb2870a
 SHA512 
1d79fa258c9e08d582797444257877e87bd8bb8413cea48419c6fea76d4b023b18fcb4d5831e09eca1561bea852e27f105841b04a44c319a0f9d7fc102c2c4d5

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild
new file mode 100644
index 000..f0f34d215f9
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-02-18 Thread Bernard Cafarelli
commit: 37693a3c42cffcdb3996f4e4bb034f68080ec8b3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  8 10:46:34 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Feb 18 19:23:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37693a3c

app-text/paperwork: 1.2.3 bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.2.3.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index cfeaedd5496..439d18521fa 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-1.2.2.tar.gz 8124352 BLAKE2B 
b88d03f0ab5f2512a2fb87a614c61458c3bb771b7803316feae526299e8823aaec73133a96e501f44d10f0c540c9697ddff32de557f060f289a2c7245d808b27
 SHA512 
e38d269e03f77bc3ffc75f9b77c960e69b8c3f67aac26a38f39b324118ecdcb5a293de8f50226da07f913f3c849b7602b3250304bc348fb2f6d6816d09b17257
+DIST paperwork-1.2.3.tar.gz 8120802 BLAKE2B 
8af1b9ff1f7049b0be04186a9b658804283cffcd94aa795e53fbce92e54abef8f6e63416aebbb3fdd54fd462c4ab057214283b4267a42d5cabc33cd2b84f0d2f
 SHA512 
95e0909253e942917825b3475f5c8a0ea81dfc311c90f17f9141326ef58e82e4bcbb8235223cc2ce15bf491895de93810caaacc90cc7bcbe8a65aeafdf1eb9f9

diff --git a/app-text/paperwork/paperwork-1.2.3.ebuild 
b/app-text/paperwork/paperwork-1.2.3.ebuild
new file mode 100644
index 000..ca20baeb28f
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2018-01-12 Thread Bernard Cafarelli
commit: a7ebb9b43c2d3af52e716e247935e58727b1c6a1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jan 12 17:49:34 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jan 12 17:57:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ebb9b4

app-text/paperwork-backend: drop old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/paperwork-backend/Manifest|  3 ---
 .../paperwork-backend-1.1.2.ebuild | 28 -
 .../paperwork-backend-1.2.1.ebuild | 29 --
 .../paperwork-backend/paperwork-backend-1.2.ebuild | 29 --
 4 files changed, 89 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 93b8e255f6e..2ebd2ab84b4 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,4 +1 @@
-DIST paperwork-backend-1.1.2.tar.gz 54340 BLAKE2B 
133be8b0e9d7a768eaea0353c53b3f968f8e82cca26f02bee1d95becddaa7e0ad7f27f867df67333227b6aeb9ebb6841ae9a530f9d58e8d85078d09d58f8e70b
 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
-DIST paperwork-backend-1.2.1.tar.gz 63417 BLAKE2B 
430117a0c6b33fa337318a566e1aaf23ac13dce5c6a04dad82486f87c53662d7d4d06059dc0581d4aa4b82a8366d3a60ee7eeff6e3d0ec1252c61b1da63e2efd
 SHA512 
01878b8580187aeca45248a133a92b83c3f8e8012b6bbacc6e625ca447979c01633573cbb59a4460b88aae6f89db2ae618c27019bd940a391a30dccde1c54696
 DIST paperwork-backend-1.2.2.tar.gz 64271 BLAKE2B 
8261f64585d113a0a06a556e93c06cb528c60e1a906e2926aa55a39d363988ba9949ee7c51ab83efb683aa9beb986883e12e0895063e1a350a4ecdc23bb71cf6
 SHA512 
6fbf00f657134f1aeae0850f58adce0cef4dc292898db3fde725d404bea5d2fc73c386ce8c1f37ae7980997c23ba9489c13e02e3e9d056cca8014cf5691e5ef8
-DIST paperwork-backend-1.2.tar.gz 63167 BLAKE2B 
ead1d7a7a4bba205f33874e8d492658061d448308b2aa78231f630745ed8b8a3273594ac3312010c192522f6a0ab27e1eb80f39cdd658162a27bf9d4f94659e0
 SHA512 
278d7080c9806a6ae68cb15ba9df2ac22bd2c120f0e77a9d7eacbbd6e70476d4fb803c572216e580a068527ae8c10c3f2e66199aca3d94949e655c08214beeb1

diff --git a/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild
deleted file mode 100644
index e287a22cac9..000
--- a/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/jflesch/paperwork-backend;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild
deleted file mode 100644
index da6daad0240..000
--- a/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
deleted file mode 100644
index da6daad0240..000
--- a/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-01-12 Thread Bernard Cafarelli
commit: 057b44f0e2d2ec3474ddcb01ffb8093070aa01d7
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jan 12 17:49:03 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jan 12 17:57:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=057b44f0

app-text/paperwork: drop old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/paperwork/Manifest   |  3 ---
 app-text/paperwork/paperwork-1.1.2.ebuild | 29 -
 app-text/paperwork/paperwork-1.2.1.ebuild | 29 -
 app-text/paperwork/paperwork-1.2.ebuild   | 29 -
 4 files changed, 90 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index cb3a0458241..cfeaedd5496 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,4 +1 @@
-DIST paperwork-1.1.2.tar.gz 331028 BLAKE2B 
3d491666330646fd0a30106cca2a3d6a7ad5fd1a5bf7d853a146a7045ba72884140e08969265282032487a36ae2562a22e2897d817a27dd39f2e2d0fe332b74a
 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
-DIST paperwork-1.2.1.tar.gz 8116070 BLAKE2B 
23ade3706222c4a12b0e145fec7678061498d1af076c74ffd0668f0e92e8c69f8a303e20237641c5b31008532d678725a82f321c0d2781bcb1b2150c8da7
 SHA512 
fb44c048e8669cdc95a358369de418d862c49fe9a9d6cb8d20ce727ae0ca6a57c19cfd5f39fe95ee67c086dd481c22c3717a672f1ac09f3b63a0daa851a8e482
 DIST paperwork-1.2.2.tar.gz 8124352 BLAKE2B 
b88d03f0ab5f2512a2fb87a614c61458c3bb771b7803316feae526299e8823aaec73133a96e501f44d10f0c540c9697ddff32de557f060f289a2c7245d808b27
 SHA512 
e38d269e03f77bc3ffc75f9b77c960e69b8c3f67aac26a38f39b324118ecdcb5a293de8f50226da07f913f3c849b7602b3250304bc348fb2f6d6816d09b17257
-DIST paperwork-1.2.tar.gz 8086428 BLAKE2B 
1431f94ab3a4959e189ca457711b8ff67c55e8b483e41ea4ebfb65316f5a72182970974189a99ffd55b77a16c06d5ae9ac3566b8a5c8fbc70fdf5e5b02c7b9cb
 SHA512 
9c8c43ef31be2eef57ffbcdb00b4e91dd2b1eade75814b789c489abfb6f7bae07e68f7207c8fdef4f3bf95bd68bca8a680b965259106af9f0166bee7a6cf5ea0

diff --git a/app-text/paperwork/paperwork-1.1.2.ebuild 
b/app-text/paperwork/paperwork-1.1.2.ebuild
deleted file mode 100644
index c301f25b4f8..000
--- a/app-text/paperwork/paperwork-1.1.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/jflesch/paperwork;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.2.1.ebuild 
b/app-text/paperwork/paperwork-1.2.1.ebuild
deleted file mode 100644
index 1ce4f4dfe5d..000
--- a/app-text/paperwork/paperwork-1.2.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/openpaperwork/paperwork;
-SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.2.ebuild 
b/app-text/paperwork/paperwork-1.2.ebuild
deleted file mode 100644
index 1ce4f4dfe5d..000
--- a/app-text/paperwork/paperwork-1.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2018-01-12 Thread Bernard Cafarelli
commit: d8a23f63326011668aa1c7a86372ed6f4df05462
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jan 12 17:56:01 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jan 12 17:57:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a23f63

app-text/paperwork: shell needs pyxdg

Thanks Sven Hesse  drmccoy.de> in bug #636790

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/paperwork/paperwork-1.2.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-text/paperwork/paperwork-1.2.2.ebuild 
b/app-text/paperwork/paperwork-1.2.2.ebuild
index 23d0921fdd5..ca20baeb28f 100644
--- a/app-text/paperwork/paperwork-1.2.2.ebuild
+++ b/app-text/paperwork/paperwork-1.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,6 +24,7 @@ RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/pyinsane:2[${PYTHON_USEDEP}]
>=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
dev-python/simplebayes[${PYTHON_USEDEP}]
x11-libs/gtk+:3[introspection]
x11-libs/libnotify[introspection]"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-11-17 Thread Bernard Cafarelli
commit: 9c5de2aaf67f86e70b4edcfbb72f61d45b979f30
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Nov 17 16:37:14 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Nov 17 16:37:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5de2aa

app-text/paperwork: 1.2.2 bump

Add libnotify dependency, should fix bug #636790

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.2.2.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 6ac29adb753..5e4659ef1ee 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-1.1.2.tar.gz 331028 SHA256 
7beaf56fa91fb602d185256f3bbf3d9a85a332efd87d35dc22dbb9051bd94fa8 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
 WHIRLPOOL 
f951a15a9e2c14dbd08cd0b767c99dfa8ba63890d07ca135c347f141696652085494bc42f01d29015676a45fa4bc0f5785e4ec8a33cd5ab46bea48e21770d050
 DIST paperwork-1.2.1.tar.gz 8116070 SHA256 
2b09a86e39125b455180cf17dd50d8b3d195b390bdcb02b9cf0836b0ee81de74 SHA512 
fb44c048e8669cdc95a358369de418d862c49fe9a9d6cb8d20ce727ae0ca6a57c19cfd5f39fe95ee67c086dd481c22c3717a672f1ac09f3b63a0daa851a8e482
 WHIRLPOOL 
a77265b3369b64045e9a252c6c05df7ee5a855e009a3999427605615845f6c96a9f87ed885c724dcc1d8d77fe8a5e5e0cf2b71208262d88f3822757425ec13ed
+DIST paperwork-1.2.2.tar.gz 8124352 SHA256 
f6c43b1f8aac387719d988e873ea3abad500a28e0a7f4f27bab3a789e632948c SHA512 
e38d269e03f77bc3ffc75f9b77c960e69b8c3f67aac26a38f39b324118ecdcb5a293de8f50226da07f913f3c849b7602b3250304bc348fb2f6d6816d09b17257
 WHIRLPOOL 
e5134e955834350bb714e9776b65f7a4a5fdf9905ca4e6a317488d63512b2bc94679598cb27659bc6f3f473bab58318eee4d72b912e23c39abe9fa1f70faaaf5
 DIST paperwork-1.2.tar.gz 8086428 SHA256 
87f4610adfe0f79931d27d9a3c3b5441f77d9db64ed4f72ae2a1bf844df7eca5 SHA512 
9c8c43ef31be2eef57ffbcdb00b4e91dd2b1eade75814b789c489abfb6f7bae07e68f7207c8fdef4f3bf95bd68bca8a680b965259106af9f0166bee7a6cf5ea0
 WHIRLPOOL 
fa0e6acf4bd7514899433077a3ced8fdf8565467dd7cb8cc05ab2c737352d67a8375af98bbed507ab5a73b302cd968dddce2bba8f13a3749edef8562f001

diff --git a/app-text/paperwork/paperwork-1.2.2.ebuild 
b/app-text/paperwork/paperwork-1.2.2.ebuild
new file mode 100644
index 000..23d0921fdd5
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-11-17 Thread Bernard Cafarelli
commit: a91a1916b829160326412af6c192133a400c8c6c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Nov 17 16:24:12 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Nov 17 16:37:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91a1916

app-text/paperwork-backend: 1.2.2 bump

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.2.2.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index f6e715d9b67..1039522841b 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-backend-1.1.2.tar.gz 54340 SHA256 
19b15ed995b06bd9d9a61c82389983fe6d5dffe41b88e87bbe3a5e297dd8 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
 WHIRLPOOL 
ba197dfb5d131e522df9a8b8d77c8a94e01a1001dede460d8e7ecce6c413c1e7735d6bcd19a739b01b4abceb72c88ca654aa59b2a1513eb4aa3bf68132e07330
 DIST paperwork-backend-1.2.1.tar.gz 63417 SHA256 
397a829b741a7b3e311aa239c8bb9e9a21f9596d37c64c99d1f00aab3c52c4c3 SHA512 
01878b8580187aeca45248a133a92b83c3f8e8012b6bbacc6e625ca447979c01633573cbb59a4460b88aae6f89db2ae618c27019bd940a391a30dccde1c54696
 WHIRLPOOL 
7a0f80a581d1077ef57a18ee511e222cacb8496f68fa12efd155790e32eef12de984942be0620fab2936f1436325894ee2c0dc22bd6b43eb053310a1d0e5
+DIST paperwork-backend-1.2.2.tar.gz 64271 SHA256 
edf8e4ac81aef38341e2aa9382b3058258287e9b49f3fe976f73ad9b99b31b1e SHA512 
6fbf00f657134f1aeae0850f58adce0cef4dc292898db3fde725d404bea5d2fc73c386ce8c1f37ae7980997c23ba9489c13e02e3e9d056cca8014cf5691e5ef8
 WHIRLPOOL 
3e65d6e3338eec3c1f1af401ab6c66d5b4dfe4b1fe8ad7c5b784cee3e7dd7ddc326be01c17f6118d091377d9bba65183408f98ebb7ec984415cdc2bbd2e71ec3
 DIST paperwork-backend-1.2.tar.gz 63167 SHA256 
321f1a637b4df6c8d01caa2d172ca10c6285d1515ba75f59471643ef5378 SHA512 
278d7080c9806a6ae68cb15ba9df2ac22bd2c120f0e77a9d7eacbbd6e70476d4fb803c572216e580a068527ae8c10c3f2e66199aca3d94949e655c08214beeb1
 WHIRLPOOL 
c064abc9feaac7a8d55a9e712bc3f0c61d60c7518560d44328d4cf3147614914445c9a29598b4d536e29186af793851acfcc6d2b0e3d5a3f7b93ed2987bfe144

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild
new file mode 100644
index 000..da6daad0240
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-11-06 Thread Bernard Cafarelli
commit: 130c7cb4b8ec2d2b9c987582326beea5dd65f56d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov  6 13:05:44 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov  6 13:08:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=130c7cb4

app-text/paperwork: 1.2.1 bump

Reported-by: Manuel Rüger  gentoo.org>
Closes: https://bugs.gentoo.org/635862
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.2.1.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 9064a0ff461..6ac29adb753 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-1.1.2.tar.gz 331028 SHA256 
7beaf56fa91fb602d185256f3bbf3d9a85a332efd87d35dc22dbb9051bd94fa8 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
 WHIRLPOOL 
f951a15a9e2c14dbd08cd0b767c99dfa8ba63890d07ca135c347f141696652085494bc42f01d29015676a45fa4bc0f5785e4ec8a33cd5ab46bea48e21770d050
+DIST paperwork-1.2.1.tar.gz 8116070 SHA256 
2b09a86e39125b455180cf17dd50d8b3d195b390bdcb02b9cf0836b0ee81de74 SHA512 
fb44c048e8669cdc95a358369de418d862c49fe9a9d6cb8d20ce727ae0ca6a57c19cfd5f39fe95ee67c086dd481c22c3717a672f1ac09f3b63a0daa851a8e482
 WHIRLPOOL 
a77265b3369b64045e9a252c6c05df7ee5a855e009a3999427605615845f6c96a9f87ed885c724dcc1d8d77fe8a5e5e0cf2b71208262d88f3822757425ec13ed
 DIST paperwork-1.2.tar.gz 8086428 SHA256 
87f4610adfe0f79931d27d9a3c3b5441f77d9db64ed4f72ae2a1bf844df7eca5 SHA512 
9c8c43ef31be2eef57ffbcdb00b4e91dd2b1eade75814b789c489abfb6f7bae07e68f7207c8fdef4f3bf95bd68bca8a680b965259106af9f0166bee7a6cf5ea0
 WHIRLPOOL 
fa0e6acf4bd7514899433077a3ced8fdf8565467dd7cb8cc05ab2c737352d67a8375af98bbed507ab5a73b302cd968dddce2bba8f13a3749edef8562f001

diff --git a/app-text/paperwork/paperwork-1.2.1.ebuild 
b/app-text/paperwork/paperwork-1.2.1.ebuild
new file mode 100644
index 000..1ce4f4dfe5d
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-11-06 Thread Bernard Cafarelli
commit: f43af7ccb7f8bdfc38ab5aec5bee82b235ec0b31
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov  6 13:03:57 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov  6 13:08:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43af7cc

app-text/paperwork-backend: 1.2.1 bump

Reported-by: Manuel Rüger  gentoo.org>
Closes: https://bugs.gentoo.org/635862
Package-Manager: Portage-2.3.13, Repoman-2.3.4

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.2.1.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 3e269d2cc3a..f6e715d9b67 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.1.2.tar.gz 54340 SHA256 
19b15ed995b06bd9d9a61c82389983fe6d5dffe41b88e87bbe3a5e297dd8 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
 WHIRLPOOL 
ba197dfb5d131e522df9a8b8d77c8a94e01a1001dede460d8e7ecce6c413c1e7735d6bcd19a739b01b4abceb72c88ca654aa59b2a1513eb4aa3bf68132e07330
+DIST paperwork-backend-1.2.1.tar.gz 63417 SHA256 
397a829b741a7b3e311aa239c8bb9e9a21f9596d37c64c99d1f00aab3c52c4c3 SHA512 
01878b8580187aeca45248a133a92b83c3f8e8012b6bbacc6e625ca447979c01633573cbb59a4460b88aae6f89db2ae618c27019bd940a391a30dccde1c54696
 WHIRLPOOL 
7a0f80a581d1077ef57a18ee511e222cacb8496f68fa12efd155790e32eef12de984942be0620fab2936f1436325894ee2c0dc22bd6b43eb053310a1d0e5
 DIST paperwork-backend-1.2.tar.gz 63167 SHA256 
321f1a637b4df6c8d01caa2d172ca10c6285d1515ba75f59471643ef5378 SHA512 
278d7080c9806a6ae68cb15ba9df2ac22bd2c120f0e77a9d7eacbbd6e70476d4fb803c572216e580a068527ae8c10c3f2e66199aca3d94949e655c08214beeb1
 WHIRLPOOL 
c064abc9feaac7a8d55a9e712bc3f0c61d60c7518560d44328d4cf3147614914445c9a29598b4d536e29186af793851acfcc6d2b0e3d5a3f7b93ed2987bfe144

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild
new file mode 100644
index 000..da6daad0240
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-07-26 Thread Bernard Cafarelli
commit: 597664772f47cecd70a9213e2f700f0a21b42ecc
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jul 26 11:22:49 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jul 26 11:26:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59766477

app-text/paperwork: drop unneeded glade dependency, thanks eva in bug #626166

Add pycrypto for completeness (though only required for windows
platforms in current code)

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork/paperwork-1.1.2.ebuild | 2 +-
 app-text/paperwork/paperwork-1.2.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/paperwork/paperwork-1.1.2.ebuild 
b/app-text/paperwork/paperwork-1.1.2.ebuild
index 595e78e8ee8..c301f25b4f8 100644
--- a/app-text/paperwork/paperwork-1.1.2.ebuild
+++ b/app-text/paperwork/paperwork-1.1.2.ebuild
@@ -19,11 +19,11 @@ RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
dev-python/libpillowfight[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
dev-python/pyenchant[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/pyinsane:2[${PYTHON_USEDEP}]
>=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-util/glade[introspection,python]
x11-libs/gtk+:3[introspection]"
 DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.2.ebuild 
b/app-text/paperwork/paperwork-1.2.ebuild
index 777e4391c98..1ce4f4dfe5d 100644
--- a/app-text/paperwork/paperwork-1.2.ebuild
+++ b/app-text/paperwork/paperwork-1.2.ebuild
@@ -19,11 +19,11 @@ RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
dev-python/libpillowfight[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
dev-python/pyenchant[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/pyinsane:2[${PYTHON_USEDEP}]
>=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-util/glade[introspection,python]
x11-libs/gtk+:3[introspection]"
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-07-25 Thread Bernard Cafarelli
commit: a68f1b852a6212de929bf02fc396051d399fbdb6
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 10:03:16 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a68f1b85

app-text/paperwork: 1.2 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork/Manifest |  1 +
 app-text/paperwork/metadata.xml |  2 +-
 app-text/paperwork/paperwork-1.2.ebuild | 29 +
 3 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index ad62bf4a9c0..16af6532261 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -4,3 +4,4 @@ DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8
 DIST paperwork-1.1.1.tar.gz 330784 SHA256 
ab10462f0e50560a99d796bca582844c1f9eec6e8987c5fbcd3ff8b40c946018 SHA512 
72d98d252ad9249d95df1c1ce907acba6b7b797fb72091bdc142a69d8786e947915bdfed8640159775edf8d29e119cf322a17ce728685c57dba4a4f12c85bbcd
 WHIRLPOOL 
454e656ed82c31b254d98728f41a40c7e32c610bb43552ec2c5b9090e4a1db05851b8f663933eaa9476bf137372e09deab9c302158b4d21a3b01e177e258fcde
 DIST paperwork-1.1.2.tar.gz 331028 SHA256 
7beaf56fa91fb602d185256f3bbf3d9a85a332efd87d35dc22dbb9051bd94fa8 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
 WHIRLPOOL 
f951a15a9e2c14dbd08cd0b767c99dfa8ba63890d07ca135c347f141696652085494bc42f01d29015676a45fa4bc0f5785e4ec8a33cd5ab46bea48e21770d050
 DIST paperwork-1.1.tar.gz 330284 SHA256 
0f41f85f7d7111b41f1326959a81149e4b93c593045b5594b6f2056dd8137589 SHA512 
a96924113dc804ae24d08b14334777e8e586b516b197b463c924d74fac8f45b299b4eb437b72d02d7e0423f41f819bfa13804ba01654ef4eeb1d4e424f3cea5b
 WHIRLPOOL 
053a0cfffbd908b303611e5ba9e7f2e3b87462b947c29de34478b62472586cd3c96651e1c65b83ca295d38eebaf246e8785ba1fc0d119fc303faa56d186ab4b4
+DIST paperwork-1.2.tar.gz 8086428 SHA256 
87f4610adfe0f79931d27d9a3c3b5441f77d9db64ed4f72ae2a1bf844df7eca5 SHA512 
9c8c43ef31be2eef57ffbcdb00b4e91dd2b1eade75814b789c489abfb6f7bae07e68f7207c8fdef4f3bf95bd68bca8a680b965259106af9f0166bee7a6cf5ea0
 WHIRLPOOL 
fa0e6acf4bd7514899433077a3ced8fdf8565467dd7cb8cc05ab2c737352d67a8375af98bbed507ab5a73b302cd968dddce2bba8f13a3749edef8562f001

diff --git a/app-text/paperwork/metadata.xml b/app-text/paperwork/metadata.xml
index 466617adadd..2b459e66b55 100644
--- a/app-text/paperwork/metadata.xml
+++ b/app-text/paperwork/metadata.xml
@@ -13,6 +13,6 @@ It's designed to be easy and fast to use. The idea behind 
Paperwork is "scan and
 In other words, let the machine do most of the work for you.
 
   
-jflesch/paperwork
+openpaperwork/paperwork
   
 

diff --git a/app-text/paperwork/paperwork-1.2.ebuild 
b/app-text/paperwork/paperwork-1.2.ebuild
new file mode 100644
index 000..777e4391c98
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-07-25 Thread Bernard Cafarelli
commit: 503ae77a5ddbb2cd699c1eeae3ad25bec3b5e3f0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 11:23:47 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503ae77a

app-text/paperwork-backend: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork-backend/Manifest|  4 ---
 .../paperwork-backend-1.0.5.ebuild | 28 -
 .../paperwork-backend-1.0.6-r1.ebuild  | 29 --
 .../paperwork-backend-1.1-r1.ebuild| 28 -
 .../paperwork-backend-1.1.1.ebuild | 28 -
 5 files changed, 117 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index b9c65fc4918..3e269d2cc3a 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,6 +1,2 @@
-DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
-DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2
-DIST paperwork-backend-1.1.1.tar.gz 54095 SHA256 
5201868718de37c669c2e9670e61a32b4c2f6833258d0c0ce238026612e4b5c1 SHA512 
bcbdfe1a55fb82b7c8eb1b2a6e4eea367203992d4d87c42db3b3f55852f127d6688d1cfdc1016151648a2d83690534ad951d6852c5306c53c9096aa052244168
 WHIRLPOOL 
3e72b6aee4a8e3bc2ef4064ad300a042c5a81837725e36a5933d861472b6975ea8d792de0545f6c97e367e82e1753646bbf46259a1cf46416c98886bcb24ba33
 DIST paperwork-backend-1.1.2.tar.gz 54340 SHA256 
19b15ed995b06bd9d9a61c82389983fe6d5dffe41b88e87bbe3a5e297dd8 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
 WHIRLPOOL 
ba197dfb5d131e522df9a8b8d77c8a94e01a1001dede460d8e7ecce6c413c1e7735d6bcd19a739b01b4abceb72c88ca654aa59b2a1513eb4aa3bf68132e07330
-DIST paperwork-backend-1.1.tar.gz 54088 SHA256 
d2a78de1c6288779b191e616fec8b6fdfd37934c2ccec90563fadc6d2f2013ba SHA512 
57e95b3a29989e0d615ba5295e32fa5b513521b354407565be95be96374b991923c89880fe92138225012e21d0a52149878e2c807673c811771d8fc16e5d4988
 WHIRLPOOL 
701f2ea789b2f7d45d3e369cab9baa7976f885ee0f7236f8b356fca0fc769f9e52a137cfdf62f8ec56cf62a0d80327d361172e38bd2d2830aa1f09a53cbcd63d
 DIST paperwork-backend-1.2.tar.gz 63167 SHA256 
321f1a637b4df6c8d01caa2d172ca10c6285d1515ba75f59471643ef5378 SHA512 
278d7080c9806a6ae68cb15ba9df2ac22bd2c120f0e77a9d7eacbbd6e70476d4fb803c572216e580a068527ae8c10c3f2e66199aca3d94949e655c08214beeb1
 WHIRLPOOL 
c064abc9feaac7a8d55a9e712bc3f0c61d60c7518560d44328d4cf3147614914445c9a29598b4d536e29186af793851acfcc6d2b0e3d5a3f7b93ed2987bfe144

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild
deleted file mode 100644
index 659e6811a25..000
--- a/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/jflesch/paperwork-backend;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild
deleted file mode 100644
index 36d232f232c..000
--- a/app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General 

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-07-25 Thread Bernard Cafarelli
commit: 7c8368df5769428d707ccc15e9dd8079a75564a3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 10:09:44 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8368df

app-text/paperwork-backend: new dependency on dev-python/natsort

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork-backend/paperwork-backend-1.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
index efee35cbeaa..da6daad0240 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
@@ -16,6 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="app-text/poppler[introspection]
+   dev-python/natsort[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-07-25 Thread Bernard Cafarelli
commit: 258e78cec09a64aad813466b69cfcff1467ed6d0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 11:22:48 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258e78ce

app-text/paperwork: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork/Manifest  |  5 -
 app-text/paperwork/paperwork-0.3.2-r1.ebuild | 33 
 app-text/paperwork/paperwork-1.0.5.ebuild| 29 
 app-text/paperwork/paperwork-1.0.6-r1.ebuild | 30 -
 app-text/paperwork/paperwork-1.1-r1.ebuild   | 29 
 app-text/paperwork/paperwork-1.1.1.ebuild| 29 
 6 files changed, 155 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 16af6532261..9064a0ff461 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,7 +1,2 @@
-DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
-DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3
-DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8aea221b8c0624c71e76c7674c1 SHA512 
35248ce3428a60f05865cf02ffda1f60c5462bae5bc0544566d64d827f3466ebfbf410f933ad70563e04c687b28255071a3d8c833d2316cbeb228a0e965398af
 WHIRLPOOL 
269a365c303ecb23276613996f1daf571120406cb39edcb00ef5cbf1168bfb6b8c0fb5571d3a1d155de9ba41bb960ed8829d377dbaed3793ad33358ce6bd5267
-DIST paperwork-1.1.1.tar.gz 330784 SHA256 
ab10462f0e50560a99d796bca582844c1f9eec6e8987c5fbcd3ff8b40c946018 SHA512 
72d98d252ad9249d95df1c1ce907acba6b7b797fb72091bdc142a69d8786e947915bdfed8640159775edf8d29e119cf322a17ce728685c57dba4a4f12c85bbcd
 WHIRLPOOL 
454e656ed82c31b254d98728f41a40c7e32c610bb43552ec2c5b9090e4a1db05851b8f663933eaa9476bf137372e09deab9c302158b4d21a3b01e177e258fcde
 DIST paperwork-1.1.2.tar.gz 331028 SHA256 
7beaf56fa91fb602d185256f3bbf3d9a85a332efd87d35dc22dbb9051bd94fa8 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
 WHIRLPOOL 
f951a15a9e2c14dbd08cd0b767c99dfa8ba63890d07ca135c347f141696652085494bc42f01d29015676a45fa4bc0f5785e4ec8a33cd5ab46bea48e21770d050
-DIST paperwork-1.1.tar.gz 330284 SHA256 
0f41f85f7d7111b41f1326959a81149e4b93c593045b5594b6f2056dd8137589 SHA512 
a96924113dc804ae24d08b14334777e8e586b516b197b463c924d74fac8f45b299b4eb437b72d02d7e0423f41f819bfa13804ba01654ef4eeb1d4e424f3cea5b
 WHIRLPOOL 
053a0cfffbd908b303611e5ba9e7f2e3b87462b947c29de34478b62472586cd3c96651e1c65b83ca295d38eebaf246e8785ba1fc0d119fc303faa56d186ab4b4
 DIST paperwork-1.2.tar.gz 8086428 SHA256 
87f4610adfe0f79931d27d9a3c3b5441f77d9db64ed4f72ae2a1bf844df7eca5 SHA512 
9c8c43ef31be2eef57ffbcdb00b4e91dd2b1eade75814b789c489abfb6f7bae07e68f7207c8fdef4f3bf95bd68bca8a680b965259106af9f0166bee7a6cf5ea0
 WHIRLPOOL 
fa0e6acf4bd7514899433077a3ced8fdf8565467dd7cb8cc05ab2c737352d67a8375af98bbed507ab5a73b302cd968dddce2bba8f13a3749edef8562f001

diff --git a/app-text/paperwork/paperwork-0.3.2-r1.ebuild 
b/app-text/paperwork/paperwork-0.3.2-r1.ebuild
deleted file mode 100644
index c03a7570427..000
--- a/app-text/paperwork/paperwork-0.3.2-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/jflesch/paperwork;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/joblib[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=dev-python/pyinsane-1.3.8:1[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-07-25 Thread Bernard Cafarelli
commit: fd9691667d15b13fab6ffc5de766dd6e78a96563
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 09:59:07 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd969166

app-text/paperwork-backend: update homepage

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork-backend/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/paperwork-backend/metadata.xml 
b/app-text/paperwork-backend/metadata.xml
index 6ea8a109277..911820b2dd3 100644
--- a/app-text/paperwork-backend/metadata.xml
+++ b/app-text/paperwork-backend/metadata.xml
@@ -6,6 +6,6 @@
 Bernard Cafarelli
   
   
-jflesch/paperwork-backend
+openpaperwork/paperwork-backend
   
 



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-07-25 Thread Bernard Cafarelli
commit: 915eb1a28548a054a56bcb93843c93d9cbb04cce
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 25 09:57:26 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 25 11:26:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=915eb1a2

app-text/paperwork-backend: 1.2 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend/paperwork-backend-1.2.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 823322434b1..b9c65fc4918 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -3,3 +3,4 @@ DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb4
 DIST paperwork-backend-1.1.1.tar.gz 54095 SHA256 
5201868718de37c669c2e9670e61a32b4c2f6833258d0c0ce238026612e4b5c1 SHA512 
bcbdfe1a55fb82b7c8eb1b2a6e4eea367203992d4d87c42db3b3f55852f127d6688d1cfdc1016151648a2d83690534ad951d6852c5306c53c9096aa052244168
 WHIRLPOOL 
3e72b6aee4a8e3bc2ef4064ad300a042c5a81837725e36a5933d861472b6975ea8d792de0545f6c97e367e82e1753646bbf46259a1cf46416c98886bcb24ba33
 DIST paperwork-backend-1.1.2.tar.gz 54340 SHA256 
19b15ed995b06bd9d9a61c82389983fe6d5dffe41b88e87bbe3a5e297dd8 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
 WHIRLPOOL 
ba197dfb5d131e522df9a8b8d77c8a94e01a1001dede460d8e7ecce6c413c1e7735d6bcd19a739b01b4abceb72c88ca654aa59b2a1513eb4aa3bf68132e07330
 DIST paperwork-backend-1.1.tar.gz 54088 SHA256 
d2a78de1c6288779b191e616fec8b6fdfd37934c2ccec90563fadc6d2f2013ba SHA512 
57e95b3a29989e0d615ba5295e32fa5b513521b354407565be95be96374b991923c89880fe92138225012e21d0a52149878e2c807673c811771d8fc16e5d4988
 WHIRLPOOL 
701f2ea789b2f7d45d3e369cab9baa7976f885ee0f7236f8b356fca0fc769f9e52a137cfdf62f8ec56cf62a0d80327d361172e38bd2d2830aa1f09a53cbcd63d
+DIST paperwork-backend-1.2.tar.gz 63167 SHA256 
321f1a637b4df6c8d01caa2d172ca10c6285d1515ba75f59471643ef5378 SHA512 
278d7080c9806a6ae68cb15ba9df2ac22bd2c120f0e77a9d7eacbbd6e70476d4fb803c572216e580a068527ae8c10c3f2e66199aca3d94949e655c08214beeb1
 WHIRLPOOL 
c064abc9feaac7a8d55a9e712bc3f0c61d60c7518560d44328d4cf3147614914445c9a29598b4d536e29186af793851acfcc6d2b0e3d5a3f7b93ed2987bfe144

diff --git a/app-text/paperwork-backend/paperwork-backend-1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
new file mode 100644
index 000..efee35cbeaa
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/openpaperwork/paperwork-backend;
+SRC_URI="https://github.com/openpaperwork/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-03-28 Thread Bernard Cafarelli
commit: 9ca1a82173d2d881a06652f7eaa6611ff038a973
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 28 12:16:09 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 28 12:20:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca1a821

app-text/paperwork-backend: 1.1.2 bump, bug #613572

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.1.2.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index a6eeb1e1cee..823322434b1 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,4 +1,5 @@
 DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
 DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2
 DIST paperwork-backend-1.1.1.tar.gz 54095 SHA256 
5201868718de37c669c2e9670e61a32b4c2f6833258d0c0ce238026612e4b5c1 SHA512 
bcbdfe1a55fb82b7c8eb1b2a6e4eea367203992d4d87c42db3b3f55852f127d6688d1cfdc1016151648a2d83690534ad951d6852c5306c53c9096aa052244168
 WHIRLPOOL 
3e72b6aee4a8e3bc2ef4064ad300a042c5a81837725e36a5933d861472b6975ea8d792de0545f6c97e367e82e1753646bbf46259a1cf46416c98886bcb24ba33
+DIST paperwork-backend-1.1.2.tar.gz 54340 SHA256 
19b15ed995b06bd9d9a61c82389983fe6d5dffe41b88e87bbe3a5e297dd8 SHA512 
626a4e44243769c0982d2a4677e35e4c3431e6b68b05687f13574e1f9cfd026d0b949e95e53ea37c976ea5826883eb2ac672cffc346eb05631f3498bb525391a
 WHIRLPOOL 
ba197dfb5d131e522df9a8b8d77c8a94e01a1001dede460d8e7ecce6c413c1e7735d6bcd19a739b01b4abceb72c88ca654aa59b2a1513eb4aa3bf68132e07330
 DIST paperwork-backend-1.1.tar.gz 54088 SHA256 
d2a78de1c6288779b191e616fec8b6fdfd37934c2ccec90563fadc6d2f2013ba SHA512 
57e95b3a29989e0d615ba5295e32fa5b513521b354407565be95be96374b991923c89880fe92138225012e21d0a52149878e2c807673c811771d8fc16e5d4988
 WHIRLPOOL 
701f2ea789b2f7d45d3e369cab9baa7976f885ee0f7236f8b356fca0fc769f9e52a137cfdf62f8ec56cf62a0d80327d361172e38bd2d2830aa1f09a53cbcd63d

diff --git a/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild
new file mode 100644
index 000..e287a22cac9
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.1.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-03-28 Thread Bernard Cafarelli
commit: 8b91958c36169e41b9281979eb2faa07eb753bab
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Mar 28 12:18:09 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Mar 28 12:20:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b91958c

app-text/paperwork: 1.1.2 bump, bug #613572

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.1.2.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index f37d65381cf..ad62bf4a9c0 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -2,4 +2,5 @@ DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bf
 DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3
 DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8aea221b8c0624c71e76c7674c1 SHA512 
35248ce3428a60f05865cf02ffda1f60c5462bae5bc0544566d64d827f3466ebfbf410f933ad70563e04c687b28255071a3d8c833d2316cbeb228a0e965398af
 WHIRLPOOL 
269a365c303ecb23276613996f1daf571120406cb39edcb00ef5cbf1168bfb6b8c0fb5571d3a1d155de9ba41bb960ed8829d377dbaed3793ad33358ce6bd5267
 DIST paperwork-1.1.1.tar.gz 330784 SHA256 
ab10462f0e50560a99d796bca582844c1f9eec6e8987c5fbcd3ff8b40c946018 SHA512 
72d98d252ad9249d95df1c1ce907acba6b7b797fb72091bdc142a69d8786e947915bdfed8640159775edf8d29e119cf322a17ce728685c57dba4a4f12c85bbcd
 WHIRLPOOL 
454e656ed82c31b254d98728f41a40c7e32c610bb43552ec2c5b9090e4a1db05851b8f663933eaa9476bf137372e09deab9c302158b4d21a3b01e177e258fcde
+DIST paperwork-1.1.2.tar.gz 331028 SHA256 
7beaf56fa91fb602d185256f3bbf3d9a85a332efd87d35dc22dbb9051bd94fa8 SHA512 
14c018c9b148e1569948d2de7b1c0c04d353a7af7aa6a7102585665d9af2f5f2055145338a001085be0fc165abec066d73d3adc4a378a307326edf730c3c3606
 WHIRLPOOL 
f951a15a9e2c14dbd08cd0b767c99dfa8ba63890d07ca135c347f141696652085494bc42f01d29015676a45fa4bc0f5785e4ec8a33cd5ab46bea48e21770d050
 DIST paperwork-1.1.tar.gz 330284 SHA256 
0f41f85f7d7111b41f1326959a81149e4b93c593045b5594b6f2056dd8137589 SHA512 
a96924113dc804ae24d08b14334777e8e586b516b197b463c924d74fac8f45b299b4eb437b72d02d7e0423f41f819bfa13804ba01654ef4eeb1d4e424f3cea5b
 WHIRLPOOL 
053a0cfffbd908b303611e5ba9e7f2e3b87462b947c29de34478b62472586cd3c96651e1c65b83ca295d38eebaf246e8785ba1fc0d119fc303faa56d186ab4b4

diff --git a/app-text/paperwork/paperwork-1.1.2.ebuild 
b/app-text/paperwork/paperwork-1.1.2.ebuild
new file mode 100644
index 000..595e78e8ee8
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.1.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-02-13 Thread Bernard Cafarelli
commit: 722652a0cc49de0726d706b3ad17a089773dd7e0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Feb 13 15:28:19 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Feb 13 16:06:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=722652a0

app-text/paperwork-backend: 1.1.1 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.1.1.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index e922b87b58..a6eeb1e1ce 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
 DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2
+DIST paperwork-backend-1.1.1.tar.gz 54095 SHA256 
5201868718de37c669c2e9670e61a32b4c2f6833258d0c0ce238026612e4b5c1 SHA512 
bcbdfe1a55fb82b7c8eb1b2a6e4eea367203992d4d87c42db3b3f55852f127d6688d1cfdc1016151648a2d83690534ad951d6852c5306c53c9096aa052244168
 WHIRLPOOL 
3e72b6aee4a8e3bc2ef4064ad300a042c5a81837725e36a5933d861472b6975ea8d792de0545f6c97e367e82e1753646bbf46259a1cf46416c98886bcb24ba33
 DIST paperwork-backend-1.1.tar.gz 54088 SHA256 
d2a78de1c6288779b191e616fec8b6fdfd37934c2ccec90563fadc6d2f2013ba SHA512 
57e95b3a29989e0d615ba5295e32fa5b513521b354407565be95be96374b991923c89880fe92138225012e21d0a52149878e2c807673c811771d8fc16e5d4988
 WHIRLPOOL 
701f2ea789b2f7d45d3e369cab9baa7976f885ee0f7236f8b356fca0fc769f9e52a137cfdf62f8ec56cf62a0d80327d361172e38bd2d2830aa1f09a53cbcd63d

diff --git a/app-text/paperwork-backend/paperwork-backend-1.1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.1.1.ebuild
new file mode 100644
index 00..34d825d360
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.1.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-02-13 Thread Bernard Cafarelli
commit: 94ef3545057db1a4718a9b1fefba6417f4b2a5aa
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Feb 13 15:29:47 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Feb 13 16:06:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94ef3545

app-text/paperwork: 1.1.1 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.1.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index f759c248d4..f37d65381c 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,4 +1,5 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
 DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3
 DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8aea221b8c0624c71e76c7674c1 SHA512 
35248ce3428a60f05865cf02ffda1f60c5462bae5bc0544566d64d827f3466ebfbf410f933ad70563e04c687b28255071a3d8c833d2316cbeb228a0e965398af
 WHIRLPOOL 
269a365c303ecb23276613996f1daf571120406cb39edcb00ef5cbf1168bfb6b8c0fb5571d3a1d155de9ba41bb960ed8829d377dbaed3793ad33358ce6bd5267
+DIST paperwork-1.1.1.tar.gz 330784 SHA256 
ab10462f0e50560a99d796bca582844c1f9eec6e8987c5fbcd3ff8b40c946018 SHA512 
72d98d252ad9249d95df1c1ce907acba6b7b797fb72091bdc142a69d8786e947915bdfed8640159775edf8d29e119cf322a17ce728685c57dba4a4f12c85bbcd
 WHIRLPOOL 
454e656ed82c31b254d98728f41a40c7e32c610bb43552ec2c5b9090e4a1db05851b8f663933eaa9476bf137372e09deab9c302158b4d21a3b01e177e258fcde
 DIST paperwork-1.1.tar.gz 330284 SHA256 
0f41f85f7d7111b41f1326959a81149e4b93c593045b5594b6f2056dd8137589 SHA512 
a96924113dc804ae24d08b14334777e8e586b516b197b463c924d74fac8f45b299b4eb437b72d02d7e0423f41f819bfa13804ba01654ef4eeb1d4e424f3cea5b
 WHIRLPOOL 
053a0cfffbd908b303611e5ba9e7f2e3b87462b947c29de34478b62472586cd3c96651e1c65b83ca295d38eebaf246e8785ba1fc0d119fc303faa56d186ab4b4

diff --git a/app-text/paperwork/paperwork-1.1.1.ebuild 
b/app-text/paperwork/paperwork-1.1.1.ebuild
new file mode 100644
index 00..c5dd217d1c
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-02-13 Thread Bernard Cafarelli
commit: 95d22b00a6acd3fe12769ec2d0b0c1410ad0ae3a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Feb 13 15:24:50 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Feb 13 16:06:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d22b00

app-text/paperwork: recent versions only work with python 3

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork/{paperwork-1.1.ebuild => paperwork-1.1-r1.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-text/paperwork/paperwork-1.1.ebuild 
b/app-text/paperwork/paperwork-1.1-r1.ebuild
similarity index 88%
rename from app-text/paperwork/paperwork-1.1.ebuild
rename to app-text/paperwork/paperwork-1.1-r1.ebuild
index d3caf5fb52..c5dd217d1c 100644
--- a/app-text/paperwork/paperwork-1.1.ebuild
+++ b/app-text/paperwork/paperwork-1.1-r1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{3_4,3_5} )
 
 inherit distutils-r1
 
@@ -17,7 +17,6 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
dev-python/libpillowfight[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-02-13 Thread Bernard Cafarelli
commit: 1ce9e7cd6af4393ce672c1fcb8241745a25ae1e5
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Feb 13 15:21:43 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Feb 13 16:06:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce9e7cd

app-text/paperwork-backend: recent versions only work with python 3

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../{paperwork-backend-1.1.ebuild => paperwork-backend-1.1-r1.ebuild}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.1-r1.ebuild
similarity index 87%
rename from app-text/paperwork-backend/paperwork-backend-1.1.ebuild
rename to app-text/paperwork-backend/paperwork-backend-1.1-r1.ebuild
index 206632ebbc..34d825d360 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.1.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.1-r1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{3_4,3_5} )
 
 inherit distutils-r1
 
@@ -17,7 +17,6 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="app-text/poppler[introspection]
-   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-02-03 Thread Bernard Cafarelli
commit: b5207658ecac5f4c0e29a40c219e18cdb7e65b7b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  3 09:25:03 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  3 09:25:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5207658

app-text/paperwork: 1.1 bump, bug #608074

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork/Manifest |  1 +
 app-text/paperwork/paperwork-1.1.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 023dd7c..f759c24 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
 DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3
 DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8aea221b8c0624c71e76c7674c1 SHA512 
35248ce3428a60f05865cf02ffda1f60c5462bae5bc0544566d64d827f3466ebfbf410f933ad70563e04c687b28255071a3d8c833d2316cbeb228a0e965398af
 WHIRLPOOL 
269a365c303ecb23276613996f1daf571120406cb39edcb00ef5cbf1168bfb6b8c0fb5571d3a1d155de9ba41bb960ed8829d377dbaed3793ad33358ce6bd5267
+DIST paperwork-1.1.tar.gz 330284 SHA256 
0f41f85f7d7111b41f1326959a81149e4b93c593045b5594b6f2056dd8137589 SHA512 
a96924113dc804ae24d08b14334777e8e586b516b197b463c924d74fac8f45b299b4eb437b72d02d7e0423f41f819bfa13804ba01654ef4eeb1d4e424f3cea5b
 WHIRLPOOL 
053a0cfffbd908b303611e5ba9e7f2e3b87462b947c29de34478b62472586cd3c96651e1c65b83ca295d38eebaf246e8785ba1fc0d119fc303faa56d186ab4b4

diff --git a/app-text/paperwork/paperwork-1.1.ebuild 
b/app-text/paperwork/paperwork-1.1.ebuild
new file mode 100644
index ..d3caf5f
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-02-03 Thread Bernard Cafarelli
commit: 17acde19ec84e5f01b89d41616bdfd46ee3dc417
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb  3 09:22:47 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb  3 09:25:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17acde19

app-text/paperwork-backend: 1.1 bump, bug #608074

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend/paperwork-backend-1.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index e71b060..e922b87 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
 DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2
+DIST paperwork-backend-1.1.tar.gz 54088 SHA256 
d2a78de1c6288779b191e616fec8b6fdfd37934c2ccec90563fadc6d2f2013ba SHA512 
57e95b3a29989e0d615ba5295e32fa5b513521b354407565be95be96374b991923c89880fe92138225012e21d0a52149878e2c807673c811771d8fc16e5d4988
 WHIRLPOOL 
701f2ea789b2f7d45d3e369cab9baa7976f885ee0f7236f8b356fca0fc769f9e52a137cfdf62f8ec56cf62a0d80327d361172e38bd2d2830aa1f09a53cbcd63d

diff --git a/app-text/paperwork-backend/paperwork-backend-1.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.1.ebuild
new file mode 100644
index ..206632e
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/, app-text/paperwork-backend/

2017-01-02 Thread Bernard Cafarelli
commit: 90e77bfced49b7eb660c20580d4d79fbd1963828
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan  2 14:35:36 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan  2 14:39:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90e77bfc

app-text/{paperwork,paperwork-backend}: add configparser dep

Fixes bug #604390 by Frank Krömmelbein  gmx.de>

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 ...{paperwork-backend-1.0.6.ebuild => paperwork-backend-1.0.6-r1.ebuild} | 1 +
 app-text/paperwork/{paperwork-1.0.6.ebuild => paperwork-1.0.6-r1.ebuild} | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild
similarity index 91%
rename from app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild
rename to app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild
index 9460bbf..206632e 100644
--- a/app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.6-r1.ebuild
@@ -17,6 +17,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="app-text/poppler[introspection]
+   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/pycountry[${PYTHON_USEDEP}]

diff --git a/app-text/paperwork/paperwork-1.0.6.ebuild 
b/app-text/paperwork/paperwork-1.0.6-r1.ebuild
similarity index 92%
rename from app-text/paperwork/paperwork-1.0.6.ebuild
rename to app-text/paperwork/paperwork-1.0.6-r1.ebuild
index 84bf5a5..d3caf5f 100644
--- a/app-text/paperwork/paperwork-1.0.6.ebuild
+++ b/app-text/paperwork/paperwork-1.0.6-r1.ebuild
@@ -17,6 +17,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 
python2_7 )
dev-python/libpillowfight[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-01-02 Thread Bernard Cafarelli
commit: 414c876e09bdcfae8cec87b34be87ea10ce51241
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan  2 11:17:31 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan  2 11:18:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=414c876e

app-text/paperwork: drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork/Manifest   |  3 ---
 app-text/paperwork/paperwork-1.0.1.ebuild | 30 --
 app-text/paperwork/paperwork-1.0.2.ebuild | 30 --
 app-text/paperwork/paperwork-1.0.4.ebuild | 30 --
 4 files changed, 93 deletions(-)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index d81bd0d..722fdeb 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,5 +1,2 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
-DIST paperwork-1.0.1.tar.gz 206786 SHA256 
65976920d18a09ca5ff07088ec73073b857dfb40b4674e428619c8a90726ca01 SHA512 
10f854586381b6eb3eabb654cf42c7372594f1c413f601ebbff75f806c841e71e0883bbbfa482802d0f083521689d82ff0416bdbb378d9041402a0ed971b1ed6
 WHIRLPOOL 
1e314ed44bf86a4c97e7f30667fe07e40ed390715278cf418df0d0bd219b32e33256ac0606cadc10ec5c2a5d7847cda62850adc2bc15ace8c4583da71232bb38
-DIST paperwork-1.0.2.tar.gz 274148 SHA256 
0884c53f0a23fd396428fbc7cc0499d6ab95f7d76df369d68bffebfd5bf2d1ae SHA512 
607fa9f27a367adf8256e59d8d72e2c51822e51563d8e705bc20d4c5a99c3f924f81f262adcc0fd1950f4de97840f5f25e030aa8be164bdabc3bf7c07e2152a4
 WHIRLPOOL 
74ac71c9c59de5931ba159bbebb9599d1023be1cc4093e27e50600d34b8c0cc00fe52fed8e2409e2f40a7b2aa0bc4b62d2e87ff117a4a32902edbee61bf038af
-DIST paperwork-1.0.4.tar.gz 328507 SHA256 
08deac7c503f2e589a20e0fd14c56b034a333478cf87761e2e6ce924470a4c79 SHA512 
5aae6e719136e25e691b427bb0ad70456d47f2744ce90e42d97ba6bc973c11f8740ab8c8e5a64e3c33d77ed70eebea8832fd7de3b85e5a8e1769f3b4b20608f7
 WHIRLPOOL 
0b0e9ee62a83a23548181cce1154e78798cc8a6734f181ac3c03af5346da571922754bed33550a3dfc0d6832d72c22b9ffd42bbf2e3bc924aa8db9b57cc6932a
 DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3

diff --git a/app-text/paperwork/paperwork-1.0.1.ebuild 
b/app-text/paperwork/paperwork-1.0.1.ebuild
deleted file mode 100644
index c701155..
--- a/app-text/paperwork/paperwork-1.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/jflesch/paperwork;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=app-text/paperwork-backend-1.0.1[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pyinsane:2[${PYTHON_USEDEP}]
-   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-util/glade[introspection,python]
-   x11-libs/gtk+:3[introspection]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork/paperwork-1.0.2.ebuild 
b/app-text/paperwork/paperwork-1.0.2.ebuild
deleted file mode 100644
index d7497b9..
--- a/app-text/paperwork/paperwork-1.0.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
-HOMEPAGE="https://github.com/jflesch/paperwork;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
-   dev-python/libpillowfight[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2017-01-02 Thread Bernard Cafarelli
commit: af1c4cd0d29ef2c099600b1247bc562cd05ab7c8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan  2 11:18:09 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan  2 11:18:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1c4cd0

app-text/paperwork: 1.0.6 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.0.6.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 722fdeb..023dd7c 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
 DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3
+DIST paperwork-1.0.6.tar.gz 329420 SHA256 
b0f5d1cea1f4930e748d635f5aab7eed3282b8aea221b8c0624c71e76c7674c1 SHA512 
35248ce3428a60f05865cf02ffda1f60c5462bae5bc0544566d64d827f3466ebfbf410f933ad70563e04c687b28255071a3d8c833d2316cbeb228a0e965398af
 WHIRLPOOL 
269a365c303ecb23276613996f1daf571120406cb39edcb00ef5cbf1168bfb6b8c0fb5571d3a1d155de9ba41bb960ed8829d377dbaed3793ad33358ce6bd5267

diff --git a/app-text/paperwork/paperwork-1.0.6.ebuild 
b/app-text/paperwork/paperwork-1.0.6.ebuild
new file mode 100644
index ..84bf5a5
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.0.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-01-02 Thread Bernard Cafarelli
commit: 44a63bd931afadb24a1bc0b5cee747081a2c6fca
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan  2 11:15:30 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan  2 11:18:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a63bd9

app-text/paperwork-backend: 1.0.6 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.0.6.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 0abb367..86d8d48 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -2,3 +2,4 @@ DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5
 DIST paperwork-backend-1.0.2.tar.gz 46565 SHA256 
0f3435864880e00df3d0e37ce2d58037d85a8c12f06d09d67fae25aa2895d0a7 SHA512 
061b65da55ec432ec76eacee78029e77df9a10d9da02b2e4bedd7efe51b2b771d29cd8d940410f93bf921087365ded5464d9acd3b3940afe9fc4e4a3e1afc5a7
 WHIRLPOOL 
2529ee71c49e8b43f88ed55812a100541a122a0cb3e68ae32e7b1a219592b98d9b1dccfce094760dbf0c23c53c53b1f5fdc2b6a05eba499f7fcf620c40193ee5
 DIST paperwork-backend-1.0.4.tar.gz 46365 SHA256 
51f47b56570a5f7926aa5a1a6f95b106b521ec6043c89666d28cb429accac507 SHA512 
ed86f3838c39e33bab003fafe297659a25f52701f3101320f3d8c6edd44451d80dcbce2d514bc822c8f6b5fe0c69a4b4e9b0a14c9a0a622810c35c1a0b86e4ff
 WHIRLPOOL 
5a528befe4e815a51df1923c81f73a062a4477ae15b12cbb4bd015ebf9c57a6ea7a5b2cab50cc7ef5aa2e867d6bef2e569aae65841fc0bc34c077650e8e5edc1
 DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
+DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild
new file mode 100644
index ..9460bbf
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2017-01-02 Thread Bernard Cafarelli
commit: 4e88e6c38a70ce86aecb842b83f41f0314d3a098
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan  2 11:16:28 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan  2 11:18:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e88e6c3

app-text/paperwork-backend: drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/paperwork-backend/Manifest|  3 ---
 .../paperwork-backend-1.0.1.ebuild | 29 --
 .../paperwork-backend-1.0.2.ebuild | 29 --
 .../paperwork-backend-1.0.4.ebuild | 29 --
 4 files changed, 90 deletions(-)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 86d8d48..e71b060 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,5 +1,2 @@
-DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5857b5a9aed9e2842045d6bcf1f5a112cf SHA512 
4a092633ff29cffb738866c9a58aeb4d9f558afb74bb28253c24d4789e8a92cf2a0207f2014e384fca5c225311ecf953d14b9b2925d705626936ad1ef9555c7d
 WHIRLPOOL 
c77191ce7385c831950f4b0c1328c129b6f191bb837d88122ea3c4c0c533cf231d4f3bcbcd4f67cce1fcca970d4338461eaaad743de9630196e5d67d657cde7c
-DIST paperwork-backend-1.0.2.tar.gz 46565 SHA256 
0f3435864880e00df3d0e37ce2d58037d85a8c12f06d09d67fae25aa2895d0a7 SHA512 
061b65da55ec432ec76eacee78029e77df9a10d9da02b2e4bedd7efe51b2b771d29cd8d940410f93bf921087365ded5464d9acd3b3940afe9fc4e4a3e1afc5a7
 WHIRLPOOL 
2529ee71c49e8b43f88ed55812a100541a122a0cb3e68ae32e7b1a219592b98d9b1dccfce094760dbf0c23c53c53b1f5fdc2b6a05eba499f7fcf620c40193ee5
-DIST paperwork-backend-1.0.4.tar.gz 46365 SHA256 
51f47b56570a5f7926aa5a1a6f95b106b521ec6043c89666d28cb429accac507 SHA512 
ed86f3838c39e33bab003fafe297659a25f52701f3101320f3d8c6edd44451d80dcbce2d514bc822c8f6b5fe0c69a4b4e9b0a14c9a0a622810c35c1a0b86e4ff
 WHIRLPOOL 
5a528befe4e815a51df1923c81f73a062a4477ae15b12cbb4bd015ebf9c57a6ea7a5b2cab50cc7ef5aa2e867d6bef2e569aae65841fc0bc34c077650e8e5edc1
 DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7
 DIST paperwork-backend-1.0.6.tar.gz 46773 SHA256 
6881de10aa7e47039baebbd4742ceb49e048f46f22398a81f690e62a7cdce3ce SHA512 
e372d1b702f026746d53f62a85fdf406234e13047e08202e5a793af5669e53f0a87b84ad6ae5e5a56570707bb38a0dcd0503f5578caa2d616502de2757a0d0b9
 WHIRLPOOL 
37e185769ca984072715a7abe4ca80759a6be3ea110ab56ac01f5e2397c7a95aa0ee22422eb6ef786ca94e7f1ac3b57688a21780843f12923d7f53f155681cb2

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild
deleted file mode 100644
index 8bc8bc4..
--- a/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/jflesch/paperwork-backend;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pycountry[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-levenshtein[${PYTHON_USEDEP}]
-   dev-python/simplebayes[${PYTHON_USEDEP}]
-   dev-python/termcolor[${PYTHON_USEDEP}]
-   dev-python/whoosh[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild
deleted file mode 100644
index 8bc8bc4..
--- a/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
-HOMEPAGE="https://github.com/jflesch/paperwork-backend;
-SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-text/poppler[introspection]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-  

[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2016-11-28 Thread Bernard Cafarelli
commit: a044a8c2a354786743048632bcfe8d97b570d8cb
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 28 12:35:00 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 28 12:48:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a044a8c2

app-text/paperwork: version bump to 1.0.5

Package-Manager: portage-2.3.2

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.0.5.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 0c33046..d81bd0d 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -2,3 +2,4 @@ DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bf
 DIST paperwork-1.0.1.tar.gz 206786 SHA256 
65976920d18a09ca5ff07088ec73073b857dfb40b4674e428619c8a90726ca01 SHA512 
10f854586381b6eb3eabb654cf42c7372594f1c413f601ebbff75f806c841e71e0883bbbfa482802d0f083521689d82ff0416bdbb378d9041402a0ed971b1ed6
 WHIRLPOOL 
1e314ed44bf86a4c97e7f30667fe07e40ed390715278cf418df0d0bd219b32e33256ac0606cadc10ec5c2a5d7847cda62850adc2bc15ace8c4583da71232bb38
 DIST paperwork-1.0.2.tar.gz 274148 SHA256 
0884c53f0a23fd396428fbc7cc0499d6ab95f7d76df369d68bffebfd5bf2d1ae SHA512 
607fa9f27a367adf8256e59d8d72e2c51822e51563d8e705bc20d4c5a99c3f924f81f262adcc0fd1950f4de97840f5f25e030aa8be164bdabc3bf7c07e2152a4
 WHIRLPOOL 
74ac71c9c59de5931ba159bbebb9599d1023be1cc4093e27e50600d34b8c0cc00fe52fed8e2409e2f40a7b2aa0bc4b62d2e87ff117a4a32902edbee61bf038af
 DIST paperwork-1.0.4.tar.gz 328507 SHA256 
08deac7c503f2e589a20e0fd14c56b034a333478cf87761e2e6ce924470a4c79 SHA512 
5aae6e719136e25e691b427bb0ad70456d47f2744ce90e42d97ba6bc973c11f8740ab8c8e5a64e3c33d77ed70eebea8832fd7de3b85e5a8e1769f3b4b20608f7
 WHIRLPOOL 
0b0e9ee62a83a23548181cce1154e78798cc8a6734f181ac3c03af5346da571922754bed33550a3dfc0d6832d72c22b9ffd42bbf2e3bc924aa8db9b57cc6932a
+DIST paperwork-1.0.5.tar.gz 328468 SHA256 
8a09910f852196983f4beabe97711ae1624d2071755cf6a6fed99d73bedc91ae SHA512 
92c7515f10a766064cf1b48a3a482529665c265b09c26c27971e5942020749698168171fa7d242984883d9d4b09c5dd8ae6a29c6626fcb4d96972495164e425e
 WHIRLPOOL 
ce18d41ada101cc4b3a7d5d192fe780a78c9d41d044a7c7b1f0eca701ece25653c8b1588bcfd32eb5ae30552e299dd8537850c5363f38d875cde2d29663293a3

diff --git a/app-text/paperwork/paperwork-1.0.5.ebuild 
b/app-text/paperwork/paperwork-1.0.5.ebuild
new file mode 100644
index ..d7497b9
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.0.5.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2016-11-28 Thread Bernard Cafarelli
commit: bdb6c11e2c0b170c5462f949f577864f2829a702
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 28 12:33:54 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 28 12:48:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdb6c11e

app-text/paperwork-backend: version bump to 1.0.5

Package-Manager: portage-2.3.2

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.0.5.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 5e691d6..0abb367 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5857b5a9aed9e2842045d6bcf1f5a112cf SHA512 
4a092633ff29cffb738866c9a58aeb4d9f558afb74bb28253c24d4789e8a92cf2a0207f2014e384fca5c225311ecf953d14b9b2925d705626936ad1ef9555c7d
 WHIRLPOOL 
c77191ce7385c831950f4b0c1328c129b6f191bb837d88122ea3c4c0c533cf231d4f3bcbcd4f67cce1fcca970d4338461eaaad743de9630196e5d67d657cde7c
 DIST paperwork-backend-1.0.2.tar.gz 46565 SHA256 
0f3435864880e00df3d0e37ce2d58037d85a8c12f06d09d67fae25aa2895d0a7 SHA512 
061b65da55ec432ec76eacee78029e77df9a10d9da02b2e4bedd7efe51b2b771d29cd8d940410f93bf921087365ded5464d9acd3b3940afe9fc4e4a3e1afc5a7
 WHIRLPOOL 
2529ee71c49e8b43f88ed55812a100541a122a0cb3e68ae32e7b1a219592b98d9b1dccfce094760dbf0c23c53c53b1f5fdc2b6a05eba499f7fcf620c40193ee5
 DIST paperwork-backend-1.0.4.tar.gz 46365 SHA256 
51f47b56570a5f7926aa5a1a6f95b106b521ec6043c89666d28cb429accac507 SHA512 
ed86f3838c39e33bab003fafe297659a25f52701f3101320f3d8c6edd44451d80dcbce2d514bc822c8f6b5fe0c69a4b4e9b0a14c9a0a622810c35c1a0b86e4ff
 WHIRLPOOL 
5a528befe4e815a51df1923c81f73a062a4477ae15b12cbb4bd015ebf9c57a6ea7a5b2cab50cc7ef5aa2e867d6bef2e569aae65841fc0bc34c077650e8e5edc1
+DIST paperwork-backend-1.0.5.tar.gz 46433 SHA256 
a2e481873eec6b676b89aab21d6863264f10e4179cf72a253f52e565a602fcfd SHA512 
87debdcef457bc1873d25d7bdb15addf0c78d9f1cc9c324cec51c60bc863a4e891680f85258399f1f0506235e7524bffbf49783a6f23d0f6d0fee68924d697da
 WHIRLPOOL 
ebb5d1fc5054fe4306879404805b9ca5e763eadf39fe491775bb767fb7369bc39484449eac0b81ee2e961597a9bf13a4a4eeef426be0afb21211e717ad3382c7

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild
new file mode 100644
index ..8bc8bc4
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.5.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2016-11-21 Thread Bernard Cafarelli
commit: 5ecceb7ecdd54fb3a7f165063cbb2319b294f703
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 21 13:19:34 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 21 13:21:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecceb7e

app-text/paperwork-backend: version bump to 1.0.4

Package-Manager: portage-2.3.2

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.0.4.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 5201a0b..5e691d6 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5857b5a9aed9e2842045d6bcf1f5a112cf SHA512 
4a092633ff29cffb738866c9a58aeb4d9f558afb74bb28253c24d4789e8a92cf2a0207f2014e384fca5c225311ecf953d14b9b2925d705626936ad1ef9555c7d
 WHIRLPOOL 
c77191ce7385c831950f4b0c1328c129b6f191bb837d88122ea3c4c0c533cf231d4f3bcbcd4f67cce1fcca970d4338461eaaad743de9630196e5d67d657cde7c
 DIST paperwork-backend-1.0.2.tar.gz 46565 SHA256 
0f3435864880e00df3d0e37ce2d58037d85a8c12f06d09d67fae25aa2895d0a7 SHA512 
061b65da55ec432ec76eacee78029e77df9a10d9da02b2e4bedd7efe51b2b771d29cd8d940410f93bf921087365ded5464d9acd3b3940afe9fc4e4a3e1afc5a7
 WHIRLPOOL 
2529ee71c49e8b43f88ed55812a100541a122a0cb3e68ae32e7b1a219592b98d9b1dccfce094760dbf0c23c53c53b1f5fdc2b6a05eba499f7fcf620c40193ee5
+DIST paperwork-backend-1.0.4.tar.gz 46365 SHA256 
51f47b56570a5f7926aa5a1a6f95b106b521ec6043c89666d28cb429accac507 SHA512 
ed86f3838c39e33bab003fafe297659a25f52701f3101320f3d8c6edd44451d80dcbce2d514bc822c8f6b5fe0c69a4b4e9b0a14c9a0a622810c35c1a0b86e4ff
 WHIRLPOOL 
5a528befe4e815a51df1923c81f73a062a4477ae15b12cbb4bd015ebf9c57a6ea7a5b2cab50cc7ef5aa2e867d6bef2e569aae65841fc0bc34c077650e8e5edc1

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.4.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.4.ebuild
new file mode 100644
index ..8bc8bc4
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2016-11-21 Thread Bernard Cafarelli
commit: 8c8b56d0589777bdf0ce0a84dc16aba7b5af674e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 21 13:21:17 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 21 13:21:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8b56d0

app-text/paperwork: version bump to 1.0.4

Package-Manager: portage-2.3.2

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.0.4.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index d6f22fc..0c33046 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,3 +1,4 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
 DIST paperwork-1.0.1.tar.gz 206786 SHA256 
65976920d18a09ca5ff07088ec73073b857dfb40b4674e428619c8a90726ca01 SHA512 
10f854586381b6eb3eabb654cf42c7372594f1c413f601ebbff75f806c841e71e0883bbbfa482802d0f083521689d82ff0416bdbb378d9041402a0ed971b1ed6
 WHIRLPOOL 
1e314ed44bf86a4c97e7f30667fe07e40ed390715278cf418df0d0bd219b32e33256ac0606cadc10ec5c2a5d7847cda62850adc2bc15ace8c4583da71232bb38
 DIST paperwork-1.0.2.tar.gz 274148 SHA256 
0884c53f0a23fd396428fbc7cc0499d6ab95f7d76df369d68bffebfd5bf2d1ae SHA512 
607fa9f27a367adf8256e59d8d72e2c51822e51563d8e705bc20d4c5a99c3f924f81f262adcc0fd1950f4de97840f5f25e030aa8be164bdabc3bf7c07e2152a4
 WHIRLPOOL 
74ac71c9c59de5931ba159bbebb9599d1023be1cc4093e27e50600d34b8c0cc00fe52fed8e2409e2f40a7b2aa0bc4b62d2e87ff117a4a32902edbee61bf038af
+DIST paperwork-1.0.4.tar.gz 328507 SHA256 
08deac7c503f2e589a20e0fd14c56b034a333478cf87761e2e6ce924470a4c79 SHA512 
5aae6e719136e25e691b427bb0ad70456d47f2744ce90e42d97ba6bc973c11f8740ab8c8e5a64e3c33d77ed70eebea8832fd7de3b85e5a8e1769f3b4b20608f7
 WHIRLPOOL 
0b0e9ee62a83a23548181cce1154e78798cc8a6734f181ac3c03af5346da571922754bed33550a3dfc0d6832d72c22b9ffd42bbf2e3bc924aa8db9b57cc6932a

diff --git a/app-text/paperwork/paperwork-1.0.4.ebuild 
b/app-text/paperwork/paperwork-1.0.4.ebuild
new file mode 100644
index ..d7497b9
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.0.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2016-11-14 Thread Bernard Cafarelli
commit: 0185c0382e01f6f463635eca6aea61a055e466ef
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 14 15:16:30 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 14 15:18:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0185c038

app-text/paperwork: bump to 1.0.2

Tighten dependency on paperwork-backend

Package-Manager: portage-2.3.2

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.0.2.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index 6f99a596..d6f22fc 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1,2 +1,3 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
 DIST paperwork-1.0.1.tar.gz 206786 SHA256 
65976920d18a09ca5ff07088ec73073b857dfb40b4674e428619c8a90726ca01 SHA512 
10f854586381b6eb3eabb654cf42c7372594f1c413f601ebbff75f806c841e71e0883bbbfa482802d0f083521689d82ff0416bdbb378d9041402a0ed971b1ed6
 WHIRLPOOL 
1e314ed44bf86a4c97e7f30667fe07e40ed390715278cf418df0d0bd219b32e33256ac0606cadc10ec5c2a5d7847cda62850adc2bc15ace8c4583da71232bb38
+DIST paperwork-1.0.2.tar.gz 274148 SHA256 
0884c53f0a23fd396428fbc7cc0499d6ab95f7d76df369d68bffebfd5bf2d1ae SHA512 
607fa9f27a367adf8256e59d8d72e2c51822e51563d8e705bc20d4c5a99c3f924f81f262adcc0fd1950f4de97840f5f25e030aa8be164bdabc3bf7c07e2152a4
 WHIRLPOOL 
74ac71c9c59de5931ba159bbebb9599d1023be1cc4093e27e50600d34b8c0cc00fe52fed8e2409e2f40a7b2aa0bc4b62d2e87ff117a4a32902edbee61bf038af

diff --git a/app-text/paperwork/paperwork-1.0.2.ebuild 
b/app-text/paperwork/paperwork-1.0.2.ebuild
new file mode 100644
index ..d7497b9
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.0.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2016-11-14 Thread Bernard Cafarelli
commit: cd3556676b6b24f32e4cfe9374e1cf997055102f
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Nov 14 15:08:56 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov 14 15:18:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd355667

app-text/paperwork-backend: version bump to 1.0.2

Package-Manager: portage-2.3.2

 app-text/paperwork-backend/Manifest|  1 +
 .../paperwork-backend-1.0.2.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
index 4dfe242..5201a0b 100644
--- a/app-text/paperwork-backend/Manifest
+++ b/app-text/paperwork-backend/Manifest
@@ -1 +1,2 @@
 DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5857b5a9aed9e2842045d6bcf1f5a112cf SHA512 
4a092633ff29cffb738866c9a58aeb4d9f558afb74bb28253c24d4789e8a92cf2a0207f2014e384fca5c225311ecf953d14b9b2925d705626936ad1ef9555c7d
 WHIRLPOOL 
c77191ce7385c831950f4b0c1328c129b6f191bb837d88122ea3c4c0c533cf231d4f3bcbcd4f67cce1fcca970d4338461eaaad743de9630196e5d67d657cde7c
+DIST paperwork-backend-1.0.2.tar.gz 46565 SHA256 
0f3435864880e00df3d0e37ce2d58037d85a8c12f06d09d67fae25aa2895d0a7 SHA512 
061b65da55ec432ec76eacee78029e77df9a10d9da02b2e4bedd7efe51b2b771d29cd8d940410f93bf921087365ded5464d9acd3b3940afe9fc4e4a3e1afc5a7
 WHIRLPOOL 
2529ee71c49e8b43f88ed55812a100541a122a0cb3e68ae32e7b1a219592b98d9b1dccfce094760dbf0c23c53c53b1f5fdc2b6a05eba499f7fcf620c40193ee5

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild
new file mode 100644
index ..8bc8bc4
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork/

2016-11-10 Thread Bernard Cafarelli
commit: c179041ba6462e3d0d172ac73f5d44f84902fac8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov 10 14:28:04 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov 10 14:28:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c179041b

app-text/paperwork: version bump to 1.0.1

Lots of internal and dependencies changes in this version

Package-Manager: portage-2.3.2

 app-text/paperwork/Manifest   |  1 +
 app-text/paperwork/paperwork-1.0.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-text/paperwork/Manifest b/app-text/paperwork/Manifest
index ce9b6f1..6f99a596 100644
--- a/app-text/paperwork/Manifest
+++ b/app-text/paperwork/Manifest
@@ -1 +1,2 @@
 DIST paperwork-0.3.2.tar.gz 179509 SHA256 
55a3aa814cf0b62bc2e40d0b4789068ebec9bfd9fff182d75429aca624d243f1 SHA512 
b9dd1010f308d28e300d246d103cdd15253ed8e653721a89ab7de1aa6129b9a52f6ca6afe4714e19fca41369441240900af23faefd7284bbd420a9833bf3449e
 WHIRLPOOL 
f20ac1e45b754612b452d3bbb5854857c604108fe4a71b8870de7b317087b99597dc3c9275776c0b1cd68118c78c45f38195ef4635abe514a565a7e1b911895d
+DIST paperwork-1.0.1.tar.gz 206786 SHA256 
65976920d18a09ca5ff07088ec73073b857dfb40b4674e428619c8a90726ca01 SHA512 
10f854586381b6eb3eabb654cf42c7372594f1c413f601ebbff75f806c841e71e0883bbbfa482802d0f083521689d82ff0416bdbb378d9041402a0ed971b1ed6
 WHIRLPOOL 
1e314ed44bf86a4c97e7f30667fe07e40ed390715278cf418df0d0bd219b32e33256ac0606cadc10ec5c2a5d7847cda62850adc2bc15ace8c4583da71232bb38

diff --git a/app-text/paperwork/paperwork-1.0.1.ebuild 
b/app-text/paperwork/paperwork-1.0.1.ebuild
new file mode 100644
index ..c701155
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.0.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://github.com/jflesch/paperwork;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-text/paperwork-backend-1.0.1[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-util/glade[introspection,python]
+   x11-libs/gtk+:3[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/

2016-11-10 Thread Bernard Cafarelli
commit: 0554edc084e6e8ce020665943fcb4914c4e5b9f8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov 10 14:26:49 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov 10 14:28:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0554edc0

app-text/paperwork-backend: initial commit

Backend part split from paperwork for versions >= 1.0

Package-Manager: portage-2.3.2

 app-text/paperwork-backend/Manifest|  1 +
 app-text/paperwork-backend/metadata.xml| 11 
 .../paperwork-backend-1.0.1.ebuild | 29 ++
 3 files changed, 41 insertions(+)

diff --git a/app-text/paperwork-backend/Manifest 
b/app-text/paperwork-backend/Manifest
new file mode 100644
index ..4dfe242
--- /dev/null
+++ b/app-text/paperwork-backend/Manifest
@@ -0,0 +1 @@
+DIST paperwork-backend-1.0.1.tar.gz 46530 SHA256 
8e95a0ac6a0ab73af6f95a575dff8b5857b5a9aed9e2842045d6bcf1f5a112cf SHA512 
4a092633ff29cffb738866c9a58aeb4d9f558afb74bb28253c24d4789e8a92cf2a0207f2014e384fca5c225311ecf953d14b9b2925d705626936ad1ef9555c7d
 WHIRLPOOL 
c77191ce7385c831950f4b0c1328c129b6f191bb837d88122ea3c4c0c533cf231d4f3bcbcd4f67cce1fcca970d4338461eaaad743de9630196e5d67d657cde7c

diff --git a/app-text/paperwork-backend/metadata.xml 
b/app-text/paperwork-backend/metadata.xml
new file mode 100644
index ..6ea8a10
--- /dev/null
+++ b/app-text/paperwork-backend/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+voyag...@gentoo.org
+Bernard Cafarelli
+  
+  
+jflesch/paperwork-backend
+  
+

diff --git a/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild 
b/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild
new file mode 100644
index ..8bc8bc4
--- /dev/null
+++ b/app-text/paperwork-backend/paperwork-backend-1.0.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Backend part of Paperwork (Python API, no UI)"
+HOMEPAGE="https://github.com/jflesch/paperwork-backend;
+SRC_URI="https://github.com/jflesch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/poppler[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycountry[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/python-levenshtein[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   dev-python/termcolor[${PYTHON_USEDEP}]
+   dev-python/whoosh[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



  1   2   >