rc1
@@ -0,0 +1 @@
|
|||||||
|
src/version.cpp export-subst
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"CurrentProjectSetting": "x86-Debug"
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"ExpandedNodes": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"SelectedNode": "\\COPYING",
|
||||||
|
"PreviewInSolutionExplorer": false
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
Copyright (c) 2014 Enviromint Developers
|
||||||
|
Copyright (c) 2013-2014 NovaCoin Developers
|
||||||
|
Copyright (c) 2011-2012 PPCoin Developers
|
||||||
|
Copyright (c) 2009-2014 Bitcoin 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.
|
||||||
@@ -0,0 +1,433 @@
|
|||||||
|
TEMPLATE = app
|
||||||
|
TARGET = enviromint-qt
|
||||||
|
VERSION = 1.0.7
|
||||||
|
INCLUDEPATH += src src/json src/qt
|
||||||
|
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
|
||||||
|
CONFIG += no_include_pwd
|
||||||
|
CONFIG += thread
|
||||||
|
|
||||||
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||||
|
QT += widgets
|
||||||
|
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
|
}
|
||||||
|
|
||||||
|
# for boost 1.37, add -mt to the boost libraries
|
||||||
|
# use: qmake BOOST_LIB_SUFFIX=-mt
|
||||||
|
# for boost thread win32 with _win32 sufix
|
||||||
|
# use: BOOST_THREAD_LIB_SUFFIX=_win32-...
|
||||||
|
# or when linking against a specific BerkelyDB version: BDB_LIB_SUFFIX=-4.8
|
||||||
|
|
||||||
|
# Dependency library locations can be customized with:
|
||||||
|
# BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
|
||||||
|
# BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively
|
||||||
|
|
||||||
|
OBJECTS_DIR = build
|
||||||
|
MOC_DIR = build
|
||||||
|
UI_DIR = build
|
||||||
|
|
||||||
|
# use: qmake "RELEASE=1"
|
||||||
|
contains(RELEASE, 1) {
|
||||||
|
# Mac: compile for maximum compatibility (10.5, 32-bit)
|
||||||
|
macx:QMAKE_CXXFLAGS += -mmacosx-version-min=10.5 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk
|
||||||
|
|
||||||
|
!windows:!macx {
|
||||||
|
# Linux: static link
|
||||||
|
LIBS += -Wl,-Bstatic
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
!win32 {
|
||||||
|
# for extra security against potential buffer overflows: enable GCCs Stack Smashing Protection
|
||||||
|
QMAKE_CXXFLAGS *= -fstack-protector-all --param ssp-buffer-size=1
|
||||||
|
QMAKE_LFLAGS *= -fstack-protector-all --param ssp-buffer-size=1
|
||||||
|
# We need to exclude this for Windows cross compile with MinGW 4.2.x, as it will result in a non-working executable!
|
||||||
|
# This can be enabled for Windows, when we switch to MinGW >= 4.4.x.
|
||||||
|
}
|
||||||
|
# for extra security on Windows: enable ASLR and DEP via GCC linker flags
|
||||||
|
win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat
|
||||||
|
win32:QMAKE_LFLAGS += -static-libgcc -static-libstdc++
|
||||||
|
|
||||||
|
# use: qmake "USE_QRCODE=1"
|
||||||
|
# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support
|
||||||
|
contains(USE_QRCODE, 1) {
|
||||||
|
message(Building with QRCode support)
|
||||||
|
DEFINES += USE_QRCODE
|
||||||
|
LIBS += -lqrencode
|
||||||
|
}
|
||||||
|
|
||||||
|
# use: qmake "USE_UPNP=1" ( enabled by default; default)
|
||||||
|
# or: qmake "USE_UPNP=0" (disabled by default)
|
||||||
|
# or: qmake "USE_UPNP=-" (not supported)
|
||||||
|
# miniupnpc (http://miniupnp.free.fr/files/) must be installed for support
|
||||||
|
contains(USE_UPNP, -) {
|
||||||
|
message(Building without UPNP support)
|
||||||
|
} else {
|
||||||
|
message(Building with UPNP support)
|
||||||
|
count(USE_UPNP, 0) {
|
||||||
|
USE_UPNP=1
|
||||||
|
}
|
||||||
|
DEFINES += USE_UPNP=$$USE_UPNP STATICLIB
|
||||||
|
INCLUDEPATH += $$MINIUPNPC_INCLUDE_PATH
|
||||||
|
LIBS += $$join(MINIUPNPC_LIB_PATH,,-L,) -lminiupnpc
|
||||||
|
win32:LIBS += -liphlpapi
|
||||||
|
}
|
||||||
|
|
||||||
|
# use: qmake "USE_DBUS=1" or qmake "USE_DBUS=0"
|
||||||
|
linux:count(USE_DBUS, 0) {
|
||||||
|
USE_DBUS=1
|
||||||
|
}
|
||||||
|
contains(USE_DBUS, 1) {
|
||||||
|
message(Building with DBUS (Freedesktop notifications) support)
|
||||||
|
DEFINES += USE_DBUS
|
||||||
|
QT += dbus
|
||||||
|
}
|
||||||
|
|
||||||
|
contains(BITCOIN_NEED_QT_PLUGINS, 1) {
|
||||||
|
DEFINES += BITCOIN_NEED_QT_PLUGINS
|
||||||
|
QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets
|
||||||
|
}
|
||||||
|
|
||||||
|
INCLUDEPATH += src/leveldb/include src/leveldb/helpers
|
||||||
|
LIBS += $$PWD/src/leveldb/libleveldb.a $$PWD/src/leveldb/libmemenv.a
|
||||||
|
SOURCES += src/txdb-leveldb.cpp
|
||||||
|
!win32 {
|
||||||
|
# we use QMAKE_CXXFLAGS_RELEASE even without RELEASE=1 because we use RELEASE to indicate linking preferences not -O preferences
|
||||||
|
genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\" libleveldb.a libmemenv.a
|
||||||
|
} else {
|
||||||
|
# make an educated guess about what the ranlib command is called
|
||||||
|
isEmpty(QMAKE_RANLIB) {
|
||||||
|
QMAKE_RANLIB = $$replace(QMAKE_STRIP, strip, ranlib)
|
||||||
|
}
|
||||||
|
LIBS += -lshlwapi
|
||||||
|
genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX TARGET_OS=OS_WINDOWS_CROSSCOMPILE $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\" libleveldb.a libmemenv.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libleveldb.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libmemenv.a
|
||||||
|
}
|
||||||
|
genleveldb.target = $$PWD/src/leveldb/libleveldb.a
|
||||||
|
genleveldb.depends = FORCE
|
||||||
|
PRE_TARGETDEPS += $$PWD/src/leveldb/libleveldb.a
|
||||||
|
QMAKE_EXTRA_TARGETS += genleveldb
|
||||||
|
# Gross ugly hack that depends on qmake internals, unfortunately there is no other way to do it.
|
||||||
|
QMAKE_CLEAN += $$PWD/src/leveldb/libleveldb.a; cd $$PWD/src/leveldb ; $(MAKE) clean
|
||||||
|
|
||||||
|
# regenerate src/build.h
|
||||||
|
!windows|contains(USE_BUILD_INFO, 1) {
|
||||||
|
genbuild.depends = FORCE
|
||||||
|
genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h
|
||||||
|
genbuild.target = $$OUT_PWD/build/build.h
|
||||||
|
PRE_TARGETDEPS += $$OUT_PWD/build/build.h
|
||||||
|
QMAKE_EXTRA_TARGETS += genbuild
|
||||||
|
DEFINES += HAVE_BUILD_INFO
|
||||||
|
}
|
||||||
|
|
||||||
|
contains(USE_O3, 1) {
|
||||||
|
message(Building O3 optimization flag)
|
||||||
|
QMAKE_CXXFLAGS_RELEASE -= -O2
|
||||||
|
QMAKE_CFLAGS_RELEASE -= -O2
|
||||||
|
QMAKE_CXXFLAGS += -O3
|
||||||
|
QMAKE_CFLAGS += -O3
|
||||||
|
}
|
||||||
|
|
||||||
|
*-g++-32 {
|
||||||
|
message("32 platform, adding -msse2 flag")
|
||||||
|
|
||||||
|
QMAKE_CXXFLAGS += -msse2
|
||||||
|
QMAKE_CFLAGS += -msse2
|
||||||
|
}
|
||||||
|
|
||||||
|
QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector
|
||||||
|
|
||||||
|
# Input
|
||||||
|
DEPENDPATH += src src/json src/qt
|
||||||
|
HEADERS += src/qt/bitcoingui.h \
|
||||||
|
src/qt/transactiontablemodel.h \
|
||||||
|
src/qt/addresstablemodel.h \
|
||||||
|
src/qt/optionsdialog.h \
|
||||||
|
src/qt/coincontroldialog.h \
|
||||||
|
src/qt/coincontroltreewidget.h \
|
||||||
|
src/qt/sendcoinsdialog.h \
|
||||||
|
src/qt/addressbookpage.h \
|
||||||
|
src/qt/signverifymessagedialog.h \
|
||||||
|
src/qt/aboutdialog.h \
|
||||||
|
src/qt/editaddressdialog.h \
|
||||||
|
src/qt/bitcoinaddressvalidator.h \
|
||||||
|
src/alert.h \
|
||||||
|
src/addrman.h \
|
||||||
|
src/base58.h \
|
||||||
|
src/bignum.h \
|
||||||
|
src/checkpoints.h \
|
||||||
|
src/compat.h \
|
||||||
|
src/coincontrol.h \
|
||||||
|
src/sync.h \
|
||||||
|
src/util.h \
|
||||||
|
src/uint256.h \
|
||||||
|
src/kernel.h \
|
||||||
|
src/scrypt.h \
|
||||||
|
src/pbkdf2.h \
|
||||||
|
src/zerocoin/Accumulator.h \
|
||||||
|
src/zerocoin/AccumulatorProofOfKnowledge.h \
|
||||||
|
src/zerocoin/Coin.h \
|
||||||
|
src/zerocoin/CoinSpend.h \
|
||||||
|
src/zerocoin/Commitment.h \
|
||||||
|
src/zerocoin/ParamGeneration.h \
|
||||||
|
src/zerocoin/Params.h \
|
||||||
|
src/zerocoin/SerialNumberSignatureOfKnowledge.h \
|
||||||
|
src/zerocoin/SpendMetaData.h \
|
||||||
|
src/zerocoin/ZeroTest.h \
|
||||||
|
src/zerocoin/Zerocoin.h \
|
||||||
|
src/serialize.h \
|
||||||
|
src/strlcpy.h \
|
||||||
|
src/main.h \
|
||||||
|
src/miner.h \
|
||||||
|
src/net.h \
|
||||||
|
src/key.h \
|
||||||
|
src/db.h \
|
||||||
|
src/txdb.h \
|
||||||
|
src/walletdb.h \
|
||||||
|
src/script.h \
|
||||||
|
src/init.h \
|
||||||
|
src/irc.h \
|
||||||
|
src/mruset.h \
|
||||||
|
src/json/json_spirit_writer_template.h \
|
||||||
|
src/json/json_spirit_writer.h \
|
||||||
|
src/json/json_spirit_value.h \
|
||||||
|
src/json/json_spirit_utils.h \
|
||||||
|
src/json/json_spirit_stream_reader.h \
|
||||||
|
src/json/json_spirit_reader_template.h \
|
||||||
|
src/json/json_spirit_reader.h \
|
||||||
|
src/json/json_spirit_error_position.h \
|
||||||
|
src/json/json_spirit.h \
|
||||||
|
src/qt/clientmodel.h \
|
||||||
|
src/qt/guiutil.h \
|
||||||
|
src/qt/transactionrecord.h \
|
||||||
|
src/qt/guiconstants.h \
|
||||||
|
src/qt/optionsmodel.h \
|
||||||
|
src/qt/monitoreddatamapper.h \
|
||||||
|
src/qt/transactiondesc.h \
|
||||||
|
src/qt/transactiondescdialog.h \
|
||||||
|
src/qt/bitcoinamountfield.h \
|
||||||
|
src/wallet.h \
|
||||||
|
src/keystore.h \
|
||||||
|
src/qt/transactionfilterproxy.h \
|
||||||
|
src/qt/transactionview.h \
|
||||||
|
src/qt/walletmodel.h \
|
||||||
|
src/bitcoinrpc.h \
|
||||||
|
src/qt/overviewpage.h \
|
||||||
|
src/qt/csvmodelwriter.h \
|
||||||
|
src/crypter.h \
|
||||||
|
src/qt/sendcoinsentry.h \
|
||||||
|
src/qt/qvalidatedlineedit.h \
|
||||||
|
src/qt/bitcoinunits.h \
|
||||||
|
src/qt/qvaluecombobox.h \
|
||||||
|
src/qt/askpassphrasedialog.h \
|
||||||
|
src/protocol.h \
|
||||||
|
src/qt/notificator.h \
|
||||||
|
src/qt/qtipcserver.h \
|
||||||
|
src/allocators.h \
|
||||||
|
src/ui_interface.h \
|
||||||
|
src/qt/rpcconsole.h \
|
||||||
|
src/version.h \
|
||||||
|
src/netbase.h \
|
||||||
|
src/clientversion.h \
|
||||||
|
src/threadsafety.h
|
||||||
|
|
||||||
|
SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
|
||||||
|
src/qt/transactiontablemodel.cpp \
|
||||||
|
src/qt/addresstablemodel.cpp \
|
||||||
|
src/qt/optionsdialog.cpp \
|
||||||
|
src/qt/sendcoinsdialog.cpp \
|
||||||
|
src/qt/coincontroldialog.cpp \
|
||||||
|
src/qt/coincontroltreewidget.cpp \
|
||||||
|
src/qt/addressbookpage.cpp \
|
||||||
|
src/qt/signverifymessagedialog.cpp \
|
||||||
|
src/qt/aboutdialog.cpp \
|
||||||
|
src/qt/editaddressdialog.cpp \
|
||||||
|
src/qt/bitcoinaddressvalidator.cpp \
|
||||||
|
src/alert.cpp \
|
||||||
|
src/version.cpp \
|
||||||
|
src/sync.cpp \
|
||||||
|
src/util.cpp \
|
||||||
|
src/netbase.cpp \
|
||||||
|
src/key.cpp \
|
||||||
|
src/script.cpp \
|
||||||
|
src/main.cpp \
|
||||||
|
src/miner.cpp \
|
||||||
|
src/init.cpp \
|
||||||
|
src/net.cpp \
|
||||||
|
src/irc.cpp \
|
||||||
|
src/checkpoints.cpp \
|
||||||
|
src/addrman.cpp \
|
||||||
|
src/db.cpp \
|
||||||
|
src/walletdb.cpp \
|
||||||
|
src/qt/clientmodel.cpp \
|
||||||
|
src/qt/guiutil.cpp \
|
||||||
|
src/qt/transactionrecord.cpp \
|
||||||
|
src/qt/optionsmodel.cpp \
|
||||||
|
src/qt/monitoreddatamapper.cpp \
|
||||||
|
src/qt/transactiondesc.cpp \
|
||||||
|
src/qt/transactiondescdialog.cpp \
|
||||||
|
src/qt/bitcoinstrings.cpp \
|
||||||
|
src/qt/bitcoinamountfield.cpp \
|
||||||
|
src/wallet.cpp \
|
||||||
|
src/keystore.cpp \
|
||||||
|
src/qt/transactionfilterproxy.cpp \
|
||||||
|
src/qt/transactionview.cpp \
|
||||||
|
src/qt/walletmodel.cpp \
|
||||||
|
src/bitcoinrpc.cpp \
|
||||||
|
src/rpcdump.cpp \
|
||||||
|
src/rpcnet.cpp \
|
||||||
|
src/rpcmining.cpp \
|
||||||
|
src/rpcwallet.cpp \
|
||||||
|
src/rpcblockchain.cpp \
|
||||||
|
src/rpcrawtransaction.cpp \
|
||||||
|
src/qt/overviewpage.cpp \
|
||||||
|
src/qt/csvmodelwriter.cpp \
|
||||||
|
src/crypter.cpp \
|
||||||
|
src/qt/sendcoinsentry.cpp \
|
||||||
|
src/qt/qvalidatedlineedit.cpp \
|
||||||
|
src/qt/bitcoinunits.cpp \
|
||||||
|
src/qt/qvaluecombobox.cpp \
|
||||||
|
src/qt/askpassphrasedialog.cpp \
|
||||||
|
src/protocol.cpp \
|
||||||
|
src/qt/notificator.cpp \
|
||||||
|
src/qt/qtipcserver.cpp \
|
||||||
|
src/qt/rpcconsole.cpp \
|
||||||
|
src/noui.cpp \
|
||||||
|
src/kernel.cpp \
|
||||||
|
src/scrypt-arm.S \
|
||||||
|
src/scrypt-x86.S \
|
||||||
|
src/scrypt-x86_64.S \
|
||||||
|
src/scrypt.cpp \
|
||||||
|
src/pbkdf2.cpp \
|
||||||
|
src/zerocoin/Accumulator.cpp \
|
||||||
|
src/zerocoin/AccumulatorProofOfKnowledge.cpp \
|
||||||
|
src/zerocoin/Coin.cpp \
|
||||||
|
src/zerocoin/CoinSpend.cpp \
|
||||||
|
src/zerocoin/Commitment.cpp \
|
||||||
|
src/zerocoin/ParamGeneration.cpp \
|
||||||
|
src/zerocoin/Params.cpp \
|
||||||
|
src/zerocoin/SerialNumberSignatureOfKnowledge.cpp \
|
||||||
|
src/zerocoin/SpendMetaData.cpp \
|
||||||
|
src/zerocoin/ZeroTest.cpp
|
||||||
|
|
||||||
|
RESOURCES += \
|
||||||
|
src/qt/bitcoin.qrc
|
||||||
|
|
||||||
|
FORMS += \
|
||||||
|
src/qt/forms/coincontroldialog.ui \
|
||||||
|
src/qt/forms/sendcoinsdialog.ui \
|
||||||
|
src/qt/forms/addressbookpage.ui \
|
||||||
|
src/qt/forms/signverifymessagedialog.ui \
|
||||||
|
src/qt/forms/aboutdialog.ui \
|
||||||
|
src/qt/forms/editaddressdialog.ui \
|
||||||
|
src/qt/forms/transactiondescdialog.ui \
|
||||||
|
src/qt/forms/overviewpage.ui \
|
||||||
|
src/qt/forms/sendcoinsentry.ui \
|
||||||
|
src/qt/forms/askpassphrasedialog.ui \
|
||||||
|
src/qt/forms/rpcconsole.ui \
|
||||||
|
src/qt/forms/optionsdialog.ui
|
||||||
|
|
||||||
|
contains(USE_QRCODE, 1) {
|
||||||
|
HEADERS += src/qt/qrcodedialog.h
|
||||||
|
SOURCES += src/qt/qrcodedialog.cpp
|
||||||
|
FORMS += src/qt/forms/qrcodedialog.ui
|
||||||
|
}
|
||||||
|
|
||||||
|
CODECFORTR = UTF-8
|
||||||
|
|
||||||
|
# for lrelease/lupdate
|
||||||
|
# also add new translations to src/qt/bitcoin.qrc under translations/
|
||||||
|
TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts)
|
||||||
|
|
||||||
|
isEmpty(QMAKE_LRELEASE) {
|
||||||
|
win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
||||||
|
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
||||||
|
}
|
||||||
|
isEmpty(QM_DIR):QM_DIR = $$PWD/src/qt/locale
|
||||||
|
# automatically build translations, so they can be included in resource file
|
||||||
|
TSQM.name = lrelease ${QMAKE_FILE_IN}
|
||||||
|
TSQM.input = TRANSLATIONS
|
||||||
|
TSQM.output = $$QM_DIR/${QMAKE_FILE_BASE}.qm
|
||||||
|
TSQM.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT}
|
||||||
|
TSQM.CONFIG = no_link
|
||||||
|
QMAKE_EXTRA_COMPILERS += TSQM
|
||||||
|
|
||||||
|
# "Other files" to show in Qt Creator
|
||||||
|
OTHER_FILES += \
|
||||||
|
doc/*.rst doc/*.txt doc/README README.md res/bitcoin-qt.rc
|
||||||
|
|
||||||
|
# platform specific defaults, if not overridden on command line
|
||||||
|
isEmpty(BOOST_LIB_SUFFIX) {
|
||||||
|
macx:BOOST_LIB_SUFFIX = -mt
|
||||||
|
windows:BOOST_LIB_SUFFIX = -mt
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BOOST_THREAD_LIB_SUFFIX) {
|
||||||
|
win32:BOOST_THREAD_LIB_SUFFIX = _win32$$BOOST_LIB_SUFFIX
|
||||||
|
else:BOOST_THREAD_LIB_SUFFIX = $$BOOST_LIB_SUFFIX
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BDB_LIB_PATH) {
|
||||||
|
macx:BDB_LIB_PATH = /opt/local/lib/db48
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BDB_LIB_SUFFIX) {
|
||||||
|
macx:BDB_LIB_SUFFIX = -4.8
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BDB_INCLUDE_PATH) {
|
||||||
|
macx:BDB_INCLUDE_PATH = /opt/local/include/db48
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BOOST_LIB_PATH) {
|
||||||
|
macx:BOOST_LIB_PATH = /opt/local/lib
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty(BOOST_INCLUDE_PATH) {
|
||||||
|
macx:BOOST_INCLUDE_PATH = /opt/local/include
|
||||||
|
}
|
||||||
|
|
||||||
|
windows:DEFINES += WIN32
|
||||||
|
windows:RC_FILE = src/qt/res/bitcoin-qt.rc
|
||||||
|
|
||||||
|
windows:!contains(MINGW_THREAD_BUGFIX, 0) {
|
||||||
|
# At least qmake's win32-g++-cross profile is missing the -lmingwthrd
|
||||||
|
# thread-safety flag. GCC has -mthreads to enable this, but it doesn't
|
||||||
|
# work with static linking. -lmingwthrd must come BEFORE -lmingw, so
|
||||||
|
# it is prepended to QMAKE_LIBS_QT_ENTRY.
|
||||||
|
# It can be turned off with MINGW_THREAD_BUGFIX=0, just in case it causes
|
||||||
|
# any problems on some untested qmake profile now or in the future.
|
||||||
|
DEFINES += _MT BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN
|
||||||
|
QMAKE_LIBS_QT_ENTRY = -lmingwthrd $$QMAKE_LIBS_QT_ENTRY
|
||||||
|
}
|
||||||
|
|
||||||
|
macx:HEADERS += src/qt/macdockiconhandler.h
|
||||||
|
macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm
|
||||||
|
macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit
|
||||||
|
macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0
|
||||||
|
macx:ICON = src/qt/res/icons/bitcoin.icns
|
||||||
|
macx:TARGET = "Enviromint-Qt"
|
||||||
|
macx:QMAKE_CFLAGS_THREAD += -pthread
|
||||||
|
macx:QMAKE_LFLAGS_THREAD += -pthread
|
||||||
|
macx:QMAKE_CXXFLAGS_THREAD += -pthread
|
||||||
|
|
||||||
|
# Set libraries and includes at end, to use platform-defined defaults if not overridden
|
||||||
|
INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH
|
||||||
|
LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
|
||||||
|
LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
|
||||||
|
# -lgdi32 has to happen after -lcrypto (see #681)
|
||||||
|
windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32
|
||||||
|
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
|
||||||
|
windows:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX
|
||||||
|
|
||||||
|
contains(RELEASE, 1) {
|
||||||
|
!windows:!macx {
|
||||||
|
# Linux: turn dynamic linking back on for c/c++ runtime libraries
|
||||||
|
LIBS += -Wl,-Bdynamic
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
!windows:!macx {
|
||||||
|
DEFINES += LINUX
|
||||||
|
LIBS += -lrt -ldl
|
||||||
|
}
|
||||||
|
|
||||||
|
system($$QMAKE_LRELEASE -silent $$_PRO_FILE_)
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
Building Enviromint
|
||||||
|
|
||||||
|
See doc/readme-qt.rst for instructions on building Enviromint QT,
|
||||||
|
the intended-for-end-users, nice-graphical-interface, reference
|
||||||
|
implementation of Enviromint.
|
||||||
|
|
||||||
|
See doc/build-*.txt for instructions on building enviromintd,
|
||||||
|
the intended-for-services, no-graphical-interface, reference
|
||||||
|
implementation of Enviromint.
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
Enviromint development tree
|
||||||
|
|
||||||
|
Enviromint is a PoS-based cryptocurrency.
|
||||||
|
|
||||||
|
Development process
|
||||||
|
===========================
|
||||||
|
|
||||||
|
Developers work in their own trees, then submit pull requests when
|
||||||
|
they think their feature or bug fix is ready.
|
||||||
|
|
||||||
|
The patch will be accepted if there is broad consensus that it is a
|
||||||
|
good thing. Developers should expect to rework and resubmit patches
|
||||||
|
if they don't match the project's coding conventions (see coding.txt)
|
||||||
|
or are controversial.
|
||||||
|
|
||||||
|
The master branch is regularly built and tested, but is not guaranteed
|
||||||
|
to be completely stable. Tags are regularly created to indicate new
|
||||||
|
stable release versions of Enviromint.
|
||||||
|
|
||||||
|
Feature branches are created when there are major new features being
|
||||||
|
worked on by several people.
|
||||||
|
|
||||||
|
From time to time a pull request will become outdated. If this occurs, and
|
||||||
|
the pull is no longer automatically mergeable; a comment on the pull will
|
||||||
|
be used to issue a warning of closure. The pull will be closed 15 days
|
||||||
|
after the warning if action is not taken by the author. Pull requests closed
|
||||||
|
in this manner will have their corresponding issue labeled 'stagnant'.
|
||||||
|
|
||||||
|
Issues with no commits will be given a similar warning, and closed after
|
||||||
|
15 days from their last activity. Issues closed in this manner will be
|
||||||
|
labeled 'stale'.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// No build information available
|
||||||
|
#define BUILD_DATE ""
|
||||||
@@ -0,0 +1,324 @@
|
|||||||
|
from jsonrpc import ServiceProxy
|
||||||
|
import sys
|
||||||
|
import string
|
||||||
|
|
||||||
|
# ===== BEGIN USER SETTINGS =====
|
||||||
|
# if you do not set these you will be prompted for a password for every command
|
||||||
|
rpcuser = ""
|
||||||
|
rpcpass = ""
|
||||||
|
# ====== END USER SETTINGS ======
|
||||||
|
|
||||||
|
|
||||||
|
if rpcpass == "":
|
||||||
|
access = ServiceProxy("http://127.0.0.1:8332")
|
||||||
|
else:
|
||||||
|
access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:8332")
|
||||||
|
cmd = sys.argv[1].lower()
|
||||||
|
|
||||||
|
if cmd == "backupwallet":
|
||||||
|
try:
|
||||||
|
path = raw_input("Enter destination path/filename: ")
|
||||||
|
print access.backupwallet(path)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getaccount":
|
||||||
|
try:
|
||||||
|
addr = raw_input("Enter a Bitcoin address: ")
|
||||||
|
print access.getaccount(addr)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getaccountaddress":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Enter an account name: ")
|
||||||
|
print access.getaccountaddress(acct)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getaddressesbyaccount":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Enter an account name: ")
|
||||||
|
print access.getaddressesbyaccount(acct)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getbalance":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Enter an account (optional): ")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
try:
|
||||||
|
print access.getbalance(acct, mc)
|
||||||
|
except:
|
||||||
|
print access.getbalance()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getblockbycount":
|
||||||
|
try:
|
||||||
|
height = raw_input("Height: ")
|
||||||
|
print access.getblockbycount(height)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getblockcount":
|
||||||
|
try:
|
||||||
|
print access.getblockcount()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getblocknumber":
|
||||||
|
try:
|
||||||
|
print access.getblocknumber()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getconnectioncount":
|
||||||
|
try:
|
||||||
|
print access.getconnectioncount()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getdifficulty":
|
||||||
|
try:
|
||||||
|
print access.getdifficulty()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getgenerate":
|
||||||
|
try:
|
||||||
|
print access.getgenerate()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "gethashespersec":
|
||||||
|
try:
|
||||||
|
print access.gethashespersec()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getinfo":
|
||||||
|
try:
|
||||||
|
print access.getinfo()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getnewaddress":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Enter an account name: ")
|
||||||
|
try:
|
||||||
|
print access.getnewaddress(acct)
|
||||||
|
except:
|
||||||
|
print access.getnewaddress()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getreceivedbyaccount":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Enter an account (optional): ")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
try:
|
||||||
|
print access.getreceivedbyaccount(acct, mc)
|
||||||
|
except:
|
||||||
|
print access.getreceivedbyaccount()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getreceivedbyaddress":
|
||||||
|
try:
|
||||||
|
addr = raw_input("Enter a Bitcoin address (optional): ")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
try:
|
||||||
|
print access.getreceivedbyaddress(addr, mc)
|
||||||
|
except:
|
||||||
|
print access.getreceivedbyaddress()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "gettransaction":
|
||||||
|
try:
|
||||||
|
txid = raw_input("Enter a transaction ID: ")
|
||||||
|
print access.gettransaction(txid)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "getwork":
|
||||||
|
try:
|
||||||
|
data = raw_input("Data (optional): ")
|
||||||
|
try:
|
||||||
|
print access.gettransaction(data)
|
||||||
|
except:
|
||||||
|
print access.gettransaction()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "help":
|
||||||
|
try:
|
||||||
|
cmd = raw_input("Command (optional): ")
|
||||||
|
try:
|
||||||
|
print access.help(cmd)
|
||||||
|
except:
|
||||||
|
print access.help()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "listaccounts":
|
||||||
|
try:
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
try:
|
||||||
|
print access.listaccounts(mc)
|
||||||
|
except:
|
||||||
|
print access.listaccounts()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "listreceivedbyaccount":
|
||||||
|
try:
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
incemp = raw_input("Include empty? (true/false, optional): ")
|
||||||
|
try:
|
||||||
|
print access.listreceivedbyaccount(mc, incemp)
|
||||||
|
except:
|
||||||
|
print access.listreceivedbyaccount()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "listreceivedbyaddress":
|
||||||
|
try:
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
incemp = raw_input("Include empty? (true/false, optional): ")
|
||||||
|
try:
|
||||||
|
print access.listreceivedbyaddress(mc, incemp)
|
||||||
|
except:
|
||||||
|
print access.listreceivedbyaddress()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "listtransactions":
|
||||||
|
try:
|
||||||
|
acct = raw_input("Account (optional): ")
|
||||||
|
count = raw_input("Number of transactions (optional): ")
|
||||||
|
frm = raw_input("Skip (optional):")
|
||||||
|
try:
|
||||||
|
print access.listtransactions(acct, count, frm)
|
||||||
|
except:
|
||||||
|
print access.listtransactions()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "move":
|
||||||
|
try:
|
||||||
|
frm = raw_input("From: ")
|
||||||
|
to = raw_input("To: ")
|
||||||
|
amt = raw_input("Amount:")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
comment = raw_input("Comment (optional): ")
|
||||||
|
try:
|
||||||
|
print access.move(frm, to, amt, mc, comment)
|
||||||
|
except:
|
||||||
|
print access.move(frm, to, amt)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "sendfrom":
|
||||||
|
try:
|
||||||
|
frm = raw_input("From: ")
|
||||||
|
to = raw_input("To: ")
|
||||||
|
amt = raw_input("Amount:")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
comment = raw_input("Comment (optional): ")
|
||||||
|
commentto = raw_input("Comment-to (optional): ")
|
||||||
|
try:
|
||||||
|
print access.sendfrom(frm, to, amt, mc, comment, commentto)
|
||||||
|
except:
|
||||||
|
print access.sendfrom(frm, to, amt)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "sendmany":
|
||||||
|
try:
|
||||||
|
frm = raw_input("From: ")
|
||||||
|
to = raw_input("To (in format address1:amount1,address2:amount2,...): ")
|
||||||
|
mc = raw_input("Minimum confirmations (optional): ")
|
||||||
|
comment = raw_input("Comment (optional): ")
|
||||||
|
try:
|
||||||
|
print access.sendmany(frm,to,mc,comment)
|
||||||
|
except:
|
||||||
|
print access.sendmany(frm,to)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "sendtoaddress":
|
||||||
|
try:
|
||||||
|
to = raw_input("To (in format address1:amount1,address2:amount2,...): ")
|
||||||
|
amt = raw_input("Amount:")
|
||||||
|
comment = raw_input("Comment (optional): ")
|
||||||
|
commentto = raw_input("Comment-to (optional): ")
|
||||||
|
try:
|
||||||
|
print access.sendtoaddress(to,amt,comment,commentto)
|
||||||
|
except:
|
||||||
|
print access.sendtoaddress(to,amt)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "setaccount":
|
||||||
|
try:
|
||||||
|
addr = raw_input("Address: ")
|
||||||
|
acct = raw_input("Account:")
|
||||||
|
print access.setaccount(addr,acct)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "setgenerate":
|
||||||
|
try:
|
||||||
|
gen= raw_input("Generate? (true/false): ")
|
||||||
|
cpus = raw_input("Max processors/cores (-1 for unlimited, optional):")
|
||||||
|
try:
|
||||||
|
print access.setgenerate(gen, cpus)
|
||||||
|
except:
|
||||||
|
print access.setgenerate(gen)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "settxfee":
|
||||||
|
try:
|
||||||
|
amt = raw_input("Amount:")
|
||||||
|
print access.settxfee(amt)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "stop":
|
||||||
|
try:
|
||||||
|
print access.stop()
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "validateaddress":
|
||||||
|
try:
|
||||||
|
addr = raw_input("Address: ")
|
||||||
|
print access.validateaddress(addr)
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "walletpassphrase":
|
||||||
|
try:
|
||||||
|
pwd = raw_input("Enter wallet passphrase: ")
|
||||||
|
access.walletpassphrase(pwd, 60)
|
||||||
|
print "\n---Wallet unlocked---\n"
|
||||||
|
except:
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
|
||||||
|
elif cmd == "walletpassphrasechange":
|
||||||
|
try:
|
||||||
|
pwd = raw_input("Enter old wallet passphrase: ")
|
||||||
|
pwd2 = raw_input("Enter new wallet passphrase: ")
|
||||||
|
access.walletpassphrasechange(pwd, pwd2)
|
||||||
|
print
|
||||||
|
print "\n---Passphrase changed---\n"
|
||||||
|
except:
|
||||||
|
print
|
||||||
|
print "\n---An error occurred---\n"
|
||||||
|
print
|
||||||
|
|
||||||
|
else:
|
||||||
|
print "Command not found or not supported"
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
umask 077
|
||||||
|
|
||||||
|
basedir=~/.novacoin
|
||||||
|
dbfile="$basedir/DB_CONFIG"
|
||||||
|
cfgfile="$basedir/novacoin.conf"
|
||||||
|
|
||||||
|
[ -e "$basedir" ] || mkdir "$basedir"
|
||||||
|
|
||||||
|
# Novacoin does not clean up DB log files by default
|
||||||
|
[ -e "$dbfile" ] || echo 'set_flags DB_LOG_AUTOREMOVE' > "$dbfile"
|
||||||
|
|
||||||
|
exec /usr/lib/novacoin/novacoin-qt "$@"
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
umask 077
|
||||||
|
|
||||||
|
basedir=~/.novacoin
|
||||||
|
cfgfile="$basedir/novacoin.conf"
|
||||||
|
|
||||||
|
[ -e "$basedir" ] || mkdir "$basedir"
|
||||||
|
|
||||||
|
[ -e "$cfgfile" ] || perl -le 'print"rpcpassword=",map{(a..z,A..Z,0..9)[rand 62]}0..9' > "$cfgfile"
|
||||||
|
|
||||||
|
exec /usr/lib/novacoin/novacoind "$@"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
novacoin (0.4.0~dfsg-1) unstable; urgency=low
|
||||||
|
|
||||||
|
[ Balthazar ]
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Balthazar <balthazar@yandex.ru> Mon, 15 Apr 2013 22:15:22 +0100
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
7
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
Source: novacoin
|
||||||
|
Section: utils
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Jonas Smedegaard <dr@jones.dk>
|
||||||
|
Uploaders: Micah Anderson <micah@debian.org>
|
||||||
|
Build-Depends: debhelper,
|
||||||
|
devscripts,
|
||||||
|
bash-completion,
|
||||||
|
libboost-system-dev (>> 1.35) | libboost-system1.35-dev,
|
||||||
|
libdb4.8++-dev,
|
||||||
|
libssl-dev,
|
||||||
|
pkg-config,
|
||||||
|
libminiupnpc8-dev,
|
||||||
|
libboost-filesystem-dev (>> 1.35) | libboost-filesystem1.35-dev,
|
||||||
|
libboost-program-options-dev (>> 1.35) | libboost-program-options1.35-dev,
|
||||||
|
libboost-thread-dev (>> 1.35) | libboost-thread1.35-dev,
|
||||||
|
libboost-test-dev (>> 1.35) | libboost-test1.35-dev,
|
||||||
|
qt4-qmake,
|
||||||
|
libqt4-dev,
|
||||||
|
libqrencode-dev
|
||||||
|
Standards-Version: 3.9.2
|
||||||
|
Homepage: http://www.novacoin.su/
|
||||||
|
Vcs-Git: git://github.com/CryptoManiac/novacoin.git
|
||||||
|
Vcs-Browser: http://github.com/CryptoManiac/novacoin
|
||||||
|
|
||||||
|
Package: novacoind
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: peer-to-peer network based digital currency - daemon
|
||||||
|
Novacoin is a free open source peer-to-peer electronic cash system that
|
||||||
|
is completely decentralized, without the need for a central server or
|
||||||
|
trusted parties. Users hold the crypto keys to their own money and
|
||||||
|
transact directly with each other, with the help of a P2P network to
|
||||||
|
check for double-spending.
|
||||||
|
.
|
||||||
|
By default connects to an IRC network to discover other peers.
|
||||||
|
.
|
||||||
|
Full transaction history is stored locally at each client. This
|
||||||
|
requires 2+ GB of space, slowly growing.
|
||||||
|
.
|
||||||
|
This package provides novacoind, a combined daemon and CLI tool to
|
||||||
|
interact with the daemon.
|
||||||
|
|
||||||
|
Package: novacoin-qt
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: peer-to-peer network based digital currency - Qt GUI
|
||||||
|
Novacoin is a free open source peer-to-peer electronic cash system that
|
||||||
|
is completely decentralized, without the need for a central server or
|
||||||
|
trusted parties. Users hold the crypto keys to their own money and
|
||||||
|
transact directly with each other, with the help of a P2P network to
|
||||||
|
check for double-spending.
|
||||||
|
.
|
||||||
|
By default connects to an IRC network to discover other peers.
|
||||||
|
.
|
||||||
|
Full transaction history is stored locally at each client. This
|
||||||
|
requires 2+ GB of space, slowly growing.
|
||||||
|
.
|
||||||
|
This package provides Novacoin-Qt, a GUI for Novacoin based on Qt.
|
||||||
@@ -0,0 +1,166 @@
|
|||||||
|
Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174
|
||||||
|
Upstream-Name: Bitcoin
|
||||||
|
Upstream-Contact: Satoshi Nakamoto <satoshin@gmx.com>
|
||||||
|
irc://#bitcoin@freenode.net
|
||||||
|
Source: http://sourceforge.net/projects/bitcoin/files/
|
||||||
|
https://github.com/bitcoin/bitcoin
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2009-2012, Bitcoin Developers
|
||||||
|
License: Expat
|
||||||
|
Comment: The Bitcoin Developers encompasses the current developers listed on bitcoin.org,
|
||||||
|
as well as the numerous contributors to the project.
|
||||||
|
|
||||||
|
Files: src/json/*
|
||||||
|
Copyright: 2007-2009, John W. Wilkinson
|
||||||
|
License: Expat
|
||||||
|
|
||||||
|
Files: src/strlcpy.h
|
||||||
|
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
|
||||||
|
License: ISC
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2010-2011, Jonas Smedegaard <dr@jones.dk>
|
||||||
|
2011, Matt Corallo <matt@bluematt.me>
|
||||||
|
License: GPL-2+
|
||||||
|
|
||||||
|
Files: debian/manpages/*
|
||||||
|
Copyright: Micah Anderson <micah@debian.org>
|
||||||
|
License: GPL-3+
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/clock*.png, src/qt/res/icons/tx*.png,
|
||||||
|
src/qt/res/src/*.svg
|
||||||
|
Copyright: Wladimir van der Laan
|
||||||
|
License: Expat
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/address-book.png, src/qt/res/icons/export.png,
|
||||||
|
src/qt/res/icons/history.png, src/qt/res/icons/key.png,
|
||||||
|
src/qt/res/icons/lock_*.png, src/qt/res/icons/overview.png,
|
||||||
|
src/qt/res/icons/receive.png, src/qt/res/icons/send.png,
|
||||||
|
src/qt/res/icons/synced.png, src/qt/res/icons/filesave.png
|
||||||
|
Copyright: David Vignoni (david@icon-king.com)
|
||||||
|
ICON KING - www.icon-king.com
|
||||||
|
License: LGPL
|
||||||
|
Comment: NUVOLA ICON THEME for KDE 3.x
|
||||||
|
Original icons: kaddressbook, klipper_dock, view-list-text,
|
||||||
|
key-password, encrypted/decrypted, go-home, go-down,
|
||||||
|
go-next, dialog-ok
|
||||||
|
Site: http://www.icon-king.com/projects/nuvola/
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/connect*.png
|
||||||
|
Copyright: schollidesign
|
||||||
|
License: GPL-3+
|
||||||
|
Comment: Icon Pack: Human-O2
|
||||||
|
Site: http://findicons.com/icon/93743/blocks_gnome_netstatus_0
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/transaction*.png
|
||||||
|
Copyright: md2k7
|
||||||
|
License: Expat
|
||||||
|
Comment: Site: https://bitcointalk.org/index.php?topic=15276.0
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png,
|
||||||
|
src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png,
|
||||||
|
src/qt/res/icons/add.png, src/qt/res/icons/edit.png,
|
||||||
|
src/qt/res/icons/remove.png
|
||||||
|
Copyright: http://www.everaldo.com
|
||||||
|
License: LGPL
|
||||||
|
Comment: Icon Pack: Crystal SVG
|
||||||
|
|
||||||
|
Files: src/qt/res/icons/bitcoin.png, src/qt/res/icons/toolbar.png
|
||||||
|
Copyright: Bitboy (optimized for 16x16 by Wladimir van der Laan)
|
||||||
|
License: PUB-DOM
|
||||||
|
Comment: Site: https://bitcointalk.org/?topic=1756.0
|
||||||
|
|
||||||
|
Files: scripts/img/reload.xcf, src/qt/res/movies/update_spinner.mng
|
||||||
|
Copyright: Everaldo (Everaldo Coelho)
|
||||||
|
License: GPL-3+
|
||||||
|
Comment: Icon Pack: Kids
|
||||||
|
Site: http://findicons.com/icon/17102/reload?id=17102
|
||||||
|
|
||||||
|
Files: src/qt/res/images/splash2.jpg
|
||||||
|
License: PUB-DOM
|
||||||
|
Copyright: Crobbo (forum)
|
||||||
|
Comment: Site: https://bitcointalk.org/index.php?topic=32273.0
|
||||||
|
|
||||||
|
|
||||||
|
License: Expat
|
||||||
|
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.
|
||||||
|
|
||||||
|
License: ISC
|
||||||
|
Permission to use, copy, modify, and distribute this software for any
|
||||||
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
copyright notice and this permission notice appear in all copies.
|
||||||
|
.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||||
|
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||||
|
BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||||
|
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||||
|
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||||
|
SOFTWARE.
|
||||||
|
|
||||||
|
License: GPL-2+
|
||||||
|
This program is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2, or (at your option) any
|
||||||
|
later version.
|
||||||
|
.
|
||||||
|
This program is distributed in the hope that it will be useful, but
|
||||||
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
General Public License for more details.
|
||||||
|
Comment:
|
||||||
|
On Debian systems the GNU General Public License (GPL) version 2 is
|
||||||
|
located in '/usr/share/common-licenses/GPL-2'.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
License: GPL-3+
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU General Public License, Version 3 or any
|
||||||
|
later version published by the Free Software Foundation.
|
||||||
|
Comment:
|
||||||
|
On Debian systems the GNU General Public License (GPL) version 3 is
|
||||||
|
located in '/usr/share/common-licenses/GPL-3'.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
License: LGPL
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
Comment:
|
||||||
|
On Debian systems the GNU Lesser General Public License (LGPL) is
|
||||||
|
located in '/usr/share/common-licenses/LGPL'.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
License: PUB-DOM
|
||||||
|
This work is in the public domain.
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
# novacoin.conf configuration file. Lines beginning with # are comments.
|
||||||
|
|
||||||
|
|
||||||
|
# Network-related settings:
|
||||||
|
|
||||||
|
# Run on the test network instead of the real novacoin network.
|
||||||
|
#testnet=1
|
||||||
|
|
||||||
|
# Connect via a socks4 proxy
|
||||||
|
#proxy=127.0.0.1:9050
|
||||||
|
|
||||||
|
# Use as many addnode= settings as you like to connect to specific peers
|
||||||
|
#addnode=188.120.246.137:6591
|
||||||
|
|
||||||
|
# ... or use as many connect= settings as you like to connect ONLY
|
||||||
|
# to specific peers:
|
||||||
|
#connect=188.120.246.137:6591
|
||||||
|
|
||||||
|
# Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to
|
||||||
|
# find other peers.
|
||||||
|
#noirc=1
|
||||||
|
|
||||||
|
# Maximum number of inbound+outbound connections.
|
||||||
|
#maxconnections=
|
||||||
|
|
||||||
|
|
||||||
|
# JSON-RPC options (for controlling a running process)
|
||||||
|
|
||||||
|
# server=1 tells NovaCoin to accept JSON-RPC commands.
|
||||||
|
#server=1
|
||||||
|
|
||||||
|
# You must set rpcuser and rpcpassword to secure the JSON-RPC api
|
||||||
|
#rpcuser=Ulysseys
|
||||||
|
#rpcpassword=YourSuperGreatPasswordNumber_385593
|
||||||
|
|
||||||
|
# By default, only RPC connections from localhost are allowed. Specify
|
||||||
|
# as many rpcallowip= settings as you like to allow connections from
|
||||||
|
# other hosts (and you may use * as a wildcard character):
|
||||||
|
#rpcallowip=10.1.1.34
|
||||||
|
#rpcallowip=192.168.1.*
|
||||||
|
|
||||||
|
# Listen for RPC connections on this TCP port:
|
||||||
|
rpcport=8332
|
||||||
|
|
||||||
|
# You can use NovaCoin or novacoind to send commands to Bitcoin/bitcoindNovaCoin/novacoind
|
||||||
|
# running on another host using this option:
|
||||||
|
rpcconnect=127.0.0.1
|
||||||
|
|
||||||
|
# Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
|
||||||
|
# with NovaCoin -server or novacoind
|
||||||
|
#rpcssl=1
|
||||||
|
|
||||||
|
# OpenSSL settings used when rpcssl=1
|
||||||
|
rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
|
||||||
|
rpcsslcertificatechainfile=server.cert
|
||||||
|
rpcsslprivatekeyfile=server.pem
|
||||||
|
|
||||||
|
|
||||||
|
# Miscellaneous options
|
||||||
|
|
||||||
|
# Set gen=1 to attempt to generate novacoins
|
||||||
|
gen=0
|
||||||
|
|
||||||
|
# Pre-generate this many public/private key pairs, so wallet backups will be valid for
|
||||||
|
# both prior transactions and several dozen future transactions.
|
||||||
|
keypool=100
|
||||||
|
|
||||||
|
# Pay an optional transaction fee every time you send novacoins.
|
||||||
|
paytxfee=0.01
|
||||||
|
|
||||||
|
# Allow direct connections for the 'pay via IP address' feature.
|
||||||
|
#allowreceivebyip=1
|
||||||
|
|
||||||
|
|
||||||
|
# User interface options
|
||||||
|
|
||||||
|
# Start NovaCoin minimized
|
||||||
|
#min=1
|
||||||
|
|
||||||
|
# Minimize to the system tray
|
||||||
|
#minimizetotray=1
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Configuration file for git-buildpackage and friends
|
||||||
|
|
||||||
|
[DEFAULT]
|
||||||
|
pristine-tar = True
|
||||||
|
sign-tags = True
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
.TH NOVACOIN.CONF "8" "April 2013" "novacoin.conf 3.19"
|
||||||
|
.SH NAME
|
||||||
|
novacoin.conf \- novacoin configuration file
|
||||||
|
.SH SYNOPSIS
|
||||||
|
All command-line options (except for '-datadir' and '-conf') may be specified in a configuration file, and all configuration file options may also be specified on the command line. Command-line options override values set in the configuration file.
|
||||||
|
.TP
|
||||||
|
The configuration file is a list of 'setting=value' pairs, one per line, with optional comments starting with the '#' character.
|
||||||
|
.TP
|
||||||
|
The configuration file is not automatically created; you can create it using your favorite plain-text editor. By default, novacoind(1) will look for a file named novacoin.conf(5) in the novacoin data directory, but both the data directory and the configuration file path may be changed using the '-datadir' and '-conf' command-line arguments.
|
||||||
|
.SH LOCATION
|
||||||
|
novacoin.conf should be located in $HOME/.novacoin
|
||||||
|
.SH NETWORK-RELATED SETTINGS
|
||||||
|
.TP
|
||||||
|
.TP
|
||||||
|
\fBtestnet=\fR[\fI'1'\fR|\fI'0'\fR]
|
||||||
|
Enable or disable run on the test network instead of the real *novacoin* network.
|
||||||
|
.TP
|
||||||
|
\fBproxy=\fR\fI'127.0.0.1:9050'\fR
|
||||||
|
Connect via a socks4 proxy.
|
||||||
|
.TP
|
||||||
|
\fBaddnode=\fR\fI'10.0.0.2:8333'\fR
|
||||||
|
Use as many *addnode=* settings as you like to connect to specific peers.
|
||||||
|
.TP
|
||||||
|
\fBconnect=\fR\fI'10.0.0.1:8333'\fR
|
||||||
|
Use as many *connect=* settings as you like to connect ONLY to specific peers.
|
||||||
|
.TP
|
||||||
|
\fBnoirc=\fR[\fI'1'\fR|\fI'0'\fR]
|
||||||
|
Use or Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to find other peers.
|
||||||
|
.TP
|
||||||
|
\fRmaxconnections=\fR\fI'value'\fR
|
||||||
|
Maximum number of inbound+outbound connections.
|
||||||
|
.SH JSON-RPC OPTIONS
|
||||||
|
.TP
|
||||||
|
\fBserver=\fR[\fI'1'\fR|\fI'0'\fR]
|
||||||
|
Tells *novacoin* to accept or not accept JSON-RPC commands.
|
||||||
|
.TP
|
||||||
|
\fBrpcuser=\fR\fI'username'\fR
|
||||||
|
You must set *rpcuser* to secure the JSON-RPC api.
|
||||||
|
.TP
|
||||||
|
\fBrpcpassword=\fR\fI'password'\fR
|
||||||
|
You must set *rpcpassword* to secure the JSON-RPC api.
|
||||||
|
.TP
|
||||||
|
\fBrpctimeout=\fR\fI'30'\fR
|
||||||
|
How many seconds *novacoin* will wait for a complete RPC HTTP request, after the HTTP connection is established.
|
||||||
|
.TP
|
||||||
|
\fBrpcallowip=\fR\fI'192.168.1.*'\fR
|
||||||
|
By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character).
|
||||||
|
.TP
|
||||||
|
\fBrpcport=\fR\fI'8332'\fR
|
||||||
|
Listen for RPC connections on this TCP port.
|
||||||
|
.TP
|
||||||
|
\fBrpcconnect=\fR\fI'127.0.0.1'\fR
|
||||||
|
You can use *novacoin* or *novacoind(1)* to send commands to *novacoin*/*novacoind(1)* running on another host using this option.
|
||||||
|
.TP
|
||||||
|
\fBrpcssl=\fR\fI'1'\fR
|
||||||
|
Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate with *novacoin* '-server' or *novacoind(1)*. Example of OpenSSL settings used when *rpcssl*='1':
|
||||||
|
.TP
|
||||||
|
\fBrpcsslciphers=\fR\fI'TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH'\fR
|
||||||
|
.TP
|
||||||
|
\fBrpcsslcertificatechainfile=\fR\fI'server.cert'\fR
|
||||||
|
.TP
|
||||||
|
\fBrpcsslprivatekeyfile=\fR\fI'server.pem'\fR
|
||||||
|
.TP
|
||||||
|
.SH MISCELLANEOUS OPTIONS
|
||||||
|
.TP
|
||||||
|
\fBgen=\fR[\fI'0'\fR|\fI'1'\fR]
|
||||||
|
Enable or disable attempt to generate novacoins.
|
||||||
|
.TP
|
||||||
|
\fBkeypool=\fR\fI'100'\fR
|
||||||
|
Pre-generate this many public/private key pairs, so wallet backups will be valid for both prior transactions and several dozen future transactions.
|
||||||
|
.TP
|
||||||
|
\fBpaytxfee=\fR\fI'0.00'\fR
|
||||||
|
Pay an optional transaction fee every time you send novacoins. Transactions with fees are more likely than free transactions to be included in generated blocks, so may be validated sooner.
|
||||||
|
.TP
|
||||||
|
\fBallowreceivebyip=\fR\fI'1'\fR
|
||||||
|
Allow direct connections for the 'pay via IP address' feature.
|
||||||
|
.TP
|
||||||
|
.SH USER INTERFACE OPTIONS
|
||||||
|
.TP
|
||||||
|
\fBmin=\fR[\fI'0'\fR|\fI'1'\fR]
|
||||||
|
Enable or disable start novacoind minimized.
|
||||||
|
.TP
|
||||||
|
\fBminimizetotray=\fR[\fI'0'\fR|\fI'1'\fR]
|
||||||
|
Enable or disable minimize to the system tray.
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
novacoind(1)
|
||||||
|
.SH AUTHOR
|
||||||
|
This manual page was written by Micah Anderson <micah@debian.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation.
|
||||||
|
|
||||||
|
On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL.
|
||||||
|
|
||||||
@@ -0,0 +1,206 @@
|
|||||||
|
.TH NOVACOIND "7" "April 2013" "novacoind 3.19"
|
||||||
|
.SH NAME
|
||||||
|
novacoind \- peer-to-peer network based digital currency
|
||||||
|
.SH SYNOPSIS
|
||||||
|
novacoin [options] <command> [params]
|
||||||
|
.TP
|
||||||
|
novacoin [options] help <command> - Get help for a command
|
||||||
|
.SH DESCRIPTION
|
||||||
|
This manual page documents the novacoind program. Novacoin is a peer-to-peer digital currency. Peer-to-peer (P2P) means that there is no central authority to issue new money or keep track of transactions. Instead, these tasks are managed collectively by the nodes of the network. Advantages:
|
||||||
|
|
||||||
|
Novacoins can be sent easily through the Internet, without having to trust middlemen. Transactions are designed to be irreversible. Be safe from instability caused by fractional reserve banking and central banks. The limited inflation of the Novacoin system’s money supply is distributed evenly (by CPU power) throughout the network, not monopolized by banks.
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
\fB\-conf=\fR<file>
|
||||||
|
Specify configuration file (default: novacoin.conf)
|
||||||
|
.TP
|
||||||
|
\fB\-gen\fR
|
||||||
|
Generate coins
|
||||||
|
.TP
|
||||||
|
\fB\-gen\fR=\fI0\fR
|
||||||
|
Don't generate coins
|
||||||
|
.TP
|
||||||
|
\fB\-min\fR
|
||||||
|
Start minimized
|
||||||
|
.TP
|
||||||
|
\fB\-datadir=\fR<dir>
|
||||||
|
Specify data directory
|
||||||
|
.TP
|
||||||
|
\fB\-proxy=\fR<ip:port>
|
||||||
|
Connect through socks4 proxy
|
||||||
|
.TP
|
||||||
|
\fB\-addnode=\fR<ip>
|
||||||
|
Add a node to connect to
|
||||||
|
.TP
|
||||||
|
\fB\-connect=\fR<ip>
|
||||||
|
Connect only to the specified node
|
||||||
|
.TP
|
||||||
|
\fB\-paytxfee=\fR<amt>
|
||||||
|
Fee per KB to add to transactions you send
|
||||||
|
.TP
|
||||||
|
\fB\-server\fR
|
||||||
|
Accept command line and JSON\-RPC commands
|
||||||
|
.TP
|
||||||
|
\fB\-daemon\fR
|
||||||
|
Run in the background as a daemon and accept commands
|
||||||
|
.TP
|
||||||
|
\fB\-testnet\fR
|
||||||
|
Use the test network
|
||||||
|
.TP
|
||||||
|
\fB\-rpcuser=\fR<user>
|
||||||
|
Username for JSON\-RPC connections
|
||||||
|
.TP
|
||||||
|
\fB\-rpcpassword=\fR<pw>
|
||||||
|
Password for JSON\-RPC connections
|
||||||
|
.TP
|
||||||
|
\fB\-rpcport=\fR<port>
|
||||||
|
Listen for JSON\-RPC connections on <port>
|
||||||
|
.TP
|
||||||
|
\fB\-rpcallowip=\fR<ip>
|
||||||
|
Allow JSON\-RPC connections from specified IP address
|
||||||
|
.TP
|
||||||
|
\fB\-rpcconnect=\fR<ip>
|
||||||
|
Send commands to node running on <ip>
|
||||||
|
.PP
|
||||||
|
SSL options: (see the Bitcoin Wiki for SSL setup instructions)
|
||||||
|
.TP
|
||||||
|
\fB\-rpcssl\fR=\fI1\fR
|
||||||
|
Use OpenSSL (https) for JSON\-RPC connections
|
||||||
|
.TP
|
||||||
|
\fB\-rpcsslcertificatchainfile=\fR<file.cert>
|
||||||
|
Server certificate file (default: server.cert)
|
||||||
|
.TP
|
||||||
|
\fB\-rpcsslprivatekeyfile=\fR<file.pem>
|
||||||
|
Server private key (default: server.pem)
|
||||||
|
.TP
|
||||||
|
\fB\-rpcsslciphers=\fR<ciphers>
|
||||||
|
Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)
|
||||||
|
.TP
|
||||||
|
\-?
|
||||||
|
This help message
|
||||||
|
.SH COMMANDS
|
||||||
|
.TP
|
||||||
|
\fBbackupwallet 'destination'\fR
|
||||||
|
Safely copies *wallet.dat* to 'destination', which can be a directory or a path with filename.
|
||||||
|
.TP
|
||||||
|
\fBgetaccount 'novacoinaddress'\fR
|
||||||
|
Returns the account associated with the given address.
|
||||||
|
.TP
|
||||||
|
\fBsetaccount 'novacoinaddress' ['account']\fR
|
||||||
|
Sets the ['account'] associated with the given address. ['account'] may be omitted to remove an address from ['account'].
|
||||||
|
.TP
|
||||||
|
\fBgetaccountaddress 'account'\fR
|
||||||
|
Returns a new novacoin address for 'account'.
|
||||||
|
.TP
|
||||||
|
\fBgetaddressesbyaccount 'account'\fR
|
||||||
|
Returns the list of addresses associated with the given 'account'.
|
||||||
|
.TP
|
||||||
|
\fBgetbalance 'account'\fR
|
||||||
|
Returns the server's available balance, or the balance for 'account'.
|
||||||
|
.TP
|
||||||
|
\fBgetblockcount\fR
|
||||||
|
Returns the number of blocks in the longest block chain.
|
||||||
|
.TP
|
||||||
|
\fBgetblocknumber\fR
|
||||||
|
Returns the block number of the latest block in the longest block chain.
|
||||||
|
.TP
|
||||||
|
\fBgetconnectioncount\fR
|
||||||
|
Returns the number of connections to other nodes.
|
||||||
|
.TP
|
||||||
|
\fBgetdifficulty\fR
|
||||||
|
Returns the proof-of-work difficulty as a multiple of the minimum difficulty.
|
||||||
|
.TP
|
||||||
|
\fBgetgenerate\fR
|
||||||
|
Returns boolean true if server is trying to generate novacoins, false otherwise.
|
||||||
|
.TP
|
||||||
|
\fBsetgenerate 'generate' ['genproclimit']\fR
|
||||||
|
Generation is limited to ['genproclimit'] processors, -1 is unlimited.
|
||||||
|
.TP
|
||||||
|
\fBgethashespersec\fR
|
||||||
|
Returns a recent hashes per second performance measurement while generating.
|
||||||
|
.TP
|
||||||
|
\fBgetinfo\fR
|
||||||
|
Returns an object containing server information.
|
||||||
|
.TP
|
||||||
|
\fBgetnewaddress 'account'\fR
|
||||||
|
Returns a new novacoin address for receiving payments. If 'account' is specified (recommended), it is added to the address book so payments received with the address will be credited to 'account'.
|
||||||
|
.TP
|
||||||
|
\fBgetreceivedbyaccount 'account' ['minconf=1']\fR
|
||||||
|
Returns the total amount received by addresses associated with 'account' in transactions with at least ['minconf'] confirmations.
|
||||||
|
.TP
|
||||||
|
\fBgetreceivedbyaddress 'novacoinaddress' ['minconf=1']\fR
|
||||||
|
Returns the total amount received by 'novacoinaddress' in transactions with at least ['minconf'] confirmations.
|
||||||
|
.TP
|
||||||
|
\fBgettransaction 'txid'\fR
|
||||||
|
Returns information about a specific transaction, given hexadecimal transaction ID.
|
||||||
|
.TP
|
||||||
|
\fBgetwork 'data'\fR
|
||||||
|
If 'data' is specified, tries to solve the block and returns true if it was successful. If 'data' is not specified, returns formatted hash 'data' to work on:
|
||||||
|
|
||||||
|
"midstate" : precomputed hash state after hashing the first half of the data.
|
||||||
|
"data" : block data.
|
||||||
|
"hash1" : formatted hash buffer for second hash.
|
||||||
|
"target" : little endian hash target.
|
||||||
|
.TP
|
||||||
|
\fBhelp 'command'\fR
|
||||||
|
List commands, or get help for a command.
|
||||||
|
.TP
|
||||||
|
\fBlistaccounts ['minconf=1']\fR
|
||||||
|
List accounts and their current balances.
|
||||||
|
.TP
|
||||||
|
\fBlistreceivedbyaccount ['minconf=1'] ['includeempty=false']\fR
|
||||||
|
['minconf'] is the minimum number of confirmations before payments are included. ['includeempty'] whether to include addresses that haven't received any payments. Returns an array of objects containing:
|
||||||
|
|
||||||
|
"account" : the account of the receiving address.
|
||||||
|
"amount" : total amount received by the address.
|
||||||
|
"confirmations" : number of confirmations of the most recent transaction included.
|
||||||
|
.TP
|
||||||
|
\fBlistreceivedbyaddress ['minconf=1'] ['includeempty=false']\fR
|
||||||
|
['minconf'] is the minimum number of confirmations before payments are included. ['includeempty'] whether to include addresses that haven't received any payments. Returns an array of objects containing:
|
||||||
|
|
||||||
|
"address" : receiving address.
|
||||||
|
"account" : the account of the receiving address.
|
||||||
|
"amount" : total amount received by the address.
|
||||||
|
"confirmations" : number of confirmations of the most recent transaction included.
|
||||||
|
.TP
|
||||||
|
\fBlisttransactions 'account' ['count=10']\fR
|
||||||
|
Returns a list of the last ['count'] transactions for 'account' - for all accounts if 'account' is not specified or is "*". Each entry in the list may contain:
|
||||||
|
|
||||||
|
"category" : will be generate, send, receive, or move.
|
||||||
|
"amount" : amount of transaction.
|
||||||
|
"fee" : Fee (if any) paid (only for send transactions).
|
||||||
|
"confirmations" : number of confirmations (only for generate/send/receive).
|
||||||
|
"txid" : transaction ID (only for generate/send/receive).
|
||||||
|
"otheraccount" : account funds were moved to or from (only for move).
|
||||||
|
"message" : message associated with transaction (only for send).
|
||||||
|
"to" : message-to associated with transaction (only for send).
|
||||||
|
.TP
|
||||||
|
\fBmove <'fromaccount'> <'toaccount'> <'amount'> ['minconf=1'] ['comment']\fR
|
||||||
|
Moves funds between accounts.
|
||||||
|
.TP
|
||||||
|
\fBsendfrom* <'account'> <'novacoinaddress'> <'amount'> ['minconf=1'] ['comment'] ['comment-to']\fR
|
||||||
|
Sends amount from account's balance to 'novacoinaddress'. This method will fail if there is less than amount novacoins with ['minconf'] confirmations in the account's balance (unless account is the empty-string-named default account; it behaves like the *sendtoaddress* method). Returns transaction ID on success.
|
||||||
|
.TP
|
||||||
|
\fBsendtoaddress 'novacoinaddress' 'amount' ['comment'] ['comment-to']\fR
|
||||||
|
Sends amount from the server's available balance to 'novacoinaddress'. amount is a real and is rounded to the nearest 0.01. Returns transaction id on success.
|
||||||
|
.TP
|
||||||
|
\fBstop\fR
|
||||||
|
Stops the novacoin server.
|
||||||
|
.TP
|
||||||
|
\fBvalidateaddress 'novacoinaddress'\fR
|
||||||
|
Checks that 'novacoinaddress' looks like a proper novacoin address. Returns an object containing:
|
||||||
|
|
||||||
|
"isvalid" : true or false.
|
||||||
|
"ismine" : true if the address is in the server's wallet.
|
||||||
|
"address" : novacoinaddress.
|
||||||
|
|
||||||
|
*note: ismine and address are only returned if the address is valid.
|
||||||
|
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
novacoin.conf(5)
|
||||||
|
.SH AUTHOR
|
||||||
|
This manual page was written by Micah Anderson <micah@debian.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation.
|
||||||
|
|
||||||
|
On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL.
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=NovaCoin
|
||||||
|
Comment=NovaCoin P2P Cryptocurrency
|
||||||
|
Comment[fr]=NovaCoin, monnaie virtuelle cryptographique pair à pair
|
||||||
|
Comment[tr]=NovaCoin, eşten eşe kriptografik sanal para birimi
|
||||||
|
Exec=/usr/bin/novacoin-qt
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Icon=/usr/share/pixmaps/bitcoin80.xpm
|
||||||
|
MimeType=x-scheme-handler/novacoin;
|
||||||
|
Categories=Office;
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
novacoin-qt usr/bin
|
||||||
|
share/pixmaps/bitcoin32.xpm usr/share/pixmaps
|
||||||
|
share/pixmaps/bitcoin80.xpm usr/share/pixmaps
|
||||||
|
debian/novacoin-qt.desktop usr/share/applications
|
||||||
|
debian/novacoin-qt.protocol usr/share/kde4/services/
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# Linked code is Expat - only Debian packaging is GPL-2+
|
||||||
|
novacoin-qt: possible-gpl-code-linked-with-openssl
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
[Protocol]
|
||||||
|
exec=novacoin-qt '%u'
|
||||||
|
protocol=novacoin
|
||||||
|
input=none
|
||||||
|
output=none
|
||||||
|
helper=true
|
||||||
|
listing=
|
||||||
|
reading=false
|
||||||
|
writing=false
|
||||||
|
makedir=false
|
||||||
|
deleting=false
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
debian/examples/novacoin.conf
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
debian/bin/novacoind usr/bin
|
||||||
|
src/novacoind usr/lib/novacoin
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# Linked code is Expat - only Debian packaging is GPL-2+
|
||||||
|
novacoind: possible-gpl-code-linked-with-openssl
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
debian/manpages/novacoind.1
|
||||||
|
debian/manpages/novacoin.conf.5
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
0xxx: Grabbed from upstream development.
|
||||||
|
1xxx: Possibly relevant for upstream adoption.
|
||||||
|
2xxx: Only relevant for official Debian release.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- mode: makefile; coding: utf-8 -*-
|
||||||
|
|
||||||
|
#DEB_MAKE_CHECK_TARGET = test_bitcoin
|
||||||
|
#build/bitcoind::
|
||||||
|
# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_bitcoin)
|
||||||
|
|
||||||
|
DEB_INSTALL_EXAMPLES_novacoind += debian/examples/*
|
||||||
|
DEB_INSTALL_MANPAGES_novacoind += debian/manpages/*
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh --with bash-completion $@
|
||||||
|
|
||||||
|
override_dh_auto_build:
|
||||||
|
cd src; $(MAKE) -f makefile.unix novacoind
|
||||||
|
$(MAKE)
|
||||||
|
|
||||||
|
override_dh_auto_clean:
|
||||||
|
if [ -f Makefile ]; then $(MAKE) clean; else rm -rf build/; rm -f novacoin-qt; fi
|
||||||
|
cd src; $(MAKE) -f makefile.unix clean
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
qmake novacoin-qt.pro USE_QRCODE=1
|
||||||
|
|
||||||
|
override_dh_auto_test:
|
||||||
|
cd src; $(MAKE) -f makefile.unix test_novacoin
|
||||||
|
src/test_novacoin
|
||||||
|
|
||||||
|
# Ensure wrapper is set executable
|
||||||
|
binary-post-install/novacoind:
|
||||||
|
chmod +x $(cdbs_curdestdir)usr/bin/novacoind
|
||||||
|
binary-post-install/novacoin-qt:
|
||||||
|
chmod +x $(cdbs_curdestdir)usr/bin/novacoin-qt
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# Run the "uscan" command to check for upstream updates and more.
|
||||||
|
version=4
|
||||||
|
opts=uversionmangle=s/(\d)(alpha|beta|rc)/$1~$2/,dversionmangle=s/~dfsg\d*// \
|
||||||
|
http://githubredir.debian.net/github/CryptoManiac/novacoin v(.*).tar.gz
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
Gavin's notes on getting gitian builds up and running:
|
||||||
|
|
||||||
|
You need the right hardware: you need a 64-bit-capable CPU with hardware virtualization support (Intel VT-x or AMD-V). Not all modern CPUs support hardware virtualization.
|
||||||
|
|
||||||
|
You probably need to enable hardware virtualization in your machine's BIOS.
|
||||||
|
|
||||||
|
You need to be running a recent version of 64-bit-Ubuntu, and you need to install several prerequisites:
|
||||||
|
sudo apt-get install apache2 git apt-cacher-ng python-vm-builder qemu-kvm
|
||||||
|
|
||||||
|
Sanity checks:
|
||||||
|
sudo service apt-cacher-ng status # Should return apt-cacher-ng is running
|
||||||
|
ls -l /dev/kvm # Should show a /dev/kvm device
|
||||||
|
|
||||||
|
Once you've got the right hardware and software:
|
||||||
|
|
||||||
|
git clone git://github.com/bitcoin/bitcoin.git
|
||||||
|
git clone git://github.com/devrandom/gitian-builder.git
|
||||||
|
mkdir gitian-builder/inputs
|
||||||
|
wget 'http://miniupnp.tuxfamily.org/files/download.php?file=miniupnpc-1.6.tar.gz' -O gitian-builder/inputs/miniupnpc-1.6.tar.gz
|
||||||
|
|
||||||
|
cd gitian-builder
|
||||||
|
bin/make-base-vm --arch i386
|
||||||
|
bin/make-base-vm --arch amd64
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
# To build
|
||||||
|
cd bitcoin
|
||||||
|
git pull
|
||||||
|
cd ../gitian-builder
|
||||||
|
git pull
|
||||||
|
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian.yml
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: "boost"
|
||||||
|
suites:
|
||||||
|
- "lucid"
|
||||||
|
architectures:
|
||||||
|
- "i386"
|
||||||
|
packages:
|
||||||
|
- "mingw32"
|
||||||
|
- "faketime"
|
||||||
|
- "zip"
|
||||||
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
|
remotes: []
|
||||||
|
files:
|
||||||
|
- "boost_1_47_0.tar.bz2"
|
||||||
|
script: |
|
||||||
|
TMPDIR="$HOME/tmpdir"
|
||||||
|
mkdir -p $TMPDIR/bin/$GBUILD_BITS $TMPDIR/include
|
||||||
|
tar xjf boost_1_47_0.tar.bz2
|
||||||
|
cd boost_1_47_0
|
||||||
|
echo "using gcc : 4.4 : i586-mingw32msvc-g++
|
||||||
|
:
|
||||||
|
<rc>i586-mingw32msvc-windres
|
||||||
|
<archiver>i586-mingw32msvc-ar
|
||||||
|
<cxxflags>-frandom-seed=boost1
|
||||||
|
;" > user-config.jam
|
||||||
|
./bootstrap.sh --without-icu
|
||||||
|
./bjam toolset=gcc target-os=windows threadapi=win32 threading=multi variant=release link=static --user-config=user-config.jam --without-mpi --without-python -sNO_BZIP2=1 -sNO_ZLIB=1 --layout=tagged --build-type=complete $MAKEOPTS stage
|
||||||
|
for lib in chrono date_time exception filesystem graph iostreams math_c99f math_c99l math_c99 math_tr1f math_tr1l math_tr1 prg_exec_monitor program_options random regex serialization signals system test_exec_monitor thread_win32 unit_test_framework wave wserialization; do
|
||||||
|
mkdir $lib
|
||||||
|
(cd $lib ; ar xf ../stage/lib/libboost_${lib}-mt-s.a)
|
||||||
|
mv $lib $TMPDIR/bin/$GBUILD_BITS
|
||||||
|
done
|
||||||
|
cp -a boost $TMPDIR/include
|
||||||
|
cd $TMPDIR
|
||||||
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
export FAKETIME=$REFERENCE_DATETIME
|
||||||
|
zip -r boost-win32-1.47.0-gitian.zip *
|
||||||
|
cp boost-win32-1.47.0-gitian.zip $OUTDIR
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
---
|
||||||
|
name: "bitcoin-deps"
|
||||||
|
suites:
|
||||||
|
- "lucid"
|
||||||
|
architectures:
|
||||||
|
- "i386"
|
||||||
|
packages:
|
||||||
|
- "mingw32"
|
||||||
|
- "git-core"
|
||||||
|
- "zip"
|
||||||
|
- "faketime"
|
||||||
|
- "wine"
|
||||||
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
|
remotes: []
|
||||||
|
files:
|
||||||
|
- "openssl-1.0.1b.tar.gz"
|
||||||
|
- "db-4.8.30.NC.tar.gz"
|
||||||
|
- "miniupnpc-1.6.tar.gz"
|
||||||
|
- "zlib-1.2.7.tar.gz"
|
||||||
|
- "libpng-1.5.12.tar.gz"
|
||||||
|
- "qrencode-3.2.0.tar.bz2"
|
||||||
|
script: |
|
||||||
|
#
|
||||||
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
export FAKETIME=$REFERENCE_DATETIME
|
||||||
|
export TZ=UTC
|
||||||
|
#
|
||||||
|
tar xzf openssl-1.0.1b.tar.gz
|
||||||
|
cd openssl-1.0.1b
|
||||||
|
./Configure --cross-compile-prefix=i586-mingw32msvc- mingw
|
||||||
|
make
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
tar xzf db-4.8.30.NC.tar.gz
|
||||||
|
cd db-4.8.30.NC/build_unix
|
||||||
|
../dist/configure --enable-mingw --enable-cxx --host=i586-mingw32msvc CFLAGS="-I/usr/i586-mingw32msvc/include"
|
||||||
|
make $MAKEOPTS
|
||||||
|
cd ../..
|
||||||
|
#
|
||||||
|
tar xzf miniupnpc-1.6.tar.gz
|
||||||
|
cd miniupnpc-1.6
|
||||||
|
sed 's/dllwrap -k --driver-name gcc/$(DLLWRAP) -k --driver-name $(CC)/' -i Makefile.mingw
|
||||||
|
sed 's|wingenminiupnpcstrings $< $@|./wingenminiupnpcstrings $< $@|' -i Makefile.mingw
|
||||||
|
make -f Makefile.mingw DLLWRAP=i586-mingw32msvc-dllwrap CC=i586-mingw32msvc-gcc AR=i586-mingw32msvc-ar
|
||||||
|
cd ..
|
||||||
|
mv miniupnpc-1.6 miniupnpc
|
||||||
|
#
|
||||||
|
tar xzf zlib-1.2.7.tar.gz
|
||||||
|
cd zlib-1.2.7
|
||||||
|
make -f win32/Makefile.gcc PREFIX=i586-mingw32msvc- $MAKEOPTS
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
tar xzf libpng-1.5.12.tar.gz
|
||||||
|
cd libpng-1.5.12
|
||||||
|
./configure -disable-shared CC=i586-mingw32msvc-cc AR=i586-mingw32msvc-ar STRIP=i586-mingw32msvc-strip RANLIB=i586-mingw32msvc-ranlib OBJDUMP=i586-mingw32msvc-objdump LD=i586-mingw32msvc-ld LDFLAGS="-L../zlib-1.2.7/" CFLAGS="-I../zlib-1.2.7/"
|
||||||
|
make $MAKEOPTS
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
tar xjf qrencode-3.2.0.tar.bz2
|
||||||
|
cd qrencode-3.2.0
|
||||||
|
./configure CC=i586-mingw32msvc-cc AR=i586-mingw32msvc-ar STRIP=i586-mingw32msvc-strip RANLIB=i586-mingw32msvc-ranlib OBJDUMP=i586-mingw32msvc-objdump LD=i586-mingw32msvc-ld png_LIBS="../libpng-1.5.12/.libs/libpng15.a ../zlib-1.2.7/libz.a" png_CFLAGS="-I../libpng-1.5.12"
|
||||||
|
make $MAKEOPTS
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
zip -r $OUTDIR/ppcoin-deps-0.0.1.zip \
|
||||||
|
$(ls qrencode-*/{qrencode.h,.libs/libqrencode.{,l}a} | sort) \
|
||||||
|
$(ls db-*/build_unix/{libdb_cxx.a,db.h,db_cxx.h,libdb.a,.libs/libdb_cxx-?.?.a} | sort) \
|
||||||
|
$(find openssl-* -name '*.a' -o -name '*.h' | sort) \
|
||||||
|
$(find miniupnpc -name '*.h' -o -name 'libminiupnpc.a' | sort)
|
||||||
|
# Kill wine processes as gitian won't figure out we are done otherwise
|
||||||
|
killall wineserver services.exe explorer.exe winedevice.exe
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
---
|
||||||
|
name: "ppcoin"
|
||||||
|
suites:
|
||||||
|
- "lucid"
|
||||||
|
architectures:
|
||||||
|
- "i386"
|
||||||
|
packages:
|
||||||
|
- "mingw32"
|
||||||
|
- "git-core"
|
||||||
|
- "unzip"
|
||||||
|
- "nsis"
|
||||||
|
- "faketime"
|
||||||
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
|
remotes:
|
||||||
|
- "url": "https://github.com/ppcoin/ppcoin.git"
|
||||||
|
"dir": "ppcoin"
|
||||||
|
files:
|
||||||
|
- "qt-win32-4.7.4-gitian.zip"
|
||||||
|
- "boost-win32-1.47.0-gitian.zip"
|
||||||
|
- "ppcoin-deps-0.0.1.zip"
|
||||||
|
script: |
|
||||||
|
#
|
||||||
|
mkdir $HOME/qt
|
||||||
|
cd $HOME/qt
|
||||||
|
unzip ../build/qt-win32-4.7.4-gitian.zip
|
||||||
|
cd $HOME/build/
|
||||||
|
export PATH=$PATH:$HOME/qt/bin/
|
||||||
|
#
|
||||||
|
mkdir boost_1_47_0
|
||||||
|
cd boost_1_47_0
|
||||||
|
mkdir -p stage/lib
|
||||||
|
unzip ../boost-win32-1.47.0-gitian.zip
|
||||||
|
cd bin/$GBUILD_BITS
|
||||||
|
for lib in *; do
|
||||||
|
i586-mingw32msvc-ar rc ../../stage/lib/libboost_${lib}-mt-s.a $lib/*.o
|
||||||
|
i586-mingw32msvc-ranlib ../../stage/lib/libboost_${lib}-mt-s.a
|
||||||
|
done
|
||||||
|
cd ../..
|
||||||
|
mv include/boost .
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
unzip ppcoin-deps-0.0.1.zip
|
||||||
|
#
|
||||||
|
find -type f | xargs touch --date="$REFERENCE_DATETIME"
|
||||||
|
#
|
||||||
|
cd ppcoin
|
||||||
|
mkdir -p $OUTDIR/src
|
||||||
|
git archive HEAD | tar -x -C $OUTDIR/src
|
||||||
|
cp $OUTDIR/src/doc/README_windows.txt $OUTDIR/readme.txt
|
||||||
|
cp $OUTDIR/src/COPYING $OUTDIR/license.txt
|
||||||
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
export FAKETIME=$REFERENCE_DATETIME
|
||||||
|
export TZ=UTC
|
||||||
|
$HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.1b OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.1b/include QRENCODE_LIB_PATH=$HOME/build/qrencode-3.2.0/.libs QRENCODE_INCLUDE_PATH=$HOME/build/qrencode-3.2.0 USE_QRCODE=1 INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=ppcoin QMAKE_LFLAGS=-frandom-seed=ppcoin USE_BUILD_INFO=1
|
||||||
|
make $MAKEOPTS
|
||||||
|
cp release/ppcoin-qt.exe $OUTDIR/
|
||||||
|
#
|
||||||
|
cd src
|
||||||
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
export FAKETIME=$REFERENCE_DATETIME
|
||||||
|
export TZ=UTC
|
||||||
|
make -f makefile.linux-mingw $MAKEOPTS DEPSDIR=$HOME/build ppcoind.exe USE_UPNP=1 DEBUGFLAGS="-frandom-seed=ppcoin"
|
||||||
|
i586-mingw32msvc-strip ppcoind.exe
|
||||||
|
mkdir $OUTDIR/daemon
|
||||||
|
cp ppcoind.exe $OUTDIR/daemon
|
||||||
|
cd ..
|
||||||
|
mkdir nsis
|
||||||
|
git archive HEAD | tar -x -C nsis
|
||||||
|
cd nsis/src
|
||||||
|
mkdir ../release
|
||||||
|
cp ../../release/* ../release/
|
||||||
|
cp ../../src/*.exe .
|
||||||
|
makensis ../share/setup.nsi
|
||||||
|
cp ../share/ppcoin-*-win32-setup.exe $OUTDIR/
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
name: "ppcoin"
|
||||||
|
suites:
|
||||||
|
- "lucid"
|
||||||
|
architectures:
|
||||||
|
- "i386"
|
||||||
|
- "amd64"
|
||||||
|
packages:
|
||||||
|
- "libdb4.8++-dev"
|
||||||
|
- "qt4-qmake"
|
||||||
|
- "libqt4-dev"
|
||||||
|
- "libboost-system-dev"
|
||||||
|
- "libboost-filesystem-dev"
|
||||||
|
- "libboost-program-options-dev"
|
||||||
|
- "libboost-thread-dev"
|
||||||
|
- "libssl-dev"
|
||||||
|
- "git-core"
|
||||||
|
- "unzip"
|
||||||
|
- "pkg-config"
|
||||||
|
- "libpng12-dev"
|
||||||
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
|
remotes:
|
||||||
|
- "url": "https://github.com/ppcoin/ppcoin.git"
|
||||||
|
"dir": "ppcoin"
|
||||||
|
files:
|
||||||
|
- "miniupnpc-1.6.tar.gz"
|
||||||
|
- "qrencode-3.2.0.tar.bz2"
|
||||||
|
script: |
|
||||||
|
INSTDIR="$HOME/install"
|
||||||
|
export LIBRARY_PATH="$INSTDIR/lib"
|
||||||
|
#
|
||||||
|
tar xzf miniupnpc-1.6.tar.gz
|
||||||
|
cd miniupnpc-1.6
|
||||||
|
INSTALLPREFIX=$INSTDIR make $MAKEOPTS install
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
tar xjf qrencode-3.2.0.tar.bz2
|
||||||
|
cd qrencode-3.2.0
|
||||||
|
./configure --prefix=$INSTDIR --enable-static --disable-shared
|
||||||
|
make $MAKEOPTS install
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
|
cd ppcoin
|
||||||
|
mkdir -p $OUTDIR/src
|
||||||
|
git archive HEAD | tar -x -C $OUTDIR/src
|
||||||
|
cp $OUTDIR/src/doc/README $OUTDIR
|
||||||
|
cp $OUTDIR/src/COPYING $OUTDIR
|
||||||
|
cd src
|
||||||
|
make -f makefile.unix STATIC=1 OPENSSL_INCLUDE_PATH="$INSTDIR/include" OPENSSL_LIB_PATH="$INSTDIR/lib" $MAKEOPTS ppcoind USE_UPNP=1 DEBUGFLAGS=
|
||||||
|
mkdir -p $OUTDIR/bin/$GBUILD_BITS
|
||||||
|
install -s ppcoind $OUTDIR/bin/$GBUILD_BITS
|
||||||
|
#
|
||||||
|
cd ..
|
||||||
|
qmake INCLUDEPATH="$INSTDIR/include" LIBS="-L$INSTDIR/lib" RELEASE=1 USE_QRCODE=1
|
||||||
|
make $MAKEOPTS
|
||||||
|
install ppcoin-qt $OUTDIR/bin/$GBUILD_BITS
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
---
|
||||||
|
name: "qt"
|
||||||
|
suites:
|
||||||
|
- "lucid"
|
||||||
|
architectures:
|
||||||
|
- "i386"
|
||||||
|
packages:
|
||||||
|
- "mingw32"
|
||||||
|
- "zip"
|
||||||
|
- "faketime"
|
||||||
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
|
remotes: []
|
||||||
|
files:
|
||||||
|
- "qt-everywhere-opensource-src-4.7.4.tar.gz"
|
||||||
|
script: |
|
||||||
|
INSTDIR="$HOME/qt/"
|
||||||
|
mkdir $INSTDIR
|
||||||
|
SRCDIR="$INSTDIR/src/"
|
||||||
|
mkdir $SRCDIR
|
||||||
|
#
|
||||||
|
tar xzf qt-everywhere-opensource-src-4.7.4.tar.gz
|
||||||
|
cd qt-everywhere-opensource-src-4.7.4
|
||||||
|
sed 's/$TODAY/2011-01-30/' -i configure
|
||||||
|
sed 's/i686-pc-mingw32-/i586-mingw32msvc-/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed --posix 's|QMAKE_CFLAGS\t\t= -pipe|QMAKE_CFLAGS\t\t= -pipe -isystem /usr/i586-mingw32msvc/include/ -frandom-seed=qtbuild|' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed 's/QMAKE_CXXFLAGS_EXCEPTIONS_ON = -fexceptions -mthreads/QMAKE_CXXFLAGS_EXCEPTIONS_ON = -fexceptions/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed 's/QMAKE_LFLAGS_EXCEPTIONS_ON = -mthreads/QMAKE_LFLAGS_EXCEPTIONS_ON = -lmingwthrd/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed --posix 's/QMAKE_MOC\t\t= i586-mingw32msvc-moc/QMAKE_MOC\t\t= moc/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed --posix 's/QMAKE_RCC\t\t= i586-mingw32msvc-rcc/QMAKE_RCC\t\t= rcc/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
sed --posix 's/QMAKE_UIC\t\t= i586-mingw32msvc-uic/QMAKE_UIC\t\t= uic/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
# ar adds timestamps to every object file included in the static library
|
||||||
|
# providing -D as ar argument is supposed to solve it, but doesn't work as qmake strips off the arguments and adds -M to pass a script...
|
||||||
|
# which somehow cannot be combined with other flags.
|
||||||
|
# use faketime only for ar, as it confuses make/qmake into hanging sometimes
|
||||||
|
sed --posix "s|QMAKE_LIB\t\t= i586-mingw32msvc-ar -ru|QMAKE_LIB\t\t= $HOME/ar -Dr|" -i mkspecs/unsupported/win32-g++-cross/qmake.conf
|
||||||
|
echo '#!/bin/bash' > $HOME/ar
|
||||||
|
echo 'export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1' >> $HOME/ar
|
||||||
|
echo 'i586-mingw32msvc-ar "$@"' >> $HOME/ar
|
||||||
|
chmod +x $HOME/ar
|
||||||
|
#export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
export FAKETIME=$REFERENCE_DATETIME
|
||||||
|
export TZ=UTC
|
||||||
|
./configure -prefix $INSTDIR -confirm-license -release -opensource -static -no-qt3support -xplatform unsupported/win32-g++-cross -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-declarative -no-script -no-scripttools -no-javascript-jit -no-webkit -no-svg -no-xmlpatterns -no-sql-sqlite -no-nis -no-cups -no-iconv -no-dbus -no-gif -no-libtiff -opengl no -nomake examples -nomake demos -nomake docs
|
||||||
|
find . -name *.prl | xargs -l sed 's|/\.||' -i
|
||||||
|
find . -name *.prl | xargs -l sed 's|/$||' -i
|
||||||
|
make $MAKEOPTS install
|
||||||
|
cp -a bin $SRCDIR/
|
||||||
|
cd $INSTDIR
|
||||||
|
find . -name *.prl | xargs -l sed 's|/$||' -i
|
||||||
|
#sed 's|QMAKE_PRL_LIBS.*|QMAKE_PRL_LIBS = -lQtDeclarative -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtGui -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lwinspool -lmsimg32 -lQtNetwork -lQtCore -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32|' -i imports/Qt/labs/particles/qmlparticlesplugin.prl
|
||||||
|
|
||||||
|
# as zip stores file timestamps, use faketime to intercept stat calls to set dates for all files to reference date
|
||||||
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
|
||||||
|
zip -r $OUTDIR/qt-win32-4.7.4-gitian.zip *
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
Version: SKS 1.1.0
|
||||||
|
|
||||||
|
mQENBE5UtMEBCADOUz2i9l/D8xYINCmfUDnxi+DXvX5LmZ39ZdvsoE+ugO0SRRGdIHEFO2is
|
||||||
|
0xezX50wXu9aneb+tEqM0BuiLo6VxaXpxrkxHpr6c4jf37SkE/H0qsi/txEUp7337y3+4HMG
|
||||||
|
lUjiuh802I72p1qusjsKBnmnnR0rwNouTcoDmGUDh7jpKCtzFv+2TR2dRthJn7vmmjq3+bG6
|
||||||
|
PYfqoFY1yHrAGT1lrDBULZsQ/NBLI2+J4oo2LYv3GCq8GNnzrovqvTvui50VSROhLrOe58o2
|
||||||
|
shE+sjQShAy5wYkPt1R1fQnpfx+5vf+TPnkxVwRb3h5GhCp0YL8XC/BXsd5vM4KlVH2rABEB
|
||||||
|
AAG0K1dsYWRpbWlyIEouIHZhbiBkZXIgTGFhbiA8bGFhbndqQGdtYWlsLmNvbT6JATgEEwEC
|
||||||
|
ACIFAk5UtMECGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEHSBCwEjRsmmy6YIAK09
|
||||||
|
buNXyYQrJBsX16sXxEhx5QPKyF3uHJDFJv66SdnpvIkNoznsaPiRJkbTANop93FZmaGa6wVn
|
||||||
|
zGDiz7jPA8Dpxx5aAYPhIT+zPJAdXWM3wJ/Gio9besRNzniai8Lwi5MZ9R/5yFGBobm6/AcN
|
||||||
|
4sUoqA3NSV2U3I29R0Vwlzo8GVtmyi9ENSi6Oo7AcXNTRt69cxW4nAHkB+amwwDJlcAb31ex
|
||||||
|
bogYXPhScwqQZixRr+JBkKxBjkTXXnQypT4KI5SegYwQVYfyiZmDP7UHKe/u6pSKKbVphLg8
|
||||||
|
xLB5spcXse8/a2+onrbNlw6y8TXiJ++Z54PE7zztWTXf2huakeG5AQ0ETlS0wQEIAMNO3OkP
|
||||||
|
xoPRKWzBLcI7JRITAW+HNaLTq3uN2+4WxA57DEjbL9EDoAv+7wTkDAL40f0T+xiu6GJcLFjw
|
||||||
|
GJZu/tYu7+mErHjrdo+K4suCQt7w5EXCBvOLjhW4tyYMzNx8hP+oqzOW9iEC+6VV91+DYeqt
|
||||||
|
EkJuyVXOI4vzBlTw8uGow8aMMsCq8XVvKUZFTPsjGl197Q5B3A+ZOFCR8xqiqdPjuz6MglVV
|
||||||
|
oFdDNu3EZn8zkGsQlovXoE9ndVeVzx/XMNmsxFaMYsReUs253RIf1FEfgExID0fg2OnyLCjS
|
||||||
|
2iFW1RgajS+/saIkKl+N1iuMzJA7wMAM0plhRueOG0MtZSsAEQEAAYkBHwQYAQIACQUCTlS0
|
||||||
|
wQIbDAAKCRB0gQsBI0bJpmsDB/4waenn2CvSHXyomykfpwf5lMte1V5LvH3z5R2LY+1NopRv
|
||||||
|
LSz3iC39x69XWiTbhywDfgafnGPW4pWBOff2/bu5/A6z1Hnan1vyrRRD/hx1uMJ7S6q+bIvZ
|
||||||
|
iVIg1p0jH6tdIIhwX3cydhdRZHo7e9oSMgOUWsr6Ar59NRo9CENwGPE4U61HXfOnxWdrFWoA
|
||||||
|
XdwZczBeLxmUy6Vo6sKqv+gE4bqrtAM0sY/MsQ9cU95x+52ox/sq44lQMwd3ZBYUP7B1qbHI
|
||||||
|
hZSZuch6MLi5scLPeau0ZvCaljiaMeivP5+x0gWPRs0kI+9sZxInbqvrsJ6oOBJM3xYGhtn1
|
||||||
|
zZ7qmZR7
|
||||||
|
=si/k
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: bitcoin
|
||||||
|
urls:
|
||||||
|
- http://bitcoin.org/bitcoin-latest-linux-gitian.zip
|
||||||
|
rss:
|
||||||
|
- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss
|
||||||
|
xpath: //item/link/text()
|
||||||
|
pattern: bitcoin-\d+.\d+.\d+-linux-gitian.zip
|
||||||
|
signers:
|
||||||
|
0A82509767C7D4A5D14DA2301AE1D35043E08E54:
|
||||||
|
weight: 40
|
||||||
|
name: BlueMatt
|
||||||
|
key: bluematt
|
||||||
|
BF6273FAEF7CC0BA1F562E50989F6B3048A116B5:
|
||||||
|
weight: 40
|
||||||
|
name: Devrandom
|
||||||
|
key: devrandom
|
||||||
|
E463A93F5F3117EEDE6C7316BD02942421F4889F:
|
||||||
|
weight: 40
|
||||||
|
name: Luke-Jr
|
||||||
|
key: luke-jr
|
||||||
|
D762373D24904A3E42F33B08B9A408E71DAAC974:
|
||||||
|
weight: 40
|
||||||
|
name: "Pieter Wuille"
|
||||||
|
key: sipa
|
||||||
|
77E72E69DA7EE0A148C06B21B34821D4944DE5F7:
|
||||||
|
weight: 40
|
||||||
|
name: tcatm
|
||||||
|
key: tcatm
|
||||||
|
01CDF4627A3B88AAE4A571C87588242FBE38D3A8:
|
||||||
|
weight: 40
|
||||||
|
name: "Gavin Andresen"
|
||||||
|
key: gavinandresen
|
||||||
|
71A3B16735405025D447E8F274810B012346C9A6:
|
||||||
|
weight: 40
|
||||||
|
name: "Wladimir J. van der Laan"
|
||||||
|
key: laanwj
|
||||||
|
minimum_weight: 120
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
Version: GnuPG v1.4.10 (GNU/Linux)
|
||||||
|
|
||||||
|
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
|
||||||
|
EwL78xfzdw9iYRRwoeP+IQ==
|
||||||
|
=jMKy
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
Version: GnuPG v1.4.10 (GNU/Linux)
|
||||||
|
|
||||||
|
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
|
||||||
|
JzdBFnCP7RoNHIQ20A==
|
||||||
|
=CQsQ
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
Version: GnuPG v1.4.10 (GNU/Linux)
|
||||||
|
|
||||||
|
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
|
||||||
|
KIjGheFAFTRFLgBmol4=
|
||||||
|
=Qxzm
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: bitcoin
|
||||||
|
urls:
|
||||||
|
- http://bitcoin.org/bitcoin-latest-win32-gitian.zip
|
||||||
|
rss:
|
||||||
|
- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss
|
||||||
|
xpath: //item/link/text()
|
||||||
|
pattern: bitcoin-\d+.\d+.\d+-win32-gitian.zip
|
||||||
|
signers:
|
||||||
|
0A82509767C7D4A5D14DA2301AE1D35043E08E54:
|
||||||
|
weight: 40
|
||||||
|
name: BlueMatt
|
||||||
|
key: bluematt
|
||||||
|
BF6273FAEF7CC0BA1F562E50989F6B3048A116B5:
|
||||||
|
weight: 40
|
||||||
|
name: Devrandom
|
||||||
|
key: devrandom
|
||||||
|
E463A93F5F3117EEDE6C7316BD02942421F4889F:
|
||||||
|
weight: 40
|
||||||
|
name: Luke-Jr
|
||||||
|
key: luke-jr
|
||||||
|
D762373D24904A3E42F33B08B9A408E71DAAC974:
|
||||||
|
weight: 40
|
||||||
|
name: "Pieter Wuille"
|
||||||
|
key: sipa
|
||||||
|
77E72E69DA7EE0A148C06B21B34821D4944DE5F7:
|
||||||
|
weight: 40
|
||||||
|
name: tcatm
|
||||||
|
key: tcatm
|
||||||
|
01CDF4627A3B88AAE4A571C87588242FBE38D3A8:
|
||||||
|
weight: 40
|
||||||
|
name: "Gavin Andresen"
|
||||||
|
key: gavinandresen
|
||||||
|
71A3B16735405025D447E8F274810B012346C9A6:
|
||||||
|
weight: 40
|
||||||
|
name: "Wladimir J. van der Laan"
|
||||||
|
key: laanwj
|
||||||
|
minimum_weight: 120
|
||||||
@@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>window_bounds</key>
|
||||||
|
<array>
|
||||||
|
<integer>300</integer>
|
||||||
|
<integer>300</integer>
|
||||||
|
<integer>800</integer>
|
||||||
|
<integer>620</integer>
|
||||||
|
</array>
|
||||||
|
<key>background_picture</key>
|
||||||
|
<string>background.png</string>
|
||||||
|
<key>icon_size</key>
|
||||||
|
<integer>96</integer>
|
||||||
|
<key>applications_symlink</key>
|
||||||
|
<true/>
|
||||||
|
<key>items_position</key>
|
||||||
|
<dict>
|
||||||
|
<key>Applications</key>
|
||||||
|
<array>
|
||||||
|
<integer>370</integer>
|
||||||
|
<integer>156</integer>
|
||||||
|
</array>
|
||||||
|
<key>NovaCoin-Qt.app</key>
|
||||||
|
<array>
|
||||||
|
<integer>128</integer>
|
||||||
|
<integer>156</integer>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,758 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (C) 2011 Patrick "p2k" Schneider <me@p2k-network.org>
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
import subprocess, sys, re, os, shutil, stat, os.path
|
||||||
|
from string import Template
|
||||||
|
from time import sleep
|
||||||
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
|
# This is ported from the original macdeployqt with modifications
|
||||||
|
|
||||||
|
class FrameworkInfo(object):
|
||||||
|
def __init__(self):
|
||||||
|
self.frameworkDirectory = ""
|
||||||
|
self.frameworkName = ""
|
||||||
|
self.frameworkPath = ""
|
||||||
|
self.binaryDirectory = ""
|
||||||
|
self.binaryName = ""
|
||||||
|
self.binaryPath = ""
|
||||||
|
self.version = ""
|
||||||
|
self.installName = ""
|
||||||
|
self.deployedInstallName = ""
|
||||||
|
self.sourceFilePath = ""
|
||||||
|
self.destinationDirectory = ""
|
||||||
|
self.sourceResourcesDirectory = ""
|
||||||
|
self.destinationResourcesDirectory = ""
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
if self.__class__ == other.__class__:
|
||||||
|
return self.__dict__ == other.__dict__
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return """ Framework name: %s
|
||||||
|
Framework directory: %s
|
||||||
|
Framework path: %s
|
||||||
|
Binary name: %s
|
||||||
|
Binary directory: %s
|
||||||
|
Binary path: %s
|
||||||
|
Version: %s
|
||||||
|
Install name: %s
|
||||||
|
Deployed install name: %s
|
||||||
|
Source file Path: %s
|
||||||
|
Deployed Directory (relative to bundle): %s
|
||||||
|
""" % (self.frameworkName,
|
||||||
|
self.frameworkDirectory,
|
||||||
|
self.frameworkPath,
|
||||||
|
self.binaryName,
|
||||||
|
self.binaryDirectory,
|
||||||
|
self.binaryPath,
|
||||||
|
self.version,
|
||||||
|
self.installName,
|
||||||
|
self.deployedInstallName,
|
||||||
|
self.sourceFilePath,
|
||||||
|
self.destinationDirectory)
|
||||||
|
|
||||||
|
def isDylib(self):
|
||||||
|
return self.frameworkName.endswith(".dylib")
|
||||||
|
|
||||||
|
def isQtFramework(self):
|
||||||
|
if self.isDylib():
|
||||||
|
return self.frameworkName.startswith("libQt")
|
||||||
|
else:
|
||||||
|
return self.frameworkName.startswith("Qt")
|
||||||
|
|
||||||
|
reOLine = re.compile(r'^(.+) \(compatibility version [0-9.]+, current version [0-9.]+\)$')
|
||||||
|
bundleFrameworkDirectory = "Contents/Frameworks"
|
||||||
|
bundleBinaryDirectory = "Contents/MacOS"
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def fromOtoolLibraryLine(cls, line):
|
||||||
|
# Note: line must be trimmed
|
||||||
|
if line == "":
|
||||||
|
return None
|
||||||
|
|
||||||
|
# Don't deploy system libraries (exception for libQtuitools and libQtlucene).
|
||||||
|
if line.startswith("/System/Library/") or line.startswith("@executable_path") or (line.startswith("/usr/lib/") and "libQt" not in line):
|
||||||
|
return None
|
||||||
|
|
||||||
|
m = cls.reOLine.match(line)
|
||||||
|
if m is None:
|
||||||
|
raise RuntimeError("otool line could not be parsed: " + line)
|
||||||
|
|
||||||
|
path = m.group(1)
|
||||||
|
|
||||||
|
info = cls()
|
||||||
|
info.sourceFilePath = path
|
||||||
|
info.installName = path
|
||||||
|
|
||||||
|
if path.endswith(".dylib"):
|
||||||
|
dirname, filename = os.path.split(path)
|
||||||
|
info.frameworkName = filename
|
||||||
|
info.frameworkDirectory = dirname
|
||||||
|
info.frameworkPath = path
|
||||||
|
|
||||||
|
info.binaryDirectory = dirname
|
||||||
|
info.binaryName = filename
|
||||||
|
info.binaryPath = path
|
||||||
|
info.version = "-"
|
||||||
|
|
||||||
|
info.installName = path
|
||||||
|
info.deployedInstallName = "@executable_path/../Frameworks/" + info.binaryName
|
||||||
|
info.sourceFilePath = path
|
||||||
|
info.destinationDirectory = cls.bundleFrameworkDirectory
|
||||||
|
else:
|
||||||
|
parts = path.split("/")
|
||||||
|
i = 0
|
||||||
|
# Search for the .framework directory
|
||||||
|
for part in parts:
|
||||||
|
if part.endswith(".framework"):
|
||||||
|
break
|
||||||
|
i += 1
|
||||||
|
if i == len(parts):
|
||||||
|
raise RuntimeError("Could not find .framework or .dylib in otool line: " + line)
|
||||||
|
|
||||||
|
info.frameworkName = parts[i]
|
||||||
|
info.frameworkDirectory = "/".join(parts[:i])
|
||||||
|
info.frameworkPath = os.path.join(info.frameworkDirectory, info.frameworkName)
|
||||||
|
|
||||||
|
info.binaryName = parts[i+3]
|
||||||
|
info.binaryDirectory = "/".join(parts[i+1:i+3])
|
||||||
|
info.binaryPath = os.path.join(info.binaryDirectory, info.binaryName)
|
||||||
|
info.version = parts[i+2]
|
||||||
|
|
||||||
|
info.deployedInstallName = "@executable_path/../Frameworks/" + os.path.join(info.frameworkName, info.binaryPath)
|
||||||
|
info.destinationDirectory = os.path.join(cls.bundleFrameworkDirectory, info.frameworkName, info.binaryDirectory)
|
||||||
|
|
||||||
|
info.sourceResourcesDirectory = os.path.join(info.frameworkPath, "Resources")
|
||||||
|
info.destinationResourcesDirectory = os.path.join(cls.bundleFrameworkDirectory, info.frameworkName, "Resources")
|
||||||
|
|
||||||
|
return info
|
||||||
|
|
||||||
|
class ApplicationBundleInfo(object):
|
||||||
|
def __init__(self, path):
|
||||||
|
self.path = path
|
||||||
|
appName = os.path.splitext(os.path.basename(path))[0]
|
||||||
|
self.binaryPath = os.path.join(path, "Contents", "MacOS", appName)
|
||||||
|
if not os.path.exists(self.binaryPath):
|
||||||
|
raise RuntimeError("Could not find bundle binary for " + path)
|
||||||
|
self.resourcesPath = os.path.join(path, "Contents", "Resources")
|
||||||
|
self.pluginPath = os.path.join(path, "Contents", "PlugIns")
|
||||||
|
|
||||||
|
class DeploymentInfo(object):
|
||||||
|
def __init__(self):
|
||||||
|
self.qtPath = None
|
||||||
|
self.pluginPath = None
|
||||||
|
self.deployedFrameworks = []
|
||||||
|
|
||||||
|
def detectQtPath(self, frameworkDirectory):
|
||||||
|
parentDir = os.path.dirname(frameworkDirectory)
|
||||||
|
if os.path.exists(os.path.join(parentDir, "translations")):
|
||||||
|
# Classic layout, e.g. "/usr/local/Trolltech/Qt-4.x.x"
|
||||||
|
self.qtPath = parentDir
|
||||||
|
elif os.path.exists(os.path.join(parentDir, "share", "qt4", "translations")):
|
||||||
|
# MacPorts layout, e.g. "/opt/local/share/qt4"
|
||||||
|
self.qtPath = os.path.join(parentDir, "share", "qt4")
|
||||||
|
elif os.path.exists(os.path.join(os.path.dirname(parentDir), "share", "qt4", "translations")):
|
||||||
|
# Newer Macports layout
|
||||||
|
self.qtPath = os.path.join(os.path.dirname(parentDir), "share", "qt4")
|
||||||
|
else:
|
||||||
|
self.qtPath = os.getenv("QTDIR", None)
|
||||||
|
|
||||||
|
if self.qtPath is not None:
|
||||||
|
pluginPath = os.path.join(self.qtPath, "plugins")
|
||||||
|
if os.path.exists(pluginPath):
|
||||||
|
self.pluginPath = pluginPath
|
||||||
|
|
||||||
|
def usesFramework(self, name):
|
||||||
|
nameDot = "%s." % name
|
||||||
|
libNameDot = "lib%s." % name
|
||||||
|
for framework in self.deployedFrameworks:
|
||||||
|
if framework.endswith(".framework"):
|
||||||
|
if framework.startswith(nameDot):
|
||||||
|
return True
|
||||||
|
elif framework.endswith(".dylib"):
|
||||||
|
if framework.startswith(libNameDot):
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def getFrameworks(binaryPath, verbose):
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Inspecting with otool: " + binaryPath
|
||||||
|
otool = subprocess.Popen(["otool", "-L", binaryPath], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
o_stdout, o_stderr = otool.communicate()
|
||||||
|
if otool.returncode != 0:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write(o_stderr)
|
||||||
|
sys.stderr.flush()
|
||||||
|
raise RuntimeError("otool failed with return code %d" % otool.returncode)
|
||||||
|
|
||||||
|
otoolLines = o_stdout.split("\n")
|
||||||
|
otoolLines.pop(0) # First line is the inspected binary
|
||||||
|
if ".framework" in binaryPath or binaryPath.endswith(".dylib"):
|
||||||
|
otoolLines.pop(0) # Frameworks and dylibs list themselves as a dependency.
|
||||||
|
|
||||||
|
libraries = []
|
||||||
|
for line in otoolLines:
|
||||||
|
info = FrameworkInfo.fromOtoolLibraryLine(line.strip())
|
||||||
|
if info is not None:
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Found framework:"
|
||||||
|
print info
|
||||||
|
libraries.append(info)
|
||||||
|
|
||||||
|
return libraries
|
||||||
|
|
||||||
|
def runInstallNameTool(action, *args):
|
||||||
|
subprocess.check_call(["install_name_tool", "-"+action] + list(args))
|
||||||
|
|
||||||
|
def changeInstallName(oldName, newName, binaryPath, verbose):
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Using install_name_tool:"
|
||||||
|
print " in", binaryPath
|
||||||
|
print " change reference", oldName
|
||||||
|
print " to", newName
|
||||||
|
runInstallNameTool("change", oldName, newName, binaryPath)
|
||||||
|
|
||||||
|
def changeIdentification(id, binaryPath, verbose):
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Using install_name_tool:"
|
||||||
|
print " change identification in", binaryPath
|
||||||
|
print " to", id
|
||||||
|
runInstallNameTool("id", id, binaryPath)
|
||||||
|
|
||||||
|
def runStrip(binaryPath, verbose):
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Using strip:"
|
||||||
|
print " stripped", binaryPath
|
||||||
|
subprocess.check_call(["strip", "-x", binaryPath])
|
||||||
|
|
||||||
|
def copyFramework(framework, path, verbose):
|
||||||
|
if framework.sourceFilePath.startswith("Qt"):
|
||||||
|
#standard place for Nokia Qt installer's frameworks
|
||||||
|
fromPath = "/Library/Frameworks/" + framework.sourceFilePath
|
||||||
|
else:
|
||||||
|
fromPath = framework.sourceFilePath
|
||||||
|
|
||||||
|
toDir = os.path.join(path, framework.destinationDirectory)
|
||||||
|
toPath = os.path.join(toDir, framework.binaryName)
|
||||||
|
|
||||||
|
if not os.path.exists(fromPath):
|
||||||
|
raise RuntimeError("No file at " + fromPath)
|
||||||
|
|
||||||
|
if os.path.exists(toPath):
|
||||||
|
return None # Already there
|
||||||
|
|
||||||
|
if not os.path.exists(toDir):
|
||||||
|
os.makedirs(toDir)
|
||||||
|
|
||||||
|
shutil.copy2(fromPath, toPath)
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Copied:", fromPath
|
||||||
|
print " to:", toPath
|
||||||
|
|
||||||
|
permissions = os.stat(toPath)
|
||||||
|
if not permissions.st_mode & stat.S_IWRITE:
|
||||||
|
os.chmod(toPath, permissions.st_mode | stat.S_IWRITE)
|
||||||
|
|
||||||
|
if not framework.isDylib(): # Copy resources for real frameworks
|
||||||
|
fromResourcesDir = framework.sourceResourcesDirectory
|
||||||
|
if os.path.exists(fromResourcesDir):
|
||||||
|
toResourcesDir = os.path.join(path, framework.destinationResourcesDirectory)
|
||||||
|
shutil.copytree(fromResourcesDir, toResourcesDir)
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Copied resources:", fromResourcesDir
|
||||||
|
print " to:", toResourcesDir
|
||||||
|
elif framework.frameworkName.startswith("libQtGui"): # Copy qt_menu.nib (applies to non-framework layout)
|
||||||
|
qtMenuNibSourcePath = os.path.join(framework.frameworkDirectory, "Resources", "qt_menu.nib")
|
||||||
|
qtMenuNibDestinationPath = os.path.join(path, "Contents", "Resources", "qt_menu.nib")
|
||||||
|
if os.path.exists(qtMenuNibSourcePath) and not os.path.exists(qtMenuNibDestinationPath):
|
||||||
|
shutil.copytree(qtMenuNibSourcePath, qtMenuNibDestinationPath)
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Copied for libQtGui:", qtMenuNibSourcePath
|
||||||
|
print " to:", qtMenuNibDestinationPath
|
||||||
|
|
||||||
|
return toPath
|
||||||
|
|
||||||
|
def deployFrameworks(frameworks, bundlePath, binaryPath, strip, verbose, deploymentInfo=None):
|
||||||
|
if deploymentInfo is None:
|
||||||
|
deploymentInfo = DeploymentInfo()
|
||||||
|
|
||||||
|
while len(frameworks) > 0:
|
||||||
|
framework = frameworks.pop(0)
|
||||||
|
deploymentInfo.deployedFrameworks.append(framework.frameworkName)
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "Processing", framework.frameworkName, "..."
|
||||||
|
|
||||||
|
# Get the Qt path from one of the Qt frameworks
|
||||||
|
if deploymentInfo.qtPath is None and framework.isQtFramework():
|
||||||
|
deploymentInfo.detectQtPath(framework.frameworkDirectory)
|
||||||
|
|
||||||
|
if framework.installName.startswith("@executable_path"):
|
||||||
|
if verbose >= 2:
|
||||||
|
print framework.frameworkName, "already deployed, skipping."
|
||||||
|
continue
|
||||||
|
|
||||||
|
# install_name_tool the new id into the binary
|
||||||
|
changeInstallName(framework.installName, framework.deployedInstallName, binaryPath, verbose)
|
||||||
|
|
||||||
|
# Copy farmework to app bundle.
|
||||||
|
deployedBinaryPath = copyFramework(framework, bundlePath, verbose)
|
||||||
|
# Skip the rest if already was deployed.
|
||||||
|
if deployedBinaryPath is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if strip:
|
||||||
|
runStrip(deployedBinaryPath, verbose)
|
||||||
|
|
||||||
|
# install_name_tool it a new id.
|
||||||
|
changeIdentification(framework.deployedInstallName, deployedBinaryPath, verbose)
|
||||||
|
# Check for framework dependencies
|
||||||
|
dependencies = getFrameworks(deployedBinaryPath, verbose)
|
||||||
|
|
||||||
|
for dependency in dependencies:
|
||||||
|
changeInstallName(dependency.installName, dependency.deployedInstallName, deployedBinaryPath, verbose)
|
||||||
|
|
||||||
|
# Deploy framework if necessary.
|
||||||
|
if dependency.frameworkName not in deploymentInfo.deployedFrameworks and dependency not in frameworks:
|
||||||
|
frameworks.append(dependency)
|
||||||
|
|
||||||
|
return deploymentInfo
|
||||||
|
|
||||||
|
def deployFrameworksForAppBundle(applicationBundle, strip, verbose):
|
||||||
|
frameworks = getFrameworks(applicationBundle.binaryPath, verbose)
|
||||||
|
if len(frameworks) == 0 and verbose >= 1:
|
||||||
|
print "Warning: Could not find any external frameworks to deploy in %s." % (applicationBundle.path)
|
||||||
|
return DeploymentInfo()
|
||||||
|
else:
|
||||||
|
return deployFrameworks(frameworks, applicationBundle.path, applicationBundle.binaryPath, strip, verbose)
|
||||||
|
|
||||||
|
def deployPlugins(appBundleInfo, deploymentInfo, strip, verbose):
|
||||||
|
# Lookup available plugins, exclude unneeded
|
||||||
|
plugins = []
|
||||||
|
for dirpath, dirnames, filenames in os.walk(deploymentInfo.pluginPath):
|
||||||
|
pluginDirectory = os.path.relpath(dirpath, deploymentInfo.pluginPath)
|
||||||
|
if pluginDirectory == "designer":
|
||||||
|
# Skip designer plugins
|
||||||
|
continue
|
||||||
|
elif pluginDirectory == "phonon" or pluginDirectory == "phonon_backend":
|
||||||
|
# Deploy the phonon plugins only if phonon is in use
|
||||||
|
if not deploymentInfo.usesFramework("phonon"):
|
||||||
|
continue
|
||||||
|
elif pluginDirectory == "sqldrivers":
|
||||||
|
# Deploy the sql plugins only if QtSql is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtSql"):
|
||||||
|
continue
|
||||||
|
elif pluginDirectory == "script":
|
||||||
|
# Deploy the script plugins only if QtScript is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtScript"):
|
||||||
|
continue
|
||||||
|
elif pluginDirectory == "qmltooling":
|
||||||
|
# Deploy the qml plugins only if QtDeclarative is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtDeclarative"):
|
||||||
|
continue
|
||||||
|
elif pluginDirectory == "bearer":
|
||||||
|
# Deploy the bearer plugins only if QtNetwork is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtNetwork"):
|
||||||
|
continue
|
||||||
|
|
||||||
|
for pluginName in filenames:
|
||||||
|
pluginPath = os.path.join(pluginDirectory, pluginName)
|
||||||
|
if pluginName.endswith("_debug.dylib"):
|
||||||
|
# Skip debug plugins
|
||||||
|
continue
|
||||||
|
elif pluginPath == "imageformats/libqsvg.dylib" or pluginPath == "iconengines/libqsvgicon.dylib":
|
||||||
|
# Deploy the svg plugins only if QtSvg is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtSvg"):
|
||||||
|
continue
|
||||||
|
elif pluginPath == "accessible/libqtaccessiblecompatwidgets.dylib":
|
||||||
|
# Deploy accessibility for Qt3Support only if the Qt3Support is in use
|
||||||
|
if not deploymentInfo.usesFramework("Qt3Support"):
|
||||||
|
continue
|
||||||
|
elif pluginPath == "graphicssystems/libqglgraphicssystem.dylib":
|
||||||
|
# Deploy the opengl graphicssystem plugin only if QtOpenGL is in use
|
||||||
|
if not deploymentInfo.usesFramework("QtOpenGL"):
|
||||||
|
continue
|
||||||
|
|
||||||
|
plugins.append((pluginDirectory, pluginName))
|
||||||
|
|
||||||
|
for pluginDirectory, pluginName in plugins:
|
||||||
|
if verbose >= 2:
|
||||||
|
print "Processing plugin", os.path.join(pluginDirectory, pluginName), "..."
|
||||||
|
|
||||||
|
sourcePath = os.path.join(deploymentInfo.pluginPath, pluginDirectory, pluginName)
|
||||||
|
destinationDirectory = os.path.join(appBundleInfo.pluginPath, pluginDirectory)
|
||||||
|
if not os.path.exists(destinationDirectory):
|
||||||
|
os.makedirs(destinationDirectory)
|
||||||
|
|
||||||
|
destinationPath = os.path.join(destinationDirectory, pluginName)
|
||||||
|
shutil.copy2(sourcePath, destinationPath)
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Copied:", sourcePath
|
||||||
|
print " to:", destinationPath
|
||||||
|
|
||||||
|
if strip:
|
||||||
|
runStrip(destinationPath, verbose)
|
||||||
|
|
||||||
|
dependencies = getFrameworks(destinationPath, verbose)
|
||||||
|
|
||||||
|
for dependency in dependencies:
|
||||||
|
changeInstallName(dependency.installName, dependency.deployedInstallName, destinationPath, verbose)
|
||||||
|
|
||||||
|
# Deploy framework if necessary.
|
||||||
|
if dependency.frameworkName not in deploymentInfo.deployedFrameworks:
|
||||||
|
deployFrameworks([dependency], appBundleInfo.path, destinationPath, strip, verbose, deploymentInfo)
|
||||||
|
|
||||||
|
qt_conf="""[Paths]
|
||||||
|
translations=Resources
|
||||||
|
plugins=PlugIns
|
||||||
|
"""
|
||||||
|
|
||||||
|
ap = ArgumentParser(description="""Improved version of macdeployqt.
|
||||||
|
|
||||||
|
Outputs a ready-to-deploy app in a folder "dist" and optionally wraps it in a .dmg file.
|
||||||
|
Note, that the "dist" folder will be deleted before deploying on each run.
|
||||||
|
|
||||||
|
Optionally, Qt translation files (.qm) and additional resources can be added to the bundle.""")
|
||||||
|
|
||||||
|
ap.add_argument("app_bundle", nargs=1, metavar="app-bundle", help="application bundle to be deployed")
|
||||||
|
ap.add_argument("-verbose", type=int, nargs=1, default=[1], metavar="<0-3>", help="0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug")
|
||||||
|
ap.add_argument("-no-plugins", dest="plugins", action="store_false", default=True, help="skip plugin deployment")
|
||||||
|
ap.add_argument("-no-strip", dest="strip", action="store_false", default=True, help="don't run 'strip' on the binaries")
|
||||||
|
ap.add_argument("-dmg", nargs="?", const="", metavar="basename", help="create a .dmg disk image; if basename is not specified, a camel-cased version of the app name is used")
|
||||||
|
ap.add_argument("-fancy", nargs=1, metavar="plist", default=[], help="make a fancy looking disk image using the given plist file with instructions; requires -dmg to work")
|
||||||
|
ap.add_argument("-add-qt-tr", nargs=1, metavar="languages", default=[], help="add Qt translation files to the bundle's ressources; the language list must be separated with commas, not with whitespace")
|
||||||
|
ap.add_argument("-add-resources", nargs="+", metavar="path", default=[], help="list of additional files or folders to be copied into the bundle's resources; must be the last argument")
|
||||||
|
|
||||||
|
config = ap.parse_args()
|
||||||
|
|
||||||
|
verbose = config.verbose[0]
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
app_bundle = config.app_bundle[0]
|
||||||
|
|
||||||
|
if not os.path.exists(app_bundle):
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not find app bundle \"%s\"\n" % (app_bundle))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
app_bundle_name = os.path.splitext(os.path.basename(app_bundle))[0]
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
for p in config.add_resources:
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Checking for \"%s\"..." % p
|
||||||
|
if not os.path.exists(p):
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not find additional resource file \"%s\"\n" % (p))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if len(config.fancy) == 1:
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Fancy: Importing plistlib..."
|
||||||
|
try:
|
||||||
|
import plistlib
|
||||||
|
except ImportError:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not import plistlib which is required for fancy disk images.\n")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Fancy: Importing appscript..."
|
||||||
|
try:
|
||||||
|
import appscript
|
||||||
|
except ImportError:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not import appscript which is required for fancy disk images.\n")
|
||||||
|
sys.stderr.write("Please install it e.g. with \"sudo easy_install appscript\".\n")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
p = config.fancy[0]
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Fancy: Loading \"%s\"..." % p
|
||||||
|
if not os.path.exists(p):
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not find fancy disk image plist at \"%s\"\n" % (p))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
try:
|
||||||
|
fancy = plistlib.readPlist(p)
|
||||||
|
except:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not parse fancy disk image plist at \"%s\"\n" % (p))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
try:
|
||||||
|
assert not fancy.has_key("window_bounds") or (isinstance(fancy["window_bounds"], list) and len(fancy["window_bounds"]) == 4)
|
||||||
|
assert not fancy.has_key("background_picture") or isinstance(fancy["background_picture"], str)
|
||||||
|
assert not fancy.has_key("icon_size") or isinstance(fancy["icon_size"], int)
|
||||||
|
assert not fancy.has_key("applications_symlink") or isinstance(fancy["applications_symlink"], bool)
|
||||||
|
if fancy.has_key("items_position"):
|
||||||
|
assert isinstance(fancy["items_position"], dict)
|
||||||
|
for key, value in fancy["items_position"].iteritems():
|
||||||
|
assert isinstance(value, list) and len(value) == 2 and isinstance(value[0], int) and isinstance(value[1], int)
|
||||||
|
except:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Bad format of fancy disk image plist at \"%s\"\n" % (p))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if fancy.has_key("background_picture"):
|
||||||
|
bp = fancy["background_picture"]
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Fancy: Resolving background picture \"%s\"..." % bp
|
||||||
|
if not os.path.exists(bp):
|
||||||
|
bp = os.path.join(os.path.dirname(p), bp)
|
||||||
|
if not os.path.exists(bp):
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not find background picture at \"%s\" or \"%s\"\n" % (fancy["background_picture"], bp))
|
||||||
|
sys.exit(1)
|
||||||
|
else:
|
||||||
|
fancy["background_picture"] = bp
|
||||||
|
else:
|
||||||
|
fancy = None
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if os.path.exists("dist"):
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Removing old dist folder +"
|
||||||
|
|
||||||
|
shutil.rmtree("dist")
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
target = os.path.join("dist", app_bundle)
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Copying source bundle +"
|
||||||
|
if verbose >= 3:
|
||||||
|
print app_bundle, "->", target
|
||||||
|
|
||||||
|
os.mkdir("dist")
|
||||||
|
shutil.copytree(app_bundle, target)
|
||||||
|
|
||||||
|
applicationBundle = ApplicationBundleInfo(target)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Deploying frameworks +"
|
||||||
|
|
||||||
|
try:
|
||||||
|
deploymentInfo = deployFrameworksForAppBundle(applicationBundle, config.strip, verbose)
|
||||||
|
if deploymentInfo.qtPath is None:
|
||||||
|
deploymentInfo.qtPath = os.getenv("QTDIR", None)
|
||||||
|
if deploymentInfo.qtPath is None:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Warning: Could not detect Qt's path, skipping plugin deployment!\n")
|
||||||
|
config.plugins = False
|
||||||
|
except RuntimeError as e:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: %s\n" % str(e))
|
||||||
|
sys.exit(ret)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if config.plugins:
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Deploying plugins +"
|
||||||
|
|
||||||
|
try:
|
||||||
|
deployPlugins(applicationBundle, deploymentInfo, config.strip, verbose)
|
||||||
|
except RuntimeError as e:
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: %s\n" % str(e))
|
||||||
|
sys.exit(ret)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if len(config.add_qt_tr) == 0:
|
||||||
|
add_qt_tr = []
|
||||||
|
else:
|
||||||
|
qt_tr_dir = os.path.join(deploymentInfo.qtPath, "translations")
|
||||||
|
add_qt_tr = ["qt_%s.qm" % lng for lng in config.add_qt_tr[0].split(",")]
|
||||||
|
for lng_file in add_qt_tr:
|
||||||
|
p = os.path.join(qt_tr_dir, lng_file)
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Checking for \"%s\"..." % p
|
||||||
|
if not os.path.exists(p):
|
||||||
|
if verbose >= 1:
|
||||||
|
sys.stderr.write("Error: Could not find Qt translation file \"%s\"\n" % (lng_file))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Installing qt.conf +"
|
||||||
|
|
||||||
|
f = open(os.path.join(applicationBundle.resourcesPath, "qt.conf"), "wb")
|
||||||
|
f.write(qt_conf)
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if len(add_qt_tr) > 0 and verbose >= 2:
|
||||||
|
print "+ Adding Qt translations +"
|
||||||
|
|
||||||
|
for lng_file in add_qt_tr:
|
||||||
|
if verbose >= 3:
|
||||||
|
print os.path.join(qt_tr_dir, lng_file), "->", os.path.join(applicationBundle.resourcesPath, lng_file)
|
||||||
|
shutil.copy2(os.path.join(qt_tr_dir, lng_file), os.path.join(applicationBundle.resourcesPath, lng_file))
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if len(config.add_resources) > 0 and verbose >= 2:
|
||||||
|
print "+ Adding additional resources +"
|
||||||
|
|
||||||
|
for p in config.add_resources:
|
||||||
|
t = os.path.join(applicationBundle.resourcesPath, os.path.basename(p))
|
||||||
|
if verbose >= 3:
|
||||||
|
print p, "->", t
|
||||||
|
if os.path.isdir(p):
|
||||||
|
shutil.copytree(p, t)
|
||||||
|
else:
|
||||||
|
shutil.copy2(p, t)
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if config.dmg is not None:
|
||||||
|
def runHDIUtil(verb, image_basename, **kwargs):
|
||||||
|
hdiutil_args = ["hdiutil", verb, image_basename + ".dmg"]
|
||||||
|
if kwargs.has_key("capture_stdout"):
|
||||||
|
del kwargs["capture_stdout"]
|
||||||
|
run = subprocess.check_output
|
||||||
|
else:
|
||||||
|
if verbose < 2:
|
||||||
|
hdiutil_args.append("-quiet")
|
||||||
|
elif verbose >= 3:
|
||||||
|
hdiutil_args.append("-verbose")
|
||||||
|
run = subprocess.check_call
|
||||||
|
|
||||||
|
for key, value in kwargs.iteritems():
|
||||||
|
hdiutil_args.append("-" + key)
|
||||||
|
if not value is True:
|
||||||
|
hdiutil_args.append(str(value))
|
||||||
|
|
||||||
|
return run(hdiutil_args)
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
if fancy is None:
|
||||||
|
print "+ Creating .dmg disk image +"
|
||||||
|
else:
|
||||||
|
print "+ Preparing .dmg disk image +"
|
||||||
|
|
||||||
|
if config.dmg != "":
|
||||||
|
dmg_name = config.dmg
|
||||||
|
else:
|
||||||
|
spl = app_bundle_name.split(" ")
|
||||||
|
dmg_name = spl[0] + "".join(p.capitalize() for p in spl[1:])
|
||||||
|
|
||||||
|
if fancy is None:
|
||||||
|
try:
|
||||||
|
runHDIUtil("create", dmg_name, srcfolder="dist", format="UDBZ", volname=app_bundle_name, ov=True)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
sys.exit(e.returncode)
|
||||||
|
else:
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Determining size of \"dist\"..."
|
||||||
|
size = 0
|
||||||
|
for path, dirs, files in os.walk("dist"):
|
||||||
|
for file in files:
|
||||||
|
size += os.path.getsize(os.path.join(path, file))
|
||||||
|
size += int(size * 0.1)
|
||||||
|
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Creating temp image for modification..."
|
||||||
|
try:
|
||||||
|
runHDIUtil("create", dmg_name + ".temp", srcfolder="dist", format="UDRW", size=size, volname=app_bundle_name, ov=True)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
sys.exit(e.returncode)
|
||||||
|
|
||||||
|
if verbose >= 3:
|
||||||
|
print "Attaching temp image..."
|
||||||
|
try:
|
||||||
|
output = runHDIUtil("attach", dmg_name + ".temp", readwrite=True, noverify=True, noautoopen=True, capture_stdout=True)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
sys.exit(e.returncode)
|
||||||
|
|
||||||
|
m = re.search("/Volumes/(.+$)", output)
|
||||||
|
disk_root = m.group(0)
|
||||||
|
disk_name = m.group(1)
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Applying fancy settings +"
|
||||||
|
|
||||||
|
if fancy.has_key("background_picture"):
|
||||||
|
bg_path = os.path.join(disk_root, os.path.basename(fancy["background_picture"]))
|
||||||
|
if verbose >= 3:
|
||||||
|
print fancy["background_picture"], "->", bg_path
|
||||||
|
shutil.copy2(fancy["background_picture"], bg_path)
|
||||||
|
else:
|
||||||
|
bg_path = None
|
||||||
|
|
||||||
|
if fancy.get("applications_symlink", False):
|
||||||
|
os.symlink("/Applications", os.path.join(disk_root, "Applications"))
|
||||||
|
|
||||||
|
finder = appscript.app("Finder")
|
||||||
|
disk = finder.disks[disk_name]
|
||||||
|
disk.open()
|
||||||
|
window = disk.container_window
|
||||||
|
window.current_view.set(appscript.k.icon_view)
|
||||||
|
window.toolbar_visible.set(False)
|
||||||
|
window.statusbar_visible.set(False)
|
||||||
|
if fancy.has_key("window_bounds"):
|
||||||
|
window.bounds.set(fancy["window_bounds"])
|
||||||
|
view_options = window.icon_view_options
|
||||||
|
view_options.arrangement.set(appscript.k.not_arranged)
|
||||||
|
if fancy.has_key("icon_size"):
|
||||||
|
view_options.icon_size.set(fancy["icon_size"])
|
||||||
|
if bg_path is not None:
|
||||||
|
view_options.background_picture.set(disk.files[os.path.basename(bg_path)])
|
||||||
|
if fancy.has_key("items_position"):
|
||||||
|
for name, position in fancy["items_position"].iteritems():
|
||||||
|
window.items[name].position.set(position)
|
||||||
|
disk.close()
|
||||||
|
if bg_path is not None:
|
||||||
|
subprocess.call(["SetFile", "-a", "V", bg_path])
|
||||||
|
disk.update(registering_applications=False)
|
||||||
|
sleep(2)
|
||||||
|
disk.eject()
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Finalizing .dmg disk image +"
|
||||||
|
|
||||||
|
try:
|
||||||
|
runHDIUtil("convert", dmg_name + ".temp", format="UDBZ", o=dmg_name + ".dmg", ov=True)
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
sys.exit(e.returncode)
|
||||||
|
|
||||||
|
os.unlink(dmg_name + ".temp.dmg")
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
if verbose >= 2:
|
||||||
|
print "+ Done +"
|
||||||
|
|
||||||
|
sys.exit(0)
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
macdeployqtplus works best on OS X Lion, for Snow Leopard you'd need to install
|
||||||
|
Python 2.7 and make it your default Python installation.
|
||||||
|
|
||||||
|
You will need the appscript package for the fancy disk image creation to work.
|
||||||
|
Install it by invoking "sudo easy_install appscript".
|
||||||
|
|
||||||
|
Ths script should be invoked in the target directory like this:
|
||||||
|
$source_dir/contrib/macdeploy/macdeployqtplus NovaCoin-Qt.app -add-qt-tr da,de,es,hu,ru,uk,zh_CN,zh_TW -dmg -fancy $source_dir/contrib/macdeploy/fancy.plist -verbose 2
|
||||||
|
|
||||||
|
During the process, the disk image window will pop up briefly where the fancy
|
||||||
|
settings are applied. This is normal, please do not interfere.
|
||||||
|
|
||||||
|
You can also set up Qt Creator for invoking the script. For this, go to the
|
||||||
|
"Projects" tab on the left side, switch to "Run Settings" above and add a
|
||||||
|
deploy configuration. Next add a deploy step choosing "Custom Process Step".
|
||||||
|
Fill in the following.
|
||||||
|
|
||||||
|
Enable custom process step: [x]
|
||||||
|
Command: %{sourceDir}/contrib/macdeploy/macdeployqtplus
|
||||||
|
Working directory: %{buildDir}
|
||||||
|
Command arguments: NovaCoin-Qt.app -add-qt-tr da,de,es,hu,ru,uk,zh_CN,zh_TW -dmg -fancy %{sourceDir}/contrib/macdeploy/fancy.plist -verbose 2
|
||||||
|
|
||||||
|
After that you can start the deployment process through the menu with
|
||||||
|
Build -> Deploy Project "novacoin-qt"
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
# Helpful little script that spits out a comma-separated list of
|
||||||
|
# language codes for Qt icons that should be included
|
||||||
|
# in binary bitcoin distributions
|
||||||
|
|
||||||
|
import glob
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
|
||||||
|
if len(sys.argv) != 3:
|
||||||
|
sys.exit("Usage: %s $QTDIR/translations $BITCOINDIR/src/qt/locale"%sys.argv[0])
|
||||||
|
|
||||||
|
d1 = sys.argv[1]
|
||||||
|
d2 = sys.argv[2]
|
||||||
|
|
||||||
|
l1 = set([ re.search(r'qt_(.*).qm', f).group(1) for f in glob.glob(os.path.join(d1, 'qt_*.qm')) ])
|
||||||
|
l2 = set([ re.search(r'bitcoin_(.*).qm', f).group(1) for f in glob.glob(os.path.join(d2, 'bitcoin_*.qm')) ])
|
||||||
|
|
||||||
|
print ",".join(sorted(l1.intersection(l2)))
|
||||||
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
from jsonrpc import ServiceProxy
|
||||||
|
access = ServiceProxy("http://127.0.0.1:8332")
|
||||||
|
pwd = raw_input("Enter old wallet passphrase: ")
|
||||||
|
pwd2 = raw_input("Enter new wallet passphrase: ")
|
||||||
|
access.walletpassphrasechange(pwd, pwd2)
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
from jsonrpc import ServiceProxy
|
||||||
|
access = ServiceProxy("http://127.0.0.1:8332")
|
||||||
|
pwd = raw_input("Enter wallet passphrase: ")
|
||||||
|
access.walletpassphrase(pwd, 60)
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
Enviromint 0.4.4 BETA
|
||||||
|
|
||||||
|
Copyright (c) 2013 NovaCoin Developers
|
||||||
|
Copyright (c) 2011-2012 PPCoin Developers
|
||||||
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
This product includes software developed by the OpenSSL Project for use in
|
||||||
|
the OpenSSL Toolkit (http://www.openssl.org/). This product includes
|
||||||
|
cryptographic software written by Eric Young (eay@cryptsoft.com).
|
||||||
|
|
||||||
|
|
||||||
|
Intro
|
||||||
|
-----
|
||||||
|
Enviromint is a free open source project derived from Bitcoin, with
|
||||||
|
the goal of providing a long-term energy-efficient scrypt-based crypto-currency.
|
||||||
|
Built on the foundation of Bitcoin, PPCoin and NovaCoin, innovations such as proof-of-stake
|
||||||
|
help further advance the field of crypto-currency.
|
||||||
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
Enviromint 0.4.4 BETA
|
||||||
|
|
||||||
|
Copyright (c) 2013 NovaCoin Developers
|
||||||
|
Copyright (c) 2011-2013 PPCoin Developers
|
||||||
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
This product includes software developed by the OpenSSL Project for use in
|
||||||
|
the OpenSSL Toolkit (http://www.openssl.org/). This product includes
|
||||||
|
cryptographic software written by Eric Young (eay@cryptsoft.com).
|
||||||
|
|
||||||
|
|
||||||
|
Intro
|
||||||
|
-----
|
||||||
|
Enviromint is a free open source project derived from Bitcoin, with
|
||||||
|
the goal of providing a long-term energy-efficient scrypt-based crypto-currency.
|
||||||
|
Built on the foundation of Bitcoin, PPCoin and NovaCoin, innovations such as proof-of-stake and scrypt
|
||||||
|
help further advance the field of crypto-currency.
|
||||||
|
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
Code: src/strlcpy.h
|
||||||
|
Author: Todd C. Miller <Todd.Miller@courtesan.com>
|
||||||
|
License: ISC
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/clock*.png, src/qt/res/icons/tx*.png,
|
||||||
|
src/qt/res/src/*.svg
|
||||||
|
Designer: Wladimir van der Laan
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/address-book.png, src/qt/res/icons/export.png,
|
||||||
|
src/qt/res/icons/history.png, src/qt/res/icons/key.png,
|
||||||
|
src/qt/res/icons/lock_*.png, src/qt/res/icons/overview.png,
|
||||||
|
src/qt/res/icons/receive.png, src/qt/res/icons/send.png,
|
||||||
|
src/qt/res/icons/synced.png, src/qt/res/icons/filesave.png
|
||||||
|
Icon Pack: NUVOLA ICON THEME for KDE 3.x
|
||||||
|
Designer: David Vignoni (david@icon-king.com)
|
||||||
|
ICON KING - www.icon-king.com
|
||||||
|
License: LGPL
|
||||||
|
Site: http://www.icon-king.com/projects/nuvola/
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/connect*.png
|
||||||
|
Icon Pack: Human-O2
|
||||||
|
Designer: schollidesign
|
||||||
|
License: GNU/GPL
|
||||||
|
Site: http://findicons.com/icon/93743/blocks_gnome_netstatus_0
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/transaction*.png
|
||||||
|
Designer: md2k7
|
||||||
|
Site: https://forum.bitcoin.org/index.php?topic=15276.0
|
||||||
|
License: You are free to do with these icons as you wish, including selling,
|
||||||
|
copying, modifying etc.
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png,
|
||||||
|
src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png,
|
||||||
|
src/qt/res/icons/add.png, src/qt/res/icons/edit.png,
|
||||||
|
src/qt/res/icons/remove.png (edited)
|
||||||
|
Designer: http://www.everaldo.com
|
||||||
|
Icon Pack: Crystal SVG
|
||||||
|
License: LGPL
|
||||||
|
|
||||||
|
Icon: src/qt/res/icons/bitcoin.png, src/qt/res/icons/toolbar.png
|
||||||
|
Designer: Bitboy (optimized for 16x16 by Wladimir van der Laan)
|
||||||
|
License: Public Domain
|
||||||
|
Site: http://forum.bitcoin.org/?topic=1756.0
|
||||||
|
|
||||||
|
Icon: scripts/img/reload.xcf (modified),src/qt/res/movies/update_spinner.mng
|
||||||
|
Icon Pack: Kids
|
||||||
|
Designer: Everaldo (Everaldo Coelho)
|
||||||
|
License: GNU/GPL
|
||||||
|
Site: http://findicons.com/icon/17102/reload?id=17102
|
||||||
|
|
||||||
|
Image: src/qt/res/images/splash2.jpg (Wallet image)
|
||||||
|
Designer: Crobbo (forum)
|
||||||
|
Site: https://bitcointalk.org/index.php?topic=32273.0
|
||||||
|
License: Public domain
|
||||||
|
|
||||||
|
Enviromint Logo
|
||||||
|
Designer: Evan
|
||||||
|
License: Creative Commons Attribution 4.0 International License
|
||||||
|
After Width: | Height: | Size: 5.6 KiB |
@@ -0,0 +1,84 @@
|
|||||||
|
Copyright (c) 2009-2012 Bitcoin Developers
|
||||||
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
This product includes software developed by the OpenSSL Project for use in
|
||||||
|
the OpenSSL Toolkit (http://www.openssl.org/). This product includes
|
||||||
|
cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP
|
||||||
|
software written by Thomas Bernard.
|
||||||
|
|
||||||
|
|
||||||
|
See readme-qt.rst for instructions on building Enviromint QT, the
|
||||||
|
graphical user interface.
|
||||||
|
|
||||||
|
WINDOWS BUILD NOTES
|
||||||
|
===================
|
||||||
|
|
||||||
|
Compilers Supported
|
||||||
|
-------------------
|
||||||
|
TODO: What works?
|
||||||
|
Note: releases are cross-compiled using mingw running on Linux.
|
||||||
|
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
Libraries you need to download separately and build:
|
||||||
|
|
||||||
|
default path download
|
||||||
|
OpenSSL \openssl-1.0.1b-mgw http://www.openssl.org/source/
|
||||||
|
Berkeley DB \db-4.8.30.NC-mgw http://www.oracle.com/technology/software/products/berkeley-db/index.html
|
||||||
|
Boost \boost-1.47.0-mgw http://www.boost.org/users/download/
|
||||||
|
miniupnpc \miniupnpc-1.6-mgw http://miniupnp.tuxfamily.org/files/
|
||||||
|
|
||||||
|
Their licenses:
|
||||||
|
OpenSSL Old BSD license with the problematic advertising requirement
|
||||||
|
Berkeley DB New BSD license with additional requirement that linked software must be free open source
|
||||||
|
Boost MIT-like license
|
||||||
|
miniupnpc New (3-clause) BSD license
|
||||||
|
|
||||||
|
Versions used in this release:
|
||||||
|
OpenSSL 1.0.1b
|
||||||
|
Berkeley DB 4.8.30.NC
|
||||||
|
Boost 1.47.0
|
||||||
|
miniupnpc 1.6
|
||||||
|
|
||||||
|
|
||||||
|
OpenSSL
|
||||||
|
-------
|
||||||
|
MSYS shell:
|
||||||
|
un-tar sources with MSYS 'tar xfz' to avoid issue with symlinks (OpenSSL ticket 2377)
|
||||||
|
change 'MAKE' env. variable from 'C:\MinGW32\bin\mingw32-make.exe' to '/c/MinGW32/bin/mingw32-make.exe'
|
||||||
|
|
||||||
|
cd /c/openssl-1.0.1b-mgw
|
||||||
|
./config
|
||||||
|
make
|
||||||
|
|
||||||
|
Berkeley DB
|
||||||
|
-----------
|
||||||
|
MSYS shell:
|
||||||
|
cd /c/db-4.8.30.NC-mgw/build_unix
|
||||||
|
sh ../dist/configure --enable-mingw --enable-cxx
|
||||||
|
make
|
||||||
|
|
||||||
|
Boost
|
||||||
|
-----
|
||||||
|
DOS prompt:
|
||||||
|
downloaded boost jam 3.1.18
|
||||||
|
cd \boost-1.47.0-mgw
|
||||||
|
bjam toolset=gcc --build-type=complete stage
|
||||||
|
|
||||||
|
MiniUPnPc
|
||||||
|
---------
|
||||||
|
UPnP support is optional, make with USE_UPNP= to disable it.
|
||||||
|
|
||||||
|
MSYS shell:
|
||||||
|
cd /c/miniupnpc-1.6-mgw
|
||||||
|
make -f Makefile.mingw
|
||||||
|
mkdir miniupnpc
|
||||||
|
cp *.h miniupnpc/
|
||||||
|
|
||||||
|
Enviromint
|
||||||
|
-------
|
||||||
|
DOS prompt:
|
||||||
|
cd \enviromint\src
|
||||||
|
mingw32-make -f makefile.mingw
|
||||||
|
strip enviromintd.exe
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
Copyright (c) 2009-2012 Bitcoin Developers
|
||||||
|
Distributed under the MIT/X11 software license, see the accompanying file
|
||||||
|
license.txt or http://www.opensource.org/licenses/mit-license.php. This
|
||||||
|
product includes software developed by the OpenSSL Project for use in the
|
||||||
|
OpenSSL Toolkit (http://www.openssl.org/). This product includes cryptographic
|
||||||
|
software written by Eric Young (eay@cryptsoft.com) and UPnP software written by
|
||||||
|
Thomas Bernard.
|
||||||
|
|
||||||
|
|
||||||
|
Mac OS X enviromintd build instructions
|
||||||
|
Laszlo Hanyecz <solar@heliacal.net>
|
||||||
|
Douglas Huff <dhuff@jrbobdobbs.org>
|
||||||
|
|
||||||
|
|
||||||
|
See readme-qt.rst for instructions on building Enviromint QT, the
|
||||||
|
graphical user interface.
|
||||||
|
|
||||||
|
Tested on 10.5 and 10.6 intel. PPC is not supported because it's big-endian.
|
||||||
|
|
||||||
|
All of the commands should be executed in Terminal.app.. it's in
|
||||||
|
/Applications/Utilities
|
||||||
|
|
||||||
|
You need to install XCode with all the options checked so that the compiler and
|
||||||
|
everything is available in /usr not just /Developer I think it comes on the DVD
|
||||||
|
but you can get the current version from http://developer.apple.com
|
||||||
|
|
||||||
|
|
||||||
|
1. Clone the github tree to get the source code:
|
||||||
|
|
||||||
|
git clone git@github.com:rat4/enviromint.git enviromint
|
||||||
|
|
||||||
|
2. Download and install MacPorts from http://www.macports.org/
|
||||||
|
|
||||||
|
2a. (for 10.7 Lion)
|
||||||
|
Edit /opt/local/etc/macports/macports.conf and uncomment "build_arch i386"
|
||||||
|
|
||||||
|
3. Install dependencies from MacPorts
|
||||||
|
|
||||||
|
sudo port install boost db48 openssl miniupnpc
|
||||||
|
|
||||||
|
Optionally install qrencode (and set USE_QRCODE=1):
|
||||||
|
sudo port install qrencode
|
||||||
|
|
||||||
|
4. Now you should be able to build enviromintd:
|
||||||
|
|
||||||
|
cd enviromint/src
|
||||||
|
make -f makefile.osx
|
||||||
|
|
||||||
|
Run:
|
||||||
|
./enviromintd --help # for a list of command-line options.
|
||||||
|
Run
|
||||||
|
./enviromintd -daemon # to start the enviromint daemon.
|
||||||
|
Run
|
||||||
|
./enviromintd help # When the daemon is running, to get a list of RPC commands
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
Copyright (c) 2009-2012 Bitcoin Developers
|
||||||
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
This product includes software developed by the OpenSSL Project for use in
|
||||||
|
the OpenSSL Toolkit (http://www.openssl.org/). This product includes
|
||||||
|
cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP
|
||||||
|
software written by Thomas Bernard.
|
||||||
|
|
||||||
|
|
||||||
|
UNIX BUILD NOTES
|
||||||
|
================
|
||||||
|
|
||||||
|
To Build
|
||||||
|
--------
|
||||||
|
|
||||||
|
cd src/
|
||||||
|
make -f makefile.unix # Headless enviromint
|
||||||
|
|
||||||
|
See readme-qt.rst for instructions on building Enviromint QT,
|
||||||
|
the graphical enviromint.
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
Library Purpose Description
|
||||||
|
------- ------- -----------
|
||||||
|
libssl SSL Support Secure communications
|
||||||
|
libdb Berkeley DB Blockchain & wallet storage
|
||||||
|
libboost Boost C++ Library
|
||||||
|
miniupnpc UPnP Support Optional firewall-jumping support
|
||||||
|
libqrencode QRCode generation Optional QRCode generation
|
||||||
|
|
||||||
|
Note that libexecinfo should be installed, if you building under *BSD systems.
|
||||||
|
This library provides backtrace facility.
|
||||||
|
|
||||||
|
miniupnpc may be used for UPnP port mapping. It can be downloaded from
|
||||||
|
http://miniupnp.tuxfamily.org/files/. UPnP support is compiled in and
|
||||||
|
turned off by default. Set USE_UPNP to a different value to control this:
|
||||||
|
USE_UPNP=- No UPnP support - miniupnp not required
|
||||||
|
USE_UPNP=0 (the default) UPnP support turned off by default at runtime
|
||||||
|
USE_UPNP=1 UPnP support turned on by default at runtime
|
||||||
|
|
||||||
|
libqrencode may be used for QRCode image generation. It can be downloaded
|
||||||
|
from http://fukuchi.org/works/qrencode/index.html.en, or installed via
|
||||||
|
your package manager. Set USE_QRCODE to control this:
|
||||||
|
USE_QRCODE=0 (the default) No QRCode support - libqrcode not required
|
||||||
|
USE_QRCODE=1 QRCode support enabled
|
||||||
|
|
||||||
|
Licenses of statically linked libraries:
|
||||||
|
Berkeley DB New BSD license with additional requirement that linked
|
||||||
|
software must be free open source
|
||||||
|
Boost MIT-like license
|
||||||
|
miniupnpc New (3-clause) BSD license
|
||||||
|
|
||||||
|
Versions used in this release:
|
||||||
|
GCC 4.9.0
|
||||||
|
OpenSSL 1.0.1g
|
||||||
|
Berkeley DB 5.3.28.NC
|
||||||
|
Boost 1.55.0
|
||||||
|
miniupnpc 1.9.20140401
|
||||||
|
|
||||||
|
Dependency Build Instructions: Ubuntu & Debian
|
||||||
|
----------------------------------------------
|
||||||
|
sudo apt-get install build-essential
|
||||||
|
sudo apt-get install libssl-dev
|
||||||
|
sudo apt-get install libdb++-dev
|
||||||
|
sudo apt-get install libboost-all-dev
|
||||||
|
sudo apt-get install libqrencode-dev
|
||||||
|
|
||||||
|
If using Boost 1.37, append -mt to the boost libraries in the makefile.
|
||||||
|
|
||||||
|
|
||||||
|
Dependency Build Instructions: Gentoo
|
||||||
|
-------------------------------------
|
||||||
|
|
||||||
|
emerge -av1 --noreplace boost openssl sys-libs/db
|
||||||
|
|
||||||
|
Take the following steps to build (no UPnP support):
|
||||||
|
cd ${ENVIROMINT_DIR}/src
|
||||||
|
make -f makefile.unix USE_UPNP=
|
||||||
|
strip enviromintd
|
||||||
|
|
||||||
|
|
||||||
|
Notes
|
||||||
|
-----
|
||||||
|
The release is built with GCC and then "strip enviromintd" to strip the debug
|
||||||
|
symbols, which reduces the executable size by about 90%.
|
||||||
|
|
||||||
|
|
||||||
|
miniupnpc
|
||||||
|
---------
|
||||||
|
tar -xzvf miniupnpc-1.6.tar.gz
|
||||||
|
cd miniupnpc-1.6
|
||||||
|
make
|
||||||
|
sudo su
|
||||||
|
make install
|
||||||
|
|
||||||
|
|
||||||
|
Berkeley DB
|
||||||
|
-----------
|
||||||
|
You need Berkeley DB. If you have to build Berkeley DB yourself:
|
||||||
|
../dist/configure --enable-cxx
|
||||||
|
make
|
||||||
|
|
||||||
|
|
||||||
|
Boost
|
||||||
|
-----
|
||||||
|
If you need to build Boost yourself:
|
||||||
|
sudo su
|
||||||
|
./bootstrap.sh
|
||||||
|
./bjam install
|
||||||
|
|
||||||
|
|
||||||
|
Security
|
||||||
|
--------
|
||||||
|
To help make your enviromint installation more secure by making certain attacks impossible to
|
||||||
|
exploit even if a vulnerability is found, you can take the following measures:
|
||||||
|
|
||||||
|
* Position Independent Executable
|
||||||
|
Build position independent code to take advantage of Address Space Layout Randomization
|
||||||
|
offered by some kernels. An attacker who is able to cause execution of code at an arbitrary
|
||||||
|
memory location is thwarted if he doesn't know where anything useful is located.
|
||||||
|
The stack and heap are randomly located by default but this allows the code section to be
|
||||||
|
randomly located as well.
|
||||||
|
|
||||||
|
On an Amd64 processor where a library was not compiled with -fPIC, this will cause an error
|
||||||
|
such as: "relocation R_X86_64_32 against `......' can not be used when making a shared object;"
|
||||||
|
|
||||||
|
To build with PIE, use:
|
||||||
|
make -f makefile.unix ... -e PIE=1
|
||||||
|
|
||||||
|
To test that you have built PIE executable, install scanelf, part of paxutils, and use:
|
||||||
|
scanelf -e ./enviromint
|
||||||
|
|
||||||
|
The output should contain:
|
||||||
|
TYPE
|
||||||
|
ET_DYN
|
||||||
|
|
||||||
|
* Non-executable Stack
|
||||||
|
If the stack is executable then trivial stack based buffer overflow exploits are possible if
|
||||||
|
vulnerable buffers are found. By default, enviromint should be built with a non-executable stack
|
||||||
|
but if one of the libraries it uses asks for an executable stack or someone makes a mistake
|
||||||
|
and uses a compiler extension which requires an executable stack, it will silently build an
|
||||||
|
executable without the non-executable stack protection.
|
||||||
|
|
||||||
|
To verify that the stack is non-executable after compiling use:
|
||||||
|
scanelf -e ./enviromint
|
||||||
|
|
||||||
|
the output should contain:
|
||||||
|
STK/REL/PTL
|
||||||
|
RW- R-- RW-
|
||||||
|
|
||||||
|
The STK RW- means that the stack is readable and writeable but not executable.
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
Please be consistent with the existing coding style.
|
||||||
|
|
||||||
|
Block style:
|
||||||
|
|
||||||
|
bool Function(char* psz, int n)
|
||||||
|
{
|
||||||
|
// Comment summarising what this section of code does
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
{
|
||||||
|
// When something fails, return early
|
||||||
|
if (!Something())
|
||||||
|
return false;
|
||||||
|
...
|
||||||
|
}
|
||||||
|
|
||||||
|
// Success return is usually at the end
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
- ANSI/Allman block style
|
||||||
|
- 4 space indenting, no tabs
|
||||||
|
- No extra spaces inside parenthesis; please don't do ( this )
|
||||||
|
- No space after function names, one space after if, for and while
|
||||||
|
|
||||||
|
Variable names begin with the type in lowercase, like nSomeVariable.
|
||||||
|
Please don't put the first word of the variable name in lowercase like
|
||||||
|
someVariable.
|
||||||
|
|
||||||
|
Common types:
|
||||||
|
n integer number: short, unsigned short, int, unsigned int,
|
||||||
|
int64_t, uint64_t, sometimes char if used as a number
|
||||||
|
d double, float
|
||||||
|
f flag
|
||||||
|
hash uint256
|
||||||
|
p pointer or array, one p for each level of indirection
|
||||||
|
psz pointer to null terminated string
|
||||||
|
str string object
|
||||||
|
v vector or similar list objects
|
||||||
|
map map or multimap
|
||||||
|
set set or multiset
|
||||||
|
bn CBigNum
|
||||||
|
|
||||||
|
-------------------------
|
||||||
|
Locking/mutex usage notes
|
||||||
|
|
||||||
|
The code is multi-threaded, and uses mutexes and the
|
||||||
|
CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures.
|
||||||
|
|
||||||
|
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main
|
||||||
|
and then cs_wallet, while thread 2 locks them in the opposite order:
|
||||||
|
result, deadlock as each waits for the other to release its lock) are
|
||||||
|
a problem. Compile with -DDEBUG_LOCKORDER to get lock order
|
||||||
|
inconsistencies reported in the debug.log file.
|
||||||
|
|
||||||
|
Re-architecting the core code so there are better-defined interfaces
|
||||||
|
between the various components is a goal, with any necessary locking
|
||||||
|
done by the components (e.g. see the self-contained CKeyStore class
|
||||||
|
and its cs_KeyStore lock for example).
|
||||||
|
|
||||||
|
-------
|
||||||
|
Threads
|
||||||
|
|
||||||
|
StartNode : Starts other threads.
|
||||||
|
|
||||||
|
ThreadGetMyExternalIP : Determines outside-the-firewall IP address,
|
||||||
|
sends addr message to connected peers when it determines it.
|
||||||
|
|
||||||
|
ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new
|
||||||
|
peers and advertising this node's IP address.
|
||||||
|
|
||||||
|
ThreadSocketHandler : Sends/Receives data from peers on port 8333.
|
||||||
|
|
||||||
|
ThreadMessageHandler : Higher-level message handling (sending and
|
||||||
|
receiving).
|
||||||
|
|
||||||
|
ThreadOpenConnections : Initiates new connections to peers.
|
||||||
|
|
||||||
|
ThreadTopUpKeyPool : replenishes the keystore's keypool.
|
||||||
|
|
||||||
|
ThreadCleanWalletPassphrase : re-locks an encrypted wallet after user
|
||||||
|
has unlocked it for a period of time.
|
||||||
|
|
||||||
|
SendingDialogStartTransfer : used by pay-via-ip-address code (obsolete)
|
||||||
|
|
||||||
|
ThreadDelayedRepaint : repaint the gui
|
||||||
|
|
||||||
|
ThreadFlushWalletDB : Close the wallet.dat file if it hasn't been used
|
||||||
|
in 500ms.
|
||||||
|
|
||||||
|
ThreadRPCServer : Remote procedure call handler, listens on port 8332
|
||||||
|
for connections and services them.
|
||||||
|
|
||||||
|
ThreadBitcoinMiner : Generates bitcoins
|
||||||
|
|
||||||
|
ThreadMapPort : Universal plug-and-play startup/shutdown
|
||||||
|
|
||||||
|
Shutdown : Does an orderly shutdown of everything
|
||||||
|
|
||||||
|
ExitTimeout : Windows-only, sleeps 5 seconds then exits application
|
||||||
@@ -0,0 +1,147 @@
|
|||||||
|
Enviromint-qt: Qt5 GUI for Enviromint
|
||||||
|
===============================
|
||||||
|
|
||||||
|
Build instructions
|
||||||
|
===================
|
||||||
|
|
||||||
|
Debian
|
||||||
|
-------
|
||||||
|
|
||||||
|
First, make sure that the required packages for Qt5 development of your
|
||||||
|
distribution are installed, for Debian and Ubuntu these are:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
|
||||||
|
build-essential libboost-dev libboost-system-dev \
|
||||||
|
libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
|
||||||
|
libssl-dev libdb++-dev
|
||||||
|
|
||||||
|
then execute the following:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
qmake
|
||||||
|
make
|
||||||
|
|
||||||
|
Alternatively, install Qt Creator and open the `enviromint-qt.pro` file.
|
||||||
|
|
||||||
|
An executable named `enviromint-qt` will be built.
|
||||||
|
|
||||||
|
|
||||||
|
Windows
|
||||||
|
--------
|
||||||
|
|
||||||
|
Windows build instructions:
|
||||||
|
|
||||||
|
- Download the `QT Windows SDK`_ and install it. You don't need the Symbian stuff, just the desktop Qt.
|
||||||
|
|
||||||
|
- Compile openssl, boost and dbcxx.
|
||||||
|
|
||||||
|
- Open the .pro file in QT creator and build as normal (ctrl-B)
|
||||||
|
|
||||||
|
.. _`QT Windows SDK`: http://qt-project.org/downloads
|
||||||
|
|
||||||
|
|
||||||
|
Mac OS X
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Download and install the `Qt Mac OS X SDK`_. It is recommended to also install Apple's Xcode with UNIX tools.
|
||||||
|
|
||||||
|
- Download and install `MacPorts`_.
|
||||||
|
|
||||||
|
- Execute the following commands in a terminal to get the dependencies:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
sudo port selfupdate
|
||||||
|
sudo port install boost db48 miniupnpc
|
||||||
|
|
||||||
|
- Open the .pro file in Qt Creator and build as normal (cmd-B)
|
||||||
|
|
||||||
|
.. _`Qt Mac OS X SDK`: http://qt-project.org/downloads
|
||||||
|
.. _`MacPorts`: http://www.macports.org/install.php
|
||||||
|
|
||||||
|
|
||||||
|
Build configuration options
|
||||||
|
============================
|
||||||
|
|
||||||
|
UPNnP port forwarding
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
To use UPnP for port forwarding behind a NAT router (recommended, as more connections overall allow for a faster and more stable enviromint experience), pass the following argument to qmake:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
qmake "USE_UPNP=1"
|
||||||
|
|
||||||
|
(in **Qt Creator**, you can find the setting for additional qmake arguments under "Projects" -> "Build Settings" -> "Build Steps", then click "Details" next to **qmake**)
|
||||||
|
|
||||||
|
This requires miniupnpc for UPnP port mapping. It can be downloaded from
|
||||||
|
http://miniupnp.tuxfamily.org/files/. UPnP support is not compiled in by default.
|
||||||
|
|
||||||
|
Set USE_UPNP to a different value to control this:
|
||||||
|
|
||||||
|
+------------+--------------------------------------------------------------------------+
|
||||||
|
| USE_UPNP=- | no UPnP support, miniupnpc not required; |
|
||||||
|
+------------+--------------------------------------------------------------------------+
|
||||||
|
| USE_UPNP=0 | (the default) built with UPnP, support turned off by default at runtime; |
|
||||||
|
+------------+--------------------------------------------------------------------------+
|
||||||
|
| USE_UPNP=1 | build with UPnP support turned on by default at runtime. |
|
||||||
|
+------------+--------------------------------------------------------------------------+
|
||||||
|
|
||||||
|
Notification support for recent (k)ubuntu versions
|
||||||
|
---------------------------------------------------
|
||||||
|
|
||||||
|
To see desktop notifications on (k)ubuntu versions starting from 10.04, enable usage of the
|
||||||
|
FreeDesktop notification interface through DBUS using the following qmake option:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
qmake "USE_DBUS=1"
|
||||||
|
|
||||||
|
Generation of QR codes
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
libqrencode may be used to generate QRCode images for payment requests.
|
||||||
|
It can be downloaded from http://fukuchi.org/works/qrencode/index.html.en, or installed via your package manager. Pass the USE_QRCODE
|
||||||
|
flag to qmake to control this:
|
||||||
|
|
||||||
|
+--------------+--------------------------------------------------------------------------+
|
||||||
|
| USE_QRCODE=0 | (the default) No QRCode support - libarcode not required |
|
||||||
|
+--------------+--------------------------------------------------------------------------+
|
||||||
|
| USE_QRCODE=1 | QRCode support enabled |
|
||||||
|
+--------------+--------------------------------------------------------------------------+
|
||||||
|
|
||||||
|
|
||||||
|
Berkely DB version warning
|
||||||
|
==========================
|
||||||
|
|
||||||
|
A warning for people using the *static binary* version of Enviromint on a Linux/UNIX-ish system (tl;dr: **Berkely DB databases are not forward compatible**).
|
||||||
|
|
||||||
|
The static binary version of Enviromint is linked against libdb 5.0 (see also `this Debian issue`_).
|
||||||
|
|
||||||
|
Now the nasty thing is that databases from 5.X are not compatible with 4.X.
|
||||||
|
|
||||||
|
If the globally installed development package of Berkely DB installed on your system is 5.X, any source you
|
||||||
|
build yourself will be linked against that. The first time you run with a 5.X version the database will be upgraded,
|
||||||
|
and 4.X cannot open the new format. This means that you cannot go back to the old statically linked version without
|
||||||
|
significant hassle!
|
||||||
|
|
||||||
|
.. _`this Debian issue`: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621425
|
||||||
|
|
||||||
|
Ubuntu 11.10 warning
|
||||||
|
====================
|
||||||
|
|
||||||
|
Ubuntu 11.10 has a package called 'qt-at-spi' installed by default. At the time of writing, having that package
|
||||||
|
installed causes enviromint-qt to crash intermittently. The issue has been reported as `launchpad bug 857790`_, but
|
||||||
|
isn't yet fixed.
|
||||||
|
|
||||||
|
Until the bug is fixed, you can remove the qt-at-spi package to work around the problem, though this will presumably
|
||||||
|
disable screen reader functionality for Qt apps:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
sudo apt-get remove qt-at-spi
|
||||||
|
|
||||||
|
.. _`launchpad bug 857790`: https://bugs.launchpad.net/ubuntu/+source/qt-at-spi/+bug/857790
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
* update translations (ping tcatm on IRC for now)
|
||||||
|
|
||||||
|
* update (commit) version in sources
|
||||||
|
bitcoin-qt.pro
|
||||||
|
src/version.h
|
||||||
|
share/setup.nsi
|
||||||
|
doc/README*
|
||||||
|
|
||||||
|
* tag version in git
|
||||||
|
|
||||||
|
git tag -a v0.5.1
|
||||||
|
|
||||||
|
* write release notes. git shortlog helps a lot:
|
||||||
|
|
||||||
|
git shortlog --no-merges v0.5.0..
|
||||||
|
|
||||||
|
* perform gitian builds
|
||||||
|
|
||||||
|
* From a directory containing the bitcoin source, gitian-builder and gitian.sigs
|
||||||
|
export SIGNER=(your gitian key, ie bluematt, sipa, etc)
|
||||||
|
export VERSION=0.5.1
|
||||||
|
cd ./gitian-builder
|
||||||
|
|
||||||
|
* Fetch and build inputs:
|
||||||
|
mkdir -p inputs; cd inputs/
|
||||||
|
wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.6.tar.gz' -O miniupnpc-1.6.tar.gz
|
||||||
|
wget 'http://www.openssl.org/source/openssl-1.0.1b.tar.gz'
|
||||||
|
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
|
||||||
|
wget 'http://zlib.net/zlib-1.2.6.tar.gz'
|
||||||
|
wget 'ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.5.9.tar.gz'
|
||||||
|
wget 'http://fukuchi.org/works/qrencode/qrencode-3.2.0.tar.bz2'
|
||||||
|
wget 'http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.bz2'
|
||||||
|
wget 'http://download.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.4.tar.gz'
|
||||||
|
cd ..
|
||||||
|
./bin/gbuild ../bitcoin/contrib/gitian-descriptors/boost-win32.yml
|
||||||
|
cp build/out/boost-win32-1.47.0-gitian.zip inputs/
|
||||||
|
./bin/gbuild ../bitcoin/contrib/gitian-descriptors/qt-win32.yml
|
||||||
|
cp build/out/qt-win32-4.7.4-gitian.zip inputs/
|
||||||
|
./bin/gbuild ../bitcoin/contrib/gitian-descriptors/deps-win32.yml
|
||||||
|
cp build/out/bitcoin-deps-0.0.3.zip inputs/
|
||||||
|
|
||||||
|
* Build bitcoind and bitcoin-qt on Linux32, Linux64, and Win32:
|
||||||
|
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian.yml
|
||||||
|
./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian.yml
|
||||||
|
pushd build/out
|
||||||
|
zip -r bitcoin-${VERSION}-linux-gitian.zip *
|
||||||
|
mv bitcoin-${VERSION}-linux-gitian.zip ../../
|
||||||
|
popd
|
||||||
|
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml
|
||||||
|
./bin/gsign --signer $SIGNER --release ${VERSION}-win32 --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml
|
||||||
|
pushd build/out
|
||||||
|
zip -r bitcoin-${VERSION}-win32-gitian.zip *
|
||||||
|
mv bitcoin-${VERSION}-win32-gitian.zip ../../
|
||||||
|
popd
|
||||||
|
|
||||||
|
Build output expected:
|
||||||
|
1. linux 32-bit and 64-bit binaries + source (bitcoin-${VERSION}-linux-gitian.zip)
|
||||||
|
2. windows 32-bit binary, installer + source (bitcoin-${VERSION}-win32-gitian.zip)
|
||||||
|
3. Gitian signatures (in gitian.sigs/${VERSION}[-win32]/(your gitian key)/
|
||||||
|
|
||||||
|
* repackage gitian builds for release as stand-alone zip/tar/installer exe
|
||||||
|
|
||||||
|
* Linux .tar.gz:
|
||||||
|
unzip bitcoin-${VERSION}-linux-gitian.zip -d bitcoin-${VERSION}-linux
|
||||||
|
tar czvf bitcoin-${VERSION}-linux.tar.gz bitcoin-${VERSION}-linux
|
||||||
|
rm -rf bitcoin-${VERSION}-linux
|
||||||
|
|
||||||
|
* Windows .zip and setup.exe:
|
||||||
|
unzip bitcoin-${VERSION}-win32-gitian.zip -d bitcoin-${VERSION}-win32
|
||||||
|
mv bitcoin-${VERSION}-win32/bitcoin-*-setup.exe .
|
||||||
|
zip -r bitcoin-${VERSION}-win32.zip bitcoin-${VERSION}-win32
|
||||||
|
rm -rf bitcoin-${VERSION}-win32
|
||||||
|
|
||||||
|
* perform Mac build
|
||||||
|
See this blog post for how Gavin set up his build environment to build the OSX
|
||||||
|
release; note that a patched version of macdeployqt is not needed anymore, as
|
||||||
|
the required functionality and fixes are implemented directly in macdeployqtplus:
|
||||||
|
http://gavintech.blogspot.com/2011/11/deploying-bitcoin-qt-on-osx.html
|
||||||
|
Gavin also had trouble with the macports py27-appscript package; he
|
||||||
|
ended up installing a version that worked with: /usr/bin/easy_install-2.7 appscript
|
||||||
|
|
||||||
|
qmake RELEASE=1 USE_UPNP=1 USE_QRCODE=1 bitcoin-qt.pro
|
||||||
|
make
|
||||||
|
export QTDIR=/opt/local/share/qt4 # needed to find translations/qt_*.qm files
|
||||||
|
T=$(contrib/qt_translations.py $QTDIR/translations src/qt/locale)
|
||||||
|
python2.7 contrib/macdeploy/macdeployqtplus Bitcoin-Qt.app -add-qt-tr $T -dmg -fancy contrib/macdeploy/fancy.plist
|
||||||
|
|
||||||
|
Build output expected:
|
||||||
|
Bitcoin-Qt.dmg
|
||||||
|
|
||||||
|
* upload builds to SourceForge
|
||||||
|
|
||||||
|
* create SHA256SUMS for builds, and PGP-sign it
|
||||||
|
|
||||||
|
* update bitcoin.org version
|
||||||
|
|
||||||
|
* update forum version
|
||||||
|
|
||||||
|
* update wiki download links
|
||||||
|
|
||||||
|
* update wiki changelog: https://en.bitcoin.it/wiki/Changelog
|
||||||
|
|
||||||
|
* Commit your signature to gitian.sigs:
|
||||||
|
pushd gitian.sigs
|
||||||
|
git add ${VERSION}/${SIGNER}
|
||||||
|
git add ${VERSION}-win32/${SIGNER}
|
||||||
|
git commit -a
|
||||||
|
git push # Assuming you can push to the gitian.sigs tree
|
||||||
|
popd
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* After 3 or more people have gitian-built, repackage gitian-signed zips:
|
||||||
|
|
||||||
|
* From a directory containing bitcoin source, gitian.sigs and gitian zips
|
||||||
|
export VERSION=0.5.1
|
||||||
|
mkdir bitcoin-${VERSION}-linux-gitian
|
||||||
|
pushd bitcoin-${VERSION}-linux-gitian
|
||||||
|
unzip ../bitcoin-${VERSION}-linux-gitian.zip
|
||||||
|
mkdir gitian
|
||||||
|
cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/
|
||||||
|
for signer in $(ls ../gitian.sigs/${VERSION}/); do
|
||||||
|
cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert
|
||||||
|
cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig
|
||||||
|
done
|
||||||
|
zip -r bitcoin-${VERSION}-linux-gitian.zip *
|
||||||
|
cp bitcoin-${VERSION}-linux-gitian.zip ../
|
||||||
|
popd
|
||||||
|
mkdir bitcoin-${VERSION}-win32-gitian
|
||||||
|
pushd bitcoin-${VERSION}-win32-gitian
|
||||||
|
unzip ../bitcoin-${VERSION}-win32-gitian.zip
|
||||||
|
mkdir gitian
|
||||||
|
cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/
|
||||||
|
for signer in $(ls ../gitian.sigs/${VERSION}-win32/); do
|
||||||
|
cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert
|
||||||
|
cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig
|
||||||
|
done
|
||||||
|
zip -r bitcoin-${VERSION}-win32-gitian.zip *
|
||||||
|
cp bitcoin-${VERSION}-win32-gitian.zip ../
|
||||||
|
popd
|
||||||
|
|
||||||
|
* Upload gitian zips to SourceForge
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
Translations
|
||||||
|
============
|
||||||
|
|
||||||
|
The Qt GUI can be easily translated into other languages. Here's how we
|
||||||
|
handle those translations.
|
||||||
|
|
||||||
|
Files and Folders
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
### bitcoin-qt.pro
|
||||||
|
|
||||||
|
This file takes care of generating `.qm` files from `.ts` files. It is mostly
|
||||||
|
automated.
|
||||||
|
|
||||||
|
### src/qt/bitcoin.qrc
|
||||||
|
|
||||||
|
This file must be updated whenever a new translation is added. Please note that
|
||||||
|
files must end with `.qm`, not `.ts`.
|
||||||
|
|
||||||
|
<qresource prefix="/translations">
|
||||||
|
<file alias="en">locale/bitcoin_en.qm</file>
|
||||||
|
...
|
||||||
|
</qresource>
|
||||||
|
|
||||||
|
### src/qt/locale/
|
||||||
|
|
||||||
|
This directory contains all translations. Filenames must adhere to this format:
|
||||||
|
|
||||||
|
bitcoin_xx_YY.ts or bitcoin_xx.ts
|
||||||
|
|
||||||
|
#### Source file
|
||||||
|
|
||||||
|
`src/qt/locale/bitcoin_en.ts` is treated in a special way. It is used as the
|
||||||
|
source for all other translations. Whenever a string in the code is changed
|
||||||
|
this file must be updated to reflect those changes. Usually, this can be
|
||||||
|
accomplished by running `lupdate` (included in the Qt SDK).
|
||||||
|
|
||||||
|
An updated source file should be merged to github and transifex will pick it
|
||||||
|
up from there. Afterwards the new strings show up as "Remaining" in transifex
|
||||||
|
and can be translated.
|
||||||
|
|
||||||
|
Syncing with transifex
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
We are using http://transifex.net as a frontend for translating the client.
|
||||||
|
|
||||||
|
https://www.transifex.net/projects/p/bitcoin/resource/tx/
|
||||||
|
|
||||||
|
The "transifex client" (see: http://help.transifex.net/features/client/)
|
||||||
|
will help with fetching new translations from transifex. Use the following
|
||||||
|
config to be able to connect with the client.
|
||||||
|
|
||||||
|
### .tx/config
|
||||||
|
|
||||||
|
[main]
|
||||||
|
host = https://www.transifex.net
|
||||||
|
|
||||||
|
[bitcoin.tx]
|
||||||
|
file_filter = src/qt/locale/bitcoin_<lang>.ts
|
||||||
|
source_file = src/qt/locale/bitcoin_en.ts
|
||||||
|
source_lang = en
|
||||||
|
|
||||||
|
### .tx/config (for Windows)
|
||||||
|
|
||||||
|
[main]
|
||||||
|
host = https://www.transifex.net
|
||||||
|
|
||||||
|
[bitcoin.tx]
|
||||||
|
file_filter = src\qt\locale\bitcoin_<lang>.ts
|
||||||
|
source_file = src\qt\locale\bitcoin_en.ts
|
||||||
|
source_lang = en
|
||||||
|
|
||||||
|
It is also possible to directly download new translations one by one from transifex.
|
||||||
|
|
||||||
|
### Fetching new translations
|
||||||
|
|
||||||
|
1. `tx pull -a`
|
||||||
|
2. update `src/qt/bitcoin.qrc` manually or via
|
||||||
|
`ls src/qt/locale/*ts|xargs -n1 basename|sed 's/\(bitcoin_\(.*\)\).ts/<file alias="\2">locale/\1.qm<\/file>/'`
|
||||||
|
3. `git add` new translations from `src/qt/locale/`
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ $# -gt 0 ]; then
|
||||||
|
FILE="$1"
|
||||||
|
shift
|
||||||
|
if [ -f "$FILE" ]; then
|
||||||
|
INFO="$(head -n 1 "$FILE")"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Usage: $0 <filename>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e "$(which git)" ]; then
|
||||||
|
# clean 'dirty' status of touched files that haven't been modified
|
||||||
|
git diff >/dev/null 2>/dev/null
|
||||||
|
|
||||||
|
# get a string like "v0.6.0-66-g59887e8-dirty"
|
||||||
|
DESC="$(git describe --dirty 2>/dev/null)"
|
||||||
|
|
||||||
|
# get a string like "2012-04-10 16:27:19 +0200"
|
||||||
|
TIME="$(git log -n 1 --format="%ci")"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$DESC" ]; then
|
||||||
|
NEWINFO="#define BUILD_DESC \"$DESC\""
|
||||||
|
else
|
||||||
|
NEWINFO="// No build information available"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# only update build.h if necessary
|
||||||
|
if [ "$INFO" != "$NEWINFO" ]; then
|
||||||
|
echo "$NEWINFO" >"$FILE"
|
||||||
|
echo "#define BUILD_DATE \"$TIME\"" >>"$FILE"
|
||||||
|
fi
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 126 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 299 KiB |
@@ -0,0 +1,232 @@
|
|||||||
|
/* XPM */
|
||||||
|
static const char * bitcoin32_xpm[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 194 2",
|
||||||
|
" c #745305",
|
||||||
|
". c #785704",
|
||||||
|
"X c #7C5903",
|
||||||
|
"o c #75560B",
|
||||||
|
"O c #77590F",
|
||||||
|
"+ c #7C5C0B",
|
||||||
|
"@ c #795B12",
|
||||||
|
"# c #7F631D",
|
||||||
|
"$ c #825E07",
|
||||||
|
"% c #825F0B",
|
||||||
|
"& c #85610A",
|
||||||
|
"* c #8C660C",
|
||||||
|
"= c #8E680E",
|
||||||
|
"- c #916B0F",
|
||||||
|
"; c #856515",
|
||||||
|
": c #8B6714",
|
||||||
|
"> c #8F6A16",
|
||||||
|
", c #816218",
|
||||||
|
"< c #88691C",
|
||||||
|
"1 c #926D12",
|
||||||
|
"2 c #936F1C",
|
||||||
|
"3 c #997417",
|
||||||
|
"4 c #94721E",
|
||||||
|
"5 c #9B761C",
|
||||||
|
"6 c #9F781C",
|
||||||
|
"7 c #A17B1E",
|
||||||
|
"8 c #826622",
|
||||||
|
"9 c #916E20",
|
||||||
|
"0 c #967425",
|
||||||
|
"q c #9D7420",
|
||||||
|
"w c #9C7923",
|
||||||
|
"e c #997728",
|
||||||
|
"r c #99792C",
|
||||||
|
"t c #A37D23",
|
||||||
|
"y c #A37F2C",
|
||||||
|
"u c #A68125",
|
||||||
|
"i c #AB8225",
|
||||||
|
"p c #A5832B",
|
||||||
|
"a c #AA852C",
|
||||||
|
"s c #B28A2C",
|
||||||
|
"d c #A58233",
|
||||||
|
"f c #AC8734",
|
||||||
|
"g c #AE8C33",
|
||||||
|
"h c #AC8C3C",
|
||||||
|
"j c #B28C33",
|
||||||
|
"k c #B98E34",
|
||||||
|
"l c #B28D3D",
|
||||||
|
"z c #B59136",
|
||||||
|
"x c #BC9335",
|
||||||
|
"c c #B3913E",
|
||||||
|
"v c #BC933A",
|
||||||
|
"b c #BF9A3D",
|
||||||
|
"n c #C19235",
|
||||||
|
"m c #C2953C",
|
||||||
|
"M c #C39B3C",
|
||||||
|
"N c #CA9C3D",
|
||||||
|
"B c #B59343",
|
||||||
|
"V c #BE9642",
|
||||||
|
"C c #B69A44",
|
||||||
|
"Z c #BD9A45",
|
||||||
|
"A c #B49649",
|
||||||
|
"S c #BB9A49",
|
||||||
|
"D c #BB9F52",
|
||||||
|
"F c #BFA256",
|
||||||
|
"G c #C49C43",
|
||||||
|
"H c #CA9D41",
|
||||||
|
"J c #C59D4A",
|
||||||
|
"K c #C99E4D",
|
||||||
|
"L c #C3A144",
|
||||||
|
"P c #CDA244",
|
||||||
|
"I c #CFAA47",
|
||||||
|
"U c #C3A14D",
|
||||||
|
"Y c #CDA24A",
|
||||||
|
"T c #CCAB49",
|
||||||
|
"R c #D2A644",
|
||||||
|
"E c #D2A54B",
|
||||||
|
"W c #D6AA4C",
|
||||||
|
"Q c #DAAE4E",
|
||||||
|
"! c #DAB04F",
|
||||||
|
"~ c #C7A656",
|
||||||
|
"^ c #CDA452",
|
||||||
|
"/ c #CFAC52",
|
||||||
|
"( c #C0A65E",
|
||||||
|
") c #CEA75A",
|
||||||
|
"_ c #CCAC59",
|
||||||
|
"` c #D2AB53",
|
||||||
|
"' c #DCAF52",
|
||||||
|
"] c #D6AD5A",
|
||||||
|
"[ c #D9AE5B",
|
||||||
|
"{ c #DCB556",
|
||||||
|
"} c #DFB855",
|
||||||
|
"| c #D6B25F",
|
||||||
|
" . c #DCB35C",
|
||||||
|
".. c #DEBE5E",
|
||||||
|
"X. c #E2B656",
|
||||||
|
"o. c #E1B55A",
|
||||||
|
"O. c #E6BC5D",
|
||||||
|
"+. c #E9BD5E",
|
||||||
|
"@. c #C3AA63",
|
||||||
|
"#. c #CCAD62",
|
||||||
|
"$. c #D4AF62",
|
||||||
|
"%. c #CDB565",
|
||||||
|
"&. c #CEB46D",
|
||||||
|
"*. c #D7B164",
|
||||||
|
"=. c #DBB362",
|
||||||
|
"-. c #D6BD64",
|
||||||
|
";. c #DDBA64",
|
||||||
|
":. c #D3B66C",
|
||||||
|
">. c #DFB86B",
|
||||||
|
",. c #CEB772",
|
||||||
|
"<. c #D0B771",
|
||||||
|
"1. c #D4BA73",
|
||||||
|
"2. c #D9BE77",
|
||||||
|
"3. c #D6BE79",
|
||||||
|
"4. c #D8BF7A",
|
||||||
|
"5. c #E4BB62",
|
||||||
|
"6. c #E9BF64",
|
||||||
|
"7. c #E4BC69",
|
||||||
|
"8. c #E9BF69",
|
||||||
|
"9. c #E0BB71",
|
||||||
|
"0. c #E9C05E",
|
||||||
|
"q. c #D2C279",
|
||||||
|
"w. c #DBC27C",
|
||||||
|
"e. c #E2C667",
|
||||||
|
"r. c #EDC364",
|
||||||
|
"t. c #E3C16E",
|
||||||
|
"y. c #ECC46C",
|
||||||
|
"u. c #EDCC6C",
|
||||||
|
"i. c #F1C764",
|
||||||
|
"p. c #F5CA66",
|
||||||
|
"a. c #F9CD67",
|
||||||
|
"s. c #F5CC6A",
|
||||||
|
"d. c #F9CD6B",
|
||||||
|
"f. c #FBD36F",
|
||||||
|
"g. c #EDC572",
|
||||||
|
"h. c #E5CF77",
|
||||||
|
"j. c #ECCA74",
|
||||||
|
"k. c #E0C67E",
|
||||||
|
"l. c #EFCE78",
|
||||||
|
"z. c #F6CE72",
|
||||||
|
"x. c #FBCF71",
|
||||||
|
"c. c #F4CE79",
|
||||||
|
"v. c #F4D273",
|
||||||
|
"b. c #FCD473",
|
||||||
|
"n. c #F4DC75",
|
||||||
|
"m. c #FEDA74",
|
||||||
|
"M. c #F6D77C",
|
||||||
|
"N. c #FBD47A",
|
||||||
|
"B. c #F1DA7B",
|
||||||
|
"V. c #FDDA7C",
|
||||||
|
"C. c #FEE27D",
|
||||||
|
"Z. c #DDC683",
|
||||||
|
"A. c #DFC884",
|
||||||
|
"S. c #E4CA84",
|
||||||
|
"D. c #E3CC89",
|
||||||
|
"F. c #E7D183",
|
||||||
|
"G. c #EFD280",
|
||||||
|
"H. c #EFDC82",
|
||||||
|
"J. c #ECD48D",
|
||||||
|
"K. c #EFDA8C",
|
||||||
|
"L. c #F9D783",
|
||||||
|
"P. c #F2DF83",
|
||||||
|
"I. c #FCDB83",
|
||||||
|
"U. c #F5DC8F",
|
||||||
|
"Y. c #FADD8B",
|
||||||
|
"T. c #EBD593",
|
||||||
|
"R. c #EFDA99",
|
||||||
|
"E. c #F3DD93",
|
||||||
|
"W. c #F3DF9F",
|
||||||
|
"Q. c #FFE385",
|
||||||
|
"!. c #FEE986",
|
||||||
|
"~. c #FDE48C",
|
||||||
|
"^. c #FEEC8E",
|
||||||
|
"/. c #ECE199",
|
||||||
|
"(. c #F6E591",
|
||||||
|
"). c #FEE494",
|
||||||
|
"_. c #FEEB93",
|
||||||
|
"`. c #FEE69A",
|
||||||
|
"'. c #FFEB9B",
|
||||||
|
"]. c #FFF197",
|
||||||
|
"[. c #FFF39B",
|
||||||
|
"{. c #FEF99B",
|
||||||
|
"}. c #F6E2A2",
|
||||||
|
"|. c #F9E5A5",
|
||||||
|
" X c #F7E9A5",
|
||||||
|
".X c #FEECA4",
|
||||||
|
"XX c #FBE7A8",
|
||||||
|
"oX c #FDEAAB",
|
||||||
|
"OX c #F7F2AA",
|
||||||
|
"+X c #FEF2AC",
|
||||||
|
"@X c #FDF4B4",
|
||||||
|
"#X c #FFFABA",
|
||||||
|
"$X c #FFFEC2",
|
||||||
|
"%X c None",
|
||||||
|
/* pixels */
|
||||||
|
"%X%X%X%X%X%X%X%X%X%X%X%Xp t 6 5 w t w %X%X%X%X%X%X%X%X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%X%X%X%Xu u x I X.0.s.u.0.W x 7 4 %X%X%X%X%X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%X%Xy i I i.a.f.m.m.b.f.s.a.s.i.W 7 > %X%X%X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%Xt M 0.a.m.m.m.m.f.d.p.p.p.f.d.f.i.b 1 < %X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X7 ! d.f.f.m.f.+.W P R I Q 5.v.V.V.z.f.{ 5 + %X%X%X%X%X",
|
||||||
|
"%X%X%X%Xu X.f.m.m.f.' H s ~ V y _ Z J o.g.L.L.Q.!.e.5 X %X%X%X%X",
|
||||||
|
"%X%X%Xu X.b.C.m.+.N m n t }.3.> }.w.V 5.y.y.Y.[.^.^.-.1 + %X%X%X",
|
||||||
|
"%X%Xt P m.N.m.X.v v v k 6 }.1.: /.4.c 7.N.N.v.!.{.{.^.L & %X%X%X",
|
||||||
|
"%X%Xg Y.Y.V.+.m k a t t : }.1.% }.1.r | l.B.M.b.!.{.^.n.7 X %X%X",
|
||||||
|
"%Xp -._.'.Y.' Y n D.}.}.|.oXXX|.oX XT.w.F _ j.v.v._.^.C.T & @ %X",
|
||||||
|
"%Xa (.'.'.9.[ [ K S.}.oXoXoXoXXXoXoXoXoX XD / s.d.v.!.C.v.3 o %X",
|
||||||
|
"%XU '.'.Y.[ [ [ [ J f <.oXoX( 2 f S J.oXoXT.j r.s.i.C.C.C.z X %X",
|
||||||
|
"p e.'.'.F. .=.=.=.=.) 1.oXoX@.f . .F oXoX}.a +.i.i.b.C.m.I X O ",
|
||||||
|
"u w.'.[.j.5.8.7.7.7.] 2.oXoX@.y W c &.oXoXZ.k r.s.i.s.V.m.} = o ",
|
||||||
|
"u H.[.{.y.8.y.g.8.g.7.2.oXoXA.@.&.D.oXoXT.e G +.O.O.5.V.m.0.- o ",
|
||||||
|
"u !.].[.r.8.y.g.g.g.7.4.oXoXoXoXoXoXoXoXoX<.y W X.o.o.m.m.0.- o ",
|
||||||
|
"u B._._.5.5.8.y.g.c.g.w.oXoX,.h A F <..XoXoX1.k ' ' ' V.N.r.- ",
|
||||||
|
"u u.Q.~.r.6.z.N.V.I.v.k.oXoX@.B | _ c 1.oXoX}.a ' ' O.I.b.O.= o ",
|
||||||
|
"u ..Q.Q.v.i.s.c.N.L.l.Z.oXoX@.B t.=.S &.oXoXXXy Y R +.N.b.Q % o ",
|
||||||
|
"t T C.I.I.6.u.z.z.5.S 1.oXoX@.e B h D |.oXoXS.f Y Y 6.d.d.n X O ",
|
||||||
|
"%Xs m.V.Q.r.r.z.5.<.}.oXoXoXXXW.}.oXoXoXoXW.h G H R a.p.s.7 %X",
|
||||||
|
"%X7 O.V.V.v.+.r.` 4.oXoXoXoXoXoXoXoXXXR.<.h v N N o.a.p.Q = %X",
|
||||||
|
"%Xw x v.v.v.r.+. .Z l d e }.Z.r }.3.d l V G n n R a.s.a.s X O %X",
|
||||||
|
"%X%X6 { v.l.v.+.O.5.=.^ d }.4.9 }.1.f J G m m G d.d.x.Q = %X%X",
|
||||||
|
"%X%X%Xs u.v.v.v.r.6.o. .l }.4.9 W.4.l ^ ^ J ) c.N.N.y.7 X O %X%X",
|
||||||
|
"%X%X%X5 z v.v.M.I.g.;. .J 1.#.B 1.#.) 7.$.S..X'.W.Y.j $ %X%X%X",
|
||||||
|
"%X%X%X%X5 b N.Y.~.).Y.j.5.$.=.=.$.*.2.J.@X$X#X#XoXC $ %X%X%X%X",
|
||||||
|
"%X%X%X%X%X3 z U.@X+X`.`.`.(.E.E.E.|.@X@X#X#X#X/.j % %X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%Xw a q.OX|.).`._.'.'.XX.X.X+X+X X%.w X o %X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%X%X%Xw a _ j.~.~.).).`.`.`.F._ t & . # %X%X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%X%X%X%X%X4 3 t z L U Z z t 1 $ . 8 %X%X%X%X%X%X%X%X%X",
|
||||||
|
"%X%X%X%X%X%X%X%X%X%X%X%X%X< ; & + + , 8 %X%X%X%X%X%X%X%X%X%X%X%X"
|
||||||
|
};
|
||||||
@@ -0,0 +1,292 @@
|
|||||||
|
/* XPM */
|
||||||
|
static const char * bitcoin80_xpm[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"80 80 206 2",
|
||||||
|
" c #725203",
|
||||||
|
". c #785706",
|
||||||
|
"X c #7B5907",
|
||||||
|
"o c #7C5A09",
|
||||||
|
"O c #7F5F10",
|
||||||
|
"+ c #815E0B",
|
||||||
|
"@ c #85620C",
|
||||||
|
"# c #89650F",
|
||||||
|
"$ c #856313",
|
||||||
|
"% c #896614",
|
||||||
|
"& c #8D6913",
|
||||||
|
"* c #886718",
|
||||||
|
"= c #8D6B1B",
|
||||||
|
"- c #926D14",
|
||||||
|
"; c #926E1B",
|
||||||
|
": c #967116",
|
||||||
|
"> c #997317",
|
||||||
|
", c #95711E",
|
||||||
|
"< c #9B7419",
|
||||||
|
"1 c #9F781B",
|
||||||
|
"2 c #A27B1D",
|
||||||
|
"3 c #8F6F22",
|
||||||
|
"4 c #926F21",
|
||||||
|
"5 c #947323",
|
||||||
|
"6 c #9A7623",
|
||||||
|
"7 c #9D7925",
|
||||||
|
"8 c #957628",
|
||||||
|
"9 c #9A7729",
|
||||||
|
"0 c #9D7B2B",
|
||||||
|
"q c #9D7F33",
|
||||||
|
"w c #A47D23",
|
||||||
|
"e c #A97F27",
|
||||||
|
"r c #A37E2B",
|
||||||
|
"t c #9F8030",
|
||||||
|
"y c #A78021",
|
||||||
|
"u c #AC8425",
|
||||||
|
"i c #A5802D",
|
||||||
|
"p c #AC842B",
|
||||||
|
"a c #AF8829",
|
||||||
|
"s c #B2872C",
|
||||||
|
"d c #B28B2D",
|
||||||
|
"f c #A68333",
|
||||||
|
"g c #AA8633",
|
||||||
|
"h c #AD8A36",
|
||||||
|
"j c #A4863A",
|
||||||
|
"k c #A88638",
|
||||||
|
"l c #A7893B",
|
||||||
|
"z c #AC8B3B",
|
||||||
|
"x c #B28732",
|
||||||
|
"c c #B48C32",
|
||||||
|
"v c #B98E34",
|
||||||
|
"b c #B28D3B",
|
||||||
|
"n c #B88F3C",
|
||||||
|
"m c #B69033",
|
||||||
|
"M c #BD9235",
|
||||||
|
"N c #B4913D",
|
||||||
|
"B c #BC943A",
|
||||||
|
"V c #BE993C",
|
||||||
|
"C c #C19336",
|
||||||
|
"Z c #C1953B",
|
||||||
|
"A c #C49A3C",
|
||||||
|
"S c #C99C3D",
|
||||||
|
"D c #CDA13F",
|
||||||
|
"F c #D0A33F",
|
||||||
|
"G c #A88B40",
|
||||||
|
"H c #B08F40",
|
||||||
|
"J c #AE9142",
|
||||||
|
"K c #AE944C",
|
||||||
|
"L c #B49443",
|
||||||
|
"P c #BB9542",
|
||||||
|
"I c #B49946",
|
||||||
|
"U c #BD9846",
|
||||||
|
"Y c #B3964C",
|
||||||
|
"T c #BB974A",
|
||||||
|
"R c #B6994A",
|
||||||
|
"E c #BF9C4A",
|
||||||
|
"W c #B69B53",
|
||||||
|
"Q c #B99D53",
|
||||||
|
"! c #BCA055",
|
||||||
|
"~ c #BDA25A",
|
||||||
|
"^ c #C49742",
|
||||||
|
"/ c #C49C43",
|
||||||
|
"( c #CB9E42",
|
||||||
|
") c #C49D4B",
|
||||||
|
"_ c #C99E4C",
|
||||||
|
"` c #C29F52",
|
||||||
|
"' c #C5A244",
|
||||||
|
"] c #CDA245",
|
||||||
|
"[ c #C5A34C",
|
||||||
|
"{ c #CCA34B",
|
||||||
|
"} c #CCA94D",
|
||||||
|
"| c #D2A445",
|
||||||
|
" . c #D1A54B",
|
||||||
|
".. c #D5AA4E",
|
||||||
|
"X. c #DBAF4F",
|
||||||
|
"o. c #C6A352",
|
||||||
|
"O. c #CBA554",
|
||||||
|
"+. c #C5AA57",
|
||||||
|
"@. c #CEAC54",
|
||||||
|
"#. c #C4A65A",
|
||||||
|
"$. c #CDA458",
|
||||||
|
"%. c #C2A85F",
|
||||||
|
"&. c #CEAA5B",
|
||||||
|
"*. c #D0A550",
|
||||||
|
"=. c #D4AB53",
|
||||||
|
"-. c #DBAE53",
|
||||||
|
";. c #D0A75B",
|
||||||
|
":. c #D4AC5A",
|
||||||
|
">. c #D9AE5C",
|
||||||
|
",. c #CEB25E",
|
||||||
|
"<. c #D4B156",
|
||||||
|
"1. c #DDB156",
|
||||||
|
"2. c #D4B25C",
|
||||||
|
"3. c #DCB35D",
|
||||||
|
"4. c #D7B85C",
|
||||||
|
"5. c #DCBA5E",
|
||||||
|
"6. c #E2B355",
|
||||||
|
"7. c #E2B65B",
|
||||||
|
"8. c #E4BA5D",
|
||||||
|
"9. c #EABD5E",
|
||||||
|
"0. c #C5AA62",
|
||||||
|
"q. c #CCAE63",
|
||||||
|
"w. c #C6AE69",
|
||||||
|
"e. c #D5AF62",
|
||||||
|
"r. c #CEB167",
|
||||||
|
"t. c #CCB36C",
|
||||||
|
"y. c #D5B162",
|
||||||
|
"u. c #DCB462",
|
||||||
|
"i. c #D7B964",
|
||||||
|
"p. c #DCBC64",
|
||||||
|
"a. c #D2B66B",
|
||||||
|
"s. c #DCB669",
|
||||||
|
"d. c #D7BE69",
|
||||||
|
"f. c #DFB86A",
|
||||||
|
"g. c #D0B771",
|
||||||
|
"h. c #D2BA74",
|
||||||
|
"j. c #D5BE78",
|
||||||
|
"k. c #E1B766",
|
||||||
|
"l. c #E4BB63",
|
||||||
|
"z. c #E9BE63",
|
||||||
|
"x. c #E3BB6A",
|
||||||
|
"c. c #E9BF6A",
|
||||||
|
"v. c #E1BE72",
|
||||||
|
"b. c #DDC16B",
|
||||||
|
"n. c #DAC27E",
|
||||||
|
"m. c #E4C164",
|
||||||
|
"M. c #ECC264",
|
||||||
|
"N. c #E4C36B",
|
||||||
|
"B. c #EBC36C",
|
||||||
|
"V. c #E7C96F",
|
||||||
|
"C. c #EECA6E",
|
||||||
|
"Z. c #F1C564",
|
||||||
|
"A. c #F1C76A",
|
||||||
|
"S. c #F5CB6C",
|
||||||
|
"D. c #FACE6D",
|
||||||
|
"F. c #F4D06F",
|
||||||
|
"G. c #FCD06E",
|
||||||
|
"H. c #E5C371",
|
||||||
|
"J. c #EDC573",
|
||||||
|
"K. c #E4CA73",
|
||||||
|
"L. c #ECCC74",
|
||||||
|
"P. c #E7CF7A",
|
||||||
|
"I. c #EBCD7A",
|
||||||
|
"U. c #F3CD73",
|
||||||
|
"Y. c #F8CE71",
|
||||||
|
"T. c #F3CD7A",
|
||||||
|
"R. c #EDD076",
|
||||||
|
"E. c #EDD17B",
|
||||||
|
"W. c #F4D274",
|
||||||
|
"Q. c #FBD274",
|
||||||
|
"!. c #FED977",
|
||||||
|
"~. c #F3D47B",
|
||||||
|
"^. c #FDD47A",
|
||||||
|
"/. c #F5DA7C",
|
||||||
|
"(. c #FDDA7C",
|
||||||
|
"). c #FFE07F",
|
||||||
|
"_. c #DBC481",
|
||||||
|
"`. c #DFC885",
|
||||||
|
"'. c #E1CA86",
|
||||||
|
"]. c #EACC80",
|
||||||
|
"[. c #E4CD8A",
|
||||||
|
"{. c #EED383",
|
||||||
|
"}. c #E7D18F",
|
||||||
|
"|. c #EAD38C",
|
||||||
|
" X c #F4D680",
|
||||||
|
".X c #FDD780",
|
||||||
|
"XX c #F5DA83",
|
||||||
|
"oX c #FCDC84",
|
||||||
|
"OX c #F5DB8A",
|
||||||
|
"+X c #FADE89",
|
||||||
|
"@X c #EAD492",
|
||||||
|
"#X c #EED896",
|
||||||
|
"$X c #EFDA9A",
|
||||||
|
"%X c #F1DD9D",
|
||||||
|
"&X c #FDE283",
|
||||||
|
"*X c #F6E18D",
|
||||||
|
"=X c #FEE48D",
|
||||||
|
"-X c #FFE692",
|
||||||
|
";X c #FFE894",
|
||||||
|
":X c #FBE799",
|
||||||
|
">X c #FFEA98",
|
||||||
|
",X c #F6E2A3",
|
||||||
|
"<X c #FAE6A6",
|
||||||
|
"1X c #FAE7A8",
|
||||||
|
"2X c #FDEAAB",
|
||||||
|
"3X c None",
|
||||||
|
/* pixels */
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u u u u y y u y 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u u u u u u a u u u u u u a u u 2 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u u u u u s m V D ' { ' D M d u u a u u u u 2 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u u u M } m.~.oX=X=X=X=X=X-X-X=X&X/.m.=.V u u a u u w 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u u M 4.~.=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X/.5.Z u u u u u 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u ] V.&X=X=X&X=X=X=X=X=X=X=X=X=X&X=X=X=X=X=X=X=X=X=X=XW.} a u u u 2 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu a u u ' W.=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X+X=X=X=X&X=X=X=X~.} a u u u < 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u M N.=X&X=X=X=X=X=X=X=X-X=X=X=X=X&X=X=X=XoX=X=X=X=X&X+X=X=X=X=X=X=X=XL.M u u u < 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u u } XX=X=X=X&X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X*X=X=X=X=X=X=X=X=X=X=X=X=X=X=XoX<.a u u 2 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u s m.&X=X=X=X=X=X=X=X=X=X=X=X=X=X/.L.M.m.9.m.9.m.C.~.&X*X=X=X=X=X=X=X=X=X=X=X=X=XV.m u u 2 o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3Xu u u c R.=X=X=X=X=X=X=X=X=X=X=XoXC.1.| S S A S D D D D ] ] ..<.N./.=X-X=X-X=X=X=X=X=X=X=XXXZ u a 2 o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3Xu u u m XX=X=X=X=X=X=X=X=X=X=XW.3.| ^ A C M M M C S S A A A / ( { =.<.l.I.=X-X-X=X=X=X=X=X=X=X=XV a u 2 . 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3Xu u m /.=X=X=X-X=X=X=X=X=X~.1.D ] S Z v x p s u s d d v c c v V { =.7.8.7.l.T.=X-X=X-X-X-X-X-X=X=XV u a 1 3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3Xu u d /.=X=X=X=X=X=X=X=X&X8.^ A ( S M v e $.r.e.r.u w i a.a.a.&.b ^ =.l.l.l.c.z.z.XX-X-X-X-X=X-X-X;X&XV u u : 3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3Xu u s R.=X=X=X=X=X=X=X=XU.{ ^ Z C ( A M u w [.2X2X2X0 - 7 2X2X1X@Xi P *.l.x.B.U.C.z.z.W.-X-X-X-X-X-X=X-X*Xd a u # . 3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3Xu u u l.=X=X=X=X-X=X=X=Xm.Z Z Z Z n Z Z v e , '.2X2X2X5 & ; 2X2X2X}.7 b { 3.x.^.^.^.Y.A.z.R.-X;X;X;X;X-X;X-XP.a u y . 3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3Xu u } -X-X=X-X=X=X=X=Xl.M M Z C C C C C x e ; '.2X2X2X, $ = 2X2X2X}.6 h ) >.J..X.X.X.X(.W.Z.C.&X;X;X;X;X-X-X-X<.u u < 3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3Xu u c oX=X=X=X=X=X=X=Xl.Z C M M C C v v v s w = '.2X2X2X5 $ = 2X2X2X}.5 g ) u./.+X+X=X=X=X&XW.Z.F.=X;X;X;X;X-X-X*XV u y @ X 3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3Xu u u N.-X-X-X-X=X=X=XB.Z M C v v s e e e e w > % `.2X2X2X= + % 2X2X2X}.= r L 4.E.OX+X-X=X=X&X).W.M.R.;X;X;X-X-X-X;XR.u u y 3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3Xu u U -X-X-X-X-X-X=XW.^ C C C x e e r 6 5 4 ; = $ `.2X2X2X= O = 2X2X2X}.O = t Q ,.b.P./.*X=X&X&X).F.M.W.;X;X;X;X&X-X&X} u u O 3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xu u u R.-X-X-X-X-X-X=X=.{ ^ Z C x n 2X2X<X<X1X2X<X<X2X2X2X2X1X1X<X2X2X2X<X$X[.b.~ J I ~ b.P.&X&X&X).!.F.m.).;X;X;X;X;X&X).u y y 3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xu u U -X-X-X-X-X-X-Xc.=.=. ._ ^ x z 2X2X1X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X<Xn.l I ,.K./.).).).F.Z.Z.&X;X;X=X-X-X&X} u u O 3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xu u V.-X;X-X-X-X-XOX>.>.>.=.=._ n b 2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X:XI N +.V./.).).F.F.9.W.;X=X;X-X-X-XR.u u > 3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xu u d =X;X-X-X-X-X-Xx.>.>.>.>.>...^ P 2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X,Xl N 4.R.!.!.!.G.Z.M.&X;X=X=X-X-X-XB a u 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xu u @.;X;X-X;X;X;XXX>.:.>.>.>.>.>._ P ` Y Y W _.2X2X2X2X2X2X@XW W ~ 0.t.'.<X2X2X2X2X2X2X2X2X'.0 ' m./.!.!.Q.S.9.F.=X;X-X=X-X&X4.u u @ 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xu u P.;X;X;X;X-X:XN.>.>.>.>.>.>.>.=._ P z r 4 8 2X2X2X2X2X2X_.. $ , 6 1 3 t ~ 1X2X2X2X2X2X2X2Xt B 5.G.!.!.G.G.M.9.&X;X=X-X-X=X/.u u > 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u d =X;X;X=X;X;X=X3.>.>.>.e.>.3.3.>.:.*._ P r 9 2X2X2X2X2X1Xn.@ , c B N m h 8 ~ 2X2X2X2X2X2X2XI h <.F.!.G.G.F.M.9.W.;X=X-X-X=X=Xm u y . 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u ' -X-X>X-X-X-X X>.>.>.>.>.>.>.u.u.u.u.3.$.P f 2X2X2X2X2X2X_.$ i / -.<.8.} h 8 1X2X2X2X2X2X2X! i <.S.G.G.G.G.Z.9.Z.=X-X=X-X&X-X} u u X 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u 4.-X-X-X-X-X-XJ.3.>.>.k.k.k.k.k.u.k.u.u.:.U k 2X2X2X2X2X1X_.% f } 8.Z.F.8.U 8 ,X2X2X2X2X2X2XI g } Z.D.G.D.G.D.Z.9.&X-X=X=X=X-Xm.u u @ 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u K.;X-X;X-X>X-Xk.3.k.k.k.k.k.k.k.k.k.k.u.e.U k 2X2X2X2X2X2X_.% f [ 8.F.M.<.b i 2X2X2X2X2X2X2Xt a X.Z.D.D.D.G.G.Z.9./.=X-X=X=X=XR.u u & 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u E.;X-X;X-X-X=Xl.l.x.c.k.x.k.k.x.x.v.x.x.u.) z 2X2X2X2X2X2X_.$ 7 L <.<.} N 6 h.2X2X2X2X2X2X_.: V 1.S.D.D.G.D.S.M.6.W.-X=X-X=X=X&Xu u > X 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu a u =X;X;X;X;X;XoX7.z.c.c.c.c.c.c.c.c.c.x.k.u.) z 2X2X2X2X2X2Xn.o = i N h i l n.2X2X2X2X2X2X<Xt t D 7.M.Z.z.z.9.9.9.6.M.-X=X=X=X;X=Xm u 1 3X3X3X3X3X",
|
||||||
|
"3X3X3Xy u a =X;X;X;X;X;XXXl.z.c.c.c.c.T.J.J.T.v.J.J.s.` z 2X2X2X2X2X2X#XW ~ ~ t.n.$X2X2X2X2X2X2X2X,Xt % t V X.8.9.8.9.9.9.6.6.M.-X=X=X=X=X&XM u 2 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu u m -X-X-X;X;X;X~.z.z.c.c.c.c..XJ.J.J.J.J.J.x.O.b 2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2Xw.$ * y V X.7.8.8.9.7.8.7.6.8.=X=X-X-X=X-XV a y 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu a m -X-X-X;X;X;X~.7.z.c.c.c.c.c.c.J.T.J.T.J.B.O.b 2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X,X~ , c ' X.6.6.7.6.6.6.6.8.=X=X=X-X&X-XV u y 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu u m -X-X-X-X-X-X/.8.l.z.c.T.c.J.c.J.T.v.J.J.x.O.G 2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2Xn.r v { 6.6.6.6.6.6.-.7.&X-X=X=X=X-XD u y 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu u d =X-X-X-X-X-X~.7.z.z.c.c.c.c.c.J.c.T.T.^.T.y.R 2X2X2X2X2X2X@XK K W W W ~ h.#X1X2X2X2X2X2X2X2X2Xa.i Z ..X.6.6.-.-.6.7.-X-X-X-X-X-XD u 2 3X3X3X3X3X",
|
||||||
|
"3X3X3Xw u a =X-X-X-X-X-X~.7.7.8.c.c.c.c.T..X.X+X+X+XXXi.R 2X2X2X2X2X2Xn.. * 5 8 5 3 = * q `.2X2X2X2X2X2X2X<Xk c | X.6.-.-.-.-.z.&X;X=X;X-X;XV u w 3X3X3X3X3X",
|
||||||
|
"3X3X3Xu u u =X-X=X-X-X-X/.8.M.B.Y.T.^.^.^..X.XoXoX+XXXi.R 2X2X2X2X2X2X_.$ 0 b U U N l t 5 $ `.2X2X2X2X2X2X2X0.e Z .....-.-.6.c.;X=X;X=X;X-Xd u 1 3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu a E.-X-X-X-X-X=Xz.S.D.Y.^.Q.^.^.^..XoX+X+XXXi.R 2X2X2X2X2X2X_.= l +.u.i.,.O.E h 5 G 2X2X2X2X2X2X2X_.0 n | . .*. .*.T.-X;X;X;X-X=Xa u : 3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u N.-X-X-X=X-X-XA.Z.S.Y.Q.Q.^.^..X.XoXoX&X.Xi.R 2X2X2X2X2X2X_.= N y.H.H.m.i.y.E f 8 2X2X2X2X2X2X2X'.6 n | . . . . ..X;X;X;X;X-X~.u u & 3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xu u <.-X-X=X=X-X-XW.Z.S.Y.Y.Q.^.^.^.(..XoX=XXXi.R 2X2X2X2X2X2X_.= L 4.H.J.H.x.i.o.k j 2X2X2X2X2X2X2X_.6 B . . . .{ =.-X;X-X;X-X-Xb.a u @ 3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xy a V =X=X-X-X=X-XXXZ.S.Y.Y.Y.Q.!.^..X.XoXoXE.y.I 2X2X2X2X2X2X_.= J y.b.H.N.p.&.P 0 g.2X2X2X2X2X2X2Xr.r B _ { .| ] l.-X;X;X-X-X;X..u u . . 3X3X3X3X3X",
|
||||||
|
"3X3X3X3Xy u a =X=X=X=X-X=X-XM.Z.S.Y.Y.Q.Q.^.^.^.U.J.u.E l 2X2X2X2X2X2X_.* k o.e.e.$.` P q W 1X2X2X2X2X2X2X2XG i B ] | ] ] ( ~.=X;X;X;X;X;XM u y 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xu u V.-X=X-X=X-X-XF.M.A.D.Y.Q.Y.Q.Y.B.2.[ N 0 j 2X2X2X2X2X2X_.O 5 l G z H H Q _.2X2X2X2X2X2X2X2X#X, g ^ ] ] | ] ..-X-X-X-X&X;X).u u : 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xu u } =X=X=X=X-X=X&XM.Z.S.D.W.Q.Y.B.*.a.#X@X|.,X2X2X2X2X2X2X,X[.[.}.}.%X<X2X2X2X2X2X2X2X2X2X2X<Xj 6 b / ] ] ] ] M.-X-X-X-X-X-X4.u u O 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3Xy u d =X=X=X=X=X=X-XS.M.A.S.S.U.A.u.) n.2X2X2X2X2X2X2X2X2X2X2X2X1X2X2X2X2X2X2X2X2X2X2X2X2X2X2XW ; i M ( S S S ] &X-X-X-X-X=X-Xm u y . X 3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xu u p.=X=X=X=X=X-X&X9.Z.C.S.S.M.:.b [.2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X%XG = r x v C D D D m.-X-X-X-X-X-XR.u u : 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xy u B =X=X=X=X=X=X=XF.9.M.A.C.M.=.h %X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X2X1X#X~ 4 ; r p v v M C A | &X-X-X-X-X-X-X] u u X 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3Xy u u N.=X=X-X=X-X=X=XM.z.M.M.M.1.V #X%X%X%X%X$X%X%X<X2X2X2X%X$X%X2X2X2X<X[.n.t.W q = , r i x v C C C M C W.-X-X-X-X-X-X/.u u 1 X 3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3Xu u V *X=X=X*X=X=X=XoX8.M.M.M.5.{ m r , ; $ $ o o `.2X2X2X3 o $ 2X2X2X[.o $ 4 9 0 r g x v m C M C C C 8.&X-X-X-X-X-X-X[ u u @ 3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X2 u u 5.=X=X=X=X=X=X=XI.8.M.M.z.3.O.) P b r 0 4 % `.2X2X2X3 $ * 2X2X2X[.$ 4 r e ^ n n Z Z Z C C C M | =X=X-X-X-X-X-XR.u u < 3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3Xy u d XX=X=X=X=X-X=X=XS.8.8.M.M.z.z.7.{ _ U g 5 `.2X2X2X8 = 3 2X2X2X}.3 0 x ^ _ ^ ^ ^ Z ^ B ^ C .&X-X-X-X-X-X-X=XB u u o 3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X1 u u ' =X=X*X=X=X*X=X=XW.8.M.M.A.S.l.u.>.o.L r [.2X2X2X9 = 8 2X2X2X}.4 r ^ _ *.*._ ) ) ^ ^ ^ O.oX=X-X-X-X-X-X-X<.u u : . 3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3Xy u u i.=X=X=X=X=X-X*X=XW.9.M.A.B.3.5.5.;.U f [.2X2X2Xq 4 8 2X2X2X}.r q _ _ ;.;.*._ _ ` _ e.+X-X-X-X-X-X-X-XR.a u 2 3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3Xu u u K.=X=X=X-X=X=X=X=XXXz.M.8.5.8.u.:.) h }.2X2X2Xj r f 2X2X2X@Xq T _ e.e.u.e.;.$.$.b.-X-X-X=X;X=X;X-X&Xa a u + 3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3Xu u d ~.=X=X=X=X=X-X=X-X+XC.3.5.7.7.2.@.) q.r.q.q.H H L g.r.w.q.T ` e.k.v.k.k.s.s.{.-X-X;X-X;X;X;X;X*XV u u & . 3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X2 u u c XX-X=X=X=X=X-X=X-X-X Xl.7.7.u.2.$.o.[ [ o.O.$.&.&.` ` ` q.s.k.v.k.k.x.{.%X>X>X>X;X>X;X>X>X*XV u u > 3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X2 u u m ~.=X-X-X-X=X-X-X-X-X-X Xc.7.5.u.3.e.y.u.s.f.k.s.e.e.s.s.k.k.k.v. X:X>X>X>X>X>X>X;X>X>X*XV u u < 3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X2 u u d R.-X=X-X=X-X-X-X-X-X-X-X+XI.v.u.s.l.k.k.x.x.x.s.s.s.s.j.].+X>X>X>X>X>X:X>X>X>X>X>XOXV u u 1 3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X2 u u a p.-X-X-X;X;X;X-X-X-X:X-X-X-X-XOX XL.J.J.J.L.I.].OX:X>X-X>X>X-X>X>X>X>X>X>X>X>XK.a a u < 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X2 u u u @.=X;X;X>X;X-X-X>X-X-X-X-X;X-X-X-X-X-X>X>X-X>X-X>X>X>X>X;X>X>X>X-X>X-X-X:X<.u u u > 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X1 u u u m n.>X;X>X>X-X-X-X-X>X-X-X-X;X;X;X-X-X-X-X-X>X-X-X>X-X>X>X-X>X>X>X>XK.B u u u & 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xw u u u / {.>X>X-X-X-X-X-X-X-X-X-X-X;X-X-X;X:X-X-X>X-X:X>X;X;X>X;X;X{.[ u u u w + 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X2 u u u u ) K.-X-X-X-X:X-X-X-X-X-X-X-X-X-X-X-X-X>X-X-X-X-X-X-XE.[ u u u u - . 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X1 u u u u m 2.E.-X+X:X-X-X-X-X-X-X-X-X-X:X-X-X-X;X-XOXi.B u u u u 1 o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X> u u u u u v [ l.I.OX-X-X-X-X-X-X-X-X+XI.f.@.m u u u u u 1 + o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X& 2 u u u u u u u d B V V V V B d u u u u u u u y - . o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X+ - 1 u u u u u u u a u u u u u u u u 2 - o o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xo . X # - > 1 2 2 2 1 2 > - # o . o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3Xo o . o 3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X",
|
||||||
|
"3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X3X"
|
||||||
|
};
|
||||||
|
After Width: | Height: | Size: 766 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 201 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 126 B |
|
After Width: | Height: | Size: 126 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 142 B |
@@ -0,0 +1,70 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
'''
|
||||||
|
Extract _("...") strings for translation and convert to Qt4 stringdefs so that
|
||||||
|
they can be picked up by Qt linguist.
|
||||||
|
'''
|
||||||
|
from subprocess import Popen, PIPE
|
||||||
|
import glob
|
||||||
|
|
||||||
|
OUT_CPP="src/qt/bitcoinstrings.cpp"
|
||||||
|
EMPTY=['""']
|
||||||
|
|
||||||
|
def parse_po(text):
|
||||||
|
"""
|
||||||
|
Parse 'po' format produced by xgettext.
|
||||||
|
Return a list of (msgid,msgstr) tuples.
|
||||||
|
"""
|
||||||
|
messages = []
|
||||||
|
msgid = []
|
||||||
|
msgstr = []
|
||||||
|
in_msgid = False
|
||||||
|
in_msgstr = False
|
||||||
|
|
||||||
|
for line in text.split('\n'):
|
||||||
|
line = line.rstrip('\r')
|
||||||
|
if line.startswith('msgid '):
|
||||||
|
if in_msgstr:
|
||||||
|
messages.append((msgid, msgstr))
|
||||||
|
in_msgstr = False
|
||||||
|
# message start
|
||||||
|
in_msgid = True
|
||||||
|
|
||||||
|
msgid = [line[6:]]
|
||||||
|
elif line.startswith('msgstr '):
|
||||||
|
in_msgid = False
|
||||||
|
in_msgstr = True
|
||||||
|
msgstr = [line[7:]]
|
||||||
|
elif line.startswith('"'):
|
||||||
|
if in_msgid:
|
||||||
|
msgid.append(line)
|
||||||
|
if in_msgstr:
|
||||||
|
msgstr.append(line)
|
||||||
|
|
||||||
|
if in_msgstr:
|
||||||
|
messages.append((msgid, msgstr))
|
||||||
|
|
||||||
|
return messages
|
||||||
|
|
||||||
|
files = glob.glob('src/*.cpp') + glob.glob('src/*.h')
|
||||||
|
|
||||||
|
# xgettext -n --keyword=_ $FILES
|
||||||
|
child = Popen(['xgettext','--output=-','-n','--keyword=_'] + files, stdout=PIPE)
|
||||||
|
(out, err) = child.communicate()
|
||||||
|
|
||||||
|
messages = parse_po(out)
|
||||||
|
|
||||||
|
f = open(OUT_CPP, 'w')
|
||||||
|
f.write("""#include <QtGlobal>
|
||||||
|
// Automatically generated by extract_strings.py
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define UNUSED __attribute__((unused))
|
||||||
|
#else
|
||||||
|
#define UNUSED
|
||||||
|
#endif
|
||||||
|
""")
|
||||||
|
f.write('static const char UNUSED *bitcoin_strings[] = {')
|
||||||
|
for (msgid, msgstr) in messages:
|
||||||
|
if msgid != EMPTY:
|
||||||
|
f.write('QT_TRANSLATE_NOOP("bitcoin-core", %s),\n' % ('\n'.join(msgid)))
|
||||||
|
f.write('};')
|
||||||
|
f.close()
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# W.J. van der Laan, 2011
|
||||||
|
# Make spinning .mng animation from a .png
|
||||||
|
# Requires imagemagick 6.7+
|
||||||
|
from __future__ import division
|
||||||
|
from os import path
|
||||||
|
from PIL import Image
|
||||||
|
from subprocess import Popen
|
||||||
|
|
||||||
|
SRC='img/reload_scaled.png'
|
||||||
|
DST='../../src/qt/res/movies/update_spinner.mng'
|
||||||
|
TMPDIR='/tmp'
|
||||||
|
TMPNAME='tmp-%03i.png'
|
||||||
|
NUMFRAMES=35
|
||||||
|
FRAMERATE=10.0
|
||||||
|
CONVERT='convert'
|
||||||
|
CLOCKWISE=True
|
||||||
|
DSIZE=(16,16)
|
||||||
|
|
||||||
|
im_src = Image.open(SRC)
|
||||||
|
|
||||||
|
if CLOCKWISE:
|
||||||
|
im_src = im_src.transpose(Image.FLIP_LEFT_RIGHT)
|
||||||
|
|
||||||
|
def frame_to_filename(frame):
|
||||||
|
return path.join(TMPDIR, TMPNAME % frame)
|
||||||
|
|
||||||
|
frame_files = []
|
||||||
|
for frame in xrange(NUMFRAMES):
|
||||||
|
rotation = (frame + 0.5) / NUMFRAMES * 360.0
|
||||||
|
if CLOCKWISE:
|
||||||
|
rotation = -rotation
|
||||||
|
im_new = im_src.rotate(rotation, Image.BICUBIC)
|
||||||
|
im_new.thumbnail(DSIZE, Image.ANTIALIAS)
|
||||||
|
outfile = frame_to_filename(frame)
|
||||||
|
im_new.save(outfile, 'png')
|
||||||
|
frame_files.append(outfile)
|
||||||
|
|
||||||
|
p = Popen([CONVERT, "-delay", str(FRAMERATE), "-dispose", "2"] + frame_files + [DST])
|
||||||
|
p.communicate()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# create multiresolution windows icon
|
||||||
|
ICON_DST=../../src/qt/res/icons/novacoin.ico
|
||||||
|
|
||||||
|
convert ../../src/qt/res/icons/novacoin-16.png ../../src/qt/res/icons/novacoin-32.png ../../src/qt/res/icons/novacoin-48.png ${ICON_DST}
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
Name NovaCoin
|
||||||
|
|
||||||
|
RequestExecutionLevel highest
|
||||||
|
SetCompressor /SOLID lzma
|
||||||
|
|
||||||
|
# General Symbol Definitions
|
||||||
|
!define REGKEY "SOFTWARE\$(^Name)"
|
||||||
|
!define VERSION 0.3.0
|
||||||
|
!define COMPANY "NovaCoin project"
|
||||||
|
!define URL http://www.novacoin.ru/
|
||||||
|
|
||||||
|
# MUI Symbol Definitions
|
||||||
|
!define MUI_ICON "../share/pixmaps/novacoin.ico"
|
||||||
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
|
||||||
|
!define MUI_HEADERIMAGE
|
||||||
|
!define MUI_HEADERIMAGE_RIGHT
|
||||||
|
!define MUI_HEADERIMAGE_BITMAP "../share/pixmaps/nsis-header.bmp"
|
||||||
|
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
||||||
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
|
||||||
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
|
||||||
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup
|
||||||
|
!define MUI_STARTMENUPAGE_DEFAULTFOLDER NovaCoin
|
||||||
|
#!define MUI_FINISHPAGE_RUN $INSTDIR\novacoin-qt.exe
|
||||||
|
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
|
||||||
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
|
||||||
|
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
|
||||||
|
|
||||||
|
# Included files
|
||||||
|
!include Sections.nsh
|
||||||
|
!include MUI2.nsh
|
||||||
|
|
||||||
|
# Variables
|
||||||
|
Var StartMenuGroup
|
||||||
|
|
||||||
|
# Installer pages
|
||||||
|
!insertmacro MUI_PAGE_WELCOME
|
||||||
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
|
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuGroup
|
||||||
|
!insertmacro MUI_PAGE_INSTFILES
|
||||||
|
!insertmacro MUI_PAGE_FINISH
|
||||||
|
!insertmacro MUI_UNPAGE_CONFIRM
|
||||||
|
!insertmacro MUI_UNPAGE_INSTFILES
|
||||||
|
|
||||||
|
# Installer languages
|
||||||
|
!insertmacro MUI_LANGUAGE English
|
||||||
|
|
||||||
|
# Installer attributes
|
||||||
|
OutFile novacoin-0.3.0-win32-setup.exe
|
||||||
|
InstallDir $PROGRAMFILES\NovaCoin
|
||||||
|
CRCCheck on
|
||||||
|
XPStyle on
|
||||||
|
BrandingText " "
|
||||||
|
ShowInstDetails show
|
||||||
|
VIProductVersion 0.3.0.0
|
||||||
|
VIAddVersionKey ProductName NovaCoin
|
||||||
|
VIAddVersionKey ProductVersion "${VERSION}"
|
||||||
|
VIAddVersionKey CompanyName "${COMPANY}"
|
||||||
|
VIAddVersionKey CompanyWebsite "${URL}"
|
||||||
|
VIAddVersionKey FileVersion "${VERSION}"
|
||||||
|
VIAddVersionKey FileDescription ""
|
||||||
|
VIAddVersionKey LegalCopyright ""
|
||||||
|
InstallDirRegKey HKCU "${REGKEY}" Path
|
||||||
|
ShowUninstDetails show
|
||||||
|
|
||||||
|
# Installer sections
|
||||||
|
Section -Main SEC0000
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
SetOverwrite on
|
||||||
|
#File ../release/novacoin-qt.exe
|
||||||
|
File /oname=license.txt ../COPYING
|
||||||
|
File /oname=readme.txt ../doc/README_windows.txt
|
||||||
|
SetOutPath $INSTDIR\daemon
|
||||||
|
File ../src/novacoind.exe
|
||||||
|
SetOutPath $INSTDIR\src
|
||||||
|
File /r /x *.exe /x *.o ../src\*.*
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
WriteRegStr HKCU "${REGKEY}\Components" Main 1
|
||||||
|
|
||||||
|
# Remove old wxwidgets-based-bitcoin executable and locales:
|
||||||
|
#Delete /REBOOTOK $INSTDIR\novacoin.exe
|
||||||
|
#RMDir /r /REBOOTOK $INSTDIR\locale
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
Section -post SEC0001
|
||||||
|
WriteRegStr HKCU "${REGKEY}" Path $INSTDIR
|
||||||
|
SetOutPath $INSTDIR
|
||||||
|
WriteUninstaller $INSTDIR\uninstall.exe
|
||||||
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
||||||
|
CreateDirectory $SMPROGRAMS\$StartMenuGroup
|
||||||
|
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk" $INSTDIR\uninstall.exe
|
||||||
|
!insertmacro MUI_STARTMENU_WRITE_END
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)"
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayVersion "${VERSION}"
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" Publisher "${COMPANY}"
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" URLInfoAbout "${URL}"
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayIcon $INSTDIR\uninstall.exe
|
||||||
|
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" UninstallString $INSTDIR\uninstall.exe
|
||||||
|
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoModify 1
|
||||||
|
WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1
|
||||||
|
|
||||||
|
# bitcoin: URI handling disabled for 0.6.0
|
||||||
|
# WriteRegStr HKCR "bitcoin" "URL Protocol" ""
|
||||||
|
# WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin"
|
||||||
|
# WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe
|
||||||
|
# WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "$$1"'
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
# Macro for selecting uninstaller sections
|
||||||
|
!macro SELECT_UNSECTION SECTION_NAME UNSECTION_ID
|
||||||
|
Push $R0
|
||||||
|
ReadRegStr $R0 HKCU "${REGKEY}\Components" "${SECTION_NAME}"
|
||||||
|
StrCmp $R0 1 0 next${UNSECTION_ID}
|
||||||
|
!insertmacro SelectSection "${UNSECTION_ID}"
|
||||||
|
GoTo done${UNSECTION_ID}
|
||||||
|
next${UNSECTION_ID}:
|
||||||
|
!insertmacro UnselectSection "${UNSECTION_ID}"
|
||||||
|
done${UNSECTION_ID}:
|
||||||
|
Pop $R0
|
||||||
|
!macroend
|
||||||
|
|
||||||
|
# Uninstaller sections
|
||||||
|
Section /o -un.Main UNSEC0000
|
||||||
|
#Delete /REBOOTOK $INSTDIR\novacoin-qt.exe
|
||||||
|
Delete /REBOOTOK $INSTDIR\license.txt
|
||||||
|
Delete /REBOOTOK $INSTDIR\readme.txt
|
||||||
|
RMDir /r /REBOOTOK $INSTDIR\daemon
|
||||||
|
RMDir /r /REBOOTOK $INSTDIR\src
|
||||||
|
DeleteRegValue HKCU "${REGKEY}\Components" Main
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
Section -un.post UNSEC0001
|
||||||
|
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)"
|
||||||
|
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk"
|
||||||
|
#Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Bitcoin.lnk"
|
||||||
|
#Delete /REBOOTOK "$SMSTARTUP\Bitcoin.lnk"
|
||||||
|
Delete /REBOOTOK $INSTDIR\uninstall.exe
|
||||||
|
Delete /REBOOTOK $INSTDIR\debug.log
|
||||||
|
Delete /REBOOTOK $INSTDIR\db.log
|
||||||
|
DeleteRegValue HKCU "${REGKEY}" StartMenuGroup
|
||||||
|
DeleteRegValue HKCU "${REGKEY}" Path
|
||||||
|
DeleteRegKey /IfEmpty HKCU "${REGKEY}\Components"
|
||||||
|
DeleteRegKey /IfEmpty HKCU "${REGKEY}"
|
||||||
|
DeleteRegKey HKCR "novacoin"
|
||||||
|
RmDir /REBOOTOK $SMPROGRAMS\$StartMenuGroup
|
||||||
|
RmDir /REBOOTOK $INSTDIR
|
||||||
|
Push $R0
|
||||||
|
StrCpy $R0 $StartMenuGroup 1
|
||||||
|
StrCmp $R0 ">" no_smgroup
|
||||||
|
no_smgroup:
|
||||||
|
Pop $R0
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
# Installer functions
|
||||||
|
Function .onInit
|
||||||
|
InitPluginsDir
|
||||||
|
FunctionEnd
|
||||||
|
|
||||||
|
# Uninstaller functions
|
||||||
|
Function un.onInit
|
||||||
|
ReadRegStr $INSTDIR HKCU "${REGKEY}" Path
|
||||||
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuGroup
|
||||||
|
!insertmacro SELECT_UNSECTION Main ${UNSEC0000}
|
||||||
|
FunctionEnd
|
||||||