fast-cpp-csv-parser 0.0+git20160525~9bf299c-2 source package in Ubuntu

Changelog

fast-cpp-csv-parser (0.0+git20160525~9bf299c-2) unstable; urgency=high

  * New debian/patches/0105-cve-2018-13421.patch (Closes: #903247):
    - Fix heap-based buffer over-read in io::trim_chars (CVE-2018-13421).
  * Change to my new mail address.
  * Migrate to debhelper 11:
    - Change debian/compat to 11.
    - Bump minimum debhelper version in debian/control to >= 11.
  * debian/control:
    - Switch Vcs-* to new loacation.
    - Remove trailing whitespaces.
  * debian/rules:
    - Remove trailing whitespaces.
  * Declare compliance with Debian Policy 4.1.5:
    - Remove get-orig-source from debian/rules.
  * debian/changelog:
    - Use secure URI for the copyright format.
    - Add year 2018 for packaging.
    - Add section for debian/patches/*.
  * Add new section into README.source to explain the branching model used.

 -- Jörg Frings-Fürst <email address hidden>  Sun, 08 Jul 2018 17:41:29 +0200

Upload details

Uploaded by:
Jörg Frings-Fürst
Uploaded to:
Sid
Original maintainer:
Jörg Frings-Fürst
Architectures:
all
Section:
misc
Urgency:
Very Urgent

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
fast-cpp-csv-parser_0.0+git20160525~9bf299c-2.dsc 2.0 KiB 673919c7e641cee6c2241b0b9bceb147c23ba0edb634dc90c389f90e658e5d1b
fast-cpp-csv-parser_0.0+git20160525~9bf299c.orig.tar.xz 12.4 KiB 7523d22b56088427851c6c43d05cb55a04de627c82e334b381006b7ed58221e6
fast-cpp-csv-parser_0.0+git20160525~9bf299c-2.debian.tar.xz 39.9 KiB ff5859adf4cc84e4f15a94e09ef685389958760466e3ba22162c2719fc629425

No changes file available.

Binary packages built by this source

libfccp-dev: Fast C++ CSV Parser

 fast-cpp-cvs-parser is a small, easy-to-use and fast header-only
 library for reading comma separated value (CSV) files. The library
 is completely contained inside a single header file. The library
 can used with a standard conformant C++11 compiler.
 .
 Feature list:
  * Automatically rearranges columns by parsing the header line.
  * Disk I/O and CSV-parsing are overlapped using threads for efficiency.
  * Parsing features such as escaped strings can be enabled and disabled
    at compile time using templates.
  * Can read multiple GB files in reasonable time.
  * Support for custom columns separators (i.e. Tab separated value files
    are supported), quote escaped strings, automatic space trimming.
  * Works with *nix and Windows newlines and automatically ignores UTF-8 BOMs.
  * Exception classes with enough context to format useful error messages.
  * what() returns error messages ready to be shown to a user.