git: b63ffc6e268b - main - net-im/telepathy-logger-qt5: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Mon, 31 Mar 2025 16:36:51 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b63ffc6e268b9c29afb643b233213018ffa8ef37

commit b63ffc6e268b9c29afb643b233213018ffa8ef37
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-03-31 16:36:47 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-03-31 16:36:47 +0000

    net-im/telepathy-logger-qt5: Remove expired port
    
    2025-03-31 net-im/telepathy-logger-qt5: Abandoned project
---
 MOVED                                             |  1 +
 net-im/Makefile                                   |  1 -
 net-im/telepathy-logger-qt5/Makefile              | 35 -------------
 net-im/telepathy-logger-qt5/distinfo              |  3 --
 net-im/telepathy-logger-qt5/files/patch-rb-126602 | 63 -----------------------
 net-im/telepathy-logger-qt5/pkg-descr             |  6 ---
 net-im/telepathy-logger-qt5/pkg-plist             | 42 ---------------
 7 files changed, 1 insertion(+), 150 deletions(-)

diff --git a/MOVED b/MOVED
index ed3389a441dc..e9ba67fc074d 100644
--- a/MOVED
+++ b/MOVED
@@ -4291,3 +4291,4 @@ devel/radian||2025-03-31|Has expired: Depends on expired devel/py-pytest-runner
 japanese/esecanna||2025-03-31|Has expired: Upstream disapeared and distfile is no more available
 devel/rubygem-aws-sdk-elasticinference||2025-03-31|Has expired: Deprecated by upstream
 devel/electron31||2025-03-31|Has expired: EOLed upstream, switch to newer version
+net-im/telepathy-logger-qt5||2025-03-31|Has expired: Abandoned project
diff --git a/net-im/Makefile b/net-im/Makefile
index d0eb6b7c9610..96e54d75a7bc 100644
--- a/net-im/Makefile
+++ b/net-im/Makefile
@@ -154,7 +154,6 @@
     SUBDIR += telepathy-glib
     SUBDIR += telepathy-idle
     SUBDIR += telepathy-logger
-    SUBDIR += telepathy-logger-qt5
     SUBDIR += telepathy-mission-control
     SUBDIR += telepathy-qt
     SUBDIR += telepathy-sofiasip
