Skip to content

Commit f0e7e13

Browse files
authored
Merge pull request jl777#24 from jl777/master
master update
2 parents 6816c5e + ade1a82 commit f0e7e13

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

contrib/debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zcash (1.0.8) jessie; urgency=medium
1+
komodo (1.0.8) jessie; urgency=medium
22

33
* 1.0.8 release.
44

contrib/debian/control

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
Source: zcash
1+
Source: komodo
22
Section: utils
33
Priority: optional
44
Maintainer: Zcash Company <team@z.cash>
5-
Homepage: https://z.cash
5+
Homepage: https://komodoplatform.com/
66
Build-Depends: autoconf, automake, bsdmainutils, build-essential,
77
git, g++-multilib, libc6-dev, libtool,
88
m4, ncurses-dev, pkg-config, python,
99
unzip, wget, zlib1g-dev
10-
Vcs-Git: https://github.com/zcash/zcash.git
11-
Vcs-Browser: https://github.com/zcash/zcash
10+
Vcs-Git: https://github.com/jl777/komodo
11+
Vcs-Browser: https://github.com/jl777/komodo
1212

13-
Package: zcash
13+
Package: komodo
1414
Architecture: amd64
1515
Depends: ${shlibs:Depends}
1616
Description: HTTPS for money.
1717
Based on Bitcoin's code, it intends to offer a far higher standard
1818
of privacy and anonymity through a sophisticiated zero-knowledge
1919
proving scheme which preserves confidentiality of transaction metadata.
20-
This package provides the daemon, zcashd, and the CLI tool,
21-
zcash-cli, to interact with the daemon.
20+
This package provides the daemon, komodod, and the CLI tool,
21+
komodo-cli, to interact with the daemon.

zcutil/build-debian-package.sh

+17-17
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
set -e
66
set -x
77

8-
BUILD_PATH="/tmp/zcbuild"
9-
PACKAGE_NAME="zcash"
8+
BUILD_PATH="/tmp/kmdbuild"
9+
PACKAGE_NAME="komodo"
1010
SRC_PATH=`pwd`
1111
SRC_DEB=$SRC_PATH/contrib/debian
1212
SRC_DOC=$SRC_PATH/doc
@@ -17,7 +17,7 @@ if [ ! -d $BUILD_PATH ]; then
1717
mkdir $BUILD_PATH
1818
fi
1919

20-
PACKAGE_VERSION=$($SRC_PATH/src/zcashd --version | grep version | cut -d' ' -f4 | tr -d v)
20+
PACKAGE_VERSION=$($SRC_PATH/src/komodod --version | grep version | cut -d' ' -f4 | tr -d v)
2121
BUILD_DIR="$BUILD_PATH/$PACKAGE_NAME-$PACKAGE_VERSION-amd64"
2222

2323
if [ -d $BUILD_DIR ]; then
@@ -28,7 +28,7 @@ DEB_BIN=$BUILD_DIR/usr/bin
2828
DEB_CMP=$BUILD_DIR/usr/share/bash-completion/completions
2929
DEB_DOC=$BUILD_DIR/usr/share/doc/$PACKAGE_NAME
3030
DEB_MAN=$BUILD_DIR/usr/share/man/man1
31-
mkdir -p $BUILD_DIR/DEBIAN $DEB_CMP $DEB_BIN $DEB_DOC $DEB_MAN
31+
mkdir -p $BUILD_DIR/DEBIAN $DEB_BIN $DEB_DOC
3232
chmod 0755 -R $BUILD_DIR/*
3333

3434
# Package maintainer scripts (currently empty)
@@ -37,32 +37,32 @@ chmod 0755 -R $BUILD_DIR/*
3737
#cp $SRC_DEB/preinst $BUILD_DIR/DEBIAN
3838
#cp $SRC_DEB/prerm $BUILD_DIR/DEBIAN
3939
# Copy binaries
40-
cp $SRC_PATH/src/zcashd $DEB_BIN
41-
cp $SRC_PATH/src/zcash-cli $DEB_BIN
42-
cp $SRC_PATH/zcutil/fetch-params.sh $DEB_BIN/zcash-fetch-params
40+
cp $SRC_PATH/src/komodod $DEB_BIN
41+
cp $SRC_PATH/src/komodo-cli $DEB_BIN
42+
cp $SRC_PATH/zcutil/fetch-params.sh $DEB_BIN/komodo-fetch-params
4343
# Copy docs
4444
cp $SRC_PATH/doc/release-notes/release-notes-1.0.0.md $DEB_DOC/changelog
4545
cp $SRC_DEB/changelog $DEB_DOC/changelog.Debian
4646
cp $SRC_DEB/copyright $DEB_DOC
4747
cp -r $SRC_DEB/examples $DEB_DOC
4848
# Copy manpages
49-
cp $SRC_DOC/man/zcashd.1 $DEB_MAN
50-
cp $SRC_DOC/man/zcash-cli.1 $DEB_MAN
51-
cp $SRC_DOC/man/zcash-fetch-params.1 $DEB_MAN
52-
# Copy bash completion files
53-
cp $SRC_PATH/contrib/bitcoind.bash-completion $DEB_CMP/zcashd
54-
cp $SRC_PATH/contrib/bitcoin-cli.bash-completion $DEB_CMP/zcash-cli
49+
#cp $SRC_DOC/man/zcashd.1 $DEB_MAN
50+
#cp $SRC_DOC/man/zcash-cli.1 $DEB_MAN
51+
#cp $SRC_DOC/man/zcash-fetch-params.1 $DEB_MAN
52+
# Copy bash completion files TODO: fix them for komodo
53+
#cp $SRC_PATH/contrib/bitcoind.bash-completion $DEB_CMP/komodod
54+
#cp $SRC_PATH/contrib/bitcoin-cli.bash-completion $DEB_CMP/komodod-cli
5555
# Gzip files
5656
gzip --best -n $DEB_DOC/changelog
5757
gzip --best -n $DEB_DOC/changelog.Debian
58-
gzip --best -n $DEB_MAN/zcashd.1
59-
gzip --best -n $DEB_MAN/zcash-cli.1
60-
gzip --best -n $DEB_MAN/zcash-fetch-params.1
58+
#gzip --best -n $DEB_MAN/zcashd.1
59+
#gzip --best -n $DEB_MAN/zcash-cli.1
60+
#gzip --best -n $DEB_MAN/zcash-fetch-params.1
6161

6262
cd $SRC_PATH/contrib
6363

6464
# Create the control file
65-
dpkg-shlibdeps $DEB_BIN/zcashd $DEB_BIN/zcash-cli
65+
dpkg-shlibdeps $DEB_BIN/komodod $DEB_BIN/komodo-cli
6666
dpkg-gencontrol -P$BUILD_DIR
6767

6868
# Create the Debian package

0 commit comments

Comments
 (0)