Commit 33a26073 authored by Muhammad Moinur Rahman's avatar Muhammad Moinur Rahman
Browse files

www/drupal9: Remove expired port

2023-12-31 www/drupal9: Upstream EOL reaches on 2023-11-01
parent 2e4a9821
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8234,3 +8234,4 @@ mail/libspf||2023-12-31|Has expired: Abandonware, last commit upstream 14 years
graphics/sage||2023-12-31|Has expired: There has been no release for most of the Worldforge libraries in the past 10 years.
dns/updatedd||2023-12-31|Has expired: Last release in 2006 and upstream is dead. Consider migrating to dns/inadyn, dns/ddclient or dns/godns
multimedia/ppm2fli||2023-12-31|Has expired: BROKEN on all supported versions after the EOL of 12
www/drupal9||2023-12-31|Has expired: Upstream EOL reaches on 2023-11-01
+0 −1
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@
    SUBDIR += drupal10
    SUBDIR += drupal7
    SUBDIR += drupal7-wysiwyg
    SUBDIR += drupal9
    SUBDIR += drush
    SUBDIR += dtse
    SUBDIR += dufs

www/drupal9/Makefile

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
PORTNAME=	drupal9
PORTVERSION=	9.5.11
CATEGORIES=	www
MASTER_SITES=	http://ftp.drupal.org/files/projects/
DISTNAME=	drupal-${PORTVERSION}
DIST_SUBDIR=	drupal

MAINTAINER=	acm@FreeBSD.org
COMMENT=	Database driven web content management system (CMS)
WWW=		https://www.drupal.org/

LICENSE=	GPLv2+

DEPRECATED=	Upstream EOL reaches on 2023-11-01
EXPIRATION_DATE=	2023-12-31

USES=		php:web shebangfix
USE_PHP=	dom filter gd mbstring opcache pdo session \
		simplexml tokenizer xml
SHEBANG_FILES=	core/scripts/password-hash.sh

NO_ARCH=	yes
NO_BUILD=	yes
DOCS=		core/CHANGELOG.txt core/INSTALL.mysql.txt core/INSTALL.sqlite.txt \
		LICENSE.txt core/COPYRIGHT.txt core/INSTALL.pgsql.txt \
		core/INSTALL.txt core/MAINTAINERS.txt core/UPDATE.txt

OPTIONS_DEFINE=		MYSQL SQLITE3 PGSQL DOCS
OPTIONS_DEFAULT=	MYSQL

SUB_FILES+=	pkg-message

PGSQL_USES=	pgsql
PGSQL_USE=	PHP=pdo_pgsql
SQLITE3_USE=	PHP=pdo_sqlite
MYSQL_USES=	mysql
MYSQL_USE=	PHP=pdo_mysql

post-extract:
	@${MKDIR} ${WRKDIR}/DOCS
	@${MV} ${DOCS:S|^|${WRKSRC}/|} ${WRKDIR}/DOCS/

do-install:
	(cd ${WRKSRC} && ${COPYTREE_SHARE} . \
		${STAGEDIR}${WWWDIR})

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	(cd ${WRKDIR}/DOCS && ${COPYTREE_SHARE} . \
		${STAGEDIR}${DOCSDIR})

.include <bsd.port.mk>

www/drupal9/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1695256665
SHA256 (drupal/drupal-9.5.11.tar.gz) = c0bebd4fc4e7ddca9df8569fce0ee337fd28922917faa749d479e99176151f2c
SIZE (drupal/drupal-9.5.11.tar.gz) = 22593304

www/drupal9/files/pkg-message.in

deleted100644 → 0
+0 −51
Original line number Diff line number Diff line
[
{ type: install
  message: <<EOM
Complete instructions for installing and configuring Drupal can be found here:

%%DOCSDIR%%/INSTALL.txt

You need to create the DB where Drupal is going to live, and depending on
which database you intend to use, you should consult one of the following
documents:

 %%DOCSDIR%%/INSTALL.mysql.txt
 %%DOCSDIR%%/INSTALL.pgsql.txt
 %%DOCSDIR%%/INSTALL.sqlite.txt

You also need to add appropriate configuration directives to your apache
configuration file (%%PREFIX%%/etc/apache(2)/httpd.conf).

A typical configuration might read:

    Alias /drupal "%%WWWDIR%%"
    <Directory "%%WWWDIR%%">
	Options Indexes FollowSymlinks MultiViews
	AllowOverride all
	Require all granted
    </Directory>

Please see http://drupal.org/cron for important information on setting up
periodic maintenance tasks in Drupal.

Please see http://drupal.org/requirements for important information on
system requirements for Drupal 9.  In particular, please ensure that your
configuration:

- uses PHP 8.0 or later
- PHP "memory_limit" is set to "32Mb" or larger
- PHP "register_globals" is set to "Off"
- PHP "safe_mode" is set to "Off"
- PHP "session.cache_limiter" is set to "nocache"
EOM
}
{ type: UPGRADE
  message: <<EOM
For important information about upgrading from previous versions of Drupal, please
please see: %%DOCSDIR%%/UPDATE.txt

You can install www/drush if you have problems with Drupal update. Drush is a 
command line tool for Drupal
EOM
}
]
Loading