aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/dlplibs
Commit message (Collapse)AuthorAge
* Use apt-get update && apt-get install, per best practices: (#561)Gravatar Devin Jeanpierre2017-05-01
| | | | | | | | | | | | | | | | | | | https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ I ran into this because I was getting errors locally, like: E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/d/dpkg/libdpkg-perl_1.18.4ubuntu1.1_all.deb 404 Not Found [IP: 91.189.88.149 80] It turns out you get these if you don't update, and the official best practices are to `run apt-get update && apt-get install`. In fact, running _any_ apt-get install command without the apt-get update && before it can result in unfortunate caching artifacts -- see "cache busting". (P.S. thanks to Peng on Freenode for helping me, I'm bad at Ubuntu.) So: sed -re \ 's/RUN apt-get ((-y )?(install|build-dep))/RUN apt-get update \&\& apt-get \1/' -i \ projects/**/Dockerfile I also manually fixed the cases that already ran apt-get update in their Dockerfile: dlplibs/Dockerfile grpc/Dockerfile libreoffice/Dockerfile
* add MS Visio XML formats (#534)Gravatar David Tardon2017-04-17
| | | | | | * add vsdx corpus * add vdx corpus
* build fixes (#530)Gravatar David Tardon2017-04-14
| | | | | | * enable source repos needed for apt-get build-deps * enable source repos needed for apt-get build-deps
* add more corpora for legacy Mac formats (#528)Gravatar David Tardon2017-04-11
| | | | | | | | | | * add corpora for more legacy Mac graphic formats * add corpora for more legacy Mac spreadsheet formats * add corpora for more legacy Mac text formats * make wget output less verbose
* add more corpora for legacy Mac formats (#527)Gravatar David Tardon2017-04-09
| | | | | | * merge MS Works fuzzers into single one * add more corpora for legacy Mac formats
* [dlplibs] add key6 corpus + some cleanup (#525)Gravatar David Tardon2017-04-07
| | | | | | | | * add key6 corpus * do not require liblangtag * do not build tools
* add pdb corpus (#524)Gravatar David Tardon2017-04-06
|
* add QuattroPro corpus (#523)Gravatar David Tardon2017-04-06
|
* [dlplibs] add corpora for Lotus spreadsheet formats (#522)Gravatar David Tardon2017-04-06
|
* [dlplibs] add corpora for more MS formats (#520)Gravatar David Tardon2017-04-06
|
* add corpora for more StarOffice formats (#518)Gravatar David Tardon2017-04-05
| | | | | | | | * add sda corpus * add sdd corpus * add sdw corpus
* add abw corpus (#515)Gravatar David Tardon2017-04-05
|
* add corpora for more formats (#511)Gravatar David Tardon2017-04-04
| | | | | | | | | | | | * add sdc corpus * add wps corpus * add Acta corpus * add bmi corpus * add lrf corpus
* add cmx corpus (#510)Gravatar David Tardon2017-04-04
|
* add wpd+wpg corpora (#509)Gravatar David Tardon2017-04-04
| | | | | | * add wpd corpus * add wpg corpus
* add more corpora (#508)Gravatar David Tardon2017-04-04
| | | | | | | | | | | | * add cdr corpus * add vsd corpus * add zmf corpus * add pmd corpus * add fh corpus
* combine all DLP libs into a single project (#507)Gravatar David Tardon2017-04-04