fldigi/fldigi.spec

508 lines
17 KiB
RPMSpec
Raw Permalink Normal View History

# For test builds, should be set to 0 for release builds.
%global alpha 0
2015-12-04 17:12:21 +00:00
Name: fldigi
2023-02-15 13:01:44 +00:00
Version: 4.1.25
Release: 1%{?dist}
2015-12-04 17:12:21 +00:00
Summary: Digital modem program for Linux
2013-03-13 19:41:27 +00:00
2017-12-31 17:32:50 +00:00
License: GPLv3+
2015-12-04 17:12:21 +00:00
URL: http://www.w1hkj.com/Fldigi.html
%if %{alpha}
Source0: http://www.w1hkj.com/alpha/%{name}/%{name}-%{version}.tar.gz
%else
2017-09-04 15:55:28 +00:00
Source0: http://www.w1hkj.com/files/%{name}/%{name}-%{version}.tar.gz
%endif
2015-09-24 16:30:35 +00:00
Source100: fldigi.appdata.xml
2020-12-10 03:47:30 +00:00
#BuildRequires: automake autoconf libtool
BuildRequires: asciidoc
2021-06-26 20:34:00 +00:00
BuildRequires: desktop-file-utils
BuildRequires: fltk-devel >= 1.3
BuildRequires: gettext
BuildRequires: gcc gcc-c++
2015-12-04 17:12:21 +00:00
BuildRequires: hamlib-devel
2020-10-12 14:23:16 +00:00
%{?fedora:BuildRequires: flxmlrpc-devel}
%if 0%{?rhel} < 8
2014-07-02 16:18:25 +00:00
BuildRequires: fltk-static libXcursor-devel
%endif
2015-12-04 17:12:21 +00:00
BuildRequires: libjpeg-devel
BuildRequires: libpng-devel
BuildRequires: libsndfile-devel
BuildRequires: libsamplerate-devel
BuildRequires: libXinerama-devel
2021-06-26 20:34:00 +00:00
BuildRequires: libudev-devel
BuildRequires: make
BuildRequires: portaudio-devel >= 19-4
BuildRequires: pulseaudio-libs-devel
2015-11-24 04:22:54 +00:00
%if 0%{?fedora}
2015-09-30 20:59:48 +00:00
# For appstream-util
BuildRequires: libappstream-glib
2015-11-24 04:22:54 +00:00
%endif
2015-09-30 20:59:48 +00:00
%{?fedora:Recommends: trustedqsl}
2015-12-04 17:12:21 +00:00
Provides: flarq = %{version}-%{release}
2008-02-16 03:58:28 +00:00
Obsoletes: fldigi-doc < 4.1.14-1
2008-02-16 03:58:28 +00:00
%description
2010-06-23 19:36:15 +00:00
Fldigi is a modem program which supports most of the digital modes used by
ham radio operators today. You can also use the program for calibrating your
sound card to WWV or doing a frequency measurement test. The program also comes
2008-02-16 03:58:28 +00:00
with a CW decoder. fldigi is written with the help of the Fast Light Toolkit X
2010-06-23 19:36:15 +00:00
GUI. Fldigi is a fast moving project many added features with each update.
2008-02-16 03:58:28 +00:00
2010-06-23 19:36:15 +00:00
Flarq (Fast Light Automatic Repeat Request) is a file transfer application
2010-06-11 05:54:15 +00:00
that is based on the ARQ specification developed by Paul Schmidt, K9PS.
It is capable of transmitting and receiving frames of ARQ data via fldigi.
2010-05-24 03:55:19 +00:00
2013-03-13 19:41:27 +00:00
2008-02-16 03:58:28 +00:00
%prep
2021-01-29 15:24:54 +00:00
%autosetup -p1 -n %{name}-%{version}
2008-02-16 03:58:28 +00:00
2012-01-03 06:08:27 +00:00
2008-02-16 03:58:28 +00:00
%build
2020-05-26 20:17:16 +00:00
%if 0%{?rhel} && 0%{?rhel} < 8
%configure --enable-static
%else
%configure
%endif
2015-02-11 18:07:21 +00:00
make %{?_smp_mflags} CFLAGS="%{optflags}" LIBS="-lm -lX11 -lpthread" V=1
2008-02-16 03:58:28 +00:00
2013-03-13 19:41:27 +00:00
2008-02-16 03:58:28 +00:00
%install
2013-09-03 19:35:54 +00:00
%make_install
2016-01-22 16:59:59 +00:00
# Add keywords to desktop file for gnome-shell and software center.
echo "Keywords=modem;psk;rtty;cw;fsq;fsk;" >> %{buildroot}%{_datadir}/applications/%{name}.desktop
2013-09-03 19:35:54 +00:00
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
desktop-file-validate %{buildroot}%{_datadir}/applications/flarq.desktop
2010-05-24 03:55:19 +00:00
2015-09-24 16:30:35 +00:00
# Add fldigi-psk.png as it's in PNG format and higher resolution than the XPM.
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/
install -pm 0644 data/fldigi-psk.png \
%{buildroot}%{_datadir}/icons/hicolor/64x64/apps/%{name}.png
2009-01-20 01:59:55 +00:00
%find_lang %{name}
2008-02-16 03:58:28 +00:00
2015-09-24 16:30:35 +00:00
%if 0%{?fedora}
# Install and validate appdata file
mkdir -p %{buildroot}%{_datadir}/appdata
install %{SOURCE100} -pm 0644 %{buildroot}%{_datadir}/appdata/
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/*.appdata.xml
%endif
2009-01-20 01:59:55 +00:00
%files -f %{name}.lang
2015-04-02 13:33:41 +00:00
%license COPYING
%doc AUTHORS ChangeLog README NEWS
2008-02-16 03:58:28 +00:00
%{_bindir}/*
2015-09-24 16:30:35 +00:00
%{_datadir}/icons/hicolor/64x64/apps/%{name}.png
%{_datadir}/pixmaps/%{name}.xpm
2010-05-24 03:55:19 +00:00
%{_datadir}/pixmaps/flarq.xpm
%{_mandir}/man1/%{name}.1.gz
%{_mandir}/man1/flarq.1.gz
2015-09-24 16:30:35 +00:00
%{?fedora:%{_datadir}/appdata/fldigi.appdata.xml}
2013-08-27 13:52:30 +00:00
%{_datadir}/applications/%{name}.desktop
%{_datadir}/applications/flarq.desktop
%{_datadir}/%{name}/
2012-08-03 05:51:29 +00:00
%changelog
2023-02-15 13:01:44 +00:00
* Wed Feb 15 2023 Richard Shaw <hobbes1069@gmail.com> - 4.1.25-1
- Update to 4.1.25.
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.23-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2022-11-07 22:16:03 +00:00
* Mon Nov 07 2022 Richard Shaw <hobbes1069@gmail.com> - 4.1.23-3
- Rebuild for hamlib 4.5.
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.23-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-07-20 00:42:05 +00:00
* Wed Jul 20 2022 Richard Shaw <hobbes1069@gmail.com> - 4.1.23-1
- Update to 4.1.23.
2022-05-04 02:22:23 +00:00
* Wed May 04 2022 Richard Shaw <hobbes1069@gmail.com> - 4.1.21-1
- Update to 4.1.21.
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.20-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-12-23 22:44:04 +00:00
* Thu Dec 23 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.20-5
- Rebuild for hamlib 4.4.
2021-12-23 19:30:59 +00:00
* Thu Dec 23 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.20-4
- f35-build-side-49088
2021-12-23 18:39:37 +00:00
* Thu Dec 23 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.20-3
- 36-build-side-49086
2021-10-12 01:28:03 +00:00
* Tue Oct 12 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.20-2
- Rebuild for hamlib 4.3.1.
2021-08-05 03:46:00 +00:00
* Thu Aug 05 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.20-1
- Update to 4.1.20.
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.19-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-06-26 20:19:13 +00:00
* Sat Jun 26 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.19-1
- Update to 4.1.19.
2021-05-30 13:46:44 +00:00
* Sun May 30 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.18-3
- Rebuild for hamlib 4.2.
2021-02-02 13:46:29 +00:00
* Tue Feb 02 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.18-2
- Rebuild for hamlib 4.1.
2021-01-29 15:24:54 +00:00
* Fri Jan 29 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1.18-1
- Update to 4.1.18.
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2020-12-10 03:47:30 +00:00
* Thu Dec 03 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.17-1
- Update to 4.1.17.
2020-10-19 11:57:52 +00:00
* Mon Oct 19 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.15-1
- Update to 4.1.15.
* Mon Oct 12 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.14-1
- Update to 4.1.14.
- Remove large PDF docs, they can be downloaded seprately.
- Remove forced C++14 as the fixes patch has been updated to support C++17.
* Tue Aug 18 2020 Jeff Law <law@redhat.com> - 4.1.13-4
- Force C++14 as this code is not C++17 ready
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.13-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sat Jul 11 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.13-2
- Add patch to fix various memory leaks and other type issues.
2020-05-26 19:59:53 +00:00
* Tue May 26 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.13-1
- Update to 4.1.13.
2020-04-23 15:17:02 +00:00
* Thu Apr 23 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.12-1
- Update to 4.1.12.
2020-04-04 20:47:18 +00:00
* Sat Apr 04 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.11-2
- Rebuild for hamlib 4.0.
2020-04-02 01:15:32 +00:00
* Thu Apr 02 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.11-1
- Update to 4.1.11.
2020-04-01 14:59:30 +00:00
* Wed Apr 01 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.10-1
- Update to 4.1.10.
2020-03-31 18:12:37 +00:00
* Tue Mar 31 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.09-3
- Rebuild for hamlib 4.
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.09-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2020-01-13 01:48:38 +00:00
* Mon Jan 13 2020 Richard Shaw <hobbes1069@gmail.com> - 4.1.09-1
- Update to 4.1.09.
2019-08-15 04:52:06 +00:00
* Thu Aug 15 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.08-1
- Update to 4.1.08.
2019-08-06 13:03:17 +00:00
* Tue Aug 06 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.07-1
- Update to 4.1.07.
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.06-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-07-24 01:39:50 +00:00
* Wed Jul 24 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.06-1
- Update to 4.1.06.
2019-07-04 11:51:10 +00:00
* Thu Jul 04 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.05-1
- Update to 4.1.05.
2019-06-29 11:45:11 +00:00
* Sat Jun 29 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.04-1
- Update to 4.1.04.
* Tue Jun 11 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.03-2
- Add patch for xmlrpc, fixes RHBZ#1705189.
2019-04-22 13:20:36 +00:00
* Mon Apr 22 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.03-1
- Update to 4.1.03.
2019-04-14 13:49:46 +00:00
* Sun Apr 14 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.02-1
- Update to 4.1.02.
2019-02-19 15:40:30 +00:00
* Tue Feb 19 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.01-1
- Update to 4.1.01.
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.00-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2019-01-29 15:35:53 +00:00
* Tue Jan 29 2019 Richard Shaw <hobbes1069@gmail.com> - 4.1.00-1
- Update to 4.1.00.
2018-08-30 19:37:59 +00:00
* Thu Aug 30 2018 Richard Shaw <hobbes1069@gmail.com> - 4.0.18-2
- Rebuild for hamlib 3.3.
2018-08-30 12:26:35 +00:00
* Thu Aug 30 2018 Richard Shaw <hobbes1069@gmail.com> - 4.0.18-1
- Update to 4.0.18.
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-06-13 13:52:12 +00:00
* Thu Jun 07 2018 Richard Shaw <hobbes1069@gmail.com> - 4.0.17-1
- Update to 4.0.17.
2018-02-09 17:20:32 +00:00
* Fri Feb 09 2018 Richard Shaw <hobbes1069@gmail.com> - 4.0.16-1
- Update to 4.0.16.
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.14-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2018-01-16 00:13:37 +00:00
* Tue Jan 16 2018 Richard Shaw <hobbes1069@gmail.com> - 4.0.14-1
- Update to latest upstream release.
2017-12-31 17:32:50 +00:00
* Sun Dec 31 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.13-1
- Update to latest upstream release.
2017-10-29 13:02:23 +00:00
* Sat Oct 28 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.12-1
- Update to latest upstream release.
* Sun Oct 22 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.11-1
- Update to latest upstream release.
2017-09-26 13:45:21 +00:00
* Tue Sep 26 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.10-1
- Update to latest upstream release.
2017-09-04 15:55:28 +00:00
* Mon Sep 04 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.9-1
- Update to latest upstream release.
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.8-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 4.0.8-3
- Rebuild with binutils fix for ppc64le (#1475636)
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-07-24 17:31:44 +00:00
* Mon Jul 24 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.8-1
- Update to latest upstream release.
2017-09-04 15:55:28 +00:00
* Sun Jul 09 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.7-1
2017-07-24 17:31:44 +00:00
- Update to latest upstream release.
2017-07-03 18:57:11 +00:00
* Sat Jul 01 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.6-1
- Update to latest upstream release.
* Tue Jun 20 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.5-1
- Update to latest upstream release.
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
2017-05-11 17:00:37 +00:00
* Wed May 10 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.4-1
- Update to latest upstream release.
2017-04-30 20:23:48 +00:00
* Sun Apr 30 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.3-1
- Update to latest upstream release.
2017-04-15 14:20:25 +00:00
* Fri Apr 14 2017 Richard Shaw <hobbes1069@gmail.com> - 4.0.2-1
- Update to latest upstream release.
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-01-13 19:14:00 +00:00
* Fri Jan 6 2017 Richard Shaw <hobbes1069@gmail.com> - 3.23.20-1
- Update to latest upstream release.
2017-01-05 16:56:34 +00:00
2016-12-23 16:33:02 +00:00
* Fri Dec 23 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.19-1
- Update to latest upstream release.
2016-12-12 19:46:04 +00:00
* Mon Dec 12 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.18-1
- Update to latest upstream release.
2016-12-08 01:22:44 +00:00
* Tue Dec 06 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.17-1
- Update to latest upstream release.
* Fri Nov 11 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.16-1
- Update to latest upstream release.
- Fldigi can now automatically upload contacts to LoTW through trustedqsl.
2016-10-17 14:36:25 +00:00
* Sun Oct 16 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.15-1
- Update to latest upstream release.
2016-09-26 18:44:52 +00:00
* Sun Sep 18 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.14-1
- Update to latest upstream release.
* Sat Aug 6 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.13-1
- Update to latest upstream release.
2016-10-17 14:36:25 +00:00
* Mon Jun 29 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.12-1
2016-06-29 13:12:45 +00:00
- Update to latest upstream release.
* Sun Jun 12 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.11-1
- Update to latest upstream release.
2016-04-03 18:46:10 +00:00
* Sun Apr 3 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.09-1
- Update to latest upstream release.
2016-02-25 14:52:32 +00:00
* Wed Feb 24 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.08-1
- Update to latest upstream release.
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.07-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-02-02 21:43:53 +00:00
* Tue Feb 02 2016 Jonathan Wakely <jwakely@redhat.com> - 3.23.07-2
- Patched for C++11 compatibility.
2016-01-22 16:59:59 +00:00
* Fri Jan 22 2016 Richard Shaw <hobbes1069@gmail.com> - 3.23.07-1
- Update to latest upstream release.
2015-12-04 17:12:21 +00:00
* Wed Dec 2 2015 Richard Shaw <hobbes1069@gmail.com> - 3.23.06-1
- Update to latest upstream release.
2015-11-24 04:22:54 +00:00
* Thu Nov 19 2015 Richard Shaw <hobbes1069@gmail.com> - 3.23.05-1
- Update to latest upstream release.
2015-10-16 13:08:47 +00:00
* Fri Oct 16 2015 Richard Shaw <hobbes1069@gmail.com> - 3.23.04-1
- Update to latest upstream release.
2015-09-30 20:52:39 +00:00
* Wed Sep 30 2015 Richard Shaw <hobbes1069@gmail.com> - 3.23.03-1
2015-09-24 16:30:35 +00:00
- Update to latest upstream release.
* Fri Sep 18 2015 Richard Hughes <rhughes@redhat.com> - 3.22.13-2
- Remove now-unused AppData file
2015-07-21 19:29:53 +00:00
* Tue Jul 21 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.13-1
- Update to latest upstream release.
2015-07-18 13:47:25 +00:00
* Sat Jul 18 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.12-1
- Update to latest upstream release.
2015-07-16 15:01:53 +00:00
* Wed Jul 15 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.11-1
- Update to latest upstream release.
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.22.10-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-06-11 15:00:21 +00:00
* Mon Jun 1 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.10-1
- Update to latest upstream release.
* Tue May 5 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.08-1
- Update to latest upstream release.
- Update build requirements to use separate xmlrpc library.
2015-05-02 11:40:32 +00:00
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.22.07-2
- Rebuilt for GCC 5 C++11 ABI change
2015-04-02 13:33:41 +00:00
* Thu Apr 2 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.07-1
- Update to latest upstream release.
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 3.22.06-2
- Add an AppData file for the software center
* Sun Mar 22 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.06-1
2015-03-23 14:42:33 +00:00
- Update to latest upstream release.
2015-02-11 18:07:21 +00:00
* Tue Jan 13 2015 Richard Shaw <hobbes1069@gmail.com> - 3.22.05-1
- Update to latest upstream release.
2014-12-26 13:40:55 +00:00
* Fri Dec 26 2014 Richard Shaw <hobbes1069@gmail.com> - 3.22.04-1
- Update to latest upstream release.
2014-12-25 12:43:26 +00:00
* Thu Dec 25 2014 Richard Shaw <hobbes1069@gmail.com> - 3.22.03-1
- Update to latest upstream release.
* Mon Dec 1 2014 Richard Shaw <hobbes1069@gmail.com> - 3.22.02-1
- Update to latest upstream release.
2014-10-21 13:27:06 +00:00
* Mon Oct 20 2014 Richard Shaw <hobbes1069@gmail.com> - 3.22.01-1
- Update to latest upstream release.
2014-10-16 18:31:47 +00:00
* Thu Oct 16 2014 Richard Shaw <hobbes1069@gmail.com> - 3.22.00-1
- Update to latest upstream release.
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-17 13:24:20 +00:00
* Thu Jul 17 2014 Rex Dieter <rdieter@fedoraproject.org> - 3.21.83-2
- rebuild (for pulseaudio, bug #1117683)
2014-07-02 16:18:25 +00:00
* Sun Jun 29 2014 Richard Shaw <hobbes1069@gmail.com> - 3.21.83-1
- Update to latest upstream release.
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21.82-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-07 13:19:52 +00:00
* Wed Apr 30 2014 Richard Shaw <hobbes1069@gmail.com> - 3.21.82-1
- Update to latest upstream release.
2014-04-04 19:57:00 +00:00
* Sun Mar 30 2014 Richard Shaw <hobbes1069@gmail.com> - 3.21.81-1
- Update to latest upstream release.
* Tue Mar 11 2014 Richard Shaw <hobbes1069@gmail.com> - 3.21-79-1
- Update to latest upstream release.
* Tue Mar 4 2014 Richard Shaw <hobbes1069@gmail.com> - 3.21.78-1
- Update to latest upstream release.
* Wed Oct 30 2013 Richard Shaw <hobbes1069@gmail.com> - 3.21.77-1
2014-02-13 18:19:16 +00:00
- Update to latest bugfix release.
2013-09-18 18:24:45 +00:00
* Thu Sep 12 2013 Richard Shaw <hobbes1069@gmail.com> - 3.21.76-1
- Update to latest bugfix release.
2013-09-03 19:35:54 +00:00
* Mon Sep 2 2013 Richard Shaw <hobbes1069@gmail.com> - 3.21.75-1
- Update to latest bugfix release.
2013-08-27 13:52:30 +00:00
* Tue Aug 27 2013 Richard Shaw <hobbes1069@gmail.com> - 3.21.74-1
- Update to latest bugfix release.
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21.68-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-17 17:42:17 +00:00
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 3.21.68-2
- Perl 5.18 rebuild
2013-09-18 18:24:45 +00:00
* Sat Mar 16 2013 Richard Shaw <hobbes1069@gmail.com> - 3.21.68-1
2013-03-13 19:41:27 +00:00
- Update to latest bugfix release.
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21.49-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-08-03 05:51:29 +00:00
* Fri Aug 3 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.49-1
- Upstream upddate to 3.21.49
2013-03-13 19:41:27 +00:00
* Mon May 14 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.41-1
- Upstream upddate to 3.21.41
- Fix deps for F18/Rawhide
2013-03-13 19:41:27 +00:00
* Sat Jan 28 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.37-2
- Upstream upddate to 3.21.37
- Remove patches fixed upstream
- Correct source URL
2013-03-13 19:41:27 +00:00
2012-01-29 03:47:37 +00:00
* Sat Jan 28 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.37-1
- Upstream upddate to 3.21.37
2013-03-13 19:41:27 +00:00
2012-01-16 15:26:39 +00:00
* Sun Jan 15 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.35-2
- Add patches for testing error correction
- Update rawhide builds
2013-03-13 19:41:27 +00:00
2012-01-16 15:26:39 +00:00
* Sun Jan 15 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.35-1
- Upstream upddate to 3.21.35
- Rebuild against gcc 4.7
2013-03-13 19:41:27 +00:00
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21.34-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2013-03-13 19:41:27 +00:00
2012-01-03 06:08:27 +00:00
* Mon Jan 2 2012 Randall J. Berry, N3LRX <dp67@fedoraproject.org> - 3.21.34-2
- Test Build Against FLTK 1.3