Skip to content

Commit

Permalink
Merge pull request #54 from mysteriumnetwork/update-license
Browse files Browse the repository at this point in the history
Update license
  • Loading branch information
vkuznecovas authored Apr 15, 2020
2 parents 777ab18 + c0b7e3c commit b04a3b1
Show file tree
Hide file tree
Showing 29 changed files with 421 additions and 770 deletions.
29 changes: 29 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
stages:
- check

variables:
BUILD_COMMIT: $CI_COMMIT_SHORT_SHA
BUILD_BRANCH: $CI_COMMIT_REF_NAME
BUILD_BRANCH_SAFE: $CI_COMMIT_REF_SLUG
BUILD_TAG: $CI_COMMIT_TAG
BUILD_NUMBER: $CI_PIPELINE_ID
GITHUB_OWNER: mysteriumnetwork
GITHUB_REPO: payments

GO_PACKAGE: github.com/mysteriumnetwork/payments
GIT_CLONE_PATH: /home/gitlab-runner/go/src/$GO_PACKAGE
GOFLAGS: "-count=1" # Supersedes GOCACHE=off, see: https://github.com/golang/go/issues/29378#issuecomment-449383809

after_script:
# docker based jobs leave files owned by root
- sudo chown -R gitlab-runner:gitlab-runner $GOPATH

generate:
stage: check
tags: [go]
script: go run mage.go -v generate

copyright:
stage: check
tags: [go]
script: go run mage.go -v checkCopyright
776 changes: 160 additions & 616 deletions LICENSE

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions bindings/AccountantImplementation.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bindings/ChannelImplementation.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bindings/LinkedMystToken.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2019 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package bindings
Expand Down
13 changes: 6 additions & 7 deletions bindings/MystDEX.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bindings/MystToken.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bindings/Registry.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions bindings/SafeMathLib.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 12 additions & 14 deletions bindings/abi/abigen.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2019 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package main
Expand Down Expand Up @@ -172,21 +171,20 @@ func (to truffleArtifact) AbiString() string {
return string(to.AbiBytes)
}

const licenseHeader = `/*
* Copyright (C) 2019 The "MysteriumNetwork/payments" Authors.
const licenseHeader = `/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
`
13 changes: 6 additions & 7 deletions client/client.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2020 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package client
Expand Down
13 changes: 6 additions & 7 deletions client/nonce_tracker.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2020 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package client
Expand Down
13 changes: 6 additions & 7 deletions client/retryable_client.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2020 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package client
Expand Down
13 changes: 6 additions & 7 deletions client/tx_watcher.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2020 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package client
Expand Down
13 changes: 6 additions & 7 deletions client/with_dry_runs.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2020 The "MysteriumNetwork/payments" Authors.
/* Mysterium network payment library.
*
* Copyright (C) 2020 BlockDev AG
*
* 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
* it under the terms of the GNU Lesser 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/>.
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package client
Expand Down
Loading

0 comments on commit b04a3b1

Please sign in to comment.