gd/gd.spec

152 lines
4.2 KiB
RPMSpec
Raw Normal View History

2019-09-30 10:39:22 -04:00
Name: gd
2021-11-20 16:43:43 +08:00
Version: 2.3.2
Release: 2
2019-09-30 10:39:22 -04:00
Summary: A graphics library for quick creation of PNG or JPEG images
License: MIT
URL: http://libgd.github.io/
Source0: https://github.com/libgd/libgd/releases/download/gd-%{version}/libgd-%{version}.tar.xz
2020-07-23 19:02:35 +08:00
# Missing, temporary workaround, fixed upstream for next version
Source1: https://raw.githubusercontent.com/libgd/libgd/gd-%{version}/config/getlib.sh
2019-09-30 10:39:22 -04:00
2021-08-14 14:54:39 +08:00
Patch6000: backport-CVE-2021-38115.patch
2021-11-20 16:43:43 +08:00
Patch6001: backport-CVE-2021-40812.patch
Patch6002: backport-CVE-2021-40145.patch
2021-08-14 14:54:39 +08:00
2021-07-20 17:28:03 +08:00
BuildRequires: freetype-devel fontconfig-devel gettext-devel libjpeg-devel libpng-devel libtiff-devel libwebp-devel
2019-09-30 10:39:22 -04:00
BuildRequires: libX11-devel libXpm-devel zlib-devel pkgconfig libtool perl-interpreter perl-generators liberation-sans-fonts
%description
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. The most common applications of GD involve website development,
although it can be used with any standalone application!
%package devel
Summary: The development libraries and header files for gd
Requires: %{name}%{?_isa} = %{version}-%{release} freetype-devel%{?_isa} fontconfig-devel%{?_isa} libjpeg-devel%{?_isa}
Requires: libpng-devel%{?_isa} libtiff-devel%{?_isa} libwebp-devel%{?_isa} libX11-devel%{?_isa}
Requires: libXpm-devel%{?_isa} zlib-devel%{?_isa}
2021-11-20 16:43:43 +08:00
%package progs
Requires: %{name}%{?_isa} = %{version}-%{release}
Summary: Utility programs that use libgd
%description progs
The gd-progs package includes utility programs supplied with gd, a
graphics library for creating PNG and JPEG images.
2019-09-30 10:39:22 -04:00
%description devel
The gd-devel package contains the development libraries and header files for gd, a graphics
library for creating PNG and JPEG graphics.The gd-progs package includes utility programs supplied with gd, a
graphics library for creating PNG and JPEG images.
%prep
%autosetup -n libgd-%{version} -p1
2020-07-23 19:02:35 +08:00
install -m 0755 %{SOURCE1} config/
2019-09-30 10:39:22 -04:00
: $(perl config/getver.pl)
: regenerate autotool stuff
if [ -f configure ]; then
libtoolize --copy --force
autoreconf -vif
else
./bootstrap.sh
fi
%build
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\"'"
2020-07-23 19:02:35 +08:00
%ifarch %{ix86}
# see https://github.com/libgd/libgd/issues/242
export CFLAGS="$CFLAGS -msse -mfpmath=sse"
%endif
2019-09-30 10:39:22 -04:00
2020-07-23 19:02:35 +08:00
%ifarch aarch64 ppc64 ppc64le s390 s390x
2019-09-30 10:39:22 -04:00
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1359680
export CFLAGS="$CFLAGS -ffp-contract=off"
%endif
%configure \
--with-tiff=%{_prefix} \
--disable-rpath
%make_build
%install
%make_install
%check
export XFAIL_TESTS
make check
grep %{version} $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gdlib.pc
2020-07-23 19:02:35 +08:00
%ldconfig_scriptlets
2019-09-30 10:39:22 -04:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
2020-07-23 19:02:35 +08:00
%{!?_licensedir:%global license %%doc}
2019-09-30 10:39:22 -04:00
%license COPYING
%{_libdir}/*.so.*
%exclude %{_bindir}/gdlib-config
2021-11-20 16:43:43 +08:00
%files progs
%{_bindir}/*
2019-09-30 10:39:22 -04:00
%files devel
%{_includedir}/*
%{_libdir}/*.so
%{_libdir}/pkgconfig/gdlib.pc
%exclude %{_libdir}/libgd.la
%exclude %{_libdir}/libgd.a
%changelog
* Fri Apr 08 2022 dongyuzhen <dongyuzhen@h-partners.com> - 2.3.2-2
- fix CVE-2021-40145
2021-11-20 16:43:43 +08:00
* Sat Nov 20 2021 hanhui<hanhui15@huawei.com> - 2.3.2-1
- DESC:update to 2.3.2
2021-09-23 14:07:40 +08:00
* Thu Sep 23 2021 liuyumeng<liuyumeng5@huawei.com> - 2.3.0-4
- Type:CVE
- CVE:CVE-2021-40812
- SUG:NA
- DESC:fix CVE-2021-40812
2021-08-14 14:54:39 +08:00
* Sat Aug 14 2021 zhanzhimin<zhanzhimin@huawei.com> - 2.3.0-3
- Type:CVE
- ID:CVE-2021-38115
- SUG:NA
- DESC:fix CVE-2021-38115
2021-07-20 17:28:03 +08:00
* Tue Jul 20 2021 zhanzhimin<zhanzhimin@huawei.com> - 2.3.0-2
- delete gdb buildrequires
2020-07-23 19:02:35 +08:00
* Thu Jul 23 2020 zhangqiumiao<zhangqiumiao1@huawei.com> - 2.3.0-1
- Type:enhancement
- ID:NA
- SUG:NA
- DESC:upgrade to version 2.3.0
2020-03-20 10:33:24 +08:00
* Fri Mar 20 2020 songnannan <songnannan2@huawei.com> - 2.2.5-6
- add gdb in buildrequires
2020-07-23 19:02:35 +08:00
* Wed Sep 25 2019 wangli<wangli221@huawei.com> - 2.2.5-5
2019-09-30 10:39:22 -04:00
- Type:cves
- ID:CVE-2019-11038
- SUG:NA
- DESC:fix cves
* Wed Sep 11 2019 openEuler jimmy<dukaitian@huawei.com> - 2.2.5-4
- Package init jimmy