a20c0d0f67
All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
---
|
|
name: "bitcoin"
|
|
suites:
|
|
- "lucid"
|
|
architectures:
|
|
- "i386"
|
|
- "amd64"
|
|
packages:
|
|
- "libdb4.8++-dev"
|
|
- "qt4-qmake"
|
|
- "libqt4-dev"
|
|
- "libboost-system-dev"
|
|
- "libboost-filesystem-dev"
|
|
- "libboost-program-options-dev"
|
|
- "libboost-thread-dev"
|
|
- "libssl-dev"
|
|
- "git-core"
|
|
- "unzip"
|
|
- "pkg-config"
|
|
- "libpng12-dev"
|
|
reference_datetime: "2011-01-30 00:00:00"
|
|
remotes:
|
|
- "url": "https://github.com/bitcoin/bitcoin.git"
|
|
"dir": "bitcoin"
|
|
files:
|
|
- "miniupnpc-1.6.tar.gz"
|
|
- "qrencode-3.2.0.tar.bz2"
|
|
script: |
|
|
INSTDIR="$HOME/install"
|
|
export LIBRARY_PATH="$INSTDIR/lib"
|
|
#
|
|
tar xzf miniupnpc-1.6.tar.gz
|
|
cd miniupnpc-1.6
|
|
INSTALLPREFIX=$INSTDIR make $MAKEOPTS install
|
|
cd ..
|
|
#
|
|
tar xjf qrencode-3.2.0.tar.bz2
|
|
cd qrencode-3.2.0
|
|
./configure --prefix=$INSTDIR --enable-static --disable-shared
|
|
make $MAKEOPTS install
|
|
cd ..
|
|
#
|
|
cd bitcoin
|
|
mkdir -p $OUTDIR/src
|
|
git archive HEAD | tar -x -C $OUTDIR/src
|
|
cp $OUTDIR/src/doc/README $OUTDIR
|
|
cp $OUTDIR/src/COPYING $OUTDIR
|
|
cd src
|
|
make -f makefile.unix STATIC=1 OPENSSL_INCLUDE_PATH="$INSTDIR/include" OPENSSL_LIB_PATH="$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 DEBUGFLAGS=
|
|
mkdir -p $OUTDIR/bin/$GBUILD_BITS
|
|
install -s bitcoind $OUTDIR/bin/$GBUILD_BITS
|
|
cd ..
|
|
qmake INCLUDEPATH="$INSTDIR/include" LIBS="-L$INSTDIR/lib" RELEASE=1 USE_QRCODE=1
|
|
make $MAKEOPTS
|
|
install bitcoin-qt $OUTDIR/bin/$GBUILD_BITS
|