Compare commits

..

No commits in common. "rawhide" and "f37" have entirely different histories.

5 changed files with 164 additions and 331 deletions

5
.gitignore vendored
View file

@ -8,8 +8,3 @@
/xmlada-gpl-2018-20180524-src.tar.gz /xmlada-gpl-2018-20180524-src.tar.gz
/xmlada-2019-20190429-19B9D-src.tar.gz /xmlada-2019-20190429-19B9D-src.tar.gz
/xmlada-2020-20200429-19A99-src.tar.gz /xmlada-2020-20200429-19A99-src.tar.gz
/xmlada-22.0.0.tar.gz
/xmlada-23.0.0.tar.gz
/xmlada-24.0.0.tar.gz
/xmlada-25.0.0.tar.gz
/xmlada-26.0.0.tar.gz

View file

@ -1 +1 @@
SHA512 (xmlada-26.0.0.tar.gz) = b97f7727df52229f8e76ab169f4b42b9b82b20c82555607d65455f6cb7836c83219017a45b832de38b348e595f5a68d0987e3c568293b45fc285ffdc3ec3aa01 SHA512 (xmlada-2020-20200429-19A99-src.tar.gz) = e53dd1fba504d2aa91ce29ea381c62adea12c5d8c72cd87396b903143279456cc6547c18035f6e988e95bd93607360075789532378f33cbe23bef9b49c8d984c

View file

@ -0,0 +1,63 @@
diff --git a/unicode/xmlada_unicode.gpr b/unicode/xmlada_unicode.gpr
index 8a5a2ac..290cfe6 100644
--- a/unicode/xmlada_unicode.gpr
+++ b/unicode/xmlada_unicode.gpr
@@ -37,4 +37,8 @@ project XmlAda_Unicode is
package Binder renames Shared.Binder;
package Ide renames Shared.Ide;
+ package Install is
+ for Sources_Subdir use "./include/xmlada/" & Project'Library_Name;
+ end Install;
+
end XmlAda_Unicode;
diff --git a/dom/xmlada_dom.gpr b/dom/xmlada_dom.gpr
index 5c156ab..f6d37f6 100644
--- a/dom/xmlada_dom.gpr
+++ b/dom/xmlada_dom.gpr
@@ -39,4 +39,7 @@ project XmlAda_Dom is
package Binder renames Shared.Binder;
package Ide renames Shared.Ide;
+ package Install is
+ for Sources_Subdir use "./include/xmlada/" & Project'Library_Name;
+ end Install;
end XmlAda_Dom;
diff --git a/input_sources/xmlada_input.gpr b/input_sources/xmlada_input.gpr
index 7602590..329bdad 100644
--- a/input_sources/xmlada_input.gpr
+++ b/input_sources/xmlada_input.gpr
@@ -39,6 +39,7 @@ project XmlAda_Input is
package Ide renames Shared.Ide;
package Install is
+ for Sources_Subdir use "./include/xmlada/" & Project'Library_Name;
for Artifacts ("share/doc/xmlada")
use ("../docs/_build/html/*", "../docs/_build/latex/XMLAda.pdf");
for Artifacts ("lib/gnat") use ("../distrib/xmlada.gpr");
diff --git a/sax/xmlada_sax.gpr b/sax/xmlada_sax.gpr
index f4d74ac..c146d79 100644
--- a/sax/xmlada_sax.gpr
+++ b/sax/xmlada_sax.gpr
@@ -39,4 +39,8 @@ project XmlAda_Sax is
package Binder renames Shared.Binder;
package Ide renames Shared.Ide;
+ package Install is
+ for Sources_Subdir use "./include/xmlada/" & Project'Library_Name;
+ end Install;
+
end XmlAda_Sax;
diff --git a/schema/xmlada_schema.gpr b/schema/xmlada_schema.gpr
index 4688847..62dee2f 100644
--- a/schema/xmlada_schema.gpr
+++ b/schema/xmlada_schema.gpr
@@ -40,4 +40,8 @@ project XmlAda_Schema is
package Binder renames Shared.Binder;
package Ide renames Shared.Ide;
+ package Install is
+ for Sources_Subdir use "./include/xmlada/" & Project'Library_Name;
+ end Install;
+
end XmlAda_Schema;

