Version 1.0beta2:

* Bugfix:
  Finally found the correct solution for adding/removing catalog
  entries in the spec file
* Enhancement: webhelp suppport

OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/daps?expand=0&rev=80
This commit is contained in:
Frank Sundermeyer 2012-03-15 10:17:42 +00:00 committed by Git OBS Bridge
parent fc2e98f6b1
commit c23bccfb66
5 changed files with 20 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d125d1d3a6dd41c2a8dda81580a13bb244e53bebb61d103a8b1e1aabed3cb9ba
size 863196

3
daps-1.0beta2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33c0d9edcf15d3bba24a65da62ba9d2ae35c4f2dd80b96614f15d47ad2315790
size 1308579

View File

@ -14,7 +14,7 @@
NAME=daps
VERSION=
SPECFILE=${NAME}.spec
SVNPATH=https://svn.code.sf.net/p/daps/svn/trunk/daps
SVNPATH=svn://svn.code.sf.net/p/daps/svn/trunk/daps
TMPDIR=$(mktemp -q -d --tmpdir daps_XXXXXXXX)
EXCLUDES=${TMPDIR}/${NAME}/packaging/exclude-files_for_daps_package.txt

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Mar 15 10:12:39 UTC 2012 - fsundermeyer@opensuse.org
Version 1.0beta2:
* Bugfix:
Finally found the correct solution for adding/removing catalog
entries in the spec file
* Enhancement: webhelp suppport
-------------------------------------------------------------------
Wed Mar 7 15:54:22 UTC 2012 - fsundermeyer@opensuse.org

View File

@ -17,7 +17,7 @@
Name: daps
Version: 1.0beta1
Version: 1.0beta2
Release: 0
%define docbuilddir %{_datadir}/daps
@ -212,12 +212,17 @@ exit 0
%postun
#
# delete catalog entry for daps profiling
# only run if package is really uninstalled ($1 = 0) and not
# in case of an update
#
if [ 0 = $1 ]; then
if [ -x /usr/bin/edit-xml-catalog ] ; then
edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \
--del %{name}
fi
%run_suseconfig_fonts
fi
exit 0
#----------------------