diff --git a/lang/lfortran/Makefile b/lang/lfortran/Makefile index e099bc48db32..70963fffd0c2 100644 --- a/lang/lfortran/Makefile +++ b/lang/lfortran/Makefile @@ -1,79 +1,79 @@ PORTNAME= lfortran DISTVERSIONPREFIX= v -DISTVERSION= 0.31.0 +DISTVERSION= 0.32.0 CATEGORIES= lang MAINTAINER= fortran@FreeBSD.org COMMENT= Modern interactive Fortran compiler built on top of LLVM WWW= https://lfortran.org/ LICENSE= BSD3CLAUSE BROKEN_i386= sizeof(YYSTYPE) != sizeof(Vec) BUILD_DEPENDS= bash:shells/bash \ re2c>0:devel/re2c \ dwarfdump:devel/dwarfdump \ pandoc:textproc/hs-pandoc \ rapidjson>0:devel/rapidjson LIB_DEPENDS= libfmt.so:devel/libfmt \ libzstd.so:archivers/zstd \ libunwind.so:devel/libunwind \ libLLVM-${LLVM_VERSION}.so:devel/llvm${LLVM_VERSION} RUN_DEPENDS= dwarfdump:devel/dwarfdump USE_GITHUB= yes USES= bison cmake:testing compiler:c++17-lang pkgconfig \ python:build ssl shebangfix SHEBANG_FILES= *.sh BINARY_ALIAS= python=${PYTHON_CMD} CMAKE_ON= LFORTRAN_BUILD_ALL WITH_DWARFDUMP WITH_FMT WITH_JSON \ WITH_LINKH WITH_LLVM WITH_STACKTRACE WITH_UNWIND USE_LDCONFIG= yes LLVM_VERSION= 15 # 16 is supported too OPTIONS_DEFINE= EXAMPLES # NB # NB is broken ATM NB_DESC= Documentation as a Jupyter notebook NB_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx@${PY_FLAVOR} \ sphinx-intl:textproc/py-sphinx@${PY_FLAVOR} \ myst-inv:textproc/py-myst-parser@${PY_FLAVOR} \ jupyter:devel/py-jupyter-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nbsphinx>0:textproc/py-nbsphinx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx_material>0:textproc/py-sphinx-material@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx-copybutton>0:textproc/py-sphinx-copybutton@${PY_FLAVOR} \ PORTEXAMPLES= * # Xeus: version 3.0.5 is required and xeus-zmq 1.0.2 # + xtl-quant-stack + cppzmq + nlohmann_json + LibUUID + libzmq4 # See https://github.com/lfortran/lfortran/issues/1255 #BUILD_DEPENDS+= xtl-quant-stack>=0.7:devel/xtl-quant-stack \ # nlohmann-json>0:devel/nlohmann-json \ # cppzmq>=4.8.1:net/cppzmq #LIB_DEPENDS+= libxeus.so:devel/xeus \ # libzmq.so:net/libzmq4 \ # libxeus-zmq.so:devel/xeus-zmq \ # libuuid.so:misc/e2fsprogs-libuuid CMAKE_OFF+= WITH_XEUS # BFD: USE_BINUTILS= yes CMAKE_ON+= WITH_BFD LIB_DEPENDS+= libbfd.so:devel/binutils PLIST_SUB= VER=${PORTVERSION} pre-configure: ${ECHO_CMD} ${PORTVERSION} > ${WRKSRC}/version do-build-NB-on: (cd ${WRKSRC}/doc && ${PYTHON_CMD} build.py) post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/lang/lfortran/distinfo b/lang/lfortran/distinfo index 6a4f6e2038a4..da4de830f35f 100644 --- a/lang/lfortran/distinfo +++ b/lang/lfortran/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1706111722 -SHA256 (lfortran-lfortran-v0.31.0_GH0.tar.gz) = 0af63b03b479bdf8926f8cd691095dcef7c0bab923617a9f0b9f7110c929713c -SIZE (lfortran-lfortran-v0.31.0_GH0.tar.gz) = 2524597 +TIMESTAMP = 1706452079 +SHA256 (lfortran-lfortran-v0.32.0_GH0.tar.gz) = 3f241991db9f0db1e658aecacf33be318e6ca4fbe77132379224873a5639cb12 +SIZE (lfortran-lfortran-v0.32.0_GH0.tar.gz) = 2551566 diff --git a/lang/lfortran/files/patch-build0.sh b/lang/lfortran/files/patch-build0.sh index 0f96d2b720b7..1e3c454231e4 100644 --- a/lang/lfortran/files/patch-build0.sh +++ b/lang/lfortran/files/patch-build0.sh @@ -1,20 +1,20 @@ ---- build0.sh.orig 2022-11-01 11:12:16 UTC +--- build0.sh.orig 2024-01-28 14:28:08 UTC +++ build0.sh -@@ -4,7 +4,7 @@ set -e +@@ -4,7 +4,7 @@ set -x set -x # Generate the `version` file -ci/version.sh +#ci/version.sh # Generate a Fortran AST from AST.asdl (C++) python src/libasr/asdl_cpp.py grammar/AST.asdl src/lfortran/ast.h -@@ -16,7 +16,7 @@ python src/libasr/wasm_instructions_visitor.py +@@ -18,7 +18,7 @@ python src/libasr/intrinsic_func_registry_util_gen.py # Generate the tokenizer and parser - (cd src/lfortran/parser && re2c -W -b tokenizer.re -o tokenizer.cpp) - (cd src/lfortran/parser && re2c -W -b preprocessor.re -o preprocessor.cpp) + (cd src/lfortran && re2c -W -b parser/tokenizer.re -o parser/tokenizer.cpp) + (cd src/lfortran && re2c -W -b parser/preprocessor.re -o parser/preprocessor.cpp) -(cd src/lfortran/parser && bison -Wall -d -r all parser.yy) +(cd src/lfortran/parser && bison -Wall -d -v -r all parser.yy) grep -n "'" src/lfortran/parser/parser.yy && echo "Single quote not allowed" && exit 1 echo "OK"