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/wsjtx/
Date: Thu,  9 Jul 2020 11:23:41 +0000 (UTC)	[thread overview]
Message-ID: <1594293813.2b4003def8e610faf1bae8e0522d5d0dd9b9e2e8.tomjbe@gentoo> (raw)

commit:     2b4003def8e610faf1bae8e0522d5d0dd9b9e2e8
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  9 11:23:09 2020 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Thu Jul  9 11:23:33 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4003de

media-radio/wsjtx: Bugfix release

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

 media-radio/wsjtx/Manifest           |  1 +
 media-radio/wsjtx/wsjtx-2.2.2.ebuild | 71 ++++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/media-radio/wsjtx/Manifest b/media-radio/wsjtx/Manifest
index 239382f8886..ba52ca78f31 100644
--- a/media-radio/wsjtx/Manifest
+++ b/media-radio/wsjtx/Manifest
@@ -1,2 +1,3 @@
 DIST wsjtx-2.1.2.tgz 44928980 BLAKE2B de4e4e892893e5087199385aaee8753c0f71eb36cd23734ae430f50d8a09520bf2bf3df7038bcf03ba4e9ca24534c98a1b6cb5dc444d68d3183279231cf18974 SHA512 037f0604b0a22f6d02f0979b94dd054157c96ee7a8c07284d072f87f6586901346bef1a3c7e19d367a82764dafc9f00b7d1a0929d163a46f1b249aaa3929b1a8
 DIST wsjtx-2.2.0.tgz 23158263 BLAKE2B e605447ffe0f7e4af4df3f15fced342aa61d40100778df731b1c419ac03fd569dde3547a7082fc41a6b07080b11305517a8cdca3a1b8404548ecffdb5b7b616d SHA512 7df7c80047b34097fc26b0d8c21de8b3ca27bae15602b1bb1ad117fe13f14931145bd55fcdceb86f2ee931d51285c6175f7b7cd89891b7e88c4baf7c17ed82cd
+DIST wsjtx-2.2.2.tgz 23213092 BLAKE2B ce558180208ad33ddf2089f1747630cd07975547ba93bb693698ce599caec8d3d3367128581dfd110c6fe240bce9a0e6b8351ef178e6b53f3490a29a96367460 SHA512 923df18f5cbbd3e40294ccc4d3730f40c13c7777345723b9e66063ff0dd7db65caa9a64323711201a73b8c455dc1c29f67e4645dfbf98e0fc2c60a1630ce6cd1

