Accepting request 519366 from GNOME:Next
Scripted push of project GNOME:Next OBS-URL: https://build.opensuse.org/request/show/519366 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-calendar?expand=0&rev=50
This commit is contained in:
parent
d716fefadc
commit
141408b46c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ecb4074f44cb6c883f81f93ebde2fa3890107f8e06740495be9f942190ff3ec
|
||||
size 2425292
|
3
gnome-calendar-3.25.90.tar.xz
Normal file
3
gnome-calendar-3.25.90.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:193eb66b058d4f11291485d0f152f433f3083f54fa8c2f90970d23b79172e14c
|
||||
size 2418704
|
@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 14 14:23:03 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.25.90:
|
||||
+ Port to Meson build system.
|
||||
+ Improve string in the quick add popover.
|
||||
+ Fix Month view's overflow detection.
|
||||
+ Add support for adding and modifying recurrences.
|
||||
+ Grey out out-of-range cells in Month view.
|
||||
+ Move remaining files to GPLv3.
|
||||
+ Updated translations.
|
||||
- Add meson BuildRequires and switch autotools macros configure,
|
||||
make and makeinstall to meson, meson_build and meson_install
|
||||
following upstream switch to Meson build system.
|
||||
- Add gtk-doc and pass Denable-gtk-doc to meson: Build
|
||||
documentation, needed now that we are using meson buildsystem.
|
||||
- Drop obsolete post(un) handling, remove following macros:
|
||||
+ icon_theme_cache_post(un).
|
||||
+ desktop_database_post(un).
|
||||
+ glib2_gsettings_schema_post(un).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 20 11:43:33 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.25.3:
|
||||
+ Drop intltool.
|
||||
+ Move events at column after remove event from list.
|
||||
+ Hide search popover if click is performed outside.
|
||||
+ Plug memory leaks.
|
||||
+ Fix drag n' drop of multiday events in Week header.
|
||||
+ Add margins to overflow label in Month view.
|
||||
+ Properly format dates.
|
||||
+ Fix crash when after closing Calendar.
|
||||
+ Add recurrence dialog for modifying and removing recurrent
|
||||
events.
|
||||
+ Updated translations.
|
||||
- Drop intltool BuildRequires: no longer needed.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 9 08:14:31 UTC 2017 - firebird209@gmail.com
|
||||
|
||||
- Update to version 3.25.1:
|
||||
+ Add developer documentation.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 9 08:14:30 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
|
@ -17,16 +17,17 @@
|
||||
|
||||
|
||||
Name: gnome-calendar
|
||||
Version: 3.24.3
|
||||
Version: 3.25.90
|
||||
Release: 0
|
||||
Summary: A calendar application for GNOME
|
||||
License: GPL-3.0+
|
||||
Group: Productivity/Office/Organizers
|
||||
Url: https://wiki.gnome.org/Design/Apps/Calendar
|
||||
Source: http://download.gnome.org/sources/gnome-calendar/3.24/%{name}-%{version}.tar.xz
|
||||
Source: https://download.gnome.org/sources/gnome-calendar/3.25/%{name}-%{version}.tar.xz
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: hicolor-icon-theme
|
||||
BuildRequires: intltool
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig(gio-2.0) >= 2.43.2
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.43.4
|
||||
BuildRequires: pkgconfig(gmodule-export-2.0)
|
||||
@ -56,36 +57,30 @@ search results from GNOME Calendar.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%meson \
|
||||
-Denable-gtk-doc=true \
|
||||
%{nil}
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot} %{?_smp_mflags}
|
||||
%meson_install
|
||||
|
||||
%find_lang %{name} %{?no_lang_C}
|
||||
|
||||
%post
|
||||
%icon_theme_cache_post
|
||||
%desktop_database_post
|
||||
%glib2_gsettings_schema_post
|
||||
|
||||
%postun
|
||||
%icon_theme_cache_postun
|
||||
%desktop_database_postun
|
||||
%glib2_gsettings_schema_postun
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS ChangeLog README COPYING NEWS THANKS
|
||||
%doc ChangeLog README COPYING NEWS THANKS
|
||||
%{_bindir}/gnome-calendar
|
||||
%{_datadir}/applications/org.gnome.Calendar.desktop
|
||||
# Own dir for openSUSE Leap 42.1
|
||||
%dir %{_datadir}/appdata
|
||||
%{_datadir}/appdata/org.gnome.Calendar.appdata.xml
|
||||
%dir %{_datadir}/metainfo
|
||||
%{_datadir}/metainfo/org.gnome.Calendar.metainfo.xml
|
||||
%{_datadir}/dbus-1/services/org.gnome.Calendar.service
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.calendar.enums.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.calendar.gschema.xml
|
||||
%{_datadir}/icons/hicolor/*/apps/*.*
|
||||
%dir %{_datadir}/gtk-doc/html/%{name}
|
||||
%doc %{_datadir}/gtk-doc/html/%{name}/*.*
|
||||
|
||||
%files -n gnome-shell-search-provider-gnome-calendar
|
||||
%defattr(-,root,root)
|
||||
|
Loading…
Reference in New Issue
Block a user