Accepting request 106589 from home:vuntz:branches:GNOME:Factory
Update to 3.3.4 OBS-URL: https://build.opensuse.org/request/show/106589 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gedit?expand=0&rev=112
This commit is contained in:
committed by
Git OBS Bridge
parent
e2da771e95
commit
b3b59a8cd6
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ad4bd60f3cd705deab6bc530fbd61f623f18dc4459dae63a1184971af176e679
|
|
||||||
size 2942088
|
|
3
gedit-3.3.4.tar.xz
Normal file
3
gedit-3.3.4.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dddd7f2028fa1241ea5d842653fbad299ac9bb31de1ffcf5a1b8912f4e315149
|
||||||
|
size 2957088
|
@@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 23 07:10:33 UTC 2012 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.3.4:
|
||||||
|
+ Fix many memory leaks
|
||||||
|
+ Use Yelp Tools for docs generation
|
||||||
|
+ Docs updates
|
||||||
|
+ Misc bugfixes
|
||||||
|
+ Updated translations.
|
||||||
|
- Change gnome-doc-utils-devel BuildRequires to yelp-tools,
|
||||||
|
following the build system change for user documentation.
|
||||||
|
- Manually list the translated help documents as %find_lang doesn't
|
||||||
|
support the new XDG help system yet.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 19 16:51:21 UTC 2012 - dimstar@opensuse.org
|
Sun Feb 19 16:51:21 UTC 2012 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
24
gedit.spec
24
gedit.spec
@@ -17,8 +17,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gedit
|
Name: gedit
|
||||||
Version: 3.3.3
|
Version: 3.3.4
|
||||||
Release: 0
|
Release: 0
|
||||||
|
# FIXME: the %%{_datadir}/help/$locale/ files be found by %%find_lang
|
||||||
Summary: Small and lightweight UTF-8 text editor
|
Summary: Small and lightweight UTF-8 text editor
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Productivity/Text/Editors
|
Group: Productivity/Text/Editors
|
||||||
@@ -29,12 +30,12 @@ Patch0: gedit-desktop.patch
|
|||||||
BuildRequires: enchant-devel
|
BuildRequires: enchant-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: gnome-doc-utils-devel
|
|
||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
BuildRequires: iso-codes-devel
|
BuildRequires: iso-codes-devel
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
|
BuildRequires: yelp-tools
|
||||||
BuildRequires: pkgconfig(gsettings-desktop-schemas)
|
BuildRequires: pkgconfig(gsettings-desktop-schemas)
|
||||||
BuildRequires: pkgconfig(gtksourceview-3.0)
|
BuildRequires: pkgconfig(gtksourceview-3.0)
|
||||||
BuildRequires: pkgconfig(ice)
|
BuildRequires: pkgconfig(ice)
|
||||||
@@ -94,10 +95,18 @@ make %{?jobs:-j%jobs} V=1
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
%suse_update_desktop_file -N gedit -G "Text Editor" gedit TextEditor
|
|
||||||
%find_lang %{name} %{?no_lang_C}
|
|
||||||
rm %{buildroot}%{_libdir}/*/*/*.*a
|
rm %{buildroot}%{_libdir}/*/*/*.*a
|
||||||
rm %{buildroot}%{_libdir}/*.la
|
rm %{buildroot}%{_libdir}/*.la
|
||||||
|
%suse_update_desktop_file -N gedit -G "Text Editor" gedit TextEditor
|
||||||
|
%find_lang %{name} %{?no_lang_C}
|
||||||
|
# Localized help
|
||||||
|
for help in %{buildroot}%{_datadir}/help/*/%{name}/; do
|
||||||
|
LOCALE=`echo $help | sed "s:.*%{_datadir}/help/\([^/]*\)/%{name}/:\1:g"`
|
||||||
|
echo "%%lang($LOCALE) %%dir %%{_datadir}/help/$LOCALE" >> %{name}.help-lang.tmp
|
||||||
|
echo "%%lang($LOCALE) %%doc /${help##%{buildroot}}" >> %{name}.help-lang.tmp
|
||||||
|
done
|
||||||
|
sort -u %{name}.help-lang.tmp | grep -v "^%%lang(C)" > %{name}.help-lang
|
||||||
|
rm %{name}.help-lang.tmp
|
||||||
%fdupes %{buildroot}
|
%fdupes %{buildroot}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@@ -116,10 +125,7 @@ rm -rf %{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%doc AUTHORS BUGS ChangeLog COPYING MAINTAINERS NEWS README
|
%doc AUTHORS BUGS ChangeLog COPYING MAINTAINERS NEWS README
|
||||||
%dir %{_datadir}/gnome/
|
%doc %{_datadir}/help/C/%{name}/
|
||||||
%dir %{_datadir}/gnome/help/
|
|
||||||
%dir %{_datadir}/gnome/help/%{name}/
|
|
||||||
%doc %{_datadir}/gnome/help/%{name}/C/
|
|
||||||
%{_bindir}/gedit
|
%{_bindir}/gedit
|
||||||
%{_bindir}/gnome-text-editor
|
%{_bindir}/gnome-text-editor
|
||||||
%{_datadir}/applications/*.desktop
|
%{_datadir}/applications/*.desktop
|
||||||
@@ -168,7 +174,7 @@ rm -rf %{buildroot}
|
|||||||
%{py_sitedir}/gi/overrides/Gedit.py*
|
%{py_sitedir}/gi/overrides/Gedit.py*
|
||||||
%doc %{_mandir}/man1/gedit*
|
%doc %{_mandir}/man1/gedit*
|
||||||
|
|
||||||
%files lang -f %{name}.lang
|
%files lang -f %{name}.lang -f %{name}.help-lang
|
||||||
|
|
||||||
%files plugin-zeitgeist
|
%files plugin-zeitgeist
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
|
Reference in New Issue
Block a user