From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBE9E139083 for ; Thu, 17 Aug 2017 18:59:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9FBC1FC08E; Thu, 17 Aug 2017 18:58:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 986271FC08E for ; Thu, 17 Aug 2017 18:58:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AD0A3418D4 for ; Thu, 17 Aug 2017 18:58:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97618792E for ; Thu, 17 Aug 2017 18:58:49 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1502996289.cae4e3ba3a7dd9507007ba99413974f0c51363f7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/k3b/, kde-apps/k3b/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/k3b/files/k3b-17.04.3-out-of-bounds.patch kde-apps/k3b/k3b-17.04.3-r2.ebuild X-VCS-Directories: kde-apps/k3b/files/ kde-apps/k3b/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cae4e3ba3a7dd9507007ba99413974f0c51363f7 X-VCS-Branch: master Date: Thu, 17 Aug 2017 18:58:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 209bca77-c00a-48d3-a18a-7a088b1a6b0c X-Archives-Hash: 4741093654baf9ec39a75c1f33441a3f commit: cae4e3ba3a7dd9507007ba99413974f0c51363f7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 17 18:34:01 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 17 18:58:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cae4e3ba kde-apps/k3b: Drop old Package-Manager: Portage-2.3.8, Repoman-2.3.3 kde-apps/k3b/files/k3b-17.04.3-out-of-bounds.patch | 75 ------------- kde-apps/k3b/k3b-17.04.3-r2.ebuild | 120 --------------------- 2 files changed, 195 deletions(-) diff --git a/kde-apps/k3b/files/k3b-17.04.3-out-of-bounds.patch b/kde-apps/k3b/files/k3b-17.04.3-out-of-bounds.patch deleted file mode 100644 index 83034e74813..00000000000 --- a/kde-apps/k3b/files/k3b-17.04.3-out-of-bounds.patch +++ /dev/null @@ -1,75 +0,0 @@ -From 7f0be6a33b8260f7789c6aeed58be8d1c844229a Mon Sep 17 00:00:00 2001 -From: Leslie Zhai -Date: Tue, 1 Aug 2017 14:13:05 +0800 -Subject: Fix K3b::Device::from2Byte out-of-bounds issue. - -A great bug report by Mark! - -BUG: 382941 ---- - libk3bdevice/k3bdeviceglobals.cpp | 24 ++++++++++++------------ - tests/k3bdeviceglobalstest.cpp | 4 +++- - 2 files changed, 15 insertions(+), 13 deletions(-) - -diff --git a/libk3bdevice/k3bdeviceglobals.cpp b/libk3bdevice/k3bdeviceglobals.cpp -index 090ed29..c016f59 100644 ---- a/libk3bdevice/k3bdeviceglobals.cpp -+++ b/libk3bdevice/k3bdeviceglobals.cpp -@@ -212,27 +212,27 @@ void K3b::Device::debugBitfield( unsigned char* data, long len ) - } - - --quint16 K3b::Device::from2Byte( const unsigned char* d ) -+quint16 K3b::Device::from2Byte(const unsigned char* d) - { -- if (d == NULL) { -- qWarning() << "Invalid nullptr!"; -+ if (d == NULL || strlen((const char *) d) < 2) { -+ qWarning() << "Invalid Byte!"; - return 0; - } -- return ( (d[0] << 8 & 0xFF00) | -- (d[1] & 0xFF) ); -+ return ((d[0] << 8 & 0xFF00) | -+ (d[1] & 0xFF)); - } - - --quint32 K3b::Device::from4Byte( const unsigned char* d ) -+quint32 K3b::Device::from4Byte(const unsigned char* d) - { -- if (d == NULL) { -- qWarning() << "Invalid nullptr!"; -+ if (d == NULL || strlen((const char *) d) < 4) { -+ qWarning() << "Invalid Byte!"; - return 0; - } -- return ( (d[0] << 24 & 0xFF000000) | -- (d[1] << 16 & 0xFF0000) | -- (d[2] << 8 & 0xFF00) | -- (d[3] & 0xFF) ); -+ return ((d[0] << 24 & 0xFF000000) | -+ (d[1] << 16 & 0xFF0000) | -+ (d[2] << 8 & 0xFF00) | -+ (d[3] & 0xFF)); - } - - -diff --git a/tests/k3bdeviceglobalstest.cpp b/tests/k3bdeviceglobalstest.cpp -index 307b772..635ee39 100644 ---- a/tests/k3bdeviceglobalstest.cpp -+++ b/tests/k3bdeviceglobalstest.cpp -@@ -23,8 +23,10 @@ DeviceGlobalsTest::DeviceGlobalsTest() - - void DeviceGlobalsTest::testFrom2Byte() - { -- const unsigned char* d = NULL; -+ unsigned char* d = NULL; - QCOMPARE(K3b::Device::from2Byte(d), (quint16)0); -+ unsigned char buf[1] = { '\0' }; -+ QCOMPARE(K3b::Device::from2Byte(buf), (quint16)0); - } - - void DeviceGlobalsTest::testFrom4Byte() --- -cgit v0.11.2 diff --git a/kde-apps/k3b/k3b-17.04.3-r2.ebuild b/kde-apps/k3b/k3b-17.04.3-r2.ebuild deleted file mode 100644 index d6448856ec8..00000000000 --- a/kde-apps/k3b/k3b-17.04.3-r2.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_HANDBOOK="forceoptional" -KDE_TEST="true" -inherit kde5 - -DESCRIPTION="Full-featured burning and ripping application based on KDE Frameworks" -HOMEPAGE="http://www.k3b.org/" - -LICENSE="GPL-2 FDL-1.2" -KEYWORDS="~amd64 ~x86" -IUSE="dvd emovix encode ffmpeg flac libav mad mp3 musepack sndfile sox taglib vcd vorbis webkit" - -DEPEND=" - $(add_frameworks_dep karchive) - $(add_frameworks_dep kbookmarks) - $(add_frameworks_dep kcmutils) - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kfilemetadata 'taglib?') - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kio) - $(add_frameworks_dep kjobwidgets) - $(add_frameworks_dep knewstuff) - $(add_frameworks_dep knotifications) - $(add_frameworks_dep knotifyconfig) - $(add_frameworks_dep kservice) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kxmlgui) - $(add_frameworks_dep solid) - $(add_kdeapps_dep libkcddb) - $(add_qt_dep qtdbus) - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtxml) - media-libs/libsamplerate - dvd? ( media-libs/libdvdread ) - ffmpeg? ( - libav? ( media-video/libav:= ) - !libav? ( media-video/ffmpeg:0= ) - ) - flac? ( >=media-libs/flac-1.2[cxx] ) - mp3? ( media-sound/lame ) - mad? ( media-libs/libmad ) - musepack? ( >=media-sound/musepack-tools-444 ) - sndfile? ( media-libs/libsndfile ) - taglib? ( >=media-libs/taglib-1.5 ) - vorbis? ( media-libs/libvorbis ) - webkit? ( $(add_qt_dep qtwebkit) ) -" -RDEPEND="${DEPEND} - app-cdr/cdrdao - dev-libs/libburn - media-sound/cdparanoia - virtual/cdrtools - dvd? ( - >=app-cdr/dvd+rw-tools-7 - encode? ( media-video/transcode[dvd] ) - ) - emovix? ( media-video/emovix ) - sox? ( media-sound/sox ) - vcd? ( media-video/vcdimager ) -" - -REQUIRED_USE=" - flac? ( taglib ) - mp3? ( encode taglib ) - sox? ( encode taglib ) -" - -DOCS+=( ChangeLog {FAQ,PERMISSIONS,README}.txt ) - -PATCHES=( "${FILESDIR}/${P}-out-of-bounds.patch" ) - -src_configure() { - local mycmakeargs=( - -DK3B_BUILD_API_DOCS=OFF - -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON - -DK3B_ENABLE_HAL_SUPPORT=OFF - -DK3B_ENABLE_MUSICBRAINZ=OFF - -DK3B_DEBUG=$(usex debug) - -DK3B_ENABLE_DVD_RIPPING=$(usex dvd) - -DK3B_BUILD_EXTERNAL_ENCODER_PLUGIN=$(usex encode) - -DK3B_BUILD_FFMPEG_DECODER_PLUGIN=$(usex ffmpeg) - -DK3B_BUILD_FLAC_DECODER_PLUGIN=$(usex flac) - -DK3B_BUILD_LAME_ENCODER_PLUGIN=$(usex mp3) - -DK3B_BUILD_MAD_DECODER_PLUGIN=$(usex mad) - -DK3B_BUILD_MUSE_DECODER_PLUGIN=$(usex musepack) - -DK3B_BUILD_SNDFILE_DECODER_PLUGIN=$(usex sndfile) - -DK3B_BUILD_SOX_ENCODER_PLUGIN=$(usex sox) - -DK3B_ENABLE_TAGLIB=$(usex taglib) - -DK3B_BUILD_OGGVORBIS_DECODER_PLUGIN=$(usex vorbis) - -DK3B_BUILD_OGGVORBIS_ENCODER_PLUGIN=$(usex vorbis) - $(cmake-utils_use_find_package webkit Qt5WebKitWidgets) - ) - - kde5_src_configure -} - -pkg_postinst() { - kde5_pkg_postinst - - echo - elog "If you get warnings on start-up, uncheck the \"Check system" - elog "configuration\" option in the \"Misc\" settings window." - echo - - local group=cdrom - use kernel_linux || group=operator - elog "Make sure you have proper read/write permissions on optical device(s)." - elog "Usually, it is sufficient to be in the ${group} group." - echo -}