Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qscintilla-python/
Date: Sat, 11 Jan 2020 19:26:01
Message-Id: 1578770749.6addff20889176b5990590d35b96003e491d7258.pesa@gentoo
1 commit: 6addff20889176b5990590d35b96003e491d7258
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 11 19:23:52 2020 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 11 19:25:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6addff20
7
8 dev-python/qscintilla-python: remove 2.10.8
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Davide Pesavento <pesa <AT> gentoo.org>
12
13 dev-python/qscintilla-python/Manifest | 1 -
14 .../qscintilla-python-2.10.8.ebuild | 72 ----------------------
15 2 files changed, 73 deletions(-)
16
17 diff --git a/dev-python/qscintilla-python/Manifest b/dev-python/qscintilla-python/Manifest
18 index a1ce86f8e01..fbcc8117a9d 100644
19 --- a/dev-python/qscintilla-python/Manifest
20 +++ b/dev-python/qscintilla-python/Manifest
21 @@ -1,3 +1,2 @@
22 DIST QScintilla-2.11.3.tar.gz 3006383 BLAKE2B 6238aaff44d6136a64e8c38e38c4886357eb72aa4067f54eda1e876040c41ebce8577e244b81a062e9020c4d142439f5612ca88055d0ba87172ff5b8893938d7 SHA512 83406ef2f425c6288fcac52b01417853186ba860e33e14b236801271e034c327cbb00817cb7247e98bafc1844aeff9f24ec4878ac8ec4bd52d0d2d9778f6b884
23 DIST QScintilla-2.11.4.tar.gz 3007719 BLAKE2B b0f88a15a3636a0056d3bdac6e5d5bb05a065461c7de7fe0d5ad1740e87ca78a47bc1fd1af90a8751b553e8e326c830088a4cb38c9ebcad6be8bf9ebdb49bad0 SHA512 90fc2427121ca9ae55e34cf636460099bbdadd844318d9ef05f86790a36e25fb64528264bb7bb99e46b7add96378eff0cc69bb692940c6a1bddfadf86a9abdbd
24 -DIST QScintilla_gpl-2.10.8.tar.gz 2736054 BLAKE2B 4bc7a2bc1974f8e10a96b7716a8e35d4854e9eeb8040734f99b796bddd9679ee2539f6517743689f9d7deff9ce523cdbb2f77ccd65eaadfc947dcc7a1337d918 SHA512 c0a216737dbda6bc390225196b37a43e4884c9cd67e6e81fc1b1b952683fe88dbfe7caf3c66d94a378f37502e1f08cbdf788426248e73f5f66ec65982b7652b5
25
26 diff --git a/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild
27 deleted file mode 100644
28 index 0416137bac6..00000000000
29 --- a/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild
30 +++ /dev/null
31 @@ -1,72 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python2_7 python3_{6,7} )
38 -inherit python-r1 qmake-utils
39 -
40 -MY_P=QScintilla_gpl-${PV/_pre/.dev}
41 -
42 -DESCRIPTION="Python bindings for QScintilla"
43 -HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro"
44 -SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~ppc64 x86"
49 -IUSE="debug"
50 -
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -DEPEND="
54 - ${PYTHON_DEPS}
55 - >=dev-python/sip-4.19:=[${PYTHON_USEDEP}]
56 - dev-python/PyQt5[gui,printsupport,widgets,${PYTHON_USEDEP}]
57 - dev-qt/qtcore:5
58 - dev-qt/qtgui:5
59 - dev-qt/qtprintsupport:5
60 - dev-qt/qtwidgets:5
61 - ~x11-libs/qscintilla-${PV}:=
62 -"
63 -RDEPEND="${DEPEND}"
64 -
65 -S=${WORKDIR}/${MY_P}/Python
66 -
67 -src_prepare() {
68 - default
69 - python_copy_sources
70 -}
71 -
72 -src_configure() {
73 - configuration() {
74 - local myconf=(
75 - "${PYTHON}"
76 - configure.py
77 - --pyqt=PyQt5
78 - --qmake="$(qt5_get_bindir)"/qmake
79 - --sip-incdir="$(python_get_includedir)"
80 - $(usex debug '--debug --trace' '')
81 - --verbose
82 - --no-dist-info # causes parallel build failures, reported upstream
83 - )
84 - echo "${myconf[@]}"
85 - "${myconf[@]}" || die
86 -
87 - # Run eqmake to respect toolchain, build flags, and prevent stripping
88 - eqmake5 -recursive
89 - }
90 - python_foreach_impl run_in_build_dir configuration
91 -}
92 -
93 -src_compile() {
94 - python_foreach_impl run_in_build_dir default
95 -}
96 -
97 -src_install() {
98 - installation() {
99 - emake INSTALL_ROOT="${D}" install
100 - python_optimize
101 - }
102 - python_foreach_impl run_in_build_dir installation
103 -}