aboutsummaryrefslogtreecommitdiff
path: root/math/gh-bc
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2020-11-30 15:44:57 +0000
committerStefan Eßer <se@FreeBSD.org>2020-11-30 15:44:57 +0000
commiteac84e728faa0a5c84caf4b801f0d76a2b6c37e5 (patch)
treed61354a770ee0c73d7bcd99bf71b0066955d4255 /math/gh-bc
parentc7cbf735fc498e2f760c2e9b946c994527266096 (diff)
Notes
Diffstat (limited to 'math/gh-bc')
-rw-r--r--math/gh-bc/Makefile2
-rw-r--r--math/gh-bc/distinfo6
-rw-r--r--math/gh-bc/files/patch-gen_strgen.sh28
3 files changed, 4 insertions, 32 deletions
diff --git a/math/gh-bc/Makefile b/math/gh-bc/Makefile
index 29b97fbe3b4b..c2a6be70fe0d 100644
--- a/math/gh-bc/Makefile
+++ b/math/gh-bc/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= bc
-PORTVERSION= 3.2.0
+PORTVERSION= 3.2.3
CATEGORIES= math lang
PKGNAMEPREFIX= gh-
diff --git a/math/gh-bc/distinfo b/math/gh-bc/distinfo
index 346ea3f80f66..65277f8f999a 100644
--- a/math/gh-bc/distinfo
+++ b/math/gh-bc/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1606407249
-SHA256 (gavinhoward-bc-3.2.0_GH0.tar.gz) = f5e5f3ec9dc8a7ca323ff8fceadd00228a8111dd694b3f3230a38014cf25be4c
-SIZE (gavinhoward-bc-3.2.0_GH0.tar.gz) = 1081293
+TIMESTAMP = 1606750654
+SHA256 (gavinhoward-bc-3.2.3_GH0.tar.gz) = 3f50668a459e35018328d4b0133b5065e15a1fb0dbe772590aa58fee4347783c
+SIZE (gavinhoward-bc-3.2.3_GH0.tar.gz) = 1081575
diff --git a/math/gh-bc/files/patch-gen_strgen.sh b/math/gh-bc/files/patch-gen_strgen.sh
deleted file mode 100644
index 0f7b6fb83e42..000000000000
--- a/math/gh-bc/files/patch-gen_strgen.sh
+++ /dev/null
@@ -1,28 +0,0 @@
---- gen/strgen.sh.orig 2020-11-26 16:00:16 UTC
-+++ gen/strgen.sh
-@@ -32,18 +32,19 @@ export LC_CTYPE=C
-
- progname=${0##*/}
-
--if [ $# -lt 4 ]; then
-- echo "usage: $progname input output name header [label [define [remove_tabs]]]"
-+if [ $# -lt 3 ]; then
-+ echo "usage: $progname input output name [label [define [remove_tabs]]]"
- exit 1
- fi
-
-+# gen/strgen gen/lib2.bc gen/lib2.c bc_lib2 bc_lib2_name "BC_ENABLED && BC_ENABLE_EXTRA_MATH" 1
-+
- input="$1"
- output="$2"
- name="$3"
--header="$4"
--label="$5"
--define="$6"
--remove_tabs="$7"
-+label="$4"
-+define="$5"
-+remove_tabs="$6"
-
- exec < "$input"
- exec > "$output"