git: 36a871b3bb9d - main - devel/dub: Remove obsolete patch file

From: Jose Alonso Cardenas Marquez <acm_at_FreeBSD.org>
Date: Tue, 15 Nov 2022 23:52:39 UTC
The branch main has been updated by acm:

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

commit 36a871b3bb9d6e490efaf0956d9fca5fb496f290
Author:     Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
AuthorDate: 2022-11-15 23:51:41 +0000
Commit:     Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
CommitDate: 2022-11-15 23:51:41 +0000

    devel/dub: Remove obsolete patch file
---
 devel/dub/files/patch-build.sh | 27 ---------------------------
 1 file changed, 27 deletions(-)

diff --git a/devel/dub/files/patch-build.sh b/devel/dub/files/patch-build.sh
deleted file mode 100644
index 10c9c43d79fa..000000000000
--- a/devel/dub/files/patch-build.sh
+++ /dev/null
@@ -1,27 +0,0 @@
---- build.sh.orig	2019-03-01 15:41:12.000000000 +0000
-+++ build.sh	2019-03-06 05:49:55.312072000 +0000
-@@ -1,4 +1,4 @@
--#!/usr/bin/env bash
-+#!/bin/sh
- set -e
- 
- if [ "$DMD" = "" ]; then
-@@ -41,9 +41,6 @@
- 	LIBS=`echo "$LIBS" | sed 's/^-L/-L-L/; s/ -L/ -L-L/g; s/^-l/-L-l/; s/ -l/ -L-l/g'`
- fi
- 
--if [ "$GITVER" = "" ]; then
--  GITVER=$(git describe) || echo "Could not determine a version with git."
--fi
- if [ "$GITVER" != "" ]; then
- 	echo Generating version file...
- 	echo "module dub.version_;" > source/dub/version_.d
-@@ -56,7 +53,7 @@
- MACOSX_DEPLOYMENT_TARGET=10.8
- 
- echo Running $DMD...
--$DMD -ofbin/dub -g -O -w -version=DubUseCurl -version=DubApplication -Isource $* $LIBS @build-files.txt
-+$DMD -ofbin/dub -O -w -version=DubUseCurl -version=DubApplication -Isource $* $LIBS @build-files.txt
- bin/dub --version
- echo DUB has been built as bin/dub.
- echo