summaryrefslogtreecommitdiff
path: root/devel/confuse
AgeCommit message (Collapse)AuthorFilesLines
2016-07-27Avoid to include "../../mk/fetch/github.mk" in package Makefileleot1-2/+1
2016-06-19Updated confuse to 3.0.wiz2-9/+9
[v3.0][] - 2016-03-03 --------------------- This release signifies a major change in libConfuse. On out-of-memory conditions at run time, invalid API input, and some other odd use-cases, libConfuse will no longer `assert()`. Instead, `NULL` or `CFG_FAIL` is returned with an error code for you to handle. For some users this will completely change how your application works, so heads up! The library ABI version has also been stepped due to this. Special thanks in this release goes out to Frank Hunleth, Peter Rosin and David Grayson for their tireless efforts in helping improve this library! **Note:** libConfuse no longer calls `setlocale()` for `LC_MESSAGES` and `LC_CTYPE`. See the documentation for `cfg_init()` for details. ### Changes * Support for handling unknown options. The idea is to provide future proofing of configuration files, i.e. if a new parameter is added, the new config file will not fail if loaded in an older version of your program. See the `CFGF_IGNORE_UNKNOWN` flag in the documenation for more information. Idea and implementation by Frank Hunleth. * Add public API for removing sections at runtime, by Peter Rosin. * Allow `cfg_opt_getval()` on options that are `CFGF_MULTI` sections, by Peter Rosin. * Add `cfg_setmulti()` and `cfg_opt_setmulti()`, by Peter Rosin. * Add CLI example of how to manage configuration changes at runtime, also by Peter Rosin. * Support for Travis-CI and Coverity Scan, by Joachim Nilsson. * Use `autoreconf` in `autogen.sh` instead of calling tools separately. * Powershell script for AppVeyor CI to build libConfuse with MSYS2 by David Grayson. * Removed calls to `setlocale()` intended to localize messages, with `LC_MESSAGES`, and region specific types, with `LC_CTYPE`. This is now the responsibility of the user of the library. * Reindent to Linux coding style for a clear and well defined look, this to ease future maintenance. Issue #33 * Add support for `CFGF_DEPRECATED` and `CFGF_DROP` option flags. The former causes libConfuse to print a deprecated warning message and the latter drops the read value on input. Idea and implementation by Sebastian Geiger. Issue #24 * Add `HACKING.md` document to detail maintenance and release checklists ### Fixes * Do not assert on API input validation, memory allocation, or similar. Instead, return error code to user for further handling. This change also includes fixes for a lot of unchecked API return values, e.g., `strdup()`. Issue #37 * Protect callers arguments to `cfg_setopt()`, by Peter Rosin * If new value to `cfg_setopt()` fails parsing, do not lose old value, by Peter Rosin. * Fixes to update support for older versions of Microsoft Visual Studio as well as MSYS2/mingw-w64 by Peter Rosin and David Grayson. * Issue #45: `cfg_init()` does not report error on multiple options with the same name. Fixed by Peter Rosin. * Fixes for memory leaks, invalid expressions, unused variables and missing error handling, all thanks to Coverity Scan
2015-11-25bulk build wants flexwiedi1-2/+2
2015-11-07gettext-tools is a build dependency, make it so.wiz1-4/+4
2015-11-06Explicitly depend on gettext-tools and gettext-m4. Fix build when thesebsiegert1-1/+3
packages are not installed. From joerg and wiz via email.
2015-11-03Update confuse to 2.8.bsiegert3-12/+23
Changes - Support for specifying a searchpath for cfg_parse(), by J.J. Green - Restore build of shared library by default, by Nathan Phillip Brink - Added German translation, contributed by Chris Leick, Aurelien Jarno, and Tux^verdreifelt. - Document CFG_SIMPLE_STR for doxygen, by Nathan Phillip Brink - Update ISC license to 2007 version, by Joachim Nilsson - Write files in a Bourne shell compatible way, by Alvaro G. M - Fix mid-string environment variable substitution, by Frank Hunleth Fixes - Various ISO C90 and -ansi fixes by Carlo Marcelo Arenas Belon - Fix C++ compiler warnings for const strings, by Craig McQueen - Fix make distcheck and out-of-source builds, by Nathan Phillip Brink - Fix missing .gitignore files, by Carlo Marcelo Arenas Belon - Fix CFG_SIMPLE_INT on 64-bit systems, by Carlo Marcelo Arenas Belon - Coding style cleanup by J.J. Green - Fix issue #27: searchpath free problems. Fix to new feature introduced in this release cycle. - Improved support for MSYS2 by David Grayson.
2015-11-03Add SHA512 digests for distfiles for devel categoryagc1-1/+2
Issues found with existing distfiles: distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip distfiles/fortran-utils-1.1.tar.gz distfiles/ivykis-0.39.tar.gz distfiles/enum-1.11.tar.gz distfiles/pvs-3.2-libraries.tgz distfiles/pvs-3.2-linux.tgz distfiles/pvs-3.2-solaris.tgz distfiles/pvs-3.2-system.tgz No changes made to these distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2011-04-22recursive bump from gettext-lib shlib bump.obache1-1/+2
2010-12-02Update to 2.7:wiz3-20/+7
New in 2.7 ---------- * Bugfix release.
2010-08-04Remove -Werror. There is a defined but not used function in thedmcmahill1-1/+5
generated lex output file.
2010-05-07Drop maintainership on these packages, I am no longer interested.ahoka1-2/+2
2009-06-13Ran pkglint --autofix on the devel/ category. Most of the changes arerillig1-4/+4
simple white-space issues like indentation and trailing spaces. The others are cross-references for Makefile.common.
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-08-13Change my email address.ahoka1-2/+2
2008-04-23Update to 2.6:wiz3-10/+14
New in 2.6 ---------- * added French translation contributed by Matthieu Sion * added build script and instructions for compiling with Mingw under Windows (contributed by Matthieu Sion) * now accepts a simplified list append syntax: option += "value" insted of option += {"value"} * added flag CFGF_NO_TITLE_DUPES: multiple section titles must be unique (duplicates raises an error, only applies to sections) (suggested by Brian Fallik) * fixed rpm builds, patch by Dan Lipsitt * always installs pkg-config .pc script * remove obsolete confuse-config script in favour of pkg-config * fixed a bug reported by Josh Kropf with single sections with titles * added patch that escapes values with quotes and backslashes when printing. * fixed a memory leak in default values for string lists, reported by Vineeth Neelakant. * windows build files now only in separate zip distribution
2007-12-21I18N (PR 37581) and DESTDIR support.joerg4-4/+21
2007-03-15Needs pkg-config, otherwise bin/confuse-config is installed.joerg1-1/+2
2007-03-02fix a bad directory namedmcmahill1-2/+2
2007-03-02import confuse-2.5dmcmahill5-0/+60
libConfuse is a configuration file parser library, licensed under the terms of the LGPL, and written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. The goal of libConfuse is not to be the configuration file parser library with a gazillion of features. Instead, it aims to be easy to use and quick to integrate with your code. libConfuse was called libcfg before, but was changed to not confuse with other similar libraries.