summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-04-13 11:43:26 -0400
committerMatt Turner <mattst88@gentoo.org>2021-04-13 12:12:20 -0400
commit4d2689de24eec882d815e5d8f3d4455bb4208cb1 (patch)
tree3b6ac4805335bad755ea399bc0ba9d77f292c6bb /gnome-extra/gnome-contacts
parentgnome-extra/gnome-clocks: Drop old versions (diff)
downloadgentoo-4d2689de24eec882d815e5d8f3d4455bb4208cb1.tar.gz
gentoo-4d2689de24eec882d815e5d8f3d4455bb4208cb1.tar.bz2
gentoo-4d2689de24eec882d815e5d8f3d4455bb4208cb1.zip
gnome-extra/gnome-contacts: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-contacts')
-rw-r--r--gnome-extra/gnome-contacts/Manifest1
-rw-r--r--gnome-extra/gnome-contacts/files/3.36.2-fix-telepathy.patch71
-rw-r--r--gnome-extra/gnome-contacts/gnome-contacts-3.36.2.ebuild79
3 files changed, 0 insertions, 151 deletions
diff --git a/gnome-extra/gnome-contacts/Manifest b/gnome-extra/gnome-contacts/Manifest
index e3737753cef7..c25b1a2a69e0 100644
--- a/gnome-extra/gnome-contacts/Manifest
+++ b/gnome-extra/gnome-contacts/Manifest
@@ -1,2 +1 @@
-DIST gnome-contacts-3.36.2.tar.xz 635932 BLAKE2B 9bcdf093d99477d1162c9ea78007e65cf20a1e4038fe284fafa4c174ab1d1d0c2ceb7ec2806c9abeed1c8ab168549c80b2763e65ece22c76a9044781eef8ed5d SHA512 ebbce67aa5c0af55559230c558c5f28b065182d434582431595bffedc25dd0ec3caa44e60f4670b4b2a1f784e90c8dd4f56df937054697b4ea932a39da78f1c1
DIST gnome-contacts-3.38.1.tar.xz 657376 BLAKE2B 5c042566ad99be1bda454466dcc2a42d6494cfbfb5a9f60eb0fa718a8d9bcbb986798ec48a87d5d322989b22d0fac2eee69df852ae39ba8a228ad91f50247c30 SHA512 bc2ed06d491c4773b9cedb2c51dc390a95d0271cf22d54864f5da4d892f80efece3cbdc1b90b4497f730039c8c83065b2a0ca590cecec579f011dd324ff8f134
diff --git a/gnome-extra/gnome-contacts/files/3.36.2-fix-telepathy.patch b/gnome-extra/gnome-contacts/files/3.36.2-fix-telepathy.patch
deleted file mode 100644
index 07d4e7783634..000000000000
--- a/gnome-extra/gnome-contacts/files/3.36.2-fix-telepathy.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From cbcb28f91f2c5dab9300ded79dc8e246a7ae0f36 Mon Sep 17 00:00:00 2001
-From: Niels De Graef <nielsdegraef@gmail.com>
-Date: Sat, 7 Nov 2020 12:01:59 +0100
-Subject: [PATCH] Fix build when -Dtelepathy=true
-
----
- src/contacts-contact-list.vala | 2 +-
- src/contacts-contact-sheet.vala | 4 +++-
- src/contacts-utils.vala | 4 ++--
- 3 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/src/contacts-contact-list.vala b/src/contacts-contact-list.vala
-index aa3cd33..b371644 100644
---- a/src/contacts-contact-list.vala
-+++ b/src/contacts-contact-list.vala
-@@ -243,7 +243,7 @@ public class Contacts.ContactList : ListBox {
- selection_changed (individual);
- #if HAVE_TELEPATHY
- if (individual != null)
-- Contact.fetch_contact_info (individual);
-+ Utils.fetch_contact_info (individual);
- #endif
- }
-
-diff --git a/src/contacts-contact-sheet.vala b/src/contacts-contact-sheet.vala
-index b6c2249..669e771 100644
---- a/src/contacts-contact-sheet.vala
-+++ b/src/contacts-contact-sheet.vala
-@@ -27,6 +27,7 @@ using Gee;
- public class Contacts.ContactSheet : Grid {
- private int last_row = 0;
- private Individual individual;
-+ private unowned Store store;
- public bool narrow { get; set; default = true; }
-
- private const string[] SORTED_PROPERTIES = {
-@@ -43,6 +44,7 @@ public class Contacts.ContactSheet : Grid {
- public ContactSheet (Individual individual, Store store) {
- Object (row_spacing: 12, column_spacing: 12);
- this.individual = individual;
-+ this.store = store;
-
- this.individual.notify.connect (update);
- this.individual.personas_changed.connect (update);
-@@ -242,7 +244,7 @@ public class Contacts.ContactSheet : Grid {
- var type = im_persona.presence_type;
- if (type != PresenceType.UNSET && type != PresenceType.ERROR &&
- type != PresenceType.OFFLINE && type != PresenceType.UNKNOWN) {
-- Utils.start_chat (this.contact, protocol, id.value);
-+ Utils.start_chat (this.individual, protocol, id.value);
- }
- }
- });
-diff --git a/src/contacts-utils.vala b/src/contacts-utils.vala
-index 879c4a9..8f3b8c1 100644
---- a/src/contacts-utils.vala
-+++ b/src/contacts-utils.vala
-@@ -80,8 +80,8 @@ namespace Contacts.Utils {
- }
-
- #if HAVE_TELEPATHY
-- public void start_chat (Contact contact, string protocol, string id) {
-- var im_persona = contact.find_im_persona (protocol, id);
-+ public void start_chat (Individual individual, string protocol, string id) {
-+ var im_persona = Utils.find_im_persona (individual, protocol, id);
- var account = (im_persona.store as Tpf.PersonaStore).account;
- var request_dict = new HashTable<string, Value?>(str_hash, str_equal);
- request_dict.insert (TelepathyGLib.PROP_CHANNEL_CHANNEL_TYPE,
---
-2.27.0
-
diff --git a/gnome-extra/gnome-contacts/gnome-contacts-3.36.2.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-3.36.2.ebuild
deleted file mode 100644
index 372d51f30729..000000000000
--- a/gnome-extra/gnome-contacts/gnome-contacts-3.36.2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_MIN_API_VERSION="0.40"
-VALA_MAX_API_VERSION="0.48"
-
-inherit gnome.org gnome2-utils meson vala xdg
-
-DESCRIPTION="GNOME contact management application"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="telepathy v4l"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~sparc x86"
-
-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]
- telepathy? ( net-libs/telepathy-glib[vala] )
- gui-libs/libhandy:0.0[vala]
-"
-# Configure is wrong; it needs cheese-3.5.91, not 3.3.91
-RDEPEND="
- >=gnome-extra/evolution-data-server-3.13.90:=[gnome-online-accounts]
- >=dev-libs/folks-0.11.4:=[eds,telepathy?]
- >=dev-libs/glib-2.44:2
- >=dev-libs/libgee-0.10:0.8
- >=gnome-base/gnome-desktop-3.0:3=
- net-libs/gnome-online-accounts:=
- >=x11-libs/gtk+-3.23.1:3
- v4l? ( >=media-video/cheese-3.5.91:= )
- telepathy? ( >=net-libs/telepathy-glib-0.22 )
- >=gui-libs/libhandy-0.0.12:0.0=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- ${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
-"
-
-PATCHES=(
- "${FILESDIR}"/${PV}-fix-telepathy.patch
-)
-
-src_prepare() {
- xdg_src_prepare
- vala_src_prepare
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_use v4l cheese)
- $(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
-}