File: control

package info (click to toggle)
opencsv 5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 3,112 kB
  • sloc: java: 23,514; xml: 812; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: opencsv
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends:
 debhelper-compat (= 12),
 default-jdk,
 junit4,
 libcommons-collections4-java,
 libcommons-csv-java,
 libcommons-text-java,
 libmaven-bundle-plugin-java,
 maven-debian-helper (>= 1.5)
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/java-team/opencsv.git
Vcs-Browser: https://salsa.debian.org/java-team/opencsv
Homepage: http://opencsv.sf.net

Package: libopencsv-java
Architecture: all
Depends: ${maven:Depends}, ${misc:Depends}
Description: opencsv - Library for reading and writing CSV in Java
 Opencsv is a very simple csv (comma-separated values) parser library for Java.
 It supports all the basic csv-type things you're likely to want to do:
 .
  * Arbitrary numbers of values per line
  * Ignoring commas in quoted elements
  * Handling quoted entries with embedded carriage returns
    (ie entries that span multiple lines)
  * Configurable separator and quote characters (or use sensible defaults)
  * Read all the entries at once, or use an Iterator style model
  * Creating csv files from String[] (ie. automatic escaping of embedded
    quote chars)