Skip to content

Commit 12dd3db

Browse files
authored
Merge pull request #79 from akrherz/release
denote Community GEMPAK release 7.14.0.1
2 parents b5f5be5 + 8f39b43 commit 12dd3db

File tree

13 files changed

+51
-25
lines changed

13 files changed

+51
-25
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!-- markdownlint-configure-file {"MD024": { "siblings_only": true } } -->
2+
# Unidata Community GEMPAK Change Log
3+
4+
## 7.14.0.1 (13 March 2022)
5+
6+
This release signifies the desire for the community to make releases at a faster
7+
cadence than verbatim tracking NCEP NAWIPS releases (#74). We will continue
8+
to attempt to merge any upstream NCEP NAWIPS releases, but will attempt to add
9+
additional functionality here.
10+
11+
### Bug Fixes
12+
13+
- The install4j Java vulnerability is "addressed" by simply removing the offending
14+
jar file content, which is generally unused by the Unidata Community (#69).
15+
- The release of `7.14.0` has a number of issues with included GEMPAK tables
16+
with Unidata modifications over-written by the NCEP NAWIPS releases (#70). There
17+
may still need to be some work done in this area, but things are much closer now
18+
to back to normal.
19+
- @sgdecker kindly provided fixes for a couple of edge cases (#44, #46).
20+
21+
### Improvements
22+
23+
- Developer experience improvements were made with some cleanups to the git
24+
repository (#78) and implementation of Github Actions for CI (#65, #57).
25+
- GEMPAK now supports the newly added "Super-Res" NEXRAD Level III products (#73).
26+

build/DEBIAN/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: gempak
2-
Version: 7.14.0
3-
Maintainer: Michael James
2+
Version: 7.14.0.1
3+
Maintainer: Daryl Herzmann
44
Architecture: all
55
Description: Unidata GEMPAK Distribution
66
Depends: libgfortran3, libx11-6, libxm4, libxtst6, libxt6

build/Installer.gempak/extlibs.spec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
%define __prelink_undo_cmd %{nil}
33
%define gem_home /home/gempak/GEMPAK7
44
%define prefix /home/gempak
5-
%define version 7.14.0
5+
%define version 7.14.0.1
66
Name: gempak-extlibs
7-
Summary: Unidata GEMPAK
7+
Summary: Unidata Community GEMPAK
88
Version: %{version}
99
Release: 1%{?dist}
1010
Prefix: %{prefix}
@@ -13,8 +13,8 @@ BuildRoot: /tmp
1313
URL: https://www.unidata.ucar.edu/software/gempak/
1414
License: Open Source
1515
Distribution: N/A
16-
Vendor: Unidata
17-
Packager: mjames@ucar.edu
16+
Vendor: Unidata Community
17+
Packager: akrherz@iastate.edu
1818
BuildRequires: libX11-devel, libXt-devel, libXext, libXp-devel
1919
BuildRequires: libXft-devel, libXtst-devel, xorg-x11-xbitmaps
2020
BuildRequires: flex, byacc, openmotif-devel

build/Installer.gempak/gempak.spec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
%define __prelink_undo_cmd %{nil}
1111
%define gem_home /home/gempak/GEMPAK7
1212
%define prefix /home/gempak
13-
%define version 7.14.0
13+
%define version 7.14.0.1
1414
Name: gempak
15-
Summary: Unidata GEMPAK
15+
Summary: Unidata Community GEMPAK
1616
Version: %{version}
1717
Release: 1%{?dist}
1818
Prefix: %{prefix}
@@ -21,8 +21,8 @@ BuildRoot: /tmp
2121
URL: https://www.unidata.ucar.edu/software/gempak/
2222
License: Open Source
2323
Distribution: N/A
24-
Vendor: Unidata
25-
Packager: Michael James
24+
Vendor: Unidata Community
25+
Packager: Daryl Herzmann
2626
BuildRequires: libX11-devel, libXt-devel, libXext, libXp-devel
2727
BuildRequires: libXft-devel, libXtst-devel, xorg-x11-xbitmaps
2828
BuildRequires: flex, byacc, openmotif-devel

build/docker/Dockerfile.centos

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM centos:7
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
# User account
55
RUN useradd -ms /bin/bash gempak
@@ -10,7 +10,7 @@ RUN yum clean all
1010
RUN yum install openmotif libX11 libXt libXext libXp libXft libXtst xorg-x11-xbitmaps csh libgfortran which python-pip git -y
1111

1212
# Latest RPM for CentOS 7
13-
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-7.14.0-1.el7.centos.x86_64.rpm
13+
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-7.14.0.1-1.el7.centos.x86_64.rpm
1414

1515
# Python AWIPS Data Acess Framework
1616
RUN pip install six shapely numpy

build/docker/Dockerfile.gempak-ldm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM unidata/ldm-docker
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
ENV HOME /home/ldm
55

build/docker/Dockerfile.ubuntu

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM ubuntu:latest
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
# User account
55
RUN useradd -ms /bin/bash gempak
@@ -11,8 +11,8 @@ RUN apt-get install wget python-pip python-dev build-essential -y
1111
RUN pip install --upgrade pip
1212

1313
# Latest source code
14-
RUN wget https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-7.14.0.deb
15-
RUN dpkg -i gempak-7.14.0.deb
14+
RUN wget https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-7.14.0.1.deb
15+
RUN dpkg -i gempak-7.14.0.1.deb
1616

1717
# Python AWIPS Data Acess Framework
1818
RUN pip install six shapely numpy

build/gempak-devel/Dockerfile.centos6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM centos:6
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
USER root
55
RUN useradd gempak
@@ -26,4 +26,4 @@ RUN yum install -y \
2626
python-devel
2727

2828
# Bootstrap install extlibs...
29-
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0-1.el6.x86_64.rpm
29+
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0.1-1.el6.x86_64.rpm

build/gempak-devel/Dockerfile.centos7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM centos:7
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
USER root
55
RUN useradd gempak
@@ -26,4 +26,4 @@ RUN yum install -y \
2626
python-devel
2727

2828
# Bootstrap install extlibs...
29-
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0-1.el7.centos.x86_64.rpm
29+
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0.1-1.el7.centos.x86_64.rpm

build/gempak-devel/Dockerfile.fedora

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM fedora:26
2-
MAINTAINER Michael James <mjames@ucar.edu>
2+
MAINTAINER Daryl Herzmann <akrherz@iastate.edu>
33

44
USER root
55
RUN useradd gempak
@@ -26,4 +26,4 @@ RUN yum install -y \
2626
python-devel
2727

2828
# Bootstrap install extlibs...
29-
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0-1.fc26.x86_64.rpm
29+
RUN rpm -ivh https://www.unidata.ucar.edu/downloads/gempak/latest/gempak-extlibs-7.14.0.1-1.fc26.x86_64.rpm

0 commit comments

Comments
 (0)