3cdf69c
%if 0%{?fedora} || 0%{?rhel} >= 8
96a8c19
%global tclver 8.6
3a82547
%global pyver 3
820b383
%global swigver swig
3a82547
%else
3cdf69c
%global tclver 8.5
3a82547
%global pyver 2
820b383
%global swigver swig3
3a82547
%endif
3a82547
25c4dd7
%global githash 0
ea1360d
%global shorthash %(c=%{githash}; echo ${c:0:10})
3cdf69c
7383094
Name:           hamlib
2c2b12e
Version:        4.5.5
c7bdffa
Release:        6%{?dist}
1de0902
Summary:        Run-time library to control radio transceivers and receivers
55b32cc
f62fdff
License:        GPL-2.0-or-later and LGPL-2.0-or-later
7af4ef4
URL:            http://www.hamlib.org
61cec28
%if "%{githash}" == "0"
c8951e8
Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
61cec28
%else
61cec28
Source0:        https://github.com/Hamlib/Hamlib/archive/%{githash}/%{name}-%{shorthash}.tar.gz
ea1360d
%endif
3cdf69c
3cdf69c
Patch0:         hamlib-4.0-perl_install.patch
bdb511d
# -lpython is not needed, https://github.com/Hamlib/Hamlib/issues/253
bdb511d
Patch1:         hamlib-4.0-drop-libpython.patch
c39b6b0
c39b6b0
3c4f274
BuildRequires:  automake autoconf libtool
6fd2842
BuildRequires:  make
3c4f274
BuildRequires:  gcc gcc-c++ %{?swigver}
34989f2
BuildRequires:  gd-devel
ed264b4
BuildRequires:  doxygen
34989f2
BuildRequires:  source-highlight
34989f2
BuildRequires:  boost-devel
34989f2
BuildRequires:  libtool-ltdl-devel
2f7de97
BuildRequires:  libusb1-devel
34989f2
BuildRequires:  libxml2-devel
3c4f274
BuildRequires:  pkgconfig
3c4f274
BuildRequires:  python%{pyver}-devel
3c4f274
BuildRequires:  tcl-devel
1de0902
#for perl
2e245c3
BuildRequires:  perl-devel
2e245c3
BuildRequires:  perl-generators
1de0902
BuildRequires:  perl(ExtUtils::MakeMaker)
c39b6b0
c39b6b0
# Filter provides from private libraries.
c39b6b0
%{?perl_default_filter}
aaad6ac
25b69c0
aaad6ac
%description
ffa828c
Hamlib provides a standardized programming interface that applications
1eccafa
can use to send the appropriate commands to a radio.
4d08ff5
aaad6ac
Also included in the package is a simple radio control program 'rigctl',
aaad6ac
which lets one control a radio transceiver or receiver, either from
aaad6ac
command line interface or in a text-oriented interactive interface.
aaad6ac
aaad6ac
%package devel
c39b6b0
Summary:        Development library to control radio transceivers and receivers
c39b6b0
Requires:       hamlib%{?_isa} = %{version}-%{release}
1cb4a5f
Requires:       tcl-hamlib%{?_isa} = %{version}-%{release}
aaad6ac
aaad6ac
%description devel
aaad6ac
Hamlib radio control library C development headers and libraries
aaad6ac
for building C applications with Hamlib.
aaad6ac
1de0902
%package doc
c39b6b0
Summary:        Documentation for the hamlib radio control library
c39b6b0
BuildArch:      noarch
1de0902
1de0902
%description doc
1de0902
This package provides the developers documentation for the hamlib radio
1de0902
control library API.
1de0902
aaad6ac
%package c++
c39b6b0
Summary:        Hamlib radio control library C++ binding
c39b6b0
Requires:       hamlib%{?_isa} = %{version}-%{release}
aaad6ac
aaad6ac
%description c++
aaad6ac
Hamlib radio control library C++ language binding.
aaad6ac
aaad6ac
%package c++-devel
c39b6b0
Summary:        Hamlib radio control library C++ binding development headers and libraries
c39b6b0
Requires:       hamlib-devel%{?_isa} = %{version}-%{release}
c39b6b0
Requires:       hamlib-c++%{?_isa} = %{version}-%{release}
aaad6ac
aaad6ac
%description c++-devel
aaad6ac
Hamlib radio control library C++ binding development headers and libraries
aaad6ac
for building C++ applications with Hamlib.
aaad6ac
aaad6ac
c39b6b0
%package -n perl-%{name}
c39b6b0
Summary:        Hamlib radio control library Perl binding
c39b6b0
Requires:       hamlib%{?_isa} = %{version}-%{release}
c39b6b0
Obsoletes:      hamlib-perl < 3.0
8291cfc
Provides:       hamlib-perl = %{version}-%{release}
1de0902
c39b6b0
%description -n perl-%{name}
1de0902
Hamlib PERL Language bindings to allow radio control from PERL scripts.
aaad6ac
aaad6ac
3a82547
%package -n python%{pyver}-%{name}
d43c7c2
%{?python_provide:%python_provide python2-%{name}}
c39b6b0
Summary:        Hamlib radio control library Python binding
3a82547
Requires:       hamlib%{?_isa} = %{version}-%{release}, python%{pyver}
aaad6ac
3a82547
%description -n python%{pyver}-%{name}
c39b6b0
Hamlib Python Language bindings to allow radio control from Python scripts.
1de0902
c39b6b0
%package -n tcl-%{name}
c39b6b0
Summary:        Hamlib radio control library TCL binding
c39b6b0
Requires:       hamlib%{?_isa} = %{version}-%{release}
8291cfc
Provides:       hamlib-tcl = %{version}-%{release}
c39b6b0
  
c39b6b0
%description -n tcl-%{name}
1de0902
Hamlib TCL Language bindings to allow radio control from TCL scripts.
1de0902
c39b6b0
aaad6ac
%prep
221e879
%if "%{githash}" == "0"
221e879
%autosetup -p1
221e879
%else
22ca7f0
%autosetup -p1 -n Hamlib-%{githash}
221e879
%endif
aaad6ac
1e04835
%build
3cdf69c
%if 0%{?fedora} || 0%{?rhel} >= 8
3a82547
export PYTHON=%{__python3}
3a82547
%else
ca56a9e
export PYTHON=%{__python2}
3a82547
%endif
3a82547
6fd2842
# Only run if we're working with a git checkout
430d493
#if 0%{?githash}
c39b6b0
autoreconf -fi
430d493
#endif
c8951e8
aaad6ac
%configure \
10c2f10
        --disable-static \
c39b6b0
        --with-tcl-binding \
4d08ff5
        --with-perl-binding \
f555f27
        --with-python-binding \
1e04835
c8951e8
%make_build
c39b6b0
aaad6ac
# Build Documentation
1e04835
make -C doc doc
aaad6ac
c39b6b0
aaad6ac
%install
c39b6b0
%make_install
c39b6b0
6fd2842
# Install documentation
c39b6b0
mkdir -p %{buildroot}%{_docdir}/%{name}/html/search
426eb2d
for f in `find doc/html/ -type f -maxdepth 1`
c39b6b0
        do install -D -m 0644 $f %{buildroot}%{_docdir}/%{name}/`echo $f | cut -d '/' -f2`
1de0902
done
426eb2d
for f in `find doc/html/search -type f -maxdepth 1`
c39b6b0
        do install -D -m 0644 $f %{buildroot}%{_docdir}/%{name}/html/`echo $f | cut -d '/' -f3`
426eb2d
 done
