mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
textproc/toml-f: update 0.3.1 → 0.4.2
This commit is contained in:
parent
a44d7b55ac
commit
827f6326f1
5 changed files with 44 additions and 43 deletions
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= dftbplus
|
||||
DISTVERSION= 24.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= science
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= simple-dftd3
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.1.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= science # chemistry
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
PORTNAME= toml-f
|
||||
DISTVERSION= 0.3.1
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 0.4.2
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= TOML parser for data serialization and deserialization in Fortran
|
||||
WWW= https://toml-f.github.io/toml-f/
|
||||
WWW= https://toml-f.github.io/toml-f/ \
|
||||
https://github.com/toml-f/toml-f
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE-MIT
|
||||
|
@ -19,7 +19,4 @@ USE_LDCONFIG= yes
|
|||
CMAKE_ON= BUILD_SHARED_LIBS
|
||||
CMAKE_TESTING_ON= FREEBSD_BUILD_TESTS
|
||||
|
||||
post-patch: # see https://github.com/toml-f/toml-f/issues/51
|
||||
@${REINPLACE_CMD} -e 's|$${CMAKE_Fortran_COMPILER_ID}-$${CMAKE_Fortran_COMPILER_VERSION}||' ${WRKSRC}/config/CMakeLists.txt
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1663314668
|
||||
SHA256 (toml-f-0.3.1.tar.xz) = 7f40f60c8d9ffbb1b99fb051a3e6682c7dd04d7479aa1cf770eff8174b02544f
|
||||
SIZE (toml-f-0.3.1.tar.xz) = 382376
|
||||
TIMESTAMP = 1731994235
|
||||
SHA256 (toml-f-0.4.2.tar.xz) = 6b49013d3bcd1043494c140d7b2da6b0cedd87648e4fc5179fcfcf41226d3232
|
||||
SIZE (toml-f-0.4.2.tar.xz) = 406944
|
||||
|
|
|
@ -1,40 +1,43 @@
|
|||
include/toml-f/tomlf.mod
|
||||
include/toml-f/tomlf_all.mod
|
||||
include/toml-f/tomlf_build.mod
|
||||
include/toml-f/tomlf_build_array.mod
|
||||
include/toml-f/tomlf_build_keyval.mod
|
||||
include/toml-f/tomlf_build_merge.mod
|
||||
include/toml-f/tomlf_build_path.mod
|
||||
include/toml-f/tomlf_build_table.mod
|
||||
include/toml-f/tomlf_constants.mod
|
||||
include/toml-f/tomlf_datetime.mod
|
||||
include/toml-f/tomlf_de.mod
|
||||
include/toml-f/tomlf_de_abc.mod
|
||||
include/toml-f/tomlf_de_context.mod
|
||||
include/toml-f/tomlf_de_lexer.mod
|
||||
include/toml-f/tomlf_de_parser.mod
|
||||
include/toml-f/tomlf_de_token.mod
|
||||
include/toml-f/tomlf_diagnostic.mod
|
||||
include/toml-f/tomlf_error.mod
|
||||
include/toml-f/tomlf_ser.mod
|
||||
include/toml-f/tomlf_structure.mod
|
||||
include/toml-f/tomlf_structure_base.mod
|
||||
include/toml-f/tomlf_structure_vector.mod
|
||||
include/toml-f/tomlf_terminal.mod
|
||||
include/toml-f/tomlf_type.mod
|
||||
include/toml-f/tomlf_type_array.mod
|
||||
include/toml-f/tomlf_type_keyval.mod
|
||||
include/toml-f/tomlf_type_table.mod
|
||||
include/toml-f/tomlf_type_value.mod
|
||||
include/toml-f/tomlf_utils.mod
|
||||
include/toml-f/tomlf_utils_io.mod
|
||||
include/toml-f/tomlf_utils_sort.mod
|
||||
include/toml-f/tomlf_version.mod
|
||||
include/toml-f/modules/tomlf.mod
|
||||
include/toml-f/modules/tomlf_all.mod
|
||||
include/toml-f/modules/tomlf_build.mod
|
||||
include/toml-f/modules/tomlf_build_array.mod
|
||||
include/toml-f/modules/tomlf_build_keyval.mod
|
||||
include/toml-f/modules/tomlf_build_merge.mod
|
||||
include/toml-f/modules/tomlf_build_path.mod
|
||||
include/toml-f/modules/tomlf_build_table.mod
|
||||
include/toml-f/modules/tomlf_constants.mod
|
||||
include/toml-f/modules/tomlf_datetime.mod
|
||||
include/toml-f/modules/tomlf_de.mod
|
||||
include/toml-f/modules/tomlf_de_abc.mod
|
||||
include/toml-f/modules/tomlf_de_context.mod
|
||||
include/toml-f/modules/tomlf_de_lexer.mod
|
||||
include/toml-f/modules/tomlf_de_parser.mod
|
||||
include/toml-f/modules/tomlf_de_token.mod
|
||||
include/toml-f/modules/tomlf_diagnostic.mod
|
||||
include/toml-f/modules/tomlf_error.mod
|
||||
include/toml-f/modules/tomlf_ser.mod
|
||||
include/toml-f/modules/tomlf_structure.mod
|
||||
include/toml-f/modules/tomlf_structure_array_list.mod
|
||||
include/toml-f/modules/tomlf_structure_list.mod
|
||||
include/toml-f/modules/tomlf_structure_map.mod
|
||||
include/toml-f/modules/tomlf_structure_node.mod
|
||||
include/toml-f/modules/tomlf_structure_ordered_map.mod
|
||||
include/toml-f/modules/tomlf_terminal.mod
|
||||
include/toml-f/modules/tomlf_type.mod
|
||||
include/toml-f/modules/tomlf_type_array.mod
|
||||
include/toml-f/modules/tomlf_type_keyval.mod
|
||||
include/toml-f/modules/tomlf_type_table.mod
|
||||
include/toml-f/modules/tomlf_type_value.mod
|
||||
include/toml-f/modules/tomlf_utils.mod
|
||||
include/toml-f/modules/tomlf_utils_io.mod
|
||||
include/toml-f/modules/tomlf_utils_sort.mod
|
||||
include/toml-f/modules/tomlf_version.mod
|
||||
lib/cmake/toml-f/toml-f-config-version.cmake
|
||||
lib/cmake/toml-f/toml-f-config.cmake
|
||||
lib/cmake/toml-f/toml-f-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/toml-f/toml-f-targets.cmake
|
||||
lib/libtoml-f.so
|
||||
lib/libtoml-f.so.0
|
||||
lib/libtoml-f.so.0.3.1
|
||||
lib/libtoml-f.so.0.4.2
|
||||
libdata/pkgconfig/toml-f.pc
|
||||
|
|
Loading…
Add table
Reference in a new issue