diff --git a/media-radio/wsjtx/wsjtx-2.2.2.ebuild b/media-radio/wsjtx/wsjtx-2.2.2.ebuild
new file mode 100644
index 00000000000..dca5c443676
--- /dev/null
+++ b/media-radio/wsjtx/wsjtx-2.2.2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Weak signal ham radio communication"
+HOMEPAGE="http://physics.princeton.edu/pulsar/K1JT/wsjtx.html"
+SRC_URI="mirror://sourceforge/wsjt/${MY_P}.tgz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtmultimedia:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtserialport:5
+	dev-qt/qtsql:5
+	dev-qt/qtprintsupport:5
+	virtual/libusb:1
+	media-libs/hamlib
+	media-libs/portaudio
+	sci-libs/fftw:3.0[threads,fortran]
+	virtual/fortran
+	app-text/asciidoc
+	doc? ( dev-ruby/asciidoctor )"
+DEPEND="${RDEPEND}
+	dev-qt/linguist-tools
+	"
+
+S=${WORKDIR}/wsjtx
+
+PATCHES=( "${FILESDIR}/${PN}-2.0.1-hamlib.patch"
+		  "${FILESDIR}/${PN}-fix-unicode.patch"
+		  "${FILESDIR}/${PN}-drop-docs.patch"
+		  "${FILESDIR}/${PN}-2.1.2-qt_helpers.patch"
+		  "${FILESDIR}/${PN}-2.2.0-werror.patch" )
+
+DOCS=( AUTHORS BUGS NEWS README THANKS )
+
+src_unpack() {
+	unpack ${A}
+	unpack "${WORKDIR}/${MY_P}/src/wsjtx.tgz"
+}
+
+src_configure() {
+	cmake_comment_add_subdirectory debian
+
+	local mycmakeargs=(
+		-DWSJT_GENERATE_DOCS="$(usex doc)"
+		-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
+	)
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+}
+
+src_install() {
+	cmake_src_install
+	rm "${D}"/usr/bin/rigctl{,d}-wsjtx || die
+	rm "${D}"/usr/share/man/man1/rigctl{,d,com}-wsjtx.1.gz || die
+}


             reply	other threads:[~2020-07-09 11:23 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-09 11:23 Thomas Beierlein [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-27 10:31 [gentoo-commits] repo/gentoo:master commit in: media-radio/wsjtx/ Thomas Beierlein
2025-04-13  7:11 Thomas Beierlein
2025-03-24  9:30 Sam James
2025-03-24  9:16 Sam James
2025-03-24  7:54 Thomas Beierlein
2025-02-22 12:46 Thomas Beierlein
2025-02-22 12:04 Thomas Beierlein
2025-02-04 18:44 Thomas Beierlein
2024-06-14 12:30 Thomas Beierlein
2023-05-09 18:58 Arthur Zamarin
2023-05-09 18:58 Arthur Zamarin
2023-01-28 18:57 Thomas Beierlein
2022-08-22 15:12 Thomas Beierlein
2022-08-08  9:40 Andreas Sturmlechner
2022-04-01  9:13 Thomas Beierlein
2022-03-31 17:36 Jakov Smolić
2022-03-31 17:36 Jakov Smolić
2022-01-06 16:33 Thomas Beierlein
2021-12-24  9:49 Thomas Beierlein
2021-11-22 19:02 Thomas Beierlein
2021-11-22 18:46 Thomas Beierlein
2021-11-22 18:46 Thomas Beierlein
2021-11-11 18:55 Jakov Smolić
2021-11-11 17:57 Jakov Smolić
2021-10-09 10:43 Thomas Beierlein
2021-10-05  6:48 Agostino Sarubbo
2021-10-04 11:00 Agostino Sarubbo
2021-06-29 17:29 Thomas Beierlein
2021-05-11 20:21 Sam James
2021-05-09  9:17 Agostino Sarubbo
2021-05-01 18:19 Agostino Sarubbo
2021-04-23 14:24 Rick Farina
2021-04-23 14:24 Rick Farina
2021-03-27  7:34 Thomas Beierlein
2021-03-24  6:24 Thomas Beierlein
2021-02-18  2:49 Rick Farina
2021-02-18  2:40 Rick Farina
2020-11-20  1:34 Thomas Deutschmann
2020-11-19 22:58 Sam James
2020-09-08 15:00 Thomas Beierlein
2020-07-17 12:03 Thomas Beierlein
2020-07-04 11:43 Thomas Beierlein
2020-07-04 11:43 Thomas Beierlein
2020-05-29  7:39 Agostino Sarubbo
2019-11-30 13:05 Thomas Beierlein
2019-11-30 12:58 Thomas Beierlein
2019-11-19 15:40 Agostino Sarubbo
2019-11-18 11:50 Agostino Sarubbo
2019-07-23  5:39 Thomas Beierlein
2019-07-16 15:00 Rick Farina
2018-12-20 19:06 Rick Farina
2018-12-20  3:25 Rick Farina
2018-12-17 19:27 Thomas Beierlein
2018-06-14 18:31 Thomas Beierlein
2018-05-05  8:33 Thomas Beierlein
2018-05-03 10:11 Mikle Kolyada
2017-12-25  3:05 Michael Palimaka
2017-12-24 12:14 Thomas Beierlein
2017-11-13 16:06 Thomas Beierlein
2017-10-31 18:43 Thomas Beierlein
2017-10-17 10:40 Thomas Beierlein
2017-08-12 14:45 Michael Palimaka
2017-07-17 15:33 Thomas Beierlein

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=1594293813.2b4003def8e610faf1bae8e0522d5d0dd9b9e2e8.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