Skip to content

Commit

Permalink
Publish new debian release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jnchi committed May 31, 2019
1 parent 39f29bd commit b55b8a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@ RUN echo "deb http://http.us.debian.org/debian sid main" \
pkg-config \
quilt

ENV SDSMIRROR "https://gitlab.com/oxr463/sds/-/jobs/210491217/artifacts/raw"
ENV SDSMIRROR="https://gitlab.com/oxr463/sds/-/jobs/210491217/artifacts/raw" \
SDSVERSION="2.0.0" SDSDEBVERSION="2.0.0-1"
WORKDIR /tmp
RUN curl -LO "${SDSMIRROR}/libsds2.0.0_2.0.0-1_amd64.deb" && \
curl -LO "${SDSMIRROR}/libsds-dev_2.0.0-1_amd64.deb" && \
dpkg -i libsds2.0.0_2.0.0-1_amd64.deb && \
dpkg -i libsds-dev_2.0.0-1_amd64.deb
RUN curl -LO "${SDSMIRROR}/libsds${SDSVERSION}_${SDSDEBVERSION}_amd64.deb" && \
curl -LO "${SDSMIRROR}/libsds-dev_${SDSDEBVERSION}_amd64.deb" && \
dpkg -i "libsds${SDSVERSION}_${SDSDEBVERSION}_amd64.deb" && \
dpkg -i "libsds-dev_${SDSDEBVERSION}_amd64.deb"

ENV NSSAADVERSION="0.0.3" NSSAADDEBVERSION="0.0.3-1"
WORKDIR /usr/src/libnss_aad
COPY . /usr/src/libnss_aad
RUN tar cvzf ../libnss-aad_0.0.2.orig.tar.gz --exclude='.git*' . && \
RUN tar cvzf "../libnss-aad_${NSSAADVERSION}.orig.tar.gz" --exclude='.git*' . && \
debuild -us -uc -i'.git' && \
dpkg -i ../libnss-aad_0.0.2-1_amd64.deb
dpkg -i "../libnss-aad_${NSSAADDEBVERSION}_amd64.deb"
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libnss-aad (0.0.3-1) UNRELEASED; urgency=medium

* New release.

-- Lucas Ramage <[email protected]> Fri, 31 May 2019 16:19:23 +0000

libnss-aad (0.0.2-1) UNRELEASED; urgency=medium

* Initial release.
Expand Down

0 comments on commit b55b8a1

Please sign in to comment.