File: control

package info (click to toggle)
boost 1.27.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,908 kB
  • ctags: 26,546
  • sloc: cpp: 122,225; ansic: 10,956; python: 4,412; sh: 855; yacc: 803; makefile: 257; perl: 165; lex: 90; csh: 6
file content (162 lines) | stat: -rw-r--r-- 7,041 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
Source: boost
Section: libs
Priority: optional
Maintainer: Steve M. Robbins <smr@debian.org>
Standards-Version: 3.5.2
Build-Depends: libstlport4.5-dev, libstlport4.5-dbg (>>4.5.1-0.1), python2.1-dev, debhelper, flex, bison, texinfo

Package: libboost-dev
Architecture: any
Section: devel
Depends: libstdc++-dev, libstlport4.5-dev
Suggests: libboost-regex-dev, libboost-python-dev, libboost-graph-dev
Description: Boost.org libraries development files
 The Boost web site provides free, peer-reviewed, portable C++ source
 libraries. The emphasis is on libraries which work well with the C++
 Standard Library. One goal is to establish "existing practice" and
 provide reference implementations so that the Boost libraries are
 suitable for eventual standardization. Some of the libraries have
 already been proposed for inclusion in the C++ Standards Committee's
 upcoming C++ Standard Library Technical Report.
 .
 For the following subprojects separate packages exist: regex, python,
 graph.
 .
 For more information on boost visit the project homepage
 http://www.boost.org/ .

Package: libboost-examples
Architecture: all
Section: devel
Description: Boost.org libraries examples collection
 Example code that uses the Boost libraries.
 .
 The Boost web site provides free, peer-reviewed, portable C++ source
 libraries. The emphasis is on libraries which work well with the C++
 Standard Library. One goal is to establish "existing practice" and
 provide reference implementations so that the Boost libraries are
 suitable for eventual standardization. Some of the libraries have
 already been proposed for inclusion in the C++ Standards Committee's
 upcoming C++ Standard Library Technical Report.
 .
 For the following subprojects separate packages exist: regex, python,
 graph.
 .
 For more information on boost visit the project homepage
 http://www.boost.org/ .

Package: libboost-regex1.27
Architecture: any
Section: devel
Depends: ${shlibs:Depends}
Description: Regular expression library for C++
 Part of the Boost.org library collection.
 .
 Regular expressions are a form of pattern-matching that are often
 used in text processing; many users will be familiar with the Unix
 utilities grep, sed and awk, and the programming language perl, each
 of which make extensive use of regular expressions. Traditionally C++
 users have been limited to the POSIX C APIs for manipulating regular
 expressions, and while regex does provide these APIs, they do not
 represent the best way to use the library. For example regex can cope
 with wide character strings, or search and replace operations (in a
 manner analogous to either sed or perl), something that traditional C
 libraries can not do.
 .
 For more information on regex visit the project homepage
 http://www.boost.org/libs/regex/ .

Package: libboost-regex-dev
Architecture: any
Section: devel
Depends: libboost-dev (= ${Source-Version}), libboost-regex1.27 (= ${Source-Version})
Description: Regular expression library for C++
 Part of the Boost.org library collection.
 .
 Regular expressions are a form of pattern-matching that are often
 used in text processing; many users will be familiar with the Unix
 utilities grep, sed and awk, and the programming language perl, each
 of which make extensive use of regular expressions. Traditionally C++
 users have been limited to the POSIX C APIs for manipulating regular
 expressions, and while regex does provide these APIs, they do not
 represent the best way to use the library. For example regex can cope
 with wide character strings, or search and replace operations (in a
 manner analogous to either sed or perl), something that traditional C
 libraries can not do.
 .
 For more information on regex visit the project homepage
 http://www.boost.org/libs/regex/ .

Package: libboost-python1.27
Section: devel
Architecture: any
Depends: ${shlibs:Depends}
Description: Boost Python Library 
 Part of the Boost.org library collection.
 .
 The Boost Python Library is used to quickly and easily export a C++
 library to Python such that the Python interface is very similar to
 the C++ interface. It is designed to be minimally intrusive on your
 C++ design. In most cases, you should not have to alter your C++
 classes in any way in order to use them with Boost.Python.  The
 system should simply "reflect" your C++ classes and functions into
 Python. The major features of Boost.Python include support for:
 Subclassing extension types in Python, Overriding virtual functions
 in Python, Member function Overloading, Automatic wrapping of
 numeric operators among others.
 .
 For more information on python library visit the project homepage
 http://www.boost.org/libs/python/ .

Package: libboost-python-dev
Section: devel
Architecture: any
Depends: libboost-dev (=${Source-Version}), libboost-python1.27 (=${Source-Version}), python2.1-dev
Description: The Boost Python Library development files
 Part of the Boost.org library collection.
 .
 The Boost Python Library is used to quickly and easily export a C++
 library to Python such that the Python interface is very similar to
 the C++ interface. It is designed to be minimally intrusive on your
 C++ design. In most cases, you should not have to alter your C++
 classes in any way in order to use them with Boost.Python.  The
 system should simply "reflect" your C++ classes and functions into
 Python. The major features of Boost.Python include support for:
 Subclassing extension types in Python, Overriding virtual functions
 in Python, Member function Overloading, Automatic wrapping of
 numeric operators among others.
 .
 For more information on python library visit the project homepage
 http://www.boost.org/libs/python/ .

Package: libboost-graph1.27
Section: devel
Architecture: any
Depends: ${shlibs:Depends}
Description: Generic graph components and algorithms in C++
 Part of the Boost.org library collection.
 .
 Graphs are mathematical abstractions that are useful for solving
 many types of problems in computer science. Consequently, these
 abstractions must also be represented in computer programs. A
 standardized generic interface for traversing graphs is of utmost
 importance to encourage reuse of graph algorithms and data structures.
 .
 For more information on graph visit the project homepage
 http://www.boost.org/libs/graph/doc/index.html .

Package: libboost-graph-dev
Section: devel
Architecture: any
Depends: libboost-dev (=${Source-Version}), libboost-graph1.27 (=${Source-Version})
Description: Generic graph components and algorithms in C++
 Part of the Boost.org library collection.
 .
 Graphs are mathematical abstractions that are useful for solving
 many types of problems in computer science. Consequently, these
 abstractions must also be represented in computer programs. A
 standardized generic interface for traversing graphs is of utmost
 importance to encourage reuse of graph algorithms and data structures.
 .
 For more information on graph visit the project homepage
 http://www.boost.org/libs/graph/doc/index.html .