c39b6b0
6fd2842
# Move installed docs to include them in subpackage via %%doc magic
ef8fa56
rm -rf __tmp_doc ; mkdir __tmp_doc
c39b6b0
mv %{buildroot}%{_docdir}/%{name}/* __tmp_doc
1de0902
1de0902
6fd2842
# Fix permissions
c39b6b0
find %{buildroot} -type f -name Hamlib.so -exec chmod 0755 {} ';'
1de0902
6fd2842
# Remove unneeded files
c39b6b0
find %{buildroot} -name \*.la -exec rm -f {} ';'
c39b6b0
find %{buildroot} -type f -name pkgIndex.tcl -exec rm -f {} ';'
c39b6b0
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
c39b6b0
find %{buildroot} -type f -name Hamlib.bs -exec rm -f {} ';'
c39b6b0
find %{buildroot} -type f -name perltest.pl -exec rm -f {} ';'
1de0902
1de0902
c39b6b0
%check
c39b6b0
make V=1 check
aaad6ac
44b1810
%ldconfig_scriptlets
aaad6ac
44b1810
%ldconfig_scriptlets c++
aaad6ac
44b1810
%ldconfig_scriptlets -n tcl-hamlib
1de0902
1de0902
aaad6ac
%files
42d748a
%license COPYING
1c047c5
%doc AUTHORS ChangeLog PLAN README THANKS
1de0902
%{_bindir}/*
8477234
%{_libdir}/libhamlib.so.*
1de0902
%{_mandir}/man?/*
1de0902
1de0902
%files devel
1de0902
%doc README.developer
1de0902
%{_libdir}/libhamlib.so
96a8c19
%{_libdir}/tcl%{tclver}/Hamlib/hamlibtcl.so
1de0902
%{_datadir}/aclocal/hamlib.m4
1de0902
%dir %{_includedir}/hamlib
3cdf69c
%{_includedir}/hamlib/ampclass.h
3cdf69c
%{_includedir}/hamlib/amplifier.h
3cdf69c
%{_includedir}/hamlib/amplist.h
c3097c9
%{_includedir}/hamlib/config.h
1de0902
%{_includedir}/hamlib/rig.h
1de0902
%{_includedir}/hamlib/riglist.h
1de0902
%{_includedir}/hamlib/rig_dll.h
1de0902
%{_includedir}/hamlib/rotator.h
1de0902
%{_includedir}/hamlib/rotlist.h
1de0902
%{_libdir}/pkgconfig/hamlib.pc
1de0902
1de0902
%files doc
ef8fa56
%doc COPYING.LIB
ef8fa56
%doc __tmp_doc/*
aaad6ac
aaad6ac
%files c++
8477234
%{_libdir}/libhamlib++.so.*
aaad6ac
aaad6ac
%files c++-devel
aaad6ac
%{_libdir}/libhamlib++.so
aaad6ac
%{_includedir}/hamlib/rigclass.h
aaad6ac
%{_includedir}/hamlib/rotclass.h
aaad6ac
c39b6b0
%files -n perl-hamlib
c002044
%{perl_vendorarch}/*
aaad6ac
3a82547
%files -n python%{pyver}-%{name}
820b383
%if 0%{?fedora} || 0%{?rhel} >= 8
3a82547
%{python3_sitearch}/*.py*
3a82547
%{python3_sitearch}/_Hamlib.so
42d748a
%{python3_sitearch}/__pycache__/Hamlib.*
3a82547
%else
c39b6b0
%{python2_sitearch}/*.py*
c39b6b0
%{python2_sitearch}/_Hamlib.so
3a82547
%endif
c39b6b0
c39b6b0
%files -n tcl-hamlib
96a8c19
%{_libdir}/tcl%{tclver}/
96a8c19
%exclude %{_libdir}/tcl%{tclver}/Hamlib/hamlibtcl.so
da0887f
aaad6ac
aaad6ac
%changelog
c7bdffa
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-6
c7bdffa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
c7bdffa
b821e44
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-5
b821e44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
b821e44
12b2be6
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-4
12b2be6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
12b2be6
4c35c55
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 4.5.5-3
4c35c55
- Perl 5.38 rebuild
4c35c55
8e58dad
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 4.5.5-2
8e58dad
- Rebuilt for Python 3.12
8e58dad
2c2b12e
* Mon May 29 2023 Richard Shaw <hobbes1069@gmail.com> - 4.5.5-1
2c2b12e
- Update to 4.5.5.
2c2b12e
b0aac5c
* Sun Jan 22 2023 Richard Shaw <hobbes1069@gmail.com> - 4.5.4-1
b0aac5c
- Update to 4.5.4.
b0aac5c
8f357b4
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-2
8f357b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
8f357b4
8ecb41e
* Sun Jan 01 2023 Richard Shaw <hobbes1069@gmail.com> - 4.5.3-1
8ecb41e
- Update to 4.5.3.
8ecb41e
82836e9
* Sun Dec 25 2022 Richard Shaw <hobbes1069@gmail.com> - 4.5.2-1
82836e9
- Update to 4.5.2.
82836e9
c3097c9
* Mon Nov 07 2022 Richard Shaw <hobbes1069@gmail.com> - 4.5-1
c3097c9
- Update to 4.5.
c3097c9
fe9a07c
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.4-5
fe9a07c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
fe9a07c
9157546
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 4.4-4
9157546
- Rebuilt for Python 3.11
9157546
d9ee9e9
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.4-3
d9ee9e9
- Perl 5.36 rebuild
d9ee9e9
d973cab
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.4-2
d973cab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
d973cab
ea1360d
* Wed Dec 22 2021 Richard Shaw <hobbes1069@gmail.com> - 4.4-1
ea1360d
- Update to 4.4.
ea1360d
34989f2
* Mon Oct 11 2021 Richard Shaw <hobbes1069@gmail.com> - 4.3.1-1
34989f2
- Update to 4.3.1.
34989f2
eea3c38
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-3
eea3c38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
eea3c38
c3e23ea
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 4.2-2
c3e23ea
- Rebuilt for Python 3.10
c3e23ea
f11ef1f
* Sun May 30 2021 Richard Shaw <hobbes1069@gmail.com> - 4.2-1
f11ef1f
- Update to 4.2.
f11ef1f
8f3c72e
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.1-2
8f3c72e
- Perl 5.34 rebuild
8f3c72e
6fd2842
* Mon Feb 01 2021 Richard Shaw <hobbes1069@gmail.com> - 4.1-1
6fd2842
- Update to 4.1.
6fd2842
48721b5
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3
48721b5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
48721b5
240dfc5
* Fri Dec 25 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-2
240dfc5
- Add additional modes known to flrig but not hamlib.
240dfc5
c8951e8
* Fri Dec 25 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-1
c8951e8
- Update to 4.0 final.
c8951e8
e1d0e91
* Thu Nov 26 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.13.20201126gitd8be93350f
e1d0e91
- Update to latest git checkout to fix Kenwood retries issue.
e1d0e91
1c047c5
* Thu Nov 12 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.12.20201111gitc7de6e8b19
1c047c5
- Update to latest Hamlib 4.0 branch.
1c047c5
1c047c5
* Mon Sep 28 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.11.20200928gitc9cfd40e91
1c047c5
- Update to latest git checkout, c9cfd40e91a225184f8e9423cd93015c94a57385.
1c047c5
1c047c5
* Sat Sep 12 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.10.20200912gitd47987db85
1c047c5
- Update to latest git checkout.
1c047c5
0ed0fdf
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-0.9.20200615git779cd69287
0ed0fdf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
0ed0fdf
56e4655
* Thu Jun 25 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0-0.8.20200615git779cd69287
56e4655
- Perl 5.32 rebuild
56e4655
ac48f74
* Thu Jun 25 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0-0.7.20200615git779cd69287
ac48f74
- Perl 5.32 rebuild
ac48f74
8c06877
* Mon Jun 15 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.6.20200615git779cd69287
8c06877
- Update to master.
8c06877
5197c37
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.0-0.5.20200409git6269bc4dec
5197c37
- Rebuilt for Python 3.9
5197c37
bdb511d
* Tue May 19 2020 Jaroslav Škarvada <jskarvad@redhat.com> - 4.0-0.4.20200409git6269bc4dec
bdb511d
- Do not link with -lpython
bdb511d
3c4f274
* Thu Apr 09 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.3.20200409git6269bc4dec
3c4f274
- Update to 4.0.20200409git6269bc4dec.
3c4f274
3cdf69c
* Tue Mar 31 2020 Richard Shaw <hobbes1069@gmail.com> - 4.0-0.1
3cdf69c
- Update to git checkout as wsjtx requires it and hamlib has not released
3cdf69c
  in quite some time.
3cdf69c
113a1f8
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-9
113a1f8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
113a1f8
6ce8356
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.3-8
6ce8356
- Rebuilt for Python 3.8.0rc1 (#1748018)
6ce8356
12231a1
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.3-7
12231a1
- Rebuilt for Python 3.8
12231a1
bc0c89c
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-6
bc0c89c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
bc0c89c
910856a
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 3.3-5
910856a
- Perl 5.30 rebuild
910856a
3cd5667
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-4
3cd5667
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3cd5667
4c73602
* Thu Oct 04 2018 Richard Shaw <hobbes1069@gmail.com> - 3.3-3
4c73602
- Correct __pycache__ reference in %%files.
4c73602
3a82547
* Wed Oct 03 2018 Richard Shaw <hobbes1069@gmail.com> - 3.3-2
3a82547
- Replace python 2 module with python 3.
3a82547
5f443c2
* Thu Aug 30 2018 Richard Shaw <hobbes1069@gmail.com> - 3.3-1
5f443c2
- Update to 3.3.
5f443c2
8ba250c
* Fri Jul 20 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 3.2-5
8ba250c
- Fixed FTBFS by adding gcc-c++ requirement
8ba250c
  Resolves: rhbz#1604307
8ba250c
09479a0
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-4
09479a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
09479a0
9733041
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.2-3
9733041
- Perl 5.28 rebuild
9733041
77c71fc
* Tue Jun 19 2018 Jaroslav Škarvada <jskarvad@redhat.com> - 3.2-2
77c71fc
- Dropped info scriptlets, it's now handled automatically by trigger
77c71fc
aa5fbca
* Tue Apr 03 2018 Richard Shaw <hobbes1069@gmail.com> - 3.2-1
aa5fbca
- Update to 3.2.
aa5fbca
e77fb57
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1-11
e77fb57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e77fb57
1fb662d
* Fri Dec 08 2017 Richard Shaw <hobbes1069@gmail.com> - 3.1-10
1fb662d
- Fix ambiguous Python 2 dependency declarations
1fb662d
  https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
1fb662d
7af4ef4
* Fri Sep  1 2017 Richard Shaw <hobbes1069@gmail.com> - 3.1-9
7af4ef4
- Update upstream URL for package, fixes RHBZ#1487568.
7af4ef4
- Patch pkgconfig file to correct lib dir, fixes RHBZ#1487575.
7af4ef4
d43c7c2
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.1-8
d43c7c2
- Python 2 binary package renamed to python2-hamlib
d43c7c2
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
d43c7c2
cca046f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1-7
cca046f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
cca046f
0cc3cb9
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1-6
0cc3cb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0cc3cb9
7a908a9
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 3.1-5
7a908a9
- Rebuilt for Boost 1.64
7a908a9
26078b7
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.1-4
26078b7
- Perl 5.26 rebuild
26078b7
dac2352
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1-3
dac2352
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
dac2352
9baf0d5
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 3.1-2
9baf0d5
- Rebuilt for Boost 1.63
9baf0d5
5747c7f
* Sun Jan  1 2017 Richard Shaw <hobbes1069@gmail.com> - 3.1-1
5747c7f
- Update to latest upstream release.
5747c7f
d8d4176
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-5
d8d4176
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
d8d4176
83ddad9
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.1-4
83ddad9
- Perl 5.24 rebuild
83ddad9
426bb43
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-3
426bb43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
426bb43
49a5658
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 3.0.1-2
49a5658
- Rebuilt for Boost 1.60
49a5658
8291cfc
* Thu Jan  7 2016 Richard Shaw <hobbes1069@gmail.com> - 3.0.1-1
8291cfc
- Update to latest upstream release.
8291cfc
1cb4a5f
* Thu Sep 24 2015 Richard Shaw <hobbes1069@gmail.com> - 3.0-3
1cb4a5f
- Fix devel package dependency on tcl-hamlib.
8291cfc
- Fix devel package requires.
8291cfc
- Make provides version and release specific.
1cb4a5f
834b012
* Tue Sep 22 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0-2
834b012
- Rebuild against new swig (BZ#1192849)
834b012
c39b6b0
* Sat Sep 19 2015 Richard Shaw <hobbes1069@gmail.com> - 3.0-1
c39b6b0
- Update to latest upstream release.
c39b6b0
c39b6b0
* Wed Sep  2 2015 Richard Shaw <hobbes1069@gmail.com> - 3.0-0.1.rc1
c39b6b0
- Update to latest upstream release candidate.
8291cfc
- Rename binding package names to be compliant with the package naming
c39b6b0
  guidelines.
c39b6b0
- Clean up spec cruft.
c39b6b0
7d00858
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 1.2.15.3-20
7d00858
- Rebuilt for Boost 1.59
7d00858
7132d75
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-19
7132d75
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
c39b6b0
 
8197bcb
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 1.2.15.3-18
8197bcb
- rebuild for Boost 1.58
8197bcb
2cd3c4d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-17
2cd3c4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2cd3c4d
98bf370
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.2.15.3-16
98bf370
- Perl 5.22 rebuild
98bf370
22a2616
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.2.15.3-15
22a2616
- Rebuilt for GCC 5 C++11 ABI change
22a2616
Petr Machata c1f2c3e
* Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 1.2.15.3-14
Petr Machata c1f2c3e
- Rebuild for boost 1.57.0
Petr Machata c1f2c3e
13754aa
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.2.15.3-13
13754aa
- Perl 5.20 rebuild
13754aa
37cafa0
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-12
37cafa0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
37cafa0
aa108b4
* Tue Jul  1 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 1.2.15.3-11
aa108b4
- Moved arch python module to sitearch dir, resolved multilib conflict
aa108b4
  Resolves: rhbz#1030768
aa108b4
48ce588
* Tue Jun 24 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 1.2.15.3-10
48ce588
- Switched to recent dependency filtering system,
48ce588
  it should resolve most of the multilib conflicts
48ce588
8314337
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-9
8314337
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8314337
Petr Machata eeffba1
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1.2.15.3-8
Petr Machata eeffba1
- Rebuild for boost 1.55.0
Petr Machata eeffba1
bffbafe
* Tue May 20 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 1.2.15.3-7
bffbafe
- Rebuilt for tcl/tk8.6
bffbafe
ef8fa56
* Sat Dec 14 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 1.2.15.3-6
ef8fa56
- Fix duplicate documentation (#1001257)
d07eec6
- License included only in base package, subpackages that depend on
d07eec6
  base package don't need to include it again
ef8fa56
- Build noarch HTML -doc subpackage
ef8fa56
- Include %%_libdir/hamlib directory
ef8fa56
- Drop obsolete spec buildroot definition/removal and %%clean
ef8fa56
- Add %%?_isa to explicit package deps
ef8fa56
- Remove %%defattr
ef8fa56
259bbfe
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-5
259bbfe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
259bbfe
Petr Machata 4db8cb2
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 1.2.15.3-4
Petr Machata 4db8cb2
- Rebuild for boost 1.54.0
Petr Machata 4db8cb2
bba8989
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.2.15.3-3
bba8989
- Perl 5.18 rebuild
bba8989
fc0786a
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.3-2
fc0786a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fc0786a
cf49306
* Tue Nov 06 2012 Jaroslav Škarvada <jskarvad@redhat.com> - 1.2.15.3-1
cf49306
- New version
cf49306
  Resolves: rhbz#846438
cf49306
c89b1b1
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.15.1-2
c89b1b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c89b1b1
ed264b4
* Wed Mar 14 2012 Lucian Langa <cooly@gnome.eu.org> - 1.2.15.1-1
ed264b4
- remove gnuradio dependency as we do not require it
ed264b4
- drop temporary patch
ed264b4
- new upstream release
ed264b4
2c02d85
* Sun Feb 05 2012 Lucian Langa <cooly@gnome.eu.org> - 1.2.15-1
2c02d85
- add temporary patch to fix usrmove issues
2c02d85
- drop patch 1 - no longer building with usrp
2c02d85
- drop patch 2 - fixed upstream
2c02d85
- new upstream release
2c02d85
afd2b3f
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.14-5
afd2b3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
afd2b3f
0571261
* Thu Dec 29 2011 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.14-4
0571261
- Rebuild to fix broken deps libusrp
0571261
aeaf6c2
* Wed Dec 07 2011 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.14-3
aeaf6c2
- Rebuild to fix broken deps libusrp
aeaf6c2
dab98fa
* Wed Dec 07 2011 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.14-2
dab98fa
- Rebuild to fix broken deps libusrp
dab98fa
- Apply --without-usrp
6e97533
e131217
* Sun Jul 31 2011 Lucian Langa <cooly@gnome.eu.org> - 1.2.14-1
e131217
- new upstream release
e131217
48c2df8
* Mon Jul 04 2011 Lucian Langa <cooly@gnome.eu.org> - 1.2.13.1-2
48c2df8
- add patch to fix building with latest gnuradio
48c2df8
b7239ca
* Thu Jun 16 2011 Lucian Langa <cooly@gnome.eu.org> - 1.2.13.1-1
b7239ca
- new upstream release
b7239ca
25b69c0
* Sun Apr 24 2011 Lucian Langa <cooly@gnome.eu.org> - 1.2.13-1
25b69c0
- setup filter provides for libdir/hamlib
25b69c0
- update bindings patch
25b69c0
- new upstream release
25b69c0
8c8a079
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.12-4
8c8a079
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8c8a079
dab98fa
* Wed Feb 2 2011 Randall "Randy" Berry N3LRX <dp67@fedoraproject.org> - 1.2.12-3
41f36d7
- Rebuild to fix broken deps libxml2
41f36d7
ee1b0ea
* Fri Nov 05 2010 Lucian Langa <cooly@gnome.eu.org> - 1.2.12-2
7405b8e
- update bindings patch
ee1b0ea
- rebuild against newer libxml2
ee1b0ea
9320e74
* Mon Sep 6 2010 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.12-1
9320e74
- New upstream release
9320e74
- Apply patches to new source
9320e74
- Removed patch1 applied upstream (usrp.patch)
9320e74
- Upstream-release-monitoring bz 630702
9320e74
- Upstream changes:
9320e74
- New models: PCR-2500, RX331, TRP 8255 S R
9320e74
- New rotator backends: DF9GR's ERC
9320e74
- Fixes and features: Paragon, TS-690S, FT-920, FT-990, FT-2000,
9320e74
- Elektor SDR-USB, IC-7000, IC-7700, AR-8200, AR-8600
9320e74
755f496
* Mon Aug 2 2010 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.11-5
755f496
- Rebuild
755f496
755f496
* Mon Aug 2 2010 Randall "Randy" Berry <dp67@fedoraproject.org> - 1.2.11-4
2529e4f
- Build against Python 2.7
2529e4f
- Fix broken dep python2.7
2529e4f
246f389
* Sat Jul 31 2010 Thomas Spura <tomspur@fedoraproject.org> - 1.2.11-3
246f389
- Rebuild for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
246f389
42ef873
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.2.11-2
42ef873
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
42ef873
f555f27
* Thu Jul 01 2010 Lucian Langa <cooly@gnome.eu.org> - 1.2.11-1
f555f27
- update bindings patch
f555f27
- drop patch2 - fixed upstream
f555f27
- new upstream release
f555f27
ffa828c
* Sun May 09 2010 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-4
ffa828c
- description cleanup
ffa828c
- add patch2 - fix double-free in cleanup in dummy module (#587701)
ffa828c
159a790
* Sun Nov 08 2009 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-3
159a790
- various cleanups
159a790
- disable rpath
159a790
- rebuild using system libltdl
159a790
4d08ff5
* Sat Nov 07 2009 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-2
4d08ff5
- build with usrp backend
4d08ff5
cc97c39
* Sat Nov 07 2009 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-1
cc97c39
- new upstream release
cc97c39
ef8fa56
* Sun Aug 23 2009 Lucian Langa <cooly@gnome.eu.org> - 1.2.9-1
426eb2d
- new install rule for docs for new doxygen
2e3238a
- misc cleanups
947ba67
- patch0 update
947ba67
- new upstream release
947ba67
e43e894
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-4
e43e894
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e43e894
da0887f
* Wed Apr 01 2009 Sindre Pedersen Bjørdal <sindrepb@fedoraproject.org> - 1.2.8-3
da0887f
- Add hackish fix for python binding issue
da0887f
ce5219c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-2
ce5219c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ce5219c
edf14eb
* Mon Dec 15 2008 Sindre Pedersen Bjørdal <sindrepb@fedoraproject.org> - 1.2.8-1
edf14eb
- New upstream release
edf14eb
4d35e37
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.7-3
4d35e37
- Rebuild for Python 2.6
4d35e37
Steve Conklin 875384b
* Tue Aug 26 2008 Steve Conklin <fedora@conklinhouse.com> - 1.2.7-2
Steve Conklin 875384b
- New patch to fix hamlib-perl
Steve Conklin 875384b
Steve Conklin 055bad9
* Fri Feb 15 2008 Steve Conklin <sconklin@redhat.com> - 1.2.7-1
Steve Conklin 055bad9
- New upstream released
Steve Conklin 055bad9
Steve Conklin 3bc2c68
* Thu Feb 14 2008 Steve Conklin <sconklin@redhat.com> - 1.2.6.2-7
Steve Conklin 3bc2c68
- Rebuild against new gcc4.3
Steve Conklin 3bc2c68
dea5328
* Thu Jan 03 2008 Alex Lancaster <alexlan[AT]fedoraproject.org> - 1.2.6.2-6
fd0d4e9
- Rebuild against new Tcl 8.5
fd0d4e9
52af680
* Sun Dec 09 2007 Sindre Pedersen Bjørdal - 1.2.6.2-5
7b14e16
- use sitearch not sitelib for perl package
7b14e16
- Make sure it builds on all arches
fd0d4e9
1de0902
* Sat Dec 08 2007 Sindre Pedersen Bjørdal - 1.2.6.2-3
1de0902
- Clean up BuildRequires
1de0902
- Remove obsolete swig patch
fd0d4e9
1de0902
* Sat Dec 08 2007 Sindre Pedersen Bjørdal - 1.2.6.2-2
1de0902
- Spec file cleanups
1de0902
- Use make install instead of depriciated %%makeinstall
1de0902
- Replace make trickery with patched upstream makefiles
1de0902
- enable perl bindings
1de0902
- Patch bindings makefile to install perl to vendor, not site
1de0902
- Merge swig patch with bindings patch
1de0902
- enable tcl bindings
d12dee8
- Create doc subpackage, solves #341481
1de0902
- Remove 2nd bindings patch, not needed as we don't rely on make trickery for bindings anymore
1de0902
- Add patch to install python bindings in proper python dirs
1de0902
- Clean up %%files list
1de0902
- Depend on version-release, not just version
fd0d4e9
8477234
* Tue Sep 25 2007 Denis Leroy <denis@poolshark.org> - 1.2.6.2-1
8477234
- Update to new upstream 1.2.6.2
8477234
- Added rigsmtr binary
8477234
7383094
* Mon Sep  3 2007 Denis Leroy <denis@poolshark.org> - 1.2.5-6
7383094
- Rebuild, License tag update
80f45ec
- Added net-tools BR
7383094
18fb6c0
* Wed May  9 2007 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 1.2.5-5
18fb6c0
- Move HTML devel documentation to the proper subpackage (#228364)
18fb6c0
cb7b962
* Thu Dec 14 2006 Jason L Tibbitts III <tibbs@math.uh.edu> - 1.2.5-4
cb7b962
- Rebuild for new Python
cb7b962
a741859
* Sat Sep 30 2006 Dennis Gilmore <dennis@ausil.us> 1.2.5-3
a741859
- fix Requires for hamlib-devel  its pkgconfig not pkg-config
a741859
6b55b25
* Sat Sep 30 2006 Dennis Gilmore <dennis@ausil.us> 1.2.5-2
6b55b25
- Fix BuildRequires added libxml2-devel, tcl-devel
6b55b25
- libusb-devel, pkgconfig  pkgconfig is required for fc5  as 
6b55b25
- libusb-devel doesnt require it there  but it wont hurt other 
6b55b25
- releases
6b55b25
6b55b25
* Sat Jul 29 2006 Robert 'Bob' Jensen <bob@bobjensen.com> 1.2.5-1
6b55b25
- Upstream update
6b55b25
- Spec file cleanups
c4709b1
561be58
* Sun Feb 19 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.4-3
561be58
- Fix bindings problems
10c2f10
- Remove static libs
10c2f10
- Remove .la files
10c2f10
fa2c374
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
55b32cc
- rebuilt
55b32cc
1e04835
* Wed Apr  6 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.4-1
1e04835
- Upstream update
1e04835
- Spec file cleanups
1e04835
7dcb7ea
* Wed Mar 23 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-9
7dcb7ea
- Python binding cleanup
7dcb7ea
- soname/ldconfig cleanup
7dcb7ea
- Added %%{_includedir}/hamlib to -devel
7dcb7ea
- Removed %%{_libdir}/hamlib-*.a and hamlib-*.la
7dcb7ea
- %%doc cleanups
7dcb7ea
11a794f
* Wed Mar 23 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-8
11a794f
- Added -q to %%setup
11a794f
- Fixed Python binding build and Requires
11a794f
a2b0775
* Mon Mar 21 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-7
a2b0775
- Removed spurious period and spelling mistake in Summary
a2b0775
b443d73
* Sat Mar 19 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-6
b443d73
- %%
b443d73
a0895b3
* Thu Mar 17 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-5
a0895b3
- Removed spurious Requires(...)
a0895b3
c02983c
* Thu Mar 17 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-4
b443d73
- Fixed %%post and %%postun along with Requires(...)
c02983c
1eccafa
* Wed Mar 16 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-3
b443d73
- Spell-corrected %%description
1eccafa
339222d
* Wed Mar 16 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-2
339222d
- Removed/fixed explicit Requires
339222d
aaad6ac
* Tue Mar 15 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.3-1
aaad6ac
- Bump release to 1
aaad6ac
- Fixed BuildRoot
aaad6ac
ef8fa56
* Thu Feb 10 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:1.2.3-0.iva.1
aaad6ac
- Fixed error with automake in -devel (#26)
aaad6ac
aaad6ac
* Mon Jan 31 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:1.2.3-0.iva.0
aaad6ac
- Upstream update
aaad6ac
aaad6ac
* Sun Jan  9 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:1.2.2-0.iva.1
b443d73
- Fixed %%files %%defattr
aaad6ac
aaad6ac
* Sun Jan  9 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:1.2.2-0.iva.0
aaad6ac
- Ported to FC3
aaad6ac
- Upgraded to 1.2.2
aaad6ac
aaad6ac
* Sun Apr 18 2004 David L Norris <dave@webaugur.com>
aaad6ac
- Enable disabled script bindings.
aaad6ac
- Touch up descriptions.
aaad6ac
aaad6ac
* Tue Jan 20 2004 Tomi Manninen
aaad6ac
- Fix for 1.1.5pre2
aaad6ac
- Better use of rpm macros
aaad6ac
- Disable all bindings
aaad6ac
ef8fa56
* Wed Oct 08 2003 Joop Stakenborg
aaad6ac
- Fix 'make rpm' again by disabling c++ bindings.
aaad6ac
- rotclass.h and rigclass.h go into the devel package for now (FIXME)
aaad6ac
aaad6ac
* Wed Jan 15 2003 Joop Stakenborg
aaad6ac
- Fix the spec file for 1.1.4CVS
aaad6ac
- 'make rpm' should work now
aaad6ac
ef8fa56
* Mon Jun 17 2002 Stephane Fillod
aaad6ac
- Added rotator support
aaad6ac
- Added RPC daemon, hamlib.m4
aaad6ac
- Upstream version 1.1.3
aaad6ac
ef8fa56
* Wed Jul 18 2001 Stephane Fillod
aaad6ac
- Made initial "working" SPEC file
aaad6ac