Accepting request 756771 from GNOME:Factory
libgtk3 takes ~15 minutes to build, the API docs about 3 hours. Putting the API-docs into a separate package removes 23MByte from a gtk3-devel install. - Split API doc generation from main package using _multibuild, libgtk3 itself only takes a fraction of the time to build. (forwarded request 756128 from StefanBruens) OBS-URL: https://build.opensuse.org/request/show/756771 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gtk3?expand=0&rev=153
This commit is contained in:
commit
5f7c580abd
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>doc</package>
|
||||||
|
</multibuild>
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 11 20:03:40 UTC 2019 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
|
||||||
|
|
||||||
|
- Split API doc generation from main package using _multibuild,
|
||||||
|
libgtk3 itself only takes a fraction of the time to build.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 27 19:06:58 UTC 2019 - bjorn.lie@gmail.com
|
Wed Nov 27 19:06:58 UTC 2019 - bjorn.lie@gmail.com
|
||||||
|
|
||||||
|
61
gtk3.spec
61
gtk3.spec
@ -17,11 +17,24 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
|
||||||
|
%if "%{flavor}" == ""
|
||||||
|
%global pname gtk3
|
||||||
|
%bcond_with doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if "%{flavor}" == "doc"
|
||||||
|
%global pname gtk3-doc
|
||||||
|
%bcond_without doc
|
||||||
|
%endif
|
||||||
|
|
||||||
# When updating the binary version, do not forget to also update baselibs.conf
|
# When updating the binary version, do not forget to also update baselibs.conf
|
||||||
%define gtk_binary_version 3.0.0
|
%define gtk_binary_version 3.0.0
|
||||||
%define _name gtk
|
%define _name gtk
|
||||||
%bcond_without broadway
|
%bcond_without broadway
|
||||||
Name: gtk3
|
%bcond_with doc
|
||||||
|
Name: %{pname}
|
||||||
Version: 3.24.13+0
|
Version: 3.24.13+0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The GTK+ toolkit library (version 3)
|
Summary: The GTK+ toolkit library (version 3)
|
||||||
@ -42,7 +55,10 @@ BuildRequires: cups-devel >= 1.7
|
|||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gettext-tools-mini >= 0.19.7
|
BuildRequires: gettext-tools-mini >= 0.19.7
|
||||||
|
# Autotools requires gtk-doc even with --disable-gtk-doc, try again with meson
|
||||||
|
%if %{with doc} || 1
|
||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
|
%endif
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
# libtool is needed since we are using a git checkout
|
# libtool is needed since we are using a git checkout
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
@ -353,6 +369,17 @@ This package enhances gettext with an International Tag Set for GTK+ 3
|
|||||||
|
|
||||||
%lang_package
|
%lang_package
|
||||||
|
|
||||||
|
%package -n gtk3-devel-doc
|
||||||
|
Summary: API documentation for the GTK+ toolkit library v3
|
||||||
|
Group: Documentation/HTML
|
||||||
|
|
||||||
|
%description -n gtk3-devel-doc
|
||||||
|
GTK+ is a multi-platform toolkit for creating graphical user interfaces.
|
||||||
|
Offering a complete set of widgets, GTK+ is suitable for projects
|
||||||
|
ranging from small one-off projects to complete application suites.
|
||||||
|
|
||||||
|
This package contains the API documentation for GTK+ 3.x.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{_name}-%{version}
|
%setup -q -n %{_name}-%{version}
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
@ -375,7 +402,8 @@ cp -a %{SOURCE1} .
|
|||||||
NOCONFIGURE=1 ./autogen.sh
|
NOCONFIGURE=1 ./autogen.sh
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-gtk-doc \
|
%{?with_doc: \
|
||||||
|
--enable-gtk-doc} \
|
||||||
--enable-man \
|
--enable-man \
|
||||||
--enable-x11-backend \
|
--enable-x11-backend \
|
||||||
--enable-introspection \
|
--enable-introspection \
|
||||||
@ -385,9 +413,18 @@ NOCONFIGURE=1 ./autogen.sh
|
|||||||
--enable-explicit-deps=yes \
|
--enable-explicit-deps=yes \
|
||||||
--enable-colord \
|
--enable-colord \
|
||||||
%{nil}
|
%{nil}
|
||||||
|
|
||||||
|
%if "%{flavor}" == ""
|
||||||
make %{?_smp_mflags} V=1
|
make %{?_smp_mflags} V=1
|
||||||
|
%else
|
||||||
|
make %{?_smp_mflags} V=1 -C gdk
|
||||||
|
make %{?_smp_mflags} V=1 -C gtk
|
||||||
|
make %{?_smp_mflags} V=1 -C tests
|
||||||
|
make %{?_smp_mflags} V=1 -C docs
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if "%{flavor}" == ""
|
||||||
%make_install
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
# Do not install the exampleapp glib schema, as the app itself is noinst
|
# Do not install the exampleapp glib schema, as the app itself is noinst
|
||||||
@ -415,6 +452,12 @@ ln -s -f %{_sysconfdir}/alternatives/gtk-update-icon-cache.1%{ext_man} %{buildro
|
|||||||
# Install rpm macros
|
# Install rpm macros
|
||||||
mkdir -p %{buildroot}%{_rpmmacrodir}
|
mkdir -p %{buildroot}%{_rpmmacrodir}
|
||||||
cp %{SOURCE3} %{buildroot}%{_rpmmacrodir}
|
cp %{SOURCE3} %{buildroot}%{_rpmmacrodir}
|
||||||
|
|
||||||
|
%else
|
||||||
|
%make_install -C docs
|
||||||
|
rm -Rf %{buildroot}%{_mandir}/man1/
|
||||||
|
%endif
|
||||||
|
|
||||||
%fdupes %{buildroot}%{_datadir}
|
%fdupes %{buildroot}%{_datadir}
|
||||||
%fdupes %{buildroot}%{_libdir}
|
%fdupes %{buildroot}%{_libdir}
|
||||||
|
|
||||||
@ -545,6 +588,7 @@ if [ ! -f %{_bindir}/gtk-update-icon-cache-3.0 ]; then
|
|||||||
update-alternatives --remove gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache-3.0
|
update-alternatives --remove gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache-3.0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
%if "%{flavor}" == ""
|
||||||
%files -n libgtk-3-0
|
%files -n libgtk-3-0
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%if "%{_lib}" == "lib64"
|
%if "%{_lib}" == "lib64"
|
||||||
@ -644,10 +688,6 @@ fi
|
|||||||
%config(noreplace) %{_sysconfdir}/gtk-3.0/settings.ini
|
%config(noreplace) %{_sysconfdir}/gtk-3.0/settings.ini
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc HACKING README.commits
|
|
||||||
%doc %{_datadir}/gtk-doc/html/gail-libgail-util3/
|
|
||||||
%doc %{_datadir}/gtk-doc/html/gdk3/
|
|
||||||
%doc %{_datadir}/gtk-doc/html/gtk3/
|
|
||||||
%{_bindir}/gtk3-demo
|
%{_bindir}/gtk3-demo
|
||||||
%{_bindir}/gtk3-demo-application
|
%{_bindir}/gtk3-demo-application
|
||||||
%{_bindir}/gtk3-widget-factory
|
%{_bindir}/gtk3-widget-factory
|
||||||
@ -690,5 +730,14 @@ fi
|
|||||||
%{_datadir}/gettext/its/gtkbuilder.loc
|
%{_datadir}/gettext/its/gtkbuilder.loc
|
||||||
|
|
||||||
%files lang -f gtk30.lang -f gtk30-properties.lang
|
%files lang -f gtk30.lang -f gtk30-properties.lang
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with doc}
|
||||||
|
%files -n gtk3-devel-doc
|
||||||
|
%doc HACKING README.commits
|
||||||
|
%doc %{_datadir}/gtk-doc/html/gail-libgail-util3/
|
||||||
|
%doc %{_datadir}/gtk-doc/html/gdk3/
|
||||||
|
%doc %{_datadir}/gtk-doc/html/gtk3/
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user