| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Otherwise MRs will only run macOS jobs.
|
|\
| |
| |
| |
| | |
coretext: Cleanup
See merge request GNOME/pango!269
|
|/
|
|
| |
Remove the unused face setter and field.
|
|\
| |
| |
| |
| |
| |
| | |
ci: Run tests on MacOS
Closes #524
See merge request GNOME/pango!268
|
| | |
|
|/
|
|
|
|
|
| |
This was returning NULL for coretext fonts.
Good that we have tests for this.
Fixes: #524
|
|\
| |
| |
| |
| | |
Enable coretext for the harfbuzz subproject
See merge request GNOME/pango!267
|
|/
|
|
|
| |
On OS X, we need hb_coretext_font_create,
so pass coretext=enabled to harfbuzz.
|
|\
| |
| |
| |
| | |
Revert "testsuite: Don't use g_test_skip"
See merge request GNOME/pango!246
|
| |
| |
| |
| |
| | |
The meson versions 0.55.0 to 0.55.2 had problems
with skipped tests. Things work again with 0.55.3,
|
|/
|
|
|
|
|
|
|
|
|
| |
When versions of Meson with bug
https://github.com/mesonbuild/meson/issues/7515 are no longer widespread,
the Pango test suite should diagnose which tests are skipped again.
Versions 0.55.0 to 0.55.2 inclusive have the bug; version 0.55.3 is OK.
This reverts commit 440f9c2609b7f5f9d8f65619b029a5eb660de88b.
Signed-off-by: Simon McVittie <smcv@debian.org>
|
|\
| |
| |
| |
| | |
Matthiasc/for master
See merge request GNOME/pango!266
|
| |
| |
| |
| | |
Bump meson to 0.56.0. The new image is fedora:v4.
|
|/ |
|
|\
| |
| |
| |
| | |
ci: Limit MacOS ci builds
See merge request GNOME/pango!265
|
|/
|
|
|
| |
We are building the whole stack every time,
so limit this to just master and merge requests.
|
|\
| |
| |
| |
| | |
Macos ci
See merge request GNOME/pango!263
|
| |
| |
| |
| | |
This uses a branch with MacOS build fixes.
|
|/ |
|
|\
| |
| |
| |
| | |
Bump glib version to 2.62
See merge request GNOME/pango!261
|
|/
|
|
| |
It is required for g_ptr_array_copy().
|
|\
| |
| |
| |
| | |
tests: Add missing executable bits for helper scripts
See merge request GNOME/pango!260
|
|/
|
|
|
|
| |
This fixes the build after commit ddc282f6ca84dc6e6e5586a0addfa82a74e6e761
that changed how the scripts are invoked, but didn't add the executable
bits.
|
| |
|
|
|
|
|
| |
This is meant to take the pain out of making a separate
docs tarball.
|
|\
| |
| |
| |
| | |
Shape docs
See merge request GNOME/pango!259
|
| |
| |
| |
| |
| |
| |
| | |
Discuss problems with extra_attr indices in the
docs for pango_shape() and friends.
See: #511
|
|/
|
|
|
| |
test-shape was using one of its attribute lists
after dropping the reference on it. Don't do that.
|
|\
| |
| |
| |
| | |
fontconfig: Try harder to find a default face
See merge request GNOME/pango!258
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fonts are amazing, and not in a good way. My system has
fonts with 0, 1, 2 "Regular" faces. It also has fonts
where the "Regular" face is, in fact, bold.
So, we need to work even harder to return a reasonable
face when asked about the default. We already make
a determination of faces that we consider 'regular'
when we create the faces initially. Just keep that
information for later reuse.
|
|\ \
| | |
| | |
| | |
| | | |
Test shape fix
See merge request GNOME/pango!257
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We don't have any test cases for this in our testsuite,
but it is useful to run this manually to see the shaping
results. The output was missing all but the first char
for the last cluster in an item.
|
|\ \ \
| | |/
| |/|
| | |
| | | |
fontconfig: Try harder to return a default face
See merge request GNOME/pango!256
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
pango_font_family_get_face() is documented as nullable,
so we are technically within our rights to return NULL,
but that is unexpected when passing NULL to get the
default face, and the family has faces. So, try a little
harder by returning the first face if we don't find
a face with the name "Regular".
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
ft2, xft: Write out the full type of the SubstituteFunc
Closes #510
See merge request GNOME/pango!255
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If the SubstituteFunc used for the now-deprecated set_default_substitute
functions is an alias for PangoFcSubstituteFunc, GObject-Introspection
doesn't realise it's a function pointer, and doesn't flag the user data
and destroy-notify arguments as such. This results in bindings like
PyGI thinking that they are entirely separate arguments, which is an
introspection API break (and probably not something that can
practically be called any more).
Signed-off-by: Simon McVittie <smcv@debian.org>
Resolves: https://gitlab.gnome.org/GNOME/pango/-/issues/510
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
meson: Use meson.override_dependency()
See merge request GNOME/pango!250
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This allows projects that use pango as a subproject to not hardcode
dependency variable names such as 'libpangocairo_dep'.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
meson: Fix cairo/fontconfig/freetype2 fallback
See merge request GNOME/pango!253
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
- Ignore disabled freetype/fontconfig option on platforms where they are
required.
- If option is enabled it should still check for system dependency with
required: false.
|
|\ \ \ \
| |/ / /
|/| | /
| | |/
| |/|
| | |
| | | |
tests: Don't add four.break twice
Closes #508
See merge request GNOME/pango!254
|
|/ /
| |
| |
| |
| |
| |
| | |
As pointed out by Werner Lemberg, we were adding
four.break twice if libthai is used.
Fixes: #508
|
|\ \
| | |
| | |
| | |
| | | |
Meson: Use latest freetype2 subproject
See merge request GNOME/pango!248
|
| | |
| | |
| | |
| | |
| | | |
The freeetype2 version from wrapdb was 2.9.1 but the github branch has
22.1.16. Harfbuzz requires the latter.
|
|\ \ \
| |_|/
|/| |
| | |
| | | |
meson: Change introspection option to yielding feature
See merge request GNOME/pango!252
|
|/ /
| |
| |
| |
| |
| |
| | |
Yielding option means that if pango is built as a subproject, it will
take the value of that option from the parent project (e.g. gst-build).
For that to work it must be of the same type, which is "feature" instead
of "boolean" in all GStreamer modules.
|
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 82cfabbabaade239beb26136cb28c98156552ea5.
This change broke GTK ci, and it takes more work to fix it than
I can invest atm. We can try again when GTK is ready for it.
|
|\ \
| | |
| | |
| | |
| | | |
Ebassi/for master
See merge request GNOME/pango!251
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We are using the deprecated python3 module for historical reasons. We
used to support both Python 2 and Python 3 in the Autotools build, but
since we switched to Meson we *know* we have Python 3 available. This
allows us to use a shebang line in the Python scripts we use in the
build, instead of invoking them through the Python interpreter in a
custom target; Meson knows how to handle shebangs portably as well.
This change removes the only deprecation warning coming from Meson when
configuring the Pango build.
|