File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
contrib/gitian-descriptors Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ packages:
15
15
reference_datetime : " 2013-06-01 00:00:00"
16
16
remotes : []
17
17
files :
18
+ - " openssl-1.0.1e.tar.gz"
18
19
- " miniupnpc-1.8.tar.gz"
19
20
- " qrencode-3.4.3.tar.bz2"
20
21
- " protobuf-2.5.0.tar.bz2"
@@ -24,11 +25,21 @@ script: |
24
25
OPTFLAGS='-O2'
25
26
export LIBRARY_PATH="$STAGING/lib"
26
27
# Integrity Check
28
+ echo "f74f15e8c8ff11aa3d5bb5f276d202ec18d7246e95f961db76054199c69c1ae3 openssl-1.0.1e.tar.gz" | sha256sum -c
27
29
echo "bc5f73c7b0056252c1888a80e6075787a1e1e9112b808f863a245483ff79859c miniupnpc-1.8.tar.gz" | sha256sum -c
28
30
echo "dfd71487513c871bad485806bfd1fdb304dedc84d2b01a8fb8e0940b50597a98 qrencode-3.4.3.tar.bz2" | sha256sum -c
29
31
echo "13bfc5ae543cf3aa180ac2485c0bc89495e3ae711fc6fab4f8ffe90dfb4bb677 protobuf-2.5.0.tar.bz2" | sha256sum -c
30
32
echo "12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz" | sha256sum -c
31
33
34
+ #
35
+ tar xzf openssl-1.0.1e.tar.gz
36
+ cd openssl-1.0.1e
37
+ # need -fPIC to avoid relocation error in 64 bit builds
38
+ ./config no-shared no-zlib no-dso no-krb5 --openssldir=$STAGING -fPIC
39
+ make
40
+ make install_sw
41
+ cd ..
42
+ #
32
43
tar xzfm miniupnpc-1.8.tar.gz
33
44
cd miniupnpc-1.8
34
45
# miniupnpc is always built with -fPIC
@@ -60,4 +71,4 @@ script: |
60
71
cd ../..
61
72
#
62
73
cd $STAGING
63
- zip -r $OUTDIR/bitcoin-deps-linux${GBUILD_BITS}-gitian-r1 .zip include lib bin host
74
+ zip -r $OUTDIR/bitcoin-deps-linux${GBUILD_BITS}-gitian-r2 .zip include lib bin host
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ architectures:
7
7
- " amd64"
8
8
packages :
9
9
- " libqt4-dev"
10
- - " libssl-dev"
11
10
- " git-core"
12
11
- " unzip"
13
12
- " pkg-config"
@@ -21,8 +20,8 @@ remotes:
21
20
- " url " : " https://github.com/bitcoin/bitcoin.git"
22
21
" dir " : " bitcoin"
23
22
files :
24
- - " bitcoin-deps-linux32-gitian-r1 .zip"
25
- - " bitcoin-deps-linux64-gitian-r1 .zip"
23
+ - " bitcoin-deps-linux32-gitian-r2 .zip"
24
+ - " bitcoin-deps-linux64-gitian-r2 .zip"
26
25
- " boost-linux32-1.55.0-gitian-r1.zip"
27
26
- " boost-linux64-1.55.0-gitian-r1.zip"
28
27
script : |
@@ -34,7 +33,7 @@ script: |
34
33
#
35
34
mkdir -p $STAGING
36
35
cd $STAGING
37
- unzip ../build/bitcoin-deps-linux${GBUILD_BITS}-gitian-r1 .zip
36
+ unzip ../build/bitcoin-deps-linux${GBUILD_BITS}-gitian-r2 .zip
38
37
unzip ../build/boost-linux${GBUILD_BITS}-1.55.0-gitian-r1.zip
39
38
cd ../build
40
39
#
You can’t perform that action at this time.
0 commit comments