commit:     bb08c1bf8bad4b37d7ee6ccf13f1e15d77952a3b
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 17:24:14 2018 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 17:24:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb08c1bf

media-radio/svxlink: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-radio/svxlink/Manifest                       |  1 -
 .../svxlink/files/svxlink-15.11-gcc72.patch        | 12 ----
 media-radio/svxlink/svxlink-15.11-r1.ebuild        | 76 ----------------------
 media-radio/svxlink/svxlink-15.11.ebuild           | 74 ---------------------
 4 files changed, 163 deletions(-)

diff --git a/media-radio/svxlink/Manifest b/media-radio/svxlink/Manifest
index 143694cf07b..03bc52d7e31 100644
--- a/media-radio/svxlink/Manifest
+++ b/media-radio/svxlink/Manifest
@@ -1,2 +1 @@
-DIST svxlink-15.11.tar.gz 1528034 BLAKE2B 
70a8f0f0181aee836738fba0b570d5fe5a896685267b8a9bbd09e6f6139fd764f5dac58dd57cff1ec2531b748511bb210a2aacc30704c5aee7d378489316a9b5
 SHA512 
b5c36e1a5e1dd0f954b7c2318d32d1bd52d8ec0a94a98e9c2de0b61ebbc6d0809d87fefbf13271c20a1a55e1a965e1a98f14c819df7b16a523b7cfc0fd4562ac
 DIST svxlink-17.12.1.tar.gz 1621559 BLAKE2B 
8a1d9498f451a730ee8d961d4ebd548f34f977367069658bdf4af7d91726e558c9e1ab084423b0238ae1f5fdcafd8e88480b818491e5f91d176d07d81fced5a3
 SHA512 
90bd74420fcd78d974d12ee13ac792f2a0ecd7cb483ec36ef1085e905f9d6c62af707cb65d04079ec66d7df6da615080a2058a0a559c82171b4882a4b20289f9

diff --git a/media-radio/svxlink/files/svxlink-15.11-gcc72.patch 
b/media-radio/svxlink/files/svxlink-15.11-gcc72.patch
deleted file mode 100644
index a55894c62f3..00000000000
--- a/media-radio/svxlink/files/svxlink-15.11-gcc72.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-# backported fix for newer compilers
---- src/async/audio/AsyncAudioDeviceAlsa.cpp.orig      2017-12-27 
16:32:27.185098621 +0000
-+++ src/async/audio/AsyncAudioDeviceAlsa.cpp   2017-12-27 16:33:33.468067578 
+0000
-@@ -548,7 +548,7 @@
-     return false;
-   }
- 
--  if (::abs(real_rate - sample_rate) > 100)
-+  if (::abs(static_cast<int>(real_rate) - sample_rate) > 100)
-   {
-     cerr << "*** ERROR: The sample rate could not be set to "
-          << sample_rate << "Hz for ALSA device \"" << dev_name << "\". "

diff --git a/media-radio/svxlink/svxlink-15.11-r1.ebuild 
b/media-radio/svxlink/svxlink-15.11-r1.ebuild
deleted file mode 100644
index 5dfe0e89f9b..00000000000
--- a/media-radio/svxlink/svxlink-15.11-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils qt4-r2 systemd user
-
-CMAKE_USE_DIR="${S}/src"
-
-DESCRIPTION="Multi Purpose Voice Services System, including Qtel for EchoLink"
-HOMEPAGE="http://www.svxlink.org";
-SRC_URI="https://github.com/sm0svx/${PN}/archive/15.11.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-lang/tcl:0
-       dev-qt/qtcore:4
-       dev-qt/qtgui:4
-       media-libs/alsa-lib
-       media-sound/gsm
-       dev-libs/libgcrypt:0
-       media-libs/speex
-       media-libs/opus
-       dev-libs/libsigc++:2
-       dev-libs/popt"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-pkg_setup() {
-       enewgroup svxlink
-       enewuser svxlink -1 -1 -1 svxlink
-}
-
-src_prepare() {
-       # fix compilation problem with newer gcc bug #639592
-       epatch "${FILESDIR}"/${P}-gcc72.patch
-
-       cmake-utils_src_prepare
-       # drop deprecated desktop category (bug #475730)
-       sed -i -e "s:Categories=Application;:Categories=:g" 
src/qtel/qtel.desktop || die
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DSYSCONF_INSTALL_DIR=/etc
-               -DLOCAL_STATE_DIR=/var
-       )
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       fowners -R svxlink.svxlink /var/spool/svxlink
-
-       rm -R "${D}"/usr/share/doc/svxlink || die
-       dodoc src/doc/README-${PV}.adoc
-       doman src/doc/man/*.1 src/doc/man/*.5
-
-       insinto /etc/logrotate.d
-       doins   distributions/gentoo/etc/logrotate.d/*
-
-       newinitd "${FILESDIR}"/remotetrx.init remotetrx
-       newinitd "${FILESDIR}"/svxlink.init svxlink
-       newconfd "${FILESDIR}"/remotetrx.rc remotetrx
-       newconfd "${FILESDIR}"/svxlink.rc svxlink
-
-       systemd_dounit "${FILESDIR}"/remotetrx.service
-       systemd_dounit "${FILESDIR}"/svxlink.service
-}

diff --git a/media-radio/svxlink/svxlink-15.11.ebuild 
b/media-radio/svxlink/svxlink-15.11.ebuild
deleted file mode 100644
index 0eac5fc40fe..00000000000
--- a/media-radio/svxlink/svxlink-15.11.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils qt4-r2 user
-
-CMAKE_USE_DIR="${S}/src"
-
-DESCRIPTION="Multi Purpose Voice Services System, including Qtel for EchoLink"
-HOMEPAGE="http://www.svxlink.org";
-SRC_URI="https://github.com/sm0svx/${PN}/archive/15.11.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-lang/tcl:0
-       dev-qt/qtcore:4
-       dev-qt/qtgui:4
-       media-libs/alsa-lib
-       media-sound/gsm
-       dev-libs/libgcrypt:0
-       media-libs/speex
-       media-libs/opus
-       dev-libs/libsigc++:2
-       dev-libs/popt"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-pkg_setup() {
-       enewgroup svxlink
-       enewuser svxlink -1 -1 -1 svxlink
-}
-
-src_prepare() {
-       # fix compilation problem with newer gcc bug #639592
-       epatch "${FILESDIR}"/${P}-gcc72.patch
-
-       cmake-utils_src_prepare
-       # drop deprecated desktop category (bug #475730)
-       sed -i -e "s:Categories=Application;:Categories=:g" 
src/qtel/qtel.desktop || die
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DSYSCONF_INSTALL_DIR=/etc
-               -DLOCAL_STATE_DIR=/var
-       )
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       cmake-utils_src_install
-
-       fowners -R svxlink.svxlink /var/spool/svxlink
-
-       rm -R "${D}"/usr/share/doc/svxlink || die
-       dodoc src/doc/README-${PV}.adoc
-       doman src/doc/man/*.1 src/doc/man/*.5
-
-       insinto /etc/logrotate.d
-       doins   distributions/gentoo/etc/logrotate.d/*
-
-       newinitd "${FILESDIR}"/remotetrx.init remotetrx
-       newinitd "${FILESDIR}"/svxlink.init svxlink
-       newconfd "${FILESDIR}"/remotetrx.rc remotetrx
-       newconfd "${FILESDIR}"/svxlink.rc svxlink
-
-}

Reply via email to