File tree 2 files changed +48
-2
lines changed
2 files changed +48
-2
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright 2016-2021 the Tectonic Project
2
+ // Licensed under the MIT License.
3
+
4
+ use std:: env;
5
+
6
+ /// The current hardcoded default prefix for tectonic's web bundle.
7
+ const TECTONIC_WEB_BUNDLE_PREFIX_DEFAULT : & str = "https://relay.fullyjustified.net" ;
8
+
9
+ /// Environment variable names to look for the bundle URLs.
10
+ const LOCKED_VAR : & str = "TECTONIC_WEB_BUNDLE_LOCKED" ;
11
+ const PREFIX_VAR : & str = "TECTONIC_WEB_BUNDLE_PREFIX" ;
12
+
13
+ /// Sets the environment variables for the default web bundle.
14
+ ///
15
+ /// `${TECTONIC_WEB_BUNDLE_PREFIX}` would lead to a url in the form of
16
+ /// `${TECTONIC_WEB_BUNDLE_PREFIX}/default_bundle.tar`, while the optional
17
+ /// "locked" url, `${TECTONIC_WEB_BUNDLE_LOCKED}`, can be used to pin the
18
+ /// default bundle to a specific version if specified. This would be useful
19
+ /// for reproducible builds.
20
+ fn web_bundle_presets ( ) {
21
+ // load from env
22
+ let web_bundle_locked = env:: var ( LOCKED_VAR ) . unwrap_or ( "" . into ( ) ) ;
23
+ let web_bundle_prefix = match env:: var ( PREFIX_VAR ) {
24
+ Ok ( x) if !x. is_empty ( ) => x,
25
+ _ => TECTONIC_WEB_BUNDLE_PREFIX_DEFAULT . into ( ) ,
26
+ } ;
27
+
28
+ // export to rustc
29
+ println ! ( "cargo:rustc-env={LOCKED_VAR}={web_bundle_locked}" ) ;
30
+ println ! ( "cargo:rustc-env={PREFIX_VAR}={web_bundle_prefix}" ) ;
31
+ }
32
+
33
+ fn main ( ) {
34
+ web_bundle_presets ( ) ;
35
+ }
Original file line number Diff line number Diff line change @@ -112,12 +112,23 @@ impl<B: Bundle + ?Sized> Bundle for Box<B> {
112
112
/// low-level reliability problems and was blocked in China. We now use a custom
113
113
/// webservice.
114
114
pub fn get_fallback_bundle_url ( format_version : u32 ) -> String {
115
+ // Build time environment variables declared in `bundles/build.rs`:
116
+ let web_bundle_locked = option_env ! ( "TECTONIC_WEB_BUNDLE_LOCKED" ) . unwrap_or ( "" ) ;
117
+ let web_bundle_prefix = option_env ! ( "TECTONIC_WEB_BUNDLE_PREFIX" )
118
+ . filter ( |x| !x. is_empty ( ) )
119
+ . expect ( "TECTONIC_WEB_BUNDLE_PREFIX must be defined at compile time" ) ;
120
+
121
+ // Simply return the locked url when it is specified:
122
+ if !web_bundle_locked. is_empty ( ) {
123
+ return web_bundle_locked. to_owned ( ) ;
124
+ }
125
+
115
126
// Format version 32 (TeXLive 2021) was when we introduced versioning to the
116
127
// URL.
117
128
if format_version < 32 {
118
- "https://relay.fullyjustified.net/ default_bundle.tar". to_owned ( )
129
+ format ! ( "{web_bundle_prefix}/ default_bundle.tar")
119
130
} else {
120
- format ! ( "https://relay.fullyjustified.net /default_bundle_v{format_version}.tar" )
131
+ format ! ( "{web_bundle_prefix} /default_bundle_v{format_version}.tar" )
121
132
}
122
133
}
123
134
You can’t perform that action at this time.
0 commit comments