-
Notifications
You must be signed in to change notification settings - Fork 5
/
codeblocks.spec.fedora.in
624 lines (491 loc) · 20 KB
/
codeblocks.spec.fedora.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
%global svnrev @REVISION@
Name: codeblocks
Version: 20.03.svn.%{svnrev}
Release: 1%{?dist}
Summary: An open source, cross platform, free C++ IDE
License: GPLv3+
URL: http://www.codeblocks.org/
Source0: %{name}-@[email protected]
BuildRequires: libtool
BuildRequires: wxGTK-devel
BuildRequires: zlib-devel
BuildRequires: bzip2-devel
BuildRequires: tinyxml-devel
BuildRequires: libICE-devel
BuildRequires: boost-devel
BuildRequires: hunspell-devel
BuildRequires: squirrel-devel
%if 0%{?fedora}
BuildRequires: astyle-devel
BuildRequires: libappstream-glib
%endif
BuildRequires: zip
BuildRequires: dos2unix
BuildRequires: desktop-file-utils
Requires: %{name}-libs = %{version}-%{release}
Requires: shared-mime-info
Requires: xterm
Provides: bundled(wxScintilla) = 3.53.0
%global pkgdatadir %{_datadir}/%{name}
%global pkglibdir %{_libdir}/%{name}
%global plugindir %{pkglibdir}/plugins
%global __provides_exclude_from ^%{plugindir}/.*\\.so$
%description
Code::Blocks is a free C++ IDE built specifically to meet the most demanding
needs of its users. It was designed, right from the start, to be extensible
and configurable. Built around a plug-in framework, Code::Blocks can be
extended with plug-in DLLs. It includes a plugin wizard, so you can compile
your own plug-ins.
%package libs
Summary: Libraries needed to run Code::Blocks and its plug-ins
%description libs
Libraries needed to run Code::Blocks and its plug-ins.
%package devel
Summary: Files needed to build Code::Blocks plug-ins
Requires: %{name}-libs = %{version}-%{release}
Requires: pkgconfig
%description devel
Development files needed to build Code::Blocks plug-ins.
%package contrib-libs
Summary: Libraries needed to run Code::Blocks contrib plug-ins
%description contrib-libs
Libraries needed to run Code::Blocks contrib plug-ins.
%package contrib-devel
Summary: Files needed to build Code::Blocks contrib plug-ins
Requires: %{name}-contrib-libs = %{version}-%{release}
%description contrib-devel
Development files needed to build Code::Blocks contrib plug-ins.
%package contrib
Summary: Additional Code::Blocks plug-ins
Requires: %{name} = %{version}-%{release}
Requires: %{name}-contrib-libs = %{version}-%{release}
%if 0
# not in Fedora yet
Requires: cccc
%endif
Requires: cppcheck
Requires: cscope
%ifnarch s390
Requires: valgrind
%endif
%description contrib
Additional Code::Blocks plug-ins.
%prep
%setup -q -n %{name}-@VERSION@
./bootstrap
# convert EOLs
find . -type f -and -not -name "*.cpp" -and -not -name "*.h" -and -not -name "*.png" -and -not -name "*.bmp" -and -not -name "*.c" -and -not -name "*.cxx" -and -not -name "*.ico" -exec dos2unix -q --keepdate {} \;
%build
%configure \
--with-contrib-plugins=all \
--with-boost-libdir=%{_libdir}
# remove unbundled stuff
rm -rf src/include/tinyxml src/base/tinyxml
rm -rf src/include/scripting/{include,squirrel,sqstdlib}
rm -rf src/sdk/scripting/{squirrel,sqstdlib}
%if 0%{?fedora}
#currently no Fedora has a recent enough astyle (at least 2.06 is needed), so keep the bundled one
#rm -rf src/plugins/astyle/astyle
%endif
rm -rf src/plugins/contrib/SpellChecker/hunspell
rm -rf src/plugins/contrib/devpak_plugin/bzip2
rm -rf src/plugins/contrib/help_plugin/{bzip2,zlib}
# Don't use rpath!
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
%make_install
%if 0%{?fedora}
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*.{appdata,metainfo}.xml
%endif
desktop-file-validate %{buildroot}/%{_datadir}/applications/codeblocks.desktop
rm -f %{buildroot}/%{_libdir}/*.la
rm -f %{buildroot}/%{_libdir}/%{name}/wxContribItems/*.la
rm -f %{buildroot}/%{plugindir}/*.la
# set a fixed timestamp (source archive creation) to generated resource archives
/bin/touch -r %{SOURCE0} %{buildroot}/%{pkgdatadir}/*.zip
# generate linker config file for wxContribItems libraries
mkdir -p %{buildroot}/%{_sysconfdir}/ld.so.conf.d
echo "%{_libdir}/%{name}/wxContribItems" > %{buildroot}/%{_sysconfdir}/ld.so.conf.d/%{name}-contrib-%{_arch}.conf
%post
/bin/touch --no-create %{_datadir}/mime/packages &> /dev/null || :
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
/usr/bin/update-desktop-database &> /dev/null || :
%postun
if [ $1 -eq 0 ]; then
/usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
/usr/bin/update-desktop-database &> /dev/null || :
%posttrans
/usr/bin/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%post contrib-libs -p /sbin/ldconfig
%postun contrib-libs -p /sbin/ldconfig
%files
%license COPYING
%doc README AUTHORS BUGS COMPILERS NEWS ChangeLog
%{_bindir}/*
%{_mandir}/man1/codeblocks.*.gz
%{_mandir}/man1/cb_console_runner.*.gz
%{_mandir}/man1/cb_share_config.*.gz
%dir %{pkglibdir}
%dir %{plugindir}
%{plugindir}/libAstyle.so
%{plugindir}/libabbreviations.so
%{plugindir}/libautosave.so
%{plugindir}/libclasswizard.so
%{plugindir}/libcodecompletion.so
%{plugindir}/libcompiler.so
%{plugindir}/libdebugger.so
%{plugindir}/libdefaultmimehandler.so
%{plugindir}/libDisplayEvents.so
%{plugindir}/liboccurrenceshighlighting.so
%{plugindir}/libopenfileslist.so
%{plugindir}/libprojectsimporter.so
%{plugindir}/libscriptedwizard.so
%{plugindir}/libtodo.so
%{_datadir}/metainfo/%{name}.appdata.xml
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/48x48/mimetypes/*.png
%{_datadir}/mime/packages/%{name}.xml
%{_datadir}/pixmaps/%{name}.png
%dir %{pkgdatadir}
%{pkgdatadir}/icons
%dir %{pkgdatadir}/images
%{pkgdatadir}/images/*.png
%{pkgdatadir}/images/settings
%{pkgdatadir}/lexers
%{pkgdatadir}/scripts
%{pkgdatadir}/templates
%{pkgdatadir}/Astyle.zip
%{pkgdatadir}/abbreviations.zip
%{pkgdatadir}/autosave.zip
%{pkgdatadir}/classwizard.zip
%{pkgdatadir}/codecompletion.zip
%{pkgdatadir}/compiler.zip
%{pkgdatadir}/debugger.zip
%{pkgdatadir}/defaultmimehandler.zip
%{pkgdatadir}/DisplayEvents.zip
%{pkgdatadir}/manager_resources.zip
%{pkgdatadir}/occurrenceshighlighting.zip
%{pkgdatadir}/openfileslist.zip
%{pkgdatadir}/projectsimporter.zip
%{pkgdatadir}/resources.zip
%{pkgdatadir}/scriptedwizard.zip
%{pkgdatadir}/start_here.zip
%{pkgdatadir}/todo.zip
%{pkgdatadir}/tips.txt
%dir %{pkgdatadir}/compilers
%{pkgdatadir}/compilers/*.xml
%files libs
%doc COPYING
%{_libdir}/lib%{name}.so.*
%files devel
%{_includedir}/%{name}/
%exclude %{_includedir}/%{name}/wxContribItems/
%{_libdir}/lib%{name}.so
%{_libdir}/pkgconfig/%{name}.pc
%files contrib-libs
%{_sysconfdir}/ld.so.conf.d/%{name}-contrib-%{_arch}.conf
%{_libdir}/libwxsmithlib.so.*
%{_libdir}/%{name}/wxContribItems/*.so.*
%exclude %{_libdir}/libwxsmithlib.so
%files contrib-devel
%{_includedir}/wxsmith
%{_includedir}/%{name}/wxContribItems/
%{_libdir}/%{name}/wxContribItems/*.so
%{_libdir}/pkgconfig/cb_wx*.pc
%{_libdir}/pkgconfig/wxsmith.pc
%{_libdir}/pkgconfig/wxsmithaui.pc
%{_libdir}/pkgconfig/wxsmith-contrib.pc
%files contrib
%{_mandir}/man1/codesnippets.*.gz
%{pkgdatadir}/AutoVersioning.zip
%{pkgdatadir}/BrowseTracker.zip
%{pkgdatadir}/Cccc.zip
%{pkgdatadir}/CppCheck.zip
%{pkgdatadir}/Cscope.zip
%{pkgdatadir}/DoxyBlocks.zip
%{pkgdatadir}/EditorConfig.zip
%{pkgdatadir}/EditorTweaks.zip
%{pkgdatadir}/FileManager.zip
%{pkgdatadir}/HexEditor.zip
%{pkgdatadir}/IncrementalSearch.zip
%{pkgdatadir}/MouseSap.zip
%{pkgdatadir}/ThreadSearch.zip
%{pkgdatadir}/ToolsPlus.zip
%{pkgdatadir}/Valgrind.zip
%{pkgdatadir}/byogames.zip
%{pkgdatadir}/cb_koders.zip
%{pkgdatadir}/codesnippets.zip
%{pkgdatadir}/codestat.zip
%{pkgdatadir}/copystrings.zip
%{pkgdatadir}/dragscroll.zip
%{pkgdatadir}/envvars.zip
%{pkgdatadir}/exporter.zip
%{pkgdatadir}/headerfixup.zip
%{pkgdatadir}/help_plugin.zip
%{pkgdatadir}/keybinder.zip
%{pkgdatadir}/lib_finder.zip
%{pkgdatadir}/Profiler.zip
%{pkgdatadir}/ProjectOptionsManipulator.zip
%{pkgdatadir}/RegExTestbed.zip
%{pkgdatadir}/rndgen.zip
%{pkgdatadir}/clangd_client.zip
%{pkgdatadir}/ReopenEditor.zip
%{pkgdatadir}/SymTab.zip
%{pkgdatadir}/wxsmith.zip
%{pkgdatadir}/wxSmithAui.zip
%{pkgdatadir}/wxsmithcontribitems.zip
%{pkgdatadir}/images/codesnippets
%{pkgdatadir}/images/wxsmith
%{pkgdatadir}/lib_finder
%{pkgdatadir}/NassiShneiderman.zip
%{pkgdatadir}/SpellChecker.zip
%{pkgdatadir}/SpellChecker
%{pkgdatadir}/SmartIndent*.zip
%{plugindir}/libAutoVersioning.so
%{plugindir}/libBrowseTracker.so
%{plugindir}/libCccc.so
%{plugindir}/libCppCheck.so
%{plugindir}/libCscope.so
%{plugindir}/libDoxyBlocks.so
%{plugindir}/libEditorConfig.so
%{plugindir}/libEditorTweaks.so
%{plugindir}/libFileManager.so
%{plugindir}/libHexEditor.so
%{plugindir}/libIncrementalSearch.so
%{plugindir}/libMouseSap.so
%{plugindir}/libThreadSearch.so
%{plugindir}/libToolsPlus.so
%{plugindir}/libValgrind.so
%{plugindir}/libbyogames.so
%{plugindir}/libcb_koders.so
%{plugindir}/libcodesnippets.so
%{plugindir}/libcodestat.so
%{plugindir}/libcopystrings.so
%{plugindir}/libdragscroll.so
%{plugindir}/libenvvars.so
%{plugindir}/libexporter.so
%{plugindir}/libheaderfixup.so
%{plugindir}/libhelp_plugin.so
%{plugindir}/libkeybinder.so
%{plugindir}/liblib_finder.so
%{plugindir}/libProfiler.so
%{plugindir}/libProjectOptionsManipulator.so
%{plugindir}/libRegExTestbed.so
%{plugindir}/libReopenEditor.so
%{plugindir}/librndgen.so
%{plugindir}/libclangd_client.so
%{plugindir}/libSymTab.so
%{plugindir}/libwxsmith.so
%{plugindir}/libwxSmithAui.so
%{plugindir}/libwxsmithcontribitems.so
%{plugindir}/libNassiShneiderman.so
%{plugindir}/libSpellChecker.so
%{plugindir}/libSmartIndent*.so
%{_datadir}/metainfo/%{name}-contrib.metainfo.xml
%changelog
* Thu Feb 20 2020 Teodor Petrov <[email protected]> - 20.03-1
- New release.
* Wed Jan 17 2018 Jens Lody <[email protected]> - 17.12.svn.11269-1
- New upstream.
* Thu Dec 28 2017 Jens Lody <[email protected]> - 17.12-1
- New release.
* Tue Jul 19 2016 Jens Lody <[email protected]> - 16.01.svn.10885-1
- New upstream.
- Spec-file clean up.
* Wed Feb 03 2016 Fedora Release Engineering <[email protected]> - 13.12-23
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Fri Jan 15 2016 Jonathan Wakely <[email protected]> - 13.12-22
- Rebuilt for Boost 1.60
* Thu Sep 03 2015 Dan Horák <dan[at]danny.cz> - 13.12-21
- rebuild for Boost 1.59
* Fri Aug 21 2015 Marcin Juszkiewicz <[email protected]> - 13.12-20
- Valgrind is not available only on s/390
* Wed Jul 29 2015 Fedora Release Engineering <[email protected]> - 13.12-19
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
* Wed Jul 22 2015 David Tardon <[email protected]> - 13.12-18
- rebuild for Boost 1.58
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 13.12-17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Mon May 04 2015 Jason L Tibbitts III <[email protected]> - 13.12-16
- Indicate that this package bundles wxScintilla 1.7.1
* Sat May 02 2015 Kalev Lember <[email protected]> - 13.12-15
- Rebuilt for GCC 5 C++11 ABI change
* Tue Jan 27 2015 Petr Machata <[email protected]> - 13.12-14
- Rebuild for boost 1.57.0
* Fri Dec 12 2014 Dan Horák <dan[at]danny.cz> - 13.12-13
- fix resource archive loading for astyle plugin (#1172984, #1173243)
* Wed Dec 03 2014 Dan Horák <dan[at]danny.cz> - 13.12-12
- drop support for RHEL < 6
- include appdata only for Fedora
* Fri Nov 21 2014 Dan Horák <dan[at]danny.cz> - 13.12-11
- set Fedora specific paths for spellchecker and thesaurus in the SpellChecker plugin
- update for astyle 2.05 (#1166377)
* Thu Oct 02 2014 Rex Dieter <[email protected]> 13.12-10
- udate mime scriptlet
* Sat Aug 16 2014 Fedora Release Engineering <[email protected]> - 13.12-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Thu Aug 14 2014 Richard Hughes <[email protected]> - 13.12-8
- Make the MetaInfo file validate
* Mon Jul 07 2014 Richard Hughes <[email protected]> - 13.12-7
- Use the AppData and MetaInfo files written by Ryan
* Mon Jul 07 2014 Richard Hughes <[email protected]> - 13.12-6
- Remove the incorrect conditional (which doesn't work) to never use --vendor
when installing desktop files. Using --vendor means the AppStream builder
cannot match an AppData file which means Code::Blocks doesn't appear in the
software center.
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 13.12-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Fri May 23 2014 Petr Machata <[email protected]> - 13.12-4
- Rebuild for boost 1.55.0
* Thu Mar 20 2014 Dan Horák <dan[at]danny.cz> - 13.12-3
- unbundle astyle library (#1050825)
* Wed Feb 26 2014 Dan Horák <dan[at]danny.cz> - 13.12-2
- move the Occurrences Highlighting plugin to the main package (#1068971)
* Sun Dec 29 2013 Dan Horák <dan[at]danny.cz> - 13.12-1
- update to final 13.12 release (svn revision 9501)
* Mon Nov 04 2013 Dan Horák <dan[at]danny.cz> - 12.11-2
- fix Requires
* Sun Sep 01 2013 Dan Horák <dan[at]danny.cz> - 12.11-1
- update to final 12.11 release (svn revision 8629)
* Sat Aug 03 2013 Fedora Release Engineering <[email protected]> - 10.05-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Tue Feb 19 2013 Rahul Sundaram <[email protected]> - 10.05-12
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
- clean up spec to follow current guidelines
* Wed Feb 13 2013 Fedora Release Engineering <[email protected]> - 10.05-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Jul 18 2012 Fedora Release Engineering <[email protected]> - 10.05-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue May 22 2012 Dan Horák <[email protected]> - 10.05-9
- build with system squirrel
- fix FTBFS with g++ 4.7 (#823697)
* Tue Feb 28 2012 Fedora Release Engineering <[email protected]> - 10.05-8
- Rebuilt for c++ ABI breakage
* Thu Jan 12 2012 Fedora Release Engineering <[email protected]> - 10.05-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Tue Dec 06 2011 Adam Jackson <[email protected]> - 10.05-6
- Rebuild for new libpng
* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 10.05-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sat Aug 28 2010 Dan Horák <[email protected]> - 10.05-4
- xterm is the default terminal application, added as Requires (#622753)
- backport D language support from trunk (http://fedoraproject.org/wiki/Features/D_Programming)
* Mon Jul 12 2010 Dan Horák <[email protected]> - 10.05-3
- rebuilt against wxGTK-2.8.11-2
* Thu Jul 8 2010 Dan Horák <dan[at]danny.cz> - 10.05-2
- moved license text into -libs subpackage
* Sun Jun 27 2010 Dan Horák <dan[at]danny.cz> - 10.05-1
- updated to 10.05 release
* Sat Feb 13 2010 Dan Horák <dan[at]danny.cz> - 8.02-10
- fixed linking with the new --no-add-needed default (#564644)
* Fri Jul 24 2009 Fedora Release Engineering <[email protected]> - 8.02-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Mon Jun 15 2009 Dan Horák <dan[at]danny.cz> 8.02-8
- fix gsocket between glib >= 2.21 and wxGTK in rawhide
* Sat Feb 28 2009 Dan Horák <dan[at]danny.cz> 8.02-7
- update desktop file (#487796)
* Tue Feb 24 2009 Fedora Release Engineering <[email protected]> - 8.02-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 18 2009 Dan Horak <dan[at]danny.cz> 8.02-5
- fix compile error with gcc 4.4/glibc 2.9.90
* Fri Oct 31 2008 Dan Horak <dan[at]danny.cz> 8.02-4
- fix gcc detection (#469096)
* Sat Sep 20 2008 Dan Horak <dan[at]danny.cz> 8.02-3
- update desktop file
- fix running console applications (#461120)
* Fri Aug 29 2008 Dan Horak <dan[at]danny.cz> 8.02-2
- refresh patches
* Sun Mar 2 2008 Dan Horak <dan[at]danny.cz> 8.02-1
- update to stable release 8.02
- update BR to use system libraries
* Mon Feb 18 2008 Dan Horak <dan[at]danny.cz> 1.0-0.30.20080211svn4872
- update to revision 4872
- really fix the multilib problem with the contrib subpackage (#433124)
* Sun Feb 10 2008 Dan Horak <dan[at]danny.cz> 1.0-0.29.20080209svn4868
- update to revision 4868
* Tue Dec 11 2007 Dan Horak <dan[at]danny.cz> 1.0-0.28.20071210svn4719
- update to revision 4719
- fix multiarch problem with contrib subpackage (#340911)
- set a fixed timestamp on all installed data files
- preserve timestamps on updated files
* Wed Aug 29 2007 Dan Horak <dan[at]danny.cz> 1.0-0.27.20070828svn4413
- update to revision 4413
- update the License tag
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.0-0.26.20070718svn4280
- Rebuild for selinux ppc32 issue (F8).
* Thu Jul 19 2007 Dan Horak <dan[at]danny.cz> 1.0-0.25.20070718svn4280
- update to revision 4280
- added missing ldconfig call for the contrib subpackage
- fix permissions for source files
* Sat Apr 7 2007 Dan Horak <dan[at]danny.cz> 1.0-0.24.20070406svn3816
- update to revision 3816
* Tue Feb 13 2007 Dan Horak <dan[at]danny.cz> 1.0-0.23.20070211svn3592
- update the autorev.patch
* Tue Feb 13 2007 Dan Horak <dan[at]danny.cz> 1.0-0.22.20070211svn3592
- update to revision 3592
- added patch for New Project wizard with wxGTK 2.8 (#225058)
- created -libs subpackage to make package multilib-aware (#228356)
* Fri Jan 26 2007 Dan Horak <dan[at]danny.cz> 1.0-0.21.20070125svn3540
- update the listbook.patch
* Fri Jan 26 2007 Dan Horak <dan[at]danny.cz> 1.0-0.20.20070125svn3540
- update to revision 3540
* Thu Jan 18 2007 Dan Horak <dan[at]danny.cz> 1.0-0.19.20070117svn3500
- update to revision 3500
- added patch for compiling with wxGTK 2.8
* Fri Dec 8 2006 Dan Horak <dan[at]danny.cz> 1.0-0.18.20061207svn3357
- update to revision 3357
* Thu Nov 30 2006 Dan Horak <dan[at]danny.cz> 1.0-0.17.20061130svn3315
- update to revision 3315
* Tue Nov 28 2006 Dan Horak <dan[at]danny.cz> 1.0-0.16.20061128svn3295
- update to revision 3295
* Sat Nov 25 2006 Dan Horak <dan[at]danny.cz> 1.0-0.15.20061125svn3268
- update to revision 3268
- fixes #217081
* Tue Nov 21 2006 Dan Horak <dan[at]danny.cz> 1.0-0.14.20061121svn3253
- update to revision 3253
* Fri Nov 10 2006 Dan Horak <dan[at]danny.cz> 1.0-0.13.20061110svn3202
- update to revision 3202
- fixed plugin loading on 64-bit platforms
* Fri Nov 3 2006 Dan Horak <dan[at]danny.cz> 1.0-0.12.20061102svn3170
- update to revision 3170
* Mon Oct 30 2006 Dan Horak <dan[at]danny.cz> 1.0-0.11.20061029svn3157
- update to revision 3157
- kill rpath in the spec file using sed
- fix directory ownership
* Sun Oct 8 2006 Dan Horak <dan[at]danny.cz> 1.0-0.10.20061007svn3030
- update to revision 3030
- change the install paths for plugins in the spec file
* Wed Sep 13 2006 Dan Horak <dan[at]danny.cz> 1.0-0.9.20060909svn2965
- do not require .svn directories for building
* Sun Sep 10 2006 Dan Horak <dan[at]danny.cz> 1.0-0.8.20060909svn2965
- update to revision 2965
- use %%configure macro
- properly install the desktop file
- update the mime database after install and uninstall
- do not own only %%{_libdir}/codeblock/plugins, but also %%{_libdir}/codeblock
- added a script for retrieving and packing a revision from the SVN repo
* Sun Sep 3 2006 Dan Horak <dan[at]danny.cz> 1.0-0.7.20060902svn2944
- update to revision 2944
* Sun Aug 20 2006 Dan Horak <dan[at]danny.cz> 1.0-0.6.20060820svn2882
- update to revision 2882
- added missing Requires for devel subpackage
* Wed Aug 16 2006 Dan Horak <dan[at]danny.cz> 1.0-0.5.20060815svn2854
- update to revision 2854
* Wed Aug 16 2006 Dan Horak <dan[at]danny.cz> 1.0-0.4.20060812svn2840
- make setup section quiet
- use only tabs for indentation
* Tue Aug 15 2006 Dan Horak <dan[at]danny.cz> 1.0-0.3.20060812svn2840
- define libdir in configure
* Sun Aug 13 2006 Dan Horak <dan[at]danny.cz> 1.0-0.2.20060812svn2840
- update to revision 2840
- added BR for autotools
* Tue Aug 08 2006 Dan Horak <dan[at]danny.cz> 1.0-0.1.2824svn
- initial spec file based on upstream