Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13528ae377 | ||
|
|
2bf0fd1695 | ||
|
|
b564ed703f | ||
|
|
6005b0394a | ||
|
|
94e7ed13f7 | ||
|
|
d534f69ce8 | ||
|
|
22aa8ffce9 | ||
|
|
2a3cffacde | ||
| 5312a418b5 |
8 changed files with 111 additions and 327 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1 @@
|
|||
xlog-*.tar.gz
|
||||
xlog-1.8.1.tar.gz
|
||||
|
|
|
|||
|
|
@ -1,30 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>org.nongnu.Xlog</id>
|
||||
<launchable type="desktop-id">xlog.desktop</launchable>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>GPL-3.0-or-later</project_license>
|
||||
<provides>
|
||||
<binary>xlog</binary>
|
||||
</provides>
|
||||
<name>Xlog</name>
|
||||
<summary>Logging program for Amateur Radio Operators</summary>
|
||||
<description>
|
||||
<p>
|
||||
Xlog is a logging program for Amateur Radio Operators which can be used for daily logging and contest. Logs are stored into a text file.
|
||||
You can open, close and create logs as you need them. Xlog supports cabrillo, ADIF, trlog, and EDI and can import twlog, editest and OH1AA logbook files.
|
||||
</p>
|
||||
<p>
|
||||
QSO's are presented in a list. Items in the list can be added, deleted or updated. For each contact, DXCC information is displayed and bearings and distance is calculated, both short and long path.
|
||||
When hamlib is enabled through the menu, you can retrieve frequency, mode and signal-strength from your rig over the serial port.
|
||||
</p>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image type="source">https://xlog.nongnu.org/xlog.jpg</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<url type="homepage">https://xlog.nongnu.org</url>
|
||||
<url type="bugtracker">https://savannah.nongnu.org/bugs/?group=xlog</url>
|
||||
<content_rating type="oars-1.1"/>
|
||||
</component>
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (xlog-2.0.25.tar.gz) = 3ce5b27a0529885862a8c5256162068504e05cbbca6e0fc6cf492bfabbb2aa84b82a54502319646ee49e78aac6cd2b685877ec3687fb962c59c8648e0be4e121
|
||||
df1b8bf7bc88cf8273936a13ace8bc0d xlog-1.8.1.tar.gz
|
||||
|
|
|
|||
60
xlog-1.8.1-doc.patch
Normal file
60
xlog-1.8.1-doc.patch
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
diff -Naur xlog-1.8.1/data/Makefile.am xlog-1.8.1-mod/data/Makefile.am
|
||||
--- xlog-1.8.1/data/Makefile.am 2008-04-04 23:08:35.000000000 +0300
|
||||
+++ xlog-1.8.1-mod/data/Makefile.am 2008-12-10 12:24:39.000000000 +0200
|
||||
@@ -1 +1 @@
|
||||
-SUBDIRS = desktop doc dxcc glabels images man maps mime pixmaps remote utils
|
||||
+SUBDIRS = desktop dxcc images man maps mime pixmaps remote utils
|
||||
diff -Naur xlog-1.8.1/Makefile.am xlog-1.8.1-mod/Makefile.am
|
||||
--- xlog-1.8.1/Makefile.am 2008-08-28 17:35:49.000000000 +0300
|
||||
+++ xlog-1.8.1-mod/Makefile.am 2008-12-10 12:24:39.000000000 +0200
|
||||
@@ -8,13 +8,9 @@
|
||||
|
||||
install-data-local:
|
||||
@$(NORMAL_INSTALL)
|
||||
- $(INSTALL_DATA) AUTHORS $(DESTDIR)$(pkgdatadir)
|
||||
- $(INSTALL_DATA) ChangeLog $(DESTDIR)$(pkgdatadir)
|
||||
- $(INSTALL_DATA) BUGS $(DESTDIR)$(pkgdatadir)
|
||||
|
||||
rpm: Makefile
|
||||
make dist
|
||||
$(RPMBUILD) -ta $(PACKAGE)-$(VERSION).tar.gz
|
||||
rm $(PACKAGE)-$(VERSION).tar.gz
|
||||
|
||||
-ACLOCAL_AMFLAGS = -I m4
|
||||
diff -Naur xlog-1.8.1/src/gui_helpdialog.c xlog-1.8.1-mod/src/gui_helpdialog.c
|
||||
--- xlog-1.8.1/src/gui_helpdialog.c 2008-08-28 11:40:01.000000000 +0300
|
||||
+++ xlog-1.8.1-mod/src/gui_helpdialog.c 2008-12-10 15:00:33.000000000 +0200
|
||||
@@ -79,7 +79,7 @@
|
||||
#ifdef G_OS_WIN32
|
||||
helpfile = g_strdup_printf ("%s", filename);
|
||||
#else
|
||||
- helpfile = g_strdup_printf ("%s%s%s", XLOG_DATADIR, G_DIR_SEPARATOR_S,
|
||||
+ helpfile = g_strdup_printf ("%s%s%s", XLOG_DOCDIR, G_DIR_SEPARATOR_S,
|
||||
filename);
|
||||
#endif
|
||||
gtk_text_buffer_create_tag (buffer, "bold", "weight", PANGO_WEIGHT_BOLD, NULL);
|
||||
diff -Naur xlog-1.8.1/src/gui_keys.c xlog-1.8.1-mod/src/gui_keys.c
|
||||
--- xlog-1.8.1/src/gui_keys.c 2008-08-28 10:27:09.000000000 +0300
|
||||
+++ xlog-1.8.1-mod/src/gui_keys.c 2008-12-10 15:00:44.000000000 +0200
|
||||
@@ -87,7 +87,7 @@
|
||||
#ifdef G_OS_WIN32
|
||||
helpfile = g_strdup_printf ("%s", filename);
|
||||
#else
|
||||
- helpfile = g_strdup_printf ("%s%s%s", XLOG_DATADIR, G_DIR_SEPARATOR_S,
|
||||
+ helpfile = g_strdup_printf ("%s%s%s", XLOG_DOCDIR, G_DIR_SEPARATOR_S,
|
||||
filename);
|
||||
#endif
|
||||
buf = g_new0 (gchar, 100);
|
||||
diff -Naur xlog-1.8.1/src/Makefile.am xlog-1.8.1-mod/src/Makefile.am
|
||||
--- xlog-1.8.1/src/Makefile.am 2008-05-15 17:54:16.000000000 +0300
|
||||
+++ xlog-1.8.1-mod/src/Makefile.am 2008-12-10 12:25:02.000000000 +0200
|
||||
@@ -11,7 +11,8 @@
|
||||
-DGTK_DISABLE_DEPRECATED \
|
||||
-DDATADIR=\""$(datadir)"\" \
|
||||
-DXLOG_LOCALEDIR=\""$(datadir)/locale"\" \
|
||||
- -DXLOG_DATADIR=\""$(datadir)/xlog"\"
|
||||
+ -DXLOG_DATADIR=\""$(datadir)/xlog"\" \
|
||||
+ -DXLOG_DOCDIR=\""$(DOCDIR)"\"
|
||||
|
||||
CLEANFILES = *~
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
Index: xlog-2.0.22/configure.ac
|
||||
===================================================================
|
||||
--- xlog-2.0.22.orig/configure.ac
|
||||
+++ xlog-2.0.22/configure.ac
|
||||
@@ -22,11 +22,11 @@ dnl if test "${ac_cv_c_compiler_gnu}" =
|
||||
dnl CFLAGS="${CFLAGS} -Wno-deprecated-declarations -Wall -Wno-stringop-truncation -Wno-unused-but-set-variable -Werror"
|
||||
dnl fi
|
||||
|
||||
-AX_CHECK_COMPILE_FLAG([-Werror], [CFLAGS="$CFLAGS -Werror"], [], [])
|
||||
-AX_CHECK_COMPILE_FLAG([-Wno-deprecated-declarations], [CFLAGS="$CFLAGS -Wno-deprecated-declarations"], [], [])
|
||||
-AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"], [], [])
|
||||
-AX_CHECK_COMPILE_FLAG([-Wno-stringop-truncation], [CFLAGS="$CFLAGS -Wno-stringop-truncation"], [], [])
|
||||
-AX_CHECK_COMPILE_FLAG([-Wno-unused-but-set-variable], [CFLAGS="$CFLAGS -Wno-unused-but-set-variable"], [], [])
|
||||
+dnl AX_CHECK_COMPILE_FLAG([-Werror], [CFLAGS="$CFLAGS -Werror"], [], [])
|
||||
+dnl AX_CHECK_COMPILE_FLAG([-Wno-deprecated-declarations], [CFLAGS="$CFLAGS -Wno-deprecated-declarations"], [], [])
|
||||
+dnl AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"], [], [])
|
||||
+dnl AX_CHECK_COMPILE_FLAG([-Wno-stringop-truncation], [CFLAGS="$CFLAGS -Wno-stringop-truncation"], [], [])
|
||||
+dnl AX_CHECK_COMPILE_FLAG([-Wno-unused-but-set-variable], [CFLAGS="$CFLAGS -Wno-unused-but-set-variable"], [], [])
|
||||
|
||||
dnl end - see xlog bug #60003 - AndyS 15-Feb-2021
|
||||
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
diff -up a/Makefile.am b/Makefile.am
|
||||
--- a/Makefile.am 2021-02-15 20:37:54.000000000 -0500
|
||||
+++ b/Makefile.am 2025-10-19 01:05:33.816651640 -0400
|
||||
@@ -6,7 +6,7 @@ EXTRA_DIST = config.rpath mkinstalldirs
|
||||
|
||||
CLEANFILES = *~
|
||||
|
||||
-ACLOCAL_AMFLAGS = -I /usr/share/aclocal
|
||||
+ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
dist-hook:
|
||||
rm -f AUTHORS ChangeLog
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- xlog-2.0.25.orig/src/hamlib-utils.c 2021-10-03 14:38:22.000000000 -0300
|
||||
+++ xlog-2.0.25/src/hamlib-utils.c 2024-12-25 19:12:18.209526859 -0300
|
||||
@@ -49,6 +49,10 @@
|
||||
#define FILPATHLEN 150
|
||||
#endif
|
||||
|
||||
+#ifndef HAMLIB_FILPATHLEN
|
||||
+#define HAMLIB_FILPATHLEN FILEPATHLEN
|
||||
+#endif
|
||||
+
|
||||
struct rig_id {
|
||||
const gint modelnr;
|
||||
const gchar *modelname;
|
||||
@@ -173,7 +177,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- strncpy (myrig->state.rigport.pathname, device, FILPATHLEN);
|
||||
+ strncpy (myrig->state.rigport.pathname, device, HAMLIB_FILPATHLEN);
|
||||
retcode = rig_open (myrig);
|
||||
|
||||
if (retcode != RIG_OK)
|
||||
287
xlog.spec
287
xlog.spec
|
|
@ -1,32 +1,22 @@
|
|||
Name: xlog
|
||||
Version: 2.0.25
|
||||
Release: 7%{?dist}
|
||||
Summary: Logging program for Hamradio Operators
|
||||
Name: xlog
|
||||
Version: 1.8.1
|
||||
Release: 4%{?dist}
|
||||
Summary: Logging program for Hamradio Operators
|
||||
|
||||
# Automatically converted from old format: GPLv3 - review is highly recommended.
|
||||
License: GPL-3.0-only
|
||||
URL: http://www.nongnu.org/xlog/
|
||||
Source0: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz
|
||||
Source1: org.nongnu.Xlog.metainfo.xml
|
||||
|
||||
Patch0: %{name}-2.0.19-no-error.patch
|
||||
Patch1: xlog-%{version}-hamlib42.patch
|
||||
Patch2: %{name}-2.0.25-aclocal.patch
|
||||
|
||||
ExcludeArch: i686
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
Group: Applications/Communications
|
||||
License: GPLv3
|
||||
URL: http://pg4i.chronos.org.uk/linux/%{name}.html
|
||||
Source0: http://pg4i.chronos.org.uk/download/%{name}-%{version}.tar.gz
|
||||
Patch0: xlog-1.8.1-doc.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
#BuildRequires: pkgconfig
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: libgnomeprint22-devel
|
||||
BuildRequires: hamlib-devel
|
||||
BuildRequires: shared-mime-info
|
||||
BuildRequires: gettext-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
Requires: hicolor-icon-theme
|
||||
|
||||
%description
|
||||
xlog is a logging program for amateur radio operators. The log is stored
|
||||
into a text file. QSO's are presented in a list. Items in the list can be
|
||||
|
|
@ -35,248 +25,67 @@ and bearings and distance is calculated, both short and long path.
|
|||
xlog supports trlog, adif, cabrillo, edit, twlog and editest files.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%setup -q
|
||||
%patch0 -p1 -b doc
|
||||
#fix bogus .desktop file
|
||||
sed -i -e "s/Utility;Database;HamRadio;GTK/Network;HamRadio;GTK/g" $RPM_BUILD_DIR/%{name}-%{version}/data/desktop/xlog.desktop
|
||||
sed -i -e "s/ApplicationHamRadio/Application/g" $RPM_BUILD_DIR/%{name}-%{version}/data/desktop/xlog.desktop
|
||||
sed -i -e "s/Utility;Database;HamRadio;GTK/HamRadio/g" $RPM_BUILD_DIR/%{name}-%{version}/data/desktop/xlog.desktop
|
||||
sed -i -e "s/.png//g" $RPM_BUILD_DIR/%{name}-%{version}/data/desktop/xlog.desktop
|
||||
|
||||
%build
|
||||
autoreconf -vif
|
||||
%configure CFLAGS="%{optflags} -lm" --enable-hamlib --docdir=%{_docdir}/%{name}
|
||||
%make_build
|
||||
#missing directory from package
|
||||
mkdir m4
|
||||
autoreconf -i -f
|
||||
%configure --enable-hamlib
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||
rm -f $RPM_BUILD_ROOT%{_datadir}/applications/mimeinfo.cache
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
# Install desktop file
|
||||
desktop-file-install \
|
||||
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
||||
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
||||
$RPM_BUILD_ROOT%{_datadir}/applications/xlog.desktop
|
||||
desktop-file-edit --set-key=Icon --set-value=%{name} $RPM_BUILD_ROOT%{_datadir}/applications/xlog.desktop
|
||||
|
||||
# Install svg icon
|
||||
install -D -p -m644 data/pixmaps/xlog.svg $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
||||
%post
|
||||
update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
|
||||
# Install AppStream metainfo file
|
||||
install -D -p -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_metainfodir}/org.nongnu.Xlog.metainfo.xml
|
||||
%postun
|
||||
update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc AUTHORS data/doc/BUGS ChangeLog COPYING NEWS README data/doc/TODO data/doc/manual data/doc/KEYS data/glabels
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS BUGS ChangeLog COPYING NEWS README data/doc/manual data/doc/manual.tex data/glabels/qsllabels.glabels
|
||||
%{_bindir}/%{name}
|
||||
%dir %{_datadir}/%{name}
|
||||
%{_datadir}/%{name}/dxcc
|
||||
%{_datadir}/%{name}/maps
|
||||
%{_datadir}/pixmaps/*
|
||||
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
||||
%{_datadir}/icons/gnome-mime-text-x-%{name}.png
|
||||
%{_datadir}/icons/%{name}-icon.png
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_metainfodir}/org.nongnu.Xlog.metainfo.xml
|
||||
%{_datadir}/mime/packages/*.xml
|
||||
%{_datadir}/mime/packages/*
|
||||
%{_mandir}/man?/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Feb 06 2025 Richard Shaw <hobbes1069@gmail.com> - 2.0.25-4
|
||||
- Rebuild for hamlib 4.6.
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Dec 31 2024 Richard Shaw <hobbes1069@gmail.com> - 2.0.25-2
|
||||
- Rebuild for Hamlib 4.6.
|
||||
|
||||
* Wed Dec 25 2024 Filipe Rosset <rosset.filipe@gmail.com> - 2.0.25-1
|
||||
- Updated to 2.0.25 fixes rhbz#1947630
|
||||
|
||||
* Mon Jul 29 2024 Miroslav Suchý <msuchy@redhat.com> - 2.0.22-15
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jun 29 2023 Daniel Rusek <mail@asciiwolf.com> - 2.0.22-11
|
||||
- Add AppStream metadata, svg icon
|
||||
Resolves: rhbz#1792728
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Nov 08 2022 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-9
|
||||
- Rebuild for updated hamlib 4.5.
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Dec 23 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-6
|
||||
- Rebuild for hamlib 4.4.
|
||||
|
||||
* Thu Dec 23 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-5
|
||||
- 36-build-side-49086
|
||||
|
||||
* Tue Oct 12 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-4
|
||||
- Rebuild for hamlib 4.3.1.
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sun May 30 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-2
|
||||
- Rebuild for hamlib 4.2.
|
||||
|
||||
* Mon May 10 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.22-1
|
||||
- Update to 2.0.22.
|
||||
|
||||
* Tue Feb 02 2021 Richard Shaw <hobbes1069@gmail.com> - 2.0.19-5
|
||||
- Rebuild for hamlib 4.1.
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.19-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.19-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu May 14 2020 Jaroslav Škarvada <jskarvad@redhat.com> - 2.0.19-1
|
||||
- New version
|
||||
Resolves: rhbz#1834548
|
||||
|
||||
* Tue Mar 31 2020 Richard Shaw <hobbes1069@gmail.com> - 2.0.13-11
|
||||
- Rebuild for hamlib 4.
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jan 05 2017 Richard Shaw <hobbes1069@gmail.com> - 2.0.13-2
|
||||
- Rebuild for hamlib 3.1.
|
||||
|
||||
* Mon Feb 15 2016 Lucian Langa <lucilanga@gnome.eu.org> - 2.0.13-1
|
||||
- cadd patch to deactivate Werror
|
||||
- doc files packaging fixes
|
||||
- drop gnomeprint BR
|
||||
- update to latest upstream
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.11-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Oct 02 2014 Rex Dieter <rdieter@fedoraproject.org> 2.0.11-4
|
||||
- update mime scriptlets
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Jan 24 2014 Lucian Langa <cooly@gnome.eu.org> - 2.0.11-1
|
||||
- update to latest upstream
|
||||
- specfile cleanup
|
||||
|
||||
* Tue Aug 06 2013 Lucian Langa <cooly@gnome.eu.org> - 2.0.6-3
|
||||
- use unversioned doc directory
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Sat Mar 02 2013 Lucian Langa <cooly@gnome.eu.org> - 2.0.6-1
|
||||
- fix bogus log entries
|
||||
- drop missing files
|
||||
- new upstream release
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 2.0.5-2
|
||||
- Rebuild for new libpng
|
||||
|
||||
* Sat Mar 05 2011 Lucian Langa <cooly@gnome.eu.org> - 2.0.5-1
|
||||
- new upstream release
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sat Oct 30 2010 Lucian Langa <cooly@gnome.eu.org> - 2.0.4-1
|
||||
- update source and URL
|
||||
- new upstream release
|
||||
|
||||
* Sun Oct 25 2009 Lucian Langa <cooly@gnome.eu.org> - 2.0.3-3
|
||||
- fix desktop file #530845
|
||||
|
||||
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Mon Jul 20 2009 Lucian Langa <cooly@gnome.eu.org> - 2.0.3-1
|
||||
- new upstream release
|
||||
|
||||
* Thu Jun 25 2009 Lucian Langa <cooly@gnome.eu.org> - 2.0.2-1
|
||||
- new upstream release
|
||||
|
||||
* Mon Mar 09 2009 Lucian Langa <cooly@gnome.eu.org> - 2.0.1-1
|
||||
- new upstream release
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Tue Feb 17 2009 Lucian Langa <cooly@gnome.eu.org> - 2.0-1
|
||||
- add --docdir option
|
||||
- remove m4 creation
|
||||
- drop patch0 (fixed upstream)
|
||||
- new upstream release
|
||||
|
||||
* Wed Dec 10 2008 Lucian Langa <cooly@gnome.eu.org> - 1.8.1-3
|
||||
* Wed Dec 10 2008 Lucian Langa <cooly@gnome.eu.org> - 1.8.1-4
|
||||
- modify patch to correctly display documentation
|
||||
|
||||
* Sun Nov 23 2008 Lucian Langa <cooly@gnome.eu.org> - 1.8.1-3
|
||||
- drop mimecache.info from install target
|
||||
|
||||
* Sun Nov 23 2008 Lucian Langa <cooly@gnome.eu.org> - 1.8.1-2
|
||||
- fix for RH #472619: drop mimeinfo.cache
|
||||
|
||||
|
|
@ -304,10 +113,10 @@ install -D -p -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_metainfodir}/org.nongnu.Xlog.me
|
|||
* Mon Dec 10 2007 Robert 'Bob' Jensen 1.6.2-1
|
||||
- Upstream Version bump
|
||||
|
||||
* Wed Nov 28 2007 Robert 'Bob' Jensen 1.6.1-2
|
||||
* Thu Nov 28 2007 Robert 'Bob' Jensen 1.6.1-2
|
||||
- License update
|
||||
|
||||
* Wed Nov 28 2007 Robert 'Bob' Jensen 1.6.1-1
|
||||
* Thu Nov 28 2007 Robert 'Bob' Jensen 1.6.1-1
|
||||
- Upstream Version bump to solve License issue in wwl.c
|
||||
|
||||
* Thu Nov 22 2007 Sindre Pedersen Bjørdal <foolish@guezz.net> 1.6-3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue