commit:     83e899515f55491ed2aa88c6f0fd1bbb15fc1892
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 17 17:31:35 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Sep 20 17:42:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83e89951

gnome-extra/evolution-ews: drop 3.50.3-r1, 3.52.2

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 gnome-extra/evolution-ews/Manifest                 |  2 -
 .../evolution-ews/evolution-ews-3.50.3-r1.ebuild   | 76 ----------------------
 .../evolution-ews/evolution-ews-3.52.2.ebuild      | 72 --------------------
 .../files/3.50.3-fix-overlinking.patch             | 73 ---------------------
 4 files changed, 223 deletions(-)

diff --git a/gnome-extra/evolution-ews/Manifest 
b/gnome-extra/evolution-ews/Manifest
index 1ee1ce9aef91..199ed6c77bd5 100644
--- a/gnome-extra/evolution-ews/Manifest
+++ b/gnome-extra/evolution-ews/Manifest
@@ -1,4 +1,2 @@
 DIST evolution-ews-3.50.2.tar.xz 707800 BLAKE2B 
18241eff067658af2f4620af87dea1c9c7c62476bbf9bf259addf15868a3b7e3f156dc952f21af2cad7ba6c2da9fd348b8733e5887f4276ad7eeeca8f9088476
 SHA512 
9aa4bb023922e39132a0ac3171d95f8362116960aa14dcb961b31ad242e6d7bcf2e946f19aea2c6f9a5324ca0954731264594a27fbb2b0e2cc38eca0cf441108
-DIST evolution-ews-3.50.3.tar.xz 708336 BLAKE2B 
e8fe4e2a6539142847d6610a61e2f57a83d604946270cd7b23d7e34fa89a38f644a05e452bbc03a6d96553936a38719afb7296eed03c7134735f937943d57114
 SHA512 
12c7fbe72f375837f185d4c8dbcb2167d327a0ad4b2ca822e4e5349d561e996e7a7405c6f8d36ceeddff0015286117db66a65d2756003aa8ca96948d7826e51f
-DIST evolution-ews-3.52.2.tar.xz 721964 BLAKE2B 
53962e66f12e660f15c6fb300f30545d2380d5d12a1bce59ba64a44c7cefbdfaee2e1fa319e31e4c4c21cfd462e2c02aa96ee8efe78d4771bd8429aa18e89136
 SHA512 
b92db18b347c19fab15097aa7cedef876ca13364ece0ff2836cf6160bb2eb2ceb8d7eeaf9bada0369776ea32edca6938952a0dea04b229afd9690c744e16616c
 DIST evolution-ews-3.52.4.tar.xz 724244 BLAKE2B 
35b78fa600e06c18cecee8c43941e77b3645a7d4487d72d989da62a0c7acab83f2adf4363c761d7e313f42175f341d63ec7709003599bf5b37e80424cc76d67c
 SHA512 
