qtserialport: 5.12.0 bump

This commit is contained in:
blshkv 2019-01-25 09:44:36 +08:00
parent 0c0dd823dc
commit 9366a8cc50
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 33 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST qtserialport-everywhere-src-5.11.1.tar.xz 301692 BLAKE2B 8d57503dbd16d142ac72dbc496218d57ff92212b44e8a504f3b6ba27b2bdb295061705c1318000d50c2383ce815c8420b056ea66720f62338a1b98785d37c5f4 SHA512 2f13122438dfe91c6885534e4470e119abf1c7134b1d344e9c0700661c002566f483aa2bcdde53e4860df349fff4ff8ef05bfafb0aa1bb4484d3e5d07c989404
DIST qtserialport-everywhere-src-5.11.3.tar.xz 299140 BLAKE2B a10c24eedc425262145b705b7a264732db6a47d1bc080f2544bdb6873b1e7f6d1c25e9b27a3dbb5fd3eb697f06c4b057c072112090ce5f769f765d858f41860c SHA512 2c09a0e47bfebb494cdc767c5268bde77ef7dcbc665cfdaa0b17468a0cebea0208ea8019d0387622d2db63387557699fa30e043f3478dbddfd6b8fe909a7add6
DIST qtserialport-everywhere-src-5.12.0.tar.xz 298892 BLAKE2B f21566c709842b5738eb99fa3e84952d84d3829c0606049d4fb33ff85070a8ceb8f12535df4e991acbf65e246151c370e3a8477649bd80bbbadb5549b91f0619 SHA512 b8004e844cab66a50f5c899af74f22e62dbac23493210d579344d4a9337990da9781c3647662e7f31b132b4c60d7e3de640a9a636ae7c63de253858324e11428

View file

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qt5-build
DESCRIPTION="Serial port abstraction library for the Qt5 framework"
if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
fi
IUSE=""
DEPEND="
~dev-qt/qtcore-${PV}
virtual/libudev:=
"
RDEPEND="${DEPEND}"
src_prepare() {
# make sure we link against libudev
sed -i -e 's/:qtConfig(libudev)//' \
src/serialport/serialport-lib.pri || die
qt5-build_src_prepare
}
#this is an unacceptable hack due to some broken handling in whatever creates the Makefile failing to find -ludev
src_compile() {
SUBLIBS="-ludev" qt5-build_src_compile
}