Skip to content

Commit 5a7a848

Browse files
committed
Ensure all scripts contain copyright and Apache-2.0 SPDX
1 parent 120fca7 commit 5a7a848

16 files changed

Lines changed: 48 additions & 0 deletions

File tree

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Dependency version numbers
58
source ./versions.properties
69

build/posix.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Dependency version numbers
58
if [ -f /packaging/versions.properties ]; then
69
source /packaging/versions.properties

build/wasm.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
source ./versions.properties
58
VERSION_WASM_VIPS="${1:-HEAD}"
69

build/win.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Dependency version numbers
58
source /packaging/versions.properties
69

check-latest-versions.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Dependency version numbers
58
source ./versions.properties
69

generate-release-notes.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
{
58
echo 'Dependency|Version';
69
echo '---|---';

platforms/linux-arm64v8/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM --platform=linux/arm64 rockylinux:8
22
LABEL maintainer="Lovell Fuller <npm@lovell.info>"
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Create Rocky Linux 8 (glibc 2.28) container suitable for building Linux ARM64v8-A binaries
58

69
# Path settings

platforms/linux-armv6/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM debian/eol:buster
22
LABEL maintainer="Lovell Fuller <npm@lovell.info>"
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Create Debian 11 (glibc 2.31) container suitable for cross-compiling Linux ARMv6 binaries
58

69
# Path settings

platforms/linux-ppc64le/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM debian:bookworm
22
LABEL maintainer="Lovell Fuller <npm@lovell.info>"
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Create Debian 12 (glibc 2.36) container suitable for cross-compiling Linux ppc64le binaries
58

69
# Path settings

platforms/linux-riscv64/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
FROM debian:trixie
22
LABEL maintainer="Lovell Fuller <npm@lovell.info>"
33

4+
## Copyright 2017 Lovell Fuller and others.
5+
## SPDX-License-Identifier: Apache-2.0
6+
47
# Create Debian 13 (glibc 2.41) container suitable for cross-compiling Linux RISC-V 64-bit binaries
58

69
# Path settings

0 commit comments

Comments
 (0)