diff options
author | Karl Berry <karl@freefriends.org> | 2011-05-30 23:06:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-05-30 23:06:34 +0000 |
commit | 26615a6c6ef9eeee5a91104f4779826c3e578db3 (patch) | |
tree | be8907d7f27ab99bf217e344a7cb652775a7c217 | |
parent | 6282afa253a39fffbb19592236948c50b26de730 (diff) |
($MinRelease): new variable, set to $ReleaseYear - 1 (= 2010).
(%TLPDBConfigs): "minrelease" => $MinRelease.
git-svn-id: svn://tug.org/texlive/trunk@22695 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 7447431b9ec..3503cc65271 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -52,10 +52,14 @@ BEGIN { } # the year of our release, will be used in the location of the -# network packages, and in menu names, and probably many other places +# network packages, and in menu names, and other places. $ReleaseYear = 2011; -# Meta Categories do not ship files, but call only for other packages +# users can upgrade from this year to the current year; maybe a spread +# of more than one year will be useful at some point, but not now. +$MinRelease = $ReleaseYear - 1; + +# Meta Categories do not ship files, but only call for other packages. our @MetaCategories = qw/Collection Scheme/; our $MetaCategoriesRegexp = '(Collection|Scheme)'; # @@ -108,6 +112,7 @@ our %TLPDBConfigs = ( "container_split_src_files" => 1, "container_split_doc_files" => 1, "container_format" => $DefaultContainerFormat, + "minrelease" => $MinRelease, "release" => $ReleaseYear, ); |