SHA256
1
0
forked from pool/gimp-help

Accepting request 57085 from GNOME:Apps

Accepted submit request 57085 from user dimstar

OBS-URL: https://build.opensuse.org/request/show/57085
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gimp-help?expand=0&rev=10
This commit is contained in:
Berthold Gunreben 2011-01-07 12:56:20 +00:00 committed by Git OBS Bridge
parent 07037a5ecd
commit abfb02b52a
3 changed files with 8 additions and 90 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Dec 30 19:35:03 UTC 2010 - aj@suse.de
- Own some more directories.
- Remove pre_checkin.sh, it's not used anymore.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 3 00:20:03 CET 2008 - maw@suse.de Mon Nov 3 00:20:03 CET 2008 - maw@suse.de

View File

@ -1016,6 +1016,8 @@ rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog NEWS README TERMINOLOGY %doc AUTHORS COPYING ChangeLog NEWS README TERMINOLOGY
%dir %{_datadir}/gimp/
%dir %{_datadir}/gimp/2.0
%dir %{_datadir}/gimp/2.0/help %dir %{_datadir}/gimp/2.0/help
%dir %{_datadir}/gimp/2.0/help/images %dir %{_datadir}/gimp/2.0/help/images
%dir %{_datadir}/gimp/2.0/help/images/*[^g] %dir %{_datadir}/gimp/2.0/help/images/*[^g]
@ -1087,54 +1089,3 @@ rm -rf $RPM_BUILD_ROOT
%lang(sv) %{_datadir}/gimp/2.0/help/sv %lang(sv) %{_datadir}/gimp/2.0/help/sv
%changelog %changelog
* Mon Nov 03 2008 maw@suse.de
- package dirs correctly; fix build
* Fri Oct 24 2008 maw@suse.de
- Update to version 2.4.2:
+ Bugs fixed: bgo#515535, bgo#529924, bgo#546324, bgo#550551,
bgo#551082
+ Updated translations.
* Tue Jul 22 2008 sbrabec@suse.cz
- Updated to version 2.4.1 (bnc#406692):
* documentation for GIMP 2.4
* new translations
* bug fixes
- Split translations per locale.
* Fri Feb 16 2007 aj@suse.de
- Do not run parallel make since the package build might break.
* Thu Jan 11 2007 sbrabec@suse.cz
- Prefix changed to /usr.
- Spec file cleanup.
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Wed Jan 18 2006 sbrabec@suse.cz
- Updated to version 0.9.
* Mon Jan 09 2006 ro@suse.de
- fix typo in specfile
* Thu Jan 05 2006 sbrabec@suse.cz
- Use Enhances covering both GIMP branches.
* Mon Aug 15 2005 sbrabec@suse.cz
- Require gimp-2.0 virtual instead of gimp.
* Wed Aug 03 2005 sbrabec@suse.cz
- Updated to version 0.8.
- Build as noarch.
* Mon Feb 21 2005 sbrabec@suse.cz
- Updated to version 0.6.
* Mon Aug 09 2004 ro@suse.de
- update to version gimp-help-2-0.4
* Wed Apr 07 2004 hhetter@suse.de
- provide C -> en symlink (#37519)
* Tue Mar 23 2004 sbrabec@suse.cz
- Fixed GIMP2 paths.
* Fri Feb 27 2004 hhetter@suse.de
- cvs checkout 20040227
- update neededforbuild for prober stylesheet and dtd
* Mon Feb 23 2004 ro@suse.de
- renamed to gimp-help
* Fri Feb 20 2004 ro@suse.de
- gimp2 package has been renamed to gimp
* Fri Nov 07 2003 ke@suse.de
- Provide proper TextDecl for externally parsed entities. For background
info cf. http://bugzilla.gnome.org/show_bug.cgi?id=126351 .
* Thu Sep 11 2003 sbrabec@suse.cz
- Added preliminary help package for gimp2 (bug #30085).

View File

@ -1,39 +0,0 @@
#!/bin/bash
# Update needed Update PDB according to package status:
# If you want to sync packages in PDB with the latest tarball, comment out this "exit 0":
#
# You should be sure that you backported all proofreads and PDB changes
# to gimp-help-update-spec.sh and tat you already called
# gimp-help-update-spec.sh!
#
exit 0
if test -f gimp-help-AUTHORS ; then
AUTHORS="$(<gimp-help-AUTHORS)"
fi
exec <gimp-help.spec
while read PACKAGE_STR PKG ; do
if test "$PACKAGE_STR" != "%package" ; then
continue
fi
read SUMMARY_STR SUMMARY
read GROUP_STR GROUP
# TRICK: pdb-commandline cannot handle '@' in the package name. Use wildcard '?' instead:
TPKG=${PKG/@/?}
if test -z "$(pdb query --filter gimp-help-$TPKG --release stable)" ; then
pdb request --action branch --filter gimp-help --release stable --newname gimp-help-$PKG --comment "Split package for new locale."
fi
if test "$(pdb query --filter "gimp-help-$TPKG" --release stable --attribs label.english --format "%s" )" != "$SUMMARY" ; then
pdb change --filter "gimp-help-$TPKG" --release stable --attrib "label.english" --new "$SUMMARY"
fi
if test -f gimp-help-AUTHORS ; then
if test "$(pdb query --filter "gimp-help-$TPKG" --release stable --attribs authornameemail --format "%s" )" != "$AUTHORS" ; then
pdb change --filter "gimp-help-$TPKG" --release stable --attrib "authornameemail" --new "$AUTHORS"
fi
fi
if test "$(pdb query --filter "gimp-help-$TPKG" --release stable --attribs group --format "%s" )" != "$GROUP" ; then
pdb change --filter "gimp-help-$TPKG" --release stable --attrib "group" --new "$GROUP"
fi
done