View file

@ -1,9 +0,0 @@
with "xmlada_unicode";
with "xmlada_sax";
with "xmlada_input";
with "xmlada_dom";
with "xmlada_schema";
project Xmlada is
for Source_Dirs use ();
end Xmlada;

View file

@ -1,79 +1,55 @@
# This package has a bootstrap build mode that can be used to create a source ### global bootstrap_arch %{GPRbuild_arches}
# code package for bootstrapping GPRbuild. See the 'gprbuild' spec file for more %global bootstrap_arch no_bootstraping
# information.
%bcond_with bootstrap
# Upstream source information. ## Set this variable to %{GPRbuild_arches} for bootraping of
%global upstream_owner AdaCore ## gprbuild on new architecture or in case of new magor verion of
%global upstream_name xmlada ## gcc-gnat package
%global upstream_version 26.0.0
%global upstream_commit 5e5b761eb827f458efd2043a5e9ab03e1a614720
Name: xmlada Name: xmlada
Epoch: 2 Version: 2020
Version: %{upstream_version} Release: 8%{?dist}
Release: 5%{?dist}
Summary: XML library for Ada Summary: XML library for Ada
License: GPLv3+
URL: http://libre.adacore.com
## Direct download link is unavailable
## http://libre.adacore.com/libre/download/
Source0: xmlada-2020-20200429-19A99-src.tar.gz
## Fedora-specific
Patch2: %{name}-2016-gprinstall.patch
License: GPL-3.0-or-later WITH GCC-exception-3.1 AND Unicode-DFS-2016
# XML/Ada itself is licensed under GPL v3 or later with a runtime exception. The
# Unicode license is mentioned as Unicode data files were used as an input for
# generating some of XML/Ada's source code.
URL: https://github.com/%{upstream_owner}/%{upstream_name}
Source0: %{url}/archive/%{upstream_commit}.tar.gz#/%{upstream_name}-%{upstream_version}.tar.gz
# XML/Ada's aggregate project file. This project file is normally generated and BuildRequires: make
# installed by GPRinstall, but as we'll install each XML/Ada component %ifnarch %{bootstrap_arch}
# separately, we need to maintain and install it manually. BuildRequires: gprbuild > 2018-10
Source1: xmlada.gpr BuildRequires: gcc-gnat
BuildRequires: fedora-gnat-project-common >= 2
BuildRequires: make
%if %{without bootstrap}
BuildRequires: gcc-gnat gprbuild sed
BuildRequires: fedora-gnat-project-common
BuildRequires: python3-sphinx
BuildRequires: python3-sphinx-latex
BuildRequires: python3-sphinx_rtd_theme
%else
BuildRequires: findutils
%endif %endif
# Build only on architectures where GPRbuild is available.
ExclusiveArch: %{GPRbuild_arches} ExclusiveArch: %{GPRbuild_arches}
%global common_description_en \
XML/Ada includes support for parsing XML files, including DTDs, full support for \
SAX, and an almost complete support for the core part of the DOM. It includes \
support for validating XML files with XML schemas.
%description %{common_description_en} %description
XML/Ada includes support for parsing XML files, including DTDs,
full support for SAX,
################# and an almost complete support for the core part of the DOM.
## Subpackages ## It includes support for validating XML files with XML schemas.
#################
%if %{without bootstrap}
%ifnarch %{bootstrap_arch}
%package devel %package devel
Summary: Development files for the XML/Ada library Summary: XML library for Ada devel package
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: fedora-gnat-project-common Requires: fedora-gnat-project-common >= 2
Recommends: %{name}-doc
%description devel %{common_description_en} %description devel
Xml library for ada devel package.
This package contains source code and linking information for developing
applications that use the XML/Ada library.
%package static %package static
Summary: Static libraries of XML/Ada Summary: XML library for Ada, static libraries
Requires: %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release} Requires: %{name}-devel%{?_isa} = %{version}-%{release}
%description static %{common_description_en}
%description static
This package contains the XML/Ada libraries for static linking. It is needed This package contains the XML/Ada libraries for static linking. It is needed
for linking GPRbuild statically so that GPRbuild will remain functional when for linking GPRbuild statically so that GPRbuild will remain functional when
libraries are upgraded. libraries are upgraded.
@ -81,300 +57,108 @@ libraries are upgraded.
Other Fedora packages shall require xmlada-devel rather than xmlada-static if Other Fedora packages shall require xmlada-devel rather than xmlada-static if
possible. possible.
%package doc
Summary: Documentation for the XML/Ada library
BuildArch: noarch
License: AdaCore-doc AND MIT AND BSD-2-Clause
# License for the documentation is AdaCore-doc. The Javascript and CSS files
# that Sphinx includes with the documentation are BSD 2-Clause and MIT-licensed.
Requires: font(fontawesome)
Requires: font(lato)
Requires: font(robotoslab)
# Fonts are required by the Read the Docs Sphinx theme.
%description doc %{common_description_en}
This package contains the documentation in HTML and PDF, and some examples.
%else %else
# When bootstrapping gprbuild, only a package that contains source code is
# produced, so a debug package is not needed.
%global debug_package %{nil} %global debug_package %{nil}
%package sources %package sources
Summary: Sources of the XML/Ada library (for bootstrapping GPRbuild) Summary: Source of XMLada for bootstrapping
BuildArch: noarch
%description sources %{common_description_en} %description sources
On architectures without gprbuild installs sources for gprbuild's bootstrap
This package contains source code for bootstrapping GPRbuild on architectures
on which GPRbuild is not yet available.
%endif %endif
#############
## Prepare ##
#############
%prep %prep
%autosetup -C -p1 %setup -q -n xmlada-2020-20200429-19A99-src
# Set version number.
sed --in-place --expression 's/18.0w/%{version}/' configure configure.in
###########
## Build ##
###########
%build %build
%if %{without bootstrap} %ifnarch %{bootstrap_arch}
%configure --enable-build=distrib --enable-shared %configure --disable-rpath --enable-shared --disable-static --enable-build=distrib
make shared static GPROPTS="%{Gnatmake_optflags}" prefix=%{buildroot}/%{_prefix}
# Build the libraries.
%{make_build} shared static-pic GPROPTS='%{GPRbuild_flags}'
# Make the documentation.
make -C docs html latexpdf
%else %else
%{configure} --enable-build=distrib %configure --enable-static --enable-build=distrib
%endif %endif
#############
## Install ##
#############
%install %install
%if %{without bootstrap} %ifnarch %{bootstrap_arch}
###export GPRINSTALL_OPTS="--build-name=relocatable --lib-subdir=%{buildroot}/%{_libdir}/%{name} --link-lib-subdir=%{buildroot}/%{_libdir} --sources-subdir=%{buildroot}/%{_includedir}/%{name}"
export GPRINSTALL_OPTS="--lib-subdir=%{buildroot}/%{_libdir} --link-lib-subdir=%{buildroot}/%{_libdir}"
## Install the shared libraries first and then the static ones, because
## apparently the variant that gprinstall sees first becomes the default in the
## project files.
make install-relocatable install-static prefix=%{buildroot}/%{_prefix} GPROPTS="${GPRINSTALL_OPTS}" PSUB="share/gpr"
# Verify that the ALI files of both builds (relocatable and static-pic) match. ## Revoke exec permissions
# The verfication is necessary as GPRinstall will overwrite the ALI files during find %{buildroot} -name '*.gpr' -exec chmod -x {} \;
# the installation of the static-pic build (which is installed after the find %{buildroot}%{_docdir} -type f -exec chmod -x {} \;
# relocatable build). ## Delete old bash script (not needed now)
for component_dir in dom schema unicode sax input_sources ; do rm -f %{buildroot}%{_bindir}/xmlada-config
diff --exclude "*.a" --exclude "*.so*" --exclude ".cvsignore" \ install -d -m 0755 %{buildroot}/%{_libdir}/%{name}/static/
%{_builddir}/%{name}-%{version}/${component_dir}/lib/relocatable \ ## There is not GNAT programming studio in Fedora
%{_builddir}/%{name}-%{version}/${component_dir}/lib/static-pic ## To enable GPS plugin delete this string and create subpackage
done rm -f %{buildroot}/%{_datadir}/gps/plug-ins/%{name}_gps.py*
rm -f %{buildroot}/%{_libdir}/%{name}/static/*
# Install each component. ## These Sphinx-generated files aren't needed in the package:
function run_gprinstall { rm %{buildroot}%{_pkgdocdir}/{.buildinfo,objects.inv}
local libtype=$1
local component=$2
local directory=$3 # directory name in the source tree
%{GPRinstall -s xmlada/${component}} \
--build-var=LIBRARY_TYPE --build-var=XMLADA_BUILD \
--build-name=${libtype} -XLIBRARY_TYPE=${libtype} \
-P ${directory}/%{name}_${component}.gpr
}
for libtype in relocatable static-pic ; do
for component in dom schema unicode sax ; do
run_gprinstall ${libtype} ${component} ${component}
done
# The "input" component needs special treatment as its dirname in the source
# tree ("input_sources") is not reflected in its GNAT project file
# ("xmlada_input.gpr").
run_gprinstall ${libtype} input input_sources
done
# Install the aggregate project file ("xmlada.gpr").
install --mode=u=rw,go=r,a-s --preserve-timestamps \
%{SOURCE1} --target-directory=%{buildroot}%{_GNAT_project_dir}
# Fix up the symbolic links for the shared libraries.
for component in dom input_sources schema unicode sax ; do
ln --symbolic --force lib%{name}_${component}.so.%{version} \
%{buildroot}%{_libdir}/lib%{name}_${component}.so
done
# Move examples to the _pkgdocdir and remove the remaining empty directory.
mv --no-target-directory %{buildroot}%{_datadir}/examples/%{name} \
%{buildroot}%{_pkgdocdir}/examples
rmdir %{buildroot}%{_datadir}/examples
# Make the generated project files architecture-independent.
for component in dom input schema unicode sax ; do
sed --regexp-extended --in-place \
'--expression=1i with "directories";' \
'--expression=/^-- This project has been generated/d' \
'--expression=s|^( *for +Source_Dirs +use +).*;$|\1(Directories.Includedir \& "/'%{name}/${component}'");|i' \
'--expression=s|^( *for +Library_Dir +use +).*;$|\1Directories.Libdir;|i' \
'--expression=s|^( *for +Library_ALI_Dir +use +).*;$|\1Directories.Libdir \& "/'%{name}'";|i' \
%{buildroot}%{_GNAT_project_dir}/%{name}_${component}.gpr
# The Sed commands are:
# 1: Insert a with clause before the first line to import the directories
# project.
# 2: Delete a comment that mentions the architecture.
# 3: Replace the value of Source_Dirs with a pathname based on
# Directories.Includedir.
# 4: Replace the value of Library_Dir with Directories.Libdir.
# 5: Replace the value of Library_ALI_Dir with a pathname based on
# Directories.Libdir.
done
mkdir -p %{buildroot}/%{_datarootdir}/%{name}
mv %{buildroot}/%{_datarootdir}/examples %{buildroot}/%{_datarootdir}/%{name}
## GPRinstall's manifest files are architecture-specific because they contain
## what seems to be checksums of architecture-specific files, so they must not
## be under _datadir. Their function is apparently undocumented, but my crystal
## ball tells me that they're used when GPRinstall uninstalls or upgrades
## packages. The manifest file is therefore irrelevant in this RPM package, so
## delete it.
rm -rf %{buildroot}%{_GNAT_project_dir}/manifests
%else %else
mkdir -p %{buildroot}/%{_includedir}/%{name}/sources
# Copy the source files. cp -r . %{buildroot}/%{_includedir}/%{name}/sources
mkdir --parents %{buildroot}%{_includedir}/%{name}/sources find %{buildroot}/%{_includedir}/%{name}/sources -type f ! -name "*ad[sb]" ! -name "*gpr" -delete
cp -r . %{buildroot}%{_includedir}/%{name}/sources find %{buildroot}/%{_includedir}/%{name}/sources -type d -empty -delete
find %{buildroot}%{_includedir}/%{name}/sources -type f ! -name "*ad[sb]" ! -name "*gpr" -delete
find %{buildroot}%{_includedir}/%{name}/sources -type d -empty -delete
%endif %endif
###########
## Files ##
###########
%if %{without bootstrap}
%files %files
%license COPYING3 COPYING.RUNTIME %license COPYING*
%doc README* TODO AUTHORS %doc README.md TODO AUTHORS
%{_libdir}/lib%{name}*.so.%{version} %ifnarch %{bootstrap_arch}
%files devel
%{_GNAT_project_dir}/%{name}*.gpr
%{_includedir}/%{name}
%dir %{_libdir}/%{name} %dir %{_libdir}/%{name}
%dir %{_libdir}/%{name}/static
%{_libdir}/lib%{name}_dom.so.*
%{_libdir}/lib%{name}_input_sources.so.*
%{_libdir}/lib%{name}_schema.so.*
%{_libdir}/lib%{name}_unicode.so.*
%{_libdir}/lib%{name}_sax.so.*
%{_libdir}/%{name}/lib%{name}*.so.*
%endif
%ifnarch %{bootstrap_arch}
%files devel
%{_includedir}/%{name}
%{_GNAT_project_dir}/%{name}*.gpr
%attr(444,-,-) %{_libdir}/%{name}/*.ali %attr(444,-,-) %{_libdir}/%{name}/*.ali
%{_libdir}/%{name}/lib%{name}*.so
%{_libdir}/lib%{name}*.so %{_libdir}/lib%{name}*.so
%files static
%{_libdir}/lib%{name}*.a
%files doc
%dir %{_pkgdocdir}
%{_pkgdocdir}/*.html %{_pkgdocdir}/*.html
%{_pkgdocdir}/searchindex.js %{_pkgdocdir}/searchindex.js
%{_pkgdocdir}/_sources %{_pkgdocdir}/_sources
%{_pkgdocdir}/_static %{_pkgdocdir}/_static
%{_pkgdocdir}/XMLAda.pdf %{_pkgdocdir}/XMLAda.pdf
%{_pkgdocdir}/examples %{_datarootdir}/%{name}
# Exclude Sphinx-generated files that aren't needed in the package.
%exclude %{_pkgdocdir}/.buildinfo
%exclude %{_pkgdocdir}/objects.inv %files static
%{_libdir}/%{name}/*.a
%else %else
%files sources %files sources
%{_includedir}/%{name} %{_includedir}/%{name}
%endif %endif
###############
## Changelog ##
###############
%changelog %changelog
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2:26.0.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Sun May 10 2026 Björn Persson <Bjorn@Rombobjörn.se> - 2:26.0.0-4
- Rebuilt because GCC broke ALI again.
* Sat Mar 28 2026 Björn Persson <Bjorn@Rombobjörn.se> - 2:26.0.0-3
- Rebuilt because GCC 16.0.1-0.10 broke ALI.
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2:26.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Tue Dec 23 2025 Dennis van Raaij <dvraaij@fedoraproject.org> - 2:26.0.0-1
- Updated to v26.0.0.
* Fri Aug 08 2025 Björn Persson <Bjorn@Rombobjörn.se> - 2:25.0.0-7
- Rebuilt because the ALI of System.OS_Constants changed.
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2:25.0.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2:25.0.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Wed Jan 15 2025 Björn Persson <Bjorn@Rombobjörn.se> - 2:25.0.0-4
- Rebuilt with another GCC 15 prerelease.
* Mon Jan 13 2025 Björn Persson <Bjorn@Rombobjörn.se> - 2:25.0.0-3
- Rebuilt with GCC 15 prerelease.
* Wed Dec 04 2024 Pavel Zhukov <landgraf@fedoraproject.org> - 2:25.0.0-2
- Disable bootstrap
* Sun Oct 27 2024 Dennis van Raaij <dvraaij@fedoraproject.org> - 2:25.0.0-1
- Updated to v25.0.0.
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2:24.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Sun Jan 28 2024 Dennis van Raaij <dvraaij@fedoraproject.org> - 2:24.0.0-1
- Updated to v24.0.0.
- Generated HTML-documentation now uses the 'Read the Docs' Sphinx theme.
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2:23.0.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Tue Jan 16 2024 Björn Persson <Bjorn@Rombobjörn.se> - 2:23.0.0-4
- Rebuilt with GCC 14 prerelease.
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2:23.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Mon Mar 13 2023 Björn Persson <Bjorn@Rombobjörn.se> - 2:23.0.0-2
- Set a minimum version of fedora-gnat-project-common.
- Simplified the install section a bit.
* Tue Feb 14 2023 Dennis van Raaij <dvraaij@fedoraproject.org> - 2:23.0.0-1
- Updated to v23.0.0, using the archive available on GitHub.
- Removed backport patch for improved Unicode support.
- Removed fix for file permissions; has been fixed upstream (commit: 9e1bd23).
- Removed patch gprbuild-gprinstall-relocate-artifacts.patch; move files after
GPRinstall has run.
- Moved the documentation back to where is was until version 2:22.0.0.
* Sun Feb 12 2023 Dennis van Raaij <dvraaij@fedoraproject.org> - 2:22.0.0-1
- Updated to v22.0.0, using the archive available on GitHub.
- Changed the epoch to mark the new upstream version scheme.
- Changed the epoch to 2 instead of 1 for consistency with the GNATcoll
packages.
- Updated the license, a runtime exception has now been added.
- Added new build dependencies to build the documentation with Sphinx and LaTeX.
- Examples are now located in _pkgdocdir/examples.
- License field now contains an SPDX license expression.
- Added the Unicode license to cover all code that has been generated using
Unicode data.
- Removed some post-install steps that are no longer required.
- Static libraries are now build position independent (PIC).
- Fix permission errors in the prep step; these are source packaging errors.
- Updated some summaries and descriptions.
- Improved spec file readability.
- Marked the source package as architecture independent.
- Removed empty directory '_libdir/static'; it seems to have no purpose.
- Moved all libraries from '_libdir/xmlada' to '_libdir'.
- Fix up the symbolic links for the shared libraries.
- Moved documentation and examples into a separate package.
- Made the generated project files architecture-independent.
- Added a build dependency on sed, removed the explicit version dependency on
GPRbuild.
- Bootstrap mode can now be enabled via a configuration option.
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2020-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Tue Jan 17 2023 Björn Persson <Bjorn@Rombobjörn.se> - 2020-9
- Rebuilt with GCC 13.
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2020-8 * Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2020-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
@ -507,7 +291,7 @@ find %{buildroot}%{_includedir}/%{name}/sources -type d -empty -delete
* Sun Mar 15 2015 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-10 * Sun Mar 15 2015 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-10
- Create unversioned symlinks - Create unversioned symlinks
* Sat Feb 14 2015 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-9 * Sat Feb 14 2015 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-9
- Rebuild with new gcc 4.9 - Rebuild with new gcc 4.9
@ -524,7 +308,7 @@ find %{buildroot}%{_includedir}/%{name}/sources -type d -empty -delete
- aarch64 now has Ada - aarch64 now has Ada
* Sun Apr 20 2014 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-4 * Sun Apr 20 2014 Pavel Zhukov <landgraf@fedoraproject.org> - 2013-4
- Rebuild for new gcc - Rebuild for new gcc
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013-3 * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild