From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/qlcplus/
Date: Fri, 04 Apr 2025 21:15:24 +0000 (UTC) [thread overview]
Message-ID: <1743801306.810e8ff1307d19af445ec9ed8795f2e1b447d5cd.asturm@gentoo> (raw)
commit: 810e8ff1307d19af445ec9ed8795f2e1b447d5cd
Author: Jannis Achstetter <kripton <AT> kripserver <DOT> net>
AuthorDate: Fri Apr 4 19:48:38 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Apr 4 21:15:06 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=810e8ff1
app-misc/qlcplus: drop 4.13.1, 5.0.0_beta3
Not compatible with Qt6
Closes: https://bugs.gentoo.org/915785
Signed-off-by: Jannis Achstetter <kripton <AT> kripserver.net>
Closes: https://github.com/gentoo/gentoo/pull/41452
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-misc/qlcplus/Manifest | 2 -
app-misc/qlcplus/qlcplus-4.13.1.ebuild | 85 ---------------------------
app-misc/qlcplus/qlcplus-5.0.0_beta3.ebuild | 90 -----------------------------
3 files changed, 177 deletions(-)
diff --git a/app-misc/qlcplus/Manifest b/app-misc/qlcplus/Manifest
index e884b5fe3e97..aba9e0999342 100644
--- a/app-misc/qlcplus/Manifest
+++ b/app-misc/qlcplus/Manifest
@@ -1,3 +1 @@
-DIST QLC+_4.13.1.tar.gz 12361431 BLAKE2B 26016aa1d6451573a0bdd7a7a3c6b41c10734ccf23efafb31a8f8cb32186da94a41d8bbedb24758f12ba3b9d13eb4d76a20ed9e0ab3b277e131ee6ed5ffcf456 SHA512 63403d92ea7abeee9b3c8fdd71c64a906b04ea76fe4805087a34ce6b8a57be99725eab93bbe95b2793977ef3a3dd8803bcf9771decc00ec3d8514da7f0e82598
DIST QLC+_4.14.1.tar.gz 12490354 BLAKE2B af1e06554f7bcc4097afe76d91ba4a8a8f6c1336c0aab5fa602ea65c81b9998539a71f425319f594c16a7506b141e49d31ec45da570c61c85086ab11d61b12de SHA512 3b40437c3845499d901e13fc59e8ad30059c7cf9bb2b1abd89e4d29d0a9415a70a056c1ae8fab2de33eabcfabc58c642670cb65da0a3e1bdafe10721b39460a2
-DIST QLC+_5.0.0_beta3.tar.gz 12088379 BLAKE2B 70695364a214a2aff9d4affc749ea3b969e788f7fc5f6d3b12b804a23ba0ef6d83817341dd4ff3331e4cb53887ca1563668dfef4724a7f12e4c64c7011be7ae3 SHA512 406e6bbf1bf4dd34f799a2fab3b13174cceccb63cc9af438c488028c57aa3bf7b139c0fa94de8e72d0558362b4b92422e1af80896b05a54a6e4a43cbb24bf18c
diff --git a/app-misc/qlcplus/qlcplus-4.13.1.ebuild b/app-misc/qlcplus/qlcplus-4.13.1.ebuild
deleted file mode 100644
index f27ff2f3d631..000000000000
--- a/app-misc/qlcplus/qlcplus-4.13.1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils udev virtualx xdg
-
-DESCRIPTION="A software to control DMX or analog lighting systems"
-HOMEPAGE="https://www.qlcplus.org/"
-SRC_URI="https://github.com/mcallegari/${PN}/archive/QLC+_${PV}.tar.gz"
-S="${WORKDIR}/qlcplus-QLC-_${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-qt/linguist-tools:5
-"
-RDEPEND="
- dev-embedded/libftdi:1
- dev-qt/qtcore:5
- dev-qt/qtgui:5[jpeg]
- dev-qt/qtmultimedia:5[widgets]
- dev-qt/qtnetwork:5
- dev-qt/qtscript:5
- dev-qt/qtserialport:5
- dev-qt/qtwidgets:5
- media-libs/alsa-lib
- media-libs/libmad
- media-libs/libsndfile
- sci-libs/fftw:3.0=
- virtual/libusb:1
- virtual/udev
-"
-IDEPEND="
- dev-util/desktop-file-utils
-"
-DEPEND="${RDEPEND}
- dev-qt/qttest:5
-"
-
-src_prepare() {
- default
-
- sed -e "/UDEVRULESDIR/s:/etc/udev/rules.d:$(get_udevdir)/rules.d:" \
- -i variables.pri || die
-
- ## Remove Werror-flag since there are some warnings with gcc-9.x
- sed -e "s/QMAKE_CXXFLAGS += -Werror/#&/g" \
- -i variables.pri || die
-
- ## Remove Werror-flag since there are some warnings with gcc-9.x
- sed -e "s/unix:QMAKE_CFLAGS += -Werror/#&/g" \
- -i variables.pri || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}
-
-pkg_postinst() {
- udev_reload
-
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
-}
-
-src_test() {
- virtx emake check
-}
-
-pkg_postrm() {
- udev_reload
-
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
-}
diff --git a/app-misc/qlcplus/qlcplus-5.0.0_beta3.ebuild b/app-misc/qlcplus/qlcplus-5.0.0_beta3.ebuild
deleted file mode 100644
index 8c80c434cd41..000000000000
--- a/app-misc/qlcplus/qlcplus-5.0.0_beta3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils udev xdg
-
-DESCRIPTION="Software to control DMX or analog lighting systems"
-HOMEPAGE="https://www.qlcplus.org/"
-SRC_URI="https://github.com/mcallegari/${PN}/archive/QLC+_${PV}.tar.gz"
-S="${WORKDIR}/qlcplus-QLC-_${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-embedded/libftdi:=
- dev-libs/glib:2
- dev-qt/qt3d:5[qml]
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5[widgets,qml]
- dev-qt/qtnetwork:5
- dev-qt/qtprintsupport:5
- dev-qt/qtserialport:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- media-libs/alsa-lib
- media-libs/libmad
- media-libs/libsndfile
- sci-libs/fftw:3.0
- virtual/libusb:0
- virtual/libusb:1
- virtual/udev
-"
-DEPEND="${RDEPEND}
- dev-qt/qttest:5
-"
-BDEPEND="dev-qt/linguist-tools:5"
-IDEPEND="dev-util/desktop-file-utils"
-
-src_prepare() {
- default
-
- sed -e "/UDEVRULESDIR/s:/etc/udev/rules.d:$(get_udevdir)/rules.d:" \
- -i variables.pri || die
-
- ## Remove Werror-flag since there are some warnings with gcc-9.x
- sed -e "s/QMAKE_CXXFLAGS += -Werror/#&/g" \
- -i variables.pri || die
-}
-
-src_configure() {
- eqmake5 CONFIG+=qmlui
-}
-
-src_test() {
- local -x QT_QPA_PLATFORM=offscreen
- emake check
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}
-
-pkg_postinst() {
- udev_reload
-
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
-
- elog "Some configurations of KDE Plasma break the layout of"
- elog "QLC+ 5's QML UI."
- elog "As a workaround, try those environment variables:"
- elog " export XDG_CURRENT_DESKTOP=GNOME"
- elog "OR"
- elog " export QT_QPA_PLATFORMTHEME=gtk3"
-}
-
-pkg_postrm() {
- udev_reload
-
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
-}
next reply other threads:[~2025-04-04 21:15 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-04 21:15 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-04 21:15 [gentoo-commits] repo/gentoo:master commit in: app-misc/qlcplus/ Andreas Sturmlechner
2024-12-31 11:27 Andreas Sturmlechner
2024-07-04 13:43 Joonas Niilola
2024-07-04 13:43 Joonas Niilola
2024-01-17 6:02 Sam James
2024-01-16 11:53 Andreas Sturmlechner
2024-01-16 11:53 Andreas Sturmlechner
2023-10-21 21:04 Andreas Sturmlechner
2023-10-21 21:04 Andreas Sturmlechner
2023-10-21 21:04 Andreas Sturmlechner
2023-10-11 10:05 Viorel Munteanu
2022-09-27 12:31 Joonas Niilola
2022-09-11 22:25 Sam James
2022-08-04 6:37 Joonas Niilola
2022-08-04 6:37 Joonas Niilola
2022-08-04 6:37 Joonas Niilola
2022-08-04 6:37 Joonas Niilola
2021-07-14 6:25 Joonas Niilola
2021-04-23 5:57 Joonas Niilola
2020-09-07 15:43 Joonas Niilola
2019-12-08 7:41 Joonas Niilola
2019-12-07 19:38 Joonas Niilola
2019-12-07 19:38 Joonas Niilola
2019-12-07 19:38 Joonas Niilola
2018-10-27 15:57 Andreas Sturmlechner
2017-12-18 8:46 Michael Weber
2017-12-11 7:59 Michael Weber
2017-09-29 5:37 Michael Weber
2017-09-17 16:18 Andreas Sturmlechner
2017-09-17 16:18 Andreas Sturmlechner
2017-02-07 8:11 Michael Weber
2017-01-15 10:05 Michael Weber
2016-12-14 16:50 Michael Weber
2016-12-14 16:50 Michael Weber
2016-06-10 23:24 Michael Weber
2016-03-19 21:41 Patrice Clement
2016-02-29 16:19 Michael Palimaka
2016-02-20 20:56 Michael Weber
2016-02-20 12:45 Michael Weber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1743801306.810e8ff1307d19af445ec9ed8795f2e1b447d5cd.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox