Accepting request 1134992 from home:MargueriteSu:branches:M17N
- drop fix-sphinx-doc.patch, upstream fixed OBS-URL: https://build.opensuse.org/request/show/1134992 OBS-URL: https://build.opensuse.org/package/show/M17N/fontforge?expand=0&rev=87
This commit is contained in:
parent
f242fd5d22
commit
dfd9cd3208
@ -1,146 +0,0 @@
|
|||||||
Index: fontforge-20200314/doc/sphinx/techref/splinefont.rst
|
|
||||||
===================================================================
|
|
||||||
--- fontforge-20200314.orig/doc/sphinx/techref/splinefont.rst
|
|
||||||
+++ fontforge-20200314/doc/sphinx/techref/splinefont.rst
|
|
||||||
@@ -195,7 +195,7 @@ The bounding box of a :ref:`Spline <spli
|
|
||||||
:ref:`SplineChar <splinefont.SplineChar>`, :ref:`RefChar <splinefont.RefChar>`,
|
|
||||||
:ref:`Image <splinefont.ImageList>`, or whatever else needs a bounding box.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.BDFFloat
|
|
||||||
|
|
||||||
typedef struct bdffloat {
|
|
||||||
@@ -206,7 +206,7 @@ The bounding box of a :ref:`Spline <spli
|
|
||||||
|
|
||||||
The floating selection in a :ref:`BDFChar <splinefont.BDFChar>`.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.Undoes
|
|
||||||
|
|
||||||
typedef struct undoes {
|
|
||||||
@@ -277,7 +277,7 @@ both the splines and the bitmaps of a ch
|
|
||||||
ut_mult is used when doing a copy from the FontView where you are copying more
|
|
||||||
than one character.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.BDFChar
|
|
||||||
|
|
||||||
typedef struct bdfchar {
|
|
||||||
@@ -318,7 +318,7 @@ represented by a byte rather than a bit.
|
|
||||||
The last thing in the BDFChar is a (/an optional) floating selection. Only
|
|
||||||
present if the user has made a selection or done a paste or something like that.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.BDFFont
|
|
||||||
|
|
||||||
typedef struct bdffont {
|
|
||||||
@@ -345,7 +345,7 @@ contains a count of the number of entrie
|
|
||||||
itself. Currently the number of entries here is always 16, but that could
|
|
||||||
change.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.SplinePoint
|
|
||||||
|
|
||||||
enum pointtype { pt_curve, pt_corner, pt_tangent };
|
|
||||||
@@ -405,7 +405,7 @@ drawing it. They are cached so they don'
|
|
||||||
There's a different set of lines for every scale (as there is a different amount
|
|
||||||
of visible detail). They get freed and regenerated if the Spline changes.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.Spline
|
|
||||||
|
|
||||||
typedef struct spline1d {
|
|
||||||
@@ -439,7 +439,7 @@ some are used in other places too.
|
|
||||||
The Spline1D structures give the equations for the x and y coordinates
|
|
||||||
respectively (splines[0] is for x, splines[1] is for y).
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.SplinePointList
|
|
||||||
|
|
||||||
typedef struct splinepointlist {
|
|
||||||
@@ -463,7 +463,7 @@ to). A SplinePointList is a connected pa
|
|
||||||
Generally a series of paths will make up a character, and they are linked
|
|
||||||
together on the next field.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.RefChar
|
|
||||||
|
|
||||||
typedef struct refchar {
|
|
||||||
@@ -498,7 +498,7 @@ themselves). The selected field indicate
|
|
||||||
field provides a transformed bounding box. And the sc field points to the
|
|
||||||
SplineChar we are referring to.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.KernPair
|
|
||||||
|
|
||||||
typedef struct kernpair {
|
|
||||||
@@ -514,7 +514,7 @@ offset between them (or rather the diffe
|
|
||||||
and right bearings would lead you to believe it should be). Next points to the
|
|
||||||
next kernpair.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.Hints
|
|
||||||
|
|
||||||
typedef struct hints {
|
|
||||||
@@ -532,7 +532,7 @@ y space) of where the stem starts, and w
|
|
||||||
negative (in which case base is where the stem ends). Next points to the next
|
|
||||||
hint for the character.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.ImageList
|
|
||||||
|
|
||||||
typedef struct imagelist {
|
|
||||||
@@ -551,7 +551,7 @@ not support any other transformations on
|
|
||||||
transformations have been applied. The next field points to the next image, and
|
|
||||||
selected indicates whether this one is selected or not.
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.SplineChar
|
|
||||||
|
|
||||||
typedef struct splinechar {
|
|
||||||
@@ -623,7 +623,7 @@ follow this one. For instance the combin
|
|
||||||
SplineChar representing "V" would have a pointer to a
|
|
||||||
:ref:`KernPair <splinefont.KernPair>` with data on "A".
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: cpp
|
|
||||||
:name: splinefont.SplineFont
|
|
||||||
|
|
||||||
typedef struct splinefont {
|
|
||||||
Index: fontforge-20200314/doc/sphinx/ui/misc/fontforge-themes.rst
|
|
||||||
===================================================================
|
|
||||||
--- fontforge-20200314.orig/doc/sphinx/ui/misc/fontforge-themes.rst
|
|
||||||
+++ fontforge-20200314/doc/sphinx/ui/misc/fontforge-themes.rst
|
|
||||||
@@ -4,7 +4,7 @@ FontForge color schemes
|
|
||||||
The following are some suggestions for color schemes. You simply copy these into
|
|
||||||
your ~/.Xdefaults file and then run
|
|
||||||
|
|
||||||
-.. code-block::
|
|
||||||
+.. code-block:: bash
|
|
||||||
:name: fontforge-themes.shell
|
|
||||||
|
|
||||||
$ xrdb ~/.Xdefaults
|
|
||||||
Index: fontforge-20200314/doc/sphinx/conf.py
|
|
||||||
===================================================================
|
|
||||||
--- fontforge-20200314.orig/doc/sphinx/conf.py
|
|
||||||
+++ fontforge-20200314/doc/sphinx/conf.py
|
|
||||||
@@ -43,6 +43,7 @@ templates_path = ['_templates']
|
|
||||||
# This pattern also affects html_static_path and html_extra_path.
|
|
||||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
||||||
|
|
||||||
+master_doc = 'index'
|
|
||||||
|
|
||||||
# -- Options for HTML output -------------------------------------------------
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 24 14:14:37 UTC 2023 - Marguerite Su <i@marguerite.su>
|
||||||
|
|
||||||
|
- drop fix-sphinx-doc.patch, upstream fixed
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 2 12:20:55 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Thu Mar 2 12:20:55 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -26,7 +26,6 @@ Source0: https://github.com/fontforge/fontforge/archive/%{version}.tar.gz
|
|||||||
# workaround for bug 930076, imho upstream should fix this
|
# workaround for bug 930076, imho upstream should fix this
|
||||||
# https://github.com/fontforge/fontforge/issues/2270
|
# https://github.com/fontforge/fontforge/issues/2270
|
||||||
Patch0: fontforge-version.patch
|
Patch0: fontforge-version.patch
|
||||||
Patch2: fix-sphinx-doc.patch
|
|
||||||
Patch5: add-bitmap-transform-support.patch
|
Patch5: add-bitmap-transform-support.patch
|
||||||
BuildRequires: cairo-devel
|
BuildRequires: cairo-devel
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
@ -94,9 +93,6 @@ to develop applications that use FontForge libraries.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%if %{?suse_version} < 1550
|
|
||||||
%patch2 -p1
|
|
||||||
%endif
|
|
||||||
%patch5 -p1
|
%patch5 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user