[debian] add scripts for buster, eoan and disco

This commit is contained in:
odrling 2019-10-19 10:37:35 +02:00
parent 2ecd44e09b
commit 20f6fc9630
8 changed files with 56 additions and 5 deletions

View File

@ -1,4 +1,4 @@
aegisub-japan7 (3.3.2) UNRELEASED; urgency=low
aegisub-japan7 (3.3.2); urgency=low
* Initial release. Closes: #nnnn
<nnnn is the bug number of your ITP>

View File

@ -2,7 +2,7 @@ Source: aegisub-japan7
Section: video
Priority: optional
Maintainer: odrling <florianbadie@odrling.xyz>
Build-Depends: debhelper (>=11~), dh-autoreconf, intltool, libasound2-dev [linux-any], libass-dev, libboost-dev, libboost-chrono-dev, libboost-filesystem-dev, libboost-locale-dev, libboost-regex-dev, libboost-system-dev, libboost-thread-dev, libffms2-dev (>= 2.19), libfftw3-dev, libfontconfig1-dev, libfreetype6-dev, libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libhunspell-dev, libicu-dev, libpulse-dev, libwxgtk3.0-dev, libssl-dev
Build-Depends: debhelper, dh-autoreconf, intltool, libasound2-dev [linux-any], libass-dev, libboost-dev, libboost-chrono-dev, libboost-filesystem-dev, libboost-locale-dev, libboost-regex-dev, libboost-system-dev, libboost-thread-dev, libffms2-dev (>= 2.19), libfftw3-dev, libfontconfig1-dev, libfreetype6-dev, libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libhunspell-dev, libicu-dev, libpulse-dev, libwxgtk3.0-dev, libssl-dev
Standards-Version: 4.1.4
Homepage: https://github.com/odrling/Aegisub

View File

@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: aegisub-japan7
Source: <url://example.com>
Source: <https://github.com/odrling/Aegisub>
#
# Please double check copyright with the licensecheck(1) command.

View File

@ -1,4 +1,4 @@
FROM debian:testing-slim
FROM ubuntu:bionic
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y dh-make build-essential libwxgtk3.0 libboost-all-dev icu-devtools libffms2-dev fontconfig libfreetype6-dev libass-dev zlib1g-dev libgl1 libssl-dev libasound2-dev libpulse-dev fftw3-dev libuchardet-dev libc6-dev intltool libhunspell-dev git
@ -8,7 +8,7 @@ WORKDIR /aegisub
RUN make clean
RUN build/version.sh .
RUN rm -rf .git
RUN mv .ci/debian/entrypoint.sh /
RUN mv .ci/docker/debian_entrypoint.sh /entrypoint.sh
RUN mv .ci/distribution/debian /aegisub
RUN chmod +x /entrypoint.sh

View File

@ -0,0 +1,17 @@
FROM debian:buster
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y dh-make build-essential libwxgtk3.0 libboost-all-dev icu-devtools libffms2-dev fontconfig libfreetype6-dev libass-dev zlib1g-dev libgl1 libssl-dev libasound2-dev libpulse-dev fftw3-dev libuchardet-dev libc6-dev intltool libhunspell-dev git
COPY . /aegisub
WORKDIR /aegisub
RUN make clean
RUN build/version.sh .
RUN rm -rf .git
RUN mv .ci/docker/debian_entrypoint.sh /entrypoint.sh
RUN mv .ci/distribution/debian /aegisub
RUN chmod +x /entrypoint.sh
CMD ["/entrypoint.sh"]

View File

@ -0,0 +1,17 @@
FROM ubuntu:disco
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y dh-make build-essential libwxgtk3.0 libboost-all-dev icu-devtools libffms2-dev fontconfig libfreetype6-dev libass-dev zlib1g-dev libgl1 libssl-dev libasound2-dev libpulse-dev fftw3-dev libuchardet-dev libc6-dev intltool libhunspell-dev git
COPY . /aegisub
WORKDIR /aegisub
RUN make clean
RUN build/version.sh .
RUN rm -rf .git
RUN mv .ci/docker/debian_entrypoint.sh /entrypoint.sh
RUN mv .ci/distribution/debian /aegisub
RUN chmod +x /entrypoint.sh
CMD ["/entrypoint.sh"]

View File

@ -0,0 +1,17 @@
FROM ubuntu:eoan
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y dh-make build-essential libwxgtk3.0 libboost-all-dev icu-devtools libffms2-dev fontconfig libfreetype6-dev libass-dev zlib1g-dev libgl1 libssl-dev libasound2-dev libpulse-dev fftw3-dev libuchardet-dev libc6-dev intltool libhunspell-dev git
COPY . /aegisub
WORKDIR /aegisub
RUN make clean
RUN build/version.sh .
RUN rm -rf .git
RUN mv .ci/docker/debian_entrypoint.sh /entrypoint.sh
RUN mv .ci/distribution/debian /aegisub
RUN chmod +x /entrypoint.sh
CMD ["/entrypoint.sh"]