Skip to content

Commit 8f4f2ec

Browse files
committed
Contribs update
1 parent 52c0420 commit 8f4f2ec

15 files changed

+588
-570
lines changed

contrib/debian/control

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
Source: novacoin
22
Section: utils
33
Priority: optional
4-
Maintainer: Jonas Smedegaard <[email protected]>
5-
Uploaders: Micah Anderson <[email protected]>
4+
Maintainer: Alex D. <[email protected]>
5+
Uploaders: Alex D. <[email protected]>
66
Build-Depends: debhelper,
77
devscripts,
88
bash-completion,
9-
libboost-system-dev (>> 1.35) | libboost-system1.35-dev,
10-
libdb4.8++-dev,
9+
libboost-system-dev,
10+
libdb++-dev,
1111
libssl-dev,
1212
pkg-config,
1313
libminiupnpc8-dev,
14-
libboost-filesystem-dev (>> 1.35) | libboost-filesystem1.35-dev,
15-
libboost-program-options-dev (>> 1.35) | libboost-program-options1.35-dev,
16-
libboost-thread-dev (>> 1.35) | libboost-thread1.35-dev,
17-
libboost-test-dev (>> 1.35) | libboost-test1.35-dev,
14+
libboost-filesystem-dev,
15+
libboost-program-options-dev,
16+
libboost-thread-dev,
1817
qt4-qmake,
1918
libqt4-dev,
2019
libqrencode-dev
2120
Standards-Version: 3.9.2
22-
Homepage: http://www.novacoin.su/
23-
Vcs-Git: git://github.com/CryptoManiac/novacoin.git
24-
Vcs-Browser: https://github.com/CryptoManiac/novacoin
21+
Homepage: http://www.novaco.in/
22+
Vcs-Git: git://github.com/novacoin-project/novacoin.git
23+
Vcs-Browser: https://github.com/novacoin-project/novacoin
2524

2625
Package: novacoind
2726
Architecture: any
@@ -36,7 +35,7 @@ Description: peer-to-peer network based digital currency - daemon
3635
By default connects to an IRC network to discover other peers.
3736
.
3837
Full transaction history is stored locally at each client. This
39-
requires 2+ GB of space, slowly growing.
38+
requires 150+ MiB of space, slowly growing.
4039
.
4140
This package provides novacoind, a combined daemon and CLI tool to
4241
interact with the daemon.
@@ -54,6 +53,6 @@ Description: peer-to-peer network based digital currency - Qt GUI
5453
By default connects to an IRC network to discover other peers.
5554
.
5655
Full transaction history is stored locally at each client. This
57-
requires 2+ GB of space, slowly growing.
56+
requires 150+ MiB of space, slowly growing.
5857
.
5958
This package provides Novacoin-Qt, a GUI for Novacoin based on Qt.

contrib/debian/copyright

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174
2-
Upstream-Name: Bitcoin
3-
Upstream-Contact: Satoshi Nakamoto <[email protected]>
4-
5-
Source: http://sourceforge.net/projects/bitcoin/files/
6-
https://github.com/bitcoin/bitcoin
2+
Upstream-Name: Novacoin
3+
Upstream-Contact: Alex D. <[email protected]>
4+
Source: http://sourceforge.net/projects/novacoin/files/
5+
https://github.com/novacoin-project/novacoin
76

87
Files: *
9-
Copyright: 2009-2012, Bitcoin Developers
8+
Copyright: 2012-2015, Novacoin Developers
9+
License: Expat
10+
11+
Files: *
12+
Copyright: 2009-2015, Bitcoin Developers
1013
License: Expat
1114
Comment: The Bitcoin Developers encompasses the current developers listed on bitcoin.org,
1215
as well as the numerous contributors to the project.

contrib/debian/examples/novacoin.conf

+5-11
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
#proxy=127.0.0.1:9050
1111

