summaryrefslogtreecommitdiffstats
path: root/data/packages/new-packages
blob: a885804af34d9240b83d82b98f987db015166ad5 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
# List of new source packages
#
# This list of packages is updated pseudo-automatically every couple of
# days.
# It's pourpose is to make it easier to:
# * go through the NFUs and check if the newly introduced packages are
#    not affected by any security issue.
# * check if the packages embed any code copy.
#
# Once a package is reviewed it can be deleted from this list and won't
# be re-added (unless it is removed and later re-added to the archive).
#

gespeaker
guidance-power-manager
libenv-path-perl
librestclient-ruby
pudb
gdisk
polyorb
alsoft-conf
anytun
camljava
dotlrn
eigenbase-farrago
freedesktop-sound-theme
libgraphics-libplot-perl
libpam-alreadyloggedin
mondrian
nautilus-scripts-manager
olap4j
openacs
uget
wbox
xtitle
boostpythongenerator
dicomscope
focal
jsonpickle
libphash
luajit
lxde-icon-theme
makedumpfile
netsniff-ng
omhacks
remmina
remmina-gnome
rlvm
ansel1
attica
coinor-flopc++
diffpdf
eigenbase-resgen
exec-maven-plugin
freehep-swing
fsarchiver
geda-gaf
gnelib
gobby-infinote
gtkhash
hawknl
ibus-array
ibus-unikey
infiniband-diags
lcrack
libbunny-ruby
libclutter-perl
libconfig-ini-mvp-perl
libconfig-ini-perl
libconfig-mvp-perl
libdist-zilla-perl
libinfinity
libjlatexmath-java
libmixin-extrafields-param-perl
libmixin-extrafields-perl
libmodule-install-xsutil-perl
libnet-twitter-lite-perl
libpdl-netcdf-perl
libperl-version-perl
libpod-elemental-perl
libstring-flogger-perl
libstring-formatter-perl
libsub-exporter-formethods-perl
libtest-corpus-audio-mpd-perl
llvm-py
lptools
magics++
openopt
osm-gps-map
pescetti
pixelmed
python-django-djapian
python-django-shorturls
python-elementary
python-testscenarios
r-cran-teachingdemos
scim-unikey
simple-scan
smem
sndfile-tools
vor
convert-pgn
eleeye
libeval0
libeval0-dev
imview-doc
ko.tex
libdb-je-java
merb
pidgin-microblog
rcs
saxonb
slack
software-center
taskjuggler
tokyocabinet-ruby
uanytun
xblast-tnt
xblast-tnt-sounds
dnsjava
dcap
gwakeonlan
libcatalyst-action-rest-perl
libpdfbox-java
multiboot
poppler-data
rainbow
freemind
axis2c
bist
coinor-ipopt
cvc3
dajaxice
epix
ethos
geronimo-ejb-3.0-spec
geronimo-j2ee-connector-1.5-spec
geronimo-jacc-1.1-spec
geronimo-jms-1.1-spec
geronimo-jpa-3.0-spec
geronimo-jta-1.0.1b-spec
gs-cjk-resource
gwt
haskell-cautious-file
haskell-deepseq
haskell-ghc-mtl
haskell-hstringtemplate
haskell-sha
haveged
hitchhiker
ibsim
ibus-table-jyutping
islamic-menus
kabikaboo
libalgorithm-diff-xs-perl
libaxiom-java
libmoosex-types-common-perl
libtest-synopsis-perl
libtext-vimcolor-perl
pesto
rampart
remmina-xfce
rfkill
libcgi-validop-perl
libclass-gomor-perl
libcolor-library-perl
libdebug-client-perl
libfile-copy-link-perl
libforest-perl
libmodule-used-perl
libmoosex-aliases-perl
libmoosex-clone-perl
libmoosex-multiinitarg-perl
libnet-epp-perl
libobject-insideout-perl
libtemplate-plugin-clickable-email-perl
libtemplate-plugin-number-format-perl
libtemplate-tiny-perl
libtest-json-perl
boost1.41
colortail
haskell-hint
haskell-recaptcha
haskell-text
haskell-url
haskell-xml
liblocale-hebrew-perl
libmoosex-types-varianttable-perl
libnet-libdnet-perl
libnet-write-perl
libnfo
libplayer
libtest-module-used-perl
miwm
mono-fuse
polib
procserv
shotwell
tryton-modules-account-invoice-line-standalone
tryton-modules-calendar
tryton-modules-calendar-scheduling
tryton-modules-calendar-todo
tryton-modules-company-work-time
tryton-modules-google-translate
tryton-modules-ldap-authentication
tryton-modules-ldap-connection
tryton-modules-party-vcarddav
tryton-modules-product-price-list
tryton-modules-project
tryton-modules-project-revenue
tryton-modules-purchase-invoice-line-standalone
tryton-modules-sale-price-list
tryton-modules-timesheet
tryton-neso
wordpress-openid
wordpress-xrds-simple
xfoil
xpyb
zope.contenttype
haskell-split
haskell-texmath
libibcm
pyabiword
libtest-apocalypse-perl
libtest-sharedfork-perl
pypibrowser
pyragua
python-geoclue
python-jswebkit
shared-desktop-ontologies
systempreferences.app
xf86-input-wacom
bluewho
bnd
daa2iso
easymp3gain
gprbuild
haskell-filemanip
httpfs2
jxplorer
kannel-sqlbox
libjna-posix-java
libjpeg8
libmoosex-storage-perl
libredis-perl
libtablelayout-java
libthrowable-perl
libtimedate-perl
life
meep-mpich
mini-buildd
moblin-session
omniorb-dfsg
plasma-widget-yawp
pytracer
rtgui
ccbuild
doxypy
ezgo
firebird2.5
python2.6
python3-stdlib-extensions
python3.1
red5
simutrans-pak128.britain
tabmixplus
tagcloud
usb-modeswitch-data
yui-compressor
zeitgeist
colorname
dojo
freehep-graphics2d
fsgateway
gtk2-engines-aurora
haskell-datetime
hornsey
jabref
jeex
latex2html
libencode-arabic-perl
libfile-sharedir-install-perl
libgeometry-primitive-perl
libgraphics-color-perl
libisnativec-java
libjpedal-jbig2-java
libtest-consistentversion-perl
libtest-eol-perl
libtest-nobreakpoints-perl
libtest-requires-perl
libtest-tcp-perl
libxmlenc-java
libxmlezout
meliae
mon-client
moneta
monodevelop-python
mygpoclient
ngorca
nordugrid-arc-nox
notmuch
pgn2web
polkit-qt-1
python-aalib
python-old-doctools
python-redis
tokyotyrant
winwrangler
python3-defaults
sysconftool
fenics
gextractwinicons
gwrite
ibus-skk
ibutils
json-c
kopete-facebook
krb5-appl
libcrypt-x509-perl
liblog4ada
libtggraphlayout-java
libvalhalla
lrzip
modemmanager
mx
netty
opensaf
bobo
duply
dvblast
kwalletcli
libpod2-base-perl
rabbit
xappy
libopensync-plugin-vformat
libunicode-map8-perl
serna-free
r-cran-diagnosismed
python-lzma
cyrus-imspd
ganeti-htools
osynctool
otf-yozvox-yozfont
zeromq
haskell-filestore
javamorph
libgraphics-primitive-perl
libhtp
libtext-flow-perl
mingw-w64
opendnssec-auditor
python-chameleon
python-ipaddr
r-cran-epir
slimrat
sourcecodegen
tintii
passwdqc
coderay
freehep-export
fts
gmlive
libbeanstalkclient-ruby
libhtml-stream-perl
libpod-tree-perl
uthash
acetoneiso
gpsshogi
haskell-qio
jas-plotter
libosl
libtuxcap
qgis
agda-stdlib
critterding
fex
libhsm
libjibx1.1-java
libjibx1.2-java
pyclutter-gtk
pyside
sage-extension
xmlbeans
clojure-contrib
clutter-gesture
cobertura
djagios
edfbrowser
freehep-graphicsio
freehep-graphicsio-tests
gnome-activity-journal
graphy
haskell-feed
jconvolver
libclass-loader-perl
libconvert-ascii-armour-perl
libdessert0.87
libgps-point-perl
libimobiledevice
libisrt-java
libnet-gpsd3-perl
libopensync-plugin-xmlformat
libperl-apireference-perl
libtie-encryptedhash-perl
lprfax
meep-openmpi
nipype
python-ctypeslib
scid-rating-data
scid-spell-data
tanglet
zookeeper
jfractionlab
microdc2
mingw32-ocaml
mongodb
moovida
moovida-plugins-bad
moovida-plugins-good
moovida-plugins-ugly
namebench
nodejs
texfam
wss4j
gpsim
objgraph
obrowser
oggvideotools
php-clamav
pisa
plasma-widget-networkmanagement
prelude-notify
pyfiglet
pynagram
pyodbc
pysilc
pysmbc
python-django-rosetta
python-html2text
libtext-bidi-perl
r-cran-medadherence
redshift
regina-rexx
scatterplot3d
seabios
shush
simple-xml
softhsm
suricata
system-config-cluster
task
trac-wikiprint
trac-wikirename
uncertainties
unison2.27.57
virt-goodies
zkclient
anjuta-extras
apipkg
barada-pam
bcov
boost1.42
bzr-pipeline
calf
catcodec
cobertura-maven-plugin
liblocale-ruby
turnin-ng
upower
blobby
enna
glee
libinnodb
libjasper-java
libmixlib-authentication-ruby
libsocialweb
virtuoso-opensource
ant1.7
desktopcouch
famfamfam-flag
libisfreetype-java
udisks
gjay
libcolor-palette-perl
libextutils-cchecker-perl
libfile-countlines-perl
libio-interactive-perl
libiscwt-java
libtext-mediawikiformat-perl
aspell-hsb
beid
cnetworkmanager
coinor-symphony
copyright-update
django-app-plugins
django-dajax
django-threaded-multihost
dlr-languages
dos2unix
dreampie
dyndns
easyconf
fofix-dfsg
fosfat
freehep-graphicsio-emf
freehep-graphicsio-java
freehep-graphicsio-pdf
freehep-graphicsio-ps
freehep-graphicsio-svg
freehep-graphicsio-swf
freehep-xml
gdc-4.3
geographiclib
geronimo-interceptor-3.0-spec
gfarm
gfarm2fs
globus-gram-job-manager-setup-sge
globus-xio-pipe-driver
groundcontrol
hadoop
haskell-hscurses
ibid
ipwatchd
ipwatchd-gnotify
kmymoney
libbusiness-paypal-api-perl
libcache-historical-perl
libdevel-stacktrace-ashtml-perl
libemail-sender-transport-smtp-tls-perl
libfilesys-notify-simple-perl
libgraphics-primitive-driver-cairo-perl
libhtml-toc-perl
libhttp-parser-xs-perl
libical-parser-perl
libjboss-buildmagic-java
liblayout-manager-perl
liblocales-perl
liblog-dispatch-array-perl
liblog-dispatchouli-perl
libmoosex-types-json-perl
libnet-smtp-tls-perl
libnl2
libqt4pas
libsimple-validation-java
libstatistics-online-perl
libtie-shadowhash-perl
libwebcam
libxr
linthesia
lsyncd
mcrl2
mecab-naist-jdic
mistelix
mlton-cross
morituri
mpdcron
muroar
mvel
mysql-mmm
nforenum
ntrack
openshot
otf-ipaexfont
piwigo
polkit-kde-1
pytest-xdist
python-django-piston
python-paver
redmine-plugin-botsfilter
shutdown-qapps
sitemesh
srtp
t2html
tacacs+
testrepository
tinyxml
tolua++
virtualenvwrapper
xslthl
xtel
z80ex
ats-lang-anairiats
bitmeter
cifs-utils
hlbrw
htmlcxx
libcompass-ruby
libfssm-ruby
librb-inotify-ruby
libtest-exit-perl
maven-enforcer
msva-perl
pwget
rabbitvcs-cli
rabbitvcs-core
rabbitvcs-gedit
rabbitvcs-nautilus
svnkit
xsddiagram
gosa-perl
haskell-mmap0.4
haskell-non-negative
haskell-sdl-gfx
haskell-sdl-image
haskell-sdl-mixer
haskell-sdl-ttf
haskell-transformers
instantbird
libffi-ruby
cairo-dock-plugins
grfcodec
libhash-multivalue-perl
libmath-gradient-perl
pexec
pianobar
ambdec
asterisk-espeak
asterisk-flite
banshee-community-extensions
compass-susy-plugin
emelfm2-svg-icons
gettext-ant-tasks
gpsprune
haskell-hxt
jabref-plugin-oo
libcatalyst-devel-perl
libnss-gw-name
mapnik-viewer
menu-l10n
mysql-5.1
netio230a
openttd-opengfx
pdf-presenter-console
pinta
snowball
taningia
togl
vtkedge
haskell-sdl
imageshack-uploader
numptyphysics
pystemmer
trac-datefieldplugin
trac-wikitablemacro
haskell-data-accessor
haskell-explicit-exception
haskell-monoid-transformer
haskell-utility-ht
libdata-treedumper-renderer-gtk-perl
clojure-maven-plugin
commons-exec
ddir
gpxviewer
libdirectory-scratch-structured-perl
muroard
openrocket
raincat
scilab-celestlab
scilab-scimysql
haskell-event-list
haskell-markov-chain
nagstamon
skipfish
ust
webgen0.5
libhtml-defang-perl
liblog-any-perl
libnet-nationalrail-livedepartureboards-perl
objenesis
openttd
aaphoto
bzr-rewrite
cluster-agents
cluster-glue
codelite
django-auth-ldap
django-picklefield
docky
fusionforge
fusioninventory-agent
globus-libxml2
libautobox-dump-perl
libautovivification-perl
libbusiness-onlinepayment-ippay-perl
libbusiness-onlinepayment-payflowpro-perl
libbusiness-onlinepayment-paymentech-perl
libclass-mix-perl
libdate-iso8601-perl
libdate-jd-perl
libdatetime-format-epoch-perl
libdatetime-timezone-systemv-perl
libdatetime-timezone-tzfile-perl
libfusioninventory-agent-task-ocsdeploy-perl
libheimdal-kadm5-perl
libhttp-server-simple-psgi-perl
libindirect-perl
libmodern-perl-perl
libnet-ssh-ruby
libnet-whois-parser-perl
libperl-prereqscanner-perl
libperl6-caller-perl
libqinfinity
libtaint-util-perl
libticket-simple-perl
libtime-y2038-perl
libversion-requirements-perl
multiwatch
ocamlviz
plymouth
sabayon
tryton-modules-calendar-classification
tryton-modules-dashboard
tryton-modules-party-siret
aimage
geronimo-activation-1.1-spec
gogoc
haskell-midi
ibus-tegaki
icinga
ipheth
kobby
liblinux-dvb-perl
nfs4-acl-tools
pygccxml
saga
bml
jets3t
python-cloudservers
python-drizzle
python-tornado
rinputd
tritium
urg
yorick-optimpack
bsl
buzztard
dracut
drizzle
drupal6-mod-i18n
drupal6-mod-inline
drupal6-mod-ldap-integration
drupal6-mod-masquerade
drupal6-thm-arthemia
drupal6-trans-ru
flush
gst-buzztard
narval
pleiades
python-nmap
ahcpd
babeld
git-dpm
haskell-type-level
m17n-im-config
openr2
portlet-api-2.0-spec
pymongo
git
haskell-llvm
libgnome-keyring
qviaggiatreno
libfprint
phonon
wesnoth-1.8
xserver-xorg-video-nouveau
pam-fprint
gdevilspie
itsol
libformat-human-bytes-perl
libgrss
libhttp-oai-perl
libmath-polygon-perl
libpath-dispatcher-declarative-perl
libplack-perl
mm-common
ns3
php-tokyo-tyrant
qt-sdk
scikit-learn
slony1-2
spyder
gitolite
ocrfeeder
opendnssec-conf
opendnssec-enforcer
opendnssec-signer
sparskit
spim
sweethome3d
gmic
deets
libfusioninventory-agent-task-netdiscovery-perl
libfusioninventory-agent-task-snmpquery-perl
gdm3
gyp
libanyevent-i3-perl
libautobox-core-perl
libeval-context-perl
libgtk2-sourceview2-perl
libhtml-calendarmonthsimple-perl
liblocale-currency-format-perl
libmemoize-expirelru-perl
libmemoize-memcached-perl
libpdf-api2-simple-perl
libtext-csv-encoded-perl
oasis3
dapl
github-cli
gunicorn
haskell-harp
haskell-hjavascript
haskell-hsx
haskell-maybet
libfm
mstflint
ofed-docs
pidgin-openpgp
qlvnictools
rds-tools
srptools
tvflash
llvm-2.7
ocaml-usb
gnome-color-manager
mailavenger
re2
coffeescript
dh-autoreconf
ditaa
ecm
flask
fso-specs
google-mock
ibus-table-code
ibus-table-tv
libspring-webflow-2.0-java
libsysactivity
ojs
olpc-kbdshim
olpc-powerd
opticalraytracer
posterazor
python-xklavier
vala-dbus-binding-tool
cmospwd
ctapi
django-markupfield
emerillon
etsf-io
gnome-icon-theme-extras
jbig2dec
jedit
libjbcrypt-java
memphis
ploader
python-django-djblets
python-prctl
rabbitvcs
skrooge
sylph-searcher
tap-plugins-doc
tempest-for-eliza
totem-plugin-arte
vowpal-wabbit
yorick-mira
asciio
django-countries
kbluetooth
libarch-perl
libautobox-list-util-perl
libclass-perl
pydhcplib
python-nids
multistrap
torque
shiboken
chordii
libspring-ldap-java
q4wine
astk
cipux-rpc-client
eiskaltdcpp
libcache-memcached-fast-perl
libclass-accessor-class-perl
libhtml-template-dumper-perl
libmusicbrainz-discid-perl
libnetsds-kannel-perl
libnetsds-perl
libnetsds-util-perl
libopengl-xscreensaver-perl
trac-icalviewplugin
xul-ext-monkeysphere
chromium-browser
hbase
cipux-cat-web
pam-python
sssd
kdevelop-php
kdevelop-php-docs
libpam-mklocaluser
libpam-script
sibyl-installer
v4l-utils
w-scan
acgvision-agent
autodir
bdii
bley
colortest
debian-ports-archive-keyring
glue-schema
gnome-icon-theme-symbolic
gnome-randr-applet
gnome-scan
gtklick
itksnap
jinput
jmock2
jutils
kingston-update-notifier
klick
latexila
libbio-mage-utils-perl
libcatalystx-leakchecker-perl
libchart-clicker-perl
libclass-isa-perl
libconfig-mvp-reader-ini-perl
libdatetime-format-dbi-perl
libdist-zilla-plugin-podweaver-perl
libforms
libgraph-easy-as-svg-perl
libgraph-easy-perl
libhash-fieldhash-perl
libkinosearch1-perl
liblingua-en-inflect-phrase-perl
liblingua-en-tagger-perl
libmojomojo-perl
libnet-https-any-perl
libobject-id-perl
libpdl-io-hdf5-perl
libperl5i-perl
libpod-elemental-perlmunger-perl
libpod-plainer-perl
libpod-weaver-perl
libspring-security-2.0-java
libswitch-perl
libtest-inter-perl
libtest-notabs-perl
libtext-sass-perl
mdds
mockito
mrtrix
mswatch
mule
mythes
parole
pdfgrep
perl-depends
pius
pyliblo
python-gevent
python-greenlet
rekonq
roffit
sciscipy
uimaj
verilator
amispammer
clean-crypto
cloc
ctemplate
eucalyptus
frontaccounting
gst123
guayadeque
haskell-debian
haskell-dummy
haskell-haskore
ibus-table-xingma
ibus-table-yinma
libbtm-java
libcpan-meta-perl
libdbusmenu-qt
libdvbpsi
libexpect-php5
libktorrent
libmoosex-types-perl-perl
libnet-akamai-perl
libnss-myhostname
libversion-perl
libvpx
literki
php-net-dnsbl
php-text-wiki
php-xml-rpc
plasma-widget-cwp
ptlib-wolf
r-cran-inline
smarty3
stterm
tomoe
tomoyo-tools
unittest2
xylib
zynjacku
antlr-maven-plugin
bucardo
chef
connectagram
desktopnova
easyzone
erm
espeakedit
fbterm-ucimf
fcgiwrap
fetch-crl
freespacenotifier
freshen
fuse-posixovl
fuss-launcher
gio-sharp
glpeces
haskell-mwc-random
haskell-primitive
haskell-vector
html2markdown
ibus-table-cangcan
ibus-table-xingyin
jpegjudge
kcm-tablet
libfakefs-ruby
libpodofo0.8.0
libucimf
openstv
php-arc
radicale
rail
raschsampler
rxp
synaptiks
telepathy-sunshine
tiled-qt
upnp-router-control
wiki2beamer
xserver-xorg-video-qxl
arcjobtool
gross
libjgrapht0.8-java
libquvi
ltt-control
plasma-widget-smooth-tasks
sakura
strophejs
tclcl
xmlextras
grr.app
gtk2hs-buildtools
haskell-cairo
haskell-erf
haskell-gconf
haskell-glade
haskell-glib
haskell-gnomevfs
haskell-gstreamer
haskell-gtk
haskell-gtkglext
haskell-gtksourceview2
haskell-hjscript
haskell-pango
haskell-soegtk
haskell-statistics
haskell-vector-algorithms
haskell-vte
haskell-webkit
hpanel
libfsoresource
libva
otcl
pykickstart
python-restkit
arduino
aufs-tools
bup
clamz
dbar
emdebian-crush
geronimo-jpa-2.0-spec
geronimo-osgi-support
geronimo-validation-1.0-spec
haskell-criterion
haskell-hsp
haskell-svgcairo
knopflerfish-osgi
lwjgl
ns2
pyimport-relative
python-gudev
python-setproctitle
rome
sentinella
u-boot
ucimf-openvanilla
vdpau-video
xen-tools
ants
atinject-jsr330
fprint-demo
gedit-r-plugin
h323plus
haskell-gio
haskell-glfw
haskell-hsemail
haskell-sendfile
haskell-smtpclient
haskell-unix-compat
hessian
hoauth
libamazon-sqs-simple-perl
libsmf
lunch
lv2vocoder
mdbus
nam
rawtherapee
sdo-api-java
serp
simplesamlphp
yoshimi
drmaa
haskell-strict-concurrency
lv2-c++-tools
pygi
rtmpdump
silentjack
libdesktop-agnostic
jackmeter
jkmeter
kraft
libtpl
ltpanel
mango-lassi
radiotray
sflphone
libgettext-activerecord-ruby
libjsr311-api-java
openjpa
qxmlrpc
salome
shr-specs
bluetile
boolector
colortest-python
django-openid-auth
haskell-colour
haskell-diagrams
haskell-syb-with-class-instances-text
hkl
kxml2
libaudio-cd-perl
libbusiness-issn-perl
libfann
libhdhomerun
libindicator
libjackson-json-java
libkqueue
libmail-rfc822-address-perl
libmime-tools-perl
libmoosex-setonce-perl
libnet-dbus-glib-perl
libpackage-stash-perl
libphone-ui
libtext-trim-perl
maptransfer
nama
python-opster
python-whisper
sessioninstaller
weave
zpaq
beid
coils
cutter-testing-framework
eclipselink
howm
httpcomponents-core
lekhonee-gnome
libafs-perl
libdigest-hmac-perl
libdigest-md2-perl
libjtype-java
liblocale-rails-ruby
libmath-base36-perl
libnet-hotline-perl
libnih
lxtask
minitube
phonefsod
pylibssh2
shorewall-init
xfce4-indicator-plugin
zyn
bzr-grep
django-nose
emu8051
gexiv2
goto-fai
ia32-libs-core
libparse-dia-sql-perl
libraw
logkeys
sharand
xen
auto-install-el
goto-common
indicator-applet
indicator-messages
kprogress
libdbusmenu
libgettext-rails-ruby
libindicate
lua-event
mooproxy
opencc
partman-btrfs
pytools
freerdp
markupsafe
amavisd-milter
apache-upload-progress-module
autotrash
django-reversion
eclipse-emf
eclipse-rse
flotr
gifticlib
goto-fai-backend
haskell-binary-shared
haskell-ghc-events
haskell-ltk
im-config
jackd-defaults
jackd2
jcgui
jcsp
libantlr3c
libaudiomask
libmojolicious-perl
libppix-utilities-perl
lv2fil
mcron
mic2
monajat
openvanilla-modules
poppler-sharp
pycountry
python-pyftpdlib
qwbfsmanager
scalc
vocproc
voxbo
zp
asterisk-moh-opsound
audacious-analog-vumeter-plugin
auto-complete-el
cutycapt
episoder
geronimo-commonj-spec
googlecl
haskell-haddock
haskell-happstack-data
haskell-happstack-util
haskell-leksah
haskell-leksah-server
icu4j-4.2
isc-dhcp
javacc-maven-plugin
jtb
latexml
libblocksruntime
libclass-dbi-loader-relationship-perl
libjsr166y-java
libocas
libregexp-grammars-perl
libspnav
lintex
mojarra
musescore
netperfmeter
openmeeg
panflute
petit
php-numbers-words
php-text-password
pyevolve
python-enum
python-fs
python-keyczar
qoauth
screenie-qt
svn-all-fast-export
threadscope
remmina-plugins
apache-mime4j
archivemount
composite
crossroads
debian-gis
geogebra
gnome-paint
goaccess
haskell-happstack-ixset
haskell-happstack-server
haskell-happstack-state
ifetch-tools
importlib
koffice
koffice-l10n
libdispatch
libfinance-quotehist-perl
libgpars-groovy-java
libnet-ssh-multi-ruby
mozc
mpfr4
picard-tools
polylib
python-csa
python-mailer
rheolef
strongwind
xgks
xjadeo
extplorer
freediams
kbackup
libjs-edit-area
libjs-extjs
php-http-webdav-server
php-image-text
php-mime-type
php-services-json
php-text-captcha
php-text-figlet
acedb
buildapp
camelot
chipw
flashbake
gkrelluim
httpcomponents-client
live-boot
live-config
logfs-tools
maven-ant-tasks
oauth-signpost
partman-ufs
qt4-perl
slimevolley
suckless-tools
suds
syslinux-themes-debian
tryton-modules-project-plan
xen-qemu-dm-4.0
haskell-happstack
hivex
liblinear
msgpack
pdfmod
pydicom
spacenavd
zorp
aroarfw
asterisk-core-sounds
debichem
doctrine
eot-utils
freeplane
libharu
roaraudio
ssh-contact
forked-daapd
gnome-screensaver-flags
gudev-sharp-1.0
juffed
libmoosex-followpbp-perl
mupdf
phasex
plasma-widget-fastuserswitch
pyrit
python-qrencode
stella
zathura
cssparser
cups-pk-helper
phonon-backend-vlc
python-box2d
python-elements
cba
cpptasks
django-ajax-selects
foxtrotgps
geogebra-kde
guitarix
haskell-lexer
haskell-pretty-show
libdbix-class-introspectablem2m-perl
libgdamm4.0
libhibernate-jbosscache-java
libpackage-deprecationmanager-perl
libposix-strptime-perl
libscalar-util-numeric-perl
php-net-whois
pike7.8
projectm
python-stdnum
sugar-memorize-activity
sugar-physics-activity
2ping
3depict
a2jmidid
algotutor
antelope
anything-el
auto-multiple-choice
autojump
autotalent
bar
biococoa
bluedevil
bootchart2
btag
cacheviewer
castor
chemical-structures
cipux-passwd
clipit
clustershell
clzip
cmip5-cmor-tables
cmor
codenarc
colorpicker
compcache-tools
daemonfs
debian-installer-launcher
debian-installer-netboot-images
dhcpcd-dbus
dhcpcd-ui
dhcpcd5
dispmua
dkopp
drupal6-mod-addtoany
drupal6-mod-cck
drupal6-mod-commentrss
drupal6-mod-contemplate
drupal6-mod-filefield
drupal6-mod-imageapi
drupal6-mod-imagecache
drupal6-mod-imagecache-actions
drupal6-mod-imagefield
drupal6-mod-imagefield-assist
drupal6-mod-lightbox2
drupal6-mod-openid-provider
drupal6-mod-pingback
drupal6-mod-site-verify
drupal6-mod-tagadelic
drupal6-mod-trackback
drupal6-mod-views
drupal6-mod-xmlsitemap
drupal6-mod-xrds-simple
dtd-ead
dumpet
dynalang
eficas
ejabberd-mod-shared-roster-ldap
el-get
elektra
enum
eurephia
evernote-mode
fbautostart
feed2omb
felix-latin
firexpath
flask-wtf
flufl.enum
focuswriter
font-hosny-amiri
font-manager
fontchooser
fped
fracplanet
freesba
freetts
fstrim
ftputil
fusioninventory-for-glpi
gally
gatling
gdc-4.4
gearman-interface
gedit-valencia-plugin
getdp
ghostess
git-annex
gitit
gjacktransport
glogg
gmetrics
gmtkbabel
gmtp
gnome-gmail
gnuspool
goban
google-glog
grantlee
gsql
gst-entrans
gupnp-dlna
haildb
haskell-hfuse
haskell-hxt-cache
haskell-hxt-charproperties
haskell-hxt-curl
haskell-hxt-http
haskell-hxt-regex-xmlschema
haskell-hxt-relaxng
haskell-hxt-tagsoup
haskell-hxt-unicode
haskell-hxt-xpath
haskell-hxt-xslt
hatop
hawtjni
hgnested
hunspell-kk
ibus-el
ibus-input-pad
ibus-table-chinese
ibus-table-others
ibus-xkbc
imap-acl-extension
imspector
input-pad
ioquake3
jack-capture
jack-keyboard
jack-mixer
jaffl
jansi
jansi-native
jcodings
jffi
jnr-x86asm
joblib
jodreports
jruby-joni
jxgrabkey
k8temp
kcov
kmetronome
kumofs
ladvd
letterize
libaddressable-ruby
libamazonec2-ruby
libapache-htgroup-perl
libapache2-mod-qos
libapache2-mod-rivet
libaudio-ecasound-perl
libaudio-rpld-perl
libbio-das-lite-perl
libbluedevil
libbytelist-java
libcatalyst-manual-perl
libchi-perl
libclass-handle-perl
libconfig-autoconf-perl
libconqat-ccsm-commons-java
libconqat-simulink-java
libconvert-nls-date-format-perl
libdancer-perl
libdancer-plugin-database-perl
libdata-phrasebook-loader-yaml-perl
libdata-phrasebook-perl
libdata-show-perl
libdatetime-format-oracle-perl
libdevel-bt-perl
libdevice-usb-pcsensor-hidtemper-perl
libdevice-usb-perl
libdigest-jhash-perl
libdir-self-perl
libdist-zilla-plugin-prepender-perl
libdist-zilla-plugins-cjm-perl
libdrumstick
libelixirfm-perl
libemail-outlook-message-perl
libencode-hanextra-perl
libencode-jis2k-perl
libexception-class-dbi-perl
libexporter-renaming-perl
libfile-flock-perl
libfile-slurp-unicode-perl
libfile-userconfig-perl
libgeo-osm-tiles-perl
libglobalhotkeys-ruby
libhash-moreutils-perl
libhtml-encoding-perl
libinstpatch
libjifty-plugin-oauth-perl
liblatex-decode-perl
liblist-allutils-perl
liblist-maker-perl
liblist-utilsby-perl
liblog-any-adapter-dispatch-perl
liblog-any-adapter-perl
libltcsmpte
libmail-deliverystatus-bounceparser-perl
libmath-bezier-perl
libmath-bigint-perl
libmathml-ruby
libmnl
libmodule-starter-plugin-simplestore-perl
libmodule-starter-plugin-tt2-perl
libmonkey-patch-perl
libmoosex-nonmoose-perl
libmoosex-poe-perl
libmousex-types-perl
libmsgpack-ruby
liboauth
liboauth-ruby
libobject-pluggable-perl
libphone-ui-shr
libphp-swiftmailer
libpipeline
librtf-writer-perl
libsgml-parser-opensp-perl
libstring-camelcase-perl
libsub-delete-perl
libterm-ansicolor-ruby
libterm-sk-perl
libterm-twiddle-perl
libtest-fatal-perl
libtest-log-dispatch-perl
libtest-regression-perl
libtest-weaken-perl
libtext-qrcode-perl
libunicode-collate-perl
libv-perl
libweather-google-perl
libxml-libxml-simple-perl
libxml-tokeparser-perl
libzeitgeist
linux-patch-tuxonice
livetribe-jsr223
lua-cyrussasl
luakit
mcu8051ide
mda-lv2
meego-packaging-tools
midgard2-core
mididings
modestmaps-py
moria
mpris-remote
mriconvert
mricron
mspdebug
mtdev
multicat
munkres
mussh
nailgun
naspro-bridges-bad
naspro-core
nibabel
nitime
nodau
notmuchsync
numexpr
ocamlify
oocairo
opendnssec
openerp-modules-poweremail
openfetion
opennebula
openresolv
openttd-openmsx
openvswitch
ovito
pacemaker-mgmt
packagekit
partman-zfs
pd-bassemu
pd-beatpipe
pd-bsaylor
pd-comport
pd-cxc
pd-earplug
pd-ekext
pd-ext13
pd-freeverb
pd-iemnet
pd-libdir
pd-markex
pd-maxlib
pd-mjlib
pd-motex
pd-pan
pd-pdogg
pd-plugin
pd-pmpd
pd-sigpack
pd-smlib
pd-wiimote
pd-windowing
pdlzip
permafrost
pgsql-asn1oid
phoneui-apps
phoneuid
php-xml-rpc2
php5-midgard2
pidgin-gmchess
pidgin-twitter
pipemeter
pithos
pkg-components
plasma-widget-adjustableclock
playitslowly
plotmm
plzip
pomodoro-applet
postfix-cluebringer
postgresql-9.0
premake
projectfootball
protoaculous
ptpd
puredata-import
py-postgresql
pyacidobasic
pymca
pymecavideo
pyoptical
pyppd
pysatellites
pyth
python-aiml
python-bitarray
python-configglue
python-django-extdirect
python-django-threadedcomments
python-django-voting
python-easygui
python-fastimport
python-fixtures
python-gflags
python-jsonrpc2
python-notmuch
python-oauth2
python-pgmagick
python-popcon
python-protobuf.socketrpc
python-pyalsa
python-pyaudio
python-pytc
python-repoze.sphinx.autointerface
python-txosc
python3-ipaddr
pyxpcom
pyzmq
qmidinet
quickproxy
qxmpp
r-cran-evd
rapid-spring
rbtools
rdfind
roarplaylistd
rtkit
scenic
sciteproj
sdpa
sea-defender
shrinksafe
sieve-extension
silo-llnl
simplegeneric
sisc
sm-archive
spamassassin-heatu
spectacle
spherepack
sshuttle
stackapplet
stardict-czech
sugar-0.90
sugar-artwork-0.90
sugar-base-0.90
sugar-connect-activity
sugar-datastore-0.90
sugar-irc-activity
sugar-jigsawpuzzle-activity
sugar-log-activity-0.86
sugar-moon-activity
sugar-poll-activity
sugar-presence-service-0.90
sugar-record-activity
sugar-terminal-activity
sugar-toolkit-0.90
sugar-write-activity-0.86
surf
svtools
swami
swh-lv2
swig2.0
syncplaces
telepathy-ring
tilestache
tinyeartrainer
tomcat-maven-plugin
toonloop
transgui
trimage
tryton-modules-sale-opportunity
turtleart
twatch
ukopp
unscd
v4l2loopback
viridian
wah-plugins
webkit-image
wesnoth-1.9
whyteboard
wicd-kde
wikkid
woof
wordpress-shibboleth
wraplinux
wtforms
xacobeo
xburst-tools
xdot
xsystem35
yydebug
zeitgeist-extensions
zfsutils
zita-at1
zita-resampler
zutils
accountsservice
alsaequal
bitcoin
brian
caml2html
camlmix
check-postgres
clustalw
couchapp
d-itg
ddpt
docbookwiki
easy-format
foo-yc20
geoip-database
gkeyfile-sharp
gmerlin-avdecoder
gmerlin-encoders
gtk-sharp-beans
hexec
identicurse
iok
jacktrip
kradio4
less.js
libcgi-application-plugin-anytemplate-perl
libcgi-application-plugin-authentication-perl
libcgi-application-plugin-authorization-perl
libclass-load-perl
libcss-dom-perl
libdata-formvalidator-constraints-datetime-perl
libdbix-class-inflatecolumn-ip-perl
libdist-zilla-plugin-changelogfromgit-perl
libepsilon
libjsr305-java
librabbitmq
libreoffice
libreoffice-voikko
libtest-database-perl
libtest-identity-perl
lowpan-tools
lttv
m17n-docs
mesa-demos
mikmatch
minidlna
ministat
mongodb-perl
nagios-plugin-check-multi
ocaml-atd
ocaml-data-notation
ocaml-expect
ocaml-extunix
ocaml-inifiles
ocaml-melt
origami
pd-boids
pd-cyclone
pd-ggee
pd-pddp
pd-vbap
prey
python-pyhyphen
python-pypm
python-repoze.lru
python-translationstring
python-venusian
pythontracer
ramond
rtirq
scour
tophide
tth
vclt-tools
w3c-sgml-lib
wps2odt
xcfa
xdeb
xf86-input-multitouch
xstrp4
zope.deprecation

© 2014-2024 Faster IT GmbH | imprint | privacy policy