Commit 079f7776 authored by Rene Ladan's avatar Rene Ladan
Browse files

devel/cdash: Remove expired port

2024-04-30 devel/cdash: Very outdated version that's unsupported upstream
parent 0dcae687
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3223,3 +3223,4 @@ devel/tla||2024-04-30|Has expired: Deprecated and obsolete revision control syst
devel/configkit||2024-04-30|Has expired: Depends on deprecated port devel/libphk
devel/libphk||2024-04-30|Has expired: Superseded by various other projects
games/2048-qt||2024-04-30|Has expired: Unmaintained, last upstream release in 2016
devel/cdash||2024-04-30|Has expired: Very outdated version that's unsupported upstream
+0 −1
Original line number Diff line number Diff line
@@ -370,7 +370,6 @@
    SUBDIR += ccls
    SUBDIR += ccrtp
    SUBDIR += cctz
    SUBDIR += cdash
    SUBDIR += cdecl
    SUBDIR += cdialog
    SUBDIR += cdk

devel/cdash/Makefile

deleted100644 → 0
+0 −51
Original line number Diff line number Diff line
PORTNAME=	cdash
PORTVERSION=	2.2.3
PORTREVISION=	3
CATEGORIES=	devel
MASTER_SITES=	http://www.cdash.org/wp-content/uploads/2014/11/
DISTNAME=	CDash-2-2-3

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Web-based software testing server
WWW=		https://www.cdash.org/

LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/License.txt

DEPRECATED=	Very outdated version that's unsupported upstream
EXPIRATION_DATE=2024-04-30

USES=		cmake dos2unix php zip
DOS2UNIX_GLOB=	*.php *.xml *.xsl *.txt
CMAKE_ARGS=	-DCDASH_DB_NAME:STRING=cdash \
		-DCDASH_DB_LOGIN:STRING=cdash \
		-DCDASH_DB_TYPE:STRING=${DB_TYPE}
USE_PHP=	curl gd pdo session xsl zlib
NO_ARCH=	yes

WRKSRC=		${WRKDIR}/${DISTNAME:S/./-/g}
PLIST_SUB=	WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
SUB_FILES=	pkg-message
SUB_LIST=	DB_TYPE=${DB_TYPE}

OPTIONS_SINGLE=	DB
OPTIONS_SINGLE_DB=	MYSQL PGSQL
OPTIONS_DEFAULT=MYSQL

MYSQL_USES=	mysql
MYSQL_USE=	PHP=pdo_mysql
MYSQL_VARS=	DB_TYPE=mysql

PGSQL_USES=	pgsql
PGSQL_USE=	PHP=pgsql,pdo_pgsql
PGSQL_VARS=	DB_TYPE=pgsql

do-install:
	@${MKDIR} ${WRKSRC}/rss
	${CP} ${WRKSRC}/backup/.htaccess ${WRKSRC}/rss/.htaccess
	@${MKDIR} ${STAGEDIR}${PREFIX}/www/CDash
	${FIND} ${WRKSRC} -name "*.orig" -delete
	${MV} ${WRKSRC}/cdash/config.local.php ${WRKSRC}/cdash/config.local.sample.php
	cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/www/CDash

.include <bsd.port.mk>

devel/cdash/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (CDash-2-2-3.zip) = 712c8beb7b379d356a27ed3f4829566245da8f53e89ff5fd688ae67b204f285b
SIZE (CDash-2-2-3.zip) = 2536252
+0 −19
Original line number Diff line number Diff line
--- CMakeLists.txt.orig	2016-05-16 19:20:14 UTC
+++ CMakeLists.txt
@@ -11,6 +11,7 @@ set(CDASH_DB_PASS "" CACHE STRING "Passw
 set(CDASH_DB_PORT "" CACHE STRING "Port to connect to the database")
 set(CDASH_DB_HOST "localhost" CACHE STRING "Hostname of the database server")
 set(CDASH_DB_TYPE "mysql" CACHE STRING "Database type")
+set(CDASH_DB_NAME "cdash4simpletest" CACHE STRING "Database name")
 option(CDASH_USE_SELENIUM "Should CDash use Selenium to test ajax functionality?" OFF)
 option(CDASH_PRO "Are we testing CDashPro?" OFF)
 set(CMake_SOURCE_DIR CACHE FILEPATH "Path to CMake source dir.  Set this to import tests from CMake")
@@ -97,7 +98,7 @@ file(WRITE "${CDash_SOURCE_DIR}/cdash/co
 //
 // Some of the CDash tests also inject config settings below as tests run...
 //
-$CDASH_DB_NAME = 'cdash4simpletest';
+$CDASH_DB_NAME = '${CDASH_DB_NAME}';
 $CDASH_TESTING_MODE = true;
 $CDASH_REGISTRATION_EMAIL_VERIFY = false;
 $CDASH_TESTING_RENAME_LOGS = ${rename_logs};
Loading