public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Beierlein" <tomjbe@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/
Date: Sun, 18 Apr 2021 15:45:35 +0000 (UTC)	[thread overview]
Message-ID: <1618760721.67f1b95f8d6f1d93ddd90c8e3d6724a8e444739a.tomjbe@gentoo> (raw)

commit:     67f1b95f8d6f1d93ddd90c8e3d6724a8e444739a
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 15:44:42 2021 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 15:45:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f1b95f

media-radio/fldigi: Drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 media-radio/fldigi/Manifest             |  3 --
 media-radio/fldigi/fldigi-4.1.14.ebuild | 51 ---------------------------------
 media-radio/fldigi/fldigi-4.1.15.ebuild | 51 ---------------------------------
 media-radio/fldigi/fldigi-4.1.17.ebuild | 51 ---------------------------------
 4 files changed, 156 deletions(-)

diff --git a/media-radio/fldigi/Manifest b/media-radio/fldigi/Manifest
index 6f353baa530..fdc5d1d64cf 100644
--- a/media-radio/fldigi/Manifest
+++ b/media-radio/fldigi/Manifest
@@ -1,4 +1 @@
-DIST fldigi-4.1.14.tar.gz 4792805 BLAKE2B 2f910c9eabb22dcc31e03fcebd5088edff9db128ab59ada553a3cd1016864a326204b7a082d1310c45ea682ed9264038e7e59a19ba68cf4ff5a30443b8033cd5 SHA512 b96a9d724087bacad93b6e729039ab67231ee6ebbd1b082c143e7bfb58f103012f98448f3ea0badabeeb748ed81d6d44e503b71bcb5ee6d0fa8108ab6d029d8d
-DIST fldigi-4.1.15.tar.gz 4838204 BLAKE2B 3eab05ba366457fe3b1452cca37b262ba07414619c36781512ae1063e87c764a2bd562f3b7ad4733d885835df778b9ba11eb6470aa84d99ad9f9b3e1ef3675c3 SHA512 6579b557c9ce7e878f1ba7e6f59e0f676b1baddff78a94bd4b76925204e9b5a871da3080c4c13122781cb2e77311f61e15c03c82fbdd34a845051093070e9ab0
-DIST fldigi-4.1.17.tar.gz 4844153 BLAKE2B 332ad513060e3655183bc371bace76784204bdd5556386d6b8ade0e57e00305069fee6d45397592761e27d101ae7ea060de6624ed235ff4ee673d07b4444b1c0 SHA512 0a98dbca2c8db16b9a9da847a315964ab8c221070a25717f2df95e1fd1edb08bda6fab3992fa7188e5fbc6830e2abba624053fcc9d285a8a3375556bed90dfc9
 DIST fldigi-4.1.18.tar.gz 4847091 BLAKE2B 5b5ab773a78370b3c6ea86d63af7631bea97b16c3eacdb3d3b4e1b18dbbe70c727afa2ddf04c1ca7934f483503b2373d5d94bf4fcd896ad52a843c723a7c5cd2 SHA512 4d7fef4d464fcedf075d226bae7fd7134cd7436d737e17b7e21607e5120c957a909d1775900dbfea608c68629409c04eaa70a399bef6cba27b6e12b255696633

diff --git a/media-radio/fldigi/fldigi-4.1.14.ebuild b/media-radio/fldigi/fldigi-4.1.14.ebuild
deleted file mode 100644
index 49dbf8a28b9..00000000000
--- a/media-radio/fldigi/fldigi-4.1.14.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
-HOMEPAGE="http://www.w1hkj.com"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="hamlib nls pulseaudio"
-IUSE_CPU_FLAGS=" sse sse2 sse3"
-IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"
-
-RDEPEND="x11-libs/fltk:1[threads,xft]
-	media-libs/libsamplerate
-	media-libs/libpng:0
-	x11-misc/xdg-utils
-	dev-perl/RPC-XML
-	dev-perl/Term-ReadLine-Perl
-	|| (
-		media-libs/portaudio[oss]
-		media-libs/portaudio[alsa]
-	)
-	hamlib? ( media-libs/hamlib )
-	pulseaudio? ( media-sound/pulseaudio )
-	>=media-libs/libsndfile-1.0.10"
-DEPEND="${RDEPEND}
-	nls? ( sys-devel/gettext )
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-PATCHES=( "${FILESDIR}"/${PN}-c++11.patch )
-
-src_configure() {
-	local myconf=""
-
-	use cpu_flags_x86_sse && myconf="${myconf} --enable-optimizations=sse"
-	use cpu_flags_x86_sse2 && myconf="${myconf} --enable-optimizations=sse2"
-	use cpu_flags_x86_sse3 && myconf="${myconf} --enable-optimizations=sse3"
-
-	econf ${myconf} \
-		--with-sndfile \
-		$(use_with hamlib) \
-		$(use_enable nls) \
-		$(use_with pulseaudio) \
-		--without-asciidoc
-}

