2021-03-17 10:04:22 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%bcond_with liq
|
|
|
|
%bcond_with raqm
|
|
|
|
%bcond_with avif
|
|
|
|
%else
|
2021-03-08 14:21:47 +00:00
|
|
|
# Enabled by default
|
|
|
|
%bcond_without liq
|
|
|
|
%bcond_without avif
|
2021-03-17 10:04:22 +00:00
|
|
|
%endif
|
2021-11-19 08:09:33 +00:00
|
|
|
# disabled as breaks vertical text
|
|
|
|
# See https://bugzilla.redhat.com/2022957
|
|
|
|
%bcond_with raqm
|
2021-03-08 14:21:47 +00:00
|
|
|
# Not available in Fedora, only in rpmfusion
|
|
|
|
# Also see https://github.com/libgd/libgd/issues/678 segfault
|
|
|
|
%bcond_with heif
|
2017-08-30 14:31:08 +00:00
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2005-11-02 16:05:56 +00:00
|
|
|
Summary: A graphics library for quick creation of PNG or JPEG images
|
|
|
|
Name: gd
|
2021-09-13 13:21:00 +00:00
|
|
|
Version: 2.3.3
|
2023-03-04 05:22:26 +00:00
|
|
|
Release: 11%{?prever}%{?short}%{?dist}
|
2008-07-21 15:25:47 +00:00
|
|
|
License: MIT
|
2016-05-27 12:12:47 +00:00
|
|
|
URL: http://libgd.github.io/
|
2013-06-11 06:04:20 +00:00
|
|
|
%if 0%{?commit:1}
|
2016-05-27 12:12:47 +00:00
|
|
|
# git clone https://github.com/libgd/libgd.git; cd gd-libgd
|
|
|
|
# git archive --format=tgz --output=libgd-%{version}-%{commit}.tgz --prefix=libgd-%{version}/ master
|
2013-06-11 06:04:20 +00:00
|
|
|
Source0: libgd-%{version}-%{commit}.tgz
|
|
|
|
%else
|
2016-05-28 05:48:18 +00:00
|
|
|
Source0: https://github.com/libgd/libgd/releases/download/gd-%{version}/libgd-%{version}.tar.xz
|
2013-06-11 06:04:20 +00:00
|
|
|
%endif
|
2015-03-23 17:30:43 +00:00
|
|
|
|
2021-09-13 13:21:00 +00:00
|
|
|
# Needed by PHP see https://github.com/libgd/libgd/pull/766
|
|
|
|
Patch0: libgd-flip.patch
|
|
|
|
# Missing header see https://github.com/libgd/libgd/pull/766
|
|
|
|
Patch1: libgd-iostream.patch
|
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
BuildRequires: freetype-devel
|
|
|
|
BuildRequires: fontconfig-devel
|
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: libjpeg-devel
|
|
|
|
BuildRequires: libpng-devel
|
|
|
|
BuildRequires: libtiff-devel
|
2016-05-27 12:12:47 +00:00
|
|
|
BuildRequires: libwebp-devel
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with liq}
|
2017-08-30 14:31:08 +00:00
|
|
|
BuildRequires: libimagequant-devel
|
|
|
|
%endif
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with raqm}
|
2020-03-24 09:04:07 +00:00
|
|
|
BuildRequires: libraqm-devel
|
|
|
|
%endif
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with avif}
|
|
|
|
BuildRequires: libavif-devel
|
|
|
|
%endif
|
|
|
|
%if %{with heif}
|
|
|
|
BuildRequires: libheif-devel
|
|
|
|
%endif
|
2013-06-11 06:04:20 +00:00
|
|
|
BuildRequires: libX11-devel
|
|
|
|
BuildRequires: libXpm-devel
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: libtool
|
2017-07-12 12:59:01 +00:00
|
|
|
BuildRequires: perl-interpreter
|
2016-06-24 08:16:02 +00:00
|
|
|
BuildRequires: perl-generators
|
2020-03-24 09:15:12 +00:00
|
|
|
BuildRequires: perl(FindBin)
|
2017-01-19 08:38:12 +00:00
|
|
|
# for fontconfig/basic test
|
|
|
|
BuildRequires: liberation-sans-fonts
|
2020-12-18 23:09:31 +00:00
|
|
|
BuildRequires: make
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%description
|
2004-09-09 05:01:23 +00:00
|
|
|
The gd graphics library allows your code to quickly draw images
|
|
|
|
complete with lines, arcs, text, multiple colors, cut and paste from
|
|
|
|
other images, and flood fills, and to write out the result as a PNG or
|
|
|
|
JPEG file. This is particularly useful in Web applications, where PNG
|
|
|
|
and JPEG are two of the formats accepted for inline images by most
|
|
|
|
browsers. Note that gd is not a paint program.
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2005-03-22 17:58:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%package progs
|
2013-06-11 06:04:20 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2005-03-22 17:58:20 +00:00
|
|
|
Summary: Utility programs that use libgd
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%description progs
|
2004-09-09 05:01:23 +00:00
|
|
|
The gd-progs package includes utility programs supplied with gd, a
|
2015-03-23 17:30:43 +00:00
|
|
|
graphics library for creating PNG and JPEG images.
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2005-03-22 17:58:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%package devel
|
2005-11-02 16:05:56 +00:00
|
|
|
Summary: The development libraries and header files for gd
|
2013-06-11 06:04:20 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: freetype-devel%{?_isa}
|
|
|
|
Requires: fontconfig-devel%{?_isa}
|
|
|
|
Requires: libjpeg-devel%{?_isa}
|
|
|
|
Requires: libpng-devel%{?_isa}
|
|
|
|
Requires: libtiff-devel%{?_isa}
|
2016-05-27 12:12:47 +00:00
|
|
|
Requires: libwebp-devel%{?_isa}
|
2013-06-11 06:04:20 +00:00
|
|
|
Requires: libX11-devel%{?_isa}
|
|
|
|
Requires: libXpm-devel%{?_isa}
|
|
|
|
Requires: zlib-devel%{?_isa}
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with liq}
|
2018-09-07 10:50:21 +00:00
|
|
|
Requires: libimagequant-devel%{?_isa}
|
2020-03-24 09:04:07 +00:00
|
|
|
%endif
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with raqm}
|
2020-03-24 09:04:07 +00:00
|
|
|
Requires: libraqm-devel
|
|
|
|
%endif
|
2021-03-08 14:21:47 +00:00
|
|
|
%if %{with avif}
|
|
|
|
Requires: libavif-devel
|
|
|
|
%endif
|
|
|
|
%if %{with heif}
|
|
|
|
Requires: libheif-devel
|
|
|
|
%endif
|
2020-03-24 09:04:07 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%description devel
|
2004-09-09 05:01:23 +00:00
|
|
|
The gd-devel package contains the development libraries and header
|
|
|
|
files for gd, a graphics library for creating PNG and JPEG graphics.
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%prep
|
2013-06-11 06:04:20 +00:00
|
|
|
%setup -q -n libgd-%{version}%{?prever:-%{prever}}
|
2021-09-13 13:21:00 +00:00
|
|
|
%patch0 -p1
|
|
|
|
%patch1 -p1
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2015-03-23 17:30:43 +00:00
|
|
|
: $(perl config/getver.pl)
|
2013-06-26 14:20:16 +00:00
|
|
|
|
|
|
|
: regenerate autotool stuff
|
2013-06-11 06:04:20 +00:00
|
|
|
if [ -f configure ]; then
|
2013-12-24 00:25:32 +00:00
|
|
|
libtoolize --copy --force
|
|
|
|
autoreconf -vif
|
2013-06-11 06:04:20 +00:00
|
|
|
else
|
|
|
|
./bootstrap.sh
|
|
|
|
fi
|
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%build
|
2013-04-23 05:57:39 +00:00
|
|
|
# Provide a correct default font search path
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS -DDEFAULT_FONTPATH='\"\
|
|
|
|
/usr/share/fonts/bitstream-vera:\
|
|
|
|
/usr/share/fonts/dejavu:\
|
|
|
|
/usr/share/fonts/default/Type1:\
|
|
|
|
/usr/share/X11/fonts/Type1:\
|
|
|
|
/usr/share/fonts/liberation\"'"
|
|
|
|
|
2016-07-22 05:56:12 +00:00
|
|
|
%ifarch %{ix86}
|
|
|
|
# see https://github.com/libgd/libgd/issues/242
|
|
|
|
CFLAGS="$CFLAGS -msse -mfpmath=sse"
|
|
|
|
%endif
|
|
|
|
|
2016-07-26 08:25:44 +00:00
|
|
|
%ifarch aarch64 ppc64 ppc64le s390 s390x
|
|
|
|
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1359680
|
|
|
|
export CFLAGS="$CFLAGS -ffp-contract=off"
|
|
|
|
%endif
|
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
%configure \
|
2021-09-20 13:29:33 +00:00
|
|
|
--enable-gd-formats \
|
2013-06-11 06:04:20 +00:00
|
|
|
--with-tiff=%{_prefix} \
|
|
|
|
--disable-rpath
|
2005-03-22 17:58:20 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%install
|
2015-03-23 17:30:43 +00:00
|
|
|
make install INSTALL='install -p' DESTDIR=$RPM_BUILD_ROOT
|
2010-01-06 12:48:58 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/libgd.la
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/libgd.a
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2012-08-29 10:40:53 +00:00
|
|
|
|
2012-08-28 09:28:05 +00:00
|
|
|
%check
|
2021-09-13 13:28:11 +00:00
|
|
|
# Workaround to https://github.com/libgd/libgd/issues/763
|
|
|
|
export TMPDIR=/tmp
|
|
|
|
|
2015-03-23 17:30:43 +00:00
|
|
|
: Upstream test suite
|
2013-06-11 06:04:20 +00:00
|
|
|
make check
|
|
|
|
|
2015-03-23 17:30:43 +00:00
|
|
|
: Check content of pkgconfig
|
|
|
|
grep %{version} $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gdlib.pc
|
|
|
|
|
2012-08-28 09:28:05 +00:00
|
|
|
|
2019-01-22 17:39:01 +00:00
|
|
|
%ldconfig_scriptlets
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%files
|
2015-03-23 17:30:43 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING
|
2004-09-09 05:01:23 +00:00
|
|
|
%{_libdir}/*.so.*
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%files progs
|
2005-03-22 17:58:20 +00:00
|
|
|
%{_bindir}/*
|
2004-09-09 05:00:40 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
2006-05-25 08:24:50 +00:00
|
|
|
%{_libdir}/pkgconfig/gdlib.pc
|
2004-09-09 05:00:40 +00:00
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
%changelog
|
2023-03-04 05:22:26 +00:00
|
|
|
* Sat Mar 04 2023 Sandro Mani <manisandro@gmail.com> - 2.3.3-11
|
|
|
|
- Rebuild (libimagequant)
|
|
|
|
|
2023-01-19 04:28:55 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-12-01 17:07:01 +00:00
|
|
|
* Thu Dec 01 2022 Kalev Lember <klember@redhat.com> - 2.3.3-9
|
|
|
|
- Rebuild for new libavif
|
|
|
|
|
2022-10-23 19:21:59 +00:00
|
|
|
* Sun Oct 23 2022 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.3-8
|
|
|
|
- Rebuild for new libavif
|
|
|
|
|
2022-10-23 17:59:25 +00:00
|
|
|
* Sun Oct 23 2022 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.3-7
|
|
|
|
- Rebuild for new libavif
|
|
|
|
|
2022-07-21 04:14:05 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 04:01:44 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-29 16:54:31 +00:00
|
|
|
* Mon Nov 29 2021 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.3-4
|
|
|
|
- Rebuild for libavif soname bump
|
|
|
|
|
2021-11-19 08:10:47 +00:00
|
|
|
* Fri Nov 19 2021 Remi Collet <remi@remirepo.net> - 2.3.3-3
|
2021-11-19 08:09:33 +00:00
|
|
|
- disable libraqm usage, see #2022957
|
|
|
|
|
2021-09-20 13:29:33 +00:00
|
|
|
* Mon Sep 20 2021 Paul Howarth <paul@city-fan.org> - 2.3.3-2
|
|
|
|
- Explicitly enable gd/gd2 formats, wanted by perl bindings (#2005916)
|
|
|
|
|
2021-09-13 13:21:00 +00:00
|
|
|
* Mon Sep 13 2021 Remi Collet <remi@remirepo.net> - 2.3.3-1
|
|
|
|
- update to 2.3.3
|
|
|
|
- open https://github.com/libgd/libgd/pull/766 missing macros
|
|
|
|
- open https://github.com/libgd/libgd/pull/767 missing headers
|
|
|
|
|
2021-07-27 17:14:28 +00:00
|
|
|
* Tue Jul 27 2021 Florian Weimer <fweimer@redhat.com> - 2.3.2-9
|
|
|
|
- Rebuild again for libavif soname bump
|
|
|
|
|
2021-07-22 06:53:28 +00:00
|
|
|
* Thu Jul 22 2021 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.2-8
|
|
|
|
- Rebuild for libavif soname bump
|
|
|
|
|
2021-07-21 23:53:31 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.2-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-19 20:39:29 +00:00
|
|
|
* Mon Jul 19 2021 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.2-6
|
|
|
|
- Rebuild for libavif soname bump
|
|
|
|
|
2021-05-23 18:40:52 +00:00
|
|
|
* Sun May 23 2021 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.2-5
|
|
|
|
- Rebuild for libavif soname bump
|
|
|
|
|
2021-03-29 21:25:31 +00:00
|
|
|
* Mon Mar 29 2021 Robert-André Mauchin <zebob.m@gmail.com> - 2.3.2-4
|
|
|
|
- Rebuild for libavif soname bump
|
|
|
|
|
2021-03-17 10:04:22 +00:00
|
|
|
* Wed Mar 17 2021 Filip Januš <fjanus@redhat.com> - 2.3.2-3
|
|
|
|
- Add condition if fedora for packages not available in RHEL
|
|
|
|
|
2021-03-08 14:21:47 +00:00
|
|
|
* Mon Mar 8 2021 Remi Collet <remi@remirepo.net> - 2.3.2-2
|
|
|
|
- enable avif support
|
|
|
|
- use bcond
|
|
|
|
|
2021-03-08 07:46:53 +00:00
|
|
|
* Mon Mar 08 2021 Ondrej Dubaj <odubaj@redhat.com> - 2.3.2-1
|
|
|
|
- rebase to version 2.3.2
|
|
|
|
|
2021-02-04 08:22:55 +00:00
|
|
|
* Wed Feb 3 2021 Filip Januš <fjanus@redhat.com> - 2.3.1-1
|
|
|
|
- Upstream released new version 2.3.1
|
|
|
|
- patch bug615 is no more needed - fixed by upstream in release
|
|
|
|
- gdimagestring16/gdimagestring16 gdimagestringup16/gdimagestringup16 passed on
|
|
|
|
x390s - XFAIL_TEST definition for x390s is no more necessary
|
|
|
|
|
2021-01-26 06:27:05 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-27 18:21:49 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-15 08:10:25 +00:00
|
|
|
* Wed Jul 15 2020 Remi Collet <remi@remirepo.net> - 2.3.0-2
|
|
|
|
- fix gdImageStringFT() fails for empty strings
|
|
|
|
https://github.com/libgd/libgd/issues/615
|
|
|
|
|
2020-03-24 09:04:07 +00:00
|
|
|
* Tue Mar 24 2020 Remi Collet <remi@remirepo.net> - 2.3.0-1
|
|
|
|
- update to 2.3.0
|
|
|
|
- add dependency on libraqm
|
|
|
|
- remove gdlib-config
|
|
|
|
|
2020-01-31 08:31:42 +00:00
|
|
|
* Fri Jan 31 2020 Filip Januš <fjanus@redhat.com> - 2.2.5-12
|
|
|
|
- Add patch(gd-2.2.5-null-pointer.patch) - fix Null pointer reference in gdImageClone (gdImagePtr src)
|
|
|
|
- Resolves: #1599032
|
|
|
|
|
2020-01-28 19:41:50 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-06-04 09:04:25 +00:00
|
|
|
* Fri Nov 01 2019 odubaj@redhat.com - 2.2.5-10
|
|
|
|
- Fixed heap based buffer overflow in gd_color_match.c:gdImageColorMatch() in libgd as used in imagecolormatch()
|
|
|
|
- Resolves: RHBZ#1678104 (CVE-2019-6977)
|
2019-06-04 11:44:57 +00:00
|
|
|
- Fixed potential double-free in gdImage*Ptr()
|
|
|
|
- Resolves: RHBZ#1671391 (CVE-2019-6978)
|
2019-06-04 09:04:25 +00:00
|
|
|
|
2019-07-25 01:36:12 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-01-31 20:41:00 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-09-07 10:50:21 +00:00
|
|
|
* Fri Sep 07 2018 mskalick@redhat.com - 2.2.5-7
|
|
|
|
- Add missing requires to libimagequent-devel
|
|
|
|
|
2018-08-30 11:41:17 +00:00
|
|
|
* Thu Aug 30 2018 mskalick@redhat.com - 2.2.5-6
|
|
|
|
- Use libimagequant library (RHBZ#1468338)
|
|
|
|
|
2018-08-30 09:03:19 +00:00
|
|
|
* Thu Aug 30 2018 mskalick@redhat.com - 2.2.5-5
|
|
|
|
- Check return value in gdImageBmpPtr to avoid double free (CVE-2018-1000222)
|
|
|
|
- Don't mark gdimagegrayscale/basic test as failing
|
|
|
|
|
2018-07-13 01:12:18 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-03-26 10:49:23 +00:00
|
|
|
* Mon Mar 26 2018 Marek Skalický <mskalick@redhat.com> - 2.2.5-3
|
|
|
|
- Fix CVE-2018-5711 - Potential infinite loop in gdImageCreateFromGifCtx
|
|
|
|
|
2018-02-07 10:43:06 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-30 14:13:52 +00:00
|
|
|
* Wed Aug 30 2017 Remi Collet <remi@fedoraproject.org> - 2.2.5-1
|
|
|
|
- Update to 2.2.5
|
|
|
|
- fix double-free in gdImagePngPtr(). CVE-2017-6362
|
|
|
|
- fix buffer over-read into uninitialized memory. CVE-2017-7890
|
|
|
|
|
2017-08-02 20:59:55 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 09:10:24 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 10:17:04 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-01 18:21:35 +00:00
|
|
|
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 2.2.4-2
|
|
|
|
- Rebuild (libwebp)
|
|
|
|
|
2017-01-19 08:38:12 +00:00
|
|
|
* Wed Jan 18 2017 Remi Collet <remi@fedoraproject.org> - 2.2.4-1
|
|
|
|
- Update to 2.2.4
|
|
|
|
|
2016-12-06 09:41:37 +00:00
|
|
|
* Tue Dec 06 2016 Marek Skalický <mskalick@redhat.com> - 2.2.3-5
|
|
|
|
- Fix invalid read in gdImageCreateFromTiffPtr() ( CVE-2016-6911)
|
|
|
|
- Disable tests using freetype in Fedora 26 (freetype > 2.6)
|
|
|
|
|
2016-12-05 09:56:26 +00:00
|
|
|
* Mon Dec 05 2016 Marek Skalický <mskalick@redhat.com> - 2.2.3-4
|
|
|
|
- Fix stack based buffer overflow when passing negative `rlen` as size to
|
|
|
|
memcpy() (CVE-2016-8670)
|
|
|
|
|
2016-12-05 09:10:05 +00:00
|
|
|
* Mon Dec 05 2016 Marek Skalický <mskalick@redhat.com> - 2.2.3-3
|
|
|
|
- Fix possible overflow in gdImageWebpCtx (CVE-2016-7568)
|
|
|
|
|
2016-07-26 08:25:44 +00:00
|
|
|
* Tue Jul 26 2016 Dan Horák <dan[at]danny.cz> - 2.2.3-2
|
|
|
|
- apply workaround for rhbz#1359680
|
|
|
|
|
2016-07-22 05:56:12 +00:00
|
|
|
* Fri Jul 22 2016 Remi Collet <remi@fedoraproject.org> - 2.2.3-1
|
|
|
|
- Update to 2.2.3
|
|
|
|
- use -msse -mfpmath=sse build options (x86-32)
|
|
|
|
|
2016-06-24 10:45:53 +00:00
|
|
|
* Fri Jun 24 2016 Remi Collet <remi@fedoraproject.org> - 2.2.2-1
|
|
|
|
- Update to 2.2.2
|
|
|
|
|
2016-05-28 05:48:18 +00:00
|
|
|
* Sat May 28 2016 Remi Collet <remi@fedoraproject.org> - 2.2.1-2
|
|
|
|
- remove unneeded sources
|
|
|
|
|
2016-05-27 12:12:47 +00:00
|
|
|
* Fri May 27 2016 Marek Skalicky <mskalick@redhat.com> - 2.2.1-1
|
|
|
|
- Upgrade to 2.2.1 release
|
|
|
|
- Upstream moved to github.com
|
|
|
|
|
2016-04-28 10:46:48 +00:00
|
|
|
* Thu Apr 28 2016 Marek Skalicky <mskalick@redhat.com> - 2.1.1-7
|
|
|
|
- Fixed heap overflow (CVE-2016-3074)
|
|
|
|
|
2016-02-03 21:05:37 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-01 21:19:08 +00:00
|
|
|
* Tue Dec 1 2015 Tom Callaway <spot@fedoraproject.org> - 2.1.1-5
|
|
|
|
- rebuild for libvpx 1.5.0
|
|
|
|
|
2015-06-17 07:05:35 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-06 19:58:26 +00:00
|
|
|
* Mon Apr 6 2015 Tom Callaway <spot@fedoraproject.org> - 2.1.1-3
|
|
|
|
- rebuild for libvpx 1.4.0
|
|
|
|
|
2015-03-23 17:30:43 +00:00
|
|
|
* Mon Mar 23 2015 Remi Collet <remi@fedoraproject.org> - 2.1.1-2
|
|
|
|
- fix version in gdlib.pc
|
|
|
|
- fix license handling
|
|
|
|
|
2015-01-14 12:52:36 +00:00
|
|
|
* Wed Jan 14 2015 Jozef Mlich <jmlich@redhat.com> - 2.1.1-1
|
|
|
|
- Update to 2.1.1 final
|
|
|
|
Resolves: #1181972
|
|
|
|
|
|
|
|
* Thu Jan 08 2015 Jozef Mlich <jmlich@redhat.com> - 2.1.0-8
|
2015-01-08 12:49:40 +00:00
|
|
|
- Resolves: #1076676 CVE-2014-2497
|
|
|
|
Previous patch indroduced memory leak. Using upstream version.
|
|
|
|
https://bitbucket.org/libgd/gd-libgd/commits/463c3bd09bfe8e924e19acad7a2a6af16953a704
|
|
|
|
|
2014-08-16 13:53:36 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-16 16:08:46 +00:00
|
|
|
* Wed Jul 16 2014 Jozef Mlich <jmlich@redhat.com> - 2.1.0-6
|
|
|
|
- Resolves: #1076676 CVE-2014-2497
|
|
|
|
NULL pointer dereference in gdImageCreateFromXpm()
|
|
|
|
|
2014-06-07 13:33:15 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-12-24 00:25:32 +00:00
|
|
|
* Mon Dec 23 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.1.0-4
|
|
|
|
- Fix FTBFS
|
|
|
|
|
2013-08-03 12:36:38 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-17 09:10:13 +00:00
|
|
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.1.0-2
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-06-26 14:20:16 +00:00
|
|
|
* Tue Jun 25 2013 Remi Collet <remi@fedoraproject.org> - 2.1.0-1
|
|
|
|
- update to 2.1.0 final
|
|
|
|
|
2013-06-25 08:39:29 +00:00
|
|
|
* Tue Jun 25 2013 Remi Collet <rcollet@redhat.com> - 2.1.0-0.2.725ba9d
|
|
|
|
- rebuild for linpng 1.6
|
|
|
|
|
2013-06-11 06:04:20 +00:00
|
|
|
* Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 2.1.0-0.1.725ba9d
|
|
|
|
- update to 2.1.0 (post RC2 git snapshot)
|
|
|
|
|
2013-04-23 05:57:39 +00:00
|
|
|
* Tue Apr 23 2013 Remi Collet <rcollet@redhat.com> - 2.0.35-25
|
|
|
|
- drop uneeded patch
|
|
|
|
- really set default font search path
|
|
|
|
|
2013-03-25 15:26:20 +00:00
|
|
|
* Mon Mar 25 2013 Honza Horak <hhorak@redhat.com> - 2.0.35-24
|
|
|
|
- Fix build on aarch64
|
|
|
|
|
2013-03-25 14:53:17 +00:00
|
|
|
* Mon Mar 25 2013 Honza Horak <hhorak@redhat.com> - 2.0.35-23
|
2013-03-25 14:52:25 +00:00
|
|
|
- Fix issues found by Coverity
|
|
|
|
|
2013-02-13 22:24:34 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-22
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-18 16:33:53 +00:00
|
|
|
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 2.0.35-21
|
|
|
|
- rebuild due to "jpeg8-ABI" feature drop
|
|
|
|
|
2012-12-21 14:41:00 +00:00
|
|
|
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 2.0.35-20
|
|
|
|
- rebuild against new libjpeg
|
|
|
|
|
2012-08-28 09:06:29 +00:00
|
|
|
* Tue Aug 28 2012 Honza Horak <hhorak@redhat.com> - 2.0.35-19
|
|
|
|
- Spec file cleanup
|
2012-08-28 09:28:05 +00:00
|
|
|
- Compile and run test suite during build
|
2012-08-29 10:40:53 +00:00
|
|
|
- Using chrpath to get rid of --rpath in gd-progs
|
2012-08-28 09:06:29 +00:00
|
|
|
|
2012-07-27 05:07:16 +00:00
|
|
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-11 13:56:49 +00:00
|
|
|
* Mon Jun 11 2012 Honza Horak <hhorak@redhat.com> - 2.0.35-17
|
|
|
|
- fixed CVE-2009-3546 gd: insufficient input validation in _gdGetColors()
|
|
|
|
Resolves: #830745
|
|
|
|
|
2012-02-28 13:10:16 +00:00
|
|
|
* Tue Feb 28 2012 Honza Horak <hhorak@redhat.com> - 2.0.35-16
|
2012-02-28 12:55:57 +00:00
|
|
|
- Fixed AALineThick.patch to display vertical lines correctly
|
|
|
|
Resolves: #798255
|
|
|
|
|
2012-01-13 03:02:16 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-09 00:48:49 +00:00
|
|
|
* Tue Nov 08 2011 Adam Jackson <ajax@redhat.com> 2.0.35-14
|
|
|
|
- Rebuild for libpng 1.5
|
|
|
|
|
2011-10-27 01:00:46 +00:00
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-13
|
|
|
|
- Rebuilt for glibc bug#747377
|
|
|
|
|
2011-02-08 23:23:21 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-01-06 14:30:52 +00:00
|
|
|
* Wed Jan 6 2010 Jiri Moskovcak <jmoskovc@redhat.com> - 2.0.35-11
|
|
|
|
- more spec file fixes
|
|
|
|
|
2010-01-06 12:48:58 +00:00
|
|
|
* Wed Jan 6 2010 Jiri Moskovcak <jmoskovc@redhat.com> - 2.0.35-10
|
|
|
|
- spec file fixes based on merge review
|
|
|
|
|
2009-07-24 23:38:53 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-24 19:57:01 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.35-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-06 14:19:34 +00:00
|
|
|
* Tue Jan 6 2009 Ivana Varekova <varekova@redhat.com> - 2.0.35-7
|
|
|
|
- do minor spec file cleanup
|
|
|
|
|
2008-07-21 15:25:47 +00:00
|
|
|
* Mon Jul 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.35-6
|
|
|
|
- fix license tag (nothing in this is GPL)
|
|
|
|
|
2008-02-19 06:29:57 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.35-5
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-11-20 09:35:25 +00:00
|
|
|
* Tue Nov 20 2007 Ivana Varekova <varekova@redhat.com> 2.0.35-4
|
|
|
|
- remove static library
|
|
|
|
|
2007-11-19 15:23:23 +00:00
|
|
|
* Mon Nov 19 2007 Ivana Varekova <varekova@redhat.com> 2.0.35-3
|
|
|
|
- spec file cleanup
|
|
|
|
|
2007-11-19 13:14:43 +00:00
|
|
|
* Mon Nov 19 2007 Ivana Varekova <varekova@redhat.com> 2.0.35-2
|
|
|
|
- fix gdlib.pc file
|
|
|
|
|
2007-09-18 08:07:15 +00:00
|
|
|
* Tue Sep 18 2007 Ivana Varekova <varekova@redhat.com> 2.0.35-1
|
|
|
|
- update to 2.0.35
|
|
|
|
|
2007-09-04 14:08:31 +00:00
|
|
|
* Tue Sep 4 2007 Ivana Varekova <varekova@redhat.com> 2.0.34-3
|
|
|
|
- fix font paths (#225786#5)
|
|
|
|
- fix pkgconfig Libs flag (#225786#4)
|
|
|
|
|
2007-02-22 12:44:56 +00:00
|
|
|
* Thu Feb 22 2007 Ivana Varekova <varekova@redhat.com> 2.0.34-2
|
|
|
|
- incorporate package review feedback
|
|
|
|
|
2007-02-08 13:09:04 +00:00
|
|
|
* Thu Feb 8 2007 Ivana Varekova <varekova@redhat.com> 2.0.34-1
|
|
|
|
- update to 2.0.34
|
|
|
|
|
2007-01-29 08:55:33 +00:00
|
|
|
* Mon Jan 29 2007 Ivana Varekova <varekova@redhat.com> 2.0.33-12
|
|
|
|
- Resolves: #224610
|
|
|
|
CVE-2007-0455 gd buffer overrun
|
|
|
|
|
2006-11-21 09:03:03 +00:00
|
|
|
* Tue Nov 21 2006 Ivana Varekova <varekova@redhat.com> 2.0.33-11
|
|
|
|
- Fix problem with to large box boundaries
|
|
|
|
Resolves: #197747
|
|
|
|
|
2006-11-16 13:46:53 +00:00
|
|
|
* Thu Nov 16 2006 Ivana Varekova <varekova@redhat.com> 2.0.33-10
|
|
|
|
- added 'thick' - variable support for AA line (#198042)
|
|
|
|
|
2006-10-31 13:59:23 +00:00
|
|
|
* Tue Oct 31 2006 Adam Tkac <atkac@redhat.com> 2.0.33-9.4
|
|
|
|
- patched some additionals overflows in gd (#175414)
|
|
|
|
|
2006-09-13 08:41:12 +00:00
|
|
|
* Wed Sep 13 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 2.0.33 - 9.3
|
|
|
|
- gd-devel now requires fontconfig-devel (#205834)
|
|
|
|
|
2006-07-19 07:58:46 +00:00
|
|
|
* Wed Jul 19 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 2.0.33 - 9.2
|
|
|
|
- use CFLAGS on sparc64 (#199363)
|
|
|
|
|
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.0.33 - 9.1
|
2006-07-12 05:53:43 +00:00
|
|
|
- rebuild
|
|
|
|
|
2006-07-10 13:18:54 +00:00
|
|
|
* Mon Jul 10 2006 Jitka Kudrnacova <jkudrnac@redhat.com> 2.0.33-9
|
|
|
|
- prevent from an infinite loop when decoding bad GIF images (#194520)
|
|
|
|
|
2006-05-25 08:24:50 +00:00
|
|
|
* Thu May 25 2006 Ivana Varekova <varekova@redhat.com> - 2.0.33-7
|
|
|
|
- fix multilib problem (add pkgconfig)
|
|
|
|
|
2006-02-11 02:49:11 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.0.33-6.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:44:18 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.0.33-6.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-20 12:44:28 +00:00
|
|
|
* Fri Jan 20 2006 Phil Knirsch <pknirsch@redhat.com> 2.0.33-6
|
2006-01-20 12:48:01 +00:00
|
|
|
- Included a few more overflow checks (#177907)
|
2006-01-20 12:44:28 +00:00
|
|
|
|
2005-12-09 22:40:31 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-02 16:05:56 +00:00
|
|
|
* Wed Nov 02 2005 Phil Knirsch <pknirsch@redhat.com> 2.0.33-5
|
|
|
|
- Switched BuildPreReqs and Requires to modular xorg-x11 style
|
|
|
|
|
2005-10-10 13:52:17 +00:00
|
|
|
* Mon Oct 10 2005 Phil Knirsch <pknirsch@redhat.com> 2.0.33-4
|
|
|
|
- Fixed possible gd crash when drawing AA line near image borders (#167843)
|
|
|
|
|
2005-09-07 15:21:28 +00:00
|
|
|
* Wed Sep 07 2005 Phil Knirsch <pknirsch@redhat.com> 2.0.33-3
|
|
|
|
- Fixed broken freetype-config --libs flags in configure (#165875)
|
|
|
|
|
2005-04-17 22:21:54 +00:00
|
|
|
* Sun Apr 17 2005 Warren Togami <wtogami@redhat.com> 2.0.33-2
|
|
|
|
- devel reqs (#155183 thias)
|
|
|
|
|
2005-03-22 17:58:20 +00:00
|
|
|
* Tue Mar 22 2005 Than Ngo <than@redhat.com> 2.0.33-1
|
|
|
|
- 2.0.33 #150717
|
|
|
|
- apply the patch from Jose Pedro Oliveira
|
|
|
|
- Added the release macro to the subpackages requirements versioning
|
|
|
|
- Handled the gdlib-config movement to gd-devel in a differment manner
|
|
|
|
- Added fontconfig-devel to the build requirements
|
|
|
|
- Added xorg-x11-devel to the build requirements (Xpm)
|
|
|
|
- Removed explicit /sbin/ldconfig requirement (gd rpm)
|
|
|
|
- Removed explicit perl requirement (gd-progs rpm)
|
|
|
|
- Added several missing documentation files (including the license file)
|
|
|
|
- Replaced %%makeinstall by make install DESTDIR=...
|
|
|
|
|
2005-03-10 22:37:26 +00:00
|
|
|
* Thu Mar 10 2005 Than Ngo <than@redhat.com> 2.0.32-3
|
|
|
|
- move gdlib-config in devel
|
|
|
|
|
2005-03-02 14:09:16 +00:00
|
|
|
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 2.0.32-2
|
|
|
|
- bump release and rebuild with gcc 4
|
|
|
|
|
2004-11-03 13:57:18 +00:00
|
|
|
* Wed Nov 03 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.32-1
|
|
|
|
- Update to 2.0.32 which includes all the security fixes
|
|
|
|
|
2004-10-27 16:30:45 +00:00
|
|
|
* Wed Oct 27 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.28-2
|
|
|
|
- Fixed several buffer overflows for gdMalloc() calls
|
|
|
|
|
2004-09-09 05:03:21 +00:00
|
|
|
* Tue Jul 27 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.28-1
|
|
|
|
- Update to 2.0.28
|
|
|
|
|
2004-09-09 05:03:18 +00:00
|
|
|
* Fri Jul 02 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.27-1
|
|
|
|
- Updated to 2.0.27 due to:
|
|
|
|
o Potential memory overruns in gdImageFilledPolygon. Thanks to John Ellson.
|
2005-03-22 17:58:20 +00:00
|
|
|
o The sign of Y-axis values returned in the bounding box by gdImageStringFT
|
|
|
|
was incorrect. Thanks to John Ellson and Riccardo Cohen.
|
2004-09-09 05:03:18 +00:00
|
|
|
|
2004-09-09 05:03:13 +00:00
|
|
|
* Wed Jun 30 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.26-1
|
|
|
|
- Update to 2.0.26
|
|
|
|
|
2004-09-09 05:03:09 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 05:03:06 +00:00
|
|
|
* Wed Apr 21 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.21-3
|
|
|
|
- Disable rpath usage.
|
|
|
|
|
2004-09-09 05:02:56 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Feb 02 2004 Phil Knirsch <pknirsch@redhat.com> 2.0.21-1
|
|
|
|
- Updated to 2.0.21
|
|
|
|
|
2004-09-09 05:02:12 +00:00
|
|
|
* Tue Aug 12 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 2.0.15
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue May 06 2003 Phil Knirsch <pknirsch@redhat.com> 2.0.12-1
|
|
|
|
- Update to 2.0.12
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.8.4-11
|
2004-09-09 05:01:49 +00:00
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Dec 11 2002 Tim Powers <timp@redhat.com> 1.8.4-10
|
|
|
|
- rebuild on all arches
|
|
|
|
|
2004-09-09 05:01:46 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 05:01:43 +00:00
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Thu Jan 24 2002 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Specfile update to add URL for homepage (#54608)
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Wed Oct 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.8.4-5
|
|
|
|
- Rebuild with current libpng
|
|
|
|
|
2004-09-09 05:01:23 +00:00
|
|
|
* Mon Aug 13 2001 Philipp Knirsch <pknirsch@redhat.de> 1.8.4-4
|
|
|
|
- Fixed a wrong double ownership of libgd.so (#51599).
|
|
|
|
|
2004-09-09 05:01:19 +00:00
|
|
|
* Fri Jul 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.8.4-3
|
|
|
|
- There's really no reason to link against both freetype 1.x and 2.x,
|
|
|
|
especially when gd is configured to use just freetype 2.x. ;)
|
|
|
|
|
2004-09-09 05:00:52 +00:00
|
|
|
* Mon Jun 25 2001 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Forgot to include the freetype library in the shared library linking. Fixed.
|
|
|
|
|
|
|
|
* Thu Jun 21 2001 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Update to 1.8.4
|
|
|
|
|
2004-09-09 05:00:46 +00:00
|
|
|
* Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Updates the descriptions to get rid of al references to gif
|
|
|
|
|
|
|
|
* Tue Dec 12 2000 Philipp Knirsch <Philipp.Knirsch@redhat.de>
|
|
|
|
- Fixed bug #22001 where during installation the .so.1 and the so.1.8 links
|
|
|
|
didn't get installed and therefore updates had problems.
|
|
|
|
|
|
|
|
* Wed Oct 4 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- define HAVE_LIBTTF to actually enable ttf support (oops, #18299)
|
|
|
|
- remove explicit dependencies on libpng, libjpeg, et. al.
|
|
|
|
- add BuildPrereq: freetype-devel
|
|
|
|
|
2004-09-09 05:00:40 +00:00
|
|
|
* Wed Aug 2 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
- rebuilt against new libpng
|
|
|
|
|
|
|
|
* Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- add %%postun run of ldconfig (#14915)
|
|
|
|
|
|
|
|
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- update to 1.8.3
|
|
|
|
|
2013-04-23 05:57:39 +00:00
|
|
|
* Sun Jun 4 2000 Nalin Dahyabhai <nalin@redhat.com>
|
2004-09-09 05:00:40 +00:00
|
|
|
- rebuild in new environment
|
|
|
|
|
|
|
|
* Mon May 22 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- break out a -progs subpackage
|
|
|
|
- disable freetype support
|
|
|
|
|
|
|
|
* Fri May 19 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- update to latest version (1.8.2)
|
|
|
|
- disable xpm support
|
|
|
|
|
|
|
|
* Thu Feb 03 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 6)
|
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 5)
|
|
|
|
|
|
|
|
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- buiuld for glibc 2.1
|
|
|
|
|
|
|
|
* Fri Sep 11 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- built for 5.2
|