aboutsummaryrefslogtreecommitdiff
path: root/contrib/gitian-descriptors/gitian-win.yml
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2018-02-04 16:41:39 +0000
committerRoss Nicoll <[email protected]>2019-03-25 05:36:12 +0000
commit443b058a770db001eab3bb81e1347b9756aee56a (patch)
tree41131256c4dd8b555188f988ff58418f13a70c71 /contrib/gitian-descriptors/gitian-win.yml
parentAdd dogechain and chain.so as default block explorers (diff)
downloaddiscoin-443b058a770db001eab3bb81e1347b9756aee56a.tar.xz
discoin-443b058a770db001eab3bb81e1347b9756aee56a.zip
Update Gitian descriptors and keys (#1455)
* Replace Gitian keys - Note I've removed Leofidus' key due to inactivity, and added a weight of 20 to whit's key. * Replace Bitcoin with Dogecoin in Gitian descriptors * Fix Makefile refrence to bash-completion files * Rename remaining bash-completion files * Add wallet_bgcoin to Qt Makefile * Add PureHeader sources to libdogecoinconsensus
Diffstat (limited to 'contrib/gitian-descriptors/gitian-win.yml')
-rw-r--r--contrib/gitian-descriptors/gitian-win.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml
index 0bb4f23bf..9ad12cc25 100644
--- a/contrib/gitian-descriptors/gitian-win.yml
+++ b/contrib/gitian-descriptors/gitian-win.yml
@@ -1,5 +1,5 @@
---
-name: "bitcoin-win-0.14"
+name: "dogecoin-win-1.14"
enable_cache: true
suites:
- "trusty"
@@ -22,8 +22,8 @@ packages:
- "ca-certificates"
- "python"
remotes:
-- "url": "https://github.com/bitcoin/bitcoin.git"
- "dir": "bitcoin"
+- "url": "https://github.com/dogecoin/dogecoin.git"
+ "dir": "dogecoin"
files: []
script: |
WRAP_DIR=$HOME/wrapped
@@ -101,7 +101,7 @@ script: |
create_per-host_linker_wrapper "2000-01-01 12:00:00"
export PATH=${WRAP_DIR}:${PATH}
- cd bitcoin
+ cd dogecoin
BASEPREFIX=`pwd`/depends
# Build dependencies for each host
for i in $HOSTS; do
@@ -119,14 +119,14 @@ script: |
./autogen.sh
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
make dist
- SOURCEDIST=`echo bitcoin-*.tar.gz`
+ SOURCEDIST=`echo dogecoin-*.tar.gz`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
# Correct tar file order
mkdir -p temp
pushd temp
tar xf ../$SOURCEDIST
- find bitcoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST
+ find dogecoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST
mkdir -p $OUTDIR/src
cp ../$SOURCEDIST $OUTDIR/src
popd
@@ -146,7 +146,7 @@ script: |
make ${MAKEOPTS} -C src check-security
make deploy
make install DESTDIR=${INSTALLPATH}
- cp -f bitcoin-*setup*.exe $OUTDIR/
+ cp -f dogecoin-*setup*.exe $OUTDIR/
cd installed
mv ${DISTNAME}/bin/*.dll ${DISTNAME}/lib/
find . -name "lib*.la" -delete