Using g_return_* to assert that a __nonnull__ parameter is indeed not NULL triggers -Wnonnull. This breaks the build because -Wformat includes -Wnonnull and we use -Werror=format*.
181 lines
5.5 KiB
RPMSpec
181 lines
5.5 KiB
RPMSpec
%global apiver 2.91
|
|
|
|
Name: vte291
|
|
Version: 0.43.0
|
|
Release: 1%{?dist}
|
|
Summary: Terminal emulator library
|
|
|
|
License: LGPLv2+
|
|
URL: http://www.gnome.org/
|
|
Source0: http://download.gnome.org/sources/vte/0.42/vte-%{version}.tar.xz
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=688456
|
|
Patch0: 0001-widget-Only-show-the-cursor-on-motion-if-moved.patch
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=711059
|
|
Patch100: vte291-command-notify.patch
|
|
|
|
BuildRequires: gettext
|
|
BuildRequires: pkgconfig(gnutls)
|
|
BuildRequires: pkgconfig(libpcre2-8) >= 10.00
|
|
BuildRequires: gobject-introspection-devel
|
|
BuildRequires: gperf
|
|
BuildRequires: pkgconfig(gtk+-3.0)
|
|
BuildRequires: intltool
|
|
BuildRequires: vala-tools
|
|
|
|
# initscripts creates the utmp group
|
|
Requires: initscripts
|
|
Requires: vte-profile
|
|
|
|
%description
|
|
VTE is a library implementing a terminal emulator widget for GTK+. VTE
|
|
is mainly used in gnome-terminal, but can also be used to embed a
|
|
console/terminal in games, editors, IDEs, etc.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
# vte-profile is deliberately not noarch to avoid having to obsolete a noarch
|
|
# subpackage in the future when we get rid of the vte3 / vte291 split. Yum is
|
|
# notoriously bad when handling noarch obsoletes and insists on installing both
|
|
# of the multilib packages (i686 + x86_64) as the replacement.
|
|
%package -n vte-profile
|
|
Summary: Profile script for VTE terminal emulator library
|
|
License: GPLv3+
|
|
# vte.sh was previously part of the vte3 package
|
|
Conflicts: vte3 < 0.36.1-3
|
|
|
|
%description -n vte-profile
|
|
The vte-profile package contains a profile.d script for the VTE terminal
|
|
emulator library.
|
|
|
|
%prep
|
|
%setup -q -n vte-%{version}
|
|
%patch0 -p1 -b .motion
|
|
%patch100 -p1 -b .command-notify
|
|
|
|
%build
|
|
CFLAGS="%optflags -fPIE -DPIE -Wno-nonnull" \
|
|
CXXFLAGS="$CFLAGS" \
|
|
LDFLAGS="$LDFLAGS -Wl,-z,relro -Wl,-z,now -pie" \
|
|
%configure \
|
|
--disable-static \
|
|
--libexecdir=%{_libdir}/vte-%{apiver} \
|
|
--disable-gtk-doc \
|
|
--enable-introspection
|
|
make %{?_smp_mflags} V=1
|
|
|
|
%install
|
|
%make_install
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
|
%find_lang vte-%{apiver}
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files -f vte-%{apiver}.lang
|
|
%license COPYING
|
|
%doc NEWS README
|
|
%{_libdir}/libvte-%{apiver}.so.0*
|
|
%{_libdir}/girepository-1.0/
|
|
|
|
%files devel
|
|
%{_bindir}/vte-%{apiver}
|
|
%{_includedir}/vte-%{apiver}/
|
|
%{_libdir}/libvte-%{apiver}.so
|
|
%{_libdir}/pkgconfig/vte-%{apiver}.pc
|
|
%{_datadir}/gir-1.0/
|
|
%doc %{_datadir}/gtk-doc/
|
|
%{_datadir}/vala/
|
|
|
|
%files -n vte-profile
|
|
%{_sysconfdir}/profile.d/vte.sh
|
|
|
|
%changelog
|
|
* Fri Jan 29 2016 Debarshi Ray <rishi@fedoraproject.org> - 0.43.0-1
|
|
- Update to 0.43.0
|
|
- Add BuildRequires on pkgconfig(libpcre2-8)
|
|
- Disable -Wnonnull
|
|
|
|
* Thu Jan 28 2016 Debarshi Ray <rishi@fedoraproject.org> - 0.42.3-1
|
|
- Update to 0.42.3
|
|
- Backport upstream patch to fix disappearing lines (GNOME #761097)
|
|
|
|
* Wed Oct 14 2015 Kalev Lember <klember@redhat.com> - 0.42.1-1
|
|
- Update to 0.42.1
|
|
|
|
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 0.42.0-1
|
|
- Update to 0.42.0
|
|
- Use license macro for COPYING
|
|
|
|
* Mon Sep 14 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.41.90-1
|
|
- Update to 0.41.90
|
|
- Rebased downstream patches after the migration to C++
|
|
- gnome-pty-helper has been removed
|
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.40.2-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Tue May 12 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.40.2-1
|
|
- Update to 0.40.2
|
|
|
|
* Tue Mar 24 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.40.0-1
|
|
- Update to 0.40.0
|
|
|
|
* Thu Mar 19 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.39.92-1
|
|
- Update to 0.39.92
|
|
|
|
* Tue Feb 17 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.39.90-1
|
|
- Update to 0.39.90
|
|
- Add command-notify patches
|
|
|
|
* Fri Dec 19 2014 Richard Hughes <rhughes@redhat.com> - 0.39.1-1
|
|
- Update to 0.39.1
|
|
|
|
* Mon Dec 01 2014 Debarshi Ray <rishi@fedoraproject.org> - 0.39.0-2
|
|
- Backport upstream patch to fix zombie shells (GNOME #740929)
|
|
|
|
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 0.39.0-1
|
|
- Update to 0.39.0
|
|
|
|
* Mon Nov 10 2014 Kalev Lember <kalevlember@gmail.com> - 0.38.2-1
|
|
- Update to 0.38.2
|
|
|
|
* Mon Oct 13 2014 Kalev Lember <kalevlember@gmail.com> - 0.38.1-1
|
|
- Update to 0.38.1
|
|
|
|
* Sun Sep 14 2014 Kalev Lember <kalevlember@gmail.com> - 0.38.0-1
|
|
- Update to 0.38.0
|
|
|
|
* Mon Aug 18 2014 Kalev Lember <kalevlember@gmail.com> - 0.37.90-1
|
|
- Update to 0.37.90
|
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.37.2-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.37.2-2
|
|
- Rebuilt for gobject-introspection 1.41.4
|
|
|
|
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 0.37.2-1
|
|
- Update to 0.37.2
|
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.37.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.37.1-1
|
|
- Update to 0.37.1
|
|
|
|
* Wed May 07 2014 Kalev Lember <kalevlember@gmail.com> - 0.37.0-2
|
|
- Split out a vte-profile subpackage that can be used with both vte291 / vte3
|
|
|
|
* Tue May 06 2014 Kalev Lember <kalevlember@gmail.com> - 0.37.0-1
|
|
- Initial Fedora package, based on previous vte3 0.36 packaging
|