Gentoo Archives: gentoo-commits

From: Quentin Retornaz <gentoo@××××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-qt/qtnetwork/
Date: Wed, 27 Jan 2021 22:34:25
Message-Id: 1611786830.fe23e01f83e5a2570760c2498617346b7e06c1d5.quentin@gentoo
1 commit: fe23e01f83e5a2570760c2498617346b7e06c1d5
2 Author: Quentin Retornaz <gentoo <AT> retornaz <DOT> com>
3 AuthorDate: Wed Jan 27 22:33:50 2021 +0000
4 Commit: Quentin Retornaz <gentoo <AT> retornaz <DOT> com>
5 CommitDate: Wed Jan 27 22:33:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=fe23e01f
7
8 dev-qt/qtnetwork: drop old
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Quentin Retornaz <gentoo <AT> retornaz.com>
12
13 dev-qt/qtnetwork/qtnetwork-5.15.2.ebuild | 77 --------------------------------
14 1 file changed, 77 deletions(-)
15
16 diff --git a/dev-qt/qtnetwork/qtnetwork-5.15.2.ebuild b/dev-qt/qtnetwork/qtnetwork-5.15.2.ebuild
17 deleted file mode 100644
18 index 01f1825..0000000
19 --- a/dev-qt/qtnetwork/qtnetwork-5.15.2.ebuild
20 +++ /dev/null
21 @@ -1,77 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -QT5_MODULE="qtbase"
28 -inherit qt5-build
29 -
30 -DESCRIPTION="Network abstraction library for the Qt5 framework"
31 -
32 -if [[ ${QT5_BUILD_TYPE} == release ]]; then
33 - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
34 -fi
35 -
36 -IUSE="bindist connman gssapi libressl libproxy networkmanager sctp +ssl"
37 -
38 -DEPEND="
39 - ~dev-qt/qtcore-${PV}:5=
40 - sys-libs/zlib:=
41 - connman? ( ~dev-qt/qtdbus-${PV} )
42 - gssapi? ( virtual/krb5 )
43 - libproxy? ( net-libs/libproxy )
44 - networkmanager? ( ~dev-qt/qtdbus-${PV} )
45 - sctp? ( kernel_linux? ( net-misc/lksctp-tools ) )
46 - ssl? (
47 - !libressl? ( >=dev-libs/openssl-1.1.1:0=[bindist=] )
48 - libressl? ( dev-libs/libressl:0= )
49 - )
50 -"
51 -RDEPEND="${DEPEND}
52 - connman? ( net-misc/connman )
53 - networkmanager? ( net-misc/networkmanager )
54 -"
55 -
56 -QT5_TARGET_SUBDIRS=(
57 - src/network
58 - src/plugins/bearer/generic
59 -)
60 -
61 -QT5_GENTOO_CONFIG=(
62 - libproxy:libproxy:
63 - ssl::SSL
64 - ssl::OPENSSL
65 - ssl:openssl-linked:LINKED_OPENSSL
66 -)
67 -
68 -QT5_GENTOO_PRIVATE_CONFIG=(
69 - :network
70 -)
71 -
72 -PATCHES=( "${FILESDIR}"/${P}-libressl.patch ) # Bug 562050, not upstreamable
73 -
74 -pkg_setup() {
75 - use connman && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/connman)
76 - use networkmanager && QT5_TARGET_SUBDIRS+=(src/plugins/bearer/networkmanager)
77 -}
78 -
79 -src_configure() {
80 - local myconf=(
81 - $(usex connman -dbus-linked '')
82 - $(usex gssapi -feature-gssapi -no-feature-gssapi)
83 - $(qt_use libproxy)
84 - $(usex networkmanager -dbus-linked '')
85 - $(qt_use sctp)
86 - $(usex ssl -openssl-linked '')
87 - )
88 - qt5-build_src_configure
89 -}
90 -
91 -src_install() {
92 - qt5-build_src_install
93 - # workaround for bug 652650
94 - if use ssl; then
95 - sed -e "/^#define QT_LINKED_OPENSSL/s/$/ true/" \
96 - -i "${D}${QT5_HEADERDIR}"/Gentoo/${PN}-qconfig.h || die
97 - fi
98 -}