svn commit: r328473 - in head/lib/libcasper: libcasper services/cap_dns services/cap_dns/tests services/cap_grp services/cap_grp/tests services/cap_pwd services/cap_pwd/tests services/cap_random se...

Mariusz Zaborski oshogbo at FreeBSD.org
Sat Jan 27 12:55:37 UTC 2018


Author: oshogbo
Date: Sat Jan 27 12:55:34 2018
New Revision: 328473
URL: https://svnweb.freebsd.org/changeset/base/328473

Log:
  Add SPDX tags for libcasper(3) and services.
  
  MFC after:	2 weeks

Modified:
  head/lib/libcasper/libcasper/libcasper.c
  head/lib/libcasper/libcasper/libcasper.h
  head/lib/libcasper/libcasper/libcasper_impl.c
  head/lib/libcasper/libcasper/libcasper_impl.h
  head/lib/libcasper/libcasper/libcasper_service.c
  head/lib/libcasper/libcasper/libcasper_service.h
  head/lib/libcasper/libcasper/service.c
  head/lib/libcasper/libcasper/zygote.c
  head/lib/libcasper/libcasper/zygote.h
  head/lib/libcasper/services/cap_dns/cap_dns.c
  head/lib/libcasper/services/cap_dns/tests/dns_test.c
  head/lib/libcasper/services/cap_grp/cap_grp.c
  head/lib/libcasper/services/cap_grp/tests/grp_test.c
  head/lib/libcasper/services/cap_pwd/cap_pwd.c
  head/lib/libcasper/services/cap_pwd/tests/pwd_test.c
  head/lib/libcasper/services/cap_random/cap_random.c
  head/lib/libcasper/services/cap_sysctl/cap_sysctl.c
  head/lib/libcasper/services/cap_sysctl/tests/sysctl_test.c
  head/lib/libcasper/services/cap_syslog/cap_syslog.c

Modified: head/lib/libcasper/libcasper/libcasper.c
==============================================================================
--- head/lib/libcasper/libcasper/libcasper.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012-2013 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/libcasper.h
==============================================================================
--- head/lib/libcasper/libcasper/libcasper.h	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper.h	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012-2013 The FreeBSD Foundation
  * Copyright (c) 2015-2017 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/libcasper_impl.c
==============================================================================
--- head/lib/libcasper/libcasper/libcasper_impl.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper_impl.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/libcasper_impl.h
==============================================================================
--- head/lib/libcasper/libcasper/libcasper_impl.h	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper_impl.h	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/libcasper_service.c
==============================================================================
--- head/lib/libcasper/libcasper/libcasper_service.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper_service.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * Copyright (c) 2017 Robert N. M. Watson

Modified: head/lib/libcasper/libcasper/libcasper_service.h
==============================================================================
--- head/lib/libcasper/libcasper/libcasper_service.h	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/libcasper_service.h	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/service.c
==============================================================================
--- head/lib/libcasper/libcasper/service.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/service.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/libcasper/zygote.c
==============================================================================
--- head/lib/libcasper/libcasper/zygote.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/zygote.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * Copyright (c) 2017 Robert N. M. Watson

Modified: head/lib/libcasper/libcasper/zygote.h
==============================================================================
--- head/lib/libcasper/libcasper/zygote.h	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/libcasper/zygote.h	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012 The FreeBSD Foundation
  * Copyright (c) 2015 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.

Modified: head/lib/libcasper/services/cap_dns/cap_dns.c
==============================================================================
--- head/lib/libcasper/services/cap_dns/cap_dns.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_dns/cap_dns.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2012-2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_dns/tests/dns_test.c
==============================================================================
--- head/lib/libcasper/services/cap_dns/tests/dns_test.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_dns/tests/dns_test.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_grp/cap_grp.c
==============================================================================
--- head/lib/libcasper/services/cap_grp/cap_grp.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_grp/cap_grp.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_grp/tests/grp_test.c
==============================================================================
--- head/lib/libcasper/services/cap_grp/tests/grp_test.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_grp/tests/grp_test.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_pwd/cap_pwd.c
==============================================================================
--- head/lib/libcasper/services/cap_pwd/cap_pwd.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_pwd/cap_pwd.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_pwd/tests/pwd_test.c
==============================================================================
--- head/lib/libcasper/services/cap_pwd/tests/pwd_test.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_pwd/tests/pwd_test.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_random/cap_random.c
==============================================================================
--- head/lib/libcasper/services/cap_random/cap_random.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_random/cap_random.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_sysctl/cap_sysctl.c
==============================================================================
--- head/lib/libcasper/services/cap_sysctl/cap_sysctl.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_sysctl/cap_sysctl.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_sysctl/tests/sysctl_test.c
==============================================================================
--- head/lib/libcasper/services/cap_sysctl/tests/sysctl_test.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_sysctl/tests/sysctl_test.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 The FreeBSD Foundation
  * All rights reserved.
  *

Modified: head/lib/libcasper/services/cap_syslog/cap_syslog.c
==============================================================================
--- head/lib/libcasper/services/cap_syslog/cap_syslog.c	Sat Jan 27 12:28:52 2018	(r328472)
+++ head/lib/libcasper/services/cap_syslog/cap_syslog.c	Sat Jan 27 12:55:34 2018	(r328473)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2017 Mariusz Zaborski <oshogbo at FreeBSD.org>
  * All rights reserved.
  *


More information about the svn-src-all mailing list