summaryrefslogtreecommitdiff
path: root/web2c
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2020-04-08 15:36:51 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2020-04-08 15:36:51 +0200
commit9a1b9756939e12e328dea3633d9fe3cbde8f154b (patch)
tree22407c5d909d99866cb0cca7053288bd3d38d52b /web2c
parent8dcafbcc0fbdde27cf480584450516602daacd42 (diff)
downloadcontext-9a1b9756939e12e328dea3633d9fe3cbde8f154b.tar.gz
2020-04-08 14:37:00
Diffstat (limited to 'web2c')
-rw-r--r--web2c/texlive2013cnf.lua48
1 files changed, 0 insertions, 48 deletions
diff --git a/web2c/texlive2013cnf.lua b/web2c/texlive2013cnf.lua
deleted file mode 100644
index 5c58c4505..000000000
--- a/web2c/texlive2013cnf.lua
+++ /dev/null
@@ -1,48 +0,0 @@
-local liveyear = string.match(resolvers.prefixes.selfautoparent(),"(20%d%d)") or "2013"
-
-return {
-
- type = "configuration",
- version = "1.1.2",
- date = "2013-06-02",
- time = "16:15:00",
- comment = "TeX Live differences",
-
- parent = "contextcnf.lua",
-
- content = {
-
- -- Keep in mind that MkIV is is relatively new and there is zero change that
- -- (configuration) files will be found on older obsolete locations.
-
- variables = {
-
- -- This needs testing and if it works, then we can remove the texmflocal setting later on
- --
- -- TEXMFCNF = "{selfautodir:{/share,}/texmf-local/web2c,selfautoparent:{/share,}/texmf{-local,}/web2c}",
-
- TEXMFCACHE = string.format("selfautoparent:texmf-var;~/.texlive%s/texmf-cache",liveyear),
-
- TEXMFSYSTEM = "selfautoparent:$SELFAUTOSYSTEM",
- TEXMFCONTEXT = "selfautoparent:texmf-dist",
-
- -- TEXMFLOCAL = "selfautoparent:../texmf-local"), -- should also work
- TEXMFLOCAL = string.gsub(resolvers.prefixes.selfautoparent(),"20%d%d$","texmf-local"),
-
- TEXMFSYSCONFIG = "selfautoparent:texmf-config",
- TEXMFSYSVAR = "selfautoparent:texmf-var",
- TEXMFCONFIG = string.format("home:.texlive%s/texmf-config",liveyear),
- TEXMFVAR = string.format("home:.texlive%s/texmf-var",liveyear),
-
- -- We have only one cache path but there can be more. The first writable one
- -- will be chosen but there can be more readable paths.
-
- TEXMFCACHE = "$TEXMFSYSVAR;$TEXMFVAR",
-
- TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFPROJECT,!!$TEXMFFONTS,!!$TEXMFLOCAL,!!$TEXMFCONTEXT,!!$TEXMFSYSTEM,!!$TEXMFDIST,!!$TEXMFMAIN}",
-
- FONTCONFIG_PATH = "$TEXMFSYSVAR/fonts/conf",
-
- },
- },
-}