017dbe28ba6524cdad1582cebd00fb675c75f52cac5875c756be0f402d4a0dd4a83e60b7ee0a2f71211eac49c04bba924e3d71775dce1e55fdcd372b1ac3747d

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild
deleted file mode 100644
index 3fee01d4d062..000000000000
--- a/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake gnome2 optfeature
-
-DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution 
https://gitlab.gnome.org/GNOME/evolution-ews";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="test"
-
-# libical-glib currently (2020-02-29) oddly behind USE=introspection
-RDEPEND="
-       dev-db/sqlite:3
-       >=dev-libs/glib-2.68:2
-       >=dev-libs/libical-3.0.5:0=[introspection(-)]
-       >=dev-libs/json-glib-1.0.4
-       >=dev-libs/libmspack-0.4
-       dev-libs/libxml2:2
-       >=gnome-extra/evolution-data-server-${PV}:0=
-       >=mail-client/evolution-${PV}:2.0
-       >=net-libs/libsoup-3.0:3.0
-       >=x11-libs/gtk+-3.10:3
-"
-DEPEND="${RDEPEND}
-       test? ( >=net-libs/uhttpmock-0.9:1.0 )
-"
-BDEPEND="
-       dev-util/gdbus-codegen
-       dev-util/glib-utils
-       >=dev-util/intltool-0.35.5
-       >=sys-devel/gettext-0.18.3
-       virtual/pkgconfig
-"
-
-# Unittests fail to find libevolution-ews.so
-RESTRICT="test !test? ( test )"
-
-# global scope PATCHES or DOCS array mustn't be used due to double 
default_src_prepare
-# call; if needed, set them after cmake_src_prepare call, if that works
-src_prepare() {
-       cmake_src_prepare
-       gnome2_src_prepare
-
-       # Fix wrongly linking in GTK3 webkit without --as-needed, which breaks 
GTK4 evolution-data-server apps like gnome-contacts
-       eapply "${FILESDIR}"/${PV}-fix-overlinking.patch
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DWITH_MSPACK=ON
-               -DENABLE_TESTS=$(usex test)
-       )
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-}
-
-src_test() {
-       # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522
-       cmake_src_test -j1
-}
-
-src_install() {
-       cmake_src_install
-}
-
-pkg_postinst() {
-       optfeature "oauth support" 
"gnome-extra/evolution-data-server[oauth-gtk3]"
-}

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild
deleted file mode 100644
index aa6c1306dab2..000000000000
--- a/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake gnome2 optfeature
-
-DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/evolution/-/wikis/home 
https://gitlab.gnome.org/GNOME/evolution-ews";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="test"
-
-RDEPEND="
-       dev-db/sqlite:3
-       >=dev-libs/glib-2.68:2
-       >=dev-libs/libical-3.0.5:0=[glib]
-       >=dev-libs/json-glib-1.0.4
-       >=dev-libs/libmspack-0.4
-       dev-libs/libxml2:2
-       >=gnome-extra/evolution-data-server-${PV}:0=
-       >=mail-client/evolution-${PV}:2.0
-       >=net-libs/libsoup-3.0:3.0
-       >=x11-libs/gtk+-3.10:3
-"
-DEPEND="${RDEPEND}
-       test? ( >=net-libs/uhttpmock-0.9:1.0 )
-"
-BDEPEND="
-       dev-util/gdbus-codegen
-       dev-util/glib-utils
-       >=dev-util/intltool-0.35.5
-       >=sys-devel/gettext-0.18.3
-       virtual/pkgconfig
-"
-
-# Unittests fail to find libevolution-ews.so
-RESTRICT="test !test? ( test )"
-
-# global scope PATCHES or DOCS array mustn't be used due to double 
default_src_prepare
-# call; if needed, set them after cmake_src_prepare call, if that works
-src_prepare() {
-       cmake_src_prepare
-       gnome2_src_prepare
-}
-
-src_configure() {
-       local mycmakeargs=(
-               -DWITH_MSPACK=ON
-               -DENABLE_TESTS=$(usex test)
-       )
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-}
-
-src_test() {
-       # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522
-       cmake_src_test -j1
-}
-
-src_install() {
-       cmake_src_install
-}
-
-pkg_postinst() {
-       optfeature "oauth support" 
"gnome-extra/evolution-data-server[oauth-gtk3]"
-}

diff --git a/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch 
b/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch
deleted file mode 100644
index 7628390f27f8..000000000000
--- a/gnome-extra/evolution-ews/files/3.50.3-fix-overlinking.patch
+++ /dev/null
@@ -1,73 +0,0 @@
-From c9e8707d024048ea595d825ed08833c9aa6bff37 Mon Sep 17 00:00:00 2001
-From: Milan Crha <[email protected]>
-Date: Mon, 4 Mar 2024 18:02:54 +0100
-Subject: [PATCH] build: Correct overlinking on the m365 part
-
-This can bring in gtk3 and other UI-specific libs into the background 
processes,
-when the compiler does not filter them out, which can happen with clang.
-
-Related to https://gitlab.gnome.org/GNOME/gnome-contacts/-/issues/222
----
- src/Microsoft365/calendar/CMakeLists.txt | 3 ---
- src/Microsoft365/common/CMakeLists.txt   | 3 ---
- 2 files changed, 6 deletions(-)
-
-diff --git a/src/Microsoft365/calendar/CMakeLists.txt 
b/src/Microsoft365/calendar/CMakeLists.txt
-index 676e2d7f..60801886 100644
---- a/src/Microsoft365/calendar/CMakeLists.txt
-+++ b/src/Microsoft365/calendar/CMakeLists.txt
-@@ -27,7 +27,6 @@ target_compile_definitions(ecalbackendmicrosoft365 PRIVATE
- 
- target_compile_options(ecalbackendmicrosoft365 PUBLIC
-       ${CAMEL_CFLAGS}
--      ${EVOLUTION_CALENDAR_CFLAGS}
-       ${LIBEBACKEND_CFLAGS}
-       ${LIBECAL_CFLAGS}
-       ${LIBEDATACAL_CFLAGS}
-@@ -41,7 +40,6 @@ target_include_directories(ecalbackendmicrosoft365 PUBLIC
-       ${CMAKE_SOURCE_DIR}/src/Microsoft365
-       ${CMAKE_CURRENT_BINARY_DIR}
-       ${CAMEL_INCLUDE_DIRS}
--      ${EVOLUTION_CALENDAR_INCLUDE_DIRS}
-       ${LIBEBACKEND_INCLUDE_DIRS}
-       ${LIBECAL_INCLUDE_DIRS}
-       ${LIBEDATACAL_INCLUDE_DIRS}
-@@ -51,7 +49,6 @@ target_include_directories(ecalbackendmicrosoft365 PUBLIC
- target_link_libraries(ecalbackendmicrosoft365
-       ${DEPENDENCIES}
-       ${CAMEL_LDFLAGS}
--      ${EVOLUTION_CALENDAR_LDFLAGS}
-       ${LIBEBACKEND_LDFLAGS}
-       ${LIBECAL_LDFLAGS}
-       ${LIBEDATACAL_LDFLAGS}
-diff --git a/src/Microsoft365/common/CMakeLists.txt 
b/src/Microsoft365/common/CMakeLists.txt
-index 1b81e6ea..def3d020 100644
---- a/src/Microsoft365/common/CMakeLists.txt
-+++ b/src/Microsoft365/common/CMakeLists.txt
-@@ -31,7 +31,6 @@ target_compile_definitions(evolution-microsoft365 PRIVATE
- 
- target_compile_options(evolution-microsoft365 PUBLIC
-       ${CAMEL_CFLAGS}
--      ${EVOLUTION_CALENDAR_CFLAGS}
-       ${JSON_GLIB_CFLAGS}
-       ${LIBEBACKEND_CFLAGS}
-       ${LIBECAL_CFLAGS}
-@@ -48,7 +47,6 @@ target_include_directories(evolution-microsoft365 PUBLIC
-       ${CMAKE_CURRENT_BINARY_DIR}
-       ${CMAKE_CURRENT_SOURCE_DIR}
-       ${CAMEL_INCLUDE_DIRS}
--      ${EVOLUTION_CALENDAR_INCLUDE_DIRS}
-       ${JSON_GLIB_INCLUDE_DIRS}
-       ${LIBEBACKEND_INCLUDE_DIRS}
-       ${LIBECAL_INCLUDE_DIRS}
-@@ -59,7 +57,6 @@ target_include_directories(evolution-microsoft365 PUBLIC
- 
- target_link_libraries(evolution-microsoft365
-       ${CAMEL_LDFLAGS}
--      ${EVOLUTION_CALENDAR_LDFLAGS}
-       ${JSON_GLIB_LDFLAGS}
-       ${LIBEBACKEND_LDFLAGS}
-       ${LIBECAL_LDFLAGS}
--- 
-2.43.0
-

Reply via email to