diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-02-02 22:47:05 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-02-02 22:47:05 +0400 |
commit | a474e4ebcc1247297e30a1a66bbebcf4845fa8c4 (patch) | |
tree | bbc916a47a3cb88297750aa78485ebd0cdb84ae6 /debian/control | |
download | augeas-a474e4ebcc1247297e30a1a66bbebcf4845fa8c4.tar.gz |
Imported debian dir from 1.2.0-0ubuntu1
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..8c35a41 --- /dev/null +++ b/debian/control @@ -0,0 +1,102 @@ +Source: augeas +Priority: optional +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +XSBC-Original-Maintainer: Nicolas Valcárcel Scerpella <nvalcarcel@gmail.com> +Uploaders: Free Ekanayaka <freee@debian.org>, Micah Anderson <micah@debian.org> +Build-Depends: debhelper (>= 5), dh-autoreconf, libreadline-dev, chrpath, + naturaldocs (>= 1.51), texlive-latex-base, + libxml2-dev, pkg-config +Standards-Version: 3.9.3 +Section: libs +Homepage: http://augeas.net/ +DM-Upload-Allowed: yes + +Package: augeas-tools +Section: admin +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Augeas command line tools + Augeas is a configuration editing tool. It parses configuration files in their + native formats and transforms them into a tree. Configuration changes are made + by manipulating this tree and saving it back into native config files. + . + This package provides command line tools based on libaugeas0: + - augtool, a tool to manage configuration files. + - augparse, a testing and debugging tool for augeas lenses. + +Package: libaugeas-dev +Section: libdevel +Architecture: any +Depends: libaugeas0 (= ${binary:Version}), libxml2-dev, ${shlibs:Depends}, + ${misc:Depends} +Description: Development files for writing applications based on libaugeas0 + Augeas is a configuration editing tool. It parses configuration files in their + native formats and transforms them into a tree. Configuration changes are made + by manipulating this tree and saving it back into native config files. + . + This package includes the development files to write programs using the Augeas + API. + +Package: libaugeas0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, augeas-lenses +Suggests: augeas-tools +Description: Augeas configuration editing library and API + Augeas is a configuration editing tool. It parses configuration files in their + native formats and transforms them into a tree. Configuration changes are made + by manipulating this tree and saving it back into native config files. + . + The transformation works very hard to preserve comments and formatting + details. It is controlled by ``lens'' definitions that describe the file + format and the transformation into a tree. + +Package: augeas-dbg +Section: debug +Priority: extra +Architecture: any +Depends: libaugeas0 (= ${binary:Version}), augeas-tools (= ${binary:Version}), + ${misc:Depends} +Description: Debugging symbols for libaugeas0 + Augeas is a configuration editing tool. It parses configuration files in their + native formats and transforms them into a tree. Configuration changes are made + by manipulating this tree and saving it back into native config files. + . + This package provides debugging symbols for augeas, both the core library + and the tools, to assist in diagnosing critical bugs. It is not required + for normal operation. + +Package: augeas-lenses +Section: misc +Depends: ${misc:Depends} +Suggests: augeas-doc +Architecture: all +Description: Set of lenses needed by libaugeas0 to parse config files + Augeas parses configuration files described in lenses into a tree structure, + which it exposes through its public API. Changes made through the API are + written back to the initially read files. + . + Lenses are the building blocks of the file <-> tree transformation; they + combine parsing a file and building the tree (the get transformation), with + turning the tree back into an (updated) file (the put transformation). + . + The transformation works very hard to preserve comments and formatting + details. It is controlled by ``lens'' definitions that describe the file + format and the transformation into a tree. This package includes the official + set of lenses. + +Package: augeas-doc +Section: doc +Depends: ${misc:Depends} +Architecture: all +Description: Augeas lenses documentation + Augeas parses configuration files described in lenses into a tree structure, + which it exposes through its public API. Changes made through the API are + written back to the initially read files. + . + Lenses are the building blocks of the file <-> tree transformation; they + combine parsing a file and building the tree (the get transformation), with + turning the tree back into an (updated) file (the put transformation). + . + This package contains the generated documentation for the lenses shipping in + the augeas-lenses package. |