Skip to content

Commit

Permalink
version 1.0.162
Browse files Browse the repository at this point in the history
  • Loading branch information
andponlin committed Aug 20, 2024
1 parent 3c05647 commit 755563a
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 10 deletions.
2 changes: 1 addition & 1 deletion haikudepotserver-api1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-api2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-driversettings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-packagefile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>haikudepotserver</artifactId>
<groupId>org.haiku</groupId>
<relativePath>..</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-spa1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion haikudepotserver-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>haikudepotserver-parent</artifactId>
<groupId>org.haiku</groupId>
<relativePath>../haikudepotserver-parent</relativePath>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>org.haiku</groupId>
<artifactId>haikudepotserver</artifactId>
<packaging>pom</packaging>
<version>1.0.162-SNAPSHOT</version>
<version>1.0.162</version>

<modules>
<module>haikudepotserver-api1</module>
Expand Down
27 changes: 27 additions & 0 deletions support/graphics-services/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# =====================================
# Copyright 2022-2024, Andrew Lindesay
# Distributed under the terms of the MIT License.
# =====================================

FROM debian:12.5-slim as base

ENV HAIKU_HASH=d75f6109c213b70895a2bf0eed412cdd7a68f990
ENV BUILDTOOLS_HASH=fef550b1fc8de8810ff74f2edc79a43bc8ec660b

RUN apt-get update && \
apt-get -y install git nasm bc autoconf automake texinfo flex bison gawk build-essential unzip wget \
zip less zlib1g-dev libzstd-dev xorriso libtool gcc-multilib python3 libpng16-16

ADD "https://github.com/haiku/buildtools/archive/${BUILDTOOLS_HASH}.tar.gz" /buildtools.tgz
ADD "https://github.com/haiku/haiku/archive/${HAIKU_HASH}.tar.gz" /haiku.tgz

RUN tar -xzf ./buildtools.tgz
RUN tar -xzf ./haiku.tgz

RUN mv buildtools-${BUILDTOOLS_HASH} buildtools
RUN mv haiku-${HAIKU_HASH} haiku

RUN mkdir generated.x86_64
WORKDIR "generated.x86_64"
RUN ../haiku/configure --cross-tools-source ../buildtools --build-cross-tools x86_64
RUN jam -q "<build>hvif2png"

0 comments on commit 755563a

Please sign in to comment.