Matthieu Herrb writes:
> On Sat, May 23, 2020 at 02:41:38PM -0000, Christian Weisgerber wrote:
> > On 2020-05-23, "Anthony J. Bentley" <[email protected]> wrote:
> > 
> > > Formats like .woff and .woff2, which are meant to be served over
> > > the web, don't benefit in the same way, because they're installed to
> > > /usr/local/share and need to be copied to a web server directory
> > > to be of any use. [...]
> > > A few recent port submissions were asked to remove web fonts before
> > > import. That makes sense. We should do the same for existing ports.
> > 
> > If the web fonts aren't in the package, where would I copy them
> > from?
>
> Is it possible to have sub-packages (or a separate package) installing
> them in /var/www/fonts/ ?

Hm, that's an interesting idea. I gave it a try with ibm-plex (a port
that doesn't currently install web fonts). It's a fair amount of work,
but does result in webfonts located on the same partition and within the
httpd chroot.

I intend to commit the "remove webfonts from /usr/local" diff from my
previous mail regardless; even if we decide to go the -web subpackage
route, leaving it uncommitted wouldn't make what I did below any easier
to apply to those ports, even if we decided to go the subpackages route.

Index: Makefile
===================================================================
RCS file: /cvs/ports/fonts/ibm-plex/Makefile,v
retrieving revision 1.10
diff -u -p -r1.10 Makefile
--- Makefile    23 May 2020 13:11:26 -0000      1.10
+++ Makefile    24 May 2020 00:02:59 -0000
@@ -1,10 +1,18 @@
 # $OpenBSD: Makefile,v 1.10 2020/05/23 13:11:26 bentley Exp $
 
-COMMENT =              IBM's corporate type family
+COMMENT-main =         IBM's corporate type family
+COMMENT-web =          IBM's corporate type family (web fonts)
 
 CATEGORIES =           fonts
 V =                    4.0.2
-PKGNAME =              ibm-plex-$V
+DISTNAME =             ibm-plex-$V
+PKGNAME-main =         ibm-plex-$V
+PKGNAME-web =          ibm-plex-web-$V
+REVISION-main =                0
+
+MULTI_PACKAGES =       -main -web
+
+.include <bsd.port.arch.mk>
 
 # SIL OFL 1.1
 PERMIT_PACKAGE =       Yes
@@ -12,7 +20,8 @@ PERMIT_PACKAGE =      Yes
 MASTER_SITES =         https://github.com/IBM/plex/releases/download/v$V/
 
 DISTFILES =            OpenType.zip \
-                       TrueType.zip
+                       TrueType.zip \
+                       Web.zip
 
 DIST_SUBDIR =          ibm-plex-$V
 
@@ -23,16 +32,22 @@ MODULES =           font
 NO_BUILD =             Yes
 NO_TEST =              Yes
 
+PREFIX-web =           ${VARBASE}/www
+
 FONTDIR =              ${PREFIX}/share/fonts/ibm-plex
 DOCDIR =               ${PREFIX}/share/doc/ibm-plex
+WEBFONTDIR =           ${DESTDIR}${PREFIX-web}/fonts/ibm-plex
 
 do-install:
        ${INSTALL_DATA_DIR} ${FONTDIR}
-       ${INSTALL_DATA} ${WRKDIST}/OpenType/*/*.otf ${FONTDIR}
-       ${INSTALL_DATA} ${WRKDIST}/TrueType/*/*.ttf ${FONTDIR}
+       ${INSTALL_DATA} ${WRKDIR}/OpenType/*/*.otf ${FONTDIR}
+       ${INSTALL_DATA} ${WRKDIR}/TrueType/*/*.ttf ${FONTDIR}
 
 post-install:
        ${INSTALL_DATA_DIR} ${DOCDIR}
-       ${INSTALL_DATA} ${WRKDIST}/OpenType/IBM-Plex-Sans/license.txt ${DOCDIR}
+       ${INSTALL_DATA} ${WRKDIR}/OpenType/IBM-Plex-Sans/license.txt ${DOCDIR}
+       ${INSTALL_DATA_DIR} ${WEBFONTDIR}
+       ${INSTALL_DATA} ${WRKDIR}/Web/*/fonts/complete/woff*/*.woff* \
+               ${WEBFONTDIR}
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/fonts/ibm-plex/distinfo,v
retrieving revision 1.8
diff -u -p -r1.8 distinfo
--- distinfo    23 May 2020 13:11:26 -0000      1.8
+++ distinfo    24 May 2020 00:02:59 -0000
@@ -1,4 +1,6 @@
 SHA256 (ibm-plex-4.0.2/OpenType.zip) = 
