Accepting request 523682 from GNOME:Factory
Update to 3.26.0 (forwarded request 523680 from dimstar) OBS-URL: https://build.opensuse.org/request/show/523682 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-calendar?expand=0&rev=18
This commit is contained in:
commit
6ab47ece78
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ecb4074f44cb6c883f81f93ebde2fa3890107f8e06740495be9f942190ff3ec
|
||||
size 2425292
|
3
gnome-calendar-3.26.0.tar.xz
Normal file
3
gnome-calendar-3.26.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04acd246e7cbc62fbc7dacbdc39da65636915415cfc6171c75920af52d330e06
|
||||
size 2436036
|
@ -1,3 +1,67 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 12 07:15:19 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.26.0:
|
||||
+ Many fixes to recurrent events.
|
||||
+ Cache events for better resource management.
|
||||
+ Improve organization of files in the source code.
|
||||
+ Handle command line options correctly.
|
||||
+ Added the first version of a test suite. This will allow us
|
||||
continue improving and delivering new features with much less
|
||||
regressions.
|
||||
+ Many code cleanups and reorganizations.
|
||||
+ updated translations.
|
||||
- Disable gtk-doc for now. Build fails (bgo#782150).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 9 08:12:14 UTC 2017 - jengelh@inai.de
|
||||
|
||||
- Update package summaries.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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.26.0
|
||||
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: http://download.gnome.org/sources/gnome-calendar/3.26/%{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)
|
||||
@ -36,56 +37,50 @@ BuildRequires: pkgconfig(gtk+-3.0) >= 3.21.1
|
||||
BuildRequires: pkgconfig(libecal-1.2) >= 3.13.90
|
||||
BuildRequires: pkgconfig(libedataserver-1.2) >= 3.17.1
|
||||
BuildRequires: pkgconfig(libical) >= 1.0
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
Calendar is a calendar application for GNOME.
|
||||
|
||||
%package -n gnome-shell-search-provider-gnome-calendar
|
||||
Summary: GNOME Calendar -- Search Provider for GNOME Shell
|
||||
Summary: GNOME Shell search provider to return results from the GNOME Calendar
|
||||
Group: Productivity/Office/Organizers
|
||||
Supplements: packageand(gnome-shell:%{name})
|
||||
Requires: %{name} = %{version}
|
||||
Supplements: packageand(gnome-shell:%{name})
|
||||
|
||||
%description -n gnome-shell-search-provider-gnome-calendar
|
||||
This package contains a search provider to enable GNOME Shell to get
|
||||
search results from GNOME Calendar.
|
||||
|
||||
%lang_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%meson \
|
||||
-Denable-gtk-doc=false \
|
||||
%{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 COPYING NEWS
|
||||
%{_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