summaryrefslogtreecommitdiff
path: root/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/libs/harfbuzz/harfbuzz-src/README.python.md
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/harfbuzz/harfbuzz-src/README.python.md')
-rw-r--r--Build/source/libs/harfbuzz/harfbuzz-src/README.python.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md b/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md
deleted file mode 100644
index 7496f045ec9..00000000000
--- a/Build/source/libs/harfbuzz/harfbuzz-src/README.python.md
+++ /dev/null
@@ -1,31 +0,0 @@
-To enable HarfBuzz bindings for Python among other languages, make sure
-you have latest version of gobject-introspection available. On Ubuntu,
-you can install that this way:
-
-```bash
-sudo apt-get install libgirepository1.0-dev
-```
-
-And then run `meson setup` and make sure that `Introspection` is reported
-enabled in output.
-
-Compile and install.
-
-Make sure you have the installation lib dir in `LD_LIBRARY_PATH`, as needed
-for the linker to find the library.
-
-Then make sure you also have `GI_TYPELIB_PATH` pointing to the resulting
-`$prefix/lib/girepository-*` directory.
-
-Make sure you have pygobject installed. Then check that the following
-import works in your Python interpreter:
-
-```python
-from gi.repository import HarfBuzz
-```
-
-If it does, you are ready to call HarfBuzz from Python! Congratulations.
-See [`src/sample.py`](src/sample.py).
-
-The Python API will change. Let us know on the mailing list if you are
-using it, and send lots of feedback.