Accepting request 519779 from GNOME:Next
Resub, now with less werror OBS-URL: https://build.opensuse.org/request/show/519779 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/bijiben?expand=0&rev=72
This commit is contained in:
parent
b37db12598
commit
d5e0d65c4b
@ -14,10 +14,34 @@ Fri Aug 11 08:09:45 UTC 2017 - zaitor@opensuse.org
|
|||||||
+ Removed warning about .Trash folder missing.
|
+ Removed warning about .Trash folder missing.
|
||||||
+ Updated translations.
|
+ Updated translations.
|
||||||
- Drop upstream fixed patches:
|
- Drop upstream fixed patches:
|
||||||
|
+ bijiben-fix-redundant-decls-error.patch.
|
||||||
+ bijiben-fix-missing-break-in-case-statement.patch.
|
+ bijiben-fix-missing-break-in-case-statement.patch.
|
||||||
+ bijiben-fix-i586-longint.patch.
|
+ bijiben-fix-i586-longint.patch.
|
||||||
+ bijiben-remove-warning-about-Trash-folder.patch.
|
+ bijiben-remove-warning-about-Trash-folder.patch.
|
||||||
+ bijiben-memo-provider-crash-opening-memo.patch.
|
+ bijiben-memo-provider-crash-opening-memo.patch.
|
||||||
|
- Stop passing --disable-Werror to configure, no longer needed.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 29 12:24:07 UTC 2017 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Add yet a upstream commit to
|
||||||
|
bijiben-fix-redundant-decls-error.patch: Add a missing include.
|
||||||
|
- Use sed to replace tracker-sparql-1.0 with tracker-sparql-2.0
|
||||||
|
BuildRequires.
|
||||||
|
- Pass --disable-Werror to configure, needed to fix build with new
|
||||||
|
glib2, add fixme to remove it on next version update.
|
||||||
|
- Drop post(un) handling: Remove obsolete
|
||||||
|
glib2_gsettings_schema_post(un), icon_theme_cache_post(un),
|
||||||
|
desktop_database_post(un) and mime_database_post(un) calls, we
|
||||||
|
have filetriggers to take care of this now.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 12 10:22:37 UTC 2017 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Add bijiben-fix-redundant-decls-error.patch: Fix build with new
|
||||||
|
version of glib (bgo#783878).
|
||||||
|
- Following the above, add libtool BuildRequires and pass
|
||||||
|
autoreconf as the patch touches the buildsystem.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 16 08:27:09 UTC 2017 - zaitor@opensuse.org
|
Fri Jun 16 08:27:09 UTC 2017 - zaitor@opensuse.org
|
||||||
|
20
bijiben.spec
20
bijiben.spec
@ -27,6 +27,7 @@ Group: Productivity/Text/Editors
|
|||||||
Url: https://live.gnome.org/Bijiben
|
Url: https://live.gnome.org/Bijiben
|
||||||
Source: http://download.gnome.org/sources/bijiben/3.24/%{name}-%{version}.tar.xz
|
Source: http://download.gnome.org/sources/bijiben/3.24/%{name}-%{version}.tar.xz
|
||||||
BuildRequires: intltool >= 0.50.1
|
BuildRequires: intltool >= 0.50.1
|
||||||
|
BuildRequires: libtool
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
BuildRequires: yelp-tools
|
BuildRequires: yelp-tools
|
||||||
BuildRequires: pkgconfig(gio-unix-2.0)
|
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||||
@ -38,7 +39,7 @@ BuildRequires: pkgconfig(libecal-1.2)
|
|||||||
BuildRequires: pkgconfig(libecal-1.2) >= 3.13.90
|
BuildRequires: pkgconfig(libecal-1.2) >= 3.13.90
|
||||||
BuildRequires: pkgconfig(libedataserver-1.2) >= 3.13.90
|
BuildRequires: pkgconfig(libedataserver-1.2) >= 3.13.90
|
||||||
BuildRequires: pkgconfig(libxml-2.0)
|
BuildRequires: pkgconfig(libxml-2.0)
|
||||||
BuildRequires: pkgconfig(tracker-sparql-1.0)
|
BuildRequires: pkgconfig(tracker-sparql-2.0)
|
||||||
BuildRequires: pkgconfig(uuid)
|
BuildRequires: pkgconfig(uuid)
|
||||||
BuildRequires: pkgconfig(webkit2gtk-4.0) >= 2.10.0
|
BuildRequires: pkgconfig(webkit2gtk-4.0) >= 2.10.0
|
||||||
%if %{with_zeitgeist}
|
%if %{with_zeitgeist}
|
||||||
@ -67,11 +68,14 @@ search results from documents.
|
|||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
sed -i 's:tracker-sparql-1.0:tracker-sparql-2.0:g' configure.ac
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
autoreconf -fiv
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-update-mimedb
|
--disable-update-mimedb \
|
||||||
|
%{nil}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -80,18 +84,6 @@ find %{buildroot} -type f -name '*.la' -delete -print
|
|||||||
%suse_update_desktop_file org.gnome.bijiben DesktopUtility
|
%suse_update_desktop_file org.gnome.bijiben DesktopUtility
|
||||||
%find_lang %{name} %{?no_lang_C}
|
%find_lang %{name} %{?no_lang_C}
|
||||||
|
|
||||||
%post
|
|
||||||
%glib2_gsettings_schema_post
|
|
||||||
%icon_theme_cache_post
|
|
||||||
%desktop_database_post
|
|
||||||
%mime_database_post
|
|
||||||
|
|
||||||
%postun
|
|
||||||
%glib2_gsettings_schema_postun
|
|
||||||
%icon_theme_cache_postun
|
|
||||||
%desktop_database_postun
|
|
||||||
%mime_database_postun
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
|
Loading…
x
Reference in New Issue
Block a user