ledger/ledger.spec

283 lines
8.8 KiB
RPMSpec
Raw Normal View History

2014-12-23 21:22:34 +00:00
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
%global commit 720c03b139d251c53f9deef491f5953e2fdb97ca
Name: ledger
Version: 3.1
2014-12-23 21:22:34 +00:00
Release: 2%{?dist}
Summary: A powerful command-line double-entry accounting system
Group: Applications/Productivity
License: BSD
URL: http://ledger-cli.org/
Source0: https://github.com/ledger/ledger/archive/%{commit}/%{name}-%{version}.tar.gz
# A series of small commits from upstream that came shortly after the release
# of version 3.1, including a fix for FTBFS when building the documentation.
Patch1: %{name}-3.1-0001-Force-reconcile-to-use-scrubbed-values-incase-you-ar.patch
Patch2: %{name}-3.1-0002-Fix-texinfo-syntax-errors.patch
Patch3: %{name}-3.1-0003-BUILD_WEB_DOCS-implies-BUILD_DOCS.patch
Patch4: %{name}-3.1-0004-make-columns-default-to-terminal-width-as-returned-b.patch
Patch5: %{name}-3.1-0005-Typo-fix.patch
Patch6: %{name}-3.1-0006-Fix-numbers-from-example.patch
Patch7: %{name}-3.1-0007-Update-ledger3.texi.patch
Patch8: %{name}-3.1-0008-Update-ledger3.texi.patch
Patch9: %{name}-3.1-0009-Some-minor-changes.patch
BuildRequires: boost-devel
BuildRequires: cmake
BuildRequires: emacs(bin)
BuildRequires: gettext-devel
BuildRequires: gmp-devel
BuildRequires: libedit-devel
BuildRequires: mpfr-devel
BuildRequires: python-devel
BuildRequires: utf8cpp-devel
# For building documentation.
BuildRequires: doxygen
BuildRequires: graphviz
BuildRequires: man2html
BuildRequires: texinfo
BuildRequires: texlive-cm-super
BuildRequires: texlive-ec
BuildRequires: texlive-eurosym
BuildRequires: texinfo-tex
Requires(post): /sbin/ldconfig
2010-09-13 19:22:32 +00:00
Requires(postun): /sbin/ldconfig
Requires(post): info
Requires(preun): info
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 python
Summary: Python bindings for %{name}
Group: System Environment/Libraries
Requires: %{name} = %{version}-%{release}
%description python
Python bindings for ledger.
2010-09-13 19:22:32 +00:00
%package devel
Summary: Libraries and header files for %{name} development
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Libraries and header files for %{name} development.
2010-09-13 19:22:32 +00:00
%package -n emacs-%{name}
Summary: Emacs mode for %{name}
Requires: %{name} = %{version}-%{release}
Requires: emacs(bin) >= %{_emacs_version}
%description -n emacs-%{name}
Emacs mode for %{name}.
%package -n emacs-%{name}-el
Summary: Emacs elisp source for %{name}
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
Requires: emacs-%{name} = %{version}-%{release}
%description -n emacs-%{name}-el
This package contains the elisp source files for using %{name} under
emacs. You do not need to install this package; use
emacs-%{name} instead.
2010-09-13 19:22:32 +00:00
%prep
%setup -q -n %{name}-%{commit}
2014-05-04 11:56:53 +00:00
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
%patch7 -p1
%patch8 -p1
%patch9 -p1
2010-09-13 19:22:32 +00:00
%build
./acprep --prefix=%{_prefix} update
%cmake . \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DBUILD_WEB_DOCS=1 \
-DBUILD_EMACSLISP:BOOL=ON \
-DCMAKE_SKIP_RPATH:BOOL=ON \
-DUSE_PYTHON=ON
2010-09-13 19:22:32 +00:00
make %{?_smp_mflags}
make doc
# Build info files.
pushd doc
makeinfo ledger3.texi
makeinfo ledger-mode.texi
popd
2010-09-13 19:22:32 +00:00
%install
make install DESTDIR=%{buildroot}
# Bash completion
mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d
install -p -m0644 contrib/ledger-completion.bash \
%{buildroot}%{_sysconfdir}/bash_completion.d/ledger
# Install documentation manually
rm -rf %{buildroot}%{_docdir}
rm -rf %{buildroot}%{_infodir}/*
# Info files
cp -p doc/ledger3.info* %{buildroot}%{_infodir}
cp -p doc/ledger-mode.info %{buildroot}%{_infodir}
# Contrib scripts
2014-12-23 21:22:34 +00:00
mkdir -p %{buildroot}%{_pkgdocdir}/contrib
for i in bal bal-huquq entry getquote.pl getquote-uk.py ledger-du 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}
done
# Python example
2014-12-23 21:22:34 +00:00
mkdir -p %{buildroot}%{_pkgdocdir}/python
install -p -m0644 python/demo.py %{buildroot}%{_pkgdocdir}/python/demo.py
# Input samples
2014-12-23 21:22:34 +00:00
mkdir -p %{buildroot}%{_pkgdocdir}/samples
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}
done
%check
# Tests all fail when removing rpath.
# make check
2010-09-13 19:22:32 +00:00
%postun -p /sbin/ldconfig
%post
/sbin/ldconfig
install-info %{_infodir}/ledger3.info %{_infodir}/dir || :
install-info %{_infodir}/ledger-mode.info %{_infodir}/dir || :
2010-09-13 19:22:32 +00:00
%preun
if [ $1 = 0 ]; then
install-info --delete %{_infodir}/ledger3.info %{_infodir}/dir || :
install-info --delete %{_infodir}/ledger-mode.info %{_infodir}/dir || :
2010-09-13 19:22:32 +00:00
fi
2010-09-13 19:22:32 +00:00
%files
%doc README.md
%doc doc/GLOSSARY.md doc/LICENSE doc/NEWS
%doc doc/ledger3.html doc/ledger-mode.html
%doc doc/ledger3.pdf doc/ledger-mode.pdf
%{_bindir}/ledger
%{_infodir}/ledger3.info*
%{_infodir}/ledger-mode.info*
%{_libdir}/libledger.so.3
%{_mandir}/man1/ledger.1*
%config(noreplace) %{_sysconfdir}/bash_completion.d/ledger
2010-09-13 19:22:32 +00:00
%files -n emacs-%{name}
%dir %{_emacs_sitelispdir}/ledger-mode
%{_emacs_sitelispdir}/ledger-mode/*.elc
2010-09-13 19:22:32 +00:00
%files -n emacs-%{name}-el
%dir %{_emacs_sitelispdir}/ledger-mode
%{_emacs_sitelispdir}/ledger-mode/*.el
2010-09-13 19:22:32 +00:00
%files python
%{python2_sitearch}/ledger.so
2010-09-13 19:22:32 +00:00
%files devel
%{_includedir}/ledger
%{_libdir}/libledger.so
2010-09-13 19:22:32 +00:00
%changelog
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
* 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
* 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
* 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
* 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
* 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)
* 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
* 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
* 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
* 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
* 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
* 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
* 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
* 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