summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-06-18 21:49:58 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-06-18 21:49:58 (EDT)
commit4fe83854fc6baec0273863671ed8ee66308fcab8 (patch)
tree2da24aff1fed1c13423f23ecde86af8166afdfb9
parentf8736ddda6d8594f830adc93d17ccc7ac3f64a2b (diff)
Fix license notices
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac2
-rw-r--r--src/defs.h2
-rw-r--r--src/dirent.c2
-rw-r--r--src/dirent.h2
-rw-r--r--src/gzip.c8
-rw-r--r--src/gzip.h2
-rw-r--r--src/main.c2
-rw-r--r--src/opk.c8
-rw-r--r--src/opk.h8
-rw-r--r--src/opk/opk.h8
-rw-r--r--src/opk/read.c8
-rw-r--r--src/opk/write.c8
-rw-r--r--src/specials.c8
-rw-r--r--src/specials.h8
-rw-r--r--src/ustar.c2
-rw-r--r--src/ustar.h2
-rw-r--r--tests/aux/common.sh2
-rwxr-xr-xtests/build.sh2
-rwxr-xr-xtests/version.sh2
20 files changed, 45 insertions, 45 deletions
diff --git a/Makefile.am b/Makefile.am
index 68342ff..b7655fd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,7 @@
#
# Copyright (C) 2014, 2017, 2018 Patrick McDermott
#
-# This file is part of opkg-opk
+# This file is part of opkg-opk.
#
# opkg-opk is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -15,7 +15,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with opkg-opk If not, see <http://www.gnu.org/licenses/>.
+# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
KEY = '2250 31F0 47FF E516 63ED 516F 1A45 9ECD E4D6 04BE'
diff --git a/configure.ac b/configure.ac
index 516276b..fea89da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
AC_INIT([opkg-opk], [1.0.0], [mailto:proteanos-dev@lists.proteanos.com],
[opkg-opk])
diff --git a/src/defs.h b/src/defs.h
index 676640c..24e9776 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_DEFS_H_
diff --git a/src/dirent.c b/src/dirent.c
index 9f29235..575e834 100644
--- a/src/dirent.c
+++ b/src/dirent.c
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
diff --git a/src/dirent.h b/src/dirent.h
index d41a138..959ca1b 100644
--- a/src/dirent.h
+++ b/src/dirent.h
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_DIRENT_H_
diff --git a/src/gzip.c b/src/gzip.c
index 0b5d7cf..819a4e9 100644
--- a/src/gzip.c
+++ b/src/gzip.c
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
diff --git a/src/gzip.h b/src/gzip.h
index 28aa9d5..2f91000 100644
--- a/src/gzip.h
+++ b/src/gzip.h
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_GZIP_H_
diff --git a/src/main.c b/src/main.c
index 01b5d0a..9f61efc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
diff --git a/src/opk.c b/src/opk.c
index e1d7a43..457f7fa 100644
--- a/src/opk.c
+++ b/src/opk.c
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/src/opk.h b/src/opk.h
index b8a1c4d..c987431 100644
--- a/src/opk.h
+++ b/src/opk.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_OPK_H_
diff --git a/src/opk/opk.h b/src/opk/opk.h
index e57be4f..93f9dfe 100644
--- a/src/opk/opk.h
+++ b/src/opk/opk.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_OPK_OPK_H_
diff --git a/src/opk/read.c b/src/opk/read.c
index edfd74f..21fbc66 100644
--- a/src/opk/read.c
+++ b/src/opk/read.c
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <math.h>
diff --git a/src/opk/write.c b/src/opk/write.c
index 3880552..ae8a799 100644
--- a/src/opk/write.c
+++ b/src/opk/write.c
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <dirent.h>
diff --git a/src/specials.c b/src/specials.c
index 8a9fac3..b13ff86 100644
--- a/src/specials.c
+++ b/src/specials.c
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <inttypes.h>
diff --git a/src/specials.h b/src/specials.h
index 2662f27..f69ae51 100644
--- a/src/specials.h
+++ b/src/specials.h
@@ -1,20 +1,20 @@
/*
* Copyright (C) 2023 Patrick McDermott
*
- * This file is part of opkg-opkg.
+ * This file is part of opkg-opk.
*
- * opkg-opkg is free software: you can redistribute it and/or modify
+ * opkg-opk 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.
*
- * opkg-opkg is distributed in the hope that it will be useful,
+ * opkg-opk 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 opkg-opkg. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_SPECIALS_H_
diff --git a/src/ustar.c b/src/ustar.c
index 8a0a43c..2b26ed1 100644
--- a/src/ustar.c
+++ b/src/ustar.c
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdint.h>
diff --git a/src/ustar.h b/src/ustar.h
index 5431819..4a3dc1a 100644
--- a/src/ustar.h
+++ b/src/ustar.h
@@ -14,7 +14,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+ * along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OPKG_OPK_USTAR_H_
diff --git a/tests/aux/common.sh b/tests/aux/common.sh
index 9f9edcc..1713425 100644
--- a/tests/aux/common.sh
+++ b/tests/aux/common.sh
@@ -15,7 +15,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
is()
{
diff --git a/tests/build.sh b/tests/build.sh
index 883f2e4..b17994a 100755
--- a/tests/build.sh
+++ b/tests/build.sh
@@ -15,7 +15,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
set -eu
diff --git a/tests/version.sh b/tests/version.sh
index 6038d70..bec8038 100755
--- a/tests/version.sh
+++ b/tests/version.sh
@@ -15,7 +15,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with opkg-opk. If not, see <http://www.gnu.org/licenses/>.
+# along with opkg-opk. If not, see <https://www.gnu.org/licenses/>.
set -eu