Bug#1071117: fccexam: update question pool and URL

2024-06-06 Thread John Nogatch
On Tue, May 14, 2024 at 4:57 PM Austen, Jeffrey  wrote:
> Package: fccexam
> Version: 1.0.7-1.1
...
> Please update the question pool. Element 7 has changed. ...
> The URL in the package description should be updated ...

fccexam 1.0.8 is available at:
https://launchpad.net/~jnogatch/+archive/ubuntu/fccexam

This version includes the updates that you requested.

-John AC6SL



Bug#1070774: hamexam: update question pool

2024-05-08 Thread John Nogatch
The latest version hamexam 1.11 is available at:
https://launchpad.net/~jnogatch/+archive/ubuntu/hamexam

On Wed, May 8, 2024 at 9:33 PM Austen, Jeffrey  wrote:
>
> Package: hamexam
> Version: 1.10.1-1
> Severity: wishlist
>
> Please update the extra class question pool. The new pool takes effect
> July 1, 2024.
> https://www.ncvec.org/index.php/2024-2028-extra-class-question-pool-release



Bug#1050370: hamexam: question pools need updating

2023-08-24 Thread John Nogatch
version 1.10.1 is available at
https://launchpad.net/~jnogatch/+archive/ubuntu/hamexam

That version includes the General question pool effective 2023-07-01.



Bug#1003212: hamexam: package description contains broken URL

2022-01-16 Thread John Nogatch
> > the long package description of hamexam contains the URL
> > http://www.arrl.org/licensing-preparation-exams
> > which returns a 404 error.

Thanks to Daniele for reporting this bug. The URL will be fixed in hamexam 1.9


>> I grabbed this to update the URL, but it looks like maybe John has some
> work in progress on hamexam.  I see the following commit [1] on the
> master branch, but I can't find 1.8.x in Launchpad, nor do I see any
> updates to pristine-tar or upstream branches or corresponding tags in
> Salsa [3].

https://launchpad.net/~jnogatch/+archive/ubuntu/hamexam shows version 1.8.1

I do not know why it does not appear on
https://launchpad.net/ubuntu/+source/hamexam


> To update to a new upstream version, can you revert the commit to master
> and then use `gbp import-orig` to import the version, and then push the
> update master, upstream, and pristine-tar branches plus the
> corresponding upstream/1.8.1 tag?

I will try to do what you describe. I am not familiar with these procedures.

-John AC6SL



Bug#743726: xsmc-calc is not repsonding in keystrokes

2014-04-05 Thread John Nogatch
> ...xsmc is not reponding in keyboard strokes. ...

In January 2013, the author Lapo IK5NAX said that xsmc is not actively
maintained. He recommended instead his newer gsmc package.

Please try gsmc, instead of xsmc.

-John AC6SL


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#710804: ITP: wsjtx -- Weak signal communications program

2013-06-02 Thread John Nogatch
Package: wnpp
Severity: wishlist

WSJTX(1)
NAME wsjtx - Weak signal communications program.
SYNOPSIS
   wsjtx

DESCRIPTION
   wsjtx is a weak signal communications program supporting two
operating modes: JT9-1 and JT9-2.

   WSJT-X User's Guide:
http://www.physics.princeton.edu/pulsar/K1JT/WSJTX_Users_Guide.pdf

FILES
   A directory ~/.wsjtx is created, where wsjtx
is executed, and where personalization files are stored.

COPYRIGHT
   wsjtx is Copyright (c) 2013 by Joseph H. Taylor, Jr., K1JT,
with contributions from additional authors.  WSJTX is Open Source
software, licensed under the GNU General Public License (GPL).
Additional  information  may  be  found  at
http://www.physics.princeton.edu/pulsar/K1JT/wsjtx.html .

   This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#630418: patch for debian/rules

2011-06-13 Thread John Nogatch
Tags: patch
The attached patch file moves "-lm" to the end of 4 "cc" commands, so that the 
math routines are found in the library.
Description: move -lm later in cc command to fix geosat, et al.
Author: John T. Nogatch 

--- predict-2.2.3-origdeb/debian/rules	2011-06-13 12:38:14.0 -0700
+++ predict-2.2.3/debian/rules	2011-06-13 10:45:52.761709700 -0700
@@ -28,10 +28,10 @@
 	cc $(CFLAGS) \
 		vocalizer/vocalizer.c -o vocalizer/vocalizer
 
-	(cd utils/fodtrack-0.1 ; cc $(CFLAGS) -lm fodtrack.c -o fodtrack )
-	(cd utils/geosat ; cc $(CFLAGS) -lm geosat.c -o geosat )
-	(cd utils/moontracker ; cc $(CFLAGS) -lm moontracker.c -o moontracker )
-	(cd clients/earthtrack ; cc $(CFLAGS) -lm earthtrack.c -o earthtrack )
+	(cd utils/fodtrack-0.1 ; cc $(CFLAGS) fodtrack.c -o fodtrack -lm )
+	(cd utils/geosat ; cc $(CFLAGS) geosat.c -o geosat -lm )
+	(cd utils/moontracker ; cc $(CFLAGS) moontracker.c -o moontracker -lm )
+	(cd clients/earthtrack ; cc $(CFLAGS) earthtrack.c -o earthtrack -lm )
 	(cd clients/map; cc $(CFLAGS) -o predict-map map.c map_cb.c map_main.c -I/usr/include/X11 -lforms -lX11 -lm)