From owner-dev-commits-ports-all@freebsd.org Tue Jul 27 19:38:13 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3812366800F; Tue, 27 Jul 2021 19:38:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GZ6XP0sghz4yYw; Tue, 27 Jul 2021 19:38:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 05878104DA; Tue, 27 Jul 2021 19:38:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16RJcCxh099097; Tue, 27 Jul 2021 19:38:12 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16RJcCLB099096; Tue, 27 Jul 2021 19:38:12 GMT (envelope-from git) Date: Tue, 27 Jul 2021 19:38:12 GMT Message-Id: <202107271938.16RJcCLB099096@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Ryan Steinmetz Subject: git: 84d321345931 - main - www/mod_auth_mellon: Add metadata creation script, bump PORTREVISION MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: zi X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 84d321345931f4c748d62c104aa536e0fce24295 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2021 19:38:13 -0000 The branch main has been updated by zi: URL: https://cgit.FreeBSD.org/ports/commit/?id=84d321345931f4c748d62c104aa536e0fce24295 commit 84d321345931f4c748d62c104aa536e0fce24295 Author: Ryan Steinmetz AuthorDate: 2021-07-27 19:37:24 +0000 Commit: Ryan Steinmetz CommitDate: 2021-07-27 19:37:52 +0000 www/mod_auth_mellon: Add metadata creation script, bump PORTREVISION --- www/mod_auth_mellon/Makefile | 6 ++++-- www/mod_auth_mellon/files/pkg-message.in | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/www/mod_auth_mellon/Makefile b/www/mod_auth_mellon/Makefile index 18fa0dc08c11..371c1aae1f23 100644 --- a/www/mod_auth_mellon/Makefile +++ b/www/mod_auth_mellon/Makefile @@ -2,6 +2,7 @@ PORTNAME= mod_auth_mellon PORTVERSION= 0.17.0 +PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} DISTVERSIONPREFIX= v @@ -26,7 +27,7 @@ GNU_CONFIGURE= yes CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" \ PKG_CONFIG_PATH="${LOCALBASE}/libdata/pkgconfig" -PLIST_FILES= ${APACHEMODDIR}/mod_auth_mellon.so +PLIST_FILES= ${APACHEMODDIR}/mod_auth_mellon.so ${DATADIR}/mellon_create_metadata.sh SUB_FILES= pkg-message post-patch: @@ -35,9 +36,10 @@ post-patch: ${WRKSRC}/Makefile.in pre-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEMODDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEMODDIR} ${STAGEDIR}${DATADIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}/${PORTNAME}.so + ${INSTALL_SCRIPT} ${WRKSRC}/mellon_create_metadata.sh ${STAGEDIR}${DATADIR} .include diff --git a/www/mod_auth_mellon/files/pkg-message.in b/www/mod_auth_mellon/files/pkg-message.in index 1ec9768851ab..5afe48c5d667 100644 --- a/www/mod_auth_mellon/files/pkg-message.in +++ b/www/mod_auth_mellon/files/pkg-message.in @@ -7,6 +7,9 @@ LoadModule auth_mellon_module %%APACHEMODDIR%%/mod_auth_mellon.so Then create your configuration. Examples can be found here: https://github.com/latchset/mod_auth_mellon + +The metadata creation script can be found here: +%%DATADIR%%/mellon_create_metadata.sh =========================================================================== EOM }