Update packages/ Add org-ref

This commit is contained in:
Mateus Pinto Rodrigues
2018-06-11 13:50:46 -03:00
parent 47702fe74a
commit f6ec2ebf59
504 changed files with 86348 additions and 611 deletions

View File

@@ -0,0 +1,2 @@
*.Dockerfile
*.build

View File

@@ -0,0 +1,9 @@
#!/bin/sh
PATH="$(dirname "$0")":$PATH
set -e
yes-or-enter | ./autobuild -i /bin
yes-or-enter | ./autobuild -i /usr/bin | \
grep -q "Skipping package installation (already installed)"

View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Step over prompts from the package-manager.
if [ -f /etc/arch-release ]; then
yes ''
else
yes
fi

View File

@@ -0,0 +1,4 @@
ADD . /epdfinfo
WORKDIR /epdfinfo
RUN make -s distclean || true
CMD ["sh", "./test/docker/lib/run-tests"]

View File

@@ -0,0 +1,6 @@
# -*- dockerfile -*-
FROM base/archlinux
RUN pacman -Syu --noconfirm --noprogressbar && \
pacman -S --noconfirm --noprogressbar poppler-glib base-devel

View File

@@ -0,0 +1,3 @@
# -*- dockerfile -*-
FROM centos:7
RUN yum update -y && yum install -y gcc gcc-c++ poppler-glib-devel

View File

@@ -0,0 +1,4 @@
# -*- dockerfile -*-
FROM debian:8
RUN apt-get update -y && apt-get install -y gcc g++ libpoppler-glib-dev

View File

@@ -0,0 +1,4 @@
# -*- dockerfile -*-
FROM debian:9
RUN apt-get update -y && apt-get install -y gcc g++ libpoppler-glib-dev

View File

@@ -0,0 +1,5 @@
# -*- dockerfile -*-
FROM fedora:24
RUN dnf update -y && dnf install -y gcc gcc-c++ poppler-glib-devel

View File

@@ -0,0 +1,5 @@
# -*- dockerfile -*-
FROM fedora:25
RUN dnf update -y && dnf install -y gcc gcc-c++ poppler-glib-devel

View File

@@ -0,0 +1,5 @@
# -*- dockerfile -*-
FROM fedora:26
RUN dnf update -y && dnf install -y gcc gcc-c++ poppler-glib-devel

View File

@@ -0,0 +1,5 @@
# -*- dockerfile -*-
FROM gentoo/stage3-amd64
RUN emerge --sync && emerge sys-devel/gcc app-text/poppler

View File

@@ -0,0 +1,4 @@
# -*- dockerfile -*-
FROM ubuntu:trusty
RUN apt-get update -y && apt-get install -y gcc g++ libpoppler-glib-dev

View File

@@ -0,0 +1,4 @@
# -*- dockerfile -*-
FROM ubuntu:xenial
RUN apt-get update -y && apt-get install -y gcc g++ libpoppler-glib-dev

View File

@@ -0,0 +1,4 @@
# -*- dockerfile -*-
FROM ubuntu:artful
RUN apt-get update -y && apt-get install -y gcc g++ libpoppler-glib-dev