[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-2.0.0-526-ga7c1552

git git at cross-lfs.org
Mon Nov 25 02:16:51 PST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  a7c1552a5549c4f9747a3ee632d44fbd653e3fe9 (commit)
       via  2d023743dfb17fe2f6d41b5bcdc707337cd2ca21 (commit)
       via  bd3588bd565f5d01c52300151ac7c427a2e12c84 (commit)
       via  4401be0e2ddd58d692a0b85214da88c2da1aadc5 (commit)
       via  358ffc276511c252f433894c6a67a0a2632f8dc7 (commit)
      from  0a6ea84761d83351d66e22258e95940bc79bd80f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a7c1552a5549c4f9747a3ee632d44fbd653e3fe9
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Mon Nov 25 04:15:34 2013 -0600

    Add tar-1.27.1-manpage-1.patch.

diff --git a/patches/tar-1.27.1-manpage-1.patch b/patches/tar-1.27.1-manpage-1.patch
new file mode 100644
index 0000000..223f8a6
--- /dev/null
+++ b/patches/tar-1.27.1-manpage-1.patch
@@ -0,0 +1,335 @@
+Submitted By: William Harrington < kb0iic at cross-lfs dot org >
+Date: 2013-10-25
+Initial Package Version: 1.27
+Origin: Debian
+Upstream Status: Unknown
+Description: This makes a tar.1 manpage from src/tar.c 
+Usage: perl tarman > /usr/share/man/man1/tar.1
+
+diff -Naur tar-1.27.orig/tarman tar-1.27/tarman
+--- tar-1.27.orig/tarman	1970-01-01 00:00:00.000000000 +0000
++++ tar-1.27/tarman	2013-10-25 18:56:17.753173995 +0000
+@@ -0,0 +1,323 @@
++#
++# tarman - make tar man page from src/tar.c
++# some text cribbed from debian tar man page
++#
++
++use strict;
++
++my $t = "".localtime(time);
++my $datestr = substr($t,4,3)." ".substr($t,8,2).", ".substr($t,20,4);
++
++ at ARGV=qw(src/tar.c);
++my $mode;
++my @operations;
++my $lastoperation;
++my @options;
++my @formats;
++my @short;
++my $examples;
++my $saw_format;
++my @env_vars;
++while (<>) {
++	my $nflag = 0;
++	chomp;
++# print "$mode: $_\n";
++	if (/getenv.*"/) {
++		next if defined($mode);
++		my @c1 = split('"');
++		if ($#c1 > 0) {
++			push @env_vars, $c1[1];
++		}
++	}
++	if (/Main operation mode:/) {
++		$mode = 1;
++		next;
++	}
++	if (/Operation modifiers:/) {
++		$mode = 2;
++		next;
++	}
++	if (/Examples:/) {
++		$mode = 3;
++		next;
++	}
++	if (/define GRID/) {
++		$mode = 2;
++	}
++	if (/undef GRID/) {
++		undef $lastoperation;
++		undef $mode;
++		next;
++	}
++	if ($mode == 1 || $mode == 2) {
++		if (/{"/) {	# }
++			my @j = split(',');
++			my @c1 = split('"', $j[0]);
++			if (/OPTION_ALIAS/) {
++				next unless defined($lastoperation);
++				push @{$$lastoperation{'alias'} }, $c1[1];
++				next;
++			}
++			my %newhash = ();
++			$lastoperation = \%newhash;
++			my $name = $c1[1];
++			if ($name =~ /^  /) {
++				$name =~ s/^  */format=/;
++				push @formats, $lastoperation;
++			} elsif ($mode == 1) {
++				push @operations, $lastoperation;
++			} else {
++				push @options, $lastoperation;
++			}
++			$newhash{'name'} = $name;
++			if ($mode == 2 && $name eq 'format') {
++				$saw_format = $lastoperation;
++			}
++			my @c2 = split("'", $j[1]);
++			if ($#c2 > 0) {
++				$newhash{'short'} = $c2[1];
++				push @short, $c2[1] if ($mode == 1);
++			}
++			if ($j[2] =~ /N_/) {
++				$nflag = 1;
++			}
++		}
++		if (/N_/) {
++			next unless defined($lastoperation);
++			my $nrest = $_;
++			$nrest =~ s/.*N_//;
++			my @c3 = split('"', $nrest);
++			if ($#c3 > 0) {
++				if ($nflag) {
++					$$lastoperation{'operand'} .= $c3[1];
++				} else {
++					$$lastoperation{'description'} .= $c3[1];
++				}
++			}
++		}
++	}
++	if ($mode == 3 ) {
++		my $j = $_;
++		$j =~ s/\\n.*//;
++		my ($c1, $c2) = split('#', $j, 2);
++		$c1 =~ s/  *$//;
++		$c1 =~ s/^  *//;
++$c1 =~ s/-/\\-/g;
++		$c2 =~ s/^  *//;
++$examples .= <<".";
++$c2
++.Bd -literal -offset indent -compact
++$c1
++.Ed
++.
++		# (
++		if (/"\)/) {
++			undef $mode;
++		}
++	}
++}
++
++# for my $q ( @operations) {
++# 	print "\nshort=".$$q{'short'}."\n";
++# 	print "name=".$$q{'name'}."\n";
++# 	print "desc=".$$q{'description'}."\n";
++# 	if (defined($$q{'alias'})) {
++# 		print "alias=".join(',',@{ $$q{'alias'}})."\n";
++# 	}
++# }
++
++sub long2nroff {
++	my $f = shift;
++	if ($f !~ /^-/) {
++		$f = "Fl -$f";
++	}
++	$f =~ s/-/\\-/g;
++	return $f;
++}
++
++sub format_options
++{
++	my $h = shift;
++	my $r;
++	for my $q ( @$h ) {
++		$r .= ".It";
++		my @functions;
++		push @functions, " Fl ".$$q{'short'} if defined($$q{'short'});
++		push @functions, " ".long2nroff($$q{'name'});
++		push @functions, join(' ', '', map {long2nroff $_} @{ $$q{'alias'} })
++			if defined($$q{'alias'});
++		$r .= join(' ,', @functions);
++		if (defined($$q{'operand'})) {
++			if ($#functions > 0) {
++				$r .= " ";
++			} else {
++				$r .= " Ns \\= Ns ";
++			}
++			$r .= "Ar ".$$q{'operand'};
++		}
++		$r .= "\n".$$q{'description'}."\n";
++		$r .= $$q{'extra'};
++	}
++	return $r;
++}
++
++sub optionkeyword
++{
++	my $h = shift;
++	my $k = $$h{'short'};
++	$k = $$h{'name'} if !defined($k);
++	my $l = $k;
++	if ($l =~ s/^no-//) {
++		$l .= "-no";
++	}
++	return ($l,$k);
++}
++
++sub optioncmp
++{
++	my ($x1, $x2) = optionkeyword($a);
++	my ($y1, $y2) = optionkeyword($b);
++	my $r = lc($x1) cmp lc($y1);
++	return $r if $r;
++	$r = $y1 cmp $x1;
++	return $r if $r;
++	return $x2 cmp $y2;
++}
++
++ at operations = sort optioncmp @operations;
++ at operations = sort optioncmp @operations;
++ at options = sort optioncmp @options;
++ at formats = sort optioncmp @formats;
++
++if ($#formats >= 0 && !$saw_format) {
++	print STDERR "FIXME: saw --format=X but no root --format!\n";
++	exit(1);
++}
++
++my $function_letters;
++my $short_letters = join('', sort @short);
++my $option_letters;
++my $format_letters;
++my $command_string = <<".";
++.Nm tar
++.
++$command_string .= ".Oo Fl Oc";
++my $env_variables;
++my %env_description = (
++'SIMPLE_BACKUP_SUFFIX' => <<".",
++Backup prefix to use when extracting, if
++.Fl \\-suffix
++is not specified.
++The backup suffix defaults to `~' if neither is specified.
++.
++'TAPE' => <<".",
++Device or file to use for the archive if 
++.Fl \\-file
++is not specified.
++If this environment variable is unset, use stdin or stdout instead.
++.
++'TAR_OPTIONS' => <<".",
++Options to prepend to those specified on the command line, separated by
++whitespace.  Embedded backslashes may be used to escape whitespace or
++backslashes within an option.
++.
++);
++my $sep = "";
++for my $q ( @operations) {
++	$command_string .= " Cm";
++	$command_string .= $sep;
++	$command_string .= " ".$$q{'short'} if defined($$q{'short'});
++	$command_string .= " ".long2nroff($$q{'name'});
++	if (defined($$q{'alias'})) {
++		my $t = join(' ', '', map{long2nroff $_} @{ $$q{'alias'} });
++		$t =~ s/ Fl / /g;
++		$command_string .= $t;
++	}
++	$sep = " \\||\\|";
++}
++$function_letters = ".Bl -tag -width flag\n";
++$function_letters .= format_options(\@operations);
++$function_letters .= ".El";
++if ($#formats >= 0) {
++	$format_letters = ".Bl -tag -width flag\n";
++	$format_letters .= format_options(\@formats);
++	$format_letters .= ".El\n";
++	$$saw_format{'extra'} = $format_letters;
++}
++### Ar Cm Ic Li Nm Op Pa Va
++$option_letters = ".Bl -tag -width flag\n";
++$option_letters .= format_options(\@options);
++$option_letters .= ".El";
++$env_variables .= ".Bl -tag -width Ds\n";
++for my $q ( @env_vars) {
++	$env_variables .= ".It Ev $q\n";
++	$env_variables .= $env_description{$q};
++}
++$env_variables .= ".El";
++
++$examples =~ s/\n$//;
++$function_letters =~ s/\n$//;
++$option_letters =~ s/\n$//;
++$env_variables =~ s/\n$//;
++print <<".";
++.\\" generated by script on $t
++.Dd $datestr
++.Dt TAR 1
++.Sh NAME
++.Nm tar
++.Nd The GNU version of the tar archiving utility
++.Sh SYNOPSIS
++$command_string
++.Op Ar options
++.Op Ar pathname ...
++.Sh DESCRIPTION
++.Nm Tar
++stores and extracts files from a tape or disk archive.
++.Pp
++The first argument to
++tar
++should be a function; either one of the letters
++.Cm $short_letters ,
++or one of the long function names.
++A function letter need not be prefixed with ``\\-'', and may be combined
++with other single-letter options.
++A long function name must be prefixed with
++.Cm \\\\-\\\\- .
++Some options take a parameter; with the single-letter form
++these must be given as separate arguments.
++With the long form, they may be given by appending
++.Cm = Ns Ar value
++to the option.
++.Sh FUNCTION LETTERS
++Main operation mode:
++$function_letters
++.Sh OTHER OPTIONS
++Operation modifiers:
++$option_letters
++.Sh ENVIRONMENT
++The behavior of tar is controlled by the following environment variables,
++among others:
++$env_variables
++.Sh EXAMPLES
++$examples
++.Sh SEE ALSO
++.\\" libarchive
++.Xr tar 5 ,
++.\\" man-pages
++.Xr symlink 7 ,
++.Xr rmt 8
++.Sh HISTORY
++The
++.Nm tar
++command appeared in
++.At v7 .
++.Sh BUGS
++The GNU folks, in general, abhor man pages, and create info documents instead.
++Unfortunately, the info document describing tar is licensed under the GFDL with
++invariant cover texts, which makes it impossible to include any text
++from that document in this man page.
++Most of the text in this document was automatically extracted from the usage
++text in the source.
++It may not completely describe all features of the program.
++.
++__END__

commit 2d023743dfb17fe2f6d41b5bcdc707337cd2ca21
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Mon Nov 25 04:15:21 2013 -0600

    Remove tar-1.7-manpage-1.patch.

diff --git a/patches/tar-1.27-manpage-1.patch b/patches/tar-1.27-manpage-1.patch
deleted file mode 100644
index 223f8a6..0000000
--- a/patches/tar-1.27-manpage-1.patch
+++ /dev/null
@@ -1,335 +0,0 @@
-Submitted By: William Harrington < kb0iic at cross-lfs dot org >
-Date: 2013-10-25
-Initial Package Version: 1.27
-Origin: Debian
-Upstream Status: Unknown
-Description: This makes a tar.1 manpage from src/tar.c 
-Usage: perl tarman > /usr/share/man/man1/tar.1
-
-diff -Naur tar-1.27.orig/tarman tar-1.27/tarman
---- tar-1.27.orig/tarman	1970-01-01 00:00:00.000000000 +0000
-+++ tar-1.27/tarman	2013-10-25 18:56:17.753173995 +0000
-@@ -0,0 +1,323 @@
-+#
-+# tarman - make tar man page from src/tar.c
-+# some text cribbed from debian tar man page
-+#
-+
-+use strict;
-+
-+my $t = "".localtime(time);
-+my $datestr = substr($t,4,3)." ".substr($t,8,2).", ".substr($t,20,4);
-+
-+ at ARGV=qw(src/tar.c);
-+my $mode;
-+my @operations;
-+my $lastoperation;
-+my @options;
-+my @formats;
-+my @short;
-+my $examples;
-+my $saw_format;
-+my @env_vars;
-+while (<>) {
-+	my $nflag = 0;
-+	chomp;
-+# print "$mode: $_\n";
-+	if (/getenv.*"/) {
-+		next if defined($mode);
-+		my @c1 = split('"');
-+		if ($#c1 > 0) {
-+			push @env_vars, $c1[1];
-+		}
-+	}
-+	if (/Main operation mode:/) {
-+		$mode = 1;
-+		next;
-+	}
-+	if (/Operation modifiers:/) {
-+		$mode = 2;
-+		next;
-+	}
-+	if (/Examples:/) {
-+		$mode = 3;
-+		next;
-+	}
-+	if (/define GRID/) {
-+		$mode = 2;
-+	}
-+	if (/undef GRID/) {
-+		undef $lastoperation;
-+		undef $mode;
-+		next;
-+	}
-+	if ($mode == 1 || $mode == 2) {
-+		if (/{"/) {	# }
-+			my @j = split(',');
-+			my @c1 = split('"', $j[0]);
-+			if (/OPTION_ALIAS/) {
-+				next unless defined($lastoperation);
-+				push @{$$lastoperation{'alias'} }, $c1[1];
-+				next;
-+			}
-+			my %newhash = ();
-+			$lastoperation = \%newhash;
-+			my $name = $c1[1];
-+			if ($name =~ /^  /) {
-+				$name =~ s/^  */format=/;
-+				push @formats, $lastoperation;
-+			} elsif ($mode == 1) {
-+				push @operations, $lastoperation;
-+			} else {
-+				push @options, $lastoperation;
-+			}
-+			$newhash{'name'} = $name;
-+			if ($mode == 2 && $name eq 'format') {
-+				$saw_format = $lastoperation;
-+			}
-+			my @c2 = split("'", $j[1]);
-+			if ($#c2 > 0) {
-+				$newhash{'short'} = $c2[1];
-+				push @short, $c2[1] if ($mode == 1);
-+			}
-+			if ($j[2] =~ /N_/) {
-+				$nflag = 1;
-+			}
-+		}
-+		if (/N_/) {
-+			next unless defined($lastoperation);
-+			my $nrest = $_;
-+			$nrest =~ s/.*N_//;
-+			my @c3 = split('"', $nrest);
-+			if ($#c3 > 0) {
-+				if ($nflag) {
-+					$$lastoperation{'operand'} .= $c3[1];
-+				} else {
-+					$$lastoperation{'description'} .= $c3[1];
-+				}
-+			}
-+		}
-+	}
-+	if ($mode == 3 ) {
-+		my $j = $_;
-+		$j =~ s/\\n.*//;
-+		my ($c1, $c2) = split('#', $j, 2);
-+		$c1 =~ s/  *$//;
-+		$c1 =~ s/^  *//;
-+$c1 =~ s/-/\\-/g;
-+		$c2 =~ s/^  *//;
-+$examples .= <<".";
-+$c2
-+.Bd -literal -offset indent -compact
-+$c1
-+.Ed
-+.
-+		# (
-+		if (/"\)/) {
-+			undef $mode;
-+		}
-+	}
-+}
-+
-+# for my $q ( @operations) {
-+# 	print "\nshort=".$$q{'short'}."\n";
-+# 	print "name=".$$q{'name'}."\n";
-+# 	print "desc=".$$q{'description'}."\n";
-+# 	if (defined($$q{'alias'})) {
-+# 		print "alias=".join(',',@{ $$q{'alias'}})."\n";
-+# 	}
-+# }
-+
-+sub long2nroff {
-+	my $f = shift;
-+	if ($f !~ /^-/) {
-+		$f = "Fl -$f";
-+	}
-+	$f =~ s/-/\\-/g;
-+	return $f;
-+}
-+
-+sub format_options
-+{
-+	my $h = shift;
-+	my $r;
-+	for my $q ( @$h ) {
-+		$r .= ".It";
-+		my @functions;
-+		push @functions, " Fl ".$$q{'short'} if defined($$q{'short'});
-+		push @functions, " ".long2nroff($$q{'name'});
-+		push @functions, join(' ', '', map {long2nroff $_} @{ $$q{'alias'} })
-+			if defined($$q{'alias'});
-+		$r .= join(' ,', @functions);
-+		if (defined($$q{'operand'})) {
-+			if ($#functions > 0) {
-+				$r .= " ";
-+			} else {
-+				$r .= " Ns \\= Ns ";
-+			}
-+			$r .= "Ar ".$$q{'operand'};
-+		}
-+		$r .= "\n".$$q{'description'}."\n";
-+		$r .= $$q{'extra'};
-+	}
-+	return $r;
-+}
-+
-+sub optionkeyword
-+{
-+	my $h = shift;
-+	my $k = $$h{'short'};
-+	$k = $$h{'name'} if !defined($k);
-+	my $l = $k;
-+	if ($l =~ s/^no-//) {
-+		$l .= "-no";
-+	}
-+	return ($l,$k);
-+}
-+
-+sub optioncmp
-+{
-+	my ($x1, $x2) = optionkeyword($a);
-+	my ($y1, $y2) = optionkeyword($b);
-+	my $r = lc($x1) cmp lc($y1);
-+	return $r if $r;
-+	$r = $y1 cmp $x1;
-+	return $r if $r;
-+	return $x2 cmp $y2;
-+}
-+
-+ at operations = sort optioncmp @operations;
-+ at operations = sort optioncmp @operations;
-+ at options = sort optioncmp @options;
-+ at formats = sort optioncmp @formats;
-+
-+if ($#formats >= 0 && !$saw_format) {
-+	print STDERR "FIXME: saw --format=X but no root --format!\n";
-+	exit(1);
-+}
-+
-+my $function_letters;
-+my $short_letters = join('', sort @short);
-+my $option_letters;
-+my $format_letters;
-+my $command_string = <<".";
-+.Nm tar
-+.
-+$command_string .= ".Oo Fl Oc";
-+my $env_variables;
-+my %env_description = (
-+'SIMPLE_BACKUP_SUFFIX' => <<".",
-+Backup prefix to use when extracting, if
-+.Fl \\-suffix
-+is not specified.
-+The backup suffix defaults to `~' if neither is specified.
-+.
-+'TAPE' => <<".",
-+Device or file to use for the archive if 
-+.Fl \\-file
-+is not specified.
-+If this environment variable is unset, use stdin or stdout instead.
-+.
-+'TAR_OPTIONS' => <<".",
-+Options to prepend to those specified on the command line, separated by
-+whitespace.  Embedded backslashes may be used to escape whitespace or
-+backslashes within an option.
-+.
-+);
-+my $sep = "";
-+for my $q ( @operations) {
-+	$command_string .= " Cm";
-+	$command_string .= $sep;
-+	$command_string .= " ".$$q{'short'} if defined($$q{'short'});
-+	$command_string .= " ".long2nroff($$q{'name'});
-+	if (defined($$q{'alias'})) {
-+		my $t = join(' ', '', map{long2nroff $_} @{ $$q{'alias'} });
-+		$t =~ s/ Fl / /g;
-+		$command_string .= $t;
-+	}
-+	$sep = " \\||\\|";
-+}
-+$function_letters = ".Bl -tag -width flag\n";
-+$function_letters .= format_options(\@operations);
-+$function_letters .= ".El";
-+if ($#formats >= 0) {
-+	$format_letters = ".Bl -tag -width flag\n";
-+	$format_letters .= format_options(\@formats);
-+	$format_letters .= ".El\n";
-+	$$saw_format{'extra'} = $format_letters;
-+}
-+### Ar Cm Ic Li Nm Op Pa Va
-+$option_letters = ".Bl -tag -width flag\n";
-+$option_letters .= format_options(\@options);
-+$option_letters .= ".El";
-+$env_variables .= ".Bl -tag -width Ds\n";
-+for my $q ( @env_vars) {
-+	$env_variables .= ".It Ev $q\n";
-+	$env_variables .= $env_description{$q};
-+}
-+$env_variables .= ".El";
-+
-+$examples =~ s/\n$//;
-+$function_letters =~ s/\n$//;
-+$option_letters =~ s/\n$//;
-+$env_variables =~ s/\n$//;
-+print <<".";
-+.\\" generated by script on $t
-+.Dd $datestr
-+.Dt TAR 1
-+.Sh NAME
-+.Nm tar
-+.Nd The GNU version of the tar archiving utility
-+.Sh SYNOPSIS
-+$command_string
-+.Op Ar options
-+.Op Ar pathname ...
-+.Sh DESCRIPTION
-+.Nm Tar
-+stores and extracts files from a tape or disk archive.
-+.Pp
-+The first argument to
-+tar
-+should be a function; either one of the letters
-+.Cm $short_letters ,
-+or one of the long function names.
-+A function letter need not be prefixed with ``\\-'', and may be combined
-+with other single-letter options.
-+A long function name must be prefixed with
-+.Cm \\\\-\\\\- .
-+Some options take a parameter; with the single-letter form
-+these must be given as separate arguments.
-+With the long form, they may be given by appending
-+.Cm = Ns Ar value
-+to the option.
-+.Sh FUNCTION LETTERS
-+Main operation mode:
-+$function_letters
-+.Sh OTHER OPTIONS
-+Operation modifiers:
-+$option_letters
-+.Sh ENVIRONMENT
-+The behavior of tar is controlled by the following environment variables,
-+among others:
-+$env_variables
-+.Sh EXAMPLES
-+$examples
-+.Sh SEE ALSO
-+.\\" libarchive
-+.Xr tar 5 ,
-+.\\" man-pages
-+.Xr symlink 7 ,
-+.Xr rmt 8
-+.Sh HISTORY
-+The
-+.Nm tar
-+command appeared in
-+.At v7 .
-+.Sh BUGS
-+The GNU folks, in general, abhor man pages, and create info documents instead.
-+Unfortunately, the info document describing tar is licensed under the GFDL with
-+invariant cover texts, which makes it impossible to include any text
-+from that document in this man page.
-+Most of the text in this document was automatically extracted from the usage
-+text in the source.
-+It may not completely describe all features of the program.
-+.
-+__END__

commit bd3588bd565f5d01c52300151ac7c427a2e12c84
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Mon Nov 25 04:15:00 2013 -0600

    Update entries for md5 hash, file size, and version for tar 1.27.1.

diff --git a/BOOK/packages.ent b/BOOK/packages.ent
index 197490e..ec60cd6 100644
--- a/BOOK/packages.ent
+++ b/BOOK/packages.ent
@@ -409,10 +409,10 @@
 <!ENTITY sysvinit-md5 "6eda8a97b86e0a6f59dabbf25202aa6f">
 <!ENTITY sysvinit-home "http://savannah.nongnu.org/projects/sysvinit">
 
-<!ENTITY tar-version "1.27">
-<!ENTITY tar-size "1,867 KB">
+<!ENTITY tar-version "1.27.1">
+<!ENTITY tar-size "1,880 KB">
 <!ENTITY tar-url "&gnu;tar/tar-&tar-version;.tar.xz">
-<!ENTITY tar-md5 "3484fc42b7a82b82f2305b2971aa0e56">
+<!ENTITY tar-md5 "e0382a4064e09a4943f3adeff1435978">
 <!ENTITY tar-home "&gnu-software;tar">
 
 <!ENTITY tcl-version2 "8.6">

commit 4401be0e2ddd58d692a0b85214da88c2da1aadc5
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Mon Nov 25 04:11:53 2013 -0600

    Add update entry in master changelog for Tar 1.27.1.

diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index ed7b422..0c9e15b 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -37,6 +37,15 @@
 
 -->
     <listitem>
+      <para>25 November 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Update Tar to 1.27.1.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>23 November 2013</para>
       <itemizedlist>
         <listitem>

commit 358ffc276511c252f433894c6a67a0a2632f8dc7
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Mon Nov 25 04:05:10 2013 -0600

    Update date.

diff --git a/BOOK/general.ent b/BOOK/general.ent
index f158c8c..7c21f0a 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -2,7 +2,7 @@
 
 <!ENTITY month "11"> <!-- Use two digits -->
 <!ENTITY month_name "November">
-<!ENTITY day "23"> <!-- Use two digits -->
+<!ENTITY day "25"> <!-- Use two digits -->
 <!ENTITY year "2013"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

-----------------------------------------------------------------------

Summary of changes:
 BOOK/general.ent                                   |    2 +-
 BOOK/introduction/common/changelog.xml             |    9 +++++++++
 BOOK/packages.ent                                  |    6 +++---
 ...-manpage-1.patch => tar-1.27.1-manpage-1.patch} |    0
 4 files changed, 13 insertions(+), 4 deletions(-)
 rename patches/{tar-1.27-manpage-1.patch => tar-1.27.1-manpage-1.patch} (100%)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list