fontist 1.3.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/check_google.yml +28 -0
  3. data/.github/workflows/macosx.yml +3 -0
  4. data/.github/workflows/ubuntu.yml +1 -1
  5. data/.github/workflows/windows.yml +1 -1
  6. data/.gitignore +6 -0
  7. data/.hound.yml +2 -0
  8. data/.rubocop.yml +22 -0
  9. data/README.md +54 -0
  10. data/bin/check_google +8 -0
  11. data/bin/convert_formulas +8 -0
  12. data/bin/fontist +8 -0
  13. data/bin/generate_otfinfo +8 -0
  14. data/bin/import_google +8 -0
  15. data/bin/stripttc +0 -0
  16. data/fontist.gemspec +14 -1
  17. data/lib/fontist.rb +18 -13
  18. data/lib/fontist/cli.rb +118 -0
  19. data/lib/fontist/errors.rb +3 -0
  20. data/lib/fontist/font.rb +117 -2
  21. data/lib/fontist/font_formula.rb +7 -3
  22. data/lib/fontist/fontist_font.rb +70 -0
  23. data/lib/fontist/formula.rb +11 -8
  24. data/lib/fontist/formula_template.rb +103 -0
  25. data/lib/fontist/formulas.rb +41 -0
  26. data/lib/fontist/import.rb +9 -0
  27. data/lib/fontist/import/convert_formulas.rb +65 -0
  28. data/lib/fontist/import/create_formula.rb +74 -0
  29. data/lib/fontist/import/extractors.rb +5 -0
  30. data/lib/fontist/import/extractors/cab_extractor.rb +37 -0
  31. data/lib/fontist/import/extractors/extractor.rb +19 -0
  32. data/lib/fontist/import/extractors/ole_extractor.rb +41 -0
  33. data/lib/fontist/import/extractors/seven_zip_extractor.rb +44 -0
  34. data/lib/fontist/import/extractors/zip_extractor.rb +31 -0
  35. data/lib/fontist/import/files/collection_file.rb +48 -0
  36. data/lib/fontist/import/formula_builder.rb +115 -0
  37. data/lib/fontist/import/formula_serializer.rb +133 -0
  38. data/lib/fontist/import/google.rb +16 -0
  39. data/lib/fontist/import/google/fonts_public.md +10 -0
  40. data/lib/fontist/import/google/fonts_public.pb.rb +71 -0
  41. data/lib/fontist/import/google/fonts_public.proto +46 -0
  42. data/lib/fontist/import/google/new_fonts_fetcher.rb +121 -0
  43. data/lib/fontist/import/google/skiplist.yml +6 -0
  44. data/lib/fontist/import/google_check.rb +34 -0
  45. data/lib/fontist/import/google_import.rb +180 -0
  46. data/lib/fontist/import/helpers/hash_helper.rb +13 -0
  47. data/lib/fontist/import/helpers/system_helper.rb +20 -0
  48. data/lib/fontist/import/otf/font_file.rb +89 -0
  49. data/lib/fontist/import/otf_parser.rb +25 -0
  50. data/lib/fontist/import/otf_style.rb +29 -0
  51. data/lib/fontist/import/otfinfo/otfinfo_requirement.rb +22 -0
  52. data/lib/fontist/import/otfinfo/template.erb +20 -0
  53. data/lib/fontist/import/otfinfo_generate.rb +45 -0
  54. data/lib/fontist/import/recursive_extraction.rb +101 -0
  55. data/lib/fontist/import/template_helper.rb +19 -0
  56. data/lib/fontist/import/text_helper.rb +30 -0
  57. data/lib/fontist/system_font.rb +12 -18
  58. data/lib/fontist/utils.rb +4 -0
  59. data/lib/fontist/utils/cache.rb +69 -0
  60. data/lib/fontist/utils/downloader.rb +15 -2
  61. data/lib/fontist/utils/dsl.rb +4 -0
  62. data/lib/fontist/utils/dsl/font.rb +37 -0
  63. data/lib/fontist/utils/exe_extractor.rb +12 -19
  64. data/lib/fontist/utils/msi_extractor.rb +31 -0
  65. data/lib/fontist/utils/seven_zip_extractor.rb +41 -0
  66. data/lib/fontist/utils/system.rb +23 -0
  67. data/lib/fontist/utils/ui.rb +8 -0
  68. data/lib/fontist/utils/zip_extractor.rb +9 -4
  69. data/lib/fontist/version.rb +1 -1
  70. metadata +154 -49
  71. data/lib/fontist/formulas/andale_font.rb +0 -80
  72. data/lib/fontist/formulas/arial_black_font.rb +0 -79
  73. data/lib/fontist/formulas/cleartype_fonts.rb +0 -227
  74. data/lib/fontist/formulas/comic_font.rb +0 -78
  75. data/lib/fontist/formulas/courier_font.rb +0 -81
  76. data/lib/fontist/formulas/euphemia_font.rb +0 -85
  77. data/lib/fontist/formulas/georgia_font.rb +0 -80
  78. data/lib/fontist/formulas/impact_font.rb +0 -78
  79. data/lib/fontist/formulas/montserrat_font.rb +0 -132
  80. data/lib/fontist/formulas/ms_truetype_fonts.rb +0 -125
  81. data/lib/fontist/formulas/open_sans_fonts.rb +0 -263
  82. data/lib/fontist/formulas/overpass_font.rb +0 -73
  83. data/lib/fontist/formulas/source_fonts.rb +0 -109
  84. data/lib/fontist/formulas/stix_fonts.rb +0 -108
  85. data/lib/fontist/formulas/tahoma_font.rb +0 -147
  86. data/lib/fontist/formulas/webding_font.rb +0 -78
  87. data/spec/fontist/font_formula_spec.rb +0 -67
  88. data/spec/fontist/font_spec.rb +0 -113
  89. data/spec/fontist/formula_spec.rb +0 -67
  90. data/spec/fontist/formulas/andale_font_spec.rb +0 -29
  91. data/spec/fontist/formulas/arial_black_font_spec.rb +0 -29
  92. data/spec/fontist/formulas/cleartype_fonts_spec.rb +0 -38
  93. data/spec/fontist/formulas/comic_font_spec.rb +0 -29
  94. data/spec/fontist/formulas/courier_font_spec.rb +0 -29
  95. data/spec/fontist/formulas/euphemia_font_spec.rb +0 -29
  96. data/spec/fontist/formulas/georgia_font_spec.rb +0 -29
  97. data/spec/fontist/formulas/impact_font_spec.rb +0 -29
  98. data/spec/fontist/formulas/montserrat_font_spec.rb +0 -29
  99. data/spec/fontist/formulas/ms_truetype_fonts_spec.rb +0 -29
  100. data/spec/fontist/formulas/open_sans_fonts_spec.rb +0 -29
  101. data/spec/fontist/formulas/overpass_font_spec.rb +0 -29
  102. data/spec/fontist/formulas/source_fonts_spec.rb +0 -31
  103. data/spec/fontist/formulas/stix_fonts_spec.rb +0 -29
  104. data/spec/fontist/formulas/tahoma_font_spec.rb +0 -29
  105. data/spec/fontist/formulas/webding_font_spec.rb +0 -29
  106. data/spec/fontist/registry_spec.rb +0 -47
  107. data/spec/fontist/system_font_spec.rb +0 -44
  108. data/spec/fontist/utils/downloader_spec.rb +0 -35
  109. data/spec/fontist_spec.rb +0 -5
  110. data/spec/spec_helper.rb +0 -22
  111. data/spec/support/fontist_helper.rb +0 -10
