summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2019-09-03 10:53:36 +0200
committerEdward Hervey <bilboed@bilboed.com>2019-09-03 10:53:36 +0200
commit6aabd291bcbda2c2ad2c26479bfc6c42e8cbf9f3 (patch)
treea541381c53bddfd26d4da868ddfaa65c74dc20a9
parentbba0ba0f0ae8c4ab8a4b8476858bce8ca46eb2c2 (diff)
recipes: Upgrade harfbuzz to 2.6.1harfbuzz
19months of improvements, a lot of fixes regarding building it also.
-rw-r--r--recipes/harfbuzz.recipe8
-rw-r--r--recipes/harfbuzz/0001-Use-Python3-in-gen-def.py.patch2
2 files changed, 5 insertions, 5 deletions
diff --git a/recipes/harfbuzz.recipe b/recipes/harfbuzz.recipe
index 9b6b5672..9ceca390 100644
--- a/recipes/harfbuzz.recipe
+++ b/recipes/harfbuzz.recipe
@@ -3,11 +3,11 @@
class Recipe(recipe.Recipe):
name = 'harfbuzz'
- version = '1.7.5'
+ version = '2.6.1'
stype = SourceType.TARBALL
- url = 'https://www.freedesktop.org/software/%(name)s/release/%(name)s-%(version)s.tar.bz2'
- tarball_checksum = '84574e1b1f65ca694cb8fb6905309665c0368af18a312357f8ff886ee2f29563'
- licenses = [{License.BSD_like: ['COPYING', 'src/hb-ucdn/COPYING']}]
+ url = 'https://www.freedesktop.org/software/%(name)s/release/%(name)s-%(version)s.tar.xz'
+ tarball_checksum = 'c651fb3faaa338aeb280726837c2384064cdc17ef40539228d88a1260960844f'
+ licenses = [{License.BSD_like: ['COPYING']}]
deps = ['fontconfig', 'cairo', 'glib']
configure_options = "--enable-static --with-icu=no"
autoreconf = True
diff --git a/recipes/harfbuzz/0001-Use-Python3-in-gen-def.py.patch b/recipes/harfbuzz/0001-Use-Python3-in-gen-def.py.patch
index 526f4579..f4a146c2 100644
--- a/recipes/harfbuzz/0001-Use-Python3-in-gen-def.py.patch
+++ b/recipes/harfbuzz/0001-Use-Python3-in-gen-def.py.patch
@@ -15,7 +15,7 @@ index ad1606e..f45df80 100755
-#!/usr/bin/env python
+#!/usr/bin/env python3
- from __future__ import print_function
+ from __future__ import print_function, division, absolute_import
--
2.19.2