Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9acee03108 |
6 changed files with 276 additions and 203 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,2 @@
|
|||
/abiword-3.*.tar.gz
|
||||
/abiword-docs-3.*.tar.gz
|
||||
/AbiWord-release-3.0.7.tar.bz2
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@ Index: abiword-3.0.2/src/gi-overrides/Makefile.am
|
|||
+++ abiword-3.0.2/src/gi-overrides/Makefile.am
|
||||
@@ -1,2 +1,2 @@
|
||||
-overridesdir = `python -c "import gi; print gi._overridesdir"`
|
||||
+overridesdir = `$(PYTHON) -c "import gi; print(gi._overridesdir)"`
|
||||
+overridesdir = `$(PYTHON) -c "import gi; print gi._overridesdir"`
|
||||
overrides_PYTHON = Abi.py
|
||||
54
abiword-3.0.2-fix-black-drawing-regression.patch
Normal file
54
abiword-3.0.2-fix-black-drawing-regression.patch
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
From cec2fda355b67b5b814a803c5ed128c425cbb030 Mon Sep 17 00:00:00 2001
|
||||
From: Hubert Figuiere <hub@figuiere.net>
|
||||
Date: Thu, 8 Dec 2016 02:03:10 +0000
|
||||
Subject: [PATCH] Bug 13815 - draw event should return TRUE
|
||||
|
||||
This fix the black drawing regression with Gtk3.22
|
||||
|
||||
git-svn-id: svn+ssh://svn.abisource.com/svnroot/abiword/branches/ABI-3-0-0-STABLE@35394 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
|
||||
---
|
||||
src/af/xap/gtk/xap_UnixFrameImpl.cpp | 6 +++---
|
||||
src/af/xap/gtk/xap_UnixFrameImpl.h | 4 ++--
|
||||
2 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/af/xap/gtk/xap_UnixFrameImpl.cpp b/src/af/xap/gtk/xap_UnixFrameImpl.cpp
|
||||
index 780000e..10f8e00 100644
|
||||
--- a/src/af/xap/gtk/xap_UnixFrameImpl.cpp
|
||||
+++ b/src/af/xap/gtk/xap_UnixFrameImpl.cpp
|
||||
@@ -1208,9 +1208,9 @@ gint XAP_UnixFrameImpl::_fe::delete_event(GtkWidget * w, GdkEvent * /*event*/, g
|
||||
}
|
||||
|
||||
#if GTK_CHECK_VERSION(3,0,0)
|
||||
-gint XAP_UnixFrameImpl::_fe::draw(GtkWidget * w, cairo_t * cr)
|
||||
+gboolean XAP_UnixFrameImpl::_fe::draw(GtkWidget * w, cairo_t * cr)
|
||||
#else
|
||||
-gint XAP_UnixFrameImpl::_fe::expose(GtkWidget * w, GdkEventExpose* pExposeEvent)
|
||||
+gboolean XAP_UnixFrameImpl::_fe::expose(GtkWidget * w, GdkEventExpose* pExposeEvent)
|
||||
#endif
|
||||
{
|
||||
XAP_UnixFrameImpl * pUnixFrameImpl = static_cast<XAP_UnixFrameImpl *>(g_object_get_data(G_OBJECT(w), "user_data"));
|
||||
@@ -1243,7 +1243,7 @@ gint XAP_UnixFrameImpl::_fe::expose(GtkWidget * w, GdkEventExpose* pExposeEvent)
|
||||
pView->draw(&rClip);
|
||||
#endif
|
||||
}
|
||||
- return FALSE;
|
||||
+ return TRUE;
|
||||
}
|
||||
|
||||
static bool bScrollWait = false;
|
||||
diff --git a/src/af/xap/gtk/xap_UnixFrameImpl.h b/src/af/xap/gtk/xap_UnixFrameImpl.h
|
||||
index 30ee5d8..a0ff57f 100644
|
||||
--- a/src/af/xap/gtk/xap_UnixFrameImpl.h
|
||||
+++ b/src/af/xap/gtk/xap_UnixFrameImpl.h
|
||||
@@ -152,9 +152,9 @@ class XAP_UnixFrameImpl : public XAP_FrameImpl
|
||||
static gint key_release_event(GtkWidget* w, GdkEventKey* e);
|
||||
static gint delete_event(GtkWidget * w, GdkEvent * /*event*/, gpointer /*data*/);
|
||||
#if GTK_CHECK_VERSION(3,0,0)
|
||||
- static gint draw(GtkWidget * w, cairo_t * cr);
|
||||
+ static gboolean draw(GtkWidget * w, cairo_t * cr);
|
||||
#else
|
||||
- static gint expose(GtkWidget * w, GdkEventExpose* pExposeEvent);
|
||||
+ static gboolean expose(GtkWidget * w, GdkEventExpose* pExposeEvent);
|
||||
#endif
|
||||
static gint do_ZoomUpdate( gpointer /* xap_UnixFrame * */ p);
|
||||
static void vScrollChanged(GtkAdjustment * w, gpointer /*data*/);
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
From 51787d61993cb3981c18e4cf174fc229734fba1e Mon Sep 17 00:00:00 2001
|
||||
From: Jean Brefort <jean.brefort@normalesup.org>
|
||||
Date: Sun, 6 Dec 2015 11:04:10 +0000
|
||||
Subject: [PATCH] Update python override code. Fixes #13745 and #13746, thanks
|
||||
to David Gutteridge.
|
||||
|
||||
git-svn-id: svn+ssh://svn.abisource.com/svnroot/abiword/trunk@35171 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
|
||||
---
|
||||
src/gi-overrides/Abi.py | 2 ++
|
||||
2 files changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/gi-overrides/Abi.py b/src/gi-overrides/Abi.py
|
||||
index 666fd61bf4..e3b61b9bf1 100644
|
||||
--- a/src/gi-overrides/Abi.py
|
||||
+++ b/src/gi-overrides/Abi.py
|
||||
@@ -1,4 +1,6 @@
|
||||
import sys
|
||||
+import gi
|
||||
+gi.require_version('Gtk', '3.0')
|
||||
from gi.repository import Gtk
|
||||
from ..overrides import override
|
||||
from ..importer import modules
|
||||
397
abiword.spec
397
abiword.spec
|
|
@ -1,37 +1,33 @@
|
|||
%define bigversion 3.0
|
||||
%define majorversion 3
|
||||
%define minorversion 0
|
||||
%define microversion 2
|
||||
%define svnver 0
|
||||
|
||||
%global forgeurl https://gitlab.gnome.org/World/AbiWord
|
||||
|
||||
Name: abiword
|
||||
Version: 3.0.7
|
||||
Release: 3%{?dist}
|
||||
%global tag release-%{version}
|
||||
%forgemeta
|
||||
|
||||
Epoch: 1
|
||||
Summary: Word processing program
|
||||
License: GPL-2.0-or-later
|
||||
URL: %{forgeurl}
|
||||
Name: abiword
|
||||
Version: %{majorversion}.%{minorversion}.%{microversion}
|
||||
Release: 19%{?dist}
|
||||
Epoch: 1
|
||||
License: GPLv2+
|
||||
URL: http://www.abisource.com/
|
||||
|
||||
Source0: %{forgesource}
|
||||
Source0: http://abisource.com/downloads/abiword/%{version}/source/abiword-%{version}.tar.gz
|
||||
Source1: http://abisource.com/downloads/abiword/%{version}/source/abiword-docs-%{version}.tar.gz
|
||||
Source11: abiword.mime
|
||||
Source12: abiword.keys
|
||||
Source13: abiword.xml
|
||||
|
||||
ExcludeArch: %{ix86}
|
||||
|
||||
Patch0: abiword-2.6.0-windowshelppaths.patch
|
||||
Patch1: abiword-2.8.3-desktop.patch
|
||||
Patch2: abiword-2.6.0-boolean.patch
|
||||
Patch3: abiword-3.0.0-librevenge.patch
|
||||
Patch4: abiword-3.0.2-explicit-python.patch
|
||||
Patch5: abiword-3.0.4-pygobject.patch
|
||||
Patch4: abiword-3.0.2-fix-black-drawing-regression.patch
|
||||
Patch5: abiword-3.0.2-explicit-python2.patch
|
||||
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: aiksaurus-devel
|
||||
BuildRequires: aiksaurus-gtk-devel
|
||||
BuildRequires: asio-devel
|
||||
# Needed while explicit-python.patch touches gi-overrides/Makefile.am
|
||||
BuildRequires: automake autoconf libtool autoconf-archive
|
||||
BuildRequires: bison
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: bzip2-devel
|
||||
|
|
@ -45,9 +41,7 @@ BuildRequires: gcc-c++
|
|||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: goffice-devel
|
||||
BuildRequires: gtk3-devel
|
||||
# Probably because it's gtk2 based
|
||||
#BuildRequires: gtkmathview-devel
|
||||
BuildRequires: libgcrypt-devel
|
||||
BuildRequires: gtkmathview-devel
|
||||
BuildRequires: libgsf-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: librevenge-devel
|
||||
|
|
@ -60,23 +54,19 @@ BuildRequires: libxslt-devel
|
|||
BuildRequires: link-grammar-devel
|
||||
BuildRequires: loudmouth-devel
|
||||
BuildRequires: ots-devel
|
||||
BuildRequires: pkgconf-pkg-config
|
||||
BuildRequires: pkgconfig(libwps-0.4)
|
||||
BuildRequires: poppler-devel
|
||||
BuildRequires: popt-devel
|
||||
BuildRequires: python3-gobject
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python2-gobject
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
BuildRequires: readline-devel
|
||||
BuildRequires: t1lib-devel
|
||||
BuildRequires: telepathy-glib-devel
|
||||
BuildRequires: wv-devel
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: libappstream-glib
|
||||
|
||||
Requires: libabiword = %{epoch}:%{version}-%{release}
|
||||
Requires: python3-gobject-base
|
||||
|
||||
%description
|
||||
AbiWord is a cross-platform Open Source word processor. It is full-featured,
|
||||
|
|
@ -98,39 +88,101 @@ Requires: libabiword = %{epoch}:%{version}-%{release}
|
|||
Includes and definitions for developing with libabiword.
|
||||
|
||||
|
||||
%package -n python3-abiword
|
||||
%{?python_provide:%python_provide python3-abiword}
|
||||
%package -n python2-abiword
|
||||
%{?python_provide:%python_provide python2-abiword}
|
||||
Summary: Python bindings for developing with libabiword
|
||||
Requires: libabiword = %{epoch}:%{version}-%{release}
|
||||
Obsoletes: pyabiword <= 0.8.0
|
||||
Provides: pyabiword > 0.8.0
|
||||
|
||||
%description -n python3-abiword
|
||||
%description -n python2-abiword
|
||||
Python bindings for developing with libabiword
|
||||
|
||||
|
||||
%prep
|
||||
# setup abiword
|
||||
%setup -qn AbiWord-release-%{version}
|
||||
%setup -q -a 1
|
||||
|
||||
# patch abiword
|
||||
%patch -P 1 -p1 -b .desktop
|
||||
%patch -P 2 -p1 -b .boolean
|
||||
%patch -P 3 -p0 -b .librevenge
|
||||
%patch -P 4 -p1 -b .explicit_python
|
||||
%patch -P 5 -p1 -b .pygo
|
||||
%patch1 -p1 -b .desktop
|
||||
%patch2 -p1 -b .boolean
|
||||
%patch3 -p0 -b .librevenge
|
||||
%patch4 -p1 -b .black
|
||||
%patch5 -p1 -b .explicit_python2
|
||||
|
||||
# setup abiword documentation
|
||||
cd abiword-docs-3.0.1
|
||||
%patch0 -p1 -b .windowshelppaths
|
||||
|
||||
%build
|
||||
# Needed while explicit-python.patch touches gi-overrides/Makefile.am
|
||||
./autogen.sh
|
||||
# build libabiword and abiword
|
||||
cd $RPM_BUILD_DIR/abiword-%{version}
|
||||
|
||||
export CXXFLAGS="-std=c++14 $RPM_OPT_FLAGS -DASIO_ENABLE_BOOST"
|
||||
%configure \
|
||||
--enable-plugins --enable-clipart --enable-templates --enable-introspection \
|
||||
--with-gir-dir=%{_datadir}/gir-1.0 --with-typelib-dir=%{_libdir}/girepository-1.0 \
|
||||
--enable-maintainer-mode
|
||||
%{make_build} V=1
|
||||
autoreconf -vif
|
||||
|
||||
%configure --enable-plugins --enable-clipart --enable-templates --enable-introspection
|
||||
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
# build the documentation
|
||||
cd abiword-docs-3.0.1
|
||||
ABI_DOC_PROG=$(pwd)/../%{name}-%{version}/src/abiword ./make-html.sh
|
||||
|
||||
%install
|
||||
%{make_install} overridesdir=%{python3_sitelib}/gi/overrides
|
||||
cd $RPM_BUILD_DIR/abiword-%{version}
|
||||
make install DESTDIR=%{buildroot}
|
||||
|
||||
# Register as an application to be visible in the software center
|
||||
#
|
||||
# NOTE: It would be *awesome* if this file was maintained by the upstream
|
||||
# project, translated and installed into the right place during `make install`.
|
||||
#
|
||||
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
|
||||
#
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
|
||||
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/%{name}.appdata.xml <<EOF
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright 2014 Richard Hughes <richard@hughsie.com> -->
|
||||
<!--
|
||||
BugReportURL: http://bugzilla.abisource.com/show_bug.cgi?id=13672
|
||||
SentUpstream: 2014-09-17
|
||||
-->
|
||||
<application>
|
||||
<id type="desktop">abiword.desktop</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<description>
|
||||
<p>
|
||||
AbiWord is a free word processing program similar to Microsoft® Word.
|
||||
It is suitable for a wide variety of word processing tasks.
|
||||
</p>
|
||||
<p>
|
||||
AbiWord allows you to collaborate with multiple people on one document at the
|
||||
same time.
|
||||
It is tightly integrated with the AbiCollab.net web service, which lets you
|
||||
store documents online, allows easy document sharing with your friends, and
|
||||
performs format conversions on the fly.
|
||||
</p>
|
||||
<!-- FIXME: Probably needs another paragraph -->
|
||||
</description>
|
||||
<url type="homepage">http://www.abisource.com/</url>
|
||||
<screenshots>
|
||||
<!-- FIXME: Needs an official up to date screenshot -->
|
||||
<screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/abiword/a.png</screenshot>
|
||||
<screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/abiword/b.png</screenshot>
|
||||
<screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/abiword/c.png</screenshot>
|
||||
</screenshots>
|
||||
<!-- FIXME: change this to an upstream email address for spec updates
|
||||
<updatecontact>someone_who_cares@upstream_project.org</updatecontact>
|
||||
-->
|
||||
</application>
|
||||
EOF
|
||||
|
||||
# install the documentation
|
||||
cd abiword-docs-3.0.1
|
||||
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name}-%{majorversion}.%{minorversion}/AbiWord/help
|
||||
cp -rp help/* $RPM_BUILD_ROOT/%{_datadir}/%{name}-%{majorversion}.%{minorversion}/AbiWord/help/
|
||||
# some of the help dirs have bad perms (#109261)
|
||||
find $RPM_BUILD_ROOT/%{_datadir}/%{name}-%{majorversion}.%{minorversion}/AbiWord/help/ -type d -exec chmod -c o+rx {} \;
|
||||
|
||||
install -p -m 0644 -D %{SOURCE11} $RPM_BUILD_ROOT%{_datadir}/mime-info/abiword.mime
|
||||
install -p -m 0644 -D %{SOURCE12} $RPM_BUILD_ROOT%{_datadir}/mime-info/abiword.keys
|
||||
|
|
@ -140,158 +192,42 @@ install -p -m 0644 -D %{SOURCE13} $RPM_BUILD_ROOT%{_datadir}/mime/packages/abiwo
|
|||
find %{buildroot} -name '*.la' -delete
|
||||
find %{buildroot} -name '*.a' -delete
|
||||
|
||||
mv %{buildroot}%{_datadir}/applications/abiword.desktop %{buildroot}%{_datadir}/applications/com.abisource.AbiWord.desktop
|
||||
|
||||
mkdir -p %{buildroot}%{_metainfodir}/
|
||||
mv %{buildroot}%{_datadir}/appdata/abiword.appdata.xml %{buildroot}%{_metainfodir}/
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/abiword.appdata.xml
|
||||
|
||||
%ldconfig_scriptlets -n libabiword
|
||||
|
||||
%files
|
||||
%{_bindir}/abiword
|
||||
%{_metainfodir}/abiword.appdata.xml
|
||||
%{_datadir}/appdata/*.appdata.xml
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_datadir}/mime-info/abiword.mime
|
||||
%{_datadir}/mime-info/abiword.keys
|
||||
%{_datadir}/mime/packages/abiword.xml
|
||||
%{_datadir}/icons/hicolor/*/apps/abiword.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/abiword.svg
|
||||
%{_mandir}/man1/abiword.1*
|
||||
# Abiword help
|
||||
%{_datadir}/%{name}-%{majorversion}.%{minorversion}/AbiWord
|
||||
%{_mandir}/man1/abiword.1.gz
|
||||
|
||||
%files -n libabiword
|
||||
%license COPYING COPYRIGHT.TXT
|
||||
%{_libdir}/libabiword-%{bigversion}.so
|
||||
%doc $RPM_BUILD_DIR/%{name}-%{version}/COPYING $RPM_BUILD_DIR/%{name}-%{version}/COPYRIGHT.TXT
|
||||
%{_libdir}/libabiword-%{majorversion}.%{minorversion}.so
|
||||
%{_libdir}/libAiksaurusGtk3*
|
||||
%{_libdir}/%{name}-%{bigversion}
|
||||
%{_libdir}/%{name}-%{majorversion}.%{minorversion}
|
||||
%{_libdir}/girepository-1.0/Abi-3.0.typelib
|
||||
%{_datadir}/%{name}-%{bigversion}
|
||||
%{_datadir}/%{name}-%{majorversion}.%{minorversion}
|
||||
%{_datadir}/dbus-1/services/org.freedesktop.Telepathy.Client.AbiCollab.service
|
||||
%{_datadir}/telepathy/clients/AbiCollab.client
|
||||
# Abiword help - included in GUI app
|
||||
%exclude %{_datadir}/%{name}-%{majorversion}.%{minorversion}/AbiWord
|
||||
|
||||
%files -n libabiword-devel
|
||||
%{_includedir}/%{name}-%{bigversion}
|
||||
%{_libdir}/pkgconfig/%{name}-%{bigversion}.pc
|
||||
%{_includedir}/%{name}-%{majorversion}.%{minorversion}
|
||||
%{_libdir}/pkgconfig/%{name}-%{majorversion}.%{minorversion}.pc
|
||||
%{_datadir}/gir-1.0/Abi-3.0.gir
|
||||
|
||||
%files -n python3-abiword
|
||||
%pycached %{python3_sitelib}/gi/overrides/Abi.py
|
||||
%files -n python2-abiword
|
||||
%{python2_sitearch}/*
|
||||
|
||||
%changelog
|
||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1:3.0.7-2
|
||||
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||
|
||||
* Wed Sep 03 2025 Gwyn Ciesla <gwync@protonmail.com> - 1:3.0.7-1
|
||||
- 3.0.7
|
||||
|
||||
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 1:3.0.5-21
|
||||
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 1:3.0.5-19
|
||||
- Rebuilt for Python 3.14
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Oct 22 2024 Gwyn Ciesla <gwync@protonmail.com> - 1:3.0.5-17
|
||||
- Fix desktop filename
|
||||
|
||||
* Tue Sep 24 2024 Gwyn Ciesla <gwync@protonmail.com> - 1:3.0.5-16
|
||||
- Fix metainfo
|
||||
|
||||
* Sun Sep 08 2024 Alexander Ploumistos <alexpl@fedoraproject.org> - 1:3.0.5-15
|
||||
- Rebuilt for goffice-0.10.57
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 1:3.0.5-13
|
||||
- Rebuilt for Python 3.13
|
||||
|
||||
* Wed Jan 31 2024 Gwyn Ciesla <gwync@protonmail.com> - 1:3.0.5-12
|
||||
- Add missing include
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Nov 04 2023 Gwyn Ciesla <gwync@protonmail.com> 1:3.0.5-9
|
||||
- Drop i386 on f40+
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 1:3.0.5-7
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Wed Mar 08 2023 Gwyn Ciesla <gwync@protonmail.com> - 1:3.0.5-6
|
||||
- migrated to SPDX license
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1:3.0.5-3
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Oct 23 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 1:3.0.5-1
|
||||
- Update to 3.0.5
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.4-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1:3.0.4-10
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.4-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.4-8
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Jeff Law <law@redhat.com> - 1:3.0.4-7
|
||||
- Force C++14 as the code is not ready for C++17
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1:3.0.4-5
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Sun Feb 2 2020 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.0.4-4
|
||||
- More packaging cleanups and fixes
|
||||
|
||||
* Wed Jan 29 2020 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.0.4-3
|
||||
- Packaging cleanups and fixes
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Nov 29 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.0.4-1
|
||||
- Update to 3.0.4
|
||||
- Move to python3 gobject introspection bindings
|
||||
- Disable gtkmathview plugins until requires issue is fixed
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.2-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:3.0.2-20
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Fri Feb 01 2019 Caolán McNamara <caolanm@redhat.com> - 1:3.0.2-19
|
||||
- Rebuilt for fixed libwmf soname
|
||||
|
||||
|
|
@ -432,3 +368,108 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/abiword.appdat
|
|||
|
||||
* Mon Oct 14 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.0.0-1
|
||||
- Update to 3.0.0 stable
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.8.6-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 1:2.8.6-23
|
||||
- Rebuild for boost 1.54.0
|
||||
|
||||
* Sun Feb 17 2013 Christoph Wickert <cwickert@fedoraproject.org> - 1:2.8.6-22
|
||||
- Make desktop file --vendor conditional
|
||||
- Remove obsolete category 'Applications" from desktop file
|
||||
|
||||
* Sat Feb 09 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 1:2.8.6-21
|
||||
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
|
||||
- clean up spec to follow current guidelines
|
||||
- remove obsolete and unapplied boolean patch
|
||||
|
||||
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1:2.8.6-20
|
||||
- rebuild due to "jpeg8-ABI" feature drop
|
||||
|
||||
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 1:2.8.6-19
|
||||
- rebuild against new libjpeg
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.8.6-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Feb 27 2012 Tom Callaway <spot@fedoraproject.org> - 1:2.8.6-17
|
||||
- fix build against modern glib, libpng
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.8.6-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1:2.8.6-15
|
||||
- Rebuild for new libpng
|
||||
|
||||
* Tue Aug 9 2011 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.6-14
|
||||
- rebuild with link-grammar now its back
|
||||
|
||||
* Tue Aug 2 2011 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.6-13
|
||||
- rebuild for new asio
|
||||
- drop obsolete OLPC and ARM includes
|
||||
|
||||
* Tue Aug 02 2011 Marc Maurer <uwog@abisource.com> - 1:2.8.6-12
|
||||
- Fix a typo in the previous patch
|
||||
|
||||
* Tue Aug 02 2011 Marc Maurer <uwog@abisource.com> - 1:2.8.6-11
|
||||
- Fix BZ 716005: --no-undefined is a linker flag, not a g++ flag
|
||||
|
||||
* Tue Aug 02 2011 Marc Maurer <uwog@abisource.com> - 1:2.8.6-10
|
||||
- Mixed up the microversion and the release
|
||||
|
||||
* Tue Aug 02 2011 Marc Maurer <uwog@abisource.com> - 1:2.8.6-9
|
||||
- Remove link-grammar from the BR and R until it is revived
|
||||
|
||||
* Thu May 05 2011 Chris Tyler <chris@tylers.info> - 1:2.8.6-8
|
||||
- Excluded asio-devel from ARM builds
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.8.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Dec 30 2010 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.6-6
|
||||
- Rebuild for library soname bumps
|
||||
|
||||
* Wed Dec 8 2010 Caolán McNamara <caolanm@redhat.com> - 1:2.8.6-5
|
||||
- Rebuild for libwpd 0.9
|
||||
|
||||
* Wed Dec 8 2010 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.6-4
|
||||
- Rebuild for library soname bumps
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 1:2.8.6-3
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Wed Sep 22 2010 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.6-2
|
||||
- Move abiword gui help from the library to the app. Fixes 578596
|
||||
|
||||
* Sat Aug 14 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.6-1
|
||||
- New upstream release
|
||||
|
||||
* Sat Jun 05 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.5-1
|
||||
- New upstream release
|
||||
|
||||
* Fri Apr 16 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.4-1
|
||||
- New upstream release
|
||||
|
||||
* Thu Apr 08 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.3-2
|
||||
- Update .desktop patch
|
||||
|
||||
* Thu Apr 08 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.3-1
|
||||
- New upstream release
|
||||
|
||||
* Tue Mar 02 2010 Marc Maurer <uwog@abisource.com> - 1:2.8.2-1
|
||||
- New upstream release
|
||||
- Package the man page
|
||||
|
||||
* Wed Dec 23 2009 Rahul Sundaram <sundaram@fedoraproject.org> -1:2.8.1-4
|
||||
- Rebuild again since the wv soname bump was accidental
|
||||
- Remove superflous BuildRoot definitions and removals
|
||||
|
||||
* Mon Dec 21 2009 Peter Robinson <pbrobinson@gmail.com> - 1:2.8.1-3
|
||||
- Rebuild against new libwv
|
||||
|
||||
* Sun Nov 01 2009 Marc Maurer <uwog@abisource.com> - 1:2.8.1-2
|
||||
- Rebuild
|
||||
|
||||
* Sun Nov 01 2009 Marc Maurer <uwog@abisource.com> - 1:2.8.1-1
|
||||
- New upstream release
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
|||
SHA512 (AbiWord-release-3.0.7.tar.bz2) = 8cd75bcef936e8db1f859a8685e44c60b6f23a61a3bd702f320fa931dd645c85e9c2e671f870b7873ed57f37f75de71888f8a261cc6c97a58edf7af2114c26b7
|
||||
cda6dd58c747c133b421cc7eb18f5796 abiword-3.0.2.tar.gz
|
||||
c92c0e1e2081db20757231a53d80c338 abiword-docs-3.0.2.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue