Skip to content

Commit

Permalink
open 0.1.4-dev for development
Browse files Browse the repository at this point in the history
  • Loading branch information
xanimo committed Feb 9, 2024
1 parent 8037c5d commit 5364445
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ AC_PREREQ([2.68])
# backwards-compatible and therefore at most increase the minor version.
define(_PKG_VERSION_MAJOR, 0)
define(_PKG_VERSION_MINOR, 1)
define(_PKG_VERSION_BUILD, 3)
define(_PKG_VERSION_IS_RELEASE, true)
define(_PKG_VERSION_BUILD, 4)
define(_PKG_VERSION_IS_RELEASE, false)

# The library version is based on libtool versioning of the ABI. The set of
# rules for updating the version can be found here:
Expand Down
6 changes: 3 additions & 3 deletions contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "libdogecoin-linux-0.1.3"
name: "libdogecoin-linux-0.1.4"
enable_cache: true
suites:
- "focal"
Expand Down Expand Up @@ -128,7 +128,7 @@ script: |
# Create the release tarball using (arbitrarily) the first host
./autogen.sh
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
git archive --format=tar --prefix=libdogecoin-0.1.3/ HEAD | gzip -9n > libdogecoin-0.1.3.tar.gz
git archive --format=tar --prefix=libdogecoin-0.1.4/ HEAD | gzip -9n > libdogecoin-0.1.4.tar.gz
SOURCEDIST=`echo libdogecoin-*.tar.gz`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
# Correct tar file order
Expand All @@ -143,7 +143,7 @@ script: |
for i in ${HOSTS}; do
export PATH=${BASEPREFIX}/${i}/native/bin:${ORIGPATH}
./contrib/scripts/build.sh --host ${i} --depends
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.3"
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.4"
done
# Move them to gitian-builder/build/out/src
Expand Down
6 changes: 3 additions & 3 deletions contrib/gitian-descriptors/gitian-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "libdogecoin-osx-0.1.3"
name: "libdogecoin-osx-0.1.4"
enable_cache: true
suites:
- "focal"
Expand Down Expand Up @@ -98,7 +98,7 @@ script: |
# Create the release tarball using (arbitrarily) the first host
./autogen.sh
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
git archive --format=tar --prefix=libdogecoin-0.1.3/ HEAD | gzip -9n > libdogecoin-0.1.3.tar.gz
git archive --format=tar --prefix=libdogecoin-0.1.4/ HEAD | gzip -9n > libdogecoin-0.1.4.tar.gz
SOURCEDIST=`echo libdogecoin-*.tar.gz`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
# Correct tar file order
Expand All @@ -113,7 +113,7 @@ script: |
for i in ${HOSTS}; do
export PATH=${BASEPREFIX}/${i}/native/bin:${ORIGPATH}
./contrib/scripts/build.sh --host ${i} --depends
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.3"
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.4"
done
# Move them to gitian-builder/build/out/src
Expand Down
10 changes: 5 additions & 5 deletions contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "libdogecoin-win-0.1.3"
name: "libdogecoin-win-0.1.4"
enable_cache: true
suites:
- "focal"
Expand Down Expand Up @@ -115,26 +115,26 @@ script: |
# Create the release tarball using (arbitrarily) the first host
./autogen.sh
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
git archive --format=tar --prefix=libdogecoin-0.1.3/ HEAD | gzip -9n > libdogecoin-0.1.3.tar.gz
git archive --format=tar --prefix=libdogecoin-0.1.4/ HEAD | gzip -9n > libdogecoin-0.1.4.tar.gz
SOURCEDIST=`echo libdogecoin-*.tar.gz`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
# Correct tar file order
mkdir -p temp
pushd temp
tar xf ../$SOURCEDIST
find libdogecoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST
tar tf ../$SOURCEDIST | zip -X@ ../libdogecoin-0.1.3.zip
tar tf ../$SOURCEDIST | zip -X@ ../libdogecoin-0.1.4.zip
popd
ORIGPATH="$PATH"
# Build and archive each architecture
for i in ${HOSTS}; do
export PATH=${BASEPREFIX}/${i}/native/bin:${ORIGPATH}
./contrib/scripts/build.sh --host ${i} --depends
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.3"
./contrib/scripts/pack.sh --host=${i} --prefix=build --commit="0.1.4"
done
# Move them to gitian-builder/build/out/src
mv libdogecoin-0.1.3.zip `pwd`/output
mv libdogecoin-0.1.4.zip `pwd`/output
mkdir -p $OUTDIR/src
mv ~/build/libdogecoin/output/*.zip $OUTDIR/src

0 comments on commit 5364445

Please sign in to comment.