commit 20e83b2a174c4aa19671a7acfc023822f2ac66c6 Author: Serghei Mihai Date: Thu Oct 12 15:45:16 2017 +0200 initial package (#19412) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c0a2f65 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +include README.txt +recursive-include xstatic/pkg/josefinsans * + +global-exclude *.pyc +global-exclude *.pyo +global-exclude *.orig +global-exclude *.rej diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..e5af39d --- /dev/null +++ b/README.txt @@ -0,0 +1,13 @@ +XStatic-JosefinSans +---------------- + +Josefin packaged for setuptools (easy_install) / pip. + +This package is intended to be used by **any** project that needs these files. + +It intentionally does **not** provide any extra code except some metadata +**nor** has any extra requirements. You MAY use some minimal support code from +the XStatic base package, if you like. + +You can find more info about the xstatic packaging way in the package `XStatic`. + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e948198 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +xstatic-josefin (1.0.0-1) unstable; urgency=low + + * source package created by copy/pasting. + + -- Serghei Mihai Thu, 12 Oct 2017 15:18:45 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..0988898 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: xstatic-josefinsans +Maintainer: Serghei Mihai +Section: python +Priority: optional +Build-Depends: dh-python, python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9) +Standards-Version: 3.9.6 +Homepage: https://www.fontsquirrel.com/fonts/Josefin-Sans + +Package: python-xstatic-josefinsans +Architecture: all +Depends: ${misc:Depends}, ${python:Depends} +Description: Open Sans (XStatic packaging standard) + Open Sans icons packaged for setuptools (easy_install) / pip. + . + This package is intended to be used by **any** project that needs these files. + . + It intentionally does **not** provide any extra code except some metadata + **nor** has any extra requirements. You MAY use some minimal support code from + the XStatic base package, if you like. + . + You can find more info about the xstatic packaging way in the package `XStatic`. + . diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6f22743 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +# This file was automatically generated by stdeb 0.8.5 at +# Thu, 23 Jun 2016 23:26:15 +0200 +export PYBUILD_NAME=xstatic-josefinsans +%: + dh $@ --with python2 --buildsystem=pybuild + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..861a9f5 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[egg_info] +tag_build = +tag_date = 0 +tag_svn_revision = 0 + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..34ba4c9 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +from xstatic.pkg import josefinsans as xs + +# The README.txt file should be written in reST so that PyPI can use +# it to generate your project's PyPI page. +long_description = open('README.txt').read() + +from setuptools import setup, find_packages + +setup( + name=xs.PACKAGE_NAME, + version=xs.PACKAGE_VERSION, + description=xs.DESCRIPTION, + long_description=long_description, + classifiers=xs.CLASSIFIERS, + keywords=xs.KEYWORDS, + maintainer=xs.MAINTAINER, + maintainer_email=xs.MAINTAINER_EMAIL, + license=xs.LICENSE, + url=xs.HOMEPAGE, + platforms=xs.PLATFORMS, + packages=find_packages(), + namespace_packages=['xstatic', 'xstatic.pkg', ], + include_package_data=True, + zip_safe=False, + install_requires=[], # nothing! :) + # if you like, you MAY use the 'XStatic' package. +) diff --git a/xstatic/__init__.py b/xstatic/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/xstatic/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/xstatic/pkg/__init__.py b/xstatic/pkg/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/xstatic/pkg/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/xstatic/pkg/josefinsans/__init__.py b/xstatic/pkg/josefinsans/__init__.py new file mode 100644 index 0000000..74f9289 --- /dev/null +++ b/xstatic/pkg/josefinsans/__init__.py @@ -0,0 +1,49 @@ +""" +XStatic resource package + +See package 'XStatic' for documentation and basic tools. +""" + +DISPLAY_NAME = 'JosefinSans' # official name, upper/lowercase allowed, no spaces +PACKAGE_NAME = 'XStatic-%s' % DISPLAY_NAME # name used for PyPi + +NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar') + # please use a all-lowercase valid python + # package name + +VERSION = '0.0' # version of the packaged files, please use the upstream + # version number +BUILD = '0' # our package build number, so we can release new builds + # with fixes for xstatic stuff. +PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi + +DESCRIPTION = "%s %s (XStatic packaging standard)" % (DISPLAY_NAME, VERSION) + +PLATFORMS = 'any' +CLASSIFIERS = [] +KEYWORDS = '%s xstatic' % NAME + +# XStatic-* package maintainer: +MAINTAINER = 'Serghei Mihai' +MAINTAINER_EMAIL = 'smihai@entrouvert.com' + +# this refers to the project homepage of the stuff we packaged: +HOMEPAGE = 'https://www.fontsquirrel.com/fonts/Josefin-Sans' + +# this refers to all files: +LICENSE = '(same as %s)' % DISPLAY_NAME + +from os.path import join, dirname +BASE_DIR = join(dirname(__file__), 'data') +# linux package maintainers just can point to their file locations like this: +#BASE_DIR = '/usr/share/javascript/d3' + +LOCATIONS = { + # CDN locations (if no public CDN exists, use an empty dict) + # if value is a string, it is a base location, just append relative + # path/filename. if value is a dict, do another lookup using the + # relative path/filename you want. + # your relative path/filenames should usually be without version + # information, because either the base dir/url is exactly for this + # version or the mapping will care for accessing this version. +} diff --git a/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.eot b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.eot new file mode 100644 index 0000000..28da71e Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.svg b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.svg new file mode 100644 index 0000000..cf0cc87 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.svg @@ -0,0 +1,787 @@ + + + + +Created by FontForge 20120731 at Tue Jun 20 11:55:10 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.ttf b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.ttf new file mode 100644 index 0000000..6293861 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff new file mode 100644 index 0000000..646e2d3 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff2 b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff2 new file mode 100644 index 0000000..bd2e85e Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Bold/JosefinSans-Bold.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.eot b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.eot new file mode 100644 index 0000000..6ea6255 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.svg b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.svg new file mode 100644 index 0000000..95e00e7 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.svg @@ -0,0 +1,806 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:21:12 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.ttf b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.ttf new file mode 100644 index 0000000..a9b2e6b Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff new file mode 100644 index 0000000..a934b89 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff2 b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff2 new file mode 100644 index 0000000..22ff763 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/BoldItalic/JosefinSans-BoldItalic.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.eot b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.eot new file mode 100644 index 0000000..4cdd415 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.svg b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.svg new file mode 100644 index 0000000..3a88027 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.svg @@ -0,0 +1,806 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:22:01 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.ttf b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.ttf new file mode 100644 index 0000000..89f7b35 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff new file mode 100644 index 0000000..35d9ec1 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff2 b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff2 new file mode 100644 index 0000000..4024175 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Italic/JosefinSans-Italic.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.eot b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.eot new file mode 100644 index 0000000..e98381a Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.otf b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.otf new file mode 100644 index 0000000..1ddcb79 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.svg b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.svg new file mode 100644 index 0000000..da65d7d --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.svg @@ -0,0 +1,793 @@ + + + + +Created by FontForge 20120731 at Mon Jul 24 07:46:48 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.ttf b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.ttf new file mode 100644 index 0000000..0db8444 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff new file mode 100644 index 0000000..2190409 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff2 b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff2 new file mode 100644 index 0000000..445d6f3 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Light/JosefinSans-Light.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.eot b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.eot new file mode 100644 index 0000000..b8b7ba0 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.otf b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.otf new file mode 100644 index 0000000..76e95f7 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.svg b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.svg new file mode 100644 index 0000000..1cec749 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.svg @@ -0,0 +1,800 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:26:53 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.ttf b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.ttf new file mode 100644 index 0000000..bf3c35e Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff new file mode 100644 index 0000000..88dcb9f Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff2 b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff2 new file mode 100644 index 0000000..b7ddc40 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/LightItalic/JosefinSans-LightItalic.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.eot b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.eot new file mode 100644 index 0000000..6a662b0 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.otf b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.otf new file mode 100644 index 0000000..a890efd Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.svg b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.svg new file mode 100644 index 0000000..0e0e216 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.svg @@ -0,0 +1,794 @@ + + + + +Created by FontForge 20120731 at Wed Jun 14 15:00:41 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.ttf b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.ttf new file mode 100644 index 0000000..98deb67 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff new file mode 100644 index 0000000..8cd93da Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff2 b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff2 new file mode 100644 index 0000000..1a81c16 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Regular/JosefinSans-Regular.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.eot b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.eot new file mode 100644 index 0000000..5797390 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.otf b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.otf new file mode 100644 index 0000000..c00b991 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.svg b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.svg new file mode 100644 index 0000000..7bf55f2 --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.svg @@ -0,0 +1,798 @@ + + + + +Created by FontForge 20120731 at Wed Jun 14 11:09:58 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.ttf b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.ttf new file mode 100644 index 0000000..f58d378 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff new file mode 100644 index 0000000..fc7721c Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff2 b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff2 new file mode 100644 index 0000000..fb08719 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBold/JosefinSans-SemiBold.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.eot b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.eot new file mode 100644 index 0000000..66ce09c Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.otf b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.otf new file mode 100644 index 0000000..2528f89 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.svg b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.svg new file mode 100644 index 0000000..15412eb --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.svg @@ -0,0 +1,803 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:30:04 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.ttf b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.ttf new file mode 100644 index 0000000..89a52be Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff new file mode 100644 index 0000000..72af99f Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff2 b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff2 new file mode 100644 index 0000000..c1020d0 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/SemiBoldItalic/JosefinSans-SemiBoldItalic.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.eot b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.eot new file mode 100644 index 0000000..f1ebab4 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.otf b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.otf new file mode 100644 index 0000000..6310d14 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.svg b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.svg new file mode 100644 index 0000000..c4135bd --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.svg @@ -0,0 +1,791 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:18:29 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.ttf b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.ttf new file mode 100644 index 0000000..065f1e3 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff new file mode 100644 index 0000000..596549a Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff2 b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff2 new file mode 100644 index 0000000..b251337 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/Thin/JosefinSans-Thin.woff2 differ diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.eot b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.eot new file mode 100644 index 0000000..8edd7bc Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.eot differ diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.otf b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.otf new file mode 100644 index 0000000..81b0fe8 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.otf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.svg b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.svg new file mode 100644 index 0000000..5a06c3a --- /dev/null +++ b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.svg @@ -0,0 +1,799 @@ + + + + +Created by FontForge 20120731 at Thu Oct 12 14:31:35 2017 + By www +Copyright (c) 2010 by Typemade. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.ttf b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.ttf new file mode 100644 index 0000000..9cd03e4 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.ttf differ diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff new file mode 100644 index 0000000..13540d2 Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff differ diff --git a/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff2 b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff2 new file mode 100644 index 0000000..e9ef1ae Binary files /dev/null and b/xstatic/pkg/josefinsans/data/fonts/ThinItalic/JosefinSans-ThinItalic.woff2 differ