summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLConfig.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-05-30 23:06:34 +0000
committerKarl Berry <karl@freefriends.org>2011-05-30 23:06:34 +0000
commit26615a6c6ef9eeee5a91104f4779826c3e578db3 (patch)
treebe8907d7f27ab99bf217e344a7cb652775a7c217 /Master/tlpkg/TeXLive/TLConfig.pm
parent6282afa253a39fffbb19592236948c50b26de730 (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
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLConfig.pm9
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,
);