diff --git a/lang/lfortran/Makefile b/lang/lfortran/Makefile index bae83f2fe07d..c2ae4fd80ce9 100644 --- a/lang/lfortran/Makefile +++ b/lang/lfortran/Makefile @@ -1,83 +1,83 @@ PORTNAME= lfortran DISTVERSIONPREFIX= v -DISTVERSION= 0.60.0 +DISTVERSION= 0.61.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 \ libkokkoscore.so:devel/kokkos RUN_DEPENDS= dwarfdump:devel/dwarfdump USE_GITHUB= yes USES= bison cmake:testing compiler:c++17-lang llvm:20,lib pkgconfig \ python:build ssl shebangfix SHEBANG_GLOB= *.py *.sh BINARY_ALIAS= python=${PYTHON_CMD} CMAKE_ON= LFORTRAN_BUILD_ALL WITH_DWARFDUMP WITH_FMT WITH_JSON \ WITH_KOKKOS WITH_LINKH WITH_LLVM WITH_LLVM_STACKTRACE \ WITH_MLIR WITH_STACKTRACE WITH_UNWIND CMAKE_ARGS= -DLLVM_INSTALL_DIR:PATH="${LOCALBASE}/llvm${LLVM_VERSION}" \ -DMLIR_DIR:PATH="${LOCALBASE}/llvm${LLVM_VERSION}/lib/cmake/mlir" \ -DCMAKE_PREFIX_PATH:PATH="${LOCALBASE}/llvm${LLVM_VERSION};${CMAKE_PREFIX_PATH}" USE_LDCONFIG= yes LLVM_VERSION= 20 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 5.1.0 is required and xeus-zmq 3.0.0 # + 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/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 fd46ea3b0637..8c51387de9df 100644 --- a/lang/lfortran/distinfo +++ b/lang/lfortran/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770832227 -SHA256 (lfortran-lfortran-v0.60.0_GH0.tar.gz) = 975f18673c303e9ed28987f1840fa16a54fd269736d3d206fbb6064a41e13e08 -SIZE (lfortran-lfortran-v0.60.0_GH0.tar.gz) = 3884464 +TIMESTAMP = 1773499952 +SHA256 (lfortran-lfortran-v0.61.0_GH0.tar.gz) = 7bb5c609dfff1aef3ef1c75c82fba9889da9949bc5055612e6f1d039f4f2d4ce +SIZE (lfortran-lfortran-v0.61.0_GH0.tar.gz) = 4134363 diff --git a/lang/lfortran/files/patch-build0.sh b/lang/lfortran/files/patch-build0.sh index 55b89e4e998c..ad4bc6e11f41 100644 --- a/lang/lfortran/files/patch-build0.sh +++ b/lang/lfortran/files/patch-build0.sh @@ -1,20 +1,11 @@ ---- build0.sh.orig 2025-01-17 18:59:54 UTC +--- build0.sh.orig 2026-03-14 14:52:43 UTC +++ build0.sh @@ -7,7 +7,7 @@ BISON=${BISON:-bison} BISON=${BISON:-bison} # 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 -@@ -21,7 +21,7 @@ python src/libasr/intrinsic_func_registry_util_gen.py - # Generate the tokenizer and parser - (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"