diff --git a/media-radio/fldigi/fldigi-4.1.15.ebuild b/media-radio/fldigi/fldigi-4.1.15.ebuild
deleted file mode 100644
index b18dfebd34d..00000000000
--- a/media-radio/fldigi/fldigi-4.1.15.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
-HOMEPAGE="http://www.w1hkj.com"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="hamlib nls pulseaudio"
-IUSE_CPU_FLAGS=" sse sse2 sse3"
-IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"
-
-RDEPEND="x11-libs/fltk:1[threads,xft]
-	media-libs/libsamplerate
-	media-libs/libpng:0
-	x11-misc/xdg-utils
-	dev-perl/RPC-XML
-	dev-perl/Term-ReadLine-Perl
-	|| (
-		media-libs/portaudio[oss]
-		media-libs/portaudio[alsa]
-	)
-	hamlib? ( media-libs/hamlib )
-	pulseaudio? ( media-sound/pulseaudio )
-	>=media-libs/libsndfile-1.0.10"
-DEPEND="${RDEPEND}
-	nls? ( sys-devel/gettext )
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-PATCHES=( "${FILESDIR}"/${PN}-c++11.patch )
-
-src_configure() {
-	local myconf=""
-
-	use cpu_flags_x86_sse && myconf="${myconf} --enable-optimizations=sse"
-	use cpu_flags_x86_sse2 && myconf="${myconf} --enable-optimizations=sse2"
-	use cpu_flags_x86_sse3 && myconf="${myconf} --enable-optimizations=sse3"
-
-	econf ${myconf} \
-		--with-sndfile \
-		$(use_with hamlib) \
-		$(use_enable nls) \
-		$(use_with pulseaudio) \
-		--without-asciidoc
-}

diff --git a/media-radio/fldigi/fldigi-4.1.17.ebuild b/media-radio/fldigi/fldigi-4.1.17.ebuild
deleted file mode 100644
index b18dfebd34d..00000000000
--- a/media-radio/fldigi/fldigi-4.1.17.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
-HOMEPAGE="http://www.w1hkj.com"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="hamlib nls pulseaudio"
-IUSE_CPU_FLAGS=" sse sse2 sse3"
-IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"
-
-RDEPEND="x11-libs/fltk:1[threads,xft]
-	media-libs/libsamplerate
-	media-libs/libpng:0
-	x11-misc/xdg-utils
-	dev-perl/RPC-XML
-	dev-perl/Term-ReadLine-Perl
-	|| (
-		media-libs/portaudio[oss]
-		media-libs/portaudio[alsa]
-	)
-	hamlib? ( media-libs/hamlib )
-	pulseaudio? ( media-sound/pulseaudio )
-	>=media-libs/libsndfile-1.0.10"
-DEPEND="${RDEPEND}
-	nls? ( sys-devel/gettext )
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-PATCHES=( "${FILESDIR}"/${PN}-c++11.patch )
-
-src_configure() {
-	local myconf=""
-
-	use cpu_flags_x86_sse && myconf="${myconf} --enable-optimizations=sse"
-	use cpu_flags_x86_sse2 && myconf="${myconf} --enable-optimizations=sse2"
-	use cpu_flags_x86_sse3 && myconf="${myconf} --enable-optimizations=sse3"
-
-	econf ${myconf} \
-		--with-sndfile \
-		$(use_with hamlib) \
-		$(use_enable nls) \
-		$(use_with pulseaudio) \
-		--without-asciidoc
-}


             reply	other threads:[~2021-04-18 15:45 UTC|newest]

