2016-01-25 08:25:51 +00:00
|
|
|
%global libname mesonbuild
|
|
|
|
|
2015-02-21 00:06:51 +00:00
|
|
|
Name: meson
|
2016-01-24 20:30:48 +00:00
|
|
|
Version: 0.29.0
|
|
|
|
Release: 1%{?dist}
|
2015-02-21 00:06:51 +00:00
|
|
|
Summary: High productivity build system
|
|
|
|
|
|
|
|
License: ASL 2.0
|
2015-07-11 20:30:36 +00:00
|
|
|
URL: http://mesonbuild.com/
|
2015-07-11 20:24:08 +00:00
|
|
|
Source0: https://github.com/mesonbuild/meson/archive/%{version}/%{name}-%{version}.tar.gz
|
2015-02-25 22:10:58 +00:00
|
|
|
BuildArch: noarch
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
BuildRequires: python3-devel ninja-build
|
|
|
|
# Test deps
|
2015-05-25 14:56:31 +00:00
|
|
|
BuildRequires: gcc gcc-c++ gcc-gfortran gcc-objc gcc-objc++ java-devel mono-core mono-devel
|
2015-02-26 19:47:06 +00:00
|
|
|
BuildRequires: boost-devel
|
|
|
|
BuildRequires: gtest-devel
|
|
|
|
BuildRequires: gmock-devel
|
2015-05-25 14:56:31 +00:00
|
|
|
BuildRequires: qt5-qtbase-devel
|
2015-02-26 19:47:06 +00:00
|
|
|
BuildRequires: vala
|
2015-03-10 09:12:39 +00:00
|
|
|
BuildRequires: wxGTK3-devel
|
2015-02-26 19:47:06 +00:00
|
|
|
BuildRequires: flex bison
|
|
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: gnustep-base-devel
|
|
|
|
BuildRequires: git
|
2015-05-21 10:08:40 +00:00
|
|
|
BuildRequires: pkgconfig(protobuf)
|
2015-02-26 19:47:06 +00:00
|
|
|
BuildRequires: pkgconfig(glib-2.0)
|
2015-09-13 09:53:07 +00:00
|
|
|
BuildRequires: pkgconfig(gobject-introspection-1.0) python3-gobject-base gtk-doc
|
2015-02-26 19:47:06 +00:00
|
|
|
BuildRequires: pkgconfig(zlib)
|
2015-02-21 00:25:35 +00:00
|
|
|
Requires: ninja-build
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Meson is a build system designed to optimize programmer
|
|
|
|
productivity. It aims to do this by providing simple, out-of-the-box
|
|
|
|
support for modern software development tools and practices, such as
|
|
|
|
unit tests, coverage reports, Valgrind, CCache and the like.
|
|
|
|
|
2015-02-26 19:47:06 +00:00
|
|
|
%package gui
|
|
|
|
Summary: GUI for high productivity build system
|
|
|
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: python3-qt5
|
|
|
|
|
|
|
|
%description gui
|
|
|
|
GUI for high productivity build system.
|
|
|
|
|
2015-02-21 00:06:51 +00:00
|
|
|
%prep
|
2015-11-25 21:37:19 +00:00
|
|
|
%autosetup
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%build
|
2016-01-24 20:30:48 +00:00
|
|
|
%py3_build
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%install
|
2016-01-24 20:30:48 +00:00
|
|
|
%py3_install
|
2016-01-25 08:15:31 +00:00
|
|
|
install -Dpm 0644 data/macros.%{name} %{buildroot}%{_rpmconfigdir}/macros.d/macros.%{name}
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%check
|
2015-07-12 13:13:52 +00:00
|
|
|
MESON_PRINT_TEST_OUTPUT=1 ./run_tests.py
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license COPYING
|
2015-02-26 19:47:06 +00:00
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_bindir}/%{name}conf
|
2015-03-25 07:27:27 +00:00
|
|
|
%{_bindir}/%{name}introspect
|
2015-07-12 19:39:13 +00:00
|
|
|
%{_bindir}/wraptool
|
2016-01-24 20:30:48 +00:00
|
|
|
%exclude %{python3_sitelib}/%{libname}/*.ui
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/__pycache__/mgui.*
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/mgui.py
|
|
|
|
%{python3_sitelib}/%{libname}/
|
2015-02-26 19:47:06 +00:00
|
|
|
%{_mandir}/man1/%{name}.1.*
|
|
|
|
%{_mandir}/man1/%{name}conf.1.*
|
2015-03-25 07:27:27 +00:00
|
|
|
%{_mandir}/man1/%{name}introspect.1.*
|
2015-07-12 19:39:13 +00:00
|
|
|
%{_mandir}/man1/wraptool.1.*
|
2015-03-21 12:38:15 +00:00
|
|
|
%{_rpmconfigdir}/macros.d/macros.%{name}
|
2015-02-26 19:47:06 +00:00
|
|
|
|
|
|
|
%files gui
|
|
|
|
%{_bindir}/%{name}gui
|
2016-01-24 20:30:48 +00:00
|
|
|
%{python3_sitelib}/%{libname}/*.ui
|
|
|
|
%{python3_sitelib}/%{libname}/__pycache__/mgui.*
|
|
|
|
%{python3_sitelib}/%{libname}/mgui.py
|
2015-02-26 19:47:06 +00:00
|
|
|
%{_mandir}/man1/%{name}gui.1.*
|
2015-02-21 00:06:51 +00:00
|
|
|
|
|
|
|
%changelog
|
2016-01-24 20:30:48 +00:00
|
|
|
* Sun Jan 24 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.29.0-1
|
|
|
|
- Update to 0.29.0
|
|
|
|
|
2016-01-15 12:29:13 +00:00
|
|
|
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 0.28.0-2
|
|
|
|
- Rebuilt for Boost 1.60
|
|
|
|
|
2015-12-28 22:40:58 +00:00
|
|
|
* Mon Dec 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.28.0-1
|
|
|
|
- 0.28.0
|
|
|
|
|
2015-11-25 21:37:19 +00:00
|
|
|
* Wed Nov 25 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.27.0-1
|
|
|
|
- 0.27.0
|
|
|
|
|
2015-11-10 14:46:50 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-30 15:52:20 +00:00
|
|
|
* Fri Oct 30 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.26.0-2
|
|
|
|
- Fix rpm macros for using optflags
|
|
|
|
|
2015-09-13 09:36:22 +00:00
|
|
|
* Sun Sep 13 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.26.0-1
|
|
|
|
- 0.26.0
|
|
|
|
|
2015-08-27 19:45:20 +00:00
|
|
|
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0.25.0-4
|
|
|
|
- Rebuilt for Boost 1.59
|
|
|
|
|
2015-07-29 17:51:09 +00:00
|
|
|
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
|
|
|
|
2015-07-22 17:06:55 +00:00
|
|
|
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 0.25.0-2
|
|
|
|
- rebuild for Boost 1.58
|
|
|
|
|
2015-07-12 19:02:30 +00:00
|
|
|
* Sun Jul 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.25.0-1
|
|
|
|
- 0.25.0
|
|
|
|
|
2015-07-11 20:24:08 +00:00
|
|
|
* Sat Jul 11 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.0-3
|
|
|
|
- Update URLs
|
2015-07-11 20:29:27 +00:00
|
|
|
- drop unneded hacks in install section
|
2015-07-12 13:13:52 +00:00
|
|
|
- enable print test output for tests
|
2015-07-11 20:24:08 +00:00
|
|
|
|
2015-06-17 20:01:51 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.24.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-25 14:56:31 +00:00
|
|
|
* Mon May 25 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.24.0-1
|
|
|
|
- Update to 0.24.0
|
|
|
|
|
2015-05-21 10:04:13 +00:00
|
|
|
* Thu May 21 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.23.0-3.20150328git0ba1d54
|
|
|
|
- Update to latest git
|
|
|
|
|
2015-05-21 09:46:55 +00:00
|
|
|
* Thu May 21 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.23.0-3
|
|
|
|
- Add patch to accept .S files
|
|
|
|
|
2015-04-28 22:56:06 +00:00
|
|
|
* Wed Apr 29 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.23.0-2
|
|
|
|
- Add python3 to Requires (Thanks to Ilya Kyznetsov)
|
|
|
|
|
2015-03-31 12:18:45 +00:00
|
|
|
* Tue Mar 31 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.23.0-1
|
|
|
|
- 0.23.0
|
|
|
|
|
2015-03-28 11:10:12 +00:00
|
|
|
* Sat Mar 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-9.20150328git3b49b71
|
|
|
|
- Update to latest git
|
|
|
|
|
2015-03-25 07:27:27 +00:00
|
|
|
* Mon Mar 23 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-9.20150325git18550fe
|
|
|
|
- Update to latest git
|
|
|
|
- Include mesonintrospect
|
|
|
|
|
2015-03-23 08:41:07 +00:00
|
|
|
* Mon Mar 23 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-9.20150322git78d31ca
|
|
|
|
- Fix filelists for mesongui (python-bytecode-without-source)
|
|
|
|
|
2015-03-22 19:15:42 +00:00
|
|
|
* Sun Mar 22 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-8.20150322git78d31ca
|
|
|
|
- Enable C# tests
|
|
|
|
|
2015-03-22 13:39:56 +00:00
|
|
|
* Sun Mar 22 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-7.20150322git78d31ca
|
|
|
|
- update to latest git
|
|
|
|
- fix tests on arm
|
|
|
|
|
2015-03-21 12:38:15 +00:00
|
|
|
* Sat Mar 21 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-7.20150321gita084a8e
|
|
|
|
- update to latest git
|
|
|
|
|
2015-03-16 09:35:42 +00:00
|
|
|
* Mon Mar 16 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-7.20150316gitfa2c659
|
|
|
|
- update to latest git
|
|
|
|
|
2015-03-10 09:12:39 +00:00
|
|
|
* Tue Mar 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-7.20150310gitf9f51b1
|
|
|
|
- today's git snapshot with support for cool GNOME features
|
|
|
|
- re-enable wxGTK3 tests, package fixed in rawhide
|
|
|
|
|
|
|
|
* Thu Feb 26 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-6.git7581895
|
2015-02-26 19:47:06 +00:00
|
|
|
- split gui to subpkg
|
|
|
|
- update to latest snapshot
|
|
|
|
- enable tests
|
|
|
|
|
2015-02-25 22:10:58 +00:00
|
|
|
* Thu Feb 26 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-5.gitc6dbf98
|
|
|
|
- Fix packaging style
|
|
|
|
- Make package noarch
|
|
|
|
|
2015-02-23 21:13:21 +00:00
|
|
|
* Mon Feb 23 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-4.git.c6dbf98
|
|
|
|
- Use development version
|
|
|
|
|
2015-02-21 00:25:35 +00:00
|
|
|
* Sat Feb 21 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.22.0-3
|
|
|
|
- Add ninja-build to requires
|
|
|
|
|
2015-02-21 00:06:51 +00:00
|
|
|
* Thu Jan 22 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-2
|
|
|
|
- fix shebang in python files
|
|
|
|
|
|
|
|
* Wed Jan 21 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-1
|
|
|
|
- Initial package
|