-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.8 is upon us, with the main feature being non-blocking I/O.
- Loading branch information
1 parent
64f78b2
commit 5de3adf
Showing
11 changed files
with
93 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
aprs-weather-submit (1.7.2-1) UNRELEASED; urgency=medium | ||
aprs-weather-submit (1.8-1) UNRELEASED; urgency=medium | ||
|
||
* Fixed a bug that prevented creating APRS packets with 100% relative | ||
humidity. (Thanks to Jeff, N9CQS, for the report.) | ||
* Converted all I/O to non-blocking in case of network issues or APRS | ||
server outages. (Thanks to DL9SEC for pointing this out.) | ||
* Thus, there is a new parameter, `--timeout`, which will let you set | ||
a custom timeout value of your choice. (Use `--timeout 0` for the | ||
old blocking behavior.) | ||
* Fixed a bug where `./configure --disable-aprs-is` was not honored by | ||
the configure script. | ||
* Added support for ISO-compliant compilers such as `gcc --pedantic`. | ||
* Code cleanup. | ||
|
||
-- Colin Cogle <[email protected]> Mon, 23 Sep 2024 09:09:09 -0400 | ||
-- Colin Cogle <[email protected]> Thu, 31 Oct 2024 22:45:00 -0400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 arm arm64 ppc ~ppc-macos ppc64 s390x x86" | ||
IUSE="+aprs-is debug" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_enable aprs-is) \ | ||
$(use_enable debug) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 arm arm64 ppc ~ppc-macos ppc64 s390x x86" | ||
IUSE="+aprs-is debug" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_enable aprs-is) \ | ||
$(use_enable debug) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 arm arm64 ppc ~ppc-macos ppc64 s390x x86" | ||
IUSE="+aprs-is debug" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_enable aprs-is) \ | ||
$(use_enable debug) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 arm arm64 ppc ~ppc-macos ppc64 s390x x86" | ||
IUSE="+aprs-is debug" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_enable aprs-is) \ | ||
$(use_enable debug) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters