forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add libnotify dependency, should fix bug #636790 Package-Manager: Portage-2.3.14, Repoman-2.3.6
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 fa0e6acf4bd7514899433077a32222ced8fdf8565467dd7cb8cc05ab2c737352d67a8375af98bbed507ab5a73b302cd968dddce2bba8f13a3749edef8562f001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}" |