summaryrefslogtreecommitdiffstats
path: root/system/ttf-open-sans/README.Source
diff options
context:
space:
mode:
author Edinaldo P. Silva <edps.mundognu@gmail.com>2018-11-17 03:51:00 +0000
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2018-11-17 18:42:50 +0700
commitfeaf9078adddf7d431dec1367342e5a5923cbe7a (patch)
treee065da7e7b24e934abd3ba0576b1339cf5ea61bf /system/ttf-open-sans/README.Source
parent7b9ef071e76253dcd93ed8d08118d03ac5fec7d2 (diff)
downloadslackbuilds-feaf9078adddf7d431dec1367342e5a5923cbe7a.tar.gz
slackbuilds-feaf9078adddf7d431dec1367342e5a5923cbe7a.tar.xz
system/ttf-open-sans: Updated for version 1.11.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/ttf-open-sans/README.Source')
-rw-r--r--system/ttf-open-sans/README.Source61
1 files changed, 61 insertions, 0 deletions
diff --git a/system/ttf-open-sans/README.Source b/system/ttf-open-sans/README.Source
new file mode 100644
index 0000000000..440f2c69c8
--- /dev/null
+++ b/system/ttf-open-sans/README.Source
@@ -0,0 +1,61 @@
+fonts-open-sans
+---------------
+
+The upstream website (http://www.opensans.com) does not publish
+any version information, and it is unclear if and how the font
+will ever be updated.
+
+The font is distributed in the form of a two zip files, open-sans.zip and
+open-sans-condensed.zip. These need to be repackaged to comply
+with debian source package standards.
+
+To find out if an update was released, you should download and
+unpack the fonts manually, then use otfdump to find out if they
+have a new version.
+
+
+Download the current font packages first:
+
+$ wget http://www.opensans.com/download/open-sans.zip http://www.opensans.com/download/open-sans-condensed.zip
+
+Unpack them into the source repository:
+
+$ unzip -o open-sans.zip
+$ unzip -o open-sans-condensed.zip
+
+
+Test if any of the files are tagged with a new version:
+
+$ for i in *.ttf; do echo $i; otfdump $i | grep '(nameID 5 "Version' ; done
+
+This should print something like:
+
+OpenSans-CondBold.ttf
+ (nameID 5 "Version 1.11")
+
+for each of the fonts. Note that they may not all have the same version.
+
+If any of the versions differ from the current package version, or if
+
+$ git status
+
+shows that a file has changed, it is recommended to prepare a new release.
+
+
+To accomplish this, debian/rules includes a script that does most of
+the work for you. Update the changelog first:
+
+$ dch -v <NEW_VERSION>-<PATCHLEVEL>
+
+Replace <NEW_VERSION> with the new upstream version, as determined above,
+or increment <PATCHLEVEL> if only some fonts have changed and the highest
+font version is still the same.
+Add a suitable changelog line. For example: New upstream release
+
+Then save and run the tarball script (it uses wget and unzip):
+
+$ debian/rules get-orig-source
+
+This should produce a new ../fonts-open-sans_<version>.tar.xz file.
+
+Commit the updated TTFs and Debian changelog, then release the new package.