Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/gaupol/
Date: Mon, 31 Oct 2016 09:17:36
Message-Id: 1477905437.b66fb5707db37ba00b816f2f80d220dd6dce3f58.mgorny@gentoo
1 commit: b66fb5707db37ba00b816f2f80d220dd6dce3f58
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Sat Oct 29 20:06:31 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 09:17:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b66fb570
7
8 media-video/gaupol: bump to 1.0
9
10 Closes: https://github.com/gentoo/gentoo/pull/2697
11 Package-Manager: portage-2.3.2
12
13 media-video/gaupol/Manifest | 1 +
14 media-video/gaupol/gaupol-1.0.ebuild | 61 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 62 insertions(+)
16
17 diff --git a/media-video/gaupol/Manifest b/media-video/gaupol/Manifest
18 index 8efc1c3..3035be0 100644
19 --- a/media-video/gaupol/Manifest
20 +++ b/media-video/gaupol/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gaupol-0.91.tar.gz 518493 SHA256 cb7d2d3fa4dfd321802eb6c3dd0a2f9582a9195a70b153d0ce65f2dfa9048add SHA512 92459ec0a7d77c8e4a34f44489ae8fc01feeb2d34f6fd152c8bfeaf72b8235c680155698c55e7f9d46ce82bee8274b14313b6a43167f65f784511e583d4858fb WHIRLPOOL 7d46d9bb20d104355f16a966a46e25eb76e8cb72fa5082b9526a6ee3b012312dc1e5a6a74d6fe850cce40d9ce993b4a06471ec93ac907bb1f3de30409217ff43
23 DIST gaupol-0.92.tar.gz 519991 SHA256 790928bb7863d4f1484bcd907f23f8b938f71b491860d51e497e63729e1e3bf8 SHA512 828bba44b8fbf2c2ab074a1479b1b9cc4e42eee98d87e5f32f049bc2c34ccfbdf9488256b794a134f93d4c01249c42361f72bf9df5819e528d59e9e7285f9dd3 WHIRLPOOL 7acb87b80e7a534fee19b40fbebaf99ae586bce49957122211ead814a9c597dbea76bda52c539414f01bfacb5a5e235d7116ac1337b1d30083d5582ef67d4fe3
24 +DIST gaupol-1.0.tar.gz 520620 SHA256 bc407489855eb0a7a8bda6f6fcc7fcbe6136582cc588ec081750b8546f311e3b SHA512 1f6a9ff1bf6722473aa53c9c8e787ce9d25669bbafe19b4c117965bf281307365cb4cd31241af92b0623ead8a9627d38c5811d5b361c8707ac3467d520c1d89c WHIRLPOOL 50cd2546cc48538c8095ad9fbb9eb71efb6ea8cd038fa9ad217cf5a502c6cfee9530e94a8da9f69e60fbd9c511c112c9fbebc62a24edec10049e80b135c7232d
25
26 diff --git a/media-video/gaupol/gaupol-1.0.ebuild b/media-video/gaupol/gaupol-1.0.ebuild
27 new file mode 100644
28 index 00000000..f8e427f
29 --- /dev/null
30 +++ b/media-video/gaupol/gaupol-1.0.ebuild
31 @@ -0,0 +1,61 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python{3_3,3_4,3_5} )
39 +
40 +inherit distutils-r1 gnome2-utils virtualx xdg-utils
41 +
42 +DESCRIPTION="A subtitle editor for text-based subtitles"
43 +HOMEPAGE="http://otsaloma.io/gaupol/"
44 +SRC_URI="https://github.com/otsaloma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="spell test"
50 +
51 +RDEPEND="app-text/iso-codes
52 + dev-python/chardet[${PYTHON_USEDEP}]
53 + dev-python/pygobject:3[${PYTHON_USEDEP}]
54 + x11-libs/gtk+:3[introspection]
55 + spell? (
56 + app-text/gtkspell:3
57 + >=dev-python/pyenchant-1.4[${PYTHON_USEDEP}]
58 + )"
59 +DEPEND="${RDEPEND}
60 + dev-util/intltool
61 + sys-devel/gettext
62 + test? (
63 + dev-python/pytest[${PYTHON_USEDEP}]
64 + dev-python/pytest-runner[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +DOCS=( AUTHORS.md NEWS.md TODO.md README.md README.aeidon.md )
69 +
70 +pkg_postinst() {
71 + xdg_desktop_database_update
72 + xdg_mimeinfo_database_update
73 + gnome2_icon_cache_update
74 + if [[ -z ${REPLACING_VERSIONS} ]]; then
75 + elog "Previewing support needs MPV, MPlayer or VLC."
76 +
77 + if use spell; then
78 + elog "Additionally, spell-checking requires a dictionary, any of"
79 + elog "Aspell/Pspell, Ispell, MySpell, Uspell, Hspell or AppleSpell."
80 + fi
81 + fi
82 +}
83 +
84 +python_test() {
85 + virtx py.test
86 +}
87 +
88 +pkg_postrm() {
89 + xdg_desktop_database_update
90 + xdg_mimeinfo_database_update
91 + gnome2_icon_cache_update
92 +}