Commit 2fb224a1 authored by Rene Ladan's avatar Rene Ladan
Browse files

cleanup: Remove expired ports:

2022-06-25 lang/cmucl: Not supported upstream since 2017 and broken since FreeBSD 12.1
2022-06-25 devel/qbs: Abandoned and not working with modern clang
2022-06-25 lang/cmucl-extra: lang/cmucl is not supported upstream since 2017 and broken since FreeBSD 12.1
2022-06-25 security/protonvpn-cli: This version is deprecated and unsupported upstream. The port needs an update, which would require a fair amount of effort. Use OpenVPN or Wireguard with configuration files provided by ProtonVPN instead.
2022-06-27 sysutils/firstboot-growfs: A better version is available on all FreeBSD version
2022-06-27 security/modsecurity3-apache: The project was not developed further
2022-06-29 net-mgmt/zabbix54-frontend: Unsupported by upstream
2022-06-29 net-mgmt/zabbix54-server: Unsupported by upstream
parent 466b6f0c
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -17221,3 +17221,11 @@ textproc/rubygem-elasticsearch-rails6|textproc/rubygem-elasticsearch-rails|2022-
devel/p5-Goo-Canvas|devel/p5-Goo-Canvas2|2022-06-24|Obsolete use devel/p5-Goo-Canvas2 instead
graphics/goocanvas|graphics/goocanvas3|2022-06-24|Obsolete use graphics/goocanvas3
x11-toolkits/tepl|x11-toolkits/tepl6|2022-06-25|Obsolete use x11-toolkits/tepl6
lang/cmucl||2022-06-27|Has expired: Not supported upstream since 2017 and broken since FreeBSD 12.1
devel/qbs||2022-06-27|Has expired: Abandoned and not working with modern clang
lang/cmucl-extra||2022-06-27|Has expired: lang/cmucl is not supported upstream since 2017 and broken since FreeBSD 12.1
security/protonvpn-cli||2022-06-27|Has expired: This version is deprecated and unsupported upstream. The port needs an update, which would require a fair amount of effort. Use OpenVPN or Wireguard with configuration files provided by ProtonVPN instead.
sysutils/firstboot-growfs||2022-06-27|Has expired: A better version is available on all FreeBSD version
security/modsecurity3-apache||2022-06-27|Has expired: The project was not developed further
net-mgmt/zabbix54-frontend||2022-06-27|Has expired: Unsupported by upstream
net-mgmt/zabbix54-server||2022-06-27|Has expired: Unsupported by upstream
+0 −1
Original line number Diff line number Diff line
@@ -5622,7 +5622,6 @@
    SUBDIR += pythontidy
    SUBDIR += pytype
    SUBDIR += qbe
    SUBDIR += qbs
    SUBDIR += qca
    SUBDIR += qconf
    SUBDIR += qcoro

devel/qbs/Makefile

deleted100644 → 0
+0 −29
Original line number Diff line number Diff line
PORTNAME=	qbs
DISTVERSIONPREFIX=	src-
DISTVERSION=	1.21.0
PORTREVISION=	1
CATEGORIES=	devel
MASTER_SITES=	QT/official_releases/${PORTNAME}/${PORTVERSION}
DIST_SUBDIR=	KDE/Qt/qbs

MAINTAINER=	kde@FreeBSD.org
COMMENT=	Qbs Build Suite

LICENSE=	GPLv3 LGPL21
LICENSE_COMB=	dual

BROKEN=		does not build with clang13 or newer
DEPRECATED=		Abandoned and not working with modern clang
EXPIRATION_DATE=	2022-06-25

USES=		cmake compiler:c++11-lib gl python:run qt:5 shebangfix
USE_GL=		gl
USE_LDCONFIG=	yes
USE_QT=		core concurrent gui network script widgets xml \
		buildtools_build testlib_build

SHEBANG_FILES=	src/3rdparty/python/bin/dmgbuild

PLIST_SUB=		SHLIB_VERSION="${PORTVERSION}"

.include <bsd.port.mk>

devel/qbs/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1639525080
SHA256 (KDE/Qt/qbs/qbs-src-1.21.0.tar.gz) = bfed9d93f94989986dd72e81fac5f39e30de058431133a21aaf9971455b335e7
SIZE (KDE/Qt/qbs/qbs-src-1.21.0.tar.gz) = 5082730
+0 −11
Original line number Diff line number Diff line
--- src/app/qbs-setup-qt/setupqt.cpp.orig	2021-11-28 22:25:29 UTC
+++ src/app/qbs-setup-qt/setupqt.cpp
@@ -70,7 +70,7 @@ static QStringList qmakeExecutableNames()
 {
     const QString baseName = HostOsInfo::appendExecutableSuffix(QStringLiteral("qmake"));
     QStringList lst(baseName);
-    if (HostOsInfo::isLinuxHost()) {
+    if (true || HostOsInfo::isLinuxHost()) {
         // Some distributions ship binaries called qmake-qt5 or qmake-qt4.
         lst << baseName + QLatin1String("-qt5") << baseName + QLatin1String("-qt4");
     }
Loading