Thread overview: 154+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-18 15:45 Thomas Beierlein [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-13 11:47 [gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/ Sam James
2025-10-13 11:47 Sam James
2025-09-12 15:55 Thomas Beierlein
2025-08-01 14:53 Thomas Beierlein
2025-08-01  7:39 Sam James
2025-08-01  7:39 Sam James
2025-06-12 19:25 Thomas Beierlein
2025-02-24  4:55 Sam James
2025-01-20 15:53 Thomas Beierlein
2024-12-26 17:50 Ionen Wolkens
2024-11-25 20:07 Sam James
2024-11-25 20:07 Sam James
2024-10-17  5:53 Thomas Beierlein
2024-09-24  1:12 Mike Gilbert
2024-07-25 16:41 Thomas Beierlein
2024-07-25 16:41 Thomas Beierlein
2024-05-30 18:06 Thomas Beierlein
2024-05-29 11:47 Sam James
2024-05-29 11:47 Sam James
2024-04-24 12:02 Thomas Beierlein
2024-03-10 12:04 Arthur Zamarin
2024-03-10 12:04 Arthur Zamarin
2024-01-31 14:03 Thomas Beierlein
2024-01-05 15:28 Thomas Beierlein
2023-12-12  6:32 Michał Górny
2023-12-12  1:04 Sam James
2023-11-10 16:03 Thomas Beierlein
2023-11-10 12:00 Arthur Zamarin
2023-11-10 12:00 Arthur Zamarin
2023-11-09 20:44 Thomas Beierlein
2023-10-03 15:18 Thomas Beierlein
2023-07-23 18:09 Thomas Beierlein
2023-06-18 12:32 Thomas Beierlein
2023-05-09 18:58 Arthur Zamarin
2023-05-09 18:44 Arthur Zamarin
2023-03-21 21:31 Sam James
2023-03-21 21:31 Sam James
2023-03-21 18:01 Thomas Beierlein
2023-03-21 17:55 Thomas Beierlein
2023-02-18 17:21 Thomas Beierlein
2023-02-17 18:42 Thomas Beierlein
2022-10-25 12:50 Sam James
2022-10-25 12:50 Sam James
2022-09-15 19:16 Thomas Beierlein
2022-09-15 19:16 Thomas Beierlein
2022-08-27 16:48 Sam James
2022-07-11 17:38 Thomas Beierlein
2022-07-07 19:44 Sam James
2022-07-07 19:44 Sam James
2022-05-08 11:40 Thomas Beierlein
2021-12-14 18:27 Thomas Beierlein
2021-10-05  6:48 Agostino Sarubbo
2021-10-04 11:00 Agostino Sarubbo
2021-08-06 13:33 Thomas Beierlein
2021-06-25  8:47 Thomas Beierlein
2021-03-28 18:18 Sam James
2021-03-28 18:18 Sam James
2021-03-11 15:40 Thomas Beierlein
2021-02-04 17:46 Thomas Beierlein
2020-12-04 19:02 Thomas Beierlein
2020-12-04 19:02 Thomas Beierlein
2020-10-26 16:32 Thomas Beierlein
2020-10-07  7:09 Agostino Sarubbo
2020-10-07  6:42 Agostino Sarubbo
2020-07-20  5:31 Thomas Beierlein
2020-07-19 12:18 Agostino Sarubbo
2020-07-17 15:17 Agostino Sarubbo
2020-07-15  5:36 Thomas Beierlein
2020-04-25 16:42 Thomas Beierlein
2020-04-25 16:42 Thomas Beierlein
2020-04-13  9:20 Agostino Sarubbo
2020-04-13  8:58 Agostino Sarubbo
2020-04-06 17:40 Thomas Beierlein
2020-01-12 12:00 Thomas Beierlein
2019-11-19 15:40 Agostino Sarubbo
2019-11-18 11:50 Agostino Sarubbo
2019-08-29  5:26 Thomas Beierlein
2019-08-28  9:51 Agostino Sarubbo
2019-08-27 20:45 Agostino Sarubbo
2019-08-27  5:29 Thomas Beierlein
2019-07-26  5:07 Thomas Beierlein
2019-07-05 12:54 Thomas Beierlein
2019-06-21 15:22 Thomas Beierlein
2019-06-21 15:22 Thomas Beierlein
2019-05-20 11:41 Mikle Kolyada
2019-04-27 15:32 Thomas Beierlein
2019-04-19 13:20 Thomas Beierlein
2019-03-10 12:27 Thomas Beierlein
2019-01-31  6:42 Thomas Beierlein
2019-01-31  6:42 Thomas Beierlein
2018-12-12 16:51 Mikle Kolyada
2018-11-27 21:55 Thomas Deutschmann
2018-10-10  6:06 Thomas Beierlein
2018-09-05 17:19 Thomas Beierlein
2018-08-01 11:35 Thomas Beierlein
2018-07-30 14:58 Thomas Beierlein
2018-07-09 15:40 Mikle Kolyada
2018-06-14  5:57 Thomas Beierlein
2018-02-10  9:03 Thomas Beierlein
2018-01-20 11:56 Thomas Beierlein
2018-01-16  6:21 Thomas Beierlein
2018-01-02 20:31 Thomas Beierlein
2018-01-02  0:35 Mikle Kolyada
2017-12-28 16:54 Thomas Beierlein
2017-12-12 18:39 Thomas Deutschmann
2017-10-31 18:43 Thomas Beierlein
2017-10-26 18:54 Thomas Deutschmann
2017-10-16 17:50 Thomas Beierlein
2017-09-30 15:09 Thomas Beierlein
2017-09-07 17:21 Thomas Beierlein
2017-07-22  6:18 Thomas Beierlein
2017-07-11 11:44 Thomas Beierlein
2017-06-28 14:07 Thomas Beierlein
2017-06-28 13:56 Thomas Beierlein
2017-06-25  4:15 Thomas Beierlein
2017-06-23 14:52 Thomas Beierlein
2017-06-23 14:52 Thomas Beierlein
2017-06-22 10:49 Agostino Sarubbo
2017-06-22 10:20 Agostino Sarubbo
2017-05-14 10:00 Thomas Beierlein
2017-05-01 12:07 Thomas Beierlein
2017-04-15 14:20 Thomas Beierlein
2017-04-02 15:07 Thomas Beierlein
2017-02-03 15:22 Thomas Beierlein
2017-01-26 14:53 Agostino Sarubbo
2017-01-26 14:45 Agostino Sarubbo
2017-01-10  6:04 Thomas Beierlein
2016-12-23 18:41 Thomas Beierlein
2016-12-13 18:57 Thomas Beierlein
2016-12-08  5:39 Thomas Beierlein
2016-11-15  7:35 Thomas Beierlein
2016-11-13 18:44 Thomas Beierlein
2016-10-17 16:50 Thomas Beierlein
2016-10-13 10:01 Thomas Beierlein
2016-10-13 10:01 Thomas Beierlein
2016-09-18 17:45 Thomas Beierlein
2016-06-23  4:30 Thomas Beierlein
2016-06-12 16:12 Thomas Beierlein
2016-05-30 16:50 Thomas Beierlein
2016-04-16 14:40 Thomas Beierlein
2016-02-25  9:14 Thomas Beierlein
2016-02-25  9:14 Thomas Beierlein
2016-02-06  9:02 Thomas Beierlein
2016-01-23 16:59 Agostino Sarubbo
2015-12-04 15:38 Thomas Beierlein
2015-12-04 15:35 Thomas Beierlein
2015-11-19 16:55 Thomas Beierlein
2015-10-17 13:03 Thomas Beierlein
2015-10-03  7:28 Thomas Beierlein
2015-09-23  5:18 Thomas Beierlein
2015-09-23  5:14 Thomas Beierlein
2015-09-20 17:01 Thomas Beierlein
2015-09-19 15:06 Agostino Sarubbo

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=1618760721.67f1b95f8d6f1d93ddd90c8e3d6724a8e444739a.tomjbe@gentoo \
    --to=tomjbe@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