Skip to content

Commit ac4b9b5

Browse files
authored
Update MIT 2018 to 2019 (#534)
1 parent 3be06a2 commit ac4b9b5

File tree

620 files changed

+630
-631
lines changed

Some content is hidden

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

620 files changed

+630
-631
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2013-2016 The Bitcoin Core developers
2-
# Copyright (c) 2017 The Raven Core developers
2+
# Copyright (c) 2017-2019 The Raven Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2013-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ define(_CLIENT_VERSION_MINOR, 2)
55
define(_CLIENT_VERSION_REVISION, 2)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
8-
define(_COPYRIGHT_YEAR, 2018)
8+
define(_COPYRIGHT_YEAR, 2019)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])
1010
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Raven Core]])
1111
AC_INIT([Raven Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/RavenProject/Ravencoin/issues],[raven],[https://ravencoin.org/])

contrib/devtools/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,25 +46,25 @@ Updates all the copyright headers of `The Raven Core developers` which were
4646
changed in a year more recent than is listed. For example:
4747
```
4848
// Copyright (c) <firstYear>-<lastYear> The Bitcoin Core developers
49-
// Copyright (c) 2017 The Raven Core developers
49+
// Copyright (c) 2017-2019 The Raven Core developers
5050
```
5151
will be updated to:
5252
```
5353
// Copyright (c) <firstYear>-<lastModifiedYear> The Bitcoin Core developers
54-
// Copyright (c) 2017 The Raven Core developers
54+
// Copyright (c) 2017-2019 The Raven Core developers
5555
```
5656
where `<lastModifiedYear>` is obtained from the `git log` history.
5757

5858
This subcommand also handles copyright headers that have only a single year. In
5959
those cases:
6060
```
6161
// Copyright (c) <year> The Bitcoin Core developers
62-
// Copyright (c) 2017 The Raven Core developers
62+
// Copyright (c) 2017-2019 The Raven Core developers
6363
```
6464
will be updated to:
6565
```
6666
// Copyright (c) <year>-<lastModifiedYear> The Bitcoin Core developers
67-
// Copyright (c) 2017 The Raven Core developers
67+
// Copyright (c) 2017-2019 The Raven Core developers
6868
```
6969
where the update is appropriate.
7070

contrib/devtools/check-doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# Copyright (c) 2015-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/devtools/check-rpc-mappings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2017 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
"""Check RPC argument consistency."""

contrib/devtools/commit-script-check.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2017 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/devtools/copyright_header.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

@@ -413,24 +413,24 @@ def exec_update_header_year(base_directory):
413413
changed in a year more recent than is listed. For example:
414414
415415
// Copyright (c) <firstYear>-<lastYear> The Bitcoin Core developers
416-
// Copyright (c) 2017 The Raven Core developers
416+
// Copyright (c) 2017-2019 The Raven Core developers
417417
418418
will be updated to:
419419
420420
// Copyright (c) <firstYear>-<lastModifiedYear> The Bitcoin Core developers
421-
// Copyright (c) 2017 The Raven Core developers
421+
// Copyright (c) 2017-2019 The Raven Core developers
422422
423423
where <lastModifiedYear> is obtained from the 'git log' history.
424424
425425
This subcommand also handles copyright headers that have only a single year. In those cases:
426426
427427
// Copyright (c) <year> The Bitcoin Core developers
428-
// Copyright (c) 2017 The Raven Core developers
428+
// Copyright (c) 2017-2019 The Raven Core developers
429429
430430
will be updated to:
431431
432432
// Copyright (c) <year>-<lastModifiedYear> The Bitcoin Core developers
433-
// Copyright (c) 2017 The Raven Core developers
433+
// Copyright (c) 2017-2019 The Raven Core developers
434434
435435
where the update is appropriate.
436436
@@ -464,7 +464,7 @@ def get_header_lines(header, start_year, end_year):
464464

465465
CPP_HEADER = '''
466466
// Copyright (c) %s The Bitcoin Core developers
467-
// Copyright (c) 2017 The Raven Core developers
467+
// Copyright (c) 2017-2019 The Raven Core developers
468468
// Distributed under the MIT software license, see the accompanying
469469
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
470470
'''
@@ -474,7 +474,7 @@ def get_cpp_header_lines_to_insert(start_year, end_year):
474474

475475
PYTHON_HEADER = '''
476476
# Copyright (c) %s The Bitcoin Core developers
477-
# Copyright (c) 2017 The Raven Core developers
477+
# Copyright (c) 2017-2019 The Raven Core developers
478478
# Distributed under the MIT software license, see the accompanying
479479
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
480480
'''

contrib/devtools/git-subtree-check.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2015 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/devtools/lint-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#
33
# Copyright (c) 2017 The Bitcoin Core developers
4-
# Copyright (c) 2017 The Raven Core developers
4+
# Copyright (c) 2017-2019 The Raven Core developers
55
# Distributed under the MIT software license, see the accompanying
66
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
77
#

contrib/devtools/lint-whitespace.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#
33
# Copyright (c) 2017 The Bitcoin Core developers
4-
# Copyright (c) 2017 The Raven Core developers
4+
# Copyright (c) 2017-2019 The Raven Core developers
55
# Distributed under the MIT software license, see the accompanying
66
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
77
#

contrib/devtools/optimize-pngs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
'''

contrib/devtools/security-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# Copyright (c) 2015-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
'''

contrib/devtools/test-security-check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python2
22
# Copyright (c) 2015-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
'''

contrib/gitian-build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2016 The Bitcoin Core developers
2-
# Copyright (c) 2017 The Raven Core developers
2+
# Copyright (c) 2017-2019 The Raven Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

contrib/linearize/linearize-data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# linearize-data.py: Construct a linear, no-fork version of the chain.
44
#
55
# Copyright (c) 2013-2016 The Bitcoin Core developers
6-
# Copyright (c) 2017 The Raven Core developers
6+
# Copyright (c) 2017-2019 The Raven Core developers
77
# Distributed under the MIT software license, see the accompanying
88
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
99
#

contrib/linearize/linearize-hashes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# linearize-hashes.py: List blocks in a linear, no-fork version of the chain.
44
#
55
# Copyright (c) 2013-2016 The Bitcoin Core developers
6-
# Copyright (c) 2017 The Raven Core developers
6+
# Copyright (c) 2017-2019 The Raven Core developers
77
# Distributed under the MIT software license, see the accompanying
88
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
99
#

contrib/macdeploy/background.svg

+1-1
Loading

contrib/macdeploy/custom_dsstore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# Copyright (c) 2013-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
from __future__ import division,print_function,unicode_literals

contrib/macdeploy/detached-sig-apply.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2014-2015 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/macdeploy/detached-sig-create.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2014-2015 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/macdeploy/extract-osx-sdk.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Copyright (c) 2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/qos/tc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 The Bitcoin Core developers
2-
# Copyright (c) 2017 The Raven Core developers
2+
# Copyright (c) 2017-2019 The Raven Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

contrib/raven-cli.bash-completion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bash programmable completion for raven-cli(1)
22
# Copyright (c) 2012-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/raven-tx.bash-completion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bash programmable completion for raven-tx(1)
22
# Copyright (c) 2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/ravend.bash-completion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bash programmable completion for ravend(1) and raven-qt(1)
22
# Copyright (c) 2012-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/seeds/makeseeds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2013-2017 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
#

contrib/testgen/base58.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2012-2016 The Bitcoin Core developers
2-
# Copyright (c) 2017 The Raven Core developers
2+
# Copyright (c) 2017-2019 The Raven Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
'''

contrib/testgen/gen_base58_test_vectors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# Copyright (c) 2012-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66
'''

contrib/tidy_datadir.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Copyright (c) 2013 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/verify-commits/gpg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/verify-commits/pre-push-hook.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Copyright (c) 2014-2015 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/verify-commits/verify-commits.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/windeploy/detached-sig-create.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
# Copyright (c) 2014-2015 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/zmq/zmq_sub.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

@@ -65,7 +65,7 @@ async def handle(self) :
6565
print('- HASH TX ('+sequence+') -')
6666
print(binascii.hexlify(body))
6767
elif topic == b"rawblock":
68-
print('- RAW BLOCK HEADER ('+sequence+') -')
68+
print('- RAW BLOCK HEADER ('+sequence+') -')
6969
print(binascii.hexlify(body[:80]))
7070
elif topic == b"rawtx":
7171
print('- RAW TX ('+sequence+') -')

contrib/zmq/zmq_sub3.4.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

contrib/zmq/zmq_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# Copyright (c) 2014-2016 The Bitcoin Core developers
3-
# Copyright (c) 2017 The Raven Core developers
3+
# Copyright (c) 2017-2019 The Raven Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

doc/man/raven-cli.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ filename in ravend directory, required if ravend/\-Qt runs
8989
with multiple wallets)
9090
.SH COPYRIGHT
9191
Copyright (C) 2009-2017 The Bitcoin Core developers
92-
Copyright (c) 2017 The Raven Core developers
92+
Copyright (c) 2017-2019 The Raven Core developers
9393

9494
Please contribute if you find Raven Core useful. Visit
9595
<https://ravencoin.org> for further information about the software.

doc/man/raven-qt.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ Show splash screen on startup (default: 1)
543543
Reset all settings changed in the GUI
544544
.SH COPYRIGHT
545545
Copyright (C) 2009-2017 The Bitcoin Core developers
546-
Copyright (c) 2017 The Raven Core developers
546+
Copyright (c) 2017-2019 The Raven Core developers
547547

548548
Please contribute if you find Raven Core useful. Visit
549549
<https://ravencoin.org> for further information about the software.

0 commit comments

Comments
 (0)