Skip to content

Commit 5f470e9

Browse files
author
NBK-MEGACOIN
committed
add new version 0.11.22
1 parent a838f45 commit 5f470e9

File tree

894 files changed

+316178
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

894 files changed

+316178
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/version.cpp export-subst

.gitignore

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
*.tar.gz
2+
3+
*.exe
4+
src/limecoinx
5+
src/limecoinxd
6+
src/limecoinx-cli
7+
src/test/test_limecoinx
8+
src/qt/test/test_limecoinx-qt
9+
10+
Makefile.in
11+
aclocal.m4
12+
autom4te.cache/
13+
config.log
14+
config.status
15+
configure
16+
src/limecoinx-config.h
17+
src/limecoinx-config.h.in
18+
src/build-aux/
19+
src/stamp-h1
20+
share/setup.nsi
21+
share/qt/Info.plist
22+
23+
src/qt/*.moc
24+
src/qt/moc_*.cpp
25+
src/qt/forms/ui_*.h
26+
27+
src/qt/test/moc*.cpp
28+
29+
.deps
30+
.dirstamp
31+
.*.swp
32+
*.*~*
33+
*.bak
34+
*.rej
35+
*.orig
36+
*.o
37+
*.o-*
38+
*.patch
39+
.limecoinx
40+
*.a
41+
*.pb.cc
42+
*.pb.h
43+
44+
*.log
45+
*.trs
46+
*.dmg
47+
48+
*.json.h
49+
*.raw.h
50+
51+
# Compilation and Qt preprocessor part
52+
*.qm
53+
Makefile
54+
limecoinx-qt
55+
Limecoinx-Qt.app
56+
57+
# Unit-tests
58+
Makefile.test
59+
limecoinx-qt_test
60+
61+
# Resources cpp
62+
qrc_*.cpp
63+
64+
# Qt creator
65+
*.pro.user
66+
darkcoi*.config
67+
*.creator
68+
*.creator.user
69+
darkcoi*.files
70+
darkcoi*.includes
71+
72+
# Mac specific
73+
.DS_Store
74+
build
75+
76+
#lcov
77+
*.gcno
78+
/*.info
79+
test_limecoinx.coverage/
80+
total.coverage/
81+
coverage_percent.txt
82+
83+
#build tests
84+
linux-coverage-build
85+
linux-build
86+
win32-build
87+
qa/pull-tester/run-bitcoind-for-test.sh
88+
qa/pull-tester/build-tests.sh
89+
90+
!src/leveldb*/Makefile
91+
92+
.cproject
93+
.project

.tx/config

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[main]
2+
host = https://www.transifex.com
3+
4+
[dash.tx]
5+
file_filter = src/qt/locale/dash_<lang>.ts
6+
source_file = src/qt/locale/dash_en.ts
7+
source_lang = en
8+
type = QT

COPYING

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2009-2015 Bitcoin Developers
2+
Copyright (c) 2014-2015 Dash Developers
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
THE SOFTWARE.

INSTALL

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Building Dash
2+
3+
Use the autogen script to prepare the build environment.
4+
5+
./autogen.sh
6+
./configure
7+
make
8+
9+
Precompiled binaries are available at github, see
10+
https://github.com/dashproject/dash-binaries
11+
12+
Always verify the signatures and checksums.
13+
14+
See doc/build-*.md for instructions on building dashd,
15+
the intended-for-services, no-graphical-interface, reference
16+
implementation of Dash.

Makefile.am

+172
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
ACLOCAL_AMFLAGS = -I src/m4
2+
SUBDIRS = src
3+
.PHONY: deploy
4+
5+
GZIP_ENV="-9n"
6+
7+
BITCOIND_BIN=$(top_builddir)/src/limecoinxd$(EXEEXT)
8+
BITCOIN_QT_BIN=$(top_builddir)/src/qt/limecoinx-qt$(EXEEXT)
9+
BITCOIN_CLI_BIN=$(top_builddir)/src/limecoinx-cli$(EXEEXT)
10+
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT)
11+
12+
OSX_APP=Limecoinx-Qt.app
13+
OSX_DMG=Limecoinx-Qt.dmg
14+
OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus
15+
OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist
16+
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns
17+
OSX_PLIST=$(top_srcdir)/share/qt/Info.plist #not installed
18+
OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW
19+
20+
DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md)
21+
22+
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \
23+
$(top_srcdir)/share/pixmaps/nsis-header.bmp \
24+
$(top_srcdir)/share/pixmaps/nsis-wizard.bmp \
25+
$(top_srcdir)/doc/README_windows.txt
26+
27+
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \
28+
$(top_srcdir)/contrib/macdeploy/background.png \
29+
$(top_srcdir)/contrib/macdeploy/DS_Store
30+
31+
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \
32+
leveldb_baseline.info test_limecoinx_filtered.info total_coverage.info \
33+
baseline_filtered.info block_test_filtered.info \
34+
leveldb_baseline_filtered.info test_limecoinx_coverage.info test_limecoinx.info
35+
36+
dist-hook:
37+
-$(MAKE) -C $(top_distdir)/src/leveldb clean
38+
-$(GIT) archive --format=tar HEAD -- src/version.cpp | $(AMTAR) -C $(top_distdir) -xf -
39+
40+
distcheck-hook:
41+
$(MKDIR_P) $(top_distdir)/_build/src/leveldb
42+
cp -rf $(top_srcdir)/src/leveldb/* $(top_distdir)/_build/src/leveldb/
43+
-$(MAKE) -C $(top_distdir)/_build/src/leveldb clean
44+
45+
distcleancheck:
46+
@:
47+
48+
$(BITCOIN_WIN_INSTALLER): $(BITCOIND_BIN) $(BITCOIN_QT_BIN) $(BITCOIN_CLI_BIN)
49+
$(MKDIR_P) $(top_builddir)/release
50+
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release
51+
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release
52+
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release
53+
@test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \
54+
echo error: could not build $@
55+
56+
$(BITCOIND_BIN) $(BITCOIN_QT_BIN) $(BITCOIN_CLI_BIN):
57+
make -C $(dir $@) $(notdir $@)
58+
59+
$(OSX_APP)/Contents/PkgInfo:
60+
$(MKDIR_P) $(@D)
61+
@echo "APPL????" > $@
62+
63+
$(OSX_APP)/Contents/Resources/empty.lproj:
64+
$(MKDIR_P) $(@D)
65+
@touch $@
66+
67+
$(OSX_APP)/Contents/Info.plist: $(OSX_PLIST)
68+
$(MKDIR_P) $(@D)
69+
$(INSTALL_DATA) $< $@
70+
71+
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS)
72+
$(MKDIR_P) $(@D)
73+
$(INSTALL_DATA) $< $@
74+
75+
$(OSX_APP)/Contents/MacOS/Limecoinx-Qt: $(BITCOIN_QT_BIN)
76+
$(MKDIR_P) $(@D)
77+
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@
78+
79+
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \
80+
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \
81+
$(OSX_APP)/Contents/MacOS/Limecoinx-Qt
82+
83+
if BUILD_DARWIN
84+
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING)
85+
$(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2
86+
87+
else
88+
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING)
89+
INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2
90+
$(MKDIR_P) dist/.background
91+
$(INSTALL) contrib/macdeploy/background.png dist/.background
92+
$(INSTALL) contrib/macdeploy/DS_Store dist/.DS_Store
93+
cd dist; $(LN_S) /Applications Applications
94+
$(GENISOIMAGE) -no-cache-inodes -l -probe -V "Limecoinx-Qt" -no-pad -r -apple -o $@ dist
95+
endif
96+
97+
if TARGET_DARWIN
98+
appbundle: $(OSX_APP_BUILT)
99+
deploy: $(OSX_DMG)
100+
endif
101+
if TARGET_WINDOWS
102+
deploy: $(BITCOIN_WIN_INSTALLER)
103+
endif
104+
105+
if USE_LCOV
106+
107+
baseline.info:
108+
$(LCOV) -c -i -d $(abs_builddir)/src -o $@
109+
110+
baseline_filtered.info: baseline.info
111+
$(LCOV) -r $< "/usr/include/*" -o $@
112+
113+
leveldb_baseline.info: baseline_filtered.info
114+
$(LCOV) -c -i -d $(abs_builddir)/src/leveldb -b $(abs_builddir)/src/leveldb -o $@
115+
116+
leveldb_baseline_filtered.info: leveldb_baseline.info
117+
$(LCOV) -r $< "/usr/include/*" -o $@
118+
119+
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info
120+
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@
121+
122+
test_limecoinx.info: baseline_filtered_combined.info
123+
$(MAKE) -C src/ check
124+
$(LCOV) -c -d $(abs_builddir)/src -t test_limecoinx -o $@
125+
$(LCOV) -z -d $(abs_builddir)/src
126+
$(LCOV) -z -d $(abs_builddir)/src/leveldb
127+
128+
test_limecoinx_filtered.info: test_limecoinx.info
129+
$(LCOV) -r $< "/usr/include/*" -o $@
130+
131+
block_test.info: test_limecoinx_filtered.info
132+
$(MKDIR_P) qa/tmp
133+
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0
134+
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@
135+
$(LCOV) -z -d $(abs_builddir)/src
136+
$(LCOV) -z -d $(abs_builddir)/src/leveldb
137+
138+
block_test_filtered.info: block_test.info
139+
$(LCOV) -r $< "/usr/include/*" -o $@
140+
141+
test_limecoinx_coverage.info: baseline_filtered_combined.info test_limecoinx_filtered.info
142+
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_limecoinx_filtered.info -o $@
143+
144+
total_coverage.info: baseline_filtered_combined.info test_limecoinx_filtered.info block_test_filtered.info
145+
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_limecoinx_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt
146+
147+
test_limecoinx.coverage/.dirstamp: test_limecoinx_coverage.info
148+
$(GENHTML) -s $< -o $(@D)
149+
@touch $@
150+
151+
total.coverage/.dirstamp: total_coverage.info
152+
$(GENHTML) -s $< -o $(@D)
153+
@touch $@
154+
155+
cov: test_limecoinx.coverage/.dirstamp total.coverage/.dirstamp
156+
157+
endif
158+
159+
if USE_COMPARISON_TOOL
160+
check-local:
161+
$(MKDIR_P) qa/tmp
162+
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS)
163+
endif
164+
165+
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING)
166+
167+
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER)
168+
169+
.INTERMEDIATE: $(COVERAGE_INFO)
170+
171+
clean-local:
172+
rm -rf test_limecoinx.coverage/ total.coverage/ $(OSX_APP)

0 commit comments

Comments
 (0)