texlive[61229] Master/tlpkg/TeXLive/TLConfig.pm: ($ReleaseYear,

commits+karl at tug.org commits+karl at tug.org
Mon Dec 6 18:09:57 CET 2021


Revision: 61229
          http://tug.org/svn/texlive?view=revision&revision=61229
Author:   karl
Date:     2021-12-06 18:09:56 +0100 (Mon, 06 Dec 2021)
Log Message:
-----------
($ReleaseYear, $MinRelease): make "our"
variables, so can use strict; use warnings.

Modified Paths:
--------------
    trunk/Master/tlpkg/TeXLive/TLConfig.pm

Modified: trunk/Master/tlpkg/TeXLive/TLConfig.pm
===================================================================
--- trunk/Master/tlpkg/TeXLive/TLConfig.pm	2021-12-06 00:48:47 UTC (rev 61228)
+++ trunk/Master/tlpkg/TeXLive/TLConfig.pm	2021-12-06 17:09:56 UTC (rev 61229)
@@ -4,6 +4,7 @@
 # This file is licensed under the GNU General Public License version 2
 # or any later version.
 
+use strict; use warnings;
 package TeXLive::TLConfig;
 
 my $svnrev = '$Revision$';
@@ -60,12 +61,12 @@
 
 # the year of our release, will be used in the location of the
 # network packages, and in menu names, and other places.
-$ReleaseYear = 2021;
+our $ReleaseYear = 2021;
 
 # users can upgrade from this year to the current year; might be the
 # same as the release year, or any number of releases earlier.
 # Generally not tested, but should be.
-$MinRelease = 2016;
+our $MinRelease = 2016;
 
 # Meta Categories do not ship files, but only call for other packages.
 our @MetaCategories = qw/Collection Scheme/;



More information about the tex-live-commits mailing list.