diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-04-15 14:55:55 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-04-15 15:15:17 -0700 |
commit | cdaf87b8c20ad5d8ba77b6aa2290f0f8b60d4e87 (patch) | |
tree | b27d8d7e611973009808e6e7afe7e494908ab0a3 /gnome-extra/gnome-contacts | |
parent | dev-libs/libportal: Add new package, version 0.6 (diff) | |
download | gentoo-cdaf87b8c20ad5d8ba77b6aa2290f0f8b60d4e87.tar.gz gentoo-cdaf87b8c20ad5d8ba77b6aa2290f0f8b60d4e87.tar.bz2 gentoo-cdaf87b8c20ad5d8ba77b6aa2290f0f8b60d4e87.zip |
gnome-extra/gnome-contacts: Version bump to 42.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-contacts')
-rw-r--r-- | gnome-extra/gnome-contacts/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild | 75 |
2 files changed, 76 insertions, 0 deletions
diff --git a/gnome-extra/gnome-contacts/Manifest b/gnome-extra/gnome-contacts/Manifest index da27f330b218..fe35fda7a160 100644 --- a/gnome-extra/gnome-contacts/Manifest +++ b/gnome-extra/gnome-contacts/Manifest @@ -1 +1,2 @@ DIST gnome-contacts-41.0.tar.xz 275248 BLAKE2B c0611a131ce1ebb74b96e96e2e1b9370526b56c49ee43876273fdf5b2f3b333ad2aad85c50ddcebaac85ee8c996037fec3209c6765cab7b37b49ced04a82a7a8 SHA512 310f333c0863d8e58c2280b994071b2655eee7224ab80a468ffc7acc61834d3f6dbb794bbdc5b8d4428226bab96f3ea65b8bed39df79d88704e38b51a8f4b05f +DIST gnome-contacts-42.0.tar.xz 343312 BLAKE2B a86bc70301a4f04bf7be426802e75d412abfa468555172233c5b540fcc0e630c433607ebe2a5dbffa58d49ab23773deb6099f88fdfa06f44f767d3fce57821bc SHA512 09a0d70a1550136717c4f837f2e4526928559de4bccedb71b34a216d99c36886bfd5786fcc3487198c488b4778046453d0069da55ab283ef87513c2d668a11cd diff --git a/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild new file mode 100644 index 000000000000..c324e25a1c75 --- /dev/null +++ b/gnome-extra/gnome-contacts/gnome-contacts-42.0.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) + +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="GNOME contact management application" +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="telepathy" +KEYWORDS="~amd64" + +VALA_DEPEND=" + $(vala_depend) + >=dev-libs/gobject-introspection-1.54 + dev-libs/folks[vala(+)] + net-libs/gnome-online-accounts[vala] + gnome-extra/evolution-data-server[gtk,vala] + >=dev-libs/libportal-0.6:=[vala] + telepathy? ( net-libs/telepathy-glib[vala] ) + >=gui-libs/libhandy-1.1.0:1[vala] +" +RDEPEND=" + >=gnome-extra/evolution-data-server-3.30:=[gnome-online-accounts] + >=dev-libs/folks-0.11.4:=[eds,telepathy?] + >=dev-libs/glib-2.58:2 + >=dev-libs/libgee-0.10:0.8 + net-libs/gnome-online-accounts:= + >=gui-libs/gtk-4.6:4 + gui-libs/libadwaita:1 + telepathy? ( >=net-libs/telepathy-glib-0.22 ) + >=gui-libs/libhandy-1.0.0:1 +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + ${VALA_DEPEND} + app-text/docbook-xml-dtd:4.2 + app-text/docbook-xsl-stylesheets + dev-libs/appstream-glib + dev-libs/libxml2:2 + dev-libs/libxslt + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + -Dcamera=true # Ignored + $(meson_use telepathy) + -Dmanpage=true + -Ddocs=false + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |