public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/functions/src_unpack/rpm-sources/, ...
@ 2021-01-03 14:32 Ulrich Müller
  0 siblings, 0 replies; only message in thread
From: Ulrich Müller @ 2021-01-03 14:32 UTC (permalink / raw
  To: gentoo-commits

commit:     614aa9705f89350955e02f4abc69a3de60948fa0
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  3 14:32:01 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan  3 14:32:01 2021 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=614aa970

Update copyright years

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 appendices/devbook-guide/text.xml                        |  2 +-
 bin/gen-eclass-html.sh                                   |  2 +-
 devbook.xsl                                              |  2 +-
 ebuild-writing/common-mistakes/text.xml                  |  2 +-
 ebuild-writing/eapi/text.xml                             |  2 +-
 ebuild-writing/file-format/text.xml                      |  2 +-
 ebuild-writing/functions/src_unpack/rpm-sources/text.xml |  2 +-
 ebuild-writing/users-and-groups/text.xml                 |  4 ++--
 ebuild-writing/using-eclasses/text.xml                   |  2 +-
 eclass-writing/text.xml                                  |  6 +++---
 general-concepts/use-flags/text.xml                      |  2 +-
 quickstart/text.xml                                      | 10 +++++-----
 12 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/appendices/devbook-guide/text.xml b/appendices/devbook-guide/text.xml
index 1924843..70b4dab 100644
--- a/appendices/devbook-guide/text.xml
+++ b/appendices/devbook-guide/text.xml
@@ -327,7 +327,7 @@ the following example:
 </p>
 
 <codesample lang="ebuild" numbering="lines">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh
index f7fcc73..4ca853a 100755
--- a/bin/gen-eclass-html.sh
+++ b/bin/gen-eclass-html.sh
@@ -76,7 +76,7 @@ IFS='' read -r -d '' FOOTER << 'EOF'
 <li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li>
 </ul></div>
 <div class="col-xs-10 col-sm-9 col-md-10">
-<strong>Copyright (C) 2001-2020 Gentoo Authors</strong><br><small>
+<strong>Copyright (C) 2001-2021 Gentoo Authors</strong><br><small>
                 Gentoo is a trademark of the Gentoo Foundation, Inc.
                 The text of this document is distributed under the
                 <a href="https://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License, version 2</a>.

diff --git a/devbook.xsl b/devbook.xsl
index 1605663..5c81497 100644
--- a/devbook.xsl
+++ b/devbook.xsl
@@ -636,7 +636,7 @@
               </xsl:if>
             </div>
             <div class="col-xs-10 col-sm-9 col-md-10">
-              <strong>Copyright (C) 2001-2020 Gentoo Authors</strong><br />
+              <strong>Copyright (C) 2001-2021 Gentoo Authors</strong><br />
               <small>
                 Gentoo is a trademark of the Gentoo Foundation, Inc.
                 The text of this document is distributed under the

diff --git a/ebuild-writing/common-mistakes/text.xml b/ebuild-writing/common-mistakes/text.xml
index ff9b377..67be337 100644
--- a/ebuild-writing/common-mistakes/text.xml
+++ b/ebuild-writing/common-mistakes/text.xml
@@ -180,7 +180,7 @@ The first two lines <e>must</e> look like this:
 </p>
 
 <pre>
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 </pre>
 

diff --git a/ebuild-writing/eapi/text.xml b/ebuild-writing/eapi/text.xml
index 9541c02..b738640 100644
--- a/ebuild-writing/eapi/text.xml
+++ b/ebuild-writing/eapi/text.xml
@@ -42,7 +42,7 @@ You must set the EAPI variable by specifying it at the top of the ebuild:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/ebuild-writing/file-format/text.xml b/ebuild-writing/file-format/text.xml
index 5eb0cf8..2bd6623 100644
--- a/ebuild-writing/file-format/text.xml
+++ b/ebuild-writing/file-format/text.xml
@@ -178,7 +178,7 @@ header.txt</uri></c> in the top directory of the Gentoo repository.
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 </codesample>
 

diff --git a/ebuild-writing/functions/src_unpack/rpm-sources/text.xml b/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
index 9348350..4341944 100644
--- a/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
+++ b/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
@@ -52,7 +52,7 @@ patches. The filename should be <c>suse-fetchmail-6.2.5.54.1.ebuild</c>.
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git a/ebuild-writing/users-and-groups/text.xml b/ebuild-writing/users-and-groups/text.xml
index 294d558..388b97d 100644
--- a/ebuild-writing/users-and-groups/text.xml
+++ b/ebuild-writing/users-and-groups/text.xml
@@ -47,7 +47,7 @@ can be used as a template for writing group ebuilds:
 </p>
 
 <pre>
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -76,7 +76,7 @@ can be used as a template for writing user ebuilds:
 </p>
 
 <pre>
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/ebuild-writing/using-eclasses/text.xml b/ebuild-writing/using-eclasses/text.xml
index a1b7f08..9d5f64c 100644
--- a/ebuild-writing/using-eclasses/text.xml
+++ b/ebuild-writing/using-eclasses/text.xml
@@ -32,7 +32,7 @@ uses three eclasses:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml
index d0048b3..70f9fff 100644
--- a/eclass-writing/text.xml
+++ b/eclass-writing/text.xml
@@ -612,7 +612,7 @@ a single function, <c>domacosapp</c>.
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: macosapp.eclass
@@ -699,7 +699,7 @@ something like the following:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: jmake.eclass
@@ -760,7 +760,7 @@ for an eclass to invoke die from the global scope.  For example:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: eapi-die.eclass

diff --git a/general-concepts/use-flags/text.xml b/general-concepts/use-flags/text.xml
index 321a509..dd9b3fd 100644
--- a/general-concepts/use-flags/text.xml
+++ b/general-concepts/use-flags/text.xml
@@ -212,7 +212,7 @@ on USE-ordering in Portage.
 </important>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/quickstart/text.xml b/quickstart/text.xml
index 4cab04a..09dbaad 100644
--- a/quickstart/text.xml
+++ b/quickstart/text.xml
@@ -34,7 +34,7 @@ can see real ebuilds in the main tree).
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -203,7 +203,7 @@ Here's <c>app-misc/detox/detox-1.1.1.ebuild</c>:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -261,7 +261,7 @@ one must use EAPI 7. Here's <c>app-misc/detox/detox-1.1.0.ebuild</c>:
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -317,7 +317,7 @@ replacement iconv for <c>libc</c> implementations which don't have their own.
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -356,7 +356,7 @@ Another more complicated example, this time based upon
 </p>
 
 <codesample lang="ebuild">
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-01-03 14:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-03 14:32 [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/functions/src_unpack/rpm-sources/, Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox