Leigh Scott b356530
%global __provides_exclude %{python3_sitearch}/.*\.so$
8efccae
8efccae
Name:           libfreenect
e746e2a
Version:        0.7.0
40010c0
Release:        8%{?dist}
8efccae
Summary:        Device driver for the Kinect
ec86d1c
# Core libfreenect is available as Apache-2.0 OR GPL-2.0-only
ec86d1c
#
ec86d1c
# OpenNI driver is available as Apache-2.0
1fb2d06
License:        Apache-2.0 AND (GPL-2.0-only OR Apache-2.0)
8efccae
URL:            http://www.openkinect.org/
8efccae
9206aba
Source0:        https://github.com/OpenKinect/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
937f2cc
# Edit udev rule to only allow access to the device from the video group
937f2cc
Patch0:         %{name}-0.5.7-videogroup.patch
8454871
# Freenect openni driver is a plugin lib, and doesn't need soversion symlinks
9206aba
Patch1:         %{name}-openni2.patch
7373ead
# Allow for proper libdir
7373ead
Patch3:         %{name}-0.4.2-libdir.patch
e222c04
# BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1143912
e222c04
Patch4:         secarch.patch
5ab6bce
# Fix the installation path for python libs
c24c182
Patch5:         %{name}-0.7.0-py3.patch
1ef45bc
# Fix for cython3
1ef45bc
Patch6:         %{name}-0.7.0-cython3.patch
f55eb6d
Patch7: libfreenect-c99.patch
1259981
Igor Gnatenko 062db16
BuildRequires:  gcc-c++
Leigh Scott b356530
BuildRequires:  cmake3
8efccae
BuildRequires:  doxygen
8efccae
BuildRequires:  freeglut-devel
8efccae
BuildRequires:  libusb1-devel
8efccae
BuildRequires:  libGL-devel
8efccae
BuildRequires:  libXi-devel
8efccae
BuildRequires:  libXmu-devel
937f2cc
BuildRequires:  opencv-devel
6933729
BuildRequires:  python3-Cython
5ab6bce
BuildRequires:  python3-devel
5ab6bce
BuildRequires:  python3-numpy
8efccae
8efccae
Requires:       udev
8efccae
8efccae
%description
8efccae
libfreenect is a free and open source library that provides access to the
8efccae
Kinect device.  Currently, the library supports the RGB webcam, the depth
8efccae
image, the LED, and the tilt motor.
8efccae
8efccae
%package        devel
8efccae
Summary:        Development files for %{name}
8efccae
Requires:       %{name}%{?_isa} = %{version}-%{release}
8efccae
8efccae
%description    devel
8efccae
The %{name}-devel package contains libraries and header files for
8efccae
developing applications that use %{name}.
8efccae
8efccae
%package        static
8efccae
Summary:        Development files for %{name}
8efccae
Requires:       %{name}-devel%{?_isa} = %{version}-%{release}
8efccae
8efccae
%description    static
8efccae
The %{name}-static package contains static libraries for
8efccae
developing applications that use %{name}.
8efccae
8efccae
%package        fakenect
8efccae
Summary:        Library to play back recorded data for %{name}
8efccae
Requires:       %{name}%{?_isa} = %{version}-%{release}
8efccae
8efccae
%description    fakenect
8efccae
Fakenect consists of a "record" program to save dumps from the kinect sensor 
8efccae
and a library that can be linked to, providing an interface compatible with 
8efccae
freenect.  This allows you to save data and repeat for experiments, debug 
8efccae
problems, share datasets, and experiment with the kinect without having one.
8efccae
937f2cc
%package        opencv
937f2cc
Summary:        OpenCV bindings for %{name}
937f2cc
Requires:       %{name}%{?_isa} = %{version}-%{release}
8efccae
937f2cc
%description    opencv
937f2cc
The %{name}-opencv package contains the libfreenect binding
937f2cc
library for OpenCV development.
8efccae
5ab6bce
%package -n     python3-%{name}
5ab6bce
Summary:        Python 3 bindings for %{name}
5ab6bce
Requires:       %{name}%{?_isa} = %{version}-%{release}
5ab6bce
Requires:       python3-numpy
5ab6bce
%{?python_provide:%python_provide python3-%{name}}
5ab6bce
5ab6bce
%description -n  python3-%{name}
5ab6bce
The %{name}-python package contains python 3 bindings for %{name}
8efccae
8454871
%package        openni
8454871
Summary:        OpenNI2 driver for the Kinect
8454871
8454871
%description    openni
8454871
The OpenNI2-FreenectDriver is a bridge to libfreenect implemented as an 
8454871
OpenNI2 driver. It allows OpenNI2 to use Kinect hardware on Linux and OSX. 
8454871
It was originally a separate project but is now distributed with libfreenect.
8454871
8efccae
%prep
9206aba
%setup -qn %{name}-%{version}
8454871
rm -rf platform/windows
5ab6bce
e746e2a
%patch -P 0 -p0 -b .videogroup
e746e2a
%patch -P 1 -p1 -b .openni2
e746e2a
%patch -P 3 -p0 -b .libdir
e746e2a
%patch -P 4 -p1 -b .secarch
e746e2a
%patch -P 5 -p1 -b .py3
1ef45bc
%patch -P 6 -p1 -b .cython3
f55eb6d
%patch -P 7 -p1
8efccae
8efccae
%build
Leigh Scott b356530
%cmake3 \
7373ead
  -DBUILD_AUDIO=ON \
7373ead
  -DBUILD_C_SYNC=ON \
937f2cc
  -DBUILD_CV=ON \
7373ead
  -DBUILD_REDIST_PACKAGE=ON \
7373ead
  -DBUILD_EXAMPLES=ON \
7373ead
  -DBUILD_FAKENECT=ON \
6933729
  -DBUILD_PYTHON=OFF  \
6933729
  -DBUILD_PYTHON2=OFF \
6933729
  -DBUILD_PYTHON3=ON \
5ab6bce
  -DBUILD_OPENNI2_DRIVER=ON
7373ead
Leigh Scott b356530
%cmake3_build
8efccae
8efccae
pushd doc
8efccae
doxygen Doxyfile
8efccae
popd
8efccae
8efccae
%install
Leigh Scott b356530
%cmake3_install
04dd1d3
04dd1d3
# Install the kinect udev rule
8efccae
mkdir -p %{buildroot}/lib/udev/rules.d
Jiri Kastner e8d69da
mkdir -p %{buildroot}%{_libdir}/openni2
8efccae
install -p -m 0644 platform/linux/udev/51-kinect.rules %{buildroot}/lib/udev/rules.d
04dd1d3
04dd1d3
# Delete libtool archives
8efccae
find %{buildroot} -name '*.la' -exec rm -f {} ';'
8efccae
04dd1d3
# Move the fwfetcher script to the correct datadir
8efccae
mkdir -p %{buildroot}%{_datadir}/%{name}
8efccae
mv %{buildroot}%{_datadir}/fwfetcher.py   %{buildroot}%{_datadir}/%{name}
8efccae
04dd1d3
# Move openni plugin: rhbz#1094787
Jiri Kastner e8d69da
mv %{buildroot}%{_libdir}/OpenNI2-FreenectDriver %{buildroot}%{_libdir}/openni2/Drivers
04dd1d3
8efccae
%files
5ab6bce
%license APACHE20 GPL2
5ab6bce
%doc README.md CONTRIB
8efccae
/lib/udev/rules.d/*
8796352
%{_libdir}/libfreenect.so.0*
8796352
%{_libdir}/libfreenect_sync.so.0*
8efccae
%exclude %{_bindir}/freenect-cvdemo
8efccae
%exclude %{_bindir}/fakenect
8efccae
%{_bindir}/freenect-*
8efccae
%{_datadir}/%{name}
8efccae
937f2cc
%files opencv
937f2cc
%{_bindir}/freenect-cvdemo
937f2cc
%{_libdir}/libfreenect_cv.so.*
8efccae
8efccae
%files devel
8efccae
%doc doc/html
8efccae
%doc examples/*.c wrappers/cpp/cppview.cpp
8efccae
%{_includedir}/libfreenect
8efccae
%{_libdir}/*.so
8efccae
%{_libdir}/pkgconfig/*
8efccae
%{_libdir}/fakenect/*.so
8efccae
8efccae
%files static
8efccae
%{_libdir}/*.a
8efccae
5ab6bce
%files -n python3-%{name}
5ab6bce
%{python3_sitearch}/*.so
8efccae
8efccae
%files fakenect
8efccae
%dir %{_libdir}/fakenect
8454871
%{_bindir}/fakenect-record
8efccae
%{_libdir}/fakenect/*.so.*
8efccae
%{_bindir}/fakenect
8454871
%{_mandir}/man1/fakenect*1.*
8454871
8454871
%files openni
04dd1d3
%{_libdir}/openni2
8efccae
8efccae
%changelog
40010c0
* Mon Feb 05 2024 Sérgio Basto <sergio@serjux.com> - 0.7.0-8
40010c0
- Rebuild for opencv 4.9.0
40010c0
0584e9e
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-7
0584e9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
0584e9e
2ed534f
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-6
2ed534f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2ed534f
f55eb6d
* Thu Jan 04 2024 Florian Weimer <fweimer@redhat.com> - 0.7.0-5
f55eb6d
- Fix C compatibility issue in Cython wrapper
f55eb6d
1ef45bc
* Mon Aug 07 2023 Rich Mattes <richmattes@gmail.com> - 0.7.0-4
1ef45bc
- Fix build error with cython 3
1ef45bc
8d93c58
* Mon Aug 07 2023 Sérgio Basto <sergio@serjux.com> - 0.7.0-4
8d93c58
- Rebuild for opencv 4.8.0
8d93c58
68d7a67
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-3
68d7a67
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
68d7a67
c24c182
* Thu Jul 13 2023 Rich Mattes <richmattes@gmail.com> - 0.7.0-2
c24c182
- Updates for Python 3.12 compatibility
c24c182
- Resolves: rhbz#2220025
c24c182
bc489b1
* Sat Jun 17 2023 Python Maint <python-maint@redhat.com> - 0.7.0-2
bc489b1
- Rebuilt for Python 3.12
bc489b1
e746e2a
* Thu May 04 2023 Nicolas Chauvet <kwizart@gmail.com> - 0.7.0-1
e746e2a
- Update to 0.7.0
e746e2a
f032067
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4-3
f032067
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
f032067
1354f13
* Mon Jan 16 2023 Sérgio Basto <sergio@serjux.com> - 0.6.4-2
1354f13
- Rebuild for opencv 4.7.0
1354f13
2f8a148
* Sat Sep 24 2022 Phil Wyett <philip.wyett@kathenas.org> - 0.6.4-1
2f8a148
- New upstream version 0.6.4
2f8a148
- Remove old globals
2f8a148
bec9c63
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2-9
bec9c63
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
bec9c63
729a461
* Tue Jun 21 2022 Sérgio Basto <sergio@serjux.com> - 0.6.2-8
729a461
- Rebuilt for opencv 4.6.0
729a461
ab03934
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.6.2-7
ab03934
- Rebuilt for Python 3.11
ab03934
676ea2c
* Wed Jan 26 2022 Phil Wyett <philip.wyett@kathenas.org> - 0.6.2-6
676ea2c
- Fix FTBFS. Update cmake related OpenGL GLVND and GLUT.
676ea2c
5a0ca9b
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2-5
5a0ca9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
5a0ca9b
2c735ac
* Wed Sep 01 2021 Phil Wyett <philip.wyett@kathenas.org> - 0.6.2-4
2c735ac
- Drop not needed Cython BuildRequires
2c735ac
- Resolves: #1984287
2c735ac
0f42c52
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.2-3
0f42c52
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
0f42c52
a9c7d0d
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.6.2-2
a9c7d0d
- Rebuilt for Python 3.10
a9c7d0d
ac80ab0
* Thu Mar 04 2021 Nicolas Chauvet <kwizart@gmail.com> - 0.6.2-1
ac80ab0
- Update to 0.6.2
ac80ab0
8f326d8
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-8
8f326d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
8f326d8
33fee85
* Thu Oct 22 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.1-7
33fee85
- Rebuilt for OpenCV
33fee85
Leigh Scott b356530
* Mon Aug 03 2020 Leigh Scott <leigh123linux@gmail.com> - 0.6.1-6
Leigh Scott b356530
- Fix unversioned python
Leigh Scott b356530
- Switch to new cmake macros
Leigh Scott b356530
5962de8
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-5
5962de8
- Second attempt - Rebuilt for
5962de8
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5962de8
0598ac7
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-4
0598ac7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
0598ac7
7c0e895
* Thu Jun 04 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.1-3
7c0e895
- Rebuilt for OpenCV 4.3
7c0e895
43a7f21
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.6.1-2
43a7f21
- Rebuilt for Python 3.9
43a7f21
9206aba
* Mon May 25 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.1-1
9206aba
- Update to 0.6.1
9206aba
8796352
* Tue Mar 03 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.0-3
8796352
- Update to new ABI
8796352
85f3872
* Fri Feb 28 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.0-2
85f3872
- Rebuilt to keep previous ABI
85f3872
cab3ac0
* Fri Feb 28 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.6.0-1
cab3ac0
- Update to 0.6.0
1747099
- Drop Minor in APIVER (SONAME change)
cab3ac0
Leigh Scott 9586e4d
* Wed Feb 19 2020 Leigh Scott <leigh123linux@gmail.com> - 0.5.7-15
Leigh Scott 9586e4d
- Rebuilt for OpenCV 4.2
Leigh Scott 9586e4d
8964dbf
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.7-14
8964dbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8964dbf
77a793b
* Tue Jan 28 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.5.7-13
77a793b
- Rebuilt for OpenCV 4.2
77a793b
f53d62f
* Mon Jan 27 2020 Nicolas Chauvet <kwizart@gmail.com> - 0.5.7-12
f53d62f
- Fix for OpenCV4
f53d62f
db21e1e
* Sun Dec 29 2019 Nicolas Chauvet <kwizart@gmail.com> - 0.5.7-11
7c5177f
- Rebuilt for opencv4
7c5177f
33882ac
* Tue Sep 17 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.5.7-9
33882ac
- Rebuilt for new freeglut
33882ac
2e56980
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.5.7-8
2e56980
- Rebuilt for Python 3.8
2e56980
cabca34
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.7-7
cabca34
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
cabca34
3f26cae
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.7-6
3f26cae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3f26cae
6933729
* Sun Jan 20 2019 Rich Mattes <richmattes@gmail.com> - 0.5.7-5
6933729
- Remove Python 2 support (#1634715)
6933729
122525e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.7-4
122525e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
122525e
fc12df6
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.5.7-3
fc12df6
- Rebuilt for Python 3.7
fc12df6
937f2cc
* Sat May 26 2018 Rich Mattes <richmattes@gmail.com> - 0.5.7-2
937f2cc
- Re-enable OpenCV bindings (rhbz#1551748)
937f2cc
- Fix bogus obsoletes (rhbz#1537213)
937f2cc
- Update udev rule to allow device access to "video" group
937f2cc
1bee53d
* Mon Mar 05 2018 Adam Williamson <awilliam@redhat.com> - 0.5.7-1
1bee53d
- Bump to 0.5.7 (bug fixes)
1bee53d
- Disable openCV support for now (see #1551748)
cf0b818
f058c02
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-5
f058c02
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f058c02
77f59d2
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-4
77f59d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
77f59d2
56b966f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-3
56b966f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
56b966f
Igor Gnatenko fe0b270
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.5.5-2
Igor Gnatenko fe0b270
- Rebuild due to bug in RPM (RHBZ #1468476)
Igor Gnatenko fe0b270
5ab6bce
* Wed Mar 08 2017 Rich Mattes <richmattes@gmail.com> - 0.5.5-1
5ab6bce
- Update to release 0.5.5
5ab6bce
ada1020
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-5
ada1020
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ada1020
9b7109e
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.3-4
9b7109e
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
9b7109e
5815ddc
* Sat May 14 2016 Rich Mattes <richmattes@gmail.com> - 0.5.3-3
5815ddc
- Rebuild for opencv-3.1 changes
5815ddc
ed16f5b
* Mon May 02 2016 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.5.3-2
ed16f5b
- Rebuild for opencv-3.1.0.
ed16f5b
dde914a
* Sun Feb 21 2016 Rich Mattes <richmattes@gmail.com> - 0.5.3-1
dde914a
- Update to release 0.5.3 (rhbz#1272803)
dde914a
- Fix rawhide FTBFS (rhbz#1307722)
dde914a
- Patch freenct-cppview to catch exception when no freenect device is present (rhbz#1310356)
dde914a
6b38318
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-6
6b38318
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6b38318
9378b50
* Sat Sep 26 2015 Rich Mattes <richmattes@gmail.com> - 0.5.2-5
9378b50
- Add dependency on numpy (rhbz#1265472)
9378b50
9c77ad6
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-4
9c77ad6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9c77ad6
cf718d0
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.5.2-3
cf718d0
- Rebuilt for GCC 5 C++11 ABI change
cf718d0
56a14f2
* Wed Mar 04 2015 Rich Mattes <richmattes@gmail.com> - 0.5.2-1
e222c04
- Add patch for s390 and ppc (rhbz#1143912)
e222c04
e222c04
* Wed Mar 04 2015 Rich Mattes <richmattes@gmail.com> - 0.5.2-1
56a14f2
- Update to release 0.5.2 (rhbz#1160258)
56a14f2
Jiri Kastner e8d69da
* Tue Aug 19 2014 Jiri Kastner <jkastner /at/ redhat /dot/ com> - 0.5.0-1
Jiri Kastner e8d69da
- update to release 0.5.0 (rhbz#1124171)
Jiri Kastner e8d69da
- Move openni plugin to libdir/openni2/Drivers (rhbz#1094787)
Jiri Kastner e8d69da
 
062dd31
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.3-3
062dd31
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
062dd31
e2eaa91
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.3-2
e2eaa91
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e2eaa91
04dd1d3
* Sun Jun 01 2014 Rich Mattes <richmattes@gmail.com> - 0.4.3-1
04dd1d3
- Update to release 0.4.3
04dd1d3
- Move openni plugin to libdir/openni2/ (rhbz#1094787)
04dd1d3
7373ead
* Mon May 05 2014 Rich Mattes <richmattes@gmail.com> - 0.4.2-1
7373ead
- Update to release 0.4.2
7373ead
- Add platform detection for aarch64
7373ead
8454871
* Fri May 02 2014 Rich Mattes <richmattes@gmail.com> - 0.4.1-1
8454871
- Update to release 0.4.1
8454871
8454871
* Fri Nov 22 2013 Rich Mattes <richmattes@gmail.com> - 0.2.0-1
8454871
- Update to release 0.2.0
8454871
8daa8ce
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-6
8daa8ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8daa8ce
20ef943
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-5
20ef943
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
20ef943
1259981
* Wed Jan 09 2013 Dan Horák <dan[at]danny.cz> - 0.1.2-4
1259981
- fixes for secondary arches
1259981
b24a346
* Sat Nov 10 2012 Rich Mattes <richmattes@gmail.com> - 0.1.2-3
b24a346
- Rebuild for new OpenCV
b24a346
8efccae
* Wed Aug 15 2012 Rich Mattes <richmattes@gmail.com> - 0.1.2-2
8efccae
- Filtered private python lib provides
8efccae
- Clarified that freenect_generate_tarball.sh works with a git tag
8efccae
8efccae
* Thu Apr 26 2012 Rich Mattes <richmattes@gmail.com> - 0.1.2-1
8efccae
- Update to git tag 0.1.2
8efccae
- Create OpenCV wrapper sub-package
8efccae
- Create fakenect library sub-package
8efccae
8454871
* Thu Mar 24 2011 Rich Mattes <richmattes@gmail.com> - 0-0.3.4a159fgit
8efccae
- Force cmake to honor rpm optflags
8efccae
- Change to out-of-tree build
8efccae
8454871
* Thu Mar 24 2011 Rich Mattes <richmattes@gmail.com> - 0-0.2.4a159fgit
8efccae
- Update to latest snapshot
8efccae
8efccae
* Mon Jan 31 2011 Rich Mattes <richmattes@gmail.com> - 0-0.1.687b2da5git
8efccae
- Initial package
8efccae