From 545c62f7d4cf9cca76719f7364ecfa8d891ab979 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sat, 11 Apr 2020 19:16:16 +0900 Subject: Remove license headers --- ci/android-install-ndk.sh | 11 ----------- ci/android-install-sdk.sh | 11 ----------- ci/android-sysimage.sh | 12 ------------ ci/emscripten-entry.sh | 11 ----------- ci/emscripten.sh | 11 ----------- ci/ios/deploy_and_run_on_ios_simulator.rs | 10 ---------- src/hermit/mod.rs | 10 ---------- src/lib.rs | 9 --------- src/unix/hermit/mod.rs | 10 ---------- 9 files changed, 95 deletions(-) diff --git a/ci/android-install-ndk.sh b/ci/android-install-ndk.sh index 723e719054..a55b6fe759 100644 --- a/ci/android-install-ndk.sh +++ b/ci/android-install-ndk.sh @@ -1,14 +1,3 @@ -#!/usr/bin/env sh -# Copyright 2016 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. - set -ex NDK=android-ndk-r19c diff --git a/ci/android-install-sdk.sh b/ci/android-install-sdk.sh index 7f2104000f..8033cf2212 100644 --- a/ci/android-install-sdk.sh +++ b/ci/android-install-sdk.sh @@ -1,14 +1,3 @@ -#!/usr/bin/env sh -# Copyright 2016 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. - set -ex # Prep the SDK and emulator diff --git a/ci/android-sysimage.sh b/ci/android-sysimage.sh index 9eabd7c8d9..af36f7febd 100644 --- a/ci/android-sysimage.sh +++ b/ci/android-sysimage.sh @@ -1,15 +1,3 @@ -#!/usr/bin/env bash - -# Copyright 2017 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. - set -ex URL=https://dl.google.com/android/repository/sys-img/android diff --git a/ci/emscripten-entry.sh b/ci/emscripten-entry.sh index 0016f5660b..49664f592e 100755 --- a/ci/emscripten-entry.sh +++ b/ci/emscripten-entry.sh @@ -1,14 +1,3 @@ -#!/usr/bin/env bash -# Copyright 2017 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. - set -ex # shellcheck disable=SC1091 diff --git a/ci/emscripten.sh b/ci/emscripten.sh index 3c2650c316..80928660dd 100644 --- a/ci/emscripten.sh +++ b/ci/emscripten.sh @@ -1,14 +1,3 @@ -#!/usr/bin/env bash -# Copyright 2017 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. - set -ex hide_output() { diff --git a/ci/ios/deploy_and_run_on_ios_simulator.rs b/ci/ios/deploy_and_run_on_ios_simulator.rs index 2075be6d62..aa1034fc74 100644 --- a/ci/ios/deploy_and_run_on_ios_simulator.rs +++ b/ci/ios/deploy_and_run_on_ios_simulator.rs @@ -1,13 +1,3 @@ -// Copyright 2017 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - // This is a script to deploy and execute a binary on an iOS simulator. // The primary use of this is to be able to run unit tests on the simulator and // retrieve the results. diff --git a/src/hermit/mod.rs b/src/hermit/mod.rs index 9880b50723..bffcefdd89 100644 --- a/src/hermit/mod.rs +++ b/src/hermit/mod.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - // libc port for HermitCore (https://hermitcore.org) // // Ported by Colin Fink diff --git a/src/lib.rs b/src/lib.rs index d5fba02da2..171591ebf5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,12 +1,3 @@ -// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. //! libc - Raw FFI bindings to platforms' system libraries //! //! [Documentation for other platforms][pd]. diff --git a/src/unix/hermit/mod.rs b/src/unix/hermit/mod.rs index 83e064e71f..66ee653644 100644 --- a/src/unix/hermit/mod.rs +++ b/src/unix/hermit/mod.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - // liblibc port for HermitCore (https://hermitcore.org) // HermitCore is a unikernel based on lwIP, newlib, and // pthread-embedded. -- cgit v1.2.1