Commit Graph

25 Commits

Author SHA1 Message Date
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Rosen Penev dcc5d134c7 freetype: update to 2.11.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-12-20 11:27:05 +02:00
Rosen Penev 2fdd8dbcb1 freetype: update to 2.11.0
Remove upstreamed patches.

Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 11:05:11 -07:00
Rosen Penev 5ccd4d1c25 treewide: compile with tools/meson
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-17 22:06:52 -07:00
Rosen Penev dd65dac8b3 freetype: switch to meson
Meson configures and builds faster. It's also simpler.

Backport upstream patch fixing compilation without harfbuzz and brotli.

Added distutils patch for some debian systems.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-05 01:17:34 -08:00
Val Kulkov 651d172dc3 libfreetype: update to 2.10.4
Update to the latest upstream version, fixing CVE-2020-15999 among
other things.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2020-10-21 01:54:58 -04:00
Rosen Penev 547c27aa7a
freetype: update to 2.10.2
Switched to CMake to simplify the Makefile and to remove autotools
hacks.

Replaced InstallDev with CMAKE_INSTALL.

Added PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-06-28 20:56:55 -07:00
Rosen Penev 28e83b1f7f
freetype: remove host build
Nothing uses this.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-06-02 14:02:54 -07:00
Val Kulkov 139d7b6cb4 libfreetype: update to the latest release
Update to FreeType 2.10.1. Update PKG_LICENSE information.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2019-07-02 10:52:32 -04:00
Val Kulkov 5426737a5c libfreetype: update to v2.10.0
Update to the latest upstream version.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2019-03-15 11:03:10 -04:00
Lucian Cristian 51197633c3 freetype: add host config flags
this fixes static linking with mkfontscale/host xorg app

Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2019-02-05 09:06:45 +02:00
Rosen Penev 456ae2f541
freetype: Add PKG_CPE_ID for proper CVE tracking
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-08-20 21:40:57 -07:00
Rosen Penev cafab6d3f7 freetype: Update to 2.9.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-06-20 14:02:10 -07:00
Val Kulkov 4ac5219ed9 libfreetype: update to FreeType 2.9
Update to the latest version from upstream.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2018-01-15 10:46:52 -05:00
Val Kulkov d71da65581 libfreetype: restore host build
Restore host building on request from a user. Apparently, packages
outside of openwrt/packages feed rely on Freetype 2 building on host.

While at it, remove sed-editing of freetype-config that is no longer
necessary. The current version of freetype-config correctly identifies
prefix, exec_prefix, includedir and libdir.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-20 15:42:18 -05:00
Val Kulkov b2b31e7ef3 libfreetype: update to 2.8.1, fix host install issue
This commit updates Freetype 2 to the latest upstream version and fixes
the issue where freetype-config was incorrectly installed into the
host, rather than the target, staging directory, therefore causing
compilation issues with other packages that depend on libfreetype.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-11-14 16:19:13 -05:00
Val Kulkov d0e0f862af libfreetype: bump up to the latest version v.2.7.1
Update the freetype font library to v.2.7.1.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-04-17 13:23:29 -04:00
Mirko Vogt 285298dc5f freetype: bump to version 2.7 2017-01-23 11:19:03 +01:00
Nicolas Thill 3d929bbd08 freetype: -config & .pc files cleanup & fixes
Fix libdir as well in freetype-config, merge both freetype2.pc fixes into a single one

Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-08-04 02:28:36 +02:00
Paul Fertser 26c9101b54 freetype: fix include path for cross-compilation
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2015-07-19 18:53:55 +03:00
Nicolas Thill 21f572176d freetype: fix pkgconfig file
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-02-02 13:36:51 +01:00
Nicolas Thill f49a360a5b freetype: bump to 2.5.5
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-01-09 18:28:18 +01:00
Ted Hess 032feefa7d Revert #325: freetype: install ft2build.h - already in include/freetyp2 directory
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-09-20 10:39:34 -04:00
Alexandru Ardelean dba9c40dcc freetype: install ft2build.h
Required for splashutils.
May be required for other programs too.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2014-09-19 18:17:54 +03:00
Nicolas Thill 5b87eb7290 freetype: import from old packages feed
- update to latest version (v2.5.3)
 - add license info
 - add myself as maintainer

Signed-off-by: Nicolas Thill <nico@openwrt.org>
2014-08-20 21:06:49 +02:00