From 6bd91a231d73a7db599553aa89cbc87ad24f3657 Mon Sep 17 00:00:00 2001 From: piernov Date: Wed, 30 May 2012 20:57:39 +0000 Subject: fontconfig 2.9.0-1 màj port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cairo/cairo-1.12.0.patch | 413 ------------------------------------------- fontconfig/.footprint.i686 | 14 +- fontconfig/.footprint.x86_64 | 14 +- fontconfig/.md5sum.i686 | 2 +- fontconfig/.md5sum.x86_64 | 2 +- fontconfig/Pkgfile | 5 +- 6 files changed, 26 insertions(+), 424 deletions(-) delete mode 100644 cairo/cairo-1.12.0.patch diff --git a/cairo/cairo-1.12.0.patch b/cairo/cairo-1.12.0.patch deleted file mode 100644 index 2b3fdd58b..000000000 --- a/cairo/cairo-1.12.0.patch +++ /dev/null @@ -1,413 +0,0 @@ -diff -Naur cairo-1.12.0.orig/src/cairo-analysis-surface.c cairo-1.12.0/src/cairo-analysis-surface.c ---- cairo-1.12.0.orig/src/cairo-analysis-surface.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/cairo-analysis-surface.c 2012-03-31 18:23:49.418555251 +0100 -@@ -125,7 +125,7 @@ - _cairo_surface_init (&proxy->base, &proxy_backend, NULL, target->content); - - proxy->target = target; -- _cairo_surface_attach_snapshot (source, &proxy->base, NULL); -+ cairo_surface_attach_snapshot (source, &proxy->base, NULL); - - return &proxy->base; - } -@@ -914,7 +914,7 @@ - }; - - cairo_surface_t * --_cairo_null_surface_create (cairo_content_t content) -+cairo_null_surface_create (cairo_content_t content) - { - cairo_surface_t *surface; - -diff -Naur cairo-1.12.0.orig/src/cairo-analysis-surface-private.h cairo-1.12.0/src/cairo-analysis-surface-private.h ---- cairo-1.12.0.orig/src/cairo-analysis-surface-private.h 2010-06-13 20:57:57.000000000 +0100 -+++ cairo-1.12.0/src/cairo-analysis-surface-private.h 2012-03-31 18:20:23.918442633 +0100 -@@ -68,7 +68,4 @@ - _cairo_analysis_surface_merge_status (cairo_int_status_t status_a, - cairo_int_status_t status_b); - --cairo_private cairo_surface_t * --_cairo_null_surface_create (cairo_content_t content); -- - #endif /* CAIRO_ANALYSIS_SURFACE_H */ -diff -Naur cairo-1.12.0.orig/src/cairo-cogl-surface.c cairo-1.12.0/src/cairo-cogl-surface.c ---- cairo-1.12.0.orig/src/cairo-cogl-surface.c 2012-03-12 08:25:12.000000000 +0000 -+++ cairo-1.12.0/src/cairo-cogl-surface.c 2012-03-31 18:23:49.351889619 +0100 -@@ -1399,7 +1399,7 @@ - reference_surface->ignore_alpha, - NULL, COGL_TEXTURE (texture)); - -- _cairo_surface_attach_snapshot (abstract_surface, clone, NULL); -+ cairo_surface_attach_snapshot (abstract_surface, clone, NULL); - - /* Attaching the snapshot will take a reference on the clone surface... */ - cairo_surface_destroy (clone); -diff -Naur cairo-1.12.0.orig/src/cairo.h cairo-1.12.0/src/cairo.h ---- cairo-1.12.0.orig/src/cairo.h 2012-03-23 18:08:55.000000000 +0000 -+++ cairo-1.12.0/src/cairo.h 2012-03-31 18:20:23.918442633 +0100 -@@ -220,6 +220,15 @@ - typedef void (*cairo_destroy_func_t) (void *data); - - /** -+ * cairo_surface_func_t: -+ * @surface: The surface being referred to. -+ * -+ * #cairo_surface_func_t the type of function which is used for callback -+ * when a surface needs to be passed as a parameter. -+ */ -+typedef void (*cairo_surface_func_t) (cairo_surface_t *surface); -+ -+/** - * cairo_user_data_key_t: - * @unused: not used; ignore. - * -@@ -2351,6 +2360,14 @@ - void *user_data, - cairo_destroy_func_t destroy); - -+cairo_public void -+cairo_surface_attach_snapshot (cairo_surface_t *surface, -+ cairo_surface_t *snapshot, -+ cairo_surface_func_t detach_func); -+ -+cairo_public void -+cairo_surface_detach_snapshot (cairo_surface_t *snapshot); -+ - #define CAIRO_MIME_TYPE_JPEG "image/jpeg" - #define CAIRO_MIME_TYPE_PNG "image/png" - #define CAIRO_MIME_TYPE_JP2 "image/jp2" -@@ -2627,6 +2644,11 @@ - cairo_public cairo_raster_source_finish_func_t - cairo_raster_source_pattern_get_finish (cairo_pattern_t *pattern); - -+/* Null-surface functions */ -+ -+cairo_public cairo_surface_t * -+cairo_null_surface_create (cairo_content_t content); -+ - /* Pattern creation functions */ - - cairo_public cairo_pattern_t * -diff -Naur cairo-1.12.0.orig/src/cairo-image-source.c cairo-1.12.0/src/cairo-image-source.c ---- cairo-1.12.0.orig/src/cairo-image-source.c 2012-03-12 08:25:12.000000000 +0000 -+++ cairo-1.12.0/src/cairo-image-source.c 2012-03-31 18:23:49.368556027 +0100 -@@ -663,7 +663,7 @@ - _cairo_surface_init (&proxy->base, &proxy_backend, NULL, image->content); - - proxy->image = image; -- _cairo_surface_attach_snapshot (source, &proxy->base, NULL); -+ cairo_surface_attach_snapshot (source, &proxy->base, NULL); - - return &proxy->base; - } -diff -Naur cairo-1.12.0.orig/src/cairoint.h cairo-1.12.0/src/cairoint.h ---- cairo-1.12.0.orig/src/cairoint.h 2012-03-22 23:04:07.000000000 +0000 -+++ cairo-1.12.0/src/cairoint.h 2012-03-31 18:20:23.918442633 +0100 -@@ -1372,17 +1372,9 @@ - cairo_private cairo_surface_t * - _cairo_surface_snapshot (cairo_surface_t *surface); - --cairo_private void --_cairo_surface_attach_snapshot (cairo_surface_t *surface, -- cairo_surface_t *snapshot, -- cairo_surface_func_t detach_func); -- - cairo_private cairo_surface_t * - _cairo_surface_has_snapshot (cairo_surface_t *surface, -- const cairo_surface_backend_t *backend); -- --cairo_private void --_cairo_surface_detach_snapshot (cairo_surface_t *snapshot); -+ const cairo_surface_backend_t *backend); - - cairo_private void - _cairo_surface_begin_modification (cairo_surface_t *surface); -diff -Naur cairo-1.12.0.orig/src/cairo-recording-surface.c cairo-1.12.0/src/cairo-recording-surface.c ---- cairo-1.12.0.orig/src/cairo-recording-surface.c 2012-03-12 08:25:12.000000000 +0000 -+++ cairo-1.12.0/src/cairo-recording-surface.c 2012-03-31 18:23:49.421888532 +0100 -@@ -553,7 +553,7 @@ - _cairo_surface_init (&proxy->base, &proxy_backend, NULL, image->content); - - proxy->image = image; -- _cairo_surface_attach_snapshot (source, &proxy->base, NULL); -+ cairo_surface_attach_snapshot (source, &proxy->base, NULL); - - return &proxy->base; - } -@@ -1634,7 +1634,7 @@ - cairo_surface_t *analysis_surface; - cairo_status_t status; - -- null_surface = _cairo_null_surface_create (surface->base.content); -+ null_surface = cairo_null_surface_create (surface->base.content); - analysis_surface = _cairo_analysis_surface_create (null_surface); - cairo_surface_destroy (null_surface); - -diff -Naur cairo-1.12.0.orig/src/cairo-script-surface.c cairo-1.12.0/src/cairo-script-surface.c ---- cairo-1.12.0.orig/src/cairo-script-surface.c 2012-02-29 12:10:06.000000000 +0000 -+++ cairo-1.12.0/src/cairo-script-surface.c 2012-03-31 18:23:49.401888843 +0100 -@@ -1117,7 +1117,7 @@ - "dup /s%d exch def ", - surface->base.unique_id); - -- _cairo_surface_attach_snapshot (source, &surface->base, detach_snapshot); -+ cairo_surface_attach_snapshot (source, &surface->base, detach_snapshot); - cairo_surface_destroy (&surface->base); - } - -diff -Naur cairo-1.12.0.orig/src/cairo-surface.c cairo-1.12.0/src/cairo-surface.c ---- cairo-1.12.0.orig/src/cairo-surface.c 2012-03-12 08:25:12.000000000 +0000 -+++ cairo-1.12.0/src/cairo-surface.c 2012-03-31 18:23:49.488554164 +0100 -@@ -325,14 +325,14 @@ - _cairo_surface_detach_snapshots (cairo_surface_t *surface) - { - while (_cairo_surface_has_snapshots (surface)) { -- _cairo_surface_detach_snapshot (cairo_list_first_entry (&surface->snapshots, -+ cairo_surface_detach_snapshot (cairo_list_first_entry (&surface->snapshots, - cairo_surface_t, - snapshot)); - } - } - - void --_cairo_surface_detach_snapshot (cairo_surface_t *snapshot) -+cairo_surface_detach_snapshot (cairo_surface_t *snapshot) - { - assert (snapshot->snapshot_of != NULL); - -@@ -346,7 +346,7 @@ - } - - void --_cairo_surface_attach_snapshot (cairo_surface_t *surface, -+cairo_surface_attach_snapshot (cairo_surface_t *surface, - cairo_surface_t *snapshot, - cairo_surface_func_t detach_func) - { -@@ -356,7 +356,7 @@ - cairo_surface_reference (snapshot); - - if (snapshot->snapshot_of != NULL) -- _cairo_surface_detach_snapshot (snapshot); -+ cairo_surface_detach_snapshot (snapshot); - - snapshot->snapshot_of = surface; - snapshot->snapshot_detach = detach_func; -@@ -390,7 +390,7 @@ - - _cairo_surface_detach_snapshots (surface); - if (surface->snapshot_of != NULL) -- _cairo_surface_detach_snapshot (surface); -+ cairo_surface_detach_snapshot (surface); - - _cairo_surface_detach_mime_data (surface); - } -@@ -897,7 +897,7 @@ - /* update the snapshots *before* we declare the surface as finished */ - _cairo_surface_detach_snapshots (surface); - if (surface->snapshot_of != NULL) -- _cairo_surface_detach_snapshot (surface); -+ cairo_surface_detach_snapshot (surface); - - surface->finished = TRUE; - -diff -Naur cairo-1.12.0.orig/src/cairo-surface-private.h cairo-1.12.0/src/cairo-surface-private.h ---- cairo-1.12.0.orig/src/cairo-surface-private.h 2012-02-15 14:20:37.000000000 +0000 -+++ cairo-1.12.0/src/cairo-surface-private.h 2012-03-31 18:20:23.918442633 +0100 -@@ -46,8 +46,6 @@ - #include "cairo-clip-private.h" - #include "cairo-surface-backend-private.h" - --typedef void (*cairo_surface_func_t) (cairo_surface_t *); -- - struct _cairo_surface { - const cairo_surface_backend_t *backend; - cairo_device_t *device; -diff -Naur cairo-1.12.0.orig/src/cairo-surface-snapshot.c cairo-1.12.0/src/cairo-surface-snapshot.c ---- cairo-1.12.0.orig/src/cairo-surface-snapshot.c 2012-02-29 12:10:06.000000000 +0000 -+++ cairo-1.12.0/src/cairo-surface-snapshot.c 2012-03-31 18:23:49.368556027 +0100 -@@ -242,7 +242,7 @@ - snapshot->base.device_transform = surface->device_transform; - snapshot->base.device_transform_inverse = surface->device_transform_inverse; - -- _cairo_surface_attach_snapshot (surface, -+ cairo_surface_attach_snapshot (surface, - &snapshot->base, - _cairo_surface_snapshot_copy_on_write); - -diff -Naur cairo-1.12.0.orig/src/cairo-surface-subsurface.c cairo-1.12.0/src/cairo-surface-subsurface.c ---- cairo-1.12.0.orig/src/cairo-surface-subsurface.c 2012-03-13 20:54:35.000000000 +0000 -+++ cairo-1.12.0/src/cairo-surface-subsurface.c 2012-03-31 18:23:49.488554164 +0100 -@@ -564,10 +564,10 @@ - ss->target->unique_id, snapshot->unique_id)); - - if (ss->snapshot) -- _cairo_surface_detach_snapshot (ss->snapshot); -+ cairo_surface_detach_snapshot (ss->snapshot); - - ss->snapshot = cairo_surface_reference (snapshot); - -- _cairo_surface_attach_snapshot (ss->target, &ss->base, -+ cairo_surface_attach_snapshot (ss->target, &ss->base, - _cairo_surface_subsurface_detach_snapshot); - } -diff -Naur cairo-1.12.0.orig/src/cairo-vg-surface.c cairo-1.12.0/src/cairo-vg-surface.c ---- cairo-1.12.0.orig/src/cairo-vg-surface.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/cairo-vg-surface.c 2012-03-31 18:23:49.381889154 +0100 -@@ -986,7 +986,7 @@ - return status; - } - -- _cairo_surface_attach_snapshot (spat->surface, &clone->base, -+ cairo_surface_attach_snapshot (spat->surface, &clone->base, - _vg_surface_remove_from_cache); - - DONE: -diff -Naur cairo-1.12.0.orig/src/cairo-xcb-surface.c cairo-1.12.0/src/cairo-xcb-surface.c ---- cairo-1.12.0.orig/src/cairo-xcb-surface.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/cairo-xcb-surface.c 2012-03-31 18:23:49.365222745 +0100 -@@ -494,7 +494,7 @@ - if (unlikely (image->status)) - return image->status; - -- _cairo_surface_attach_snapshot (&surface->base, image, NULL); -+ cairo_surface_attach_snapshot (&surface->base, image, NULL); - - DONE: - *image_out = (cairo_image_surface_t *) image; -@@ -737,7 +737,7 @@ - &surface->fallback_damage); - - if (status == CAIRO_STATUS_SUCCESS) { -- _cairo_surface_attach_snapshot (&surface->base, -+ cairo_surface_attach_snapshot (&surface->base, - &surface->fallback->base, - cairo_surface_finish); - } -diff -Naur cairo-1.12.0.orig/src/cairo-xcb-surface-core.c cairo-1.12.0/src/cairo-xcb-surface-core.c ---- cairo-1.12.0.orig/src/cairo-xcb-surface-core.c 2012-02-02 00:47:50.000000000 +0000 -+++ cairo-1.12.0/src/cairo-xcb-surface-core.c 2012-03-31 18:23:49.365222745 +0100 -@@ -440,7 +440,7 @@ - if (unlikely (pixmap->base.status)) - return pixmap; - -- _cairo_surface_attach_snapshot (source, &pixmap->base, NULL); -+ cairo_surface_attach_snapshot (source, &pixmap->base, NULL); - - if (pattern->base.extend != CAIRO_EXTEND_NONE) { - if (extents->x < 0 || extents->y < 0 || -diff -Naur cairo-1.12.0.orig/src/cairo-xcb-surface-render.c cairo-1.12.0/src/cairo-xcb-surface-render.c ---- cairo-1.12.0.orig/src/cairo-xcb-surface-render.c 2012-02-02 00:47:50.000000000 +0000 -+++ cairo-1.12.0/src/cairo-xcb-surface-render.c 2012-03-31 18:23:49.391888998 +0100 -@@ -1284,7 +1284,7 @@ - return picture; - } - -- _cairo_surface_attach_snapshot (source, -+ cairo_surface_attach_snapshot (source, - &picture->base, - NULL); - -diff -Naur cairo-1.12.0.orig/src/cairo-xlib-source.c cairo-1.12.0/src/cairo-xlib-source.c ---- cairo-1.12.0.orig/src/cairo-xlib-source.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/cairo-xlib-source.c 2012-03-31 18:23:49.491887446 +0100 -@@ -790,7 +790,7 @@ - _cairo_surface_has_snapshot (&src->base, dst->base.backend); - if (snapshot == NULL || snapshot->screen != dst->screen) { - if (snapshot) -- _cairo_surface_detach_snapshot (&snapshot->base); -+ cairo_surface_detach_snapshot (&snapshot->base); - - snapshot = (cairo_xlib_surface_t *) - _cairo_surface_create_similar_scratch (&dst->base, -@@ -811,7 +811,7 @@ - return _cairo_surface_create_in_error (status); - } - -- _cairo_surface_attach_snapshot (&src->base, -+ cairo_surface_attach_snapshot (&src->base, - &snapshot->base, - cairo_surface_finish); - -diff -Naur cairo-1.12.0.orig/src/drm/cairo-drm-i915-shader.c cairo-1.12.0/src/drm/cairo-drm-i915-shader.c ---- cairo-1.12.0.orig/src/drm/cairo-drm-i915-shader.c 2012-02-02 00:47:50.000000000 +0000 -+++ cairo-1.12.0/src/drm/cairo-drm-i915-shader.c 2012-03-31 18:23:49.331889930 +0100 -@@ -1656,7 +1656,7 @@ - image, &s); - - if (likely (status == CAIRO_STATUS_SUCCESS)) { -- _cairo_surface_attach_snapshot (surface, -+ cairo_surface_attach_snapshot (surface, - &s->intel.drm.base, - intel_surface_detach_snapshot); - -diff -Naur cairo-1.12.0.orig/src/drm/cairo-drm-i965-shader.c cairo-1.12.0/src/drm/cairo-drm-i965-shader.c ---- cairo-1.12.0.orig/src/drm/cairo-drm-i965-shader.c 2012-03-12 08:25:12.000000000 +0000 -+++ cairo-1.12.0/src/drm/cairo-drm-i965-shader.c 2012-03-31 18:23:49.481887600 +0100 -@@ -281,7 +281,7 @@ - return status; - } - -- _cairo_surface_attach_snapshot (&image->base, -+ cairo_surface_attach_snapshot (&image->base, - &clone->intel.drm.base, - intel_surface_detach_snapshot); - -@@ -567,7 +567,7 @@ - if (bo->purgeable && - ! intel_bo_madvise (&device->intel, bo, I915_MADV_WILLNEED)) - { -- _cairo_surface_detach_snapshot (&s->intel.drm.base); -+ cairo_surface_detach_snapshot (&s->intel.drm.base); - s = NULL; - } - -diff -Naur cairo-1.12.0.orig/src/drm/cairo-drm-intel-surface.c cairo-1.12.0/src/drm/cairo-drm-intel-surface.c ---- cairo-1.12.0.orig/src/drm/cairo-drm-intel-surface.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/drm/cairo-drm-intel-surface.c 2012-03-31 18:23:49.318556804 +0100 -@@ -105,7 +105,7 @@ - if (unlikely (image->status)) - return image->status; - -- _cairo_surface_attach_snapshot (&surface->drm.base, image, surface_finish_and_destroy); -+ cairo_surface_attach_snapshot (&surface->drm.base, image, surface_finish_and_destroy); - - DONE: - *image_out = (cairo_image_surface_t *) cairo_surface_reference (image); -diff -Naur cairo-1.12.0.orig/src/drm/cairo-drm-radeon-surface.c cairo-1.12.0/src/drm/cairo-drm-radeon-surface.c ---- cairo-1.12.0.orig/src/drm/cairo-drm-radeon-surface.c 2012-02-12 09:46:01.000000000 +0000 -+++ cairo-1.12.0/src/drm/cairo-drm-radeon-surface.c 2012-03-31 18:23:49.331889930 +0100 -@@ -107,7 +107,7 @@ - if (unlikely (status)) - return status; - -- _cairo_surface_attach_snapshot (&surface->base.base, image, cairo_surface_destroy); -+ cairo_surface_attach_snapshot (&surface->base.base, image, cairo_surface_destroy); - - DONE: - *image_out = (cairo_image_surface_t *) cairo_surface_reference (image); -diff -Naur cairo-1.12.0.orig/test/xcb-snapshot-assert.c cairo-1.12.0/test/xcb-snapshot-assert.c ---- cairo-1.12.0.orig/test/xcb-snapshot-assert.c 2012-02-02 00:47:51.000000000 +0000 -+++ cairo-1.12.0/test/xcb-snapshot-assert.c 2012-03-31 18:23:49.421888532 +0100 -@@ -60,7 +60,7 @@ - } - - CAIRO_TEST (xcb_snapshot_assert, -- "Test a wrong _cairo_surface_attach_snapshot call", -+ "Test a wrong cairo_surface_attach_snapshot call", - "xcb", /* keywords */ - NULL, /* requirements */ - 2, 2, -diff -Naur cairo-1.12.0.orig/test/xcb-stress-cache.c cairo-1.12.0/test/xcb-stress-cache.c ---- cairo-1.12.0.orig/test/xcb-stress-cache.c 2012-02-02 00:47:51.000000000 +0000 -+++ cairo-1.12.0/test/xcb-stress-cache.c 2012-03-31 18:23:49.498554008 +0100 -@@ -48,7 +48,7 @@ - * already full, so a random cache entry is picked and removed. - * - The surface that was added before is picked and gets fed to - * _surface_cache_entry_destroy. -- * - This calls _cairo_surface_detach_snapshot which causes the -+ * - This calls cairo_surface_detach_snapshot which causes the - * detach_func from above to be called, so the surface is finished and the - * associated picture is FreePicture'd. - * - _composite_mask now uses a Picture that was already freed. - diff --git a/fontconfig/.footprint.i686 b/fontconfig/.footprint.i686 index 5c60a73bb..9f3bedd00 100644 --- a/fontconfig/.footprint.i686 +++ b/fontconfig/.footprint.i686 @@ -8,6 +8,9 @@ drwxr-xr-x root/root etc/fonts/conf.avail/ -rw-r--r-- root/root etc/fonts/conf.avail/10-sub-pixel-vbgr.conf -rw-r--r-- root/root etc/fonts/conf.avail/10-sub-pixel-vrgb.conf -rw-r--r-- root/root etc/fonts/conf.avail/10-unhinted.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-default.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-legacy.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-light.conf -rw-r--r-- root/root etc/fonts/conf.avail/20-fix-globaladvance.conf -rw-r--r-- root/root etc/fonts/conf.avail/20-unhint-small-vera.conf -rw-r--r-- root/root etc/fonts/conf.avail/25-unhint-nonlatin.conf @@ -52,6 +55,7 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/fc-cat -rwxr-xr-x root/root usr/bin/fc-list -rwxr-xr-x root/root usr/bin/fc-match +-rwxr-xr-x root/root usr/bin/fc-pattern -rwxr-xr-x root/root usr/bin/fc-query -rwxr-xr-x root/root usr/bin/fc-scan drwxr-xr-x root/root usr/include/ @@ -62,9 +66,9 @@ drwxr-xr-x root/root usr/include/fontconfig/ drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libfontconfig.a -rwxr-xr-x root/root usr/lib/libfontconfig.la -lrwxrwxrwx root/root usr/lib/libfontconfig.so -> libfontconfig.so.1.4.4 -lrwxrwxrwx root/root usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.4.4 --rwxr-xr-x root/root usr/lib/libfontconfig.so.1.4.4 +lrwxrwxrwx root/root usr/lib/libfontconfig.so -> libfontconfig.so.1.5.0 +lrwxrwxrwx root/root usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.5.0 +-rwxr-xr-x root/root usr/lib/libfontconfig.so.1.5.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/fontconfig.pc drwxr-xr-x root/root usr/share/ @@ -93,6 +97,7 @@ drwxr-xr-x root/root usr/share/man/man3/ -rw-r--r-- root/root usr/share/man/man3/FcCharSetCount.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetCoverage.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetCreate.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcCharSetDelChar.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetDestroy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetFirstPage.3.gz @@ -175,11 +180,14 @@ drwxr-xr-x root/root usr/share/man/man3/ -rw-r--r-- root/root usr/share/man/man3/FcLangSetContains.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetCopy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetCreate.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetDel.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetDestroy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetGetLangs.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetHasLang.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetHash.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetSubtract.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetUnion.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixCopy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixInit.3.gz diff --git a/fontconfig/.footprint.x86_64 b/fontconfig/.footprint.x86_64 index 5c60a73bb..9f3bedd00 100644 --- a/fontconfig/.footprint.x86_64 +++ b/fontconfig/.footprint.x86_64 @@ -8,6 +8,9 @@ drwxr-xr-x root/root etc/fonts/conf.avail/ -rw-r--r-- root/root etc/fonts/conf.avail/10-sub-pixel-vbgr.conf -rw-r--r-- root/root etc/fonts/conf.avail/10-sub-pixel-vrgb.conf -rw-r--r-- root/root etc/fonts/conf.avail/10-unhinted.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-default.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-legacy.conf +-rw-r--r-- root/root etc/fonts/conf.avail/11-lcdfilter-light.conf -rw-r--r-- root/root etc/fonts/conf.avail/20-fix-globaladvance.conf -rw-r--r-- root/root etc/fonts/conf.avail/20-unhint-small-vera.conf -rw-r--r-- root/root etc/fonts/conf.avail/25-unhint-nonlatin.conf @@ -52,6 +55,7 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/fc-cat -rwxr-xr-x root/root usr/bin/fc-list -rwxr-xr-x root/root usr/bin/fc-match +-rwxr-xr-x root/root usr/bin/fc-pattern -rwxr-xr-x root/root usr/bin/fc-query -rwxr-xr-x root/root usr/bin/fc-scan drwxr-xr-x root/root usr/include/ @@ -62,9 +66,9 @@ drwxr-xr-x root/root usr/include/fontconfig/ drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libfontconfig.a -rwxr-xr-x root/root usr/lib/libfontconfig.la -lrwxrwxrwx root/root usr/lib/libfontconfig.so -> libfontconfig.so.1.4.4 -lrwxrwxrwx root/root usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.4.4 --rwxr-xr-x root/root usr/lib/libfontconfig.so.1.4.4 +lrwxrwxrwx root/root usr/lib/libfontconfig.so -> libfontconfig.so.1.5.0 +lrwxrwxrwx root/root usr/lib/libfontconfig.so.1 -> libfontconfig.so.1.5.0 +-rwxr-xr-x root/root usr/lib/libfontconfig.so.1.5.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/fontconfig.pc drwxr-xr-x root/root usr/share/ @@ -93,6 +97,7 @@ drwxr-xr-x root/root usr/share/man/man3/ -rw-r--r-- root/root usr/share/man/man3/FcCharSetCount.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetCoverage.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetCreate.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcCharSetDelChar.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetDestroy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcCharSetFirstPage.3.gz @@ -175,11 +180,14 @@ drwxr-xr-x root/root usr/share/man/man3/ -rw-r--r-- root/root usr/share/man/man3/FcLangSetContains.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetCopy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetCreate.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetDel.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetDestroy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetGetLangs.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetHasLang.3.gz -rw-r--r-- root/root usr/share/man/man3/FcLangSetHash.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetSubtract.3.gz +-rw-r--r-- root/root usr/share/man/man3/FcLangSetUnion.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixCopy.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixEqual.3.gz -rw-r--r-- root/root usr/share/man/man3/FcMatrixInit.3.gz diff --git a/fontconfig/.md5sum.i686 b/fontconfig/.md5sum.i686 index ae867e732..0909ee9fa 100644 --- a/fontconfig/.md5sum.i686 +++ b/fontconfig/.md5sum.i686 @@ -1 +1 @@ -77e15a92006ddc2adbb06f840d591c0e fontconfig-2.8.0.tar.gz +26c83855ed256b5c032baae032fadc4f fontconfig-2.9.0.tar.gz diff --git a/fontconfig/.md5sum.x86_64 b/fontconfig/.md5sum.x86_64 index ae867e732..0909ee9fa 100644 --- a/fontconfig/.md5sum.x86_64 +++ b/fontconfig/.md5sum.x86_64 @@ -1 +1 @@ -77e15a92006ddc2adbb06f840d591c0e fontconfig-2.8.0.tar.gz +26c83855ed256b5c032baae032fadc4f fontconfig-2.9.0.tar.gz diff --git a/fontconfig/Pkgfile b/fontconfig/Pkgfile index b6a1d60dd..3bf7bf1a7 100755 --- a/fontconfig/Pkgfile +++ b/fontconfig/Pkgfile @@ -6,9 +6,9 @@ # Run on: freetype,libxml2,expat name=fontconfig -version=2.8.0 +version=2.9.0 release=1 -source=( http://fontconfig.org/release/$name-$version.tar.gz) +source=(http://fontconfig.org/release/$name-$version.tar.gz) build() { @@ -26,4 +26,3 @@ build() { install -v -m644 doc/*.3 $PKG/usr/share/man/man3 install -v -m644 doc/*.5 $PKG/usr/share/man/man5 } - -- cgit v1.2.3-54-g00ecf