-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
root
committed
Sep 6, 2018
0 parents
commit 3870079
Showing
919 changed files
with
271,501 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/clientversion.cpp export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Copyright (c) 2009-2015 Bitcoin Developers | ||
Copyright (c) 2014-2015 Dash Developers | ||
Copyright (c) 2015-2017 PIVX Developers | ||
Copyright (c) 2018 SearchPayCoin Developers | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Building SearchPayCoin | ||
|
||
Use the autogen script to prepare the build environment. | ||
|
||
./autogen.sh | ||
./configure | ||
make | ||
|
||
Always verify the signatures and checksums. | ||
|
||
See doc/build-*.md for instructions on building searchpaycoind, | ||
the intended-for-services, no-graphical-interface, reference | ||
implementation of SearchPayCoin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
ACLOCAL_AMFLAGS = -I build-aux/m4 | ||
SUBDIRS = src | ||
.PHONY: deploy FORCE | ||
|
||
export PYTHONPATH | ||
|
||
BITCOIND_BIN=$(top_builddir)/src/searchpaycoind$(EXEEXT) | ||
BITCOIN_QT_BIN=$(top_builddir)/src/qt/searchpaycoin-qt$(EXEEXT) | ||
BITCOIN_CLI_BIN=$(top_builddir)/src/searchpaycoin-cli$(EXEEXT) | ||
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT) | ||
|
||
empty := | ||
space := $(empty) $(empty) | ||
|
||
OSX_APP=SearchPayCoin-Qt.app | ||
OSX_VOLNAME = $(subst $(space),-,$(PACKAGE_NAME)) | ||
OSX_DMG = $(OSX_VOLNAME).dmg | ||
OSX_BACKGROUND_SVG=background.svg | ||
OSX_BACKGROUND_IMAGE=background.tiff | ||
OSX_BACKGROUND_IMAGE_DPIS=36 72 | ||
OSX_DSSTORE_GEN=$(top_srcdir)/contrib/macdeploy/custom_dsstore.py | ||
OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus | ||
OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist | ||
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns | ||
OSX_PLIST=$(top_srcdir)/share/qt/Info.plist #not installed | ||
OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW | ||
|
||
DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md) | ||
|
||
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \ | ||
$(top_srcdir)/share/pixmaps/nsis-header.bmp \ | ||
$(top_srcdir)/share/pixmaps/nsis-wizard.bmp \ | ||
$(top_srcdir)/doc/README_windows.txt | ||
|
||
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \ | ||
$(top_srcdir)/contrib/macdeploy/$(OSX_BACKGROUND_SVG) \ | ||
$(OSX_DSSTORE_GEN) \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-apply.sh \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh | ||
|
||
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \ | ||
leveldb_baseline.info test_searchpaycoin_filtered.info total_coverage.info \ | ||
baseline_filtered.info block_test_filtered.info \ | ||
leveldb_baseline_filtered.info test_searchpaycoin_coverage.info test_searchpaycoin.info | ||
|
||
dist-hook: | ||
-$(MAKE) -C $(top_distdir)/src/leveldb clean | ||
-$(MAKE) -C $(top_distdir)/src/secp256k1 distclean | ||
-$(GIT) archive --format=tar HEAD -- src/clientversion.cpp | $(AMTAR) -C $(top_distdir) -xf - | ||
|
||
distcheck-hook: | ||
$(MKDIR_P) $(top_distdir)/_build/src/leveldb | ||
cp -rf $(top_srcdir)/src/leveldb/* $(top_distdir)/_build/src/leveldb/ | ||
-$(MAKE) -C $(top_distdir)/_build/src/leveldb clean | ||
|
||
distcleancheck: | ||
@: | ||
|
||
$(BITCOIN_WIN_INSTALLER): all-recursive | ||
$(MKDIR_P) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release | ||
@test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \ | ||
echo error: could not build $@ | ||
|
||
$(if $(findstring src/,$(MAKECMDGOALS)),$(MAKECMDGOALS), none): FORCE | ||
$(MAKE) -C src $(patsubst src/%,%,$@) | ||
|
||
$(OSX_APP)/Contents/PkgInfo: | ||
$(MKDIR_P) $(@D) | ||
@echo "APPL????" > $@ | ||
|
||
$(OSX_APP)/Contents/Resources/empty.lproj: | ||
$(MKDIR_P) $(@D) | ||
@touch $@ | ||
|
||
$(OSX_APP)/Contents/Info.plist: $(OSX_PLIST) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/MacOS/SearchPayCoin-Qt: $(BITCOIN_QT_BIN) | ||
$(MKDIR_P) $(@D) | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ | ||
|
||
$(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings: | ||
$(MKDIR_P) $(@D) | ||
echo '{ CFBundleDisplayName = "$(PACKAGE_NAME)"; CFBundleName = "$(PACKAGE_NAME)"; }' > $@ | ||
|
||
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \ | ||
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \ | ||
$(OSX_APP)/Contents/MacOS/SearchPayCoin-Qt $(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings | ||
|
||
osx_volname: | ||
echo $(OSX_VOLNAME) >$@ | ||
|
||
if BUILD_DARWIN | ||
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) $(OSX_BACKGROUND_IMAGE) | ||
$(PYTHON) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -translations-dir=$(QT_TRANSLATION_DIR) -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2 -volname $(OSX_VOLNAME) | ||
|
||
$(OSX_BACKGROUND_IMAGE).png: contrib/macdeploy/$(OSX_BACKGROUND_SVG) | ||
sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/' < "$<" | $(RSVG_CONVERT) -f png -d 36 -p 36 -o $@ | ||
$(OSX_BACKGROUND_IMAGE)@2x.png: contrib/macdeploy/$(OSX_BACKGROUND_SVG) | ||
sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/' < "$<" | $(RSVG_CONVERT) -f png -d 72 -p 72 -o $@ | ||
$(OSX_BACKGROUND_IMAGE): $(OSX_BACKGROUND_IMAGE).png $(OSX_BACKGROUND_IMAGE)@2x.png | ||
tiffutil -cathidpicheck $^ -out $@ | ||
|
||
deploydir: $(OSX_DMG) | ||
else | ||
APP_DIST_DIR=$(top_builddir)/dist | ||
APP_DIST_EXTRAS=$(APP_DIST_DIR)/.background/$(OSX_BACKGROUND_IMAGE) $(APP_DIST_DIR)/.DS_Store $(APP_DIST_DIR)/Applications | ||
|
||
$(APP_DIST_DIR)/Applications: | ||
@rm -f $@ | ||
@cd $(@D); $(LN_S) /Applications $(@F) | ||
|
||
$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/SearchPayCoin-Qt | ||
|
||
$(OSX_DMG): $(APP_DIST_EXTRAS) | ||
$(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "$(OSX_VOLNAME)" -no-pad -r -dir-mode 0755 -apple -o $@ dist | ||
|
||
dpi%.$(OSX_BACKGROUND_IMAGE): contrib/macdeploy/$(OSX_BACKGROUND_SVG) | ||
sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/' < "$<" | $(RSVG_CONVERT) -f png -d $* -p $* | $(IMAGEMAGICK_CONVERT) - $@ | ||
OSX_BACKGROUND_IMAGE_DPIFILES := $(foreach dpi,$(OSX_BACKGROUND_IMAGE_DPIS),dpi$(dpi).$(OSX_BACKGROUND_IMAGE)) | ||
$(APP_DIST_DIR)/.background/$(OSX_BACKGROUND_IMAGE): $(OSX_BACKGROUND_IMAGE_DPIFILES) | ||
$(MKDIR_P) $(@D) | ||
$(TIFFCP) -c none $(OSX_BACKGROUND_IMAGE_DPIFILES) $@ | ||
|
||
$(APP_DIST_DIR)/.DS_Store: $(OSX_DSSTORE_GEN) | ||
$(PYTHON) $< "$@" "$(OSX_VOLNAME)" | ||
|
||
$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/SearchPayCoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(PYTHON) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -translations-dir=$(QT_TRANSLATION_DIR) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2 | ||
|
||
deploydir: $(APP_DIST_EXTRAS) | ||
endif | ||
|
||
if TARGET_DARWIN | ||
appbundle: $(OSX_APP_BUILT) | ||
deploy: $(OSX_DMG) | ||
endif | ||
if TARGET_WINDOWS | ||
deploy: $(BITCOIN_WIN_INSTALLER) | ||
endif | ||
|
||
$(BITCOIN_QT_BIN): FORCE | ||
$(MAKE) -C src qt/$(@F) | ||
|
||
$(BITCOIND_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
$(BITCOIN_CLI_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
if USE_LCOV | ||
|
||
baseline.info: | ||
$(LCOV) -c -i -d $(abs_builddir)/src -o $@ | ||
|
||
baseline_filtered.info: baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
leveldb_baseline.info: baseline_filtered.info | ||
$(LCOV) -c -i -d $(abs_builddir)/src/leveldb -b $(abs_builddir)/src/leveldb -o $@ | ||
|
||
leveldb_baseline_filtered.info: leveldb_baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info | ||
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@ | ||
|
||
test_searchpaycoin.info: baseline_filtered_combined.info | ||
$(MAKE) -C src/ check | ||
$(LCOV) -c -d $(abs_builddir)/src -t test_searchpaycoin -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
test_searchpaycoin_filtered.info: test_searchpaycoin.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
block_test.info: test_searchpaycoin_filtered.info | ||
$(MKDIR_P) qa/tmp | ||
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0 | ||
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
block_test_filtered.info: block_test.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
test_searchpaycoin_coverage.info: baseline_filtered_combined.info test_searchpaycoin_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_searchpaycoin_filtered.info -o $@ | ||
|
||
total_coverage.info: baseline_filtered_combined.info test_searchpaycoin_filtered.info block_test_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_searchpaycoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt | ||
|
||
test_searchpaycoin.coverage/.dirstamp: test_searchpaycoin_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
total.coverage/.dirstamp: total_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
cov: test_searchpaycoin.coverage/.dirstamp total.coverage/.dirstamp | ||
|
||
endif | ||
|
||
# SearchPayCoin: disable the outdated comparison tool test | ||
# Ref https://github.com/bitcoin/bitcoin/issues/4545 | ||
if USE_COMPARISON_TOOL | ||
check-local: | ||
## $(MKDIR_P) qa/tmp | ||
## @qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1 | ||
endif | ||
|
||
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-bitcoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) | ||
|
||
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) | ||
|
||
.INTERMEDIATE: $(COVERAGE_INFO) | ||
|
||
clean-local: | ||
rm -rf test_searchpaycoin.coverage/ total.coverage/ $(OSX_APP) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
SearchPayCoin (fork of PIVX) integration/staging repository | ||
====================================== | ||
|
||
|
||
It is recommended [use the shell script](https://github.com/sepyproject/sepyinstall) to install a SearchPayCoin Masternode on a Linux server running Ubuntu 14.04 or 16.04 | ||
|
||
*** | ||
|
||
Quick installation of the SearchPayCoin daemon under linux. See detailed instructions there [build-unix.md](build-unix.md) | ||
|
||
Installation of libraries (using root user): | ||
|
||
add-apt-repository ppa:bitcoin/bitcoin -y | ||
apt-get update | ||
apt-get install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils | ||
apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev | ||
apt-get install -y libdb4.8-dev libdb4.8++-dev | ||
|
||
Cloning the repository and compiling (use any user with the sudo group): | ||
|
||
cd | ||
git clone https://github.com/sepyproject/SearchPayCoin.git | ||
cd SearchPayCoin | ||
./autogen.sh | ||
./configure | ||
sudo make install | ||
cd src | ||
sudo strip searchpaycoind | ||
sudo strip searchpaycoin-cli | ||
sudo strip searchpaycoin-tx | ||
cd .. | ||
|
||
Running the daemon: | ||
|
||
searchpaycoind | ||
|
||
Stopping the daemon: | ||
|
||
searchpaycoin-cli stop | ||
|
||
Demon status: | ||
|
||
searchpaycoin-cli getinfo | ||
searchpaycoin-cli mnsync status | ||
|
||
All binaries for different operating systems, you can download in the releases repository: | ||
|
||
https://github.com/sepyproject/SearchPayCoin/releases | ||
|
||
P2P port: 17979, RPC port: 18989 | ||
- | ||
Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
set -e | ||
srcdir="$(dirname $0)" | ||
cd "$srcdir" | ||
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then | ||
LIBTOOLIZE="${GLIBTOOLIZE}" | ||
export LIBTOOLIZE | ||
fi | ||
autoreconf --install --force --warnings=all |
Oops, something went wrong.