ZhXFtez1c2pe0pt/mbeA065QPoGWL+IlmzD9wyJBbZ0=
 SHA256 (ibm-plex-4.0.2/TrueType.zip) = 
VWT3m/3EpW+fJ6rMaLaxdasgXrpmjklvRKEgUfOjN60=
+SHA256 (ibm-plex-4.0.2/Web.zip) = okz+7uB106Ps+/6ikgnhh/OS6E+RjMj1QLgDKDVCRKk=
 SIZE (ibm-plex-4.0.2/OpenType.zip) = 6586340
 SIZE (ibm-plex-4.0.2/TrueType.zip) = 7658406
+SIZE (ibm-plex-4.0.2/Web.zip) = 43648333
Index: pkg/DESCR
===================================================================
RCS file: pkg/DESCR
diff -N pkg/DESCR
--- pkg/DESCR   6 Jan 2018 04:43:34 -0000       1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,2 +0,0 @@
-IBM Plex is IBM's corporate type family. It is used by IBMers for all
-typographical situations, whenever possible.
Index: pkg/DESCR-main
===================================================================
RCS file: pkg/DESCR-main
diff -N pkg/DESCR-main
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ pkg/DESCR-main      24 May 2020 00:02:59 -0000
@@ -0,0 +1,2 @@
+IBM Plex is IBM's corporate type family. It is used by IBMers for all
+typographical situations, whenever possible.
Index: pkg/DESCR-web
===================================================================
RCS file: pkg/DESCR-web
diff -N pkg/DESCR-web
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ pkg/DESCR-web       24 May 2020 00:02:59 -0000
@@ -0,0 +1,4 @@
+IBM Plex is IBM's corporate type family. It is used by IBMers for all
+typographical situations, whenever possible.
+
+This package contains web fonts (WOFF and WOFF2).
Index: pkg/PLIST
===================================================================
RCS file: pkg/PLIST
diff -N pkg/PLIST
--- pkg/PLIST   23 May 2020 13:11:26 -0000      1.8
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,213 +0,0 @@
-@comment $OpenBSD: PLIST,v 1.8 2020/05/23 13:11:26 bentley Exp $
-share/doc/ibm-plex/
-share/doc/ibm-plex/license.txt
-share/fonts/
-@fontdir share/fonts/ibm-plex/
-share/fonts/ibm-plex/IBMPlexMono-Bold.otf
-share/fonts/ibm-plex/IBMPlexMono-Bold.ttf
-share/fonts/ibm-plex/IBMPlexMono-BoldItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-BoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexMono-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Italic.otf
-share/fonts/ibm-plex/IBMPlexMono-Italic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Light.otf
-share/fonts/ibm-plex/IBMPlexMono-Light.ttf
-share/fonts/ibm-plex/IBMPlexMono-LightItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-LightItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Medium.otf
-share/fonts/ibm-plex/IBMPlexMono-Medium.ttf
-share/fonts/ibm-plex/IBMPlexMono-MediumItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-MediumItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Regular.otf
-share/fonts/ibm-plex/IBMPlexMono-Regular.ttf
-share/fonts/ibm-plex/IBMPlexMono-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexMono-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Text.otf
-share/fonts/ibm-plex/IBMPlexMono-Text.ttf
-share/fonts/ibm-plex/IBMPlexMono-TextItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-TextItalic.ttf
-share/fonts/ibm-plex/IBMPlexMono-Thin.otf
-share/fonts/ibm-plex/IBMPlexMono-Thin.ttf
-share/fonts/ibm-plex/IBMPlexMono-ThinItalic.otf
-share/fonts/ibm-plex/IBMPlexMono-ThinItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Bold.otf
-share/fonts/ibm-plex/IBMPlexSans-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSans-BoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-BoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSans-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Italic.otf
-share/fonts/ibm-plex/IBMPlexSans-Italic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Light.otf
-share/fonts/ibm-plex/IBMPlexSans-Light.ttf
-share/fonts/ibm-plex/IBMPlexSans-LightItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-LightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Medium.otf
-share/fonts/ibm-plex/IBMPlexSans-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSans-MediumItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-MediumItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Regular.otf
-share/fonts/ibm-plex/IBMPlexSans-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSans-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSans-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Text.otf
-share/fonts/ibm-plex/IBMPlexSans-Text.ttf
-share/fonts/ibm-plex/IBMPlexSans-TextItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-TextItalic.ttf
-share/fonts/ibm-plex/IBMPlexSans-Thin.otf
-share/fonts/ibm-plex/IBMPlexSans-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSans-ThinItalic.otf
-share/fonts/ibm-plex/IBMPlexSans-ThinItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Light.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Text.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansArabic-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansArabic-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Italic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Italic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Light.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Text.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.otf
-share/fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Light.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Text.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansDevanagari-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Light.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Text.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansHebrew-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansThai-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Light.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansThai-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Text.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansThai-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansThai-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Light.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Light.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Text.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Text.ttf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.otf
-share/fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Bold.otf
-share/fonts/ibm-plex/IBMPlexSerif-Bold.ttf
-share/fonts/ibm-plex/IBMPlexSerif-BoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-BoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-ExtraLight.otf
-share/fonts/ibm-plex/IBMPlexSerif-ExtraLight.ttf
-share/fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Italic.otf
-share/fonts/ibm-plex/IBMPlexSerif-Italic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Light.otf
-share/fonts/ibm-plex/IBMPlexSerif-Light.ttf
-share/fonts/ibm-plex/IBMPlexSerif-LightItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-LightItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Medium.otf
-share/fonts/ibm-plex/IBMPlexSerif-Medium.ttf
-share/fonts/ibm-plex/IBMPlexSerif-MediumItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-MediumItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Regular.otf
-share/fonts/ibm-plex/IBMPlexSerif-Regular.ttf
-share/fonts/ibm-plex/IBMPlexSerif-SemiBold.otf
-share/fonts/ibm-plex/IBMPlexSerif-SemiBold.ttf
-share/fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Text.otf
-share/fonts/ibm-plex/IBMPlexSerif-Text.ttf
-share/fonts/ibm-plex/IBMPlexSerif-TextItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-TextItalic.ttf
-share/fonts/ibm-plex/IBMPlexSerif-Thin.otf
-share/fonts/ibm-plex/IBMPlexSerif-Thin.ttf
-share/fonts/ibm-plex/IBMPlexSerif-ThinItalic.otf
-share/fonts/ibm-plex/IBMPlexSerif-ThinItalic.ttf
Index: pkg/PLIST-main
===================================================================
RCS file: pkg/PLIST-main
diff -N pkg/PLIST-main
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ pkg/PLIST-main      24 May 2020 00:02:59 -0000
@@ -0,0 +1,214 @@
+@comment $OpenBSD: PLIST,v 1.8 2020/05/23 13:11:26 bentley Exp $
+@pkgpath fonts/ibm-plex
+share/doc/ibm-plex/
+share/doc/ibm-plex/license.txt
+share/fonts/
+@fontdir share/fonts/ibm-plex/
+share/fonts/ibm-plex/IBMPlexMono-Bold.otf
+share/fonts/ibm-plex/IBMPlexMono-Bold.ttf
+share/fonts/ibm-plex/IBMPlexMono-BoldItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-BoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexMono-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Italic.otf
+share/fonts/ibm-plex/IBMPlexMono-Italic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Light.otf
+share/fonts/ibm-plex/IBMPlexMono-Light.ttf
+share/fonts/ibm-plex/IBMPlexMono-LightItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-LightItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Medium.otf
+share/fonts/ibm-plex/IBMPlexMono-Medium.ttf
+share/fonts/ibm-plex/IBMPlexMono-MediumItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-MediumItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Regular.otf
+share/fonts/ibm-plex/IBMPlexMono-Regular.ttf
+share/fonts/ibm-plex/IBMPlexMono-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexMono-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Text.otf
+share/fonts/ibm-plex/IBMPlexMono-Text.ttf
+share/fonts/ibm-plex/IBMPlexMono-TextItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-TextItalic.ttf
+share/fonts/ibm-plex/IBMPlexMono-Thin.otf
+share/fonts/ibm-plex/IBMPlexMono-Thin.ttf
+share/fonts/ibm-plex/IBMPlexMono-ThinItalic.otf
+share/fonts/ibm-plex/IBMPlexMono-ThinItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Bold.otf
+share/fonts/ibm-plex/IBMPlexSans-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSans-BoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-BoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSans-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Italic.otf
+share/fonts/ibm-plex/IBMPlexSans-Italic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Light.otf
+share/fonts/ibm-plex/IBMPlexSans-Light.ttf
+share/fonts/ibm-plex/IBMPlexSans-LightItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-LightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Medium.otf
+share/fonts/ibm-plex/IBMPlexSans-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSans-MediumItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-MediumItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Regular.otf
+share/fonts/ibm-plex/IBMPlexSans-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSans-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSans-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Text.otf
+share/fonts/ibm-plex/IBMPlexSans-Text.ttf
+share/fonts/ibm-plex/IBMPlexSans-TextItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-TextItalic.ttf
+share/fonts/ibm-plex/IBMPlexSans-Thin.otf
+share/fonts/ibm-plex/IBMPlexSans-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSans-ThinItalic.otf
+share/fonts/ibm-plex/IBMPlexSans-ThinItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Light.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Text.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansArabic-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansArabic-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Italic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Italic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Light.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Text.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.otf
+share/fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Light.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Text.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansDevanagari-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Light.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Text.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansHebrew-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansThai-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Light.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansThai-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Text.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansThai-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansThai-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Light.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Light.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Text.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Text.ttf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.otf
+share/fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Bold.otf
+share/fonts/ibm-plex/IBMPlexSerif-Bold.ttf
+share/fonts/ibm-plex/IBMPlexSerif-BoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-BoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-ExtraLight.otf
+share/fonts/ibm-plex/IBMPlexSerif-ExtraLight.ttf
+share/fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Italic.otf
+share/fonts/ibm-plex/IBMPlexSerif-Italic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Light.otf
+share/fonts/ibm-plex/IBMPlexSerif-Light.ttf
+share/fonts/ibm-plex/IBMPlexSerif-LightItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-LightItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Medium.otf
+share/fonts/ibm-plex/IBMPlexSerif-Medium.ttf
+share/fonts/ibm-plex/IBMPlexSerif-MediumItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-MediumItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Regular.otf
+share/fonts/ibm-plex/IBMPlexSerif-Regular.ttf
+share/fonts/ibm-plex/IBMPlexSerif-SemiBold.otf
+share/fonts/ibm-plex/IBMPlexSerif-SemiBold.ttf
+share/fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Text.otf
+share/fonts/ibm-plex/IBMPlexSerif-Text.ttf
+share/fonts/ibm-plex/IBMPlexSerif-TextItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-TextItalic.ttf
+share/fonts/ibm-plex/IBMPlexSerif-Thin.otf
+share/fonts/ibm-plex/IBMPlexSerif-Thin.ttf
+share/fonts/ibm-plex/IBMPlexSerif-ThinItalic.otf
+share/fonts/ibm-plex/IBMPlexSerif-ThinItalic.ttf
Index: pkg/PLIST-web
===================================================================
RCS file: pkg/PLIST-web
diff -N pkg/PLIST-web
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ pkg/PLIST-web       24 May 2020 00:03:01 -0000
@@ -0,0 +1,209 @@
+@comment $OpenBSD$
+fonts/ibm-plex/IBMPlexMono-Bold.woff
+fonts/ibm-plex/IBMPlexMono-Bold.woff2
+fonts/ibm-plex/IBMPlexMono-BoldItalic.woff
+fonts/ibm-plex/IBMPlexMono-BoldItalic.woff2
+fonts/ibm-plex/IBMPlexMono-ExtraLight.woff
+fonts/ibm-plex/IBMPlexMono-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.woff
+fonts/ibm-plex/IBMPlexMono-ExtraLightItalic.woff2
+fonts/ibm-plex/IBMPlexMono-Italic.woff
+fonts/ibm-plex/IBMPlexMono-Italic.woff2
+fonts/ibm-plex/IBMPlexMono-Light.woff
+fonts/ibm-plex/IBMPlexMono-Light.woff2
+fonts/ibm-plex/IBMPlexMono-LightItalic.woff
+fonts/ibm-plex/IBMPlexMono-LightItalic.woff2
+fonts/ibm-plex/IBMPlexMono-Medium.woff
+fonts/ibm-plex/IBMPlexMono-Medium.woff2
+fonts/ibm-plex/IBMPlexMono-MediumItalic.woff
+fonts/ibm-plex/IBMPlexMono-MediumItalic.woff2
+fonts/ibm-plex/IBMPlexMono-Regular.woff
+fonts/ibm-plex/IBMPlexMono-Regular.woff2
+fonts/ibm-plex/IBMPlexMono-SemiBold.woff
+fonts/ibm-plex/IBMPlexMono-SemiBold.woff2
+fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.woff
+fonts/ibm-plex/IBMPlexMono-SemiBoldItalic.woff2
+fonts/ibm-plex/IBMPlexMono-Text.woff
+fonts/ibm-plex/IBMPlexMono-Text.woff2
+fonts/ibm-plex/IBMPlexMono-TextItalic.woff
+fonts/ibm-plex/IBMPlexMono-TextItalic.woff2
+fonts/ibm-plex/IBMPlexMono-Thin.woff
+fonts/ibm-plex/IBMPlexMono-Thin.woff2
+fonts/ibm-plex/IBMPlexMono-ThinItalic.woff
+fonts/ibm-plex/IBMPlexMono-ThinItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Bold.woff
+fonts/ibm-plex/IBMPlexSans-Bold.woff2
+fonts/ibm-plex/IBMPlexSans-BoldItalic.woff
+fonts/ibm-plex/IBMPlexSans-BoldItalic.woff2
+fonts/ibm-plex/IBMPlexSans-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSans-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff
+fonts/ibm-plex/IBMPlexSans-ExtraLightItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Italic.woff
+fonts/ibm-plex/IBMPlexSans-Italic.woff2
+fonts/ibm-plex/IBMPlexSans-Light.woff
+fonts/ibm-plex/IBMPlexSans-Light.woff2
+fonts/ibm-plex/IBMPlexSans-LightItalic.woff
+fonts/ibm-plex/IBMPlexSans-LightItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Medium.woff
+fonts/ibm-plex/IBMPlexSans-Medium.woff2
+fonts/ibm-plex/IBMPlexSans-MediumItalic.woff
+fonts/ibm-plex/IBMPlexSans-MediumItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Regular.woff
+fonts/ibm-plex/IBMPlexSans-Regular.woff2
+fonts/ibm-plex/IBMPlexSans-SemiBold.woff
+fonts/ibm-plex/IBMPlexSans-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.woff
+fonts/ibm-plex/IBMPlexSans-SemiBoldItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Text.woff
+fonts/ibm-plex/IBMPlexSans-Text.woff2
+fonts/ibm-plex/IBMPlexSans-TextItalic.woff
+fonts/ibm-plex/IBMPlexSans-TextItalic.woff2
+fonts/ibm-plex/IBMPlexSans-Thin.woff
+fonts/ibm-plex/IBMPlexSans-Thin.woff2
+fonts/ibm-plex/IBMPlexSans-ThinItalic.woff
+fonts/ibm-plex/IBMPlexSans-ThinItalic.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Bold.woff
+fonts/ibm-plex/IBMPlexSansArabic-Bold.woff2
+fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansArabic-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Light.woff
+fonts/ibm-plex/IBMPlexSansArabic-Light.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Medium.woff
+fonts/ibm-plex/IBMPlexSansArabic-Medium.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Regular.woff
+fonts/ibm-plex/IBMPlexSansArabic-Regular.woff2
+fonts/ibm-plex/IBMPlexSansArabic-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansArabic-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Text.woff
+fonts/ibm-plex/IBMPlexSansArabic-Text.woff2
+fonts/ibm-plex/IBMPlexSansArabic-Thin.woff
+fonts/ibm-plex/IBMPlexSansArabic-Thin.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Bold.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Bold.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-BoldItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansCondensed-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-ExtraLightItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Italic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Italic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Light.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Light.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-LightItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Medium.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Medium.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-MediumItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Regular.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Regular.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansCondensed-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-SemiBoldItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Text.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Text.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-TextItalic.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-Thin.woff
+fonts/ibm-plex/IBMPlexSansCondensed-Thin.woff2
+fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.woff
+fonts/ibm-plex/IBMPlexSansCondensed-ThinItalic.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Bold.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Bold.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Light.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Light.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Medium.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Medium.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Regular.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Regular.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Text.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Text.woff2
+fonts/ibm-plex/IBMPlexSansDevanagari-Thin.woff
+fonts/ibm-plex/IBMPlexSansDevanagari-Thin.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Bold.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Bold.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansHebrew-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Light.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Light.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Medium.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Medium.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Regular.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Regular.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansHebrew-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Text.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Text.woff2
+fonts/ibm-plex/IBMPlexSansHebrew-Thin.woff
+fonts/ibm-plex/IBMPlexSansHebrew-Thin.woff2
+fonts/ibm-plex/IBMPlexSansThai-Bold.woff
+fonts/ibm-plex/IBMPlexSansThai-Bold.woff2
+fonts/ibm-plex/IBMPlexSansThai-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansThai-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansThai-Light.woff
+fonts/ibm-plex/IBMPlexSansThai-Light.woff2
+fonts/ibm-plex/IBMPlexSansThai-Medium.woff
+fonts/ibm-plex/IBMPlexSansThai-Medium.woff2
+fonts/ibm-plex/IBMPlexSansThai-Regular.woff
+fonts/ibm-plex/IBMPlexSansThai-Regular.woff2
+fonts/ibm-plex/IBMPlexSansThai-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansThai-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansThai-Text.woff
+fonts/ibm-plex/IBMPlexSansThai-Text.woff2
+fonts/ibm-plex/IBMPlexSansThai-Thin.woff
+fonts/ibm-plex/IBMPlexSansThai-Thin.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Bold.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Light.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Light.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Medium.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Regular.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Text.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Text.woff2
+fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.woff
+fonts/ibm-plex/IBMPlexSansThaiLooped-Thin.woff2
+fonts/ibm-plex/IBMPlexSerif-Bold.woff
+fonts/ibm-plex/IBMPlexSerif-Bold.woff2
+fonts/ibm-plex/IBMPlexSerif-BoldItalic.woff
+fonts/ibm-plex/IBMPlexSerif-BoldItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-ExtraLight.woff
+fonts/ibm-plex/IBMPlexSerif-ExtraLight.woff2
+fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.woff
+fonts/ibm-plex/IBMPlexSerif-ExtraLightItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-Italic.woff
+fonts/ibm-plex/IBMPlexSerif-Italic.woff2
+fonts/ibm-plex/IBMPlexSerif-Light.woff
+fonts/ibm-plex/IBMPlexSerif-Light.woff2
+fonts/ibm-plex/IBMPlexSerif-LightItalic.woff
+fonts/ibm-plex/IBMPlexSerif-LightItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-Medium.woff
+fonts/ibm-plex/IBMPlexSerif-Medium.woff2
+fonts/ibm-plex/IBMPlexSerif-MediumItalic.woff
+fonts/ibm-plex/IBMPlexSerif-MediumItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-Regular.woff
+fonts/ibm-plex/IBMPlexSerif-Regular.woff2
+fonts/ibm-plex/IBMPlexSerif-SemiBold.woff
+fonts/ibm-plex/IBMPlexSerif-SemiBold.woff2
+fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.woff
+fonts/ibm-plex/IBMPlexSerif-SemiBoldItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-Text.woff
+fonts/ibm-plex/IBMPlexSerif-Text.woff2
+fonts/ibm-plex/IBMPlexSerif-TextItalic.woff
+fonts/ibm-plex/IBMPlexSerif-TextItalic.woff2
+fonts/ibm-plex/IBMPlexSerif-Thin.woff
+fonts/ibm-plex/IBMPlexSerif-Thin.woff2
+fonts/ibm-plex/IBMPlexSerif-ThinItalic.woff
+fonts/ibm-plex/IBMPlexSerif-ThinItalic.woff2

Reply via email to