fontist 1.1.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/check_google.yml +28 -0
- data/.github/workflows/macosx.yml +3 -0
- data/.github/workflows/ubuntu.yml +1 -1
- data/.github/workflows/windows.yml +1 -1
- data/.gitignore +6 -0
- data/.hound.yml +2 -0
- data/.rubocop.yml +22 -0
- data/README.md +224 -0
- data/bin/check_google +8 -0
- data/bin/convert_formulas +8 -0
- data/bin/fontist +8 -0
- data/bin/generate_otfinfo +8 -0
- data/bin/import_google +8 -0
- data/fontist.gemspec +16 -1
- data/lib/fontist.rb +23 -13
- data/lib/fontist/cli.rb +156 -0
- data/lib/fontist/errors.rb +7 -1
- data/lib/fontist/font.rb +165 -6
- data/lib/fontist/font_formula.rb +8 -4
- data/lib/fontist/fontist_font.rb +70 -0
- data/lib/fontist/formula.rb +27 -9
- data/lib/fontist/formula_template.rb +108 -0
- data/lib/fontist/formulas.rb +41 -0
- data/lib/fontist/import.rb +9 -0
- data/lib/fontist/import/convert_formulas.rb +65 -0
- data/lib/fontist/import/create_formula.rb +74 -0
- data/lib/fontist/import/extractors.rb +5 -0
- data/lib/fontist/import/extractors/cab_extractor.rb +37 -0
- data/lib/fontist/import/extractors/extractor.rb +19 -0
- data/lib/fontist/import/extractors/ole_extractor.rb +41 -0
- data/lib/fontist/import/extractors/seven_zip_extractor.rb +44 -0
- data/lib/fontist/import/extractors/zip_extractor.rb +31 -0
- data/lib/fontist/import/files/collection_file.rb +47 -0
- data/lib/fontist/import/formula_builder.rb +156 -0
- data/lib/fontist/import/formula_serializer.rb +133 -0
- data/lib/fontist/import/google.rb +16 -0
- data/lib/fontist/import/google/fonts_public.md +10 -0
- data/lib/fontist/import/google/fonts_public.pb.rb +71 -0
- data/lib/fontist/import/google/fonts_public.proto +46 -0
- data/lib/fontist/import/google/new_fonts_fetcher.rb +121 -0
- data/lib/fontist/import/google/skiplist.yml +6 -0
- data/lib/fontist/import/google_check.rb +34 -0
- data/lib/fontist/import/google_import.rb +180 -0
- data/lib/fontist/import/helpers/hash_helper.rb +13 -0
- data/lib/fontist/import/helpers/system_helper.rb +23 -0
- data/lib/fontist/import/otf/font_file.rb +89 -0
- data/lib/fontist/import/otf_parser.rb +25 -0
- data/lib/fontist/import/otf_style.rb +29 -0
- data/lib/fontist/import/otfinfo/otfinfo_requirement.rb +22 -0
- data/lib/fontist/import/otfinfo/template.erb +20 -0
- data/lib/fontist/import/otfinfo_generate.rb +45 -0
- data/lib/fontist/import/recursive_extraction.rb +101 -0
- data/lib/fontist/import/template_helper.rb +19 -0
- data/lib/fontist/import/text_helper.rb +30 -0
- data/lib/fontist/manifest.rb +2 -0
- data/lib/fontist/manifest/common.rb +60 -0
- data/lib/fontist/manifest/install.rb +36 -0
- data/lib/fontist/manifest/locations.rb +13 -0
- data/lib/fontist/registry.rb +1 -0
- data/lib/fontist/system.yml +4 -1
- data/lib/fontist/system_font.rb +62 -22
- data/lib/fontist/utils.rb +5 -0
- data/lib/fontist/utils/cache.rb +69 -0
- data/lib/fontist/utils/downloader.rb +24 -4
- data/lib/fontist/utils/dsl.rb +4 -0
- data/lib/fontist/utils/dsl/font.rb +37 -0
- data/lib/fontist/utils/exe_extractor.rb +12 -19
- data/lib/fontist/utils/msi_extractor.rb +31 -0
- data/lib/fontist/utils/seven_zip_extractor.rb +41 -0
- data/lib/fontist/utils/system.rb +23 -0
- data/lib/fontist/utils/ui.rb +23 -0
- data/lib/fontist/utils/zip_extractor.rb +9 -4
- data/lib/fontist/version.rb +1 -1
- metadata +186 -49
- data/lib/fontist/formulas/andale_font.rb +0 -79
- data/lib/fontist/formulas/arial_black_font.rb +0 -78
- data/lib/fontist/formulas/cleartype_fonts.rb +0 -226
- data/lib/fontist/formulas/comic_font.rb +0 -77
- data/lib/fontist/formulas/courier_font.rb +0 -80
- data/lib/fontist/formulas/euphemia_font.rb +0 -85
- data/lib/fontist/formulas/georgia_font.rb +0 -79
- data/lib/fontist/formulas/impact_font.rb +0 -77
- data/lib/fontist/formulas/montserrat_font.rb +0 -132
- data/lib/fontist/formulas/ms_truetype_fonts.rb +0 -124
- data/lib/fontist/formulas/open_sans_fonts.rb +0 -263
- data/lib/fontist/formulas/overpass_font.rb +0 -73
- data/lib/fontist/formulas/source_fonts.rb +0 -109
- data/lib/fontist/formulas/stix_fonts.rb +0 -108
- data/lib/fontist/formulas/tahoma_font.rb +0 -147
- data/lib/fontist/formulas/webding_font.rb +0 -77
- data/spec/fontist/font_formula_spec.rb +0 -67
- data/spec/fontist/font_spec.rb +0 -87
- data/spec/fontist/formula_spec.rb +0 -67
- data/spec/fontist/formulas/andale_font_spec.rb +0 -29
- data/spec/fontist/formulas/arial_black_font_spec.rb +0 -29
- data/spec/fontist/formulas/cleartype_fonts_spec.rb +0 -38
- data/spec/fontist/formulas/comic_font_spec.rb +0 -29
- data/spec/fontist/formulas/courier_font_spec.rb +0 -29
- data/spec/fontist/formulas/euphemia_font_spec.rb +0 -29
- data/spec/fontist/formulas/georgia_font_spec.rb +0 -29
- data/spec/fontist/formulas/impact_font_spec.rb +0 -29
- data/spec/fontist/formulas/montserrat_font_spec.rb +0 -29
- data/spec/fontist/formulas/ms_truetype_fonts_spec.rb +0 -29
- data/spec/fontist/formulas/open_sans_fonts_spec.rb +0 -29
- data/spec/fontist/formulas/overpass_font_spec.rb +0 -29
- data/spec/fontist/formulas/source_fonts_spec.rb +0 -31
- data/spec/fontist/formulas/stix_fonts_spec.rb +0 -29
- data/spec/fontist/formulas/tahoma_font_spec.rb +0 -29
- data/spec/fontist/formulas/webding_font_spec.rb +0 -29
- data/spec/fontist/registry_spec.rb +0 -47
- data/spec/fontist/system_font_spec.rb +0 -44
- data/spec/fontist/utils/downloader_spec.rb +0 -35
- data/spec/fontist_spec.rb +0 -5
- data/spec/spec_helper.rb +0 -22
- data/spec/support/fontist_helper.rb +0 -10
@@ -1,124 +0,0 @@
|
|
1
|
-
module Fontist
|
2
|
-
module Formulas
|
3
|
-
class MsTruetypeFonts < FontFormula
|
4
|
-
desc "Microsoft TrueType Core fonts for the Web"
|
5
|
-
homepage "https://www.microsoft.com"
|
6
|
-
|
7
|
-
resource "EUupdate.EXE" do
|
8
|
-
urls [
|
9
|
-
"https://download.microsoft.com/download/a/1/8/a180e21e-9c2b-4b54-9c32-bf7fd7429970/EUupdate.EXE",
|
10
|
-
]
|
11
|
-
sha256 "464dd2cd5f09f489f9ac86ea7790b7b8548fc4e46d9f889b68d2cdce47e09ea8"
|
12
|
-
end
|
13
|
-
|
14
|
-
provides_font("Arial", match_styles_from_file: {
|
15
|
-
"Regular" => "Arial.ttf",
|
16
|
-
"Bold" => "ArialBd.ttf",
|
17
|
-
"Italic" => "ArialI.ttf",
|
18
|
-
"Bold Italic" => "ArialBI.ttf"
|
19
|
-
})
|
20
|
-
|
21
|
-
provides_font("Trebuchet", match_styles_from_file: {
|
22
|
-
"Regular" => "trebuc.ttf",
|
23
|
-
"Bold" => "trebucbd.ttf",
|
24
|
-
"Italic" => "trebucit.ttf",
|
25
|
-
"Bold Italic" => "trebucbi.ttf"
|
26
|
-
})
|
27
|
-
|
28
|
-
provides_font("Verdana", match_styles_from_file: {
|
29
|
-
"Regular" => "Verdana.ttf",
|
30
|
-
"Bold" => "Verdanab.ttf",
|
31
|
-
"Italic" => "Verdanai.ttf",
|
32
|
-
"Bold Italic" => "Verdanaz.ttf"
|
33
|
-
})
|
34
|
-
|
35
|
-
provides_font("Times New Roman", match_styles_from_file: {
|
36
|
-
"Regular" => "Times.ttf",
|
37
|
-
"Bold" => "TimesBd.ttf",
|
38
|
-
"Italic" => "TimesI.ttf",
|
39
|
-
"Bold Italic" => "TimesBI.ttf"
|
40
|
-
})
|
41
|
-
|
42
|
-
def extract
|
43
|
-
resource("EUupdate.EXE") do |resource|
|
44
|
-
cab_extract(resource) do |dir|
|
45
|
-
match_fonts(dir, "Arial")
|
46
|
-
match_fonts(dir, "Trebuchet")
|
47
|
-
match_fonts(dir, "Verdana")
|
48
|
-
match_fonts(dir, "Times New Roman")
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
def install
|
54
|
-
case platform
|
55
|
-
when :macos
|
56
|
-
install_matched_fonts "$HOME/Library/Fonts/Microsoft"
|
57
|
-
when :linux
|
58
|
-
install_matched_fonts "/usr/share/fonts/truetype/vista"
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
test do
|
63
|
-
case platform
|
64
|
-
when :macos
|
65
|
-
assert_predicate "$HOME/Library/Fonts/Microsoft/cour.ttf", :exist?
|
66
|
-
when :linux
|
67
|
-
assert_predicate "/usr/share/fonts/truetype/vista/cour.ttf", :exist?
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
requires_license_agreement <<~EOS
|
72
|
-
(from http://web.archive.org/web/20011222020409/http://www.microsoft.com/typography/fontpack/eula.htm)
|
73
|
-
TrueType core fonts for the Web EULA
|
74
|
-
|
75
|
-
END-USER LICENSE AGREEMENT FOR
|
76
|
-
MICROSOFT SOFTWARE
|
77
|
-
|
78
|
-
IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software accompanying this EULA, which includes computer software and may include associated media, printed materials, and "on-line" or electronic documentation ("SOFTWARE PRODUCT" or "SOFTWARE"). By exercising your rights to make and use copies of the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, you may not use the SOFTWARE PRODUCT.
|
79
|
-
|
80
|
-
|
81
|
-
SOFTWARE PRODUCT LICENSE
|
82
|
-
The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.
|
83
|
-
|
84
|
-
|
85
|
-
1. GRANT OF LICENSE. This EULA grants you the following rights:
|
86
|
-
|
87
|
-
* Installation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT.
|
88
|
-
* Reproduction and Distribution. You may reproduce and distribute an unlimited number of copies of the SOFTWARE PRODUCT; provided that each copy shall be a true and complete copy, including all copyright and trademark notices, and shall be accompanied by a copy of this EULA. Copies of the SOFTWARE PRODUCT may not be distributed for profit either on a standalone basis or included as part of your own product.
|
89
|
-
|
90
|
-
2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.
|
91
|
-
|
92
|
-
* Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation.
|
93
|
-
* Restrictions on Alteration. You may not rename, edit or create any derivative works from the SOFTWARE PRODUCT, other than subsetting when embedding them in documents.
|
94
|
-
* Software Transfer. You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA.
|
95
|
-
* Termination. Without prejudice to any other rights, Microsoft may terminate this EULA if you fail to comply with the terms and conditions of this EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT and all of its component parts.
|
96
|
-
|
97
|
-
3. COPYRIGHT. All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, text, and "applets" incorporated into the SOFTWARE PRODUCT), the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Microsoft or its suppliers. The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, you must treat the SOFTWARE PRODUCT like any other copyrighted material.
|
98
|
-
|
99
|
-
4. U.S. GOVERNMENT RESTRICTED RIGHTS. The SOFTWARE PRODUCT and documentation are provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights at 48 CFR 52.227-19, as applicable. Manufacturer is Microsoft Corporation/One Microsoft Way/Redmond, WA 98052-6399.
|
100
|
-
|
101
|
-
|
102
|
-
LIMITED WARRANTY
|
103
|
-
|
104
|
-
NO WARRANTIES. Microsoft expressly disclaims any warranty for the SOFTWARE PRODUCT. The SOFTWARE PRODUCT and any related documentation is provided "as is" without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the SOFTWARE PRODUCT remains with you.
|
105
|
-
|
106
|
-
NO LIABILITY FOR CONSEQUENTIAL DAMAGES. In no event shall Microsoft or its suppliers be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this Microsoft product, even if Microsoft has been advised of the possibility of such damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.
|
107
|
-
|
108
|
-
|
109
|
-
MISCELLANEOUS
|
110
|
-
|
111
|
-
If you acquired this product in the United States, this EULA is governed by the laws of the State of Washington.
|
112
|
-
|
113
|
-
If this product was acquired outside the United States, then local laws may apply.
|
114
|
-
|
115
|
-
Should you have any questions concerning this EULA, or if you desire to contact Microsoft for any reason, please contact the Microsoft subsidiary serving your country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond, WA 98052-6399.
|
116
|
-
|
117
|
-
this page was last updated 28 July 1998
|
118
|
-
© 1997 Microsoft Corporation. All rights reserved. Terms of use.
|
119
|
-
comments to the MST group: ttwsite@microsoft.com
|
120
|
-
|
121
|
-
EOS
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
@@ -1,263 +0,0 @@
|
|
1
|
-
module Fontist
|
2
|
-
module Formulas
|
3
|
-
class OpenSansFonts < FontFormula
|
4
|
-
desc "Open Sans Font"
|
5
|
-
homepage "https://www.ascender.com"
|
6
|
-
|
7
|
-
resource "open-sans.zip" do
|
8
|
-
url "https://www.fontsquirrel.com/fonts/download/open-sans"
|
9
|
-
|
10
|
-
# Note
|
11
|
-
#
|
12
|
-
# Fontsquirrel doesn't ensure each download will contains
|
13
|
-
# the same sha for the file, so we don't have a direct way
|
14
|
-
# to verify this unless we host a downloed file somewhere.
|
15
|
-
#
|
16
|
-
# sha256 "7a76476bd61eb3cb4fe19d08f528435db123f1a9167f8f0063f6f98cbf2662c4"
|
17
|
-
end
|
18
|
-
|
19
|
-
provides_font("OpenSans", match_styles_from_file: {
|
20
|
-
"Light" => "OpenSans-Light.ttf",
|
21
|
-
"Light Italic" => "OpenSans-LightItalic.ttf",
|
22
|
-
"Regular" => "OpenSans-Regular.ttf",
|
23
|
-
"Italic" => "OpenSans-Italic.ttf",
|
24
|
-
"Semibold" => "OpenSans-Semibold.ttf",
|
25
|
-
"Semibold Italic" => "OpenSans-SemiboldItalic.ttf",
|
26
|
-
"Bold" => "OpenSans-Bold.ttf",
|
27
|
-
"Bold Italic" => "OpenSans-BoldItalic.ttf",
|
28
|
-
"Extra Bold" => "OpenSans-ExtraBold.ttf",
|
29
|
-
"Extra Bold Italic" => "OpenSans-ExtraBoldItalic.ttf"
|
30
|
-
})
|
31
|
-
|
32
|
-
def extract
|
33
|
-
resource("open-sans.zip") do |resource|
|
34
|
-
zip_extract(resource) do |fontdir|
|
35
|
-
match_fonts(fontdir, "OpenSans")
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def install
|
41
|
-
case platform
|
42
|
-
when :macos
|
43
|
-
install_matched_fonts "$HOME/Library/Fonts/OpenSans"
|
44
|
-
when :linux
|
45
|
-
install_matched_fonts "/usr/share/fonts/truetype/opensans"
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
test do
|
50
|
-
case platform
|
51
|
-
when :macos
|
52
|
-
assert_predicate "$HOME/Library/Fonts/OpenSans/OpenSans-LightItalic.ttf", :exist?
|
53
|
-
when :linux
|
54
|
-
assert_predicate "/usr/share/fonts/truetype/opensans/OpenSans-LightItalic.ttf", :exist?
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
open_license <<~EOS
|
59
|
-
Apache License
|
60
|
-
Version 2.0, January 2004
|
61
|
-
http://www.apache.org/licenses/
|
62
|
-
|
63
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
64
|
-
|
65
|
-
1. Definitions.
|
66
|
-
|
67
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
68
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
69
|
-
|
70
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
71
|
-
the copyright owner that is granting the License.
|
72
|
-
|
73
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
74
|
-
other entities that control, are controlled by, or are under common
|
75
|
-
control with that entity. For the purposes of this definition,
|
76
|
-
"control" means (i) the power, direct or indirect, to cause the
|
77
|
-
direction or management of such entity, whether by contract or
|
78
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
79
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
80
|
-
|
81
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
82
|
-
exercising permissions granted by this License.
|
83
|
-
|
84
|
-
"Source" form shall mean the preferred form for making modifications,
|
85
|
-
including but not limited to software source code, documentation
|
86
|
-
source, and configuration files.
|
87
|
-
|
88
|
-
"Object" form shall mean any form resulting from mechanical
|
89
|
-
transformation or translation of a Source form, including but
|
90
|
-
not limited to compiled object code, generated documentation,
|
91
|
-
and conversions to other media types.
|
92
|
-
|
93
|
-
"Work" shall mean the work of authorship, whether in Source or
|
94
|
-
Object form, made available under the License, as indicated by a
|
95
|
-
copyright notice that is included in or attached to the work
|
96
|
-
(an example is provided in the Appendix below).
|
97
|
-
|
98
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
99
|
-
form, that is based on (or derived from) the Work and for which the
|
100
|
-
editorial revisions, annotations, elaborations, or other modifications
|
101
|
-
represent, as a whole, an original work of authorship. For the purposes
|
102
|
-
of this License, Derivative Works shall not include works that remain
|
103
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
104
|
-
the Work and Derivative Works thereof.
|
105
|
-
|
106
|
-
"Contribution" shall mean any work of authorship, including
|
107
|
-
the original version of the Work and any modifications or additions
|
108
|
-
to that Work or Derivative Works thereof, that is intentionally
|
109
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
110
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
111
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
112
|
-
means any form of electronic, verbal, or written communication sent
|
113
|
-
to the Licensor or its representatives, including but not limited to
|
114
|
-
communication on electronic mailing lists, source code control systems,
|
115
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
116
|
-
Licensor for the purpose of discussing and improving the Work, but
|
117
|
-
excluding communication that is conspicuously marked or otherwise
|
118
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
119
|
-
|
120
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
121
|
-
on behalf of whom a Contribution has been received by Licensor and
|
122
|
-
subsequently incorporated within the Work.
|
123
|
-
|
124
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
125
|
-
this License, each Contributor hereby grants to You a perpetual,
|
126
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
127
|
-
copyright license to reproduce, prepare Derivative Works of,
|
128
|
-
publicly display, publicly perform, sublicense, and distribute the
|
129
|
-
Work and such Derivative Works in Source or Object form.
|
130
|
-
|
131
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
132
|
-
this License, each Contributor hereby grants to You a perpetual,
|
133
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
134
|
-
(except as stated in this section) patent license to make, have made,
|
135
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
136
|
-
where such license applies only to those patent claims licensable
|
137
|
-
by such Contributor that are necessarily infringed by their
|
138
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
139
|
-
with the Work to which such Contribution(s) was submitted. If You
|
140
|
-
institute patent litigation against any entity (including a
|
141
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
142
|
-
or a Contribution incorporated within the Work constitutes direct
|
143
|
-
or contributory patent infringement, then any patent licenses
|
144
|
-
granted to You under this License for that Work shall terminate
|
145
|
-
as of the date such litigation is filed.
|
146
|
-
|
147
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
148
|
-
Work or Derivative Works thereof in any medium, with or without
|
149
|
-
modifications, and in Source or Object form, provided that You
|
150
|
-
meet the following conditions:
|
151
|
-
|
152
|
-
(a) You must give any other recipients of the Work or
|
153
|
-
Derivative Works a copy of this License; and
|
154
|
-
|
155
|
-
(b) You must cause any modified files to carry prominent notices
|
156
|
-
stating that You changed the files; and
|
157
|
-
|
158
|
-
(c) You must retain, in the Source form of any Derivative Works
|
159
|
-
that You distribute, all copyright, patent, trademark, and
|
160
|
-
attribution notices from the Source form of the Work,
|
161
|
-
excluding those notices that do not pertain to any part of
|
162
|
-
the Derivative Works; and
|
163
|
-
|
164
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
165
|
-
distribution, then any Derivative Works that You distribute must
|
166
|
-
include a readable copy of the attribution notices contained
|
167
|
-
within such NOTICE file, excluding those notices that do not
|
168
|
-
pertain to any part of the Derivative Works, in at least one
|
169
|
-
of the following places: within a NOTICE text file distributed
|
170
|
-
as part of the Derivative Works; within the Source form or
|
171
|
-
documentation, if provided along with the Derivative Works; or,
|
172
|
-
within a display generated by the Derivative Works, if and
|
173
|
-
wherever such third-party notices normally appear. The contents
|
174
|
-
of the NOTICE file are for informational purposes only and
|
175
|
-
do not modify the License. You may add Your own attribution
|
176
|
-
notices within Derivative Works that You distribute, alongside
|
177
|
-
or as an addendum to the NOTICE text from the Work, provided
|
178
|
-
that such additional attribution notices cannot be construed
|
179
|
-
as modifying the License.
|
180
|
-
|
181
|
-
You may add Your own copyright statement to Your modifications and
|
182
|
-
may provide additional or different license terms and conditions
|
183
|
-
for use, reproduction, or distribution of Your modifications, or
|
184
|
-
for any such Derivative Works as a whole, provided Your use,
|
185
|
-
reproduction, and distribution of the Work otherwise complies with
|
186
|
-
the conditions stated in this License.
|
187
|
-
|
188
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
189
|
-
any Contribution intentionally submitted for inclusion in the Work
|
190
|
-
by You to the Licensor shall be under the terms and conditions of
|
191
|
-
this License, without any additional terms or conditions.
|
192
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
193
|
-
the terms of any separate license agreement you may have executed
|
194
|
-
with Licensor regarding such Contributions.
|
195
|
-
|
196
|
-
6. Trademarks. This License does not grant permission to use the trade
|
197
|
-
names, trademarks, service marks, or product names of the Licensor,
|
198
|
-
except as required for reasonable and customary use in describing the
|
199
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
200
|
-
|
201
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
202
|
-
agreed to in writing, Licensor provides the Work (and each
|
203
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
204
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
205
|
-
implied, including, without limitation, any warranties or conditions
|
206
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
207
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
208
|
-
appropriateness of using or redistributing the Work and assume any
|
209
|
-
risks associated with Your exercise of permissions under this License.
|
210
|
-
|
211
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
212
|
-
whether in tort (including negligence), contract, or otherwise,
|
213
|
-
unless required by applicable law (such as deliberate and grossly
|
214
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
215
|
-
liable to You for damages, including any direct, indirect, special,
|
216
|
-
incidental, or consequential damages of any character arising as a
|
217
|
-
result of this License or out of the use or inability to use the
|
218
|
-
Work (including but not limited to damages for loss of goodwill,
|
219
|
-
work stoppage, computer failure or malfunction, or any and all
|
220
|
-
other commercial damages or losses), even if such Contributor
|
221
|
-
has been advised of the possibility of such damages.
|
222
|
-
|
223
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
224
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
225
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
226
|
-
or other liability obligations and/or rights consistent with this
|
227
|
-
License. However, in accepting such obligations, You may act only
|
228
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
229
|
-
of any other Contributor, and only if You agree to indemnify,
|
230
|
-
defend, and hold each Contributor harmless for any liability
|
231
|
-
incurred by, or claims asserted against, such Contributor by reason
|
232
|
-
of your accepting any such warranty or additional liability.
|
233
|
-
|
234
|
-
END OF TERMS AND CONDITIONS
|
235
|
-
|
236
|
-
APPENDIX: How to apply the Apache License to your work.
|
237
|
-
|
238
|
-
To apply the Apache License to your work, attach the following
|
239
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
240
|
-
replaced with your own identifying information. (Don't include
|
241
|
-
the brackets!) The text should be enclosed in the appropriate
|
242
|
-
comment syntax for the file format. We also recommend that a
|
243
|
-
file or class name and description of purpose be included on the
|
244
|
-
same "printed page" as the copyright notice for easier
|
245
|
-
identification within third-party archives.
|
246
|
-
|
247
|
-
Copyright [yyyy] [name of copyright owner]
|
248
|
-
|
249
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
250
|
-
you may not use this file except in compliance with the License.
|
251
|
-
You may obtain a copy of the License at
|
252
|
-
|
253
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
254
|
-
|
255
|
-
Unless required by applicable law or agreed to in writing, software
|
256
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
257
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
258
|
-
See the License for the specific language governing permissions and
|
259
|
-
limitations under the License.
|
260
|
-
EOS
|
261
|
-
end
|
262
|
-
end
|
263
|
-
end
|
@@ -1,73 +0,0 @@
|
|
1
|
-
module Fontist
|
2
|
-
module Formulas
|
3
|
-
class OverpassFont < FontFormula
|
4
|
-
desc "Overpass Font"
|
5
|
-
homepage "http://overpassfont.org"
|
6
|
-
|
7
|
-
resource "overpass.zip" do
|
8
|
-
url "https://github.com/RedHatOfficial/Overpass/releases/download/3.0.2/overpass-desktop-fonts.zip"
|
9
|
-
sha256 "10d2186ad1e1e628122f2e4ea0bbde16438e34a0068c35190d41626d89bb64e4"
|
10
|
-
end
|
11
|
-
|
12
|
-
provides_font("Overpass", match_styles_from_file: {
|
13
|
-
"Bold Italic" => "overpass-bold-italic.otf",
|
14
|
-
"Bold" => "overpass-bold.otf",
|
15
|
-
"Extrabold Italic" => "overpass-extrabold-italic.otf",
|
16
|
-
"Extrabold" => "overpass-extrabold.otf",
|
17
|
-
"Extralight" => "overpass-extralight.otf",
|
18
|
-
"Extralight Italic" => "overpass-extralight-italic.otf",
|
19
|
-
"Heavy Italic" => "overpass-heavy-italic.otf",
|
20
|
-
"Heavy" => "overpass-heavy.otf",
|
21
|
-
"Italic" => "overpass-italic.otf",
|
22
|
-
"Light Italic" => "overpass-light-italic.otf",
|
23
|
-
"Light" => "overpass-light.otf",
|
24
|
-
"Regular" => "overpass-regular.otf",
|
25
|
-
"Semibold Italic" => "overpass-semibold-italic.otf",
|
26
|
-
"Semibold" => "overpass-semibold.otf",
|
27
|
-
"Thin Italic" => "overpass-thin-italic.otf",
|
28
|
-
"Thin" => "overpass-thin.otf"
|
29
|
-
})
|
30
|
-
|
31
|
-
provides_font("Overpass Mono", match_styles_from_file: {
|
32
|
-
"Bold" => "overpass-mono-bold.otf",
|
33
|
-
"Regular" => "overpass-mono-regular.otf",
|
34
|
-
"Light" => "overpass-mono-light.otf",
|
35
|
-
"Semibold" => "overpass-mono-semibold.otf"
|
36
|
-
})
|
37
|
-
|
38
|
-
def extract
|
39
|
-
resource("overpass.zip") do |resource|
|
40
|
-
unzip(resource, fonts_sub_dir: "overpass**/") do |fontdir|
|
41
|
-
match_fonts(fontdir, "Overpass")
|
42
|
-
match_fonts(fontdir, "Overpass Mono")
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
def install
|
48
|
-
case platform
|
49
|
-
when :macos
|
50
|
-
install_matched_fonts "$HOME/Library/Fonts/Overpass"
|
51
|
-
when :linux
|
52
|
-
install_matched_fonts "/usr/share/fonts/truetype/overpass"
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
test do
|
57
|
-
case platform
|
58
|
-
when :macos
|
59
|
-
assert_predicate "$HOME/Library/Fonts/Overpass/overpass-thin.otf", :exist?
|
60
|
-
when :linux
|
61
|
-
assert_predicate "/usr/share/fonts/truetype/overpass/overpass-thin.otf", :exist?
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
open_license <<~EOS
|
66
|
-
Copyright 2016 Red Hat, Inc.,
|
67
|
-
|
68
|
-
This Font Software is dual licensed under the SIL Open Font License and the GNU Lesser General Public License, LGPL 2.1 : http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html OFL 1.1 : http://scripts.sil.org/OFL
|
69
|
-
|
70
|
-
EOS
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|