Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/uniconvertor/
Date: Wed, 01 Jul 2020 15:57:16
Message-Id: 1593619017.19cf35ae4e42736d6e82e2768e83840ba5da144d.asturm@gentoo
1 commit: 19cf35ae4e42736d6e82e2768e83840ba5da144d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 15:55:29 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 15:56:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19cf35ae
7
8 media-gfx/uniconvertor: Drop 2.0_pre379-r1
9
10 Long obsolete...
11
12 Bug: https://bugs.gentoo.org/581816
13 Package-Manager: Portage-2.3.103, Repoman-2.3.23
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 .../uniconvertor/uniconvertor-2.0_pre379-r1.ebuild | 64 ----------------------
17 1 file changed, 64 deletions(-)
18
19 diff --git a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
20 deleted file mode 100644
21 index 70eb7af38ee..00000000000
22 --- a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
23 +++ /dev/null
24 @@ -1,64 +0,0 @@
25 -# Copyright 1999-2020 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI=6
29 -
30 -PYTHON_COMPAT=( python2_7 )
31 -
32 -inherit distutils-r1 xdg-utils
33 -
34 -DESCRIPTION="Convert vector graphic file formats like .cdr, .svg, wmf and more."
35 -HOMEPAGE="https://sk1project.net/modules.php?name=Products&product=uniconvertor"
36 -SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
37 -
38 -KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
39 -SLOT="0"
40 -LICENSE="GPL-2 LGPL-2"
41 -IUSE=""
42 -
43 -RDEPEND="
44 - dev-python/pycairo[${PYTHON_USEDEP}]
45 - media-gfx/imagemagick:=
46 - media-libs/lcms:2
47 - dev-python/pillow[${PYTHON_USEDEP}]"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig
50 - app-text/ghostscript-gpl"
51 -
52 -PATCHES=(
53 - "${FILESDIR}"/${P}-import.patch
54 - "${FILESDIR}"/${P}-libimg.patch
55 - "${FILESDIR}"/${P}-test.patch
56 - )
57 -
58 -python_prepare_all() {
59 - local wand
60 - wand=$(pkg-config --libs MagickWand | sed -e "s:^ *::g" -e "s: *$::g" -e "s:-l:\':g" -e "s: :',:g" -e "s:$:':g" -e "s:,'$::g")
61 -
62 - distutils-r1_python_prepare_all
63 -
64 - sed \
65 - -e "/libraries/s:'MagickWand':${wand}:g" \
66 - -i setup.py || die
67 -
68 - ln -sf \
69 - "${EPREFIX}"/usr/share/imagemagick/sRGB.icm \
70 - src/unittests/cms_tests/cms_data/sRGB.icm || die
71 -}
72 -
73 -python_test() {
74 - einfo ${PYTHONPATH}
75 - #distutils_install_for_testing
76 - cd src/unittests || die
77 - ${EPYTHON} all_tests.py || die
78 -}
79 -
80 -pkg_postinst() {
81 - xdg_mimeinfo_database_update
82 - xdg_desktop_database_update
83 -}
84 -
85 -pkg_postrm() {
86 - xdg_mimeinfo_database_update
87 - xdg_desktop_database_update
88 -}