summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-10-02 21:10:11 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-10-02 21:10:11 +0200
commit0320ada8df5e39b12de0b1664a138bf35b6a4500 (patch)
treed315f654a8d239433d82b168d6b206cd6c755b14
parent9c03851f8cd559f3e193a8e8b4e5332ab223cd4e (diff)
-rw-r--r--debian/changelog2
-rw-r--r--debian/control11
-rw-r--r--debian/copyright4
-rw-r--r--debian/install2
-rwxr-xr-xdebian/rules3
5 files changed, 10 insertions, 12 deletions
diff --git a/debian/changelog b/debian/changelog
index c1b22aa..ee6116d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,4 +2,4 @@ fast-cpp-csv-parser (0.0+git20140429~0a2590-1) unstable; urgency=low
* Initial release (Closes: #745898)
- -- Jörg Frings-Fürst <debian@jff-webhosting.net> Fri, 08 Aug 2014 13:35:44 +0200
+ -- Jörg Frings-Fürst <debian@jff-webhosting.net> Fri, 15 Aug 2014 16:06:33 +0200
diff --git a/debian/control b/debian/control
index bcc61c0..24451e5 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,7 @@ Source: fast-cpp-csv-parser
Section: libdevel
Priority: optional
Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net>
-Build-Depends:
- debhelper (>= 9)
+Build-Depends: debhelper (>= 9)
Standards-Version: 3.9.5
Homepage: https://code.google.com/p/fast-cpp-csv-parser/
Vcs-Git: git://anonscm.debian.org/collab-maint/fast-cpp-csv-parser.git
@@ -14,13 +13,15 @@ Architecture: all
Depends: ${misc:Depends}
Description: Fast C++ CSV Parser
fast-cpp-cvs-praser is a small, easy-to-use and fast header-only
- library for reading comma separated value (CSV) files.
+ 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.
.
- Future list:
+ 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.
+ 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.
diff --git a/debian/copyright b/debian/copyright
index 4b5648f..33cb2fa 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,13 +4,13 @@ Source: https://code.google.com/p/fast-cpp-csv-parser/source/browse/csv.h
Files: *
Copyright: 2012-2014 Ben Strasser <code@ben-strasser.net>
-License: BSD-3-Clause
+License: BSD-3
Files: debian/*
Copyright: 2014 Jörg Frings-Fürst <debian@jff-webhosting.net>
License: GPL-3+
-License: BSD-3-Clause
+License: BSD-3
All rights reserved.
.
Redistribution and use in source and binary forms, with or without
diff --git a/debian/install b/debian/install
index 17d779e..a1b230e 100644
--- a/debian/install
+++ b/debian/install
@@ -1 +1 @@
-csv.h usr/include/fast_cpp_csv_parser/
+csv.h usr/include/libfccp/
diff --git a/debian/rules b/debian/rules
index ae186f8..1151128 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,15 +1,12 @@
#!/usr/bin/make -f
-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-
PKD = $(abspath $(dir $(MAKEFILE_LIST)))
PKG = $(word 2,$(shell dpkg-parsechangelog -l$(PKD)/changelog | grep ^Source))
VER = $(shell dpkg-parsechangelog -l$(PKD)/changelog -SVersion | cut -d- -f1)
-
%:
dh $@