Accepting request 755214 from home:alois:branches:multimedia:libs

update to 2.4.0 (2nd attempt)

OBS-URL: https://build.opensuse.org/request/show/755214
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ftgl?expand=0&rev=27
This commit is contained in:
Tomáš Chvátal 2019-12-09 12:30:11 +00:00 committed by Git OBS Bridge
parent 4e97cf0274
commit af79fa0d3f
6 changed files with 71 additions and 42 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:521ff7bd62c459ff5372e269c223e2a6107a6a99a36afdc2ae634a973af70c59
size 707854

BIN
ftgl-2.4.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,21 +0,0 @@
--- Makefile.am
+++ Makefile.am
@@ -26,13 +26,13 @@
# Print out an informative summary.
all-local:
- @$(ECHO) "Done."
- @$(ECHO)
+ @echo "Done."
+ @echo
@if test "x$(MAKECMDGOALS)" = "xall-am" -o "x$(.TARGETS)" = "xall-am" -o "x$(MAKECMDGOALS)" = "x" -o "x$(.TARGETS)" = "x" ; then \
- $(ECHO) "---" ;\
- $(ECHO) "Run 'make install' to begin installation into $(prefix)" ;\
+ echo "---" ;\
+ echo "Run 'make install' to begin installation into $(prefix)" ;\
fi
- @$(ECHO)
+ @echo
# Upload documentation
DOC = docs/html docs/latex/ftgl.pdf

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Sat Oct 26 17:51:03 UTC 2019 - Luigi Baldoni <aloisio@gmx.com>
- Update to version 2.4.0
* New setting LegacyOpenGLState(), see README-LegacyOpenGLState
* Fix/silence compiler warnings
version 2.3.1:
* Updates to debian/ build files
version 2.3.0:
* Fix a memory leak
* FTContour: avoid NaN for angles close to 180 degrees
(see Debian bug #589601, 5.)
* FTBufferGlyph: fix garbage with bitmap fonts
(text is still clipped, that seems to be another problem)
* FTTextureGlyphImpl: fix garbage with bitmap fonts
(see Debian bug #589601, 4.)
* FTPixmapGlyph: fix garbage with bitmap fonts
(see Debian bug #589601, 2.)
* FTOutlineGlyphImpl, FTPolygonGlyphImpl: avoid uninizitalized
vectoriser in case of error (see Debian bug #589601, 1.)
* Various other bugfixes collected through the years
version 2.2.0:
* Stable API. Public headers are now frozen.
* Fixed several memory corruption and crash bugs - Sam Hocevar
* Fixed several memory leaks - Sam Hocevar
* Kerning and glyph performance enhancements - Sean Morrison
* The library now also exports a pure C interface - Éric Beets
* Inset/outset contour support for fonts - Éric Beets
* Fix the FTLayout rendering - Éric Beets
* Added new FTLayout and FTSimpleLayout support for layout
managers - Sam Hocevar
* Fixed the paths in the XCode project - Henry Maddocks
* Changed the behaviour of some objects so that if there is an
error their state isn't changed - Henry Maddocks
* New, fast FTBufferFont texture fonts - Sam Hocevar
* UTF-8 support - Daniel Remenak
- Switch to maintained fork
- Dropped ftgl-autoreconf.patch (merged upstream)
- Refreshed install-FTVectoriser.h.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Mar 8 16:41:52 UTC 2019 - olaf@aepfle.de Fri Mar 8 16:41:52 UTC 2019 - olaf@aepfle.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package ftgl # spec file for package ftgl
# #
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,22 +12,22 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
%define libname libftgl2 %define libname libftgl2
%bcond_without ftgl_html %bcond_without ftgl_html
Name: ftgl Name: ftgl
Version: 2.1.3~rc5 Version: 2.4.0
Release: 0 Release: 0
Summary: Library for Using Arbitrary Fonts in OpenGL Applications Summary: Library for Using Arbitrary Fonts in OpenGL Applications
License: LGPL-2.1-or-later License: LGPL-2.1-or-later
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Url: http://ftgl.wiki.sourceforge.net/ # was http://ftgl.wiki.sourceforge.net
Source0: http://sourceforge.net/projects/ftgl/files/FTGL%%20Source/2.1.3%%7Erc5/%{name}-2.1.3-rc5.tar.bz2 URL: https://github.com/frankheckenbach/ftgl
Source0: https://github.com/frankheckenbach/ftgl/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: baselibs.conf Source1: baselibs.conf
Patch0: %{name}-autoreconf.patch
Patch1: ftgl-pkgconfig.patch Patch1: ftgl-pkgconfig.patch
Patch2: ftgl-fix-no-add-needed.patch Patch2: ftgl-fix-no-add-needed.patch
# PATCH-FIX-OPENSUSE: install FTVectoriser.h, required by tulip-5.0; kkaempf@suse.de # PATCH-FIX-OPENSUSE: install FTVectoriser.h, required by tulip-5.0; kkaempf@suse.de
@ -39,7 +39,11 @@ BuildRequires: texlive-epstopdf
BuildRequires: autoconf BuildRequires: autoconf
BuildRequires: automake BuildRequires: automake
BuildRequires: freeglut-devel BuildRequires: freeglut-devel
%if 0%{?suse_version} >= 1500
BuildRequires: gcc-c++ BuildRequires: gcc-c++
%else
BuildRequires: gcc7-c++
%endif
BuildRequires: ghostscript BuildRequires: ghostscript
BuildRequires: libtool BuildRequires: libtool
BuildRequires: pkgconfig BuildRequires: pkgconfig
@ -90,12 +94,15 @@ This package provides demo application showing usage of the library.
%prep %prep
%setup -q %setup -q
%patch0
%patch1 %patch1
%patch2 %patch2
%patch3 -p1 %patch3 -p1
%build %build
export CC=gcc
export CXX=g++
test -x "$(type -p gcc-7)" && export CC=gcc-7
test -x "$(type -p g++-7)" && export CXX=g++-7
autoreconf -fvi autoreconf -fvi
%configure \ %configure \
--disable-static --disable-static

View File

@ -1,15 +1,15 @@
diff -ruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-ftgl-2.1.3~rc5/src/Makefile.am ./src/Makefile.am Index: ftgl-2.4.0/src/Makefile.am
--- ../orig-ftgl-2.1.3~rc5/src/Makefile.am 2008-05-23 09:13:42.000000000 +0200 ===================================================================
+++ ./src/Makefile.am 2017-06-28 15:13:01.803157035 +0200 --- ftgl-2.4.0.orig/src/Makefile.am
@@ -39,6 +39,11 @@ +++ ftgl-2.4.0/src/Makefile.am
ftgl_HEADERS = $(ftgl_headers) @@ -72,6 +72,10 @@ ftgl_headers = \
FTGL/FTSimpleLayout.h \
ftgl_headers = \ FTGL/FTTriangleExtractorGlyph.h \
FTGL/FTGLTriangleExtractorFont.h \
+ FTVectoriser.h \ + FTVectoriser.h \
+ FTContour.h \ + FTContour.h \
+ FTLibrary.h \
+ FTList.h \ + FTList.h \
+ FTVector.h \ + FTVector.h \
FTGL/ftgl.h \ ${NULL}
FTGL/FTBBox.h \
FTGL/FTBuffer.h \ ftglyph_sources = \