Skip to content

Commit

Permalink
Reordered the GPL message sections.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobsummerwill committed Jul 26, 2016
1 parent cc90a76 commit 66e3b23
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 33 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@
#
# http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
# cpp-ethereum 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.
#
# cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------

Expand Down
16 changes: 16 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@
# TODO - Address the hardcoded paths in this file.
# See https://github.com/ethereum/webthree-umbrella/issues/625.
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
# cpp-ethereum 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.
#
# cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------

Expand Down
32 changes: 16 additions & 16 deletions scripts/install_deps.bat
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
@ECHO OFF

REM ---------------------------------------------------------------------------
REM This file is part of cpp-ethereum.
REM
REM cpp-ethereum is free software: you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM cpp-ethereum is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
REM
REM ---------------------------------------------------------------------------
REM Batch file for installing pre-requisite packages for cpp-ethereum on
REM Windows platforms. That is implemented using CMake targets which
Expand Down Expand Up @@ -55,6 +39,22 @@ REM The documentation for cpp-ethereum is hosted at:
REM
REM http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
REM
REM ---------------------------------------------------------------------------
REM This file is part of cpp-ethereum.
REM
REM cpp-ethereum is free software: you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM cpp-ethereum is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
REM
REM Copyright (c) 2016 cpp-ethereum contributors.
REM ---------------------------------------------------------------------------

Expand Down
16 changes: 16 additions & 0 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,22 @@
#
# http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
# cpp-ethereum 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.
#
# cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------

Expand Down
14 changes: 7 additions & 7 deletions scripts/release.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
@ECHO OFF

REM ---------------------------------------------------------------------------
REM Batch file for implementing release flow for cpp-ethereum for Windows.
REM
REM The documentation for cpp-ethereum is hosted at:
REM
REM http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
REM
REM ---------------------------------------------------------------------------
REM This file is part of cpp-ethereum.
REM
Expand All @@ -16,13 +23,6 @@ REM
REM You should have received a copy of the GNU General Public License
REM along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
REM
REM ---------------------------------------------------------------------------
REM Batch file for implementing release flow for cpp-ethereum for Windows.
REM
REM The documentation for cpp-ethereum is hosted at:
REM
REM http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
REM
REM Copyright (c) 2016 cpp-ethereum contributors.
REM ---------------------------------------------------------------------------

Expand Down
20 changes: 10 additions & 10 deletions scripts/release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/usr/bin/env bash

#------------------------------------------------------------------------------
# Bash script implementing release flow for cpp-ethereum for Linux and macOS.
#
# TODO - At the time of writing, we only have ZIPs working. Need to hook up
# support for Homebrew and PPAs.
#
# The documentation for cpp-ethereum is hosted at:
#
# http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
#
# ------------------------------------------------------------------------------
# This file is part of cpp-ethereum.
#
Expand All @@ -16,16 +26,6 @@
# You should have received a copy of the GNU General Public License
# along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>
#
#------------------------------------------------------------------------------
# Bash script implementing release flow for cpp-ethereum for Linux and macOS.
#
# TODO - At the time of writing, we only have ZIPs working. Need to hook up
# support for Homebrew and PPAs.
#
# The documentation for cpp-ethereum is hosted at:
#
# http://www.ethdocs.org/en/latest/ethereum-clients/cpp-ethereum/
#
# (c) 2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------

Expand Down

0 comments on commit 66e3b23

Please sign in to comment.