1212
# Use as many addnode= settings as you like to connect to specific peers
13-
#addnode=188.120.246.137:7777
13+
#addnode=81.200.241.54
1414

1515
# ... or use as many connect= settings as you like to connect ONLY
1616
# to specific peers:
17-
#connect=188.120.246.137:7777
17+
#connect=81.200.241.54
1818

1919
# Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to
2020
# find other peers.
@@ -30,6 +30,7 @@
3030
#server=1
3131

3232
# You must set rpcuser and rpcpassword to secure the JSON-RPC api
33+
# Remember, DON'T USE default password
3334
#rpcuser=Ulysseys
3435
#rpcpassword=YourSuperGreatPasswordNumber_385593
3536

@@ -40,9 +41,9 @@
4041
#rpcallowip=192.168.1.*
4142

4243
# Listen for RPC connections on this TCP port:
43-
rpcport=8332
44+
rpcport=8344
4445

45-
# You can use NovaCoin or novacoind to send commands to Bitcoin/bitcoindNovaCoin/novacoind
46+
# You can use NovaCoin or novacoind to send commands to NovaCoin/novacoind
4647
# running on another host using this option:
4748
rpcconnect=127.0.0.1
4849

@@ -58,20 +59,13 @@ rpcsslprivatekeyfile=server.pem
5859

5960
# Miscellaneous options
6061

61-
# Set gen=1 to attempt to generate novacoins
62-
gen=0
63-
6462
# Pre-generate this many public/private key pairs, so wallet backups will be valid for
6563
# both prior transactions and several dozen future transactions.
6664
keypool=100
6765

6866
# Pay an optional transaction fee every time you send novacoins.
6967
paytxfee=0.01
7068

71-
# Allow direct connections for the 'pay via IP address' feature.
72-
#allowreceivebyip=1
73-
74-
7569
# User interface options
7670

7771
# Start NovaCoin minimized

contrib/debian/novacoin-qt.desktop

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
Encoding=UTF-8
33
Name=NovaCoin
44
Comment=NovaCoin P2P Cryptocurrency
5+
Comment[ru]=NovaCoin, P2P криптовалюта
56
Comment[fr]=NovaCoin, monnaie virtuelle cryptographique pair à pair
67
Comment[tr]=NovaCoin, eşten eşe kriptografik sanal para birimi
78
Exec=/usr/bin/novacoin-qt
89
Terminal=false
910
Type=Application
10-
Icon=/usr/share/pixmaps/bitcoin80.xpm
11+
Icon=/usr/share/pixmaps/novacoin80.xpm
1112
MimeType=x-scheme-handler/novacoin;
1213
Categories=Office;

contrib/debian/novacoin-qt.install

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
novacoin-qt usr/bin
2-
share/pixmaps/bitcoin32.xpm usr/share/pixmaps
3-
share/pixmaps/bitcoin80.xpm usr/share/pixmaps
2+
share/pixmaps/novacoin32.xpm usr/share/pixmaps
3+
share/pixmaps/novacoin80.xpm usr/share/pixmaps
44
debian/novacoin-qt.desktop usr/share/applications
55
debian/novacoin-qt.protocol usr/share/kde4/services/

contrib/debian/rules

-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#!/usr/bin/make -f
22
# -*- mode: makefile; coding: utf-8 -*-
33

4-
#DEB_MAKE_CHECK_TARGET = test_bitcoin
5-
#build/bitcoind::
6-
# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_bitcoin)
7-
84
DEB_INSTALL_EXAMPLES_novacoind += debian/examples/*
95
DEB_INSTALL_MANPAGES_novacoind += debian/manpages/*
106

share/pixmaps/bitcoin-bc.ico

-22 KB
Binary file not shown.

share/pixmaps/bitcoin.ico

-299 KB
Binary file not shown.

share/pixmaps/bitcoin32.xpm

-232
This file was deleted.

0 commit comments

Comments
 (0)