media-video/qt-recordmydesktop: Remove last-rited package

Closes: https://bugs.gentoo.org/649116
This commit is contained in:
Andreas Sturmlechner
2018-04-06 00:21:57 +02:00
parent 88c948d951
commit f3d06451cc
7 changed files with 0 additions and 135 deletions

View File

@@ -1 +0,0 @@
DIST qt-recordmydesktop-0.3.8.tar.gz 185528 BLAKE2B 366bb84f6ffa39db33c04ebf7e59fe5e8b04099e8a8a5c704ef4dfc16f2f878292614b301ce1c7a3cae4d532d0696cf3f7474e15f762a20da220c951737a687b SHA512 bdbdfc898e7a463547701b22af94e8b86c48037e3d644afcb0465001922c9cf9e722d0b929868237bd2800edd14df78d6eed93303cdcd19d98ec864934488fe5

View File

@@ -1,32 +0,0 @@
--- a/src/rmdPrefsWidget.py 2008-11-23 16:09:14.000000000 +0100
+++ b/src/rmdPrefsWidget.py 2010-05-24 16:23:30.255865721 +0200
@@ -302,9 +302,29 @@
def remPort(self,lwi):
self.jack_lsp_listSave.takeItem(self.jack_lsp_listSave.row(lwi))
+ def which(self,program):
+ import os
+ def is_exe(fpath):
+ return os.path.exists(fpath) and os.access(fpath, os.X_OK)
+
+ fpath, fname = os.path.split(program)
+ if fpath:
+ if is_exe(program):
+ return program
+ else:
+ for path in os.environ["PATH"].split(os.pathsep):
+ exe_file = os.path.join(path, program)
+ if is_exe(exe_file):
+ return exe_file
+
+ return None
+
def __runJackLSP__(self,button=None):
self.ports=[]
failed=0
+ if self.which('jack_lsp') == None:
+ self.jack_button.setEnabled(False)
+ return
(stdin,stdout,stderr)=os.popen3(['jack_lsp'],'t')
ports=stdout.readlines()
stdin.close()

View File

@@ -1,18 +0,0 @@
Fixes errors reported by desktop-file-validate.
--- a/src/qt-recordmydesktop.desktop
+++ b/src/qt-recordmydesktop.desktop
@@ -1,12 +1,11 @@
[Desktop Entry]
Version=1.0
-Encoding=UTF-8
Name=qt-recordMyDesktop
Comment=Frontend for recordMyDesktop
Comment[fr]=Interface pour recordmydesktop
Exec=qt-recordMyDesktop
Terminal=false
Type=Application
-Icon=qt-recordmydesktop.png
+Icon=qt-recordmydesktop
Categories=AudioVideo;Recorder;
StartupNotify=false

View File

@@ -1,14 +0,0 @@
Index: qt-recordmydesktop-0.3.8/configure.ac
===================================================================
--- qt-recordmydesktop-0.3.8.orig/configure.ac
+++ qt-recordmydesktop-0.3.8/configure.ac
@@ -50,8 +50,7 @@ fi
b=$(echo "$PYQT4_VERSION" | awk 'BEGIN{ FS="." } { print $1 "\n" $2 "\n" $3 }')
c=($b)
-
-export PYQT4_MAJOR=${c[[0]]}
+export PYQT4_MAJOR=${c[[0]]/snapshot-/}
export PYQT4_MINOR=${c[[1]]}
if test $PYQT4_MAJOR != 4; then

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>media-video@gentoo.org</email>
<name>Gentoo Video project</name>
</maintainer>
<maintainer type="project">
<email>qt@gentoo.org</email>
<name>Gentoo Qt Project</name>
</maintainer>
<upstream>
<remote-id type="sourceforge">recordmydesktop</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,50 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit autotools python-single-r1
DESCRIPTION="Qt4 interface for RecordMyDesktop"
HOMEPAGE="http://recordmydesktop.sourceforge.net/"
SRC_URI="mirror://sourceforge/recordmydesktop/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
# Test is buggy : bug #186752
# Tries to run intl-toolupdate without it being substituted from
# configure, make test tries run make check in flumotion/test what
# makes me think that this file has been copied from flumotion without
# much care...
RESTRICT="test"
RDEPEND="
>=dev-python/PyQt4-4.1[X,${PYTHON_USEDEP}]
>=media-video/recordmydesktop-0.3.8
x11-apps/xwininfo
${PYTHON_DEPS}"
DEPEND="${RDEPEND}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DOCS=( AUTHORS ChangeLog NEWS README )
PATCHES=(
"${FILESDIR}/${P}-check-for-jack.patch"
"${FILESDIR}/${P}-desktopfile.patch"
"${FILESDIR}/${P}-pyqt4.patch"
)
src_prepare() {
default
# these deps are required by PyQt4, not this package
sed -e '/^PKG_CHECK_MODULES/d' -i configure.ac || die "sed failed"
eautoreconf
python_fix_shebang src/qt-recordMyDesktop.in
}

View File

@@ -581,11 +581,6 @@ dev-lisp/asdf-binary-locations
# Masked for removal in 30 days. Bug #648448
dev-lisp/gentoo-init
# Michael Palimaka <kensington@gentoo.org> (07 Mar 2018)
# Depends on deprecated Qt 4. Dead upstream.
# Masked for removal in 30 days. Bug #649116.
media-video/qt-recordmydesktop
# Brian Evans <grknight@gentoo.org> (06 Mar 2018)
# MariaDB MaxScale 1.x depends on the deprecated libmysqld
# Newer versions bundle software that require git access