Compare commits
24 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a71fd53a7b | ||
|
|
ecad21beea | ||
|
|
2fbab82f81 | ||
|
|
ff73abc204 | ||
|
|
5ce265949e | ||
|
|
50e0c3c097 | ||
|
|
673849d760 | ||
|
|
5debd567ce | ||
|
|
b09a0366fe | ||
|
|
b57970dad4 | ||
|
|
2509e9aa79 | ||
|
|
32baf1a0ef | ||
|
|
3fea62cb3c | ||
|
|
6240f7d3b2 | ||
|
|
80cac068ba | ||
|
|
254342fcfd | ||
|
|
d317cc6e70 | ||
|
|
61380ca365 | ||
|
|
31a929fe6f | ||
|
|
67234b50a6 | ||
|
|
8bf87dfdbb | ||
| 430a277f77 | |||
|
|
388a8edc59 | ||
|
|
a7e9ee2b02 |
5 changed files with 150 additions and 14 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
xfhell-1.9.tar.gz
|
xfhell-1.9.tar.gz
|
||||||
|
/xfhell-3.5.1.tar.bz2
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
7d805d2be5fb2a67f820f488b33263e5 xfhell-1.9.tar.gz
|
SHA512 (xfhell-3.5.1.tar.bz2) = daa271a91e174fba5d7ad3237f56451dbc91e855c0c3775a5d5b5f5d7fce4ada332cb8084eb08cbf1c74b55b33f62eaaa7dd8439c08a61dcde0764599ec8b1b4
|
||||||
|
|
|
||||||
44
xfhell-Makefile.patch
Normal file
44
xfhell-Makefile.patch
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -50,16 +50,9 @@ install-data-local:
|
||||||
|
cp files/$(PACKAGE).png $(DESTDIR)/usr/share/pixmaps/; \
|
||||||
|
fi; \
|
||||||
|
if !(test -d $(DESTDIR)/usr/share/doc/$(PACKAGE)); then \
|
||||||
|
- mkdir $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
+ mkdir -p $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
fi; \
|
||||||
|
if test -d doc/; then \
|
||||||
|
cp -r doc/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
- cp -r doc/$(PACKAGE).1.gz $(DESTDIR)/usr/share/man/man1/; \
|
||||||
|
- fi; \
|
||||||
|
- if !(test -d /home/`logname`/$(PACKAGE)); then \
|
||||||
|
- cp -r $(PACKAGE) /home/`logname`/; \
|
||||||
|
- else \
|
||||||
|
- cp $(PACKAGE)/$(PACKAGE).glade /home/`logname`/$(PACKAGE); \
|
||||||
|
- fi; \
|
||||||
|
- chown -R `logname`:`logname` /home/`logname`/$(PACKAGE);
|
||||||
|
+ fi;
|
||||||
|
|
||||||
|
--- a/Makefile.in
|
||||||
|
+++ b/Makefile.in
|
||||||
|
@@ -903,18 +903,11 @@ install-data-local:
|
||||||
|
cp files/$(PACKAGE).png $(DESTDIR)/usr/share/pixmaps/; \
|
||||||
|
fi; \
|
||||||
|
if !(test -d $(DESTDIR)/usr/share/doc/$(PACKAGE)); then \
|
||||||
|
- mkdir $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
+ mkdir -p $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
fi; \
|
||||||
|
if test -d doc/; then \
|
||||||
|
cp -r doc/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
|
||||||
|
- cp -r doc/$(PACKAGE).1.gz $(DESTDIR)/usr/share/man/man1/; \
|
||||||
|
- fi; \
|
||||||
|
- if !(test -d /home/`logname`/$(PACKAGE)); then \
|
||||||
|
- cp -r $(PACKAGE) /home/`logname`/; \
|
||||||
|
- else \
|
||||||
|
- cp $(PACKAGE)/$(PACKAGE).glade /home/`logname`/$(PACKAGE); \
|
||||||
|
- fi; \
|
||||||
|
- chown -R `logname`:`logname` /home/`logname`/$(PACKAGE);
|
||||||
|
+ fi;
|
||||||
|
|
||||||
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
16
xfhell-configure-c99.patch
Normal file
16
xfhell-configure-c99.patch
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
Include <unistd.h> for the exit function. This avoids an implicit
|
||||||
|
function declaration and mishandling of this test with future
|
||||||
|
compilers.
|
||||||
|
|
||||||
|
diff --git a/m4/intdiv0.m4 b/m4/intdiv0.m4
|
||||||
|
index 744b99ea8da87ca1..f5cbd3e944362697 100644
|
||||||
|
--- a/m4/intdiv0.m4
|
||||||
|
+++ b/m4/intdiv0.m4
|
||||||
|
@@ -33,6 +33,7 @@ changequote([,])dnl
|
||||||
|
[AC_LANG_SOURCE([[
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <signal.h>
|
||||||
|
+#include <unistd.h>
|
||||||
|
|
||||||
|
static void
|
||||||
|
sigfpe_handler (int sig)
|
||||||
101
xfhell.spec
101
xfhell.spec
|
|
@ -1,21 +1,28 @@
|
||||||
Name: xfhell
|
Name: xfhell
|
||||||
Version: 1.9
|
Version: 3.5.1
|
||||||
Release: 20%{?dist}
|
Release: 16%{?dist}
|
||||||
Summary: GTK based Ham Radio application for the Hellschreiber communications mode
|
Summary: GTK based Ham Radio application for the Hellschreiber communications mode
|
||||||
|
|
||||||
Group: Applications/Communications
|
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||||
License: GPLv2+
|
License: GPL-2.0-or-later
|
||||||
URL: http://5b4az.chronos.org.uk/pages/digital.html
|
URL: http://www.5b4az.org/
|
||||||
Source0: http://5b4az.chronos.org.uk/pkg/%{name}/%{name}-%{version}.tar.gz
|
Source0: http://www.5b4az.org/pkg/%{name}/%{name}-%{version}.tar.bz2
|
||||||
#add .desktop file
|
#add .desktop file
|
||||||
Source1: %{name}.desktop
|
Source1: %{name}.desktop
|
||||||
#temporary Icon
|
#temporary Icon
|
||||||
Source2: %{name}.png
|
Source2: %{name}.png
|
||||||
# -Werror=format-security
|
|
||||||
Patch0: xfhell-1.9-format-security.patch
|
|
||||||
|
|
||||||
BuildRequires: autoconf, automake, gtk2-devel, desktop-file-utils
|
Patch0: xfhell-Makefile.patch
|
||||||
#Requires:
|
Patch1: xfhell-configure-c99.patch
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: gcc gcc-c++
|
||||||
|
BuildRequires: autoconf, automake, libtool
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: alsa-lib-devel
|
||||||
|
BuildRequires: glib2-devel
|
||||||
|
BuildRequires: gtk3-devel
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
xfhell is a GTK+ application for the "fuzzy" digital amateur radio
|
xfhell is a GTK+ application for the "fuzzy" digital amateur radio
|
||||||
|
|
@ -23,14 +30,15 @@ communication mode known as Hellschreiber.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qn %{name}
|
%autosetup -p1
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
export CFLAGS="%{optflags} `pkg-config --cflags gmodule-2.0`"
|
||||||
|
export LDFLAGS="%{optflags} -lm `pkg-config --libs gmodule-2.0`"
|
||||||
%configure
|
%configure
|
||||||
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" LIBS=" -lm"
|
%make_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
@ -39,9 +47,14 @@ make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||||
# no upstream .desktop or icon yet
|
# no upstream .desktop or icon yet
|
||||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
|
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
|
||||||
cp -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/%{name}.png
|
cp -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/%{name}.png
|
||||||
|
|
||||||
desktop-file-install \
|
desktop-file-install \
|
||||||
--dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1}
|
--dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1}
|
||||||
|
|
||||||
|
rm -f %{buildroot}%{_docdir}/%{name}/%{name}.1.gz
|
||||||
|
mkdir -p %{buildroot}%{_mandir}/man1
|
||||||
|
cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
#Missing copy of the GPL, Notified upstream
|
#Missing copy of the GPL, Notified upstream
|
||||||
|
|
@ -50,8 +63,70 @@ desktop-file-install \
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/pixmaps/%{name}.png
|
%{_datadir}/pixmaps/%{name}.png
|
||||||
%{_datadir}/applications/%{name}.desktop
|
%{_datadir}/applications/%{name}.desktop
|
||||||
|
%{_mandir}/man1/%{name}.1*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 3.5.1-12
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Florian Weimer <fweimer@redhat.com> - 3.5.1-7
|
||||||
|
- C99 compatibility fixes (#2157935)
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 19 2020 Richard Shaw <hobbes1069@gmail.com> - 3.5.1-1
|
||||||
|
- Update to 3.5.1.
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-24
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-22
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-20
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-20
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue