head	1.9;
access;
symbols
	pkgsrc-2026Q1:1.9.0.20
	pkgsrc-2026Q1-base:1.9
	pkgsrc-2025Q4:1.9.0.18
	pkgsrc-2025Q4-base:1.9
	pkgsrc-2025Q3:1.9.0.16
	pkgsrc-2025Q3-base:1.9
	pkgsrc-2025Q2:1.9.0.14
	pkgsrc-2025Q2-base:1.9
	pkgsrc-2025Q1:1.9.0.12
	pkgsrc-2025Q1-base:1.9
	pkgsrc-2024Q4:1.9.0.10
	pkgsrc-2024Q4-base:1.9
	pkgsrc-2024Q3:1.9.0.8
	pkgsrc-2024Q3-base:1.9
	pkgsrc-2024Q2:1.9.0.6
	pkgsrc-2024Q2-base:1.9
	pkgsrc-2024Q1:1.9.0.4
	pkgsrc-2024Q1-base:1.9
	pkgsrc-2023Q4:1.9.0.2
	pkgsrc-2023Q4-base:1.9
	pkgsrc-2023Q3:1.8.0.2
	pkgsrc-2023Q3-base:1.8
	pkgsrc-2023Q2:1.5.0.2
	pkgsrc-2023Q2-base:1.5
	pkgsrc-2023Q1:1.4.0.6
	pkgsrc-2023Q1-base:1.4
	pkgsrc-2022Q4:1.4.0.4
	pkgsrc-2022Q4-base:1.4
	pkgsrc-2022Q3:1.4.0.2
	pkgsrc-2022Q3-base:1.4
	pkgsrc-2022Q2:1.3.0.2
	pkgsrc-2022Q2-base:1.3
	pkgsrc-2022Q1:1.2.0.2
	pkgsrc-2022Q1-base:1.2
	pkgsrc-2021Q4:1.1.0.2
	pkgsrc-2021Q4-base:1.1;
locks; strict;
comment	@# @;


1.9
date	2023.10.19.13.10.19;	author wiz;	state Exp;
branches;
next	1.8;
commitid	6LPXlaY5TsUBMeJE;

1.8
date	2023.07.18.14.11.17;	author nia;	state Exp;
branches;
next	1.7;
commitid	fR53LOgFr7LO6ixE;

1.7
date	2023.07.13.13.45.42;	author nia;	state Exp;
branches;
next	1.6;
commitid	4kRTXP8H4e6M7EwE;

1.6
date	2023.07.09.15.17.46;	author nia;	state Exp;
branches;
next	1.5;
commitid	tfWcBzRFHgEBL8wE;

1.5
date	2023.04.26.19.57.06;	author wiz;	state Exp;
branches;
next	1.4;
commitid	u54GsoLgMMPTGEmE;

1.4
date	2022.09.09.15.04.37;	author wiz;	state Exp;
branches;
next	1.3;
commitid	gAZ0HMFQuJIVqcTD;

1.3
date	2022.05.04.06.44.12;	author wiz;	state Exp;
branches;
next	1.2;
commitid	WcVsEDwCzZrmMHCD;

1.2
date	2022.03.08.08.51.49;	author wiz;	state Exp;
branches;
next	1.1;
commitid	9do9YCtwF7aGjovD;

1.1
date	2021.12.09.16.28.33;	author wiz;	state Exp;
branches;
next	;
commitid	vyQFC7eff44PHZjD;


desc
@@


1.9
log
@tomlplusplus: update to 3.4.0.

## v3.4.0

#### Fixes

