Skip to content

Commit

Permalink
Version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rhymeswithmogul committed Aug 4, 2022
1 parent b12f602 commit 480057e
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 21 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Version 1.5.2 (in progress)
## Version 1.5.2
<time datetime="2022-08-04T00:45:00-04:00">August 4, 2022</time>
* Fix a bug where the `--no-comment` flag accidentally did the opposite of what it was supposed to do.
* Fix a bug where the short option `-Q` was not recognized.
* Fix a bug where altitude reports (`/A=`) were always included in packets, even when no altitude was specified.
* Various small improvements to allow this to compile on PowerPC systems.
* Small code change to allow this to compile on PowerPC (ppc64/ppc64le) and other non-x86 architectures.

## Version 1.5.1
<time datetime="2022-06-08T08:31:00-04:00">June 8, 2022</time>
Expand Down
10 changes: 6 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ To build and install `aprs-weather-submit`, do this:
make
sudo make install
```
## Dependencies
* autoconf
* automake
* GCC (Ubuntu: `build-essential`)
## Build Dependencies
To build this app, you will need Autotools, GCC, and GNU make. On Debian-based systems, you can install them with this:

```console
sudo apt install autoconf build-essential make
```
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# aprs-weather-submit version 1.5.1
# aprs-weather-submit version 1.5.2
# Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
#
# This file, Makefile.am, is part of aprs-weather-submit.
Expand Down
9 changes: 8 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aprs-weather-submit news

This file details all of the user-facing changes that are in version 1.5.x of
This file details all of the user-facing changes that are in versions 1.5.x of
aprs-weather-submit. For more details, please consult the CHANGELOG file or
this project's GitHub page.

Expand Down Expand Up @@ -38,5 +38,12 @@ that this will not affect the aforementioned altitude reporting.
However, if you do use this option, please consider telling a friend about
aprs-weather-submit.

## SUPPORT FOR NON-INTEL/AMD ARCHITECTURES

Minor changes to the code have allowed this to compile and run on non-AMD64 and
non-Intel systems. So far, 64-bit PowerPC (big- and little-endian) has been
tested and verified to work. Please file a bug report to let us know if this
code runs on other architectures!

-----
For information about older versions, consult the CHANGELOG.md files.
3 changes: 1 addition & 2 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# aprs-weather-submit version 1.5.1
# aprs-weather-submit version 1.5.2
# Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
#
# This file, autogen.sh, is part of aprs-weather-submit.
Expand All @@ -21,4 +21,3 @@
aclocal || die "aclocal failed"
autoconf || die "autoconf failed"
automake --add-missing || die "automake failed"
make clean
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dnl aprs-weather-submit version 1.5.1
dnl aprs-weather-submit version 1.5.2
dnl Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
dnl
dnl This file, configure.ac, is part of aprs-weather-submit.
Expand All @@ -17,7 +17,7 @@ dnl
dnl You should have received a copy of the GNU Affero General Public License
dnl along with this program. If not, see <http://gnu.org/licenses/agpl-3.0.html>.

AC_INIT([aprs-weather-submit], [1.5.1], [colin@colincogle.name])
AC_INIT([aprs-weather-submit], [1.5.2], [colin@colincogle.name])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AC_PREREQ
AC_PROG_INSTALL
Expand Down
17 changes: 17 additions & 0 deletions gentoo/aprs-weather-submit-1.5.2.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
DESCRIPTION="Manually submit weather data to the APRS network."
HOMEPAGE="https://github.com/rhymeswithmogul/${PN}"
SRC_URI="https://github.com/rhymeswithmogul/${PN}/archive/v${PV}.tar.gz" -> "${PF}.tar.gz"
LICENSE="AGPL-3 AGPL-3+"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc-macos ppc64 ~x86"
IUSE="+aprs-is debug"

src_configure() {
econf \
$(use_enable aprs-is) \
$(use_enable debug)
}
2 changes: 1 addition & 1 deletion man/aprs-weather-submit.man
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" aprs-weather-submit version 1.5.1
.\" aprs-weather-submit version 1.5.2
.\" Copyright (c) 2019-2022 Colin Cogle
.\"
.\" This file, aprs-weather-submit.1, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/aprs-is.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, aprs-is.c, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/aprs-is.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, aprs-is.h, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/aprs-wx.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, aprs-wx.c, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/aprs-wx.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, aprs-wx.h, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/getopt-windows.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* aprs-weather-submit version 1.5.1
* aprs-weather-submit version 1.5.2
* Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
*
* This file, getopt-windows.h, is part of aprs-weather-submit.
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, main.c, is part of aprs-weather-submit.
Expand Down
4 changes: 2 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
aprs-weather-submit version 1.5.1
aprs-weather-submit version 1.5.2
Copyright (c) 2019-2022 Colin Cogle <colin@colincogle.name>
This file, main.h, is part of aprs-weather-submit.
Expand Down Expand Up @@ -28,7 +28,7 @@ with this program. If not, see <https://www.gnu.org/licenses/agpl-3.0.html>.
#endif

#ifndef VERSION
#define VERSION "1.5.1"
#define VERSION "1.5.2"
#endif

/**
Expand Down

0 comments on commit 480057e

Please sign in to comment.