summaryrefslogtreecommitdiffstats
path: root/data/packages/new-packages
blob: 5c89217c3a6ff9f4e6c94c16692e1323f53b72f5 (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
# 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
ttf-bitstream-vera
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
ttf-femkeklaver
xappy
libopensync-plugin-vformat
libunicode-map8-perl
serna-free
r-cran-diagnosismed
ttf-aoyagi-kouzan-t
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
ttf-aoyagi-soseki
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
png++
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
gcc-3.3
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
ttf-kacst-one
urg
yorick-optimpack
bsl
buzztard
db4.8
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
ttf-unfonts-core
tvflash
llvm-2.7
ocaml-usb
gnome-color-manager
ttf-unfonts-extra
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
ttf-sawarabi-mincho
ttf-takao
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
ttf-nanum-coding
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
ttf-nanum
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

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