[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: doc: typo for Channels.pm, ment
From: |
Karl Berry |
Subject: |
[automake-commit] branch master updated: doc: typo for Channels.pm, mention files for which we are the master. |
Date: |
Wed, 24 Jan 2024 18:43:33 -0500 |
This is an automated email from the git hooks/post-receive script.
karl pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=5bb9bb42099734139b80805ee34faa3a7ec6be7a
The following commit(s) were added to refs/heads/master by this push:
new 5bb9bb420 doc: typo for Channels.pm, mention files for which we are
the master.
5bb9bb420 is described below
commit 5bb9bb42099734139b80805ee34faa3a7ec6be7a
Author: Karl Berry <karl@freefriends.org>
AuthorDate: Wed Jan 24 15:43:24 2024 -0800
doc: typo for Channels.pm, mention files for which we are the master.
* HACKING: mention files for which we are the master.
* lib/Automake/ChannelDefs.pm: typo for Automake::Channels;
mention that we hold the master copy of this.
* lib/Automake/Channels.pm: update/add text for master copy notice.
* lib/Automake/Configure_ac.pm: likewise.
* lib/Automake/FileUtils.pm: likewise.
* lib/Automake/Getopt.pm: likewise.
* lib/Automake/XFile.pm: likewise.
---
HACKING | 7 +++++++
lib/Automake/ChannelDefs.pm | 7 ++++++-
lib/Automake/Channels.pm | 8 ++++----
lib/Automake/Configure_ac.pm | 8 ++++----
lib/Automake/FileUtils.pm | 8 ++++----
lib/Automake/Getopt.pm | 5 +++++
lib/Automake/XFile.pm | 8 ++++----
7 files changed, 34 insertions(+), 17 deletions(-)
diff --git a/HACKING b/HACKING
index 6b6232ef2..5e6aabaa2 100644
--- a/HACKING
+++ b/HACKING
@@ -42,6 +42,13 @@
should be updated by hand whenever the GPL gets updated (which
shouldn't happen that often anyway :-).
+ Conversely, automake holds the master copy of a number of files that
+ are copied into other projects, such as install-sh, mdate-sh,
+ Channels.pm and ChannelDefs.pm, and plenty more; grep for bug-automake
+ in lib/* for most of the scripts, and see <gnulib>/config/srclist.txt
+ and <autoconf>/build-aux/fetch.pl for lists of such files on two
+ notable receiving ends. Do your best not to break them.
+
* All changes from the last release that are not trivial bug fixes should
be mentioned in NEWS.
diff --git a/lib/Automake/ChannelDefs.pm b/lib/Automake/ChannelDefs.pm
index e3d1cc032..bb0ae0bb0 100644
--- a/lib/Automake/ChannelDefs.pm
+++ b/lib/Automake/ChannelDefs.pm
@@ -13,6 +13,11 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
+
package Automake::ChannelDefs;
=head1 NAME
@@ -69,7 +74,7 @@ our @EXPORT = qw (&prog_error &error &fatal &verb
=head2 CHANNELS
The following channels can be used as the first argument of
-C<Automake::Channel::msg>. For some of them we list a shorthand
+C<Automake::Channels::msg>. For some of them we list a shorthand
function that makes the code more readable.
=over 4
diff --git a/lib/Automake/Channels.pm b/lib/Automake/Channels.pm
index 8a65f68ab..de6020a6e 100644
--- a/lib/Automake/Channels.pm
+++ b/lib/Automake/Channels.pm
@@ -13,10 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-###############################################################
-# The main copy of this file is in Automake's git repository. #
-# Updates should be sent to automake-patches@gnu.org. #
-###############################################################
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
package Automake::Channels;
diff --git a/lib/Automake/Configure_ac.pm b/lib/Automake/Configure_ac.pm
index 1ca65c95c..825848f4a 100644
--- a/lib/Automake/Configure_ac.pm
+++ b/lib/Automake/Configure_ac.pm
@@ -13,10 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-###############################################################
-# The main copy of this file is in Automake's git repository. #
-# Updates should be sent to automake-patches@gnu.org. #
-###############################################################
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
package Automake::Configure_ac;
diff --git a/lib/Automake/FileUtils.pm b/lib/Automake/FileUtils.pm
index f28e2c52b..31c61048e 100644
--- a/lib/Automake/FileUtils.pm
+++ b/lib/Automake/FileUtils.pm
@@ -13,10 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-###############################################################
-# The main copy of this file is in Automake's git repository. #
-# Updates should be sent to automake-patches@gnu.org. #
-###############################################################
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
package Automake::FileUtils;
diff --git a/lib/Automake/Getopt.pm b/lib/Automake/Getopt.pm
index f33263e7c..8f6458ede 100644
--- a/lib/Automake/Getopt.pm
+++ b/lib/Automake/Getopt.pm
@@ -13,6 +13,11 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
+
package Automake::Getopt;
=head1 NAME
diff --git a/lib/Automake/XFile.pm b/lib/Automake/XFile.pm
index 244d37274..81af13e38 100644
--- a/lib/Automake/XFile.pm
+++ b/lib/Automake/XFile.pm
@@ -15,10 +15,10 @@
# Written by Akim Demaille <akim@freefriends.org>.
-###############################################################
-# The main copy of this file is in Automake's git repository. #
-# Updates should be sent to automake-patches@gnu.org. #
-###############################################################
+##################################################################
+# The master copy of this file is in Automake's source repository.
+# Please send updates to automake-patches@gnu.org.
+##################################################################
package Automake::XFile;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: doc: typo for Channels.pm, mention files for which we are the master.,
Karl Berry <=