Skip to content

Commit

Permalink
Bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jnchi committed May 31, 2019
1 parent 356cbed commit 6b2a159
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
17 changes: 9 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ RUN echo "deb http://http.us.debian.org/debian sid main" \
quilt \
uuid-dev

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"

WORKDIR /usr/src/pam_aad
COPY . /usr/src/pam_aad

RUN tar cvzf ../pam-aad_0.0.1.orig.tar.gz --exclude='.git*' . && \
ENV PAMAADVERSION="0.0.2" PAMAADDEBVERSION="0.0.2-1"
RUN tar cvzf "../pam-aad_${PAMAADVERSION}.orig.tar.gz" --exclude='.git*' . && \
debuild -us -uc -d -i'(.*)' && \
dpkg -i ../libpam-aad_0.0.1-1_amd64.deb
dpkg -i "../libpam-aad_${PAMAADDEBVERSION}_amd64.deb"
8 changes: 4 additions & 4 deletions Dockerfile.ubuntu-18.04
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN apt update && apt install -y \

WORKDIR /usr/src/pam_aad
COPY . /usr/src/pam_aad

RUN tar cvzf ../pam-aad_0.0.1.orig.tar.gz --exclude='.git*' . && \
debuild -us -uc -i'(.*)' && \
dpkg -i ../libpam-aad_0.0.1-1_amd64.deb
ENV PAMAADVERSION="0.0.2" PAMAADDEBVERSION="0.0.2-1"
RUN tar cvzf "../pam-aad_${PAMAADVERSION}.orig.tar.gz" --exclude='.git*' . && \
debuild -us -uc -d -i'(.*)' && \
dpkg -i "../libpam-aad_${PAMAADDEBVERSION}_amd64.deb"
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT([pam_aad], [0.0.1], [[email protected]])
AC_INIT([pam_aad], [0.0.2], [[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_HOST
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
pam-aad (0.0.2-1) UNRELEASED; urgency=medium

* New release.

-- Lucas Ramage <[email protected]> Fri, 31 May 2019 17:27:25 +0000

pam-aad (0.0.1-1) UNRELEASED; urgency=medium

* Initial release.
Expand Down

0 comments on commit 6b2a159

Please sign in to comment.