Browse Source

Asher dev (#89)

* Adding Brewfile for fetching MacOS build dependencies with the brew bundle command.

* Updating version, annotating Mac fetch-params.sh for debugging
pull/4/head
Asher Dawes 6 years ago
committed by GitHub
parent
commit
2ab4c25cb0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .gitlab-ci.yml
  2. 17
      Brewfile
  3. 2
      README.md
  4. 4
      contrib/devtools/fix-copyright-headers.py
  5. 2
      kmd/linux/verus-cli/README.txt

6
.gitlab-ci.yml

@ -4,7 +4,7 @@ stages:
- deploy
variables:
VERSION: 0.3.9
VERSION: 0.3.10
AGAMA_ARTIFACTS_LINUX: linux64.tar.gz
AGAMA_ARTIFACTS_MACOS: osx.tar.gz
AGAMA_ARTIFACTS_WINDOWS: win64.zip
@ -190,7 +190,7 @@ ubuntu:bionic:
- build:linux
osx:sierra:
.osx:sierra: # fetch-params.sh needs to be fixed for MacOS
stage: test
tags: ["Sierra"]
script:
@ -204,7 +204,7 @@ osx:sierra:
- build:mac
osx:high-sierra:
.osx:high-sierra: # fetch-params.sh needs to be fixed for MacOS
stage: test
tags: ["High Sierra"]
script:

17
Brewfile

@ -0,0 +1,17 @@
tap "discoteq/discoteq"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "homebrew/core"
brew "autoconf"
brew "autogen"
brew "automake"
brew "binutils"
brew "cmake"
brew "coreutils"
brew "gcc@5"
brew "leveldb"
brew "nanomsg"
brew "protobuf"
brew "wget"
brew "discoteq/discoteq/flock"

2
README.md

@ -1,4 +1,4 @@
## VerusCoin version 0.3.9-beta
## VerusCoin version 0.3.10-beta
VerusCoin is a new, mineable and stakeable cryptocurrency. It is a live fork of Komodo that retains its Zcash lineage and improves it. VerusCoin will leverage the Komodo platform and dPoW notarization for enhanced security and cross-chain interoperability. We have added a variation of a zawy12, lwma difficulty algorithm, a new CPU-optimized hash algorithm and a new algorithm for fair proof of stake. We describe these changes and vision going forward in a [our Phase I white paper](http://185.25.51.16/papers/VerusPhaseI.pdf) and [our Vision](http://185.25.51.16/papers/VerusVision.pdf).
- [VerusCoin web site https://veruscoin.io/ Wallets and CLI tools](https://veruscoin.io/)
- [VerusCoin Explorer](https://explorer.veruscoin.io/)

4
contrib/devtools/fix-copyright-headers.py

@ -1,4 +1,6 @@
#!/usr/bin/env python
from __future__ import print_function
'''
Run this script inside of src/ and it will look for all the files
that were changed this year that still have the last year in the
@ -46,7 +48,7 @@ for extension in extensions:
filePath = os.getcwd() + filePath
modifiedTime = getLastGitModifiedDate(filePath)
if len(modifiedTime) > 0 and str(year) in modifiedTime:
print n,"Last Git Modified: ", modifiedTime, " - ", filePath
print(n, "Last Git Modified: ", modifiedTime, " - ", filePath)
os.popen(command % (last_year,year,filePath))
n = n + 1

2
kmd/linux/verus-cli/README.txt

@ -1,4 +1,4 @@
VerusCoin Command Line Tools v0.3.9-beta
VerusCoin Command Line Tools v0.3.10-beta
Contents:
komodod - VerusCoin's enhanced Komodo daemon
komodo-cli - VerusCoin's Komodo command line utility

Loading…
Cancel
Save