-   fixed `value_flags` not being preserved correctly when inserting into tables and arrays (#108) (@@LebJe)
-   fixed `toml::value::flags()` not being cleared when `std::move`-ing a value
-   fixed error in README (#195) (@@andrewkcorcoran)
-   fixed compiler error when using NVCC (#198) (@@thompsonnoahe)
-   fixed `noexcept(...)` sometimes being incorrectly derived on `for_each()`
-   fixed `for_each()` compilation error on GCC &lt;= 7 (#197) (@@sagi-ottopia, @@damirbarr)
-   fixed `FLT_RADIX` check getting broken by Intel MKL headers (#202) (@@iago-lito)
-   fixed keys containing `\t` incorrectly formatting as bare keys (@@jasmine-zhu, @@arp242)
-   fixed keys containing `\t` and `\n` not round-tripping correctly (@@arp242)

#### Additions

-   added support for using enums with `value_or()`

#### Changes:

-   renamed header files to have `.hpp` extension (`toml.h` is still present for backwards-compatibility)

#### Build system:

-   fixed meson builds with `-Ddefault_library=static` having hidden symbols on GNU compilers (#201) (@@vlad0x00)
@
text
@# $NetBSD: Makefile,v 1.8 2023/07/18 14:11:17 nia Exp $

DISTNAME=	tomlplusplus-3.4.0
CATEGORIES=	devel
MASTER_SITES=	${MASTER_SITE_GITHUB:=marzer/}
GITHUB_TAG=	v${PKGVERSION_NOREV}

MAINTAINER=	pkgsrc-users@@NetBSD.org
HOMEPAGE=	https://marzer.github.io/tomlplusplus/
COMMENT=	TOML library for c++
LICENSE=	mit

USE_CMAKE=	yes
USE_LANGUAGES=	c c++
MESON_ARGS+=	--datadir=lib

USE_CXX_FEATURES+=	c++17

.include "../../devel/meson/build.mk"
.include "../../mk/bsd.pkg.mk"
@


1.8
log
@devel: Adapt packages to use USE_(CC|CXX)_FEATURES
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.7 2023/07/13 13:45:42 nia Exp $
d3 1
a3 1
DISTNAME=	tomlplusplus-3.3.0
@


1.7
log
@*: remove all instances of GCC_REQD where my name is the most recent in
"cvs annotate" (part 1)

Hopefully this commit can be reviewed later if a better replacement
for GCC_REQD is committed.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.6 2023/07/09 15:17:46 nia Exp $
d17 2
@


1.6
log
@tomlplusplus: Require a C++17 compiler.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.5 2023/04/26 19:57:06 wiz Exp $
a16 3
# C++17
GCC_REQD+=	7

@


1.5
log
@tomlplusplus: update to 3.3.0.

Now installs a library.

## v3.3.0

#### Fixes:

-   fixed null pointer dereference in parser when exceptions are disabled (#169) (@@ncaklovic)
-   fixed spurious warnings in MSVC 19.34
-   fixed `toml::parse_file()` on windows for non-ASCII paths
-   fixed a spurious table redefinition error (#187) (@@jorisvr)
-   fixed UB edge-case in integer parsing (#188) (@@jorisvr)
-   fixed some build issues with Apple-flavoured Clang (#189) (@@eddelbuettel)

#### Additions:

-   added `toml::format_flags::terse_key_value_pairs`
-   added `TOML_ENABLE_FLOAT16` config (#178) (@@Scrumplex)

#### Removals:

-   removed automatic detection of `_Float16` (you must explicitly set `TOML_ENABLE_FLOAT16` to enable it) (#186) (@@benthetechguy)

#### Build system:

-   re-wrote the meson scripts to fix a number of issues (#185, #186) (@@Tachi107, @@benthetechguy)
-   increased the minimum required meson version to `0.61.0`
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2022/09/09 15:04:37 wiz Exp $
d17 3
@


1.4
log
@tomlplusplus: update to 3.2.0.

## v3.2.0

#### Fixes:
- fixed `[dotted.table]` source columns sometimes being off by one (#152) (@@vaartis)
- fixed spurious `Wnull-dereference` warning on GCC (#164) (@@zaporozhets)
- fixed `print_to_stream` ambiguity for `size_t` (#167) (@@acronce)

#### Additions:
- added value type deduction to `emplace()` methods
- added `toml::path` utility type (#153, #156, #168) (@@jonestristand, @@kcsaul)
- added config option `TOML_CALLCONV`
- added missing relational operators for `source_position`

#### Changes:
- relaxed cvref requirements of `is_homogeneous()`, `emplace()`, `emplace_back()`, `emplace_hint()`
- relaxed mantissa and digits10 requirements of extended float support
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2022/05/04 06:44:12 wiz Exp $
d3 1
a3 1
DISTNAME=	tomlplusplus-3.2.0
@


1.3
log
@tomlplusplus: update to 3.1.0.

## [v3.1.0]

#### Fixes:
- Fixed potential segfault when calling `at_path()` with an empty string
- Fixed UB in internal unicode machinery (#144) (@@kchalmer)
- Fixed a number of spurious warnings with Clang 10 (#145, #146) (@@chronoxor)

#### Additions:
- Added `toml::array::for_each()`
- Added `toml::table::for_each()`
- Added config options `TOML_EXPORTED_CLASS`, `TOML_EXPORTED_MEMBER_FUNCTION`, `TOML_EXPORTED_STATIC_FUNCTION` &amp; `TOML_EXPORTED_FREE_FUNCTION`
- Added support for escape sequence `\e` when using `TOML_ENABLE_UNRELEASED_FEATURES`
- Added support for more unicode in bare keys when using `TOML_ENABLE_UNRELEASED_FEATURES`

#### Removals/Deprecations:
- Deprecated old `TOML_API` option in favour new `TOML_EXPORTED_X` options
	(it will continue to work as it did before if none of the new function export options are defined)

#### Build system:
- Meson: Added `compile_library` option (@@Tachi107)
- Meson: Added `ubsan_tests` and `ubsan_examples` options
- Meson: Use system dependencies where available when building tests (@@Tachi107)
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2022/03/08 08:51:49 wiz Exp $
d3 1
a3 1
DISTNAME=	tomlplusplus-3.1.0
@


1.2
log
@tomlplusplus: update to 3.0.1.

## 3.0.1

This is a single-bugfix release to fix an ODR issue for people using header-only mode in multiple
translation units. If you aren't seeing linker errors because of `toml::array::insert_at()`,
this release holds nothing of value over v3.0.0.

## 3.0.0


This release will be a major version bump, so it's ABI breaks all around.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2021/12/09 16:28:33 wiz Exp $
d3 1
a3 1
DISTNAME=	tomlplusplus-3.0.1
@


1.1
log
@devel/tomlplusplus: import tomlplusplus-2.5.0

TOML library for C++

Features

* Supports the latest TOML release (v1.0.0), plus optional support
  for some unreleased TOML features
* Supports serializing to JSON
* Proper UTF-8 handling (incl. BOM)
* C++17 (plus some C++20 features where available, e.g. experimental
  support for char8_t strings)
* Header-only (optional!)
* Doesn't require RTTI
* Works with or without exceptions
@
text
@d1 1
a1 1
# $NetBSD$
d3 1
a3 1
DISTNAME=	tomlplusplus-2.5.0
@

