-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.real
16754 lines (16054 loc) · 687 KB
/
status.real
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Package: libws-commons-util-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 101
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1.0.1-7
Description: Common utilities from the Apache Web Services Project
This is a small collection of utility classes, that allow high
performance XML processing based on SAX.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://ws.apache.org/commons/util/
Package: python-pkg-resources
Status: install ok installed
Priority: optional
Section: python
Installed-Size: 175
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: distribute
Version: 0.6.24-1ubuntu1
Replaces: python2.3-setuptools, python2.4-setuptools
Provides: python2.6-setuptools, python2.7-setuptools
Depends: python (>= 2.6), python (<< 2.8)
Suggests: python-distribute, python-distribute-doc
Conflicts: python-setuptools (<< 0.6c8-3), python2.3-setuptools (<< 0.6b2), python2.4-setuptools (<< 0.6b2)
Description: Package Discovery and Resource Access using pkg_resources
The pkg_resources module provides an API for Python libraries to
access their resource files, and for extensible applications and
frameworks to automatically discover plugins. It also provides
runtime support for using C extensions that are inside zipfile-format
eggs, support for merging packages that have separately-distributed
modules or subpackages, and APIs for managing Python's current
"working set" of active packages.
Original-Maintainer: Matthias Klose <[email protected]>
Homepage: http://packages.python.org/distribute
Python-Version: 2.6, 2.7
Package: tcpd
Status: install ok installed
Multi-Arch: foreign
Priority: optional
Section: net
Installed-Size: 132
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: tcp-wrappers
Version: 7.6.q-21
Replaces: libwrap0 (<< 7.6-8)
Depends: libc6 (>= 2.4), libwrap0 (>= 7.6-4~)
Description: Wietse Venema's TCP wrapper utilities
Wietse Venema's network logger, also known as TCPD or LOG_TCP.
.
These programs log the client host name of incoming telnet,
ftp, rsh, rlogin, finger etc. requests.
.
Security options are:
- access control per host, domain and/or service;
- detection of host name spoofing or host address spoofing;
- booby traps to implement an early-warning system.
Original-Maintainer: Marco d'Itri <[email protected]>
Package: libbsf-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 130
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1:2.4.0-5
Depends: libapache-pom-java
Suggests: bsh, libxalan2-java, rhino
Description: Bean Scripting Framework to support scripting languages in Java
Bean Scripting Framework (BSF) is a set of Java classes which provides
scripting language support within Java applications, and access to Java
objects and methods from scripting languages. BSF allows one to write JSPs in
languages other than Java while providing access to the Java class library. In
addition, BSF permits any Java application to be implemented in part (or
dynamically extended) by a language that is embedded within it. This is
achieved by providing an API that permits calling scripting language engines
from within Java, as well as an object registry that exposes Java objects to
these scripting language engines.
.
BSF supports these scripting languages:
* Python (using Jython)
* JavaScript (using rhino)
* XSLT Stylesheets (as a component of Apache XML project's Xalan and Xerces)
* BeanShell (using bsh) via its own bsf adapter
.
Support for Tcl, NetRexx is not available in this Debian
package since Jacl, NetRexx (non-free) are not packaged.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://jakarta.apache.org/bsf/
Package: libaspectj-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 11710
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: aspectj
Version: 1.6.12+dfsg-3
Replaces: aspectj (<< 1.6.10+dfsg-1)
Suggests: aspectj
Conflicts: aspectj (<< 1.6.10+dfsg-1)
Description: aspect-oriented extension for Java - library
AspectJ enables the clean modularization of crosscutting concerns
such as: error checking and handling, synchronization, context-sensitive
behavior, performance optimizations, monitoring and logging, debugging
support, multi-object protocols.
.
This package provides the JAR libraries of aspectj.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://www.eclipse.org/aspectj
Package: libslf4j-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 315
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1.6.4-1
Suggests: libcommons-logging-java, liblog4j1.2-java
Description: Simple Logging Facade for Java
The Simple Logging Facade for Java (or SLF4J) is intended to serve as
a simple facade for various logging APIs allowing to the end-user to
plug in the desired implementation at deployment time. SLF4J also
allows for a gradual migration path away from Apache Commons
Logging (CL)
.
Logging API implementations can either choose to implement the SLF4J
interfaces directly, e.g. logback or SimpleLogger. Alternatively, it
is possible (and rather easy) to write SLF4J adapters for the given
API implementation, e.g. Log4jLoggerAdapter or JDK14LoggerAdapter.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://www.slf4j.org/
Package: libplexus-sec-dispatcher-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 89
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: plexus-sec-dispatcher
Version: 1.3.1-5
Depends: junit (>= 3.8.2), libplexus-cipher-java, libplexus-container-default-java, libplexus-utils-java
Suggests: libplexus-sec-dispatcher-java-doc
Description: Plexus Security Dispatcher Component used by Maven
The Plexus project provides a full software stack for creating and
executing software projects. Based on the Plexus container, the applications
can utilise component-oriented programming to build modular, reusable
components that can easily be assembled and reused.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: https://github.com/sonatype/plexus-sec-dispatcher
Package: libtext-wrapi18n-perl
Status: install ok installed
Priority: required
Section: perl
Installed-Size: 68
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 0.06-7
Depends: libtext-charwidth-perl
Description: internationalized substitute of Text::Wrap
This module is a substitution for Text::Wrap, supporting
multibyte characters such as UTF-8, EUC-JP, and GB2312, fullwidth
characters such as east Asian characters, combining characters
such as diacritical marks and Thai, and languages which don't
use whitespaces between words such as Chinese and Japanese.
.
It provides wrap().
Original-Maintainer: Anibal Monsalve Salazar <[email protected]>
Homepage: http://search.cpan.org/search?module=Text::WrapI18N
Package: java-common
Status: install ok installed
Multi-Arch: foreign
Priority: optional
Section: java
Installed-Size: 242
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 0.43ubuntu2
Suggests: default-jre, equivs
Description: Base of all Java packages
This package must be installed in the system if a Java environment
is desired. It covers useful information for Java users in
Debian GNU/Linux, including:
* The Java policy document which describes the layout of Java support in
Debian and how Java packages should behave.
* The Debian-Java-FAQ which provides information on the status of
Java support in Debian, available compilers, virtual machines, Java
programs and libraries as well as on legal issues.
* Information on how to create dummy packages to fulfill java2
requirements.
Original-Maintainer: Debian Java Mailing List <[email protected]>
Package: libantlr-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 493
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: antlr
Version: 2.7.7+dfsg-3
Replaces: antlr (<< 2.7.7-8)
Breaks: antlr (<< 2.7.7-8)
Description: language tool for constructing recognizers, compilers etc (java library)
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is
a language tool that provides a framework for constructing recognizers,
compilers, and translators from grammatical descriptions containing C++
or Java actions [You can use PCCTS 1.xx to generate C-based parsers].
.
This package contains the java libraries without a dependency on any runtime
to be able to bootstrap gcj without a dependency on a java runtime.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://www.antlr2.org/
Package: libhttp-date-perl
Status: install ok installed
Priority: optional
Section: perl
Installed-Size: 64
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 6.00-1
Replaces: libwww-perl (<< 6.00)
Depends: perl, libtimedate-perl
Breaks: libwww-perl (<< 6.00)
Description: module of date conversion routines
HTTP::Date provides functions that deal the date formats used by the HTTP
protocol (and then some more). Only the first two functions, time2str() and
str2time(), are exported by default.
Original-Maintainer: Debian Perl Group <[email protected]>
Homepage: http://search.cpan.org/dist/HTTP-Date/
Package: libio-stringy-perl
Status: install ok installed
Priority: optional
Section: perl
Installed-Size: 273
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: io-stringy
Version: 2.110-5
Depends: perl
Description: Perl modules for IO from scalars and arrays
The libio-stringy-perl package (which corresponds to the CPAN package
IO-stringy) provides the following Perl modules:
IO::AtomicFile Write a file which is updated atomically
IO::Lines I/O handle to read/write to array of lines
IO::Scalar I/O handle to read/write to a string
IO::ScalarArray I/O handle to read/write to array of scalars
IO::Wrap Wrap old-style FHs in standard OO interface
IO::WrapTie Tie your handles & retain full OO interface
Original-Maintainer: Bart Martens <[email protected]>
Homepage: http://search.cpan.org/dist/IO-stringy/
Package: debconf
Status: install ok installed
Multi-Arch: foreign
Priority: required
Section: admin
Installed-Size: 609
Maintainer: Colin Watson <[email protected]>
Architecture: all
Version: 1.5.42ubuntu1
Replaces: debconf-tiny
Provides: debconf-2.0
Pre-Depends: perl-base (>= 5.6.1-4)
Recommends: apt-utils (>= 0.5.1), debconf-i18n
Suggests: debconf-doc, debconf-utils, whiptail | dialog | gnome-utils, libterm-readline-gnu-perl, libgtk2-perl (>= 1:1.130), libnet-ldap-perl, perl, libqtgui4-perl, libqtcore4-perl
Conflicts: apt (<< 0.3.12.1), cdebconf (<< 0.96), debconf-tiny, debconf-utils (<< 1.3.22), dialog (<< 0.9b-20020814-1), menu (<= 2.1.3-1), whiptail (<< 0.51.4-11), whiptail-utf8 (<= 0.50.17-13)
Conffiles:
/etc/apt/apt.conf.d/70debconf 7e9d09d5801a42b4926b736b8eeabb73
/etc/bash_completion.d/debconf 8fa1862734fbe54d7178aaaa419f5a11
/etc/debconf.conf 8c0619be413824f1fc7698cee0f23811
Description: Debian configuration management system
Debconf is a configuration management system for debian packages. Packages
use Debconf to ask questions when they are installed.
Original-Maintainer: Debconf Developers <[email protected]>
Package: libhttpcore-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 454
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: httpcomponents-core
Version: 4.1.4-1
Provides: libhttpcore-nio-java
Description: set of low level HTTP transport components for Java
HttpCore is a set of low level HTTP transport components that can be used
to build custom client and server side HTTP services with a minimal
footprint. HttpCore supports two I/O models:
.
- blocking I/O model, based on the classic Java I/O;
- non-blocking, event driven I/O model based on Java NIO.
.
The blocking I/O model may be more appropriate for data intensive, low
latency scenarios, whereas the non-blocking model may be more appropriate
for high latency scenarios where raw data throughput is less important
than the ability to handle thousands of simultaneous HTTP connections in
a resource efficient manner.
Original-Maintainer: David Paleino <[email protected]>
Homepage: http://hc.apache.org/httpcomponents-core/index.html
Package: liblog4j1.2-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 465
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: apache-log4j1.2
Version: 1.2.16-3ubuntu1
Suggests: liblog4j1.2-java-doc, libgnumail-java, libmx4j-java
Description: Logging library for java
log4j is a tool to help the programmer output log statements to a variety of
output targets.
.
It is possible to enable logging at runtime without modifying the application
binary. The log4j package is designed so that log statements can remain in
shipped code without incurring a high performance cost.
.
One of the distinctive features of log4j is the notion of hierarchical
loggers. Using loggers it is possible to selectively control which log
statements are output at arbitrary granularity.
.
Log4j can output to: a file, a rolling file, a database with a JDBC driver,
many output asynchronously, a JMS Topic, a swing based logging console,
the NT event log, /dev/null, a SMTP server (using javamail), a socket server,
syslog, telnet daemon and stdout.
.
The format of the output can be defined using one of the various layout
(or user defined layout) like: simple text, html, date, pattern defined and
XML.
Homepage: http://logging.apache.org/log4j/1.2/
Original-Maintainer: Debian Java Maintainers <[email protected]>
Package: libjaxp1.3-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 661
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1.3.05-2ubuntu2
Suggests: libjaxp1.3-java-gcj
Conflicts: libxalan2-java (<= 2.7.1-3)
Description: Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)
xml-apis.jar from the Apache XML Commons project is used by the Xerces-J XML
parser and Xalan-J XSLT processor and specifies these APIs:
* Document Object Model (DOM) level 3
* Simple API for XML (SAX) 2.0.2
* Java APIs for XML Processing (JAXP) 1.3.04
* Transformation API for XML (TrAX) 1.3.04
* Document Object Model (DOM) Level 3 Load and Save
* JSR 206 Java API for XML Processing 1.3
.
These classes are also used in Sun's reference implementation. A GPL'ed
implementation of these APIs can be found in the libgnujaxp-java package.
Homepage: http://java.sun.com/xml/jaxp/index.jsp
Original-Maintainer: Debian Java Maintainers <[email protected]>
Package: libitext1-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 1315
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1.4-5
Description: Java Library to generate PDF on the Fly
iText is a library that allows you to generate PDF files on the fly.
The iText classes are very useful for people who need to generate read-only,
platform independent documents containing text, lists, tables and images.
The library is especially useful in combination with Java(TM)
technology-based Servlets: The look and feel of HTML is browser dependent;
with iText and PDF you can control exactly how your servlet's output will look.
iText requires JDK 1.2. It's available for free under a multiple license:
MPL and LGPL.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://www.lowagie.com/iText/
Package: libelf1
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 164
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: elfutils
Version: 0.152-1ubuntu3
Depends: libc6 (>= 2.14)
Pre-Depends: multiarch-support
Description: library to read and write ELF files
The libelf1 package provides a shared library which allows reading and
writing ELF files on a high level. Third party programs depend on
this package to read internals of ELF files. The programs of the
elfutils package use it also to generate new ELF files.
.
This library is part of elfutils.
Homepage: https://fedorahosted.org/elfutils/
Original-Maintainer: Kurt Roeckx <[email protected]>
Package: memtest86+
Status: install ok installed
Priority: optional
Section: misc
Installed-Size: 2404
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 4.20-1.1ubuntu1
Depends: debconf (>= 0.5) | debconf-2.0
Suggests: hwtools, memtester, kernel-patch-badram, memtest86, grub-pc | grub-legacy, mtools
Conffiles:
/etc/grub.d/20_memtest86+ 6dc48efccb95680ab07349956a48fef3
Description: thorough real-mode memory tester
Memtest86+ scans your RAM for errors.
.
This tester runs independently of any OS - it is run at computer
boot-up, so that it can test *all* of your memory. You may want to
look at `memtester', which allows to test your memory within Linux,
but this one won't be able to test your whole RAM.
.
It can output a list of bad RAM regions usable by the BadRAM kernel
patch, so that you can still use your old RAM with one or two bad bits.
.
Memtest86+ is based on memtest86 3.0, and adds support for recent
hardware, as well as a number of general-purpose improvements,
including many patches to memtest86 available from various sources.
.
Both memtest86 and memtest86+ are being worked on in parallel.
Homepage: http://www.memtest.org/
Original-Maintainer: Yann Dirson <[email protected]>
Package: dash
Essential: yes
Status: install ok installed
Priority: required
Section: shells
Installed-Size: 215
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 0.5.7-2ubuntu2
Depends: debianutils (>= 2.15), dpkg (>= 1.15.0)
Pre-Depends: libc6 (>= 2.14)
Description: POSIX-compliant shell
The Debian Almquist Shell (dash) is a POSIX-compliant shell derived
from ash.
.
Since it executes scripts faster than bash, and has fewer library
dependencies (making it more robust against software or hardware
failures), it is used as the default system shell on Debian systems.
Homepage: http://gondor.apana.org.au/~herbert/dash/
Original-Maintainer: Gerrit Pape <[email protected]>
Package: libsocket6-perl
Status: install ok installed
Priority: optional
Section: perl
Installed-Size: 94
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 0.23-1build2
Depends: perl (>= 5.14.2-3build1), perlapi-5.14.2, libc6 (>= 2.4), perl-base (>= 5.8.0-10)
Description: Perl extensions for IPv6
This module supports getaddrinfo() and getnameinfo() to intend to enable
protocol independent programming. If your environment supports IPv6,
IPv6 related defines such as AF_INET6 are included.
Original-Maintainer: Masahito Omote <[email protected]>
Package: libpolkit-gobject-1-0
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 151
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: policykit-1
Version: 0.104-1ubuntu1
Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.31.8)
Pre-Depends: multiarch-support
Breaks: libpolkit-agent-1-0 (<< 0.99), libpolkit-backend-1-0 (<< 0.99), libpolkit-gtk-1-0 (<< 0.99), policykit-1 (<< 0.99)
Description: PolicyKit Authorization API
PolicyKit is a toolkit for defining and handling the policy that
allows unprivileged processes to speak to privileged processes.
.
This package contains a library for accessing PolicyKit.
Homepage: http://hal.freedesktop.org/docs/PolicyKit/
Original-Maintainer: Utopia Maintenance Team <[email protected]>
Package: shared-mime-info
Status: install ok installed
Multi-Arch: foreign
Priority: optional
Section: misc
Installed-Size: 2504
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 1.0-0ubuntu4.1
Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0), libxml2 (>= 2.7.4)
Conflicts: libglib2.0-0 (<< 2.17.2), libgnomevfs2-0 (<< 1:2.24.0), tracker (<< 0.6.90)
Description: FreeDesktop.org shared MIME database and spec
This is the shared MIME-info database from the X Desktop Group. It is required
by any program complying to the Shared MIME-Info Database spec, which is also
included in this package.
.
At this time at least ROX, GNOME, KDE and XFCE use this database.
Homepage: http://freedesktop.org/wiki/Software/shared-mime-info
Original-Maintainer: Sebastian Dröge <[email protected]>
Package: libjaxen-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 288
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 1.1.3-1
Replaces: libsaxpath-java
Depends: libxerces2-java
Recommends: libdom4j-java, libjdom1-java, libxom-java
Conflicts: libsaxpath-java
Description: Java XPath engine
jaxen is a universal object model walker, capable of evaluating XPath
expressions across multiple models. Currently supported are dom4j,
JDOM, DOM and XOM.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://jaxen.org
Package: libxdmcp6
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 67
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: libxdmcp
Version: 1:1.1.0-4
Depends: libc6 (>= 2.4)
Pre-Depends: multiarch-support
Description: X11 Display Manager Control Protocol library
This package provides the main interface to the X11 display manager control
protocol library, which allows for remote logins to display managers.
.
More information about X.Org can be found at:
<URL:http://www.X.org>
.
This module can be found at
git://anongit.freedesktop.org/git/xorg/lib/libXdmcp
Original-Maintainer: Debian X Strike Force <[email protected]>
Package: bsh-gcj
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 1682
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: bsh
Version: 2.0b4-12build1
Depends: bsh (= 2.0b4-12build1), libgcj-common (>> 1:4.1.1-13), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.4.5-1~)
Description: Java scripting environment (BeanShell) Version 2 (native code)
BeanShell is a small, free, embeddable, Java source interpreter with object
scripting language features, written in Java. BeanShell executes standard Java
statements and expressions, in addition to obvious scripting commands and
syntax. BeanShell supports scripted objects as simple method closures like
those in Perl and JavaScript(tm).
.
You can use BeanShell interactively for Java experimentation and debugging or
as a simple scripting engine for you applications. In short: BeanShell is a
dynamically interpreted Java, plus some useful stuff.
.
This package contains the natively compiled code for use by gij.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://www.beanshell.org/
Package: libnl-3-200
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 146
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: libnl3
Version: 3.2.3-2ubuntu2
Depends: libc6 (>= 2.14)
Conffiles:
/etc/libnl-3/pktloc 02e59c3b2bba388ba64b2d120a76bab7
/etc/libnl-3/classid 3e07259e58674631830b152e983ca995
Description: library for dealing with netlink sockets
This is a library for applications dealing with netlink sockets.
The library provides an interface for raw netlink messaging and various
netlink family specific interfaces.
Homepage: http://people.suug.ch/~tgr/libnl/
Original-Maintainer: Heiko Stuebner <[email protected]>
Package: coreutils
Essential: yes
Status: install ok installed
Multi-Arch: foreign
Priority: required
Section: utils
Installed-Size: 5496
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 8.13-3ubuntu3.2
Replaces: mktemp, timeout
Depends: dpkg (>= 1.15.4) | install-info
Pre-Depends: libacl1 (>= 2.2.51-5), libattr1 (>= 1:2.4.46-5), libc6 (>= 2.15), libselinux1 (>= 1.32)
Conflicts: timeout
Description: GNU core utilities
This package contains the basic file, shell and text manipulation
utilities which are expected to exist on every operating system.
.
Specifically, this package includes:
arch base64 basename cat chcon chgrp chmod chown chroot cksum comm cp
csplit cut date dd df dir dircolors dirname du echo env expand expr
factor false flock fmt fold groups head hostid id install join link ln
logname ls md5sum mkdir mkfifo mknod mktemp mv nice nl nohup nproc od
paste pathchk pinky pr printenv printf ptx pwd readlink rm rmdir runcon
sha*sum seq shred sleep sort split stat stty sum sync tac tail tee test
timeout touch tr true truncate tsort tty uname unexpand uniq unlink
users vdir wc who whoami yes
Homepage: http://gnu.org/software/coreutils
Original-Maintainer: Michael Stone <[email protected]>
Package: cloudstack-common
Status: install ok installed
Priority: extra
Section: libs
Installed-Size: 30980
Maintainer: Wido den Hollander <[email protected]>
Architecture: all
Source: cloudstack
Version: 4.1.0-incubating-0.0.snapshot
Depends: bash, genisoimage
Conflicts: cloud-console-proxy, cloud-daemonize, cloud-deps, cloud-python, cloud-scripts, cloud-setup, cloud-system-iso, cloud-utils
Description: A common package which contains files which are shared by several CloudStack packages
Homepage: http://www.cloudstack.org/
Package: sudo
Status: install ok installed
Priority: optional
Section: admin
Installed-Size: 996
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 1.8.3p1-1ubuntu3.3
Replaces: sudo-ldap
Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libpam-modules
Conflicts: sudo-ldap
Conffiles:
/etc/sudoers.d/README 0b76d590c3d5d1966bdfa7ee808893c4
/etc/pam.d/sudo 665a6dead44ff792cfad6b0faa10a621
/etc/sudoers 1b00ee0a97a1bcf9961e476140e2c5c1
/etc/init.d/sudo 8dd3c1c4fb7582466676fd00d31cdc9b
Description: Provide limited super user privileges to specific users
Sudo is a program designed to allow a sysadmin to give limited root
privileges to users and log root activity. The basic philosophy is to give
as few privileges as possible but still allow people to get their work done.
.
This version is built with minimal shared library dependencies, use the
sudo-ldap package instead if you need LDAP support for sudoers.
Original-Maintainer: Bdale Garbee <[email protected]>
Package: libfreetype6
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 811
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: freetype
Version: 2.4.8-1ubuntu2.1
Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4)
Pre-Depends: multiarch-support
Description: FreeType 2 font engine, shared library files
The FreeType project is a team of volunteers who develop free,
portable and high-quality software solutions for digital typography.
They specifically target embedded systems and focus on bringing small,
efficient and ubiquitous products.
.
The FreeType 2 library is their new software font engine. It has been
designed to provide the following important features:
* A universal and simple API to manage font files
* Support for several font formats through loadable modules
* High-quality anti-aliasing
* High portability & performance
.
Supported font formats include:
* TrueType files (.ttf) and collections (.ttc)
* Type 1 font files both in ASCII (.pfa) or binary (.pfb) format
* Type 1 Multiple Master fonts. The FreeType 2 API also provides
routines to manage design instances easily
* Type 1 CID-keyed fonts
* OpenType/CFF (.otf) fonts
* CFF/Type 2 fonts
* Adobe CEF fonts (.cef), used to embed fonts in SVG documents with
the Adobe SVG viewer plugin.
* Windows FNT/FON bitmap fonts
.
This package contains the files needed to run programs that use the
FreeType 2 library.
.
Home Page: http://www.freetype.org/
Authors: David Turner <[email protected]>
Robert Wilhelm <[email protected]>
Werner Lemberg <[email protected]>
Homepage: http://www.freetype.org
Original-Maintainer: Steve Langasek <[email protected]>
Package: debianutils
Essential: yes
Status: install ok installed
Multi-Arch: foreign
Priority: required
Section: utils
Installed-Size: 218
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 4.2.1ubuntu2
Depends: sensible-utils
Pre-Depends: libc6 (>= 2.15)
Description: Miscellaneous utilities specific to Debian
This package provides a number of small utilities which are used
primarily by the installation scripts of Debian packages, although
you may use them directly.
.
The specific utilities included are: installkernel run-parts
savelog tempfile which.
Original-Maintainer: Clint Adams <[email protected]>
Package: libxcb-shm0
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 49
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: libxcb
Version: 1.8.1-1ubuntu0.1
Depends: libc6 (>= 2.2.5), libxcb1
Pre-Depends: multiarch-support
Description: X C Binding, shm extension
This package contains the library files needed to run software using
libxcb-shm, the shm extension for the X C Binding.
.
The XCB library provides an interface to the X Window System protocol,
designed to replace the Xlib interface. XCB provides several advantages over
Xlib:
.
* Size: small library and lower memory footprint
* Latency hiding: batch several requests and wait for the replies later
* Direct protocol access: one-to-one mapping between interface and protocol
* Thread support: access XCB from multiple threads, with no explicit locking
* Easy creation of new extensions: automatically generates interface from
machine-parsable protocol descriptions
Homepage: http://xcb.freedesktop.org
Original-Maintainer: XCB Developers <[email protected]>
Package: libclass-accessor-perl
Status: install ok installed
Priority: optional
Section: perl
Installed-Size: 104
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 0.34-1
Depends: perl, libsub-name-perl
Description: Perl module that automatically generates accessors
Class::Accessor automagically generates accessor/mutator methods for your
class. Most of the time, writing accessors is an exercise in cutting and
pasting. If you make your module a subclass of Class::Accessor and declare
your accessor fields with mk_accessors() then you will find yourself with a
set of automatically generated accessors which can even be customized.
Original-Maintainer: Debian Perl Group <[email protected]>
Homepage: http://search.cpan.org/dist/Class-Accessor/
Package: libxmuu1
Status: install ok installed
Multi-Arch: same
Priority: optional
Section: libs
Installed-Size: 61
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: libxmu
Version: 2:1.1.0-3
Depends: libc6 (>= 2.4), libx11-6
Pre-Depends: multiarch-support
Description: X11 miscellaneous micro-utility library
libXmuu provides a set of miscellaneous utility convenience functions for X
libraries to use. It is a lighter version of libXmu that does not depend
on libXt or libXext; for more information on libXmu, see libxmu6.
.
More information about X.Org can be found at:
<URL:http://www.X.org>
.
This module can be found at
git://anongit.freedesktop.org/git/xorg/lib/libXmu
Original-Maintainer: Debian X Strike Force <[email protected]>
Package: python-twisted-bin
Status: install ok installed
Priority: optional
Section: python
Installed-Size: 144
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: twisted
Version: 11.1.0-1ubuntu2
Replaces: python2.3-twisted-bin, python2.4-twisted-bin
Provides: python2.7-twisted-bin
Depends: python2.7, python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.2)
Suggests: python-twisted-bin-dbg
Conflicts: python2.3-twisted-bin, python2.4-twisted-bin
Description: Event-based framework for internet applications
It includes a web server, a telnet server, a multiplayer RPG engine, a
generic client and server for remote object access, and APIs for creating
new protocols.
Original-Maintainer: Matthias Klose <[email protected]>
Python-Version: 2.7
Package: x11proto-input-dev
Status: install ok installed
Multi-Arch: foreign
Priority: optional
Section: x11
Installed-Size: 461
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: x11proto-input
Version: 2.1.99.6-1
Depends: x11proto-core-dev
Description: X11 Input extension wire protocol
This package provides development headers describing the wire protocol
for the Input extension, used to control all manner of options related
to input device handling.
.
More information about X.Org can be found at:
<URL:http://www.X.org>
.
This package is built from the X.org inputproto proto module.
Original-Maintainer: Debian X Strike Force <[email protected]>
Package: libqdox-java
Status: install ok installed
Priority: optional
Section: java
Installed-Size: 264
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Source: qdox
Version: 1.12-1
Suggests: libqdox-java-doc
Description: Quickly parses declarations and Javadoc from Java source
qdox quickly parses Java source files looking for key items of
interest:
* class and interface definitions
* member declarations
* import statements
* JavaDoc comments
.
qdox ignores all other components of Java source, such as actual method
implementations, to avoid overhead. qdox returns a simple document
model containing only the declarations and containing enough
information to be useful.
Original-Maintainer: Debian Java Maintainers <[email protected]>
Homepage: http://qdox.codehaus.org/
Package: initramfs-tools
Status: install ok installed
Multi-Arch: foreign
Priority: required
Section: utils
Installed-Size: 362
Maintainer: Ubuntu Kernel Team <[email protected]>
Architecture: all
Version: 0.99ubuntu13
Provides: linux-initramfs-tool
Depends: initramfs-tools-bin (>= 0.99ubuntu13), initramfs-tools-bin (<< 0.99ubuntu13.1~), klibc-utils (>= 1.5.9-1), busybox-initramfs (>= 1:1.13.3-1ubuntu5), cpio, module-init-tools, udev (>= 147~-5), findutils (>= 4.2.24), util-linux (>> 2.15~rc1)
Suggests: bash-completion
Breaks: cryptsetup (<< 2:1.1.0-2.1), elilo (<< 3.12-3.1~), lilo (<< 22.8-8.2~), mountall (<< 2.0~), s390-tools (<< 1.8.3-2~)
Conflicts: usplash (<< 0.5.50)
Conffiles:
/etc/initramfs-tools/initramfs.conf 8801535d9bec98754eea6a172f956d42
/etc/initramfs-tools/update-initramfs.conf e2026d4603e7161efaccca519aeb1297
/etc/kernel/postinst.d/initramfs-tools fe7713b9a74a10ed71d1e7dd93afc209
/etc/kernel/postrm.d/initramfs-tools e22d1ab0d7a7a1b66ae6d71ea4f21938
/etc/bash_completion.d/initramfs-tools 7eeb7184772f3658e7cf446945c096b1
Description: tools for generating an initramfs
This package contains tools to create and boot an initramfs for packaged 2.6
Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the
kernel unpacks that archive into RAM, mounts and uses it as initial root file
system. The mounting of the real root file system occurs in early user space.
klibc provides utilities to setup root. Having the root on MD, LVM2, LUKS or
NFS is also supported.
Any boot loader with initrd support is able to load an initramfs archive.
Original-Maintainer: Debian kernel team <[email protected]>
Package: makedev
Status: install ok installed
Multi-Arch: foreign
Priority: required
Section: admin
Installed-Size: 126
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 2.3.1-89ubuntu2
Depends: base-passwd (>= 3.0.4)
Conflicts: udev (<= 0.024-7)
Description: creates device files in /dev
The MAKEDEV executable is used to create device files, often in /dev.
.
Device files are special files through which applications can interact
with hardware.
.
This package is not necessary for most modern Linux systems, where the udev
subsystem provides a more dynamic mechanism for device file management.
Original-Maintainer: Bdale Garbee <[email protected]>
Package: laptop-detect
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 56
Maintainer: Ubuntu Core Developers <[email protected]>
Architecture: amd64
Version: 0.13.7ubuntu2
Depends: dmidecode (>> 2.8-2)
Description: attempt to detect a laptop
laptop-detect attempts to determine whether it is being run on a laptop or a
desktop and appraises its caller of this.
Original-Maintainer: Otavio Salvador <[email protected]>
Package: libxml2
Status: install ok installed
Multi-Arch: same
Priority: standard
Section: libs
Installed-Size: 1745
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Version: 2.7.8.dfsg-5.1ubuntu4.3
Depends: libc6 (>= 2.15), zlib1g (>= 1:1.2.3.3.dfsg)
Pre-Depends: multiarch-support
Recommends: xml-core
Description: GNOME XML library
XML is a metalanguage to let you design your own markup language.
A regular markup language defines a way to describe information in
a certain class of documents (eg HTML). XML lets you define your
own customized markup languages for many classes of document. It
can do this because it's written in SGML, the international standard
metalanguage for markup languages.
.
This package provides a library providing an extensive API to handle
such XML data files.
Homepage: http://xmlsoft.org/
Original-Maintainer: Debian XML/SGML Group <[email protected]>
Package: telnet
Status: install ok installed
Priority: standard
Section: net
Installed-Size: 204
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Source: netkit-telnet
Version: 0.17-36build1
Replaces: netstd
Provides: telnet-client
Depends: netbase, libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libncurses5 (>= 5.6+20071006-3), libstdc++6 (>= 4.1.1)
Description: The telnet client
The telnet command is used for interactive communication with another host
using the TELNET protocol.
Original-Maintainer: Alberto Gonzalez Iniesta <[email protected]>
Package: login
Essential: yes
Status: install ok installed
Priority: required
Section: admin
Installed-Size: 1048
Maintainer: Ubuntu Developers <[email protected]>