diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-10 12:06:48 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-10 13:56:35 +0200 |
commit | 6959f9d943f4641d678b4255544fac56ba8b36e9 (patch) | |
tree | 3c20a1eb7aab47b92b9c2a557b51d323896d1710 /media-sound | |
parent | kde-frameworks/kcoreaddons: Set ENABLE_PROCSTAT=OFF to silence cmake (diff) | |
download | gentoo-6959f9d943f4641d678b4255544fac56ba8b36e9.tar.gz gentoo-6959f9d943f4641d678b4255544fac56ba8b36e9.tar.bz2 gentoo-6959f9d943f4641d678b4255544fac56ba8b36e9.zip |
media-sound/qastools: Drop 0.22.0
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/qastools/Manifest | 1 | ||||
-rw-r--r-- | media-sound/qastools/files/qastools-0.22.0-nomancompress.patch | 169 | ||||
-rw-r--r-- | media-sound/qastools/files/qastools-0.22.0-qt-5.15.patch | 64 | ||||
-rw-r--r-- | media-sound/qastools/qastools-0.22.0.ebuild | 44 |
4 files changed, 0 insertions, 278 deletions
diff --git a/media-sound/qastools/Manifest b/media-sound/qastools/Manifest index 60a3e1c5274f..aecf7481de9d 100644 --- a/media-sound/qastools/Manifest +++ b/media-sound/qastools/Manifest @@ -1,2 +1 @@ -DIST qastools-v0.22.0.tar.gz 289261 BLAKE2B 25ff23753cbc1b4d758ff2f42b9022785391c61d9211e0024b55cc08841f41cdf0468c485af9e459dc8b65dac526b8238947419c36003d556e8e1fa13a4896e8 SHA512 9656960095520a1bee58efa3985dda30fae1b6be666dfd65b50cb582be21a40d273a1c06b69e870bc2b467f5d644b22ea30c2fd73eee9057b50de5e85864d712 DIST qastools-v0.23.0.tar.gz 292875 BLAKE2B c0ba54462e702411bee7a15a913617870488b1c9c2676e3c6f69d0648cff79cc1989e0f367953ba6f27b94c014c9b2fa7ef74ae4800d03b99bb8336ce4535d4a SHA512 79042a41a0ad37097d297175b899af73052953b7ae14058a1878e3145769db839b8bd4350bd36646d8436a3e8b37b64da7b3004bee3c7c7780d46a942af1d3b9 diff --git a/media-sound/qastools/files/qastools-0.22.0-nomancompress.patch b/media-sound/qastools/files/qastools-0.22.0-nomancompress.patch deleted file mode 100644 index 49756a91b4c0..000000000000 --- a/media-sound/qastools/files/qastools-0.22.0-nomancompress.patch +++ /dev/null @@ -1,169 +0,0 @@ -From 58649d44b4f1362c8fe5f88828be97e10b4fc00b Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner <asturm@gentoo.org> -Date: Mon, 8 Jun 2020 11:45:09 +0200 -Subject: [PATCH] Compress manpages optionally - ---- - qasconfig/share/man/CMakeLists.txt | 24 ++++++++++++------------ - qashctl/share/man/CMakeLists.txt | 26 +++++++++++++------------- - qasmixer/share/man/CMakeLists.txt | 24 ++++++++++++------------ - 3 files changed, 37 insertions(+), 37 deletions(-) - -diff --git a/qasconfig/share/man/CMakeLists.txt b/qasconfig/share/man/CMakeLists.txt -index 083ca91..628be1b 100644 ---- a/qasconfig/share/man/CMakeLists.txt -+++ b/qasconfig/share/man/CMakeLists.txt -@@ -1,27 +1,27 @@ - # Find gzip --FIND_PACKAGE ( UnixCommands REQUIRED ) -- --IF ( NOT GZIP ) -- MESSAGE ( FATAL_ERROR "Unable to find 'gzip' program" ) --ENDIF ( NOT GZIP ) -- -+FIND_PACKAGE ( UnixCommands ) - - # Configure manpages - - SET ( man_src ${CMAKE_CURRENT_SOURCE_DIR}/manpage.1.cmake ) - SET ( man_plain ${CMAKE_CURRENT_BINARY_DIR}/manpage.1 ) --SET ( man_gz ${CMAKE_CURRENT_BINARY_DIR}/manpage.1.gz ) -+SET ( man_gz .gz ) - - CONFIGURE_FILE ( ${man_src} ${man_plain} ) - - - # Compress manpages - -+IF ( NOT GZIP ) -+ MESSAGE ( STATUS "Unable to find 'gzip' program, not compressing manpage" ) -+ SET ( man_gz "" ) -+ELSE() - ADD_CUSTOM_COMMAND ( -- OUTPUT ${man_gz} -- COMMAND ${GZIP} -c -9 ${man_plain} > ${man_gz} -+ OUTPUT ${man_plain}${man_gz} -+ COMMAND ${GZIP} -c -9 ${man_plain} > ${man_plain}${man_gz} - DEPENDS ${man_plain} -- COMMENT "Building ${man_gz}" ) -+ COMMENT "Building ${man_plain}${man_gz}" ) -+ENDIF() - - ADD_CUSTOM_TARGET ( - qasconfig_manpage ALL -@@ -30,6 +30,6 @@ ADD_CUSTOM_TARGET ( - - # Installation of the manpage - --INSTALL ( FILES ${man_gz} -+INSTALL ( FILES ${man_plain}${man_gz} - DESTINATION ${INSTALL_DIR_MAN} -- RENAME ${PROGRAM_NAME}.1.gz ) -+ RENAME ${PROGRAM_NAME}.1${man_gz} ) -diff --git a/qashctl/share/man/CMakeLists.txt b/qashctl/share/man/CMakeLists.txt -index 911ea43..5f6ba15 100644 ---- a/qashctl/share/man/CMakeLists.txt -+++ b/qashctl/share/man/CMakeLists.txt -@@ -1,35 +1,35 @@ - # Find gzip --FIND_PACKAGE ( UnixCommands REQUIRED ) -- --IF ( NOT GZIP ) -- MESSAGE ( FATAL_ERROR "Unable to find 'gzip' program" ) --ENDIF ( NOT GZIP ) -- -+FIND_PACKAGE ( UnixCommands ) - - # Configure manpages - - SET ( man_src ${CMAKE_CURRENT_SOURCE_DIR}/manpage.1.cmake ) - SET ( man_plain ${CMAKE_CURRENT_BINARY_DIR}/manpage.1 ) --SET ( man_gz ${CMAKE_CURRENT_BINARY_DIR}/manpage.1.gz ) -+SET ( man_gz .gz ) - - CONFIGURE_FILE ( ${man_src} ${man_plain} ) - - - # Compress manpages - -+IF ( NOT GZIP ) -+ MESSAGE ( STATUS "Unable to find 'gzip' program, not compressing manpage" ) -+ SET ( man_gz "" ) -+ELSE() - ADD_CUSTOM_COMMAND ( -- OUTPUT ${man_gz} -- COMMAND ${GZIP} -c -9 ${man_plain} > ${man_gz} -+ OUTPUT ${man_plain}${man_gz} -+ COMMAND ${GZIP} -c -9 ${man_plain} > ${man_plain}${man_gz} - DEPENDS ${man_plain} -- COMMENT "Building ${man_gz}" ) -+ COMMENT "Building ${man_plain}${man_gz}" ) -+ENDIF() - - ADD_CUSTOM_TARGET ( - qashctl_manpage ALL -- DEPENDS ${man_gz} ) -+ DEPENDS ${man_plain}${man_gz} ) - - - # Installation of the manpage - --INSTALL ( FILES ${man_gz} -+INSTALL ( FILES ${man_plain}${man_gz} - DESTINATION ${INSTALL_DIR_MAN} -- RENAME ${PROGRAM_NAME}.1.gz ) -+ RENAME ${PROGRAM_NAME}.1${man_gz} ) -diff --git a/qasmixer/share/man/CMakeLists.txt b/qasmixer/share/man/CMakeLists.txt -index 5aea9af..c2bd872 100644 ---- a/qasmixer/share/man/CMakeLists.txt -+++ b/qasmixer/share/man/CMakeLists.txt -@@ -1,27 +1,27 @@ - # Find gzip --FIND_PACKAGE ( UnixCommands REQUIRED ) -- --IF ( NOT GZIP ) -- MESSAGE ( FATAL_ERROR "Unable to find 'gzip' program" ) --ENDIF ( NOT GZIP ) -- -+FIND_PACKAGE ( UnixCommands ) - - # Configure manpages - - SET ( man_src ${CMAKE_CURRENT_SOURCE_DIR}/manpage.1.cmake ) - SET ( man_plain ${CMAKE_CURRENT_BINARY_DIR}/manpage.1 ) --SET ( man_gz ${CMAKE_CURRENT_BINARY_DIR}/manpage.1.gz ) -+SET ( man_gz .gz ) - - CONFIGURE_FILE ( ${man_src} ${man_plain} ) - - - # Compress manpages - -+IF ( NOT GZIP ) -+ MESSAGE ( STATUS "Unable to find 'gzip' program, not compressing manpage" ) -+ SET ( man_gz "" ) -+ELSE() - ADD_CUSTOM_COMMAND ( -- OUTPUT ${man_gz} -- COMMAND ${GZIP} -c -9 ${man_plain} > ${man_gz} -+ OUTPUT ${man_plain}${man_gz} -+ COMMAND ${GZIP} -c -9 ${man_plain} > ${man_plain}${man_gz} - DEPENDS ${man_plain} -- COMMENT "Building ${man_gz}" ) -+ COMMENT "Building ${man_plain}${man_gz}" ) -+ENDIF() - - ADD_CUSTOM_TARGET ( - qasmixer_manpage ALL -@@ -30,6 +30,6 @@ ADD_CUSTOM_TARGET ( - - # Installation of the manpage - --INSTALL ( FILES ${man_gz} -+INSTALL ( FILES ${man_plain}${man_gz} - DESTINATION ${INSTALL_DIR_MAN} -- RENAME ${PROGRAM_NAME}.1.gz ) -+ RENAME ${PROGRAM_NAME}.1${man_gz} ) --- -2.27.0 - diff --git a/media-sound/qastools/files/qastools-0.22.0-qt-5.15.patch b/media-sound/qastools/files/qastools-0.22.0-qt-5.15.patch deleted file mode 100644 index 606630d7eebb..000000000000 --- a/media-sound/qastools/files/qastools-0.22.0-qt-5.15.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 9975fe653c8159504807ca6288bd974b4f6057b7 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner <asturm@gentoo.org> -Date: Mon, 8 Jun 2020 11:01:33 +0200 -Subject: [PATCH] Fix build with Qt 5.15 (missing QPainterPath includes) - -Fixes https://gitlab.com/sebholt/qastools/-/issues/1 ---- - shared/src/wdg/ds_slider_painter_bevelled.cpp | 1 + - shared/src/wdg/ds_switch_painter_circle.cpp | 1 + - shared/src/wdg/ds_switch_painter_close.cpp | 1 + - shared/src/wdg/sliders_pad_style.hpp | 1 + - 4 files changed, 4 insertions(+) - -diff --git a/shared/src/wdg/ds_slider_painter_bevelled.cpp b/shared/src/wdg/ds_slider_painter_bevelled.cpp -index 3c90143..1748c6e 100644 ---- a/shared/src/wdg/ds_slider_painter_bevelled.cpp -+++ b/shared/src/wdg/ds_slider_painter_bevelled.cpp -@@ -15,6 +15,7 @@ - - #include <QImage> - #include <QPainter> -+#include <QPainterPath> - #include <QLinearGradient> - #include <QRadialGradient> - #include <QScopedPointer> -diff --git a/shared/src/wdg/ds_switch_painter_circle.cpp b/shared/src/wdg/ds_switch_painter_circle.cpp -index 32fa8f1..36933af 100644 ---- a/shared/src/wdg/ds_switch_painter_circle.cpp -+++ b/shared/src/wdg/ds_switch_painter_circle.cpp -@@ -13,6 +13,7 @@ - - #include <QImage> - #include <QPainter> -+#include <QPainterPath> - #include <QRadialGradient> - #include <QScopedPointer> - -diff --git a/shared/src/wdg/ds_switch_painter_close.cpp b/shared/src/wdg/ds_switch_painter_close.cpp -index ef058a3..76932cc 100644 ---- a/shared/src/wdg/ds_switch_painter_close.cpp -+++ b/shared/src/wdg/ds_switch_painter_close.cpp -@@ -13,6 +13,7 @@ - - #include <QImage> - #include <QPainter> -+#include <QPainterPath> - #include <QRadialGradient> - #include <QScopedPointer> - -diff --git a/shared/src/wdg/sliders_pad_style.hpp b/shared/src/wdg/sliders_pad_style.hpp -index 3108f92..81a9075 100644 ---- a/shared/src/wdg/sliders_pad_style.hpp -+++ b/shared/src/wdg/sliders_pad_style.hpp -@@ -5,6 +5,7 @@ - #define __INC_sliders_pad_style_hpp__ - - #include <QPainter> -+#include <QPainterPath> - #include <QPicture> - #include <QPen> - --- -2.27.0 - diff --git a/media-sound/qastools/qastools-0.22.0.ebuild b/media-sound/qastools/qastools-0.22.0.ebuild deleted file mode 100644 index 579642b937f1..000000000000 --- a/media-sound/qastools/qastools-0.22.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Qt5 GUI ALSA tools: mixer, configuration browser" -HOMEPAGE="https://gitlab.com/sebholt/qastools" -SRC_URI="https://gitlab.com/sebholt/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -BDEPEND=" - dev-qt/linguist-tools:5 -" -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - media-libs/alsa-lib - virtual/libudev:= -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-qt-5.15.patch" - "${FILESDIR}/${P}-nomancompress.patch" -) - -S="${WORKDIR}"/${PN}-v${PV} - -src_configure() { - local mycmakeargs=( - -DSKIP_LICENSE_INSTALL=ON - -DCMAKE_DISABLE_FIND_PACKAGE_UnixCommands=ON - ) - cmake_src_configure -} |