[Git][NTPsec/ntpsec][master] 2 commits: Add copyright/license information to docker files

Matt Selsky (@selsky) gitlab at mg.gitlab.com
Thu Apr 27 04:33:29 UTC 2023



Matt Selsky pushed to branch master at NTPsec / ntpsec


Commits:
c7bb2559 by Matt Selsky at 2023-04-27T00:30:08-04:00
Add copyright/license information to docker files

- - - - -
837ea98a by Matt Selsky at 2023-04-27T00:32:09-04:00
Disable python2 tests for "ubuntu-rolling-options-tester" CI target

Ubuntu's "rolling" release has moved to "lunar" and this has removed python2
support

- - - - -


22 changed files:

- .dockerfiles/alpine
- .dockerfiles/alpine-edge
- .dockerfiles/alpine-pages
- .dockerfiles/alpine-seccomp
- .dockerfiles/centos-latest
- .dockerfiles/clang
- .dockerfiles/coverity
- .dockerfiles/cross-armhf
- .dockerfiles/debian-oldstable
- .dockerfiles/debian-stable
- .dockerfiles/debian-stable-i386
- .dockerfiles/debian-stable-mdns
- .dockerfiles/debian-testing
- .dockerfiles/debian-unstable
- .dockerfiles/fedora-latest
- .dockerfiles/gentoo
- .dockerfiles/opensuse-leap
- .dockerfiles/python3
- .dockerfiles/ubuntu-latest
- .dockerfiles/ubuntu-rolling
- .gitlab-opttest-ci.yml
- devel/hacking.adoc


Changes:

=====================================
.dockerfiles/alpine
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM alpine
 
 RUN apk update


=====================================
.dockerfiles/alpine-edge
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM alpine:edge
 
 RUN apk update


=====================================
.dockerfiles/alpine-pages
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM alpine
 
 RUN apk update


=====================================
.dockerfiles/alpine-seccomp
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM alpine
 
 RUN apk update


=====================================
.dockerfiles/centos-latest
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM quay.io/centos/centos:stream9
 
 RUN dnf -y install dnf-plugins-core


=====================================
.dockerfiles/clang
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:testing-slim
 
 RUN apt-get update


=====================================
.dockerfiles/coverity
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 # Coverity is picky about the versions of gcc that it has support for, so
 # please test this thoroughly before switching to a newer Debian distribution
 FROM debian:stable-slim


=====================================
.dockerfiles/cross-armhf
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:testing
 
 RUN dpkg --add-architecture armhf


=====================================
.dockerfiles/debian-oldstable
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:oldstable-slim
 
 RUN apt-get update


=====================================
.dockerfiles/debian-stable
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:stable-slim
 
 RUN apt-get update


=====================================
.dockerfiles/debian-stable-i386
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM i386/debian:stable-slim
 
 RUN apt-get update


=====================================
.dockerfiles/debian-stable-mdns
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:stable-slim
 
 RUN apt-get update


=====================================
.dockerfiles/debian-testing
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:testing-slim
 
 RUN apt-get update


=====================================
.dockerfiles/debian-unstable
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM debian:unstable-slim
 
 RUN apt-get update


=====================================
.dockerfiles/fedora-latest
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM fedora:latest
 
 RUN dnf -y install bison gcc openssl-devel libcap-devel pps-tools-devel python3-devel libbsd-devel


=====================================
.dockerfiles/gentoo
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM gentoo/portage as portage
 
 FROM gentoo/stage3


=====================================
.dockerfiles/opensuse-leap
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM opensuse/leap
 
 RUN zypper -n install bison gcc libopenssl-devel libcap-devel pps-tools-devel python3-devel python3-curses libbsd-devel


=====================================
.dockerfiles/python3
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM python:3-slim
 
 RUN apt-get update -qq


=====================================
.dockerfiles/ubuntu-latest
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM ubuntu:latest
 
 RUN apt-get update


=====================================
.dockerfiles/ubuntu-rolling
=====================================
@@ -1,3 +1,7 @@
+# Copyright the NTPsec project contributors
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
 FROM ubuntu:rolling
 
 RUN apt-get update


=====================================
.gitlab-opttest-ci.yml
=====================================
@@ -170,4 +170,4 @@ ubuntu-rolling-options-tester:
   image:
     name: ubuntu:rolling
     entrypoint: [ '/bin/sh', '-c', 'ln -snf /bin/bash /bin/sh && /bin/bash -c $0']
-  <<: *deb_option_tester
+  <<: *deb_option_tester_py3_only


=====================================
devel/hacking.adoc
=====================================
@@ -25,7 +25,7 @@ Much of the existing and historical code is licensed under the NTP
 license.  Additionally, small portions of the code are licensed under
 the BSD-3-clause and MIT licenses.
 
-The preferred license for new code contributions is BSD-2-clause.
+The preferred license for new code contributions is BSD-2-Clause.
 
 The preferred license for documentation is
 "Creative Commons Attribution 4.0 International" (CC-BY-4.0).



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/-/compare/7b6163885e040b97475a5612967e91ef2dde8d6c...837ea98ab118c059fefe0f7873890bc4e9c687a0

-- 
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/-/compare/7b6163885e040b97475a5612967e91ef2dde8d6c...837ea98ab118c059fefe0f7873890bc4e9c687a0
You're receiving this email because of your account on gitlab.com.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ntpsec.org/pipermail/vc/attachments/20230427/2eae4728/attachment-0001.htm>


More information about the vc mailing list