source: projects/specs/trunk/b/blender/blender-vl.spec @ 9487

Revision 9487, 36.6 KB checked in by Takemikaduchi, 9 years ago (diff)

libgit2: add BR
libgit2-glib: rebuild
gitg, http-parser: new package
audit: create compat32 package
others: new upstream release

Line 
1%global blender_api 2.74
2%global blender_fontdir %{_datadir}/fonts/blender
3%global blenderlib  %{_datadir}/blender/%{blender_api}
4%global blenderarch %{_libdir}/blender/%{blender_api}
5
6%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
7
8Summary:       3D modeling, animation, rendering and post-production.
9Summary(ja):   3D モデリング、アニメーション、レンダリング、ポストプロダクション
10Name:           blender
11Version:        %{blender_api}
12Release:        1%{?_dist_release}
13Group:          Applications/Multimedia
14License:        GPL
15URL:            http://www.blender.org/
16Source0:        http://download.blender.org/source/blender-%{version}.tar.gz
17Source5:        blender.xml
18
19
20BuildRoot:      %{_tmppath}/%{name}-%{version}-root
21BuildRequires:  desktop-file-utils
22BuildRequires:  esound-devel
23BuildRequires:  glut-devel
24BuildRequires:  gettext-devel
25BuildRequires:  libjpeg-turbo-devel
26BuildRequires:  libogg-devel
27BuildRequires:  libpng-devel
28BuildRequires:  libtiff-devel
29BuildRequires:  openjpeg-devel
30BuildRequires:  libtool
31BuildRequires:  libvorbis-devel
32BuildRequires:  freealut-devel
33BuildRequires:  SDL-devel
34BuildRequires:  libsndfile-devel
35BuildRequires:  jack-audio-connection-kit-devel
36BuildRequires:  libuuid-devel
37BuildRequires:  openssl-devel
38BuildRequires:  python3-devel
39BuildRequires:  cmake
40BuildRequires:  SDL-devel
41BuildRequires:  zlib-devel
42BuildRequires:  libXi-devel
43BuildRequires:  xorg-x11-proto-devel
44BuildRequires:  mesa-libGL-devel
45BuildRequires:  mesa-libGLU-devel
46BuildRequires:  freetype-devel
47BuildRequires:  OpenEXR-devel
48BuildRequires:  OpenImageIO-devel
49BuildRequires:  OpenColorIO-devel
50BuildRequires:  glew-devel
51BuildRequires:  freetype2-devel
52BuildRequires:  fftw3-devel
53BuildRequires:  libspnav-devel
54BuildRequires:  libboost-devel
55BuildRequires:  libboost-filesystem
56BuildRequires:  libboost-regex
57BuildRequires:  libboost-system
58BuildRequires:  libboost-thread
59BuildRequires:  libboost-date-time
60BuildRequires:  libboost-locale
61
62Requires(postun,posttrans): desktop-file-utils
63Requires(postun,posttrans): shared-mime-info
64Requires(postun,posttrans): gtk2
65
66Vendor: Project Vine
67Distribution: Vine Linux
68Packager: Takemikaduchi
69
70%description
71Blender is an integrated suite of tools enabling the creation of a broad
72range of 3D content. It offers full functionality for modelling, rendering,
73animation, post-production, creation and playback of interactive 3D content
74with the singular benefits of cross-platform operability.
75
76Aimed at media professionals and artists, Blender can be used to create 3D
77visualizations, stills as well as broadcast quality video, while the
78incorporation of a real-time 3D engine allows for the creation of 3D
79interactive content for stand-alone playback.
80
81%description -l ja
82Blender は、幅広い 3D コンテンツの製作を可能にする統合ソフトウェアです。
83Blender は、モデリング、レンダリング、アニメーション、ポストプロダクション、
84インタラクティブな 3D コンテンツの製作と再生といった全機能を、複数の OS への
85対応という他には類のない利点と共に提供しています。
86
87Blender は、メディアの専門家や達人もターゲットにしているので、3D の視覚化や、
88良質なテレビ放送映像や静止画像の作成にも使用できます。さらに、リアルタイム
893D エンジンを統合したことにより、スタンドアロン再生用のインタラクティブな
903D コンテンツの製作も可能です。
91
92%prep
93%setup -q -n %{name}-%{version}
94
95find -name '.svn' -print | xargs rm -rf
96
97%build
98mkdir cmake-make
99cd cmake-make
100export CFLAGS="$RPM_OPT_FLAGS -fPIC -funsigned-char -fno-strict-aliasing"
101export CXXFLAGS="$CFLAGS"
102cmake .. -DCMAKE_INSTALL_PREFIX=%{_prefix} \
103%ifnarch %{ix86} x86_64
104  -DWITH_RAYOPTIMIZATION=OFF \
105  %endif
106  -DCMAKE_SKIP_RPATH=ON \
107  -DBUILD_SHARED_LIBS=OFF \
108  -DWITH_FFTW3:BOOL=ON \
109  -DWITH_JACK:BOOL=ON \
110  -DWITH_CODEC_SNDFILE:BOOL=ON \
111  -DWITH_IMAGE_OPENJPEG:BOOL=ON \
112  -DWITH_CYCLES:BOOL=ON \
113  -DWITH_FFTW3:BOOL=ON \
114  -DWITH_MOD_OCEANSIM:BOOL=ON \
115  -DWITH_PYTHON:BOOL=ON \
116  -DPYTHON_VERSION:STRING=3.4 \
117  -DWITH_PYTHON_INSTALL:BOOL=OFF \
118  -DWITH_CODEC_FFMPEG:BOOL=OFF \
119  -DWITH_GAMEENGINE:BOOL=ON \
120  -DWITH_CXX_GUARDEDALLOC:BOOL=OFF \
121  -DWITH_INSTALL_PORTABLE=OFF \
122  -DWITH_PYTHON_SAFETY=ON \
123  -DWITH_PLAYER=ON \
124  -DWITH_MEM_JEMALLOC=ON \
125  -DBOOST_ROOT=%{_prefix}
126
127make VERBOSE=1 # %{?_smp_mflags}
128
129
130
131%install
132rm -rf ${RPM_BUILD_ROOT}
133cd cmake-make
134make install DESTDIR=${RPM_BUILD_ROOT}
135cd ..
136
137#
138# Create empty %%{_libdir}/blender/scripts to claim ownership
139#
140
141mkdir -p ${RPM_BUILD_ROOT}%{blenderarch}/{scripts,plugins/sequence,plugins/texture}
142
143find release/datafiles/locale -name '.svn' -exec rm -f {} ';'
144
145cp -R -a -p release/scripts/* ${RPM_BUILD_ROOT}%{blenderlib}/scripts
146
147find ${RPM_BUILD_ROOT}%{blenderlib}/scripts -type f -exec sed -i -e 's/\r$//g' {} \;
148
149# Install hicolor icons.
150for i in 16x16 22x22 32x32 48x48 256x256 ; do
151  mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/icons/hicolor/${i}/apps
152  install -pm 0644 release/freedesktop/icons/${i}/apps/%{name}.png \
153    ${RPM_BUILD_ROOT}%{_datadir}/icons/hicolor/${i}/apps/%{name}.png
154done
155
156mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/icons/hicolor/scalable/apps
157install -pm 0644 release/freedesktop/icons/scalable/apps/%{name}.svg \
158    ${RPM_BUILD_ROOT}%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
159
160install -p -D -m 644 %{SOURCE5} ${RPM_BUILD_ROOT}%{_datadir}/mime/packages/blender.xml
161
162desktop-file-validate ${RPM_BUILD_ROOT}%{_datadir}/applications/blender.desktop
163
164# Plugins are not support now
165rm -rf ${RPM_BUILD_ROOT}%{blenderarch}/plugins/*
166
167#
168# man page
169#
170
171mkdir -p ${RPM_BUILD_ROOT}/%{_mandir}/man1
172python3 doc/manpage/blender.1.py $RPM_BUILD_ROOT%{_bindir}/blender ${RPM_BUILD_ROOT}%{_mandir}/man1/blender.1
173#install -p -D -m 644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_mandir}/man1/
174
175rm -rf ${RPM_BUILD_ROOT}%{_bindir}/blender-thumbnailer.py
176
177rm -rf ${RPM_BUILD_ROOT}%{_docdir}/blender/*
178
179cp -aR release/datafiles/locale ${RPM_BUILD_ROOT}/%{blenderlib}/datafiles/
180
181rm -rf ${RPM_BUILD_ROOT}/%{blenderlib}/datafiles/fonts
182
183#
184# rpm macros
185#
186
187mkdir -p ${RPM_BUILD_ROOT}%{macrosdir}
188
189#sed -e 's/@VERSION@/%{blender_api}/g' %{SOURCE10} \
190#     >${RPM_BUILD_ROOT}%{macrosdir}/macros.blender
191
192mkdir -p ${RPM_BUILD_ROOT}/%{blender_fontdir}/
193cp -p release/datafiles/fonts/*.ttf.gz \
194        ${RPM_BUILD_ROOT}%{blender_fontdir}/
195
196
197
198%clean
199rm -rf ${RPM_BUILD_ROOT}
200
201
202%post
203touch --no-create %{_datadir}/icons/hicolor > /dev/null || :
204
205%postun
206if [ $1 -eq 0 ] ; then
207        touch --no-create %{_datadir}/icons/hicolor > /dev/null || :
208        gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null || :
209        update-desktop-database -q %{_datadir}/applications > /dev/null || :
210        update-mime-database %{_datadir}/mime > /dev/null || :
211fi
212
213%posttrans
214gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null || :
215update-desktop-database -q %{_datadir}/applications > /dev/null || :
216update-mime-database %{_datadir}/mime > /dev/null || :
217
218
219%files
220%defattr(-,root,root,-)
221%doc COPYING doc/license/*-license.txt
222%doc release/datafiles/LICENSE-bmonofont-i18n.ttf.txt
223%{_bindir}/blender
224%{_bindir}/blenderplayer
225%{_datadir}/applications/blender.desktop
226%{_datadir}/icons/hicolor/*/apps/%{name}.*
227%{_libdir}/blender/
228%{_datadir}/blender/
229%{_datadir}/mime/packages/blender.xml
230%{blender_fontdir}/
231%{_mandir}/man1/blender.*
232
233
234%changelog
235* Sun Apr 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.74-1
236- new upstream release
237
238* Sat Jan 24 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.73a-1
239- new upstream release
240
241* Sun Jan 18 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.73-1
242- new upstream release
243- add BuildRequires: fftw3-devel, libboost-devel, libspnav-devel, OpenImageIO-devel, OpenColorIO-devel, SDL-devel, libsndfile-devel, jack-audio-connection-kit-devel, libuuid-devel
244- change BuildRequires: python3-devel instead of pytnon-devel
245- change BuildRequires: cmake instead of scons
246- remove Source1,2,3,4
247- fix spec file based on fedora
248
249  * Thu Dec 30 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.49b-1
250  - new upstream release
251  - add BuildRequires: freetype2-devel
252
253  * Sat Nov 13 2010 Shu KONNO <owa@bg.wakwak.com> 2.49-2
254  - rebuilt with gettext-0.18
255
256  * Wed May 05 2010 Shu KONNO <owa@bg.wakwak.com> 2.49-1
257  - updated blender to 2.49
258  - applied new versioning policy, and spec in utf-8
259  - built without smp option
260  - disable OpenAL, FFMPEG at user-config.py
261  - added BR: libXi-devel xorg-x11-proto-devel mesa-libGL-devel mesa-libGLU-devel
262  - added BR: freetype-devel OpenEXR-devel glew-devel
263
264  * Mon Jan 02 2006 IKEDA Katsumi <ikeda@webmasters.gr.jp> 2.40-0vl2
265  - new upstream release.
266
267  * Sat Oct 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.35-0vl1
268  - initial build for Vine Linux
269
270* Thu Jan  8 2015 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.73-1
271- New upstream release
272
273* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> - 1:2.72b-4
274- rebuild (openexr)
275
276* Thu Nov  6 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.72b-3
277- Fix odd dependy issue
278
279* Sun Nov  2 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.72b-2
280- Fix dependency issue (#1157600)
281
282* Thu Oct 23 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.72b-1
283- New upstream release
284
285* Sat Oct 11 2014 Dan Horák <dan[at]danny.cz> - 1:2.72-3
286- fix size_t inconsistency (upstream issue T42183)
287
288* Thu Oct  9 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.72-2
289- Remove OpenCOLLADA patch
290
291* Tue Sep 30 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.72-1
292- New upstream release
293- Add patch to fix FTBFS with current OpenCOLLADA release
294
295* Sat Sep 06 2014 François Cami <fcami@fedoraproject.org> - 1:2.71-4
296- Rebuilt for openCOLLADA 0-19.git69b844d
297
298* Sat Aug 16 2014 Rex Dieter <rdieter@fedoraproject.org> 1:2.71-3
299- fix/update icon/mime scriptlets
300
301* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.71-2
302- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
303
304* Sun Jun 29 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.71-1
305- New upstream release
306- Use blender.1.py to build man page
307- Disable parallel build
308
309* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.70a-6
310- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
311
312* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1:2.70a-5
313- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
314
315* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 1:2.70a-4
316- Rebuild for boost 1.55.0
317
318* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1:2.70a-3
319- rebuild for boost 1.55.0
320
321* Wed May 21 2014 Richard Shaw <hobbes1069@gmail.com> - 1:2.70a-2
322- Rebuild for updated OpenImageIO 1.4.7.
323
324* Wed Apr 16 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.70a-1
325- Minor upstream update
326* Mon Mar 24 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.70-2
327- Disable CYCLES for non-Intel processors
328
329* Thu Mar 20 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.70-1
330- New upstream releasw
331- Exclude armv7hl
332
333* Sun Mar  9 2014 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.69-7
334- Use new rpm macro for rpm macro direcgory  (#1074263)
335
336* Mon Jan 13 2014 Richard Shaw <hobbes1069@gmail.com> - 1:2.69-6
337- Rebuild for updated OpenImageIO 1.3.11.
338
339* Tue Dec 31 2013 François Cami <fcami@fedoraproject.org> - 1:2.69-5
340- Enable parallel building.
341
342* Tue Dec 31 2013 François Cami <fcami@fedoraproject.org> - 1:2.69-4
343- Add Ocean Simulation (#1047589).
344- Fix mixed use of tabs and spaces in blender.spec (rpmlint).
345
346* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:2.69-3
347- rebuild (openexr)
348
349* Mon Nov 18 2013 Dave Airlie <airlied@redhat.com> - 1:2.69-2
350- rebuilt for GLEW 1.10
351
352* Thu Oct 31 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.69-1
353- New upsream release
354
355* Mon Sep  9 2013 François Cami <fcami@fedoraproject.org> - 1:2.68a-6
356- Rebuild.
357
358* Wed Sep  4 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.68a-5
359- Include derived DoridSans font for CJK support (#867205)
360
361* Sun Sep  1 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.68a-4
362- Aboid twice occurance of locale files
363- Fix typo in DroideSans font name
364
365* Wed Aug 28 2013 François Cami <fcami@fedoraproject.org> - 1:2.68a-3
366- Enable jemalloc and OpenColorIO. (#1002197)
367- Re-enable localization (#867285)
368
369* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.68a-2
370- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
371
372* Tue Jul 30 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.68a-1
373- New minor upstream bugfix release
374
375* Mon Jul 29 2013 Petr Machata <pmachata@redhat.com> - 1:2.68-4
376- Rebuild for boost 1.54.0
377
378* Tue Jul 23 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.68-3
379- Rebuilt again
380* Mon Jul 22 2013 Richard Shaw <hobbes1069@gmail.com> - 1:2.68-2
381- Rebuild for updated OpenImageIO.
382
383* Fri Jul 19 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.68-1
384- New upstream release
385
386* Sun Jul  7 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67b-3
387- Suppress output of update-mime-database (#541041)
388
389* Fri Jun  7 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67b-1
390- Minor upstream bugfix update
391
392* Mon Jun  3 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67a-3
393- Fix crash in blender/makerna/intern/rna_access.c (ä969043)
394
395* Sun May 26 2013 Dan Horák <dan[at]danny.cz> - 1:2.67a-2
396- fix build on non-x86 arches
397
398* Fri May 24 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67a-1
399- New minor upstream release
400
401* Fri May 17 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67-2
402- Fix dependency issues with fonts subpackage
403- Make fonts subpackage noarch
404
405* Wed May  8 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.67-1
406- New upstream release
407- Add subpackage for international mono space font
408
409* Sun Mar 10 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:2.66a-2
410- rebuild (OpenEXR)
411
412* Wed Mar  6 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.66a-1
413- New upstream release
414
415* Sat Feb 23 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.66-2
416- Fix wrong font name for international feature (#867205)
417
418* Thu Feb 21 2013 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.66-1
419- New upstream release
420- Remove unnecessaries patches
421- Add Patch to remove '//' in includes
422
423* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1:2.65a-5
424- Rebuild for Boost-1.53.0
425
426* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1:2.65a-4
427- Rebuild for Boost-1.53.0
428
429* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1:2.65a-3
430- rebuild due to "jpeg8-ABI" feature drop
431
432* Tue Jan 15 2013 Richard Shaw <hobbes1069@gmail.com> - 1:2.65a-2
433- Rebuild for updated OpenImageIO library.
434* Thu Dec 20 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.65a-1
435- New upstream release
436
437* Sat Dec 15 2012 Jochen Schmitt <JOchen herr-schmitt de> - 1:2.65-4
438- Fix SEGFAULT in blf_lang.c (#887413)
439
440* Fri Dec 14 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.65-3
441- Remove Req. to the DejaVu Sans font
442
443* Thu Dec 13 2012 Adam Jackson <ajax@redhat.com> - 1:2.65-2
444- Rebuild for glew 1.9.0
445
446* Tue Dec 11 2012 Jochen Schmitt <Jochen herr schmitt de> - 1:2.65-1
447- New upstream release
448
449* Mon Oct 29 2012 Dan Horák <dan[at]danny.cz> - 1:2.64a-3
450- fix build on big endian arches
451
452* Thu Oct 18 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.64a-2
453- Loading droid-sans font from /usr/share/fonts (#867205)
454
455* Tue Oct  9 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.64a-1
456- New minor upstream update release
457
458* Fri Oct  5 2012 Dan Horák <dan[at]danny.cz> - 1:2.64-2
459- fix build on non-x86 64-bit arches
460
461* Wed Oct  3 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.64-1
462- New upstream release
463
464* Fri Sep  7 2012 Jochen Schmitt <JOchen herr-schmitt de> - 1:2.63a-10
465- Add forgotten O_EXCL to CVE-patch
466
467* Thu Sep  6 2012 Jochen Schmitt <JOchen herr-schmitt de> - 1:2.63a-8
468- Porting blender-2.49b-cve.patch (#855092, CVE-2008-1103)
469
470* Fri Aug 10 2012 Richard Shaw <hobbes1069@gmail.com> - 1:2.63a-7
471- Rebuild for libboost 1.50.
472
473* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1:2.63a-6
474- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
475
476* Wed Aug 01 2012 Adam Jackson <ajax@redhat.com> - 1:2.63a-5
477- -Rebuild for new glew
478
479* Sun Jul 29 2012 Jochen Schmitt <Jochen herr-schmitt de> - 1:2.63a-4
480- Rebult to fix broken dependencies
481
482* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.63a-3
483- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
484
485* Tue Jun 26 2012 Richard Shaw <hobbes1069@gmail.com> 1:2.63a-2
486- Bump revision to be >= f17 for AutoQA.
487
488* Fri May 11 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.63a-1
489- New upstream release
490* Fri Apr 27 2012 Jochen Schmitt <JOchen herr-schmitt de> 1:2.63-1
491- New upstream release
492
493* Wed Apr 25 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.62-6
494- Fix crash in libspnav (#814665)
495
496* Tue Apr 24 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.62-5
497- Add cycles support (#812354)
498
499* Fri Apr 13 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.62-4
500- Add BR to libspnav-devel
501
502* Sun Mar 18 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.62-3
503- Rebuild for new OpenImageIO release
504
505* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 1:2.62-2
506- Rebuilt for c++ ABI breakage
507
508* Thu Feb 16 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.62-1
509- New upstream release
510
511* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> 1:2.61-6
512- Rebuild against PCRE 8.30
513
514* Thu Feb 09 2012 Rex Dieter <rdieter@fedoraproject.org> 1:2.61-5
515- rebuild (openjpeg)
516
517* Thu Feb  9 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.61-4
518- Remove unnecessary gcc-4.5 patch
519
520* Wed Feb  8 2012 Jochen Schmitt <Jochen herr-schmitt de> 1:2.61-3
521- Fix gcc-4.7 related issue
522
523* Thu Jan  5 2012 Jochen Schmitt <JOchen herr-schmitt de> 1:2.61-2
524- Fix typo in syspth patch (#771814)
525
526* Wed Dec 14 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.61-1
527- New upstream release
528- Add OpenImageIO-devel as a BR
529- Package cleanup
530
531* Wed Nov 23 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-8
532- Set BuildArch to noarch for blender-rpm-macros
533
534* Wed Nov 23 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-7
535- Remove %%blender_requires and %%blenderplayer_requires entirely
536
537* Wed Nov 23 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-6
538- Futher rework on macros.blender
539- Add explicit BR to boost-devel
540
541* Mon Nov 21 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-4
542- Fix error in macros.blender, add %%blendert_addons
543* Mon Nov  7 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-3
544- Rebuilt for new openCOLLADA release
545
546* Tue Nov  1 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-2
547- Rebuilt for new openCOLLADA release
548
549* Wed Oct 26 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60a-1
550- New upstream release
551
552* Wed Oct 19 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.60-1
553- New upstream release
554
555* Sun Aug 14 2011 Jochen Schmitt <JOchen herr-schmitt de> 1:2.59-1
556- New upstream release
557
558* Thu Aug 11 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-6
559- Fix issues with blneder_requires macro
560
561* Tue Aug  9 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-5
562- Suppres python byte compiling
563- Add additional codecs
564
565* Sun Aug  7 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-4
566- Add man page for blenderplayer
567- Add support for openCOLLADA
568- Remove debugging statement from syspath patch
569
570* Mon Aug  1 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-3
571- Cleanup
572
573* Mon Aug  1 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-2
574- Remove scons configuration file
575
576* Sun Jul 10 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58a-1
577- New upstream release with minor bug fixes
578
579* Thu Jun 30 2011 Jochen Schmitt <Jochen herr schmitt.de>  1:2.58-4
580- Rework on cmake build
581
582* Mon Jun 27 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58-3
583- Migrating to the cmake build system
584
585* Mon Jun 27 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.58-2
586- New upstream release
587
588* Mon Jun 20 2011 ajax@redhat.com - 1:2.57b-5
589- Rebuild for new glew soname
590
591* Tue May 17 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57b-4
592- Add virtual provides for blenderplayer(ABI)
593
594* Tue May 17 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57b-3
595- Add virtual provides for blender ABI
596
597* Tue May 17 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57b-2
598- Definition of blender_api macro
599
600* Fri Apr 29 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57b-1
601- New minor upstream update
602
603* Wed Apr 27 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57-3
604- Add patch to solve CVE-2009-3850 (#5333395)
605
606* Sat Apr 16 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57-2
607- Add plugin directory
608- Add locale
609
610* Thu Apr 14 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.57-1
611- First non-beta release of the 2.5 series (taken from svn)
612
613* Wed Apr 13 2011 Jochen Schmitt <Jochen herr-schmitt de> 1:2.56-12.svn36007%{?dist}
614- Increase Epoch
615- Add rpm-macros subpackage
616- Exclude currently unsed directories (plugin support)
617
618* Sun Apr 10 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-11.svn36007%{?dist}
619- Add accidently removed files
620
621* Thu Apr  7 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-10.svn36007%{?dist}
622- Change compiler flags to fixed UI issue (#671284)
623- Exclude plugin directory (not supported in current release)
624
625* Wed Apr  6 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-9.svn36007%{?dist}
626- New upstream release
627- Missing UI issue fixed (#671284)
628
629* Wed Mar 23 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-8.svn35722%{?dist}
630- Update to snapshot svn35722
631
632* Tue Feb 08 2011 Paulo Roma <roma@lcg.ufrj.br> - 2.56-7
633- Rebuilt without linking to libgettextlib (bugzilla #650471).
634- Applied gcc46 patch
635
636* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.56-6
637- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
638
639* Wed Jan 19 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-5
640- Remove ref to #extern/glew/include from all scons files
641
642* Wed Jan 19 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-4
643- Readd blenderplayer subpackage
644
645* Wed Jan 19 2011 Jochen Schmitt <Jochen herr-schmitt de> 2.56-3
646- Fix RPM_OPT_FLAGS honour issue
647
648* Wed Jan 19 2011 Dan Horák <dan[at]danny.cz> 2.56-2
649- use SSE optimization only on x86 platforms
650* Wed Jan 12 2011 Rex Dieter <rdieter@fedoraproject.org> 2.49b-11
651- rebuild (openjpeg)
652
653* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> 2.49b-10
654- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
655
656* Mon Jun 21 2010 Nicolas Chauvet <kwizart@gmail.com> 2.49b-9
657- Rebuild for gettext
658
659* Wed May 26 2010 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-8
660- Add large file support for 32-bit plattforms (#585668)
661
662* Thu Apr  8 2010 Jochen Schmitt <s4504kr@omega> 2.49b-7
663- Remove unused BR fontpackages-devel
664
665* Sun Mar 28 2010 Jochen Schmitt <s4504kr@omega> 2.49b-6
666- Try to fix copy of userid into files.owner (#572186)
667
668* Wed Jan 13 2010 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-5
669- Add forgotten patch
670
671* Wed Jan 13 2010 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-4
672- Fix O_CREAT issue on existing quit.blend file (#553959)
673- Move quit.blend to ~/.blender
674
675* Mon Nov 23 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-3
676- Remove symlink to DejaVu font from package
677
678* Thu Nov 12 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-2
679- Rebuild
680
681* Mon Sep  7 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49b-1
682- New upstream release (#520780)
683
684* Tue Aug 11 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49a-6
685- Build again new freealut relase (openalut-soft)
686
687* Mon Aug  3 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49a-5
688- Revoke using of system FTGL library
689
690* Mon Aug  3 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49a-4
691- Rebuild for python-2.6.2
692
693* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 2.49a-3
694- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
695
696* Mon Jul  6 2009 kwizart < kwizart at gmail.com > 2.49a-2
697- Fix perm on blend2renderinfo.py - raised by #506957
698
699* Fri Jun 19 2009 kwizart < kwizart at gmail.com > 2.49a-1
700- Update to 2.49a
701* Fri Jun 19 2009 kwizart < kwizart at gmail.com > 2.49-6
702- Update blender-wrapper script.
703- Repackage the sources archive.
704- Remove deprecated import/export-3ds-0.7.py
705- Pick desktop and icons from tarball and use hicolor icons.
706- Hack config.py to add system libqhull along with gettexlib.
707
708* Fri Jun 12 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49-5
709- Fix Type
710- Change symlink to %%{_fontbasedir}/Dejavu/...
711
712* Wed Jun  3 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49-4
713- Rework on the blender wrapper script
714
715* Tue Jun  2 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49-3
716- Try to build agains more system libraries as possible
717
718* Mon Jun  1 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.49-1
719- New upstream release
720
721* Wed May 13 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-22
722- Copy bpydata/config/* into ~/.blender/.../bpydata/config in blender-wrapper script
723
724* Mon Apr 20 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-21
725- Chamge BR mesa-libGL* into libGL*
726
727* Mon Apr 20 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-20
728- Remove x264 from source tar ball
729- Some cosmetic changes
730
731* Wed Apr  1 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-19
732- Change nonfree to freeworld
733
734* Tue Mar 31 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-18
735- Fix typo
736
737* Tue Mar 31 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-17
738- Create drop-in for non-free blender release
739
740* Wed Mar 11 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-16
741- Put blenderplayer into a separate subpackage (#489685)
742
743* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.48a-15
744- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
745
746* Tue Feb 17 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-14
747- Fix broken wrapper script
748
749* Wed Jan 21 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-13
750- Do some fixes on blender-wrapeer
751
752* Sun Jan 18 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-12
753- Change Req. for font package because fonts naming was changed (#480444)
754
755* Thu Jan 15 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-11
756- Rebuild for new openssl package
757* Sun Jan 11 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-10
758- Create symlink to DajaVu-Sans
759
760* Tue Jan  6 2009 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-9
761- Create fonts sub-package (#477370)
762
763* Sat Dec 27 2008 Lubomir Rintel <lkundrak@v3.sk> 2.48a-7
764- Fix optflags use, this time for real
765
766* Sat Dec 27 2008 Lubomir Rintel <lkundrak@v3.sk> 2.48a-6
767- Use proper compiler flags (see #199418)
768- Minor grammar & language fixes and tidy-ups
769
770* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 2.48a-5
771- Rebuild for Python 2.6
772
773* Mon Nov  3 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-4
774- Fix security issue (#469655, CVE-2008-4863)
775[5~
776* Sun Oct 26 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-3
777- Create %%{_libdir}/blender/scripts/ to claim ownership
778
779* Sun Oct 26 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.48a-1
780- New upstream release
781
782* Wed Oct 15 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.48-1
783- New upstream release
784- Build agains system glew library (#466755)
785
786* Tue Oct  7 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.47-5
787- Reorganisation directory structure to fix sysinfo.py issue
788
789* Tue Oct  7 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.47-4
790- Avoid duplicate python script (#465810)
791
792* Sun Sep  7 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.47-3
793- Fix prerelease SPEC file
794
795* Thu Aug 14 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.47-1
796- New upstream release
797
798* Tue Aug 12 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.47-0.2
799- New upstream release (blender-2.47rc)
800
801* Mon May 19 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.46-1
802- New upstream release
803
804* Wed May  7 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.46-0.3.1
805- Some fixes for CVE-2008-1003
806
807* Tue May  6 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.46-0.3
808- Release Canditate for 2.46
809
810* Sun Apr 27 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-13
811- More generic patch for scons issue
812* Thu Apr 24 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-12
813- Fix odd scons compatibility issue
814
815* Thu Apr 24 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-11
816- Fix CVS-2008-1102 (#443937)
817
818* Wed Mar 12 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-10
819- Clarification of restrictions caused by legal issues
820
821* Tue Mar  4 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-9
822- Apply yafray patch only on 64-bit systems
823
824* Thu Feb 28 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-8
825- Fix yafray load bug (#451571)
826
827* Sun Feb 10 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-7
828- Rebuild for gcc-4.3
829
830* Sat Jan 26 2008 Alex Lancaster <alexlan[AT]fedoraproject org> 2.45-6
831- Rebuild for new gettext
832
833* Thu Jan 17 2008 Jochen Schmitt <Jochen herr-schmitt de> 2.45-5
834- Fix gcc-4.3 related issues
835
836* Tue Oct 16 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.45-4
837- Rebuild again for OpenEXR
838
839* Sun Oct 14 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.45-3
840- Rebuild
841
842* Sun Sep 23 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.45-2
843- Change method how to determinate python version
844
845* Thu Sep 20 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.45-1
846- New upstream release
847
848* Thu Aug  9 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.44-8
849- Fix koji-python issue
850
851* Wed Aug  8 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.44-6
852- Changing license tag
853- Add python as an BR
854
855* Mon May 21 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.44-4
856- Use of $$RPM_OPT_FLAGS to compile blender
857
858* Sun May 20 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.44-2
859- Increase release number
860
861* Tue May 15 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.44-1
862- New upstream release
863
864* Wed May  9 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-24
865- Remove ffmpeg lib during a legal issue (#239476)
866
867* Tue May  8 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-23
868- Exclude ppc64 arch
869* Mon May  7 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-21
870- Fix security issue (#239338)
871
872* Sun Apr 22 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-20
873- Romove package from the x86_64 arch (#237423)
874
875* Mon Jan  8 2007 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-18
876- Rebult
877
878* Thu Dec 14 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-17
879- Replace x86-patch with one from the blender project
880
881* Thu Dec 14 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-16
882- Rebuild
883
884* Tue Dec 12 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-12
885- Fix typo
886
887* Tue Dec 12 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-11
888- Try x64-patch for complle with python-2.5
889
890* Tue Dec 12 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-10
891- Exclude x86_64 arch (#219329)
892
893* Mon Dec 11 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-9
894- New build to solve broken deps
895
896* Wed Nov 29 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-6
897- Rebuild to solve broken deps
898
899* Tue Oct 31 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-5
900- Rebuilt to fix broken deps
901
902* Mon Oct 16 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-4
903- /usr/lib/blender should own by the package
904
905* Wed Oct 11 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-3
906- Correct invalid locale paths (#210209)
907
908* Wed Sep 13 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42a-2
909- Update to new upstream release
910
911* Tue Sep 12 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-10
912- Rebuild to solve broken deps
913
914* Sun Sep  3 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-9
915- Rebuild for FC-6
916
917* Thu Aug 10 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-7
918- Remove %%ghost for pyo files for fullfilling new packaging guidelines
919
920* Thu Aug 10 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-6
921- Rebuilt to solve broken deps
922* Wed Jul 26 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-5
923- Fix symlink in blender-wrapper to locale
924
925* Thu Jul 20 2006 Jochen Schmitt <jochen herr-schmitt de> 2.42-4
926- Fix UI Problem (#199418)
927
928* Mon Jul 17 2006 Jochen Schmitt <jochen herr-schmitt de> 2.42-3
929- Fix some BR stuff.
930
931* Sun Jul 16 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.42-1
932- New upstream release.
933
934* Sun Feb 19 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.41-3
935- Rebuild for FC-5.
936
937* Mon Feb  6 2006 Jochen Schmitt <Jochen herr-schmitt.de> 2.41-2
938- Add freealut as dependancy.
939
940* Mon Jan 30 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.41-1
941- Update to new upstream release.
942
943* Wed Jan 18 2006 Jochen Schmitt <Jochen herr-schmitt de> 2.40-2
944- New upstream release.
945- adapting to mudular X.
946- add libtiff-devel as BuildRequires.
947
948* Mon Jun 6 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.37-3
949- Bump release for development.
950
951* Sun Jun 5 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.37-2
952- Patch to fix compilation errors on x86_64.
953
954* Sun Jun 5 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.37-1
955- Update to 2.37.
956- Drop gcc4 patch.
957
958* Mon May 16 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.36-3
959- Bump and rebuild now that scons is available on all platforms.
960
961* Sat May 14 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.36-2
962- Fix a gcc4 error.
963
964* Fri May 13 2005 Toshio Kuratomi <toshio-tiki-lounge.com> 2.36-1
965- Update to 2.36.
966- Rebuild with new gcc4.
967
968* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
969- rebuilt
970
971* Mon Nov 15 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 2.35-1
972- 2.35.
973
974* Thu Nov 11 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 2.34-0.fdr.3
975- Mime-type corrections for FC3.
976- Dropped redundent BR XFree86-devel.
977
978* Thu Aug 05 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.34-0.fdr.2
979- blender.applications file.
980- blender.xml file.
981- post/postun update-mime-database.
982
983* Thu Aug 05 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.34-0.fdr.1
984- Updated to 2.34.
985
986* Thu Aug 05 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.33-0.fdr.2.a
987- Include 3ds import/export scripts.
988- Added mime info.
989- Added mime icon (from yattacier theme).
990
991* Wed Aug 04 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.33-0.fdr.1.a
992- 2.33a.
993- Now building with scons.
994
995* Tue Feb 10 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.32-0.fdr.2
996- Now including scripts.
997
998* Thu Feb 05 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.32-0.fdr.1
999- Updated to 2.32.
1000
1001* Sun Jan 11 2004 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.31-0.fdr.3.a
1002- --enable-openal.
1003- --disable-rpath.
1004- remove --enable-international.
1005- modify .desktop to execute with -w.
1006
1007* Thu Dec 04 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.31-0.fdr.2.a
1008- Updated to 2.31a.
1009
1010* Sun Nov 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.31-0.fdr.1
1011- Updated to 2.31.
1012- enable-international.
1013
1014* Tue Nov 18 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.30-0.fdr.1
1015- Updated to 2.30.
1016
1017* Fri Oct 10 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28-0.fdr.5.c
1018- Updated to 2.28c.
1019
1020* Tue Oct 07 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28-0.fdr.4.a
1021- Removed BuildReq smpeg-devel
1022
1023* Mon Sep 15 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28-0.fdr.3.a
1024- Moved 'a' out of version according to naming guidelines.
1025
1026* Fri Sep 12 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28a-0.fdr.2
1027- changed file permission on tarball.
1028- dropped redundant messages about aclocal, etc.
1029- configure --disable-shared.
1030- automake --foreign.
1031- added doc/python-dev-guide.txt doc/GPL-license.txt doc/bf-members.txt to %%doc.
1032
1033* Wed Sep 10 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28a-0.fdr.1
1034- Updated to 2.28a.
1035
1036* Wed Aug 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28-0.fdr.2
1037- New Icon.
1038
1039* Thu Jul 24 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.28-0.fdr.1
1040- Updated to 2.28.
1041- BuildReq libvorbis-devel.
1042- BuildReq smpeg-devel.
1043- BuildReq esound-devel.
1044- BuildReq libogg-devel.
1045- BuildReq vorbis-tools.
1046- BuildReq openal-devel
1047- BuildReq libtool
1048
1049* Mon May 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.27-0.fdr.2
1050- Removed post/postun ldconfig.
1051- Added autoconf workaround.
1052
1053* Mon May 19 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.27-0.fdr.1
1054- Updated to 2.27.
1055- Removed devel package.
1056
1057* Wed Apr 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.26-0.fdr.9
1058- Corrected devel Group.
1059
1060* Tue Apr 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.26-0.fdr.8
1061- Added desktop-file-utils to BuildRequires.
1062- Changed category to X-Fedora-Extra.
1063
1064* Mon Mar 31 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.26-0.fdr.7
1065- Added Missing BuildRequires.
1066
1067* Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:2.26-0.fdr.6
1068- Cleaned up BuildRequires.
1069- Added Epoch:0.
1070
1071* Sat Mar 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 2.26-0.fdr.5
1072- Spec file cleanup.
1073
1074* Sat Mar 08 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 2.26-1.fdr.4
1075- Spec file cleanup.
1076
1077* Wed Feb 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 2.26-1.fedora.3
1078- Spec file cleanup.
1079
1080* Thu Feb 20 2003 Warren Togami
1081- Add BuildRequires python-devel
1082
1083* Wed Feb 19 2003 Phillip Compton
1084- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.