diff --git a/net-im/telepathy-logger-qt5/Makefile b/net-im/telepathy-logger-qt5/Makefile
deleted file mode 100644
index 5dc5574ea0fa..000000000000
--- a/net-im/telepathy-logger-qt5/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-PORTNAME=	telepathy-logger-qt
-DISTVERSION=	17.09.0
-PORTREVISION=	4
-CATEGORIES=	net-im
-MASTER_SITES=	${MASTER_SITE_KDE}
-MASTER_SITE_SUBDIR=	stable/${PORTNAME}/${PORTVERSION:R}/src
-PKGNAMESUFFIX=	5
-
-MAINTAINER=	kde@FreeBSD.org
-COMMENT=	Qt binding for Telepathy Logger
-WWW=		https://community.kde.org/KTp
-
-LICENSE=	LGPL21+
-LICENSE_FILE=	${WRKSRC}/COPYING
-
-DEPRECATED=	Abandoned project
-EXPIRATION_DATE=2025-03-31
-
-LIB_DEPENDS=	libdbus-1.so:devel/dbus \
-		libdbus-glib-1.so:devel/dbus-glib \
-		libtelepathy-glib.so:net-im/telepathy-glib \
-		libtelepathy-logger.so:net-im/telepathy-logger \
-		libtelepathy-qt5.so:net-im/telepathy-qt
-
-USES=		cmake compiler:c++11-lang gnome kde:5 pkgconfig qt:5 tar:xz \
-		bison:build python:build
-USE_CXXSTD=	c++11
-USE_GNOME=	glib20 libxml2
-USE_KDE=	ecm:build
-USE_QT=		core dbus network xml \
-		buildtools:build qmake:build
-CMAKE_ARGS=	-DUSE_COMMON_CMAKE_PACKAGE_CONFIG_DIR:BOOL=True
-USE_LDCONFIG=	yes
-
-.include <bsd.port.mk>
diff --git a/net-im/telepathy-logger-qt5/distinfo b/net-im/telepathy-logger-qt5/distinfo
deleted file mode 100644
index bd680ef23517..000000000000
--- a/net-im/telepathy-logger-qt5/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1584217136
-SHA256 (telepathy-logger-qt-17.09.0.tar.xz) = 3190729d0df9001d683ba15605aaee65e46edcedad0e828e51312ea965ce135a
-SIZE (telepathy-logger-qt-17.09.0.tar.xz) = 93480
diff --git a/net-im/telepathy-logger-qt5/files/patch-rb-126602 b/net-im/telepathy-logger-qt5/files/patch-rb-126602
deleted file mode 100644
index 2b66e9853a21..000000000000
--- a/net-im/telepathy-logger-qt5/files/patch-rb-126602
+++ /dev/null
@@ -1,63 +0,0 @@
-From 2ef469161eade460d781642b6a7f4c8e52b494cf Mon Sep 17 00:00:00 2001
-From: "Tobias C. Berner" <tcberner@gmail.com>
-Date: Sat, 2 Jan 2016 13:16:52 +0100
-Subject: [PATCH] Fix linking against gobject-2.0 on FreeBSD
-
-The cmake module file cmake/modules/FindGObject.cmake uses pkgconfig. Therefore
-the library returned in GOBJECT_LIBRARY does not contain the absolute path.
-
-This makes linking fail with
-| [ 91%] Linking CXX shared library libtelepathy-logger-qt.so
-| /usr/bin/ld: cannot find -lgobject-2.0
-
-This patch extend FindGObject.cmake to also export GOBJECT_LIBRARY_DIRS as
-provided by pkgconfig, and adding it to the link_directories in
-TelepathyLoggerQt/CMakeLists.txt
----
- TelepathyLoggerQt/CMakeLists.txt | 2 ++
- cmake/modules/FindGObject.cmake  | 5 ++++-
- 2 files changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/TelepathyLoggerQt/CMakeLists.txt b/TelepathyLoggerQt/CMakeLists.txt
-index 9790bdf..fd55eb5 100644
---- TelepathyLoggerQt/CMakeLists.txt
-+++ TelepathyLoggerQt/CMakeLists.txt
-@@ -83,6 +83,8 @@ set(telepathy_logger_qt_GEN_HEADERS
- qt5_wrap_cpp(telepathy_logger_qt_SRCS ${telepathy_logger_qt_GEN_HEADERS})
- 
- ################# Add target ##########################
-+# add GObject library location to link directories
-+link_directories(${GOBJECT_LIBRARY_DIRS})
- 
- add_library(telepathy-logger-qt SHARED
-     ${telepathy_logger_qt_SRCS}
-diff --git a/cmake/modules/FindGObject.cmake b/cmake/modules/FindGObject.cmake
-index 1507b43..fd56fa4 100644
---- cmake/modules/FindGObject.cmake
-+++ cmake/modules/FindGObject.cmake
-@@ -4,6 +4,7 @@
- #  GOBJECT_FOUND - system has GObject
- #  GOBJECT_INCLUDE_DIR - the GObject include directory
- #  GOBJECT_LIBRARIES - the libraries needed to use GObject
-+#  GOBJECT_LIBRARY_DIRS - the directory the libraries are in
- #  GOBJECT_DEFINITIONS - Compiler switches required for using GObject
- 
- # Copyright (c) 2008 Helio Chissini de Castro, <helio@kde.org>
-@@ -55,6 +56,8 @@ ELSE (WIN32)
- SET (GOBJECT_LIBRARIES ${PKG_GOBJECT2_LIBRARIES})
- ENDIF (WIN32)
- 
-+SET (GOBJECT_LIBRARY_DIRS ${PKG_GOBJECT2_LIBRARY_DIRS})
-+
- IF (GOBJECT_INCLUDE_DIR AND GOBJECT_LIBRARIES)
-    SET(GOBJECT_FOUND TRUE)
- ELSE (GOBJECT_INCLUDE_DIR AND GOBJECT_LIBRARIES)
-@@ -72,4 +75,4 @@ ELSE (GOBJECT_FOUND)
-     ENDIF(GObject_FIND_REQUIRED)
- ENDIF (GOBJECT_FOUND)
- 
--MARK_AS_ADVANCED(GOBJECT_INCLUDE_DIR GOBJECT_LIBRARIES)
-+MARK_AS_ADVANCED(GOBJECT_INCLUDE_DIR GOBJECT_LIBRARIES GOBJECT_LIBRARY_DIRS)
--- 
-2.6.4
-
diff --git a/net-im/telepathy-logger-qt5/pkg-descr b/net-im/telepathy-logger-qt5/pkg-descr
deleted file mode 100644
index ebf6b2ffc0c7..000000000000
--- a/net-im/telepathy-logger-qt5/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Qt wrapper around the Telepathy Logger client library.
-
-Telepathy is a D-Bus framework for unifying real time communication,
-including instant messaging, voice calls and video calls. It abstracts
-differences between protocols to provide a unified interface for
-applications.
diff --git a/net-im/telepathy-logger-qt5/pkg-plist b/net-im/telepathy-logger-qt5/pkg-plist
deleted file mode 100644
index b1bad5ca1d6b..000000000000
--- a/net-im/telepathy-logger-qt5/pkg-plist
+++ /dev/null
@@ -1,42 +0,0 @@
-include/TelepathyLoggerQt/CallEvent
-include/TelepathyLoggerQt/Entity
-include/TelepathyLoggerQt/Event
-include/TelepathyLoggerQt/Global
-include/TelepathyLoggerQt/Init
-include/TelepathyLoggerQt/LogManager
-include/TelepathyLoggerQt/LogWalker
-include/TelepathyLoggerQt/Object
-include/TelepathyLoggerQt/PendingDates
-include/TelepathyLoggerQt/PendingEntities
-include/TelepathyLoggerQt/PendingEvents
-include/TelepathyLoggerQt/PendingOperation
-include/TelepathyLoggerQt/PendingSearch
-include/TelepathyLoggerQt/SearchHit
-include/TelepathyLoggerQt/TelepathyLoggerQt_export.h
-include/TelepathyLoggerQt/TelepathyLoggerQt_version.h
-include/TelepathyLoggerQt/TelepathyLogger_version.h
-include/TelepathyLoggerQt/TextEvent
-include/TelepathyLoggerQt/Types
-include/TelepathyLoggerQt/call-event.h
-include/TelepathyLoggerQt/entity.h
-include/TelepathyLoggerQt/event.h
-include/TelepathyLoggerQt/global.h
-include/TelepathyLoggerQt/init.h
-include/TelepathyLoggerQt/log-manager.h
-include/TelepathyLoggerQt/log-walker.h
-include/TelepathyLoggerQt/object.h
-include/TelepathyLoggerQt/pending-dates.h
-include/TelepathyLoggerQt/pending-entities.h
-include/TelepathyLoggerQt/pending-events.h
-include/TelepathyLoggerQt/pending-operation.h
-include/TelepathyLoggerQt/pending-search.h
-include/TelepathyLoggerQt/search-hit.h
-include/TelepathyLoggerQt/text-event.h
-include/TelepathyLoggerQt/types.h
-lib/cmake/TelepathyLoggerQt/TelepathyLoggerQtConfig.cmake
-lib/cmake/TelepathyLoggerQt/TelepathyLoggerQtConfigVersion.cmake
-lib/cmake/TelepathyLoggerQt/TelepathyLoggerQtTargets-%%CMAKE_BUILD_TYPE%%.cmake
-lib/cmake/TelepathyLoggerQt/TelepathyLoggerQtTargets.cmake
-lib/libtelepathy-logger-qt.so
-lib/libtelepathy-logger-qt.so.0.9.80.0
-lib/libtelepathy-logger-qt.so.5