Skip to content

Commit 9f5d7a4

Browse files
author
OnsightIT
committed
new solarcoin sources
1 parent 88c688d commit 9f5d7a4

1,476 files changed

Lines changed: 395785 additions & 0 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/clientversion.cpp export-subst

.github/ISSUE_TEMPLATE.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!--- Remove sections that do not apply -->
2+
3+
This issue tracker is only for technical issues related to solarcoin-core.
4+
5+
General solarcoin questions and/or support requests and are best directed to the [solarcointalk.io forums](https://solarcointalk.io/).
6+
7+
For reporting security issues, please contact the Solarcoin developers on the #solarcoin-dev Freenode IRC channel or alternatively you can email us at contact@solarcoin.org.
8+
9+
### Describe the issue
10+
11+
### Can you reliably reproduce the issue?
12+
#### If so, please list the steps to reproduce below:
13+
1.
14+
2.
15+
3.
16+
17+
### Expected behaviour
18+
Tell us what should happen
19+
20+
### Actual behaviour
21+
Tell us what happens instead
22+
23+
### Screenshots.
24+
If the issue is related to the GUI, screenshots can be added to this issue via drag & drop.
25+
26+
### What version of solarcoin-core are you using?
27+
List the version number/commit ID, and if it is an official binary, self compiled or a distribution package such as PPA.
28+
29+
### Machine specs:
30+
- OS:
31+
- CPU:
32+
- RAM:
33+
- Disk size:
34+
- Disk Type (HD/SDD):
35+
36+
### Any extra information that might be useful in the debugging process.
37+
This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred.

.gitignore

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
*.tar.gz
2+
3+
*.exe
4+
src/solarcoin
5+
src/solarcoind
6+
src/solarcoin-cli
7+
src/solarcoin-tx
8+
src/litecoin
9+
src/litecoind
10+
src/litecoin-cli
11+
src/litecoin-tx
12+
src/test/test_litecoin
13+
src/test/test_litecoin_fuzzy
14+
src/test/test_solarcoin
15+
src/test/test_solarcoin_fuzzy
16+
src/qt/test/test_litecoin-qt
17+
src/qt/test/test_solarcoin-qt
18+
19+
# autoreconf
20+
Makefile.in
21+
aclocal.m4
22+
autom4te.cache/
23+
build-aux/config.guess
24+
build-aux/config.sub
25+
build-aux/depcomp
26+
build-aux/install-sh
27+
build-aux/ltmain.sh
28+
build-aux/m4/libtool.m4
29+
build-aux/m4/lt~obsolete.m4
30+
build-aux/m4/ltoptions.m4
31+
build-aux/m4/ltsugar.m4
32+
build-aux/m4/ltversion.m4
33+
build-aux/missing
34+
build-aux/compile
35+
build-aux/test-driver
36+
config.log
37+
config.status
38+
configure
39+
libtool
40+
src/config/bitcoin-config.h
41+
src/config/bitcoin-config.h.in
42+
src/config/stamp-h1
43+
share/setup.nsi
44+
share/qt/Info.plist
45+
46+
src/univalue/gen
47+
48+
src/qt/*.moc
49+
src/qt/moc_*.cpp
50+
src/qt/forms/ui_*.h
51+
52+
src/qt/test/moc*.cpp
53+
54+
.deps
55+
.dirstamp
56+
.libs
57+
.*.swp
58+
*.*~*
59+
*.bak
60+
*.rej
61+
*.orig
62+
*.pyc
63+
*.o
64+
*.o-*
65+
*.patch
66+
*.a
67+
*.pb.cc
68+
*.pb.h
69+
70+
*.log
71+
*.trs
72+
*.dmg
73+
74+
*.json.h
75+
*.raw.h
76+
77+
#libtool object files
78+
*.lo
79+
*.la
80+
81+
# Compilation and Qt preprocessor part
82+
*.qm
83+
Makefile
84+
solarcoin-qt
85+
litecoin-qt
86+
Solarcoin-Qt.app
87+
Litecoin-Qt.app
88+
89+
# Unit-tests
90+
Makefile.test
91+
solarcoin-qt_test
92+
litecoin-qt_test
93+
src/test/buildenv.py
94+
95+
# Resources cpp
96+
qrc_*.cpp
97+
98+
# Mac specific
99+
.DS_Store
100+
build
101+
102+
#lcov
103+
*.gcno
104+
*.gcda
105+
/*.info
106+
test_solarcoin.coverage/
107+
test_litecoin.coverage/
108+
total.coverage/
109+
coverage_percent.txt
110+
111+
#build tests
112+
linux-coverage-build
113+
linux-build
114+
win32-build
115+
qa/pull-tester/tests_config.py
116+
qa/cache/*
117+
118+
!src/leveldb*/Makefile
119+
120+
/doc/doxygen/
121+
122+
libbitcoinconsensus.pc
123+
contrib/devtools/split-debug.sh

.travis.yml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
sudo: required
2+
dist: trusty
3+
os: linux
4+
language: generic
5+
cache:
6+
directories:
7+
- depends/built
8+
- depends/sdk-sources
9+
- $HOME/.ccache
10+
env:
11+
global:
12+
- MAKEJOBS=-j3
13+
- RUN_TESTS=false
14+
- CHECK_DOC=0
15+
- BOOST_TEST_RANDOM=1$TRAVIS_BUILD_ID
16+
- CCACHE_SIZE=100M
17+
- CCACHE_TEMPDIR=/tmp/.ccache-temp
18+
- CCACHE_COMPRESS=1
19+
- BASE_OUTDIR=$TRAVIS_BUILD_DIR/out
20+
- SDK_URL=https://bitcoincore.org/depends-sources/sdks
21+
- PYTHON_DEBUG=1
22+
- WINEDEBUG=fixme-all
23+
- SOLARCOIN_SCRYPT=0
24+
matrix:
25+
# ARM
26+
- HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" CHECK_DOC=1 GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
27+
# Win32
28+
- HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 python3-dev python3-pip nsis g++-mingw-w64-i686 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports" SOLARCOIN_SCRYPT=1
29+
# 32-bit + dash
30+
- HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-pip python3-dev python3-zmq" DEP_OPTS="NO_QT=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash" SOLARCOIN_SCRYPT=1
31+
# Win64
32+
- HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 python3-dev python3-pip nsis g++-mingw-w64-x86-64 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports --enable-sse2" SOLARCOIN_SCRYPT=1
33+
# bitcoind
34+
- HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq python3-dev python3-pip" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER" SOLARCOIN_SCRYPT=1
35+
# No wallet
36+
- HOST=x86_64-unknown-linux-gnu PACKAGES="python3 python3-dev python3-pip" DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports" SOLARCOIN_SCRYPT=1
37+
# Cross-Mac
38+
- HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --enable-sse2" OSX_SDK=10.11 GOAL="deploy"
39+
40+
before_install:
41+
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
42+
install:
43+
- if [ -n "$PPA" ]; then travis_retry sudo add-apt-repository "$PPA" -y; fi
44+
- if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi
45+
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
46+
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
47+
- if [ "$SOLARCOIN_SCRYPT" = 1 ]; then travis_retry sudo pip3 install solarcoin_scrypt; fi
48+
before_script:
49+
- unset CC; unset CXX
50+
- if [ "$CHECK_DOC" = 1 ]; then contrib/devtools/check-doc.py; fi
51+
- mkdir -p depends/SDKs depends/sdk-sources
52+
- if [ -n "$OSX_SDK" -a ! -f depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then curl --location --fail $SDK_URL/MacOSX${OSX_SDK}.sdk.tar.gz -o depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz; fi
53+
- if [ -n "$OSX_SDK" -a -f depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then tar -C depends/SDKs -xf depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz; fi
54+
- make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
55+
script:
56+
# - if [ "$RUN_TESTS" = "true" -a "$TRAVIS_REPO_SLUG" = "solarcoin-project/solarcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then while read LINE; do travis_retry gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys $LINE; done < contrib/verify-commits/trusted-keys; fi
57+
# - if [ "$RUN_TESTS" = "true" -a "$TRAVIS_REPO_SLUG" = "solarcoin-project/solarcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then git fetch --unshallow; fi
58+
# - if [ "$RUN_TESTS" = "true" -a "$TRAVIS_REPO_SLUG" = "solarcoin-project/solarcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then contrib/verify-commits/verify-commits.sh; fi
59+
- export TRAVIS_COMMIT_LOG=`git log --format=fuller -1`
60+
- if [ -n "$USE_SHELL" ]; then export CONFIG_SHELL="$USE_SHELL"; fi
61+
- OUTDIR=$BASE_OUTDIR/$TRAVIS_PULL_REQUEST/$TRAVIS_JOB_NUMBER-$HOST
62+
- BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
63+
- depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE
64+
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
65+
- mkdir build && cd build
66+
- ../configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
67+
- make distdir VERSION=$HOST
68+
- cd solarcoin-$HOST
69+
- ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
70+
- make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false )
71+
- export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib
72+
- if [ "$RUN_TESTS" = "true" ]; then make $MAKEJOBS check VERBOSE=1; fi
73+
- if [ "$RUN_TESTS" = "true" ]; then qa/pull-tester/rpc-tests.py --coverage; fi
74+
after_script:
75+
- echo $TRAVIS_COMMIT_RANGE
76+
- echo $TRAVIS_COMMIT_LOG

.tx/config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[main]
2+
host = https://www.transifex.com
3+
4+
[bitcoin.qt-translation-014x]
5+
file_filter = src/qt/locale/bitcoin_<lang>.ts
6+
source_file = src/qt/locale/bitcoin_en.ts
7+
source_lang = en

0 commit comments

Comments
 (0)