2010-04-14 12:36:52 +00:00
|
|
|
Name: orc
|
2015-06-25 08:03:59 +00:00
|
|
|
Version: 0.4.24
|
2016-02-04 11:41:37 +00:00
|
|
|
Release: 2%{?dist}
|
2010-04-14 12:36:52 +00:00
|
|
|
Summary: The Oil Run-time Compiler
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: BSD
|
2013-02-20 10:09:47 +00:00
|
|
|
URL: http://cgit.freedesktop.org/gstreamer/orc/
|
2015-05-05 09:33:18 +00:00
|
|
|
Source0: http://gstreamer.freedesktop.org/src/orc/%{name}-%{version}.tar.xz
|
2010-04-14 12:36:52 +00:00
|
|
|
|
2014-08-29 22:16:38 +00:00
|
|
|
BuildRequires: gtk-doc, libtool
|
2013-01-19 14:01:00 +00:00
|
|
|
|
2010-04-14 12:36:52 +00:00
|
|
|
%description
|
|
|
|
Orc is a library and set of tools for compiling and executing
|
|
|
|
very simple programs that operate on arrays of data. The "language"
|
|
|
|
is a generic assembly language that represents many of the features
|
|
|
|
available in SIMD architectures, including saturated addition and
|
|
|
|
subtraction, and many arithmetic operations.
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for Orc
|
|
|
|
Group: Development/Languages
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for Orc.
|
|
|
|
|
|
|
|
%package devel
|
2013-02-20 16:46:02 +00:00
|
|
|
Summary: Development files and libraries for Orc
|
2010-04-14 12:36:52 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: %{name}-compiler
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains the files needed to build packages that depend
|
|
|
|
on orc.
|
|
|
|
|
|
|
|
%package compiler
|
|
|
|
Summary: Orc compiler
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description compiler
|
|
|
|
The Orc compiler, to produce optimized code.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2011-10-14 10:14:42 +00:00
|
|
|
%setup -q
|
2014-08-29 22:16:38 +00:00
|
|
|
NOCONFIGURE=1 autoreconf -vif
|
2010-04-14 12:36:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2012-01-03 10:44:21 +00:00
|
|
|
%configure --disable-static --enable-gtk-doc --enable-user-codemem
|
2010-04-14 12:36:52 +00:00
|
|
|
|
2014-08-29 22:16:38 +00:00
|
|
|
make %{?_smp_mflags} V=1
|
2010-04-14 12:36:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=%{buildroot} INSTALL="install -p"
|
|
|
|
|
|
|
|
# Remove unneeded files.
|
|
|
|
find %{buildroot}/%{_libdir} -name \*.a -or -name \*.la -delete
|
|
|
|
rm -rf %{buildroot}/%{_libdir}/orc
|
|
|
|
|
|
|
|
touch -r stamp-h1 %{buildroot}%{_includedir}/%{name}-0.4/orc/orc-stdint.h
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
2014-09-11 16:27:12 +00:00
|
|
|
%ifnarch s390 s390x ppc %{power64} %{arm} i686 aarch64
|
2010-04-14 12:36:52 +00:00
|
|
|
make check
|
2010-07-14 16:17:54 +00:00
|
|
|
%endif
|
2010-04-14 12:36:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc COPYING README
|
|
|
|
%{_libdir}/liborc-*.so.*
|
2011-05-07 18:51:35 +00:00
|
|
|
%{_bindir}/orc-bugreport
|
2010-04-14 12:36:52 +00:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc %{_datadir}/gtk-doc/html/orc/
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc examples/*.c
|
|
|
|
%{_includedir}/%{name}-0.4/
|
|
|
|
%{_libdir}/liborc-*.so
|
|
|
|
%{_libdir}/pkgconfig/orc-0.4.pc
|
2011-10-03 10:53:52 +00:00
|
|
|
%{_datadir}/aclocal/orc.m4
|
2010-04-14 12:36:52 +00:00
|
|
|
|
|
|
|
%files compiler
|
|
|
|
%{_bindir}/orcc
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2016-02-04 11:41:37 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.24-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-25 08:03:59 +00:00
|
|
|
* Thu Jun 25 2015 Wim Taymans <wtaymans@redhat.com> 0.4.24-1
|
|
|
|
- Update to 0.4.24
|
|
|
|
|
2015-06-18 00:25:19 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.23-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-05 09:33:18 +00:00
|
|
|
* Tue May 5 2015 Wim Taymans <wtaymans@redhat.com> 0.4.23-1
|
|
|
|
- Update to 0.4.23
|
|
|
|
|
2015-02-21 21:27:31 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.4.22-4
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2014-09-11 16:27:12 +00:00
|
|
|
* Thu Sep 11 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 0.4.22-3
|
|
|
|
- Do not run tests on aarch64
|
|
|
|
|
2014-09-04 08:47:40 +00:00
|
|
|
* Thu Sep 4 2014 Peter Robinson <pbrobinson@fedoraproject.org> 0.4.22-2
|
|
|
|
- Add upstream patch for selinux issue with tmp files
|
|
|
|
|
2014-08-29 22:16:38 +00:00
|
|
|
* Fri Aug 29 2014 Peter Robinson <pbrobinson@fedoraproject.org> 0.4.22-1
|
|
|
|
- Update to 0.4.22
|
|
|
|
|
2014-08-17 14:18:57 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.18-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 17:24:25 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-09-19 15:03:54 +00:00
|
|
|
* Thu Sep 19 2013 Brian Pepple <bpepple@fedoraproject.org> - 0.4.18-1
|
|
|
|
- Update to 0.4.18.
|
|
|
|
|
2013-08-03 16:03:46 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.17-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-20 16:46:02 +00:00
|
|
|
* Wed Feb 20 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.17-2
|
|
|
|
- Fix typo rhbz#817944
|
|
|
|
|
2013-02-20 10:09:47 +00:00
|
|
|
* Wed Feb 20 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.17-1
|
|
|
|
- Update to latest upstream release
|
|
|
|
- Removed obsolete patches
|
|
|
|
|
2013-02-14 09:36:04 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.16-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-19 14:03:31 +00:00
|
|
|
* Sat Jan 19 2013 Daniel Drake <dsd@laptop.org> - 0.4.16-7
|
2013-01-19 14:01:00 +00:00
|
|
|
- Fix fallback path when register allocation fails
|
|
|
|
- Fixes gstreamer-1.0 crash on OLPC XO-1.75
|
|
|
|
|
2012-07-27 06:05:46 +00:00
|
|
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.16-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-07 22:52:31 +00:00
|
|
|
* Sat Jan 07 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.16-5
|
|
|
|
- Updated subdir patch.
|
|
|
|
|
2011-10-27 00:17:22 +00:00
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.16-4
|
|
|
|
- Rebuilt for glibc bug#747377
|
|
|
|
|
2011-10-16 12:33:28 +00:00
|
|
|
* Sun Oct 16 2011 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.16-3
|
|
|
|
- Add Fedora specific patch for tempfiles in subdirs
|
|
|
|
|
2011-10-14 10:14:42 +00:00
|
|
|
* Sun Oct 16 2011 Daniel Drake <dsd@laptop.org> - 0.4.16-2
|
|
|
|
- Add upstream patches to fix gstreamer crash on Geode (#746185)
|
|
|
|
|
2011-10-03 10:53:52 +00:00
|
|
|
* Mon Oct 03 2011 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.16-1
|
|
|
|
- Update to 0.4.16
|
|
|
|
- Fixing regression introdcued by 0.4.15 (#742534 and #734911)
|
|
|
|
|
2011-09-26 11:06:51 +00:00
|
|
|
* Mon Sep 26 2011 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.15-1
|
|
|
|
- Update to 0.4.15
|
|
|
|
|
2011-06-20 08:54:42 +00:00
|
|
|
* Mon Jun 20 2011 Peter Robinson <pbrobinson@gmail.com> - 0.4.14-3
|
|
|
|
- Add ARM platforms to the make check exclusion
|
|
|
|
|
2011-05-07 18:51:35 +00:00
|
|
|
* Sat May 07 2011 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.14-2
|
|
|
|
- Add orc-bugreport to the main package (#702727)
|
|
|
|
|
2011-04-30 09:01:52 +00:00
|
|
|
* Sat Apr 30 2011 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.14-1
|
|
|
|
- Update to 0.4.14
|
|
|
|
|
2011-04-19 12:29:10 +00:00
|
|
|
* Tue Apr 19 2011 Fabian Deutsch <fabiand@fedorpaproject.org> - 0.4.13-1
|
|
|
|
- Update to 0.4.13, another bug fixing release
|
|
|
|
|
2011-04-15 08:32:52 +00:00
|
|
|
* Fri Apr 15 2011 Fabian Deutsch <fabiand@fedorpaproject.org> - 0.4.12-1
|
|
|
|
- Update to 0.4.12, a bug fixing release
|
|
|
|
|
2011-02-23 13:12:54 +00:00
|
|
|
* Wed Feb 23 2011 Karsten Hopp <karsten@redhat.com> 0.4.11-3
|
|
|
|
- don't run tests on ppc, ppc64
|
|
|
|
|
2011-02-09 03:50:51 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-10-24 10:38:37 +00:00
|
|
|
* Sun Oct 24 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.11-1
|
|
|
|
- Update to 0.4.11.
|
|
|
|
- More bug fixes for CPUs that do not have backends, mmx and sse.
|
|
|
|
|
2010-10-08 09:15:02 +00:00
|
|
|
* Fri Oct 08 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.10-1
|
|
|
|
- Update to 0.4.10.
|
|
|
|
- Fixes some bugs related to SELinux.
|
|
|
|
|
2010-09-06 09:41:30 +00:00
|
|
|
* Mon Sep 06 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.9-1
|
2010-10-08 09:15:02 +00:00
|
|
|
- Update to 0.4.9, a pimarily bug fixing release.
|
2010-09-06 09:41:30 +00:00
|
|
|
|
2010-08-19 19:24:13 +00:00
|
|
|
* Thu Aug 19 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.7-1
|
|
|
|
- Updated to 0.4.7.
|
|
|
|
|
2010-07-22 13:34:04 +00:00
|
|
|
* Tue Jul 22 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.6-1
|
|
|
|
- Updated to 0.4.6.
|
|
|
|
- New orc-bugreport added.
|
|
|
|
|
2010-07-14 16:17:54 +00:00
|
|
|
* Tue Jul 13 2010 Dan Horák <dan[at]danny.cz> - 0.4.5-3
|
|
|
|
- don't run test on s390(x)
|
|
|
|
|
2010-06-17 16:28:38 +00:00
|
|
|
* Sun Jun 13 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.5-2
|
|
|
|
- Added removed testing libraries to package.
|
|
|
|
|
|
|
|
* Sun Jun 13 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.5-1
|
2010-06-13 15:33:17 +00:00
|
|
|
- Updated to 0.4.5.
|
|
|
|
- Removed testing libraries from package.
|
|
|
|
|
2010-04-14 12:36:52 +00:00
|
|
|
* Mon Apr 05 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.4-2
|
|
|
|
- Docs as noarch.
|
|
|
|
- Sanitize timestamps of header files.
|
|
|
|
- orcc in -compiler subpackage.
|
|
|
|
|
|
|
|
* Tue Mar 30 2010 Fabian Deutsch <fabiand@fedoraproject.org> - 0.4.4-1
|
|
|
|
- Updated to 0.4.4: Includes bugfixes for x86_64.
|
|
|
|
|
|
|
|
* Wed Mar 17 2010 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.3-2
|
|
|
|
- Running autoreconf to prevent building problems.
|
|
|
|
- Added missing files to docs.
|
|
|
|
- Added examples to devel docs.
|
|
|
|
|
|
|
|
* Thu Mar 04 2010 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.3-1
|
|
|
|
- Updated to 0.4.3
|
|
|
|
|
|
|
|
* Sun Oct 18 2009 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.2-4
|
|
|
|
- Removed unused libdir
|
|
|
|
|
|
|
|
* Sun Oct 18 2009 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.2-3
|
|
|
|
- Specfile cleanup
|
|
|
|
- Removed tools subpackage
|
|
|
|
- Added docs subpackage
|
|
|
|
|
|
|
|
* Sat Oct 03 2009 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.2-2
|
|
|
|
- Use orc as pakage name
|
|
|
|
- spec-file cleanup
|
|
|
|
- Added devel requirements
|
|
|
|
- Removed an rpath issue
|
|
|
|
|
|
|
|
* Fri Oct 02 2009 Fabian Deutsch <fabian.deutsch@gmx.de> - 0.4.2-1
|
|
|
|
- Initial release
|
|
|
|
|