forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnome-extra/gnome-calendar: bump to 3.32.2
Bug: https://bugs.gentoo.org/688422 Package-Manager: Portage-2.3.69, Repoman-2.3.12 Signed-off-by: Mart Raudsepp <[email protected]>
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST gnome-calendar-3.30.1.tar.xz 2443936 BLAKE2B 1826488ee03742a9350e589954723264318450d50fa7175955deee8fb3b3bbf2a29fbc6106644bccc062dd45bd9a16e7f40e2928c488bc333ba35d00f2411f25 SHA512 acb428f123fe716b41c4e828213b1106296731b5aa99607838219b8e6c802b22d3481eaa91429cfb34bc3d098344f406ea86c5e2f794f26414ba05bf0189fe29 | ||
DIST gnome-calendar-3.32.2.tar.xz 695416 BLAKE2B bf5b2b5bd8ea5934075d00614a3888208a06926b8587fc39724850c0fccb7e34920bb650f45a241074f5ea383acb80edf91884936c7b432e0a7f9e672e457b8a SHA512 6a1ee1b41080d7814e9a49b3a95689fb01325c9ac5eb1314b11e7097c3b8b120c7ca45b05c806c3dbac284a70474beaf419773ab185a7cdde96303fcc7cd3915 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
inherit gnome.org gnome2-utils meson virtualx xdg | ||
|
||
DESCRIPTION="Manage your online calendars with simple and modern interface" | ||
HOMEPAGE="https://wiki.gnome.org/Apps/Calendar" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~x86" | ||
IUSE="gtk-doc" | ||
|
||
# >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244 | ||
DEPEND=" | ||
>=dev-libs/libical-1.0.1:0= | ||
>=gnome-base/gsettings-desktop-schemas-3.21.2 | ||
>=gnome-extra/evolution-data-server-3.17.1:= | ||
net-libs/libsoup:2.4 | ||
>=dev-libs/libdazzle-3.26.1 | ||
>=dev-libs/glib-2.58.0:2 | ||
>=x11-libs/gtk+-3.22.0:3 | ||
>=net-libs/gnome-online-accounts-3.2.0:= | ||
>=dev-libs/libgweather-3.27.2:= | ||
>=app-misc/geoclue-2.4:2.0 | ||
>=sci-geosciences/geocode-glib-3.23 | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND=" | ||
dev-libs/appstream-glib | ||
dev-libs/libxml2:2 | ||
dev-util/gdbus-codegen | ||
dev-util/glib-utils | ||
gtk-doc? ( dev-util/gtk-doc | ||
app-text/docbook-xml-dtd:4.3 ) | ||
>=sys-devel/gettext-0.19.8 | ||
virtual/pkgconfig | ||
" | ||
|
||
RESTRICT="!test? ( test )" | ||
|
||
src_configure() { | ||
meson_src_configure \ | ||
$(meson_use gtk-doc documentation) | ||
} | ||
|
||
src_test() { | ||
virtx meson_src_test | ||
} | ||
|
||
pkg_postinst() { | ||
xdg_pkg_postinst | ||
gnome2_schemas_update | ||
} | ||
|
||
pkg_postrm() { | ||
xdg_pkg_postrm | ||
gnome2_schemas_update | ||
} |