Accepting request 78572 from GNOME:Apps
Update to 2.4.1 (forwarded request 78010 from dimstar) OBS-URL: https://build.opensuse.org/request/show/78572 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnucash-docs?expand=0&rev=10
This commit is contained in:
parent
0c4f90671b
commit
b213702aa3
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7cbe9f571921d299b61688628f956e99debf44a878f45180654ddfdd21140774
|
||||
size 9604362
|
3
gnucash-docs-2.4.1.tar.gz
Normal file
3
gnucash-docs-2.4.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28517368a77786b2a31b568fa3a8fd5b159bf0776deee52a51af8658c43c8221
|
||||
size 34037913
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 4 14:00:18 CEST 2011 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 2.4.1:
|
||||
+ Allow control over scrollkeeper omf file installation using
|
||||
--disable-scrollkeeper as configure parameter.
|
||||
+ Other buildsystem fixes.
|
||||
- Clean spec-file using spec-cleaner.
|
||||
- Use grep -E instead of egrep to fix a rpmlint warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 27 14:51:46 CEST 2007 - sbrabec@suse.cz
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gnucash-docs (Version 2.2.0)
|
||||
# spec file for package gnucash-docs
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -15,20 +15,22 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: gnucash-docs
|
||||
BuildRequires: fdupes kdelibs3-doc scrollkeeper sgml-skel
|
||||
# Only for directory ownership:
|
||||
BuildRequires: libgnome
|
||||
Version: 2.2.0
|
||||
Release: 176
|
||||
Version: 2.4.1
|
||||
Release: 1
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1) ; GPLv2+
|
||||
Summary: Documentation Module for GnuCash
|
||||
Url: http://www.gnucash.org/
|
||||
Group: Productivity/Office/Finance
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GPL v2 or later
|
||||
Summary: Documentation Module for GnuCash
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Source: http://downloads.sourceforge.net/project/gnucash/gnucash-docs/2.4.1/%{name}-%{version}.tar.gz
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: kdelibs3-doc
|
||||
# Only for directory ownership:
|
||||
BuildRequires: libgnome
|
||||
BuildRequires: scrollkeeper
|
||||
BuildRequires: sgml-skel
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
||||
@ -39,46 +41,25 @@ currency trades. The interface is designed to be simple and easy to
|
||||
use, but is backed with double-entry accounting principles to ensure
|
||||
balanced books. This is the documentation module for GnuCash.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Chris Lyttle <chris@wilddev.net>
|
||||
Christian Stimmings <stimming@tuhh.de>
|
||||
Bengt Thuree <bengt@thuree.com>
|
||||
Dave Herman <dvherman@bigfoot.com>
|
||||
Patrick Schweiger <pks@spiffykitty.com>
|
||||
David Hampton <hampton@employees.org>
|
||||
Neil Williams <linux@codehelp.co.uk>
|
||||
Jon Lapham <lapham@extracta.com.br>
|
||||
Carol Champagne <carol@io.com>
|
||||
Linas Vepstas <linas@linas.org>
|
||||
Christopher Browne <gnucash@cbbrowne.com>
|
||||
Bill Gribble <grib@billgribble.com>
|
||||
Robert Graham Merkel <rgmerk@mira.net>
|
||||
Glen Ditchfield <gjditchfield@acm.org>
|
||||
Eric Hanchrow <offby1@blarg.net>
|
||||
James A. Treacy <treacy@debian.org>
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?jobs:-j%jobs}
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
for xml in $RPM_BUILD_ROOT%{_datadir}/gnome/help/*/*/*.xml; do
|
||||
if echo $xml | egrep 'share/gnome/help/([^/]*)/[^/]*/\1\.xml$' > /dev/null; then
|
||||
for xml in %{buildroot}%{_datadir}/gnome/help/*/*/*.xml; do
|
||||
if echo $xml | grep -E 'share/gnome/help/([^/]*)/[^/]*/\1\.xml$' > /dev/null; then
|
||||
meinproc --check --cache `echo $xml | sed 's/xml$/cache.bz2/'` $xml || :
|
||||
fi
|
||||
done
|
||||
%find_lang gnucash
|
||||
%fdupes $RPM_BUILD_ROOT%{_datadir}
|
||||
%fdupes %{buildroot}%{_datadir}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files -f gnucash.lang
|
||||
%defattr(-,root,root)
|
||||
@ -86,10 +67,3 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/omf/gnucash-docs
|
||||
|
||||
%changelog
|
||||
* Fri Jul 27 2007 sbrabec@suse.cz
|
||||
- Updated to version 2.2.0:
|
||||
* Documents gnucash 2.2.0.
|
||||
* Thu Mar 08 2007 jhargadon@suse.de
|
||||
- removed Requires: yelp (#250500)
|
||||
* Fri Feb 16 2007 sbrabec@suse.cz
|
||||
- New SuSE package, version 2.0.1 (#231168),
|
||||
|
Loading…
Reference in New Issue
Block a user