2014-12-23 21:22:34 +00:00
|
|
|
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
|
|
2019-10-30 10:20:42 +00:00
|
|
|
%global commit 2ca3d6992ffb4a3546a0451808bd9bd2969c82ff
|
2019-10-25 14:22:07 +00:00
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
|
|
2014-04-27 17:05:42 +00:00
|
|
|
Name: ledger
|
2019-10-25 14:22:07 +00:00
|
|
|
Version: 3.1.3
|
2019-10-30 10:20:42 +00:00
|
|
|
Release: 1.20191030git2ca3d69%{?dist}
|
2014-04-27 17:05:42 +00:00
|
|
|
Summary: A powerful command-line double-entry accounting system
|
|
|
|
License: BSD
|
|
|
|
URL: http://ledger-cli.org/
|
2019-10-25 14:22:07 +00:00
|
|
|
Source0: https://github.com/ledger/ledger/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
|
2017-07-15 20:24:17 +00:00
|
|
|
|
2014-04-27 17:05:42 +00:00
|
|
|
BuildRequires: boost-devel
|
|
|
|
BuildRequires: cmake
|
2018-07-31 11:23:23 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc-c++
|
2014-04-27 17:05:42 +00:00
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: gmp-devel
|
|
|
|
BuildRequires: libedit-devel
|
|
|
|
BuildRequires: mpfr-devel
|
|
|
|
BuildRequires: utf8cpp-devel
|
|
|
|
|
|
|
|
# For building documentation.
|
2014-11-06 16:26:11 +00:00
|
|
|
BuildRequires: doxygen
|
2014-04-27 17:05:42 +00:00
|
|
|
BuildRequires: graphviz
|
|
|
|
BuildRequires: man2html
|
|
|
|
BuildRequires: texinfo
|
|
|
|
BuildRequires: texlive-cm-super
|
|
|
|
BuildRequires: texlive-ec
|
|
|
|
BuildRequires: texlive-eurosym
|
|
|
|
BuildRequires: texinfo-tex
|
|
|
|
|
2019-03-04 16:52:28 +00:00
|
|
|
# Obsolete the python2-ledger subpackage rhbz#1629493
|
|
|
|
Obsoletes: python2-ledger < 3.1.1-22
|
|
|
|
|
2010-09-13 19:22:32 +00:00
|
|
|
%description
|
|
|
|
Ledger is a powerful, double-entry accounting system that is accessed
|
|
|
|
from the UNIX command-line. This may put off some users — as there is
|
|
|
|
no flashy UI — but for those who want unparalleled reporting access to
|
|
|
|
their data, there really is no alternative.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Libraries and header files for %{name} development
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description devel
|
2014-05-04 16:39:04 +00:00
|
|
|
Libraries and header files for %{name} development.
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%prep
|
2019-10-25 14:22:07 +00:00
|
|
|
%autosetup -n %{name}-%{commit}
|
2016-01-24 14:58:55 +00:00
|
|
|
# Avoid texinfo errors on EL7.
|
|
|
|
%if 0%{?rhel} == 7
|
|
|
|
sed -i -e 's#FIXME:UNDOCUMENTED#FIXMEUNDOCUMENTED#g' doc/ledger3.texi
|
|
|
|
%endif
|
2019-10-25 14:22:07 +00:00
|
|
|
rm -r lib/utfcpp
|
2014-04-27 17:05:42 +00:00
|
|
|
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%build
|
2014-04-27 17:05:42 +00:00
|
|
|
%cmake . \
|
2019-10-25 14:22:07 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
|
|
|
-DUSE_PYTHON:BOOL=OFF \
|
|
|
|
-DUSE_DOXYGEN:BOOL=ON \
|
|
|
|
-DBUILD_WEB_DOCS:BOOL=ON
|
2016-06-05 13:36:53 +00:00
|
|
|
|
2019-10-25 14:22:07 +00:00
|
|
|
%make_build
|
|
|
|
%__make doc
|
2014-04-27 17:05:42 +00:00
|
|
|
|
|
|
|
# Build info files.
|
|
|
|
pushd doc
|
|
|
|
makeinfo ledger3.texi
|
|
|
|
popd
|
|
|
|
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%install
|
2019-10-25 14:22:07 +00:00
|
|
|
%make_install
|
2010-09-13 19:22:32 +00:00
|
|
|
|
2014-05-04 18:12:33 +00:00
|
|
|
# Bash completion
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d
|
|
|
|
install -p -m0644 contrib/ledger-completion.bash \
|
|
|
|
%{buildroot}%{_sysconfdir}/bash_completion.d/ledger
|
|
|
|
|
2015-07-29 01:10:14 +00:00
|
|
|
# Install documentation manually to a convenient directory layout
|
2014-04-27 17:05:42 +00:00
|
|
|
rm -rf %{buildroot}%{_docdir}
|
|
|
|
rm -rf %{buildroot}%{_infodir}/*
|
|
|
|
|
2014-05-04 18:12:33 +00:00
|
|
|
# Info files
|
2014-04-27 17:05:42 +00:00
|
|
|
cp -p doc/ledger3.info* %{buildroot}%{_infodir}
|
|
|
|
|
2014-05-04 18:12:33 +00:00
|
|
|
# Contrib scripts
|
2014-12-23 21:22:34 +00:00
|
|
|
mkdir -p %{buildroot}%{_pkgdocdir}/contrib
|
2016-01-24 14:58:55 +00:00
|
|
|
for i in bal bal-huquq entry getquote.pl getquote-uk.py ledger-du ParseCcStmt.cs README repl.sh report tc ti to trend; do
|
2014-12-23 21:22:34 +00:00
|
|
|
install -p -m0644 contrib/${i} %{buildroot}%{_pkgdocdir}/contrib/${i}
|
2014-05-04 18:12:33 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# Input samples
|
2014-12-23 21:22:34 +00:00
|
|
|
mkdir -p %{buildroot}%{_pkgdocdir}/samples
|
2014-05-04 18:12:33 +00:00
|
|
|
for i in demo.ledger drewr3.dat drewr.dat sample.dat wow.dat; do
|
2014-12-23 21:22:34 +00:00
|
|
|
install -p -m0644 test/input/${i} %{buildroot}%{_pkgdocdir}/samples/${i}
|
2014-05-04 18:12:33 +00:00
|
|
|
done
|
|
|
|
|
2019-10-30 10:20:42 +00:00
|
|
|
# Tests are disabled for the time being since they seem to require Python 2
|
|
|
|
#%%check
|
2014-04-27 17:05:42 +00:00
|
|
|
# Tests all fail when removing rpath.
|
2019-10-30 10:20:42 +00:00
|
|
|
#LD_LIBRARY_PATH=$PWD %__make check
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%files
|
2019-10-25 14:22:07 +00:00
|
|
|
%doc README.md doc/GLOSSARY.md doc/NEWS.md
|
|
|
|
%doc doc/ledger3.html
|
|
|
|
%doc doc/ledger3.pdf
|
2015-07-29 01:10:14 +00:00
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=728959
|
|
|
|
# These must be explicitly listed.
|
|
|
|
%doc %{_pkgdocdir}/contrib
|
|
|
|
%doc %{_pkgdocdir}/samples
|
2014-04-27 17:05:42 +00:00
|
|
|
%{_bindir}/ledger
|
|
|
|
%{_infodir}/ledger3.info*
|
|
|
|
%{_libdir}/libledger.so.3
|
|
|
|
%{_mandir}/man1/ledger.1*
|
2014-05-04 18:12:33 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/bash_completion.d/ledger
|
2016-01-24 14:58:55 +00:00
|
|
|
%license LICENSE.md
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%files devel
|
2014-04-27 17:05:42 +00:00
|
|
|
%{_includedir}/ledger
|
|
|
|
%{_libdir}/libledger.so
|
|
|
|
|
2010-09-13 19:22:32 +00:00
|
|
|
|
|
|
|
%changelog
|
2019-10-30 10:20:42 +00:00
|
|
|
* Wed Oct 30 2019 Jani Juhani Sinervo <jani@sinervo.fi> - 3.1.3-1.20191030git2ca3d69
|
|
|
|
- Update docs
|
|
|
|
- Remove python 2 dependence
|
|
|
|
- Disable tests because of their dependence on python 2
|
|
|
|
|
2019-10-25 14:22:07 +00:00
|
|
|
* Fri Oct 25 2019 Jani Juhani Sinervo <jani@sinervo.fi> - 3.1.3-1.20191025git49b07a1
|
|
|
|
- Update to version 3.1.3
|
|
|
|
- emacs-ledger and emacs-ledger-el have been separated from the main tree
|
|
|
|
- Enable tests
|
|
|
|
|
2019-10-10 01:53:58 +00:00
|
|
|
* Wed Oct 9 2019 Jerry James <loganjerry@gmail.com> - 3.1.1-24
|
|
|
|
- Rebuild for mpfr 4
|
|
|
|
|
2019-07-25 12:35:05 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-04 16:52:28 +00:00
|
|
|
* Mon Mar 04 2019 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.1.1-22
|
|
|
|
- Obsolete the python2-ledger subpackage rhbz#1629493
|
|
|
|
|
2019-02-01 06:28:20 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 07:40:06 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-20
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-10 20:51:58 +00:00
|
|
|
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 3.1.1-19
|
|
|
|
- Rebuild for ICU 62
|
|
|
|
|
2018-05-02 01:48:26 +00:00
|
|
|
* Wed May 02 2018 Pete Walter <pwalter@fedoraproject.org> - 3.1.1-18
|
|
|
|
- Rebuild for ICU 61.1
|
|
|
|
|
2018-05-01 16:05:02 +00:00
|
|
|
* Tue May 01 2018 Jonathan Wakely <jwakely@redhat.com> - 3.1.1-17
|
|
|
|
- Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29
|
|
|
|
|
2018-04-30 19:32:09 +00:00
|
|
|
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 3.1.1-16
|
|
|
|
- Rebuild for ICU 61.1
|
|
|
|
|
2018-02-07 22:59:28 +00:00
|
|
|
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 3.1.1-15
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-07 20:59:07 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-30 20:28:51 +00:00
|
|
|
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 3.1.1-13
|
|
|
|
- Rebuild for ICU 60.1
|
|
|
|
|
2017-08-20 14:35:31 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.1.1-12
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-19 13:38:32 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.1.1-11
|
|
|
|
- Python 2 binary package renamed to python2-ledger
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-10 16:08:50 +00:00
|
|
|
* Thu Aug 10 2017 Iliana Weller <ilianaw@buttslol.net> - 3.1.1-10
|
|
|
|
- Rebuilt after F27 rebuild stabilization
|
|
|
|
|
2017-08-03 01:03:10 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-15 20:24:17 +00:00
|
|
|
* Wed Jul 26 2017 Iliana Weller <ilianaw@buttslol.net> - 3.1.1-8
|
|
|
|
- Apply patch to fix builds on boost 1.61+ (#1423835)
|
|
|
|
|
2017-07-26 18:21:54 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-24 12:28:17 +00:00
|
|
|
* Mon Jul 24 2017 Björn Esser <besser82@fedoraproject.org> - 3.1.1-6
|
|
|
|
- Rebuilt for Boost 1.64
|
|
|
|
|
2017-02-10 18:13:49 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-07-19 07:36:01 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-4
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-04-15 18:13:17 +00:00
|
|
|
* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 3.1.1-3
|
|
|
|
- rebuild for ICU 57.1
|
|
|
|
|
2016-02-04 02:44:54 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-24 14:58:55 +00:00
|
|
|
* Sun Jan 24 2016 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.1.1-1
|
|
|
|
- update to upstream release 3.1.1
|
|
|
|
|
2016-01-18 21:53:45 +00:00
|
|
|
* Mon Jan 18 2016 Jonathan Wakely <jwakely@redhat.com> - 3.1-10
|
|
|
|
- Rebuilt for Boost 1.60
|
|
|
|
|
2015-10-28 13:08:10 +00:00
|
|
|
* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 3.1-9
|
|
|
|
- rebuild for ICU 56.1
|
|
|
|
|
2015-08-27 19:55:55 +00:00
|
|
|
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 3.1-8
|
|
|
|
- Rebuilt for Boost 1.59
|
|
|
|
|
2015-07-27 21:14:46 +00:00
|
|
|
* Mon Jul 27 2015 Adam Williamson <awilliam@redhat.com> - 3.1-7
|
2015-07-29 01:10:14 +00:00
|
|
|
- add patches from jwakely to fix build with Boost 1.58
|
|
|
|
- fix pkgdocdir usage
|
2015-07-27 21:14:46 +00:00
|
|
|
|
|
|
|
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com>
|
2015-07-22 16:48:22 +00:00
|
|
|
- rebuild for Boost 1.58
|
|
|
|
|
2015-06-17 14:02:45 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-02 13:07:54 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.1-5
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-01-26 22:33:18 +00:00
|
|
|
* Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 3.1-4
|
|
|
|
- Rebuild for boost 1.57.0
|
|
|
|
|
2015-01-26 15:58:12 +00:00
|
|
|
* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 3.1-3
|
|
|
|
- rebuild for ICU 54.1
|
|
|
|
|
2014-12-23 21:22:34 +00:00
|
|
|
* Tue Dec 23 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.1-2
|
|
|
|
- add conditional macro for _pkgdocdir
|
|
|
|
|
2014-11-06 16:26:11 +00:00
|
|
|
* Tue Nov 04 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.1-1
|
|
|
|
- update to upstream release 3.1
|
|
|
|
|
2014-08-26 11:57:25 +00:00
|
|
|
* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 3.0.2-10
|
|
|
|
- rebuild for ICU 53.1
|
|
|
|
|
2014-08-17 01:45:42 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 02:11:56 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-23 11:15:37 +00:00
|
|
|
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 3.0.2-7
|
|
|
|
- Rebuild for boost 1.55.0
|
|
|
|
|
2014-05-23 09:30:07 +00:00
|
|
|
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 3.0.2-6
|
|
|
|
- rebuild for boost 1.55.0
|
|
|
|
|
2014-05-04 18:12:33 +00:00
|
|
|
* Sun May 04 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.0.2-5
|
|
|
|
- include useful scripts from contrib/
|
|
|
|
- include more sample files
|
|
|
|
- include example python script (demo.py)
|
|
|
|
- add bash completion
|
|
|
|
|
2014-05-04 16:39:04 +00:00
|
|
|
* Sun May 04 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.0.2-4
|
|
|
|
- add ledger-python subpackage with Python bindings
|
|
|
|
- remove BR: doxygen for now (until jQuery is packaged)
|
|
|
|
|
2014-05-04 13:08:54 +00:00
|
|
|
* Sun May 04 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.0.2-3
|
|
|
|
- revert upstream commit aa2ff2b5 which caused a regression
|
|
|
|
|
2014-05-04 11:56:53 +00:00
|
|
|
* Sun Apr 27 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.0.2-2
|
|
|
|
- fix @node pointer errors in Info files resulting in broken navigation
|
|
|
|
|
2014-04-27 17:05:42 +00:00
|
|
|
* Sun Apr 27 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 3.0.2-1
|
|
|
|
- update to upstream release 3.0.2
|
|
|
|
- remove EL6 related macros
|
|
|
|
- update URL
|
|
|
|
- use specific commit hash to obtain sources from GitHub
|
|
|
|
- update BuildRequires and build using CMake
|
|
|
|
- build HTML/PDF documentation
|
|
|
|
- revert a patch from upstream that requires boost 1.55 (not yet available
|
|
|
|
on Fedora)
|
|
|
|
- libamounts now known as libledger
|
|
|
|
- use man page that is now built by upstream
|
|
|
|
|
2013-08-03 04:26:04 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-9.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 03:49:25 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-8.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-19 18:57:03 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-7.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-02-10 14:18:15 +00:00
|
|
|
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 2.6.3-6.2
|
|
|
|
- Rebuild against PCRE 8.30
|
|
|
|
|
2012-01-13 07:11:26 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-5.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-10-21 07:43:45 +00:00
|
|
|
* Fri Oct 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.3-4.2
|
|
|
|
- rebuild with new gmp without compat lib
|
|
|
|
|
2011-10-11 23:25:57 +00:00
|
|
|
* Wed Oct 12 2011 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-4.1
|
|
|
|
- rebuild with new gmp
|
|
|
|
|
2011-02-08 04:01:10 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-09-29 21:36:17 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 2.6.3-3
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-13 19:22:32 +00:00
|
|
|
* Tue Jul 6 2010 Jim Radford <radford@blackbean.org> - 2.6.3-2
|
|
|
|
- Only support emacs until someone tests xemacs
|
|
|
|
|
|
|
|
* Tue Jul 6 2010 Jim Radford <radford@blackbean.org> - 2.6.3-1
|
|
|
|
- Upgrade to 2.6.2
|
|
|
|
|
|
|
|
* Thu Jan 1 2009 Jim Radford <radford@blackbean.org> - 2.6.1-1
|
|
|
|
- Initial release
|