@@ -1,125 +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://gitlab.com/fontmirror/archive/-/raw/master/EUupdate.EXE",
10
- "https://download.microsoft.com/download/a/1/8/a180e21e-9c2b-4b54-9c32-bf7fd7429970/EUupdate.EXE",
11
- ]
12
- sha256 "464dd2cd5f09f489f9ac86ea7790b7b8548fc4e46d9f889b68d2cdce47e09ea8"
13
- end
14
-
15
- provides_font("Arial", match_styles_from_file: {
16
- "Regular" => "Arial.ttf",
17
- "Bold" => "ArialBd.ttf",
18
- "Italic" => "ArialI.ttf",
19
- "Bold Italic" => "ArialBI.ttf"
20
- })
21
-
22
- provides_font("Trebuchet", match_styles_from_file: {
23
- "Regular" => "trebuc.ttf",
24
- "Bold" => "trebucbd.ttf",
25
- "Italic" => "trebucit.ttf",
26
- "Bold Italic" => "trebucbi.ttf"
27
- })
28
-
29
- provides_font("Verdana", match_styles_from_file: {
30
- "Regular" => "Verdana.ttf",
31
- "Bold" => "Verdanab.ttf",
32
- "Italic" => "Verdanai.ttf",
33
- "Bold Italic" => "Verdanaz.ttf"
34
- })
35
-
36
- provides_font("Times New Roman", match_styles_from_file: {
37
- "Regular" => "Times.ttf",
38
- "Bold" => "TimesBd.ttf",
39
- "Italic" => "TimesI.ttf",
40
- "Bold Italic" => "TimesBI.ttf"
41
- })
42
-
43
- def extract
44
- resource("EUupdate.EXE") do |resource|
45
- cab_extract(resource) do |dir|
46
- match_fonts(dir, "Arial")
47
- match_fonts(dir, "Trebuchet")
48
- match_fonts(dir, "Verdana")
49
- match_fonts(dir, "Times New Roman")
50
- end
51
- end
52
- end
53
-
54
- def install
55
- case platform
56
- when :macos
57
- install_matched_fonts "$HOME/Library/Fonts/Microsoft"
58
- when :linux
59
- install_matched_fonts "/usr/share/fonts/truetype/vista"
60
- end
61
- end
62
-
63
- test do
64
- case platform
65
- when :macos
66
- assert_predicate "$HOME/Library/Fonts/Microsoft/cour.ttf", :exist?
67
- when :linux
68
- assert_predicate "/usr/share/fonts/truetype/vista/cour.ttf", :exist?
69
- end
70
- end
71
-
72
- requires_license_agreement <<~EOS
73
- (from http://web.archive.org/web/20011222020409/http://www.microsoft.com/typography/fontpack/eula.htm)
74
- TrueType core fonts for the Web EULA
75
-
76
- END-USER LICENSE AGREEMENT FOR
77
- MICROSOFT SOFTWARE
78
-
79
- 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.
80
-
81
-
82
- SOFTWARE PRODUCT LICENSE
83
- 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.
84
-
85
-
86
- 1. GRANT OF LICENSE. This EULA grants you the following rights:
87
-
88
- * Installation and Use. You may install and use an unlimited number of copies of the SOFTWARE PRODUCT.
89
- * 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.
90
-
91
- 2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.
92
-
93
- * 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.
94
- * 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.
95
- * Software Transfer. You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA.
96
- * 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.
97
-
98
- 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.
99
-
100
- 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.
101
-
102
-
103
- LIMITED WARRANTY
104
-
105
- 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.
106
-
107
- 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.
108
-
109
-
110
- MISCELLANEOUS
111
-
112
- If you acquired this product in the United States, this EULA is governed by the laws of the State of Washington.
113
-
114
- If this product was acquired outside the United States, then local laws may apply.
115
-
116
- 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.
117
-
118
- this page was last updated 28 July 1998
119
- © 1997 Microsoft Corporation. All rights reserved. Terms of use.
120
- comments to the MST group: ttwsite@microsoft.com
121
-
122
- EOS
123
- end
124
- end
125
- 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