-
Notifications
You must be signed in to change notification settings - Fork 0
/
caja.spec
672 lines (508 loc) · 23.4 KB
/
caja.spec
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
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
# Conditional for release and snapshot builds. Uncomment for release-builds.
%global rel_build 1
# This is needed, because src-url contains branched part of versioning-scheme.
%global branch 1.20
# Settings used for build from snapshots.
%{!?rel_build:%global commit ee0a62c8759040d84055425954de1f860bac8652}
%{!?rel_build:%global commit_date 20140223}
%{!?rel_build:%global shortcommit %(c=%{commit};echo ${c:0:7})}
%{!?rel_build:%global git_ver git%{commit_date}-%{shortcommit}}
%{!?rel_build:%global git_rel .git%{commit_date}.%{shortcommit}}
%{!?rel_build:%global git_tar %{name}-%{version}-%{git_ver}.tar.xz}
Name: caja
Summary: File manager for MATE
Version: %{branch}.3
%if 0%{?rel_build}
Release: 1%{?dist}
%else
Release: 0.9%{?git_rel}%{?dist}
%endif
License: GPLv2+ and LGPLv2+
Group: User Interface/Desktops
URL: http://mate-desktop.org
# for downloading the tarball use 'spectool -g -R caja.spec'
# Source for release-builds.
%{?rel_build:Source0: http://pub.mate-desktop.org/releases/%{branch}/%{name}-%{version}.tar.xz}
# Source for snapshot-builds.
%{!?rel_build:Source0: http://git.mate-desktop.org/%{name}/snapshot/%{name}-%{commit}.tar.xz#/%{git_tar}}
Patch1: caja_add-xfce-to-desktop-file.patch
BuildRequires: dbus-glib-devel
BuildRequires: desktop-file-utils
BuildRequires: exempi-devel
BuildRequires: gobject-introspection-devel
BuildRequires: cairo-gobject-devel
BuildRequires: libexif-devel
BuildRequires: libselinux-devel
BuildRequires: libSM-devel
BuildRequires: libxml2-devel
BuildRequires: mate-common
BuildRequires: mate-desktop-devel
BuildRequires: pangox-compat-devel
BuildRequires: startup-notification-devel
BuildRequires: libnotify-devel
Requires: gamin
Requires: filesystem
Requires: redhat-menus
Requires: gvfs
# the main binary links against libcaja-extension.so
# don't depend on soname, rather on exact version
Requires: %{name}-extensions%{?_isa} = %{version}-%{release}
# needed for using mate-text-editor as stanalone in another DE
Requires: %{name}-schemas%{?_isa} = %{version}-%{release}
%description
Caja (mate-file-manager) is the file manager and graphical shell
for the MATE desktop,
that makes it easy to manage your files and the rest of your system.
It allows to browse directories on local and remote file systems, preview
files and launch applications associated with them.
It is also responsible for handling the icons on the MATE desktop.
%package core-extensions
Summary: Mate-file-manager extensions library
Requires: %{name}%{?_isa} = %{version}-%{release}
%if (0%{?fedora} >= 28 && 0%{?fedora} <= 32)
Provides: %{name}-extensions = %{version}-%{release}
Provides: %{name}-extensions%{?_isa} = %{version}-%{release}
Obsoletes: %{name}-extensions < 1.20.2-2
%endif
%description core-extensions
This package provides the libraries used by caja extensions.
# needed for using mate-text-editor (pluma) as stanalone in another DE
%package schemas
Summary: Mate-file-manager schemas
License: LGPLv2+
%description schemas
This package provides the gsettings schemas for caja.
%package devel
Summary: Support for developing mate-file-manager extensions
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides libraries and header files needed
for developing caja extensions.
%prep
%if 0%{?rel_build}
%autosetup -p1
%else
%autosetup -n %{name}-%{commit} -p1
%endif
# disable startup notification
sed -i s/StartupNotify=true/StartupNotify=false/g data/caja-computer.desktop.in.in
sed -i s/StartupNotify=true/StartupNotify=false/g data/caja-home.desktop.in.in
%if 0%{?rel_build}
#NOCONFIGURE=1 ./autogen.sh
%else # 0%{?rel_build}
# needed for git snapshots
NOCONFIGURE=1 ./autogen.sh
%endif # 0%{?rel_build}
%build
%configure \
--disable-static \
--disable-schemas-compile \
--disable-update-mimedb
#drop unneeded direct library deps with --as-needed
# libtool doesn't make this easy, so we do it the hard way
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
make %{?_smp_mflags} V=1
%install
%{make_install}
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/.icon-theme.cache
mkdir -p $RPM_BUILD_ROOT%{_libdir}/caja/extensions-2.0
desktop-file-install \
--delete-original \
--dir=$RPM_BUILD_ROOT%{_datadir}/applications \
$RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
# Avoid prelink to mess with caja - rhbz (#1228874)
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/prelink.conf.d
cat << EOF > ${RPM_BUILD_ROOT}%{_sysconfdir}/prelink.conf.d/caja.conf
-b %{_libdir}/caja/
-b %{_libdir}/libcaja-extension.so.*
-b %{_libexecdir}/caja-convert-metadata
-b %{_bindir}/caja
-b %{_bindir}/caja-autorun-software
-b %{_bindir}/caja-connect-server
-b %{_bindir}/caja-file-management-properties
EOF
%find_lang %{name} --with-gnome --all-name
%files
%doc AUTHORS COPYING COPYING.LIB NEWS README
%{_bindir}/*
%{_datadir}/caja
%{_libdir}/caja/
%{_sysconfdir}/prelink.conf.d/caja.conf
%{_datadir}/pixmaps/caja/
%{_datadir}/applications/*.desktop
%{_datadir}/icons/hicolor/*/apps/caja.*
%{_datadir}/icons/hicolor/*/emblems/emblem-note.png
%{_mandir}/man1/*
%{_datadir}/appdata/caja.appdata.xml
%{_datadir}/mime/packages/caja.xml
%{_datadir}/dbus-1/services/org.mate.freedesktop.FileManager1.service
%files core-extensions
%{_libdir}/libcaja-extension.so.*
%{_libdir}/girepository-1.0/*.typelib
%files schemas -f %{name}.lang
%{_datadir}/glib-2.0/schemas/org.mate.*.gschema.xml
%files devel
%{_includedir}/caja/
%{_libdir}/pkgconfig/*
%{_libdir}/*.so
%{_datadir}/gir-1.0/*.gir
%{_datadir}/gtk-doc/html/libcaja-extension
%changelog
* Tue Dec 11 2018 Wolfgang Ulbrich <[email protected]> - 1.20.3-1
- test 1.20.3
* Thu Jul 12 2018 Fedora Release Engineering <[email protected]> - 1.20.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 12 2018 Wolfgang Ulbrich <[email protected]> - 1.20.2-2
- rename caja-extension sub-package to avoid conflicts with
- debuginfo from caja-extensions
* Fri Apr 06 2018 Wolfgang Ulbrich <[email protected]> - 1.20.2-1
- update to 1.20.2
* Tue Mar 27 2018 Wolfgang Ulbrich <[email protected]> - 1.20.1-1
- update to 1.20.1
* Sun Feb 11 2018 Wolfgang Ulbrich <[email protected]> - 1.20.0-3
- fix emblem and backgrounds preferences UI
* Sun Feb 11 2018 Wolfgang Ulbrich <[email protected]> - 1.20.0-2
- drop obsolet scriptlet again
* Sun Feb 11 2018 Wolfgang Ulbrich <[email protected]> - 1.20.0-1
- update to 1.20.0 release
- drop mimeinfo rpm scriptlet
- drop desktop-database rpm scriptlet
- drop GSettings Schema rpm scriptlet
- switch to using autosetup
* Wed Feb 07 2018 Fedora Release Engineering <[email protected]> - 1.19.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Sun Jan 07 2018 Igor Gnatenko <[email protected]> - 1.19.3-2
- Remove obsolete scriptlets
* Mon Jan 01 2018 Wolfgang Ulbrich <[email protected]> - 1.19.3-1
- update to 1.19.3
- use https://github.com/mate-desktop/caja/pull/891
* Wed Oct 11 2017 Wolfgang Ulbrich <[email protected]> - 1.19.2-1
- update to 1.19.2 release
* Mon Aug 28 2017 Wolfgang Ulbrich <[email protected]> - 1.19.1-2
- use https://github.com/mate-desktop/caja/pull/837
- use https://github.com/mate-desktop/caja/pull/838
* Sat Aug 26 2017 Wolfgang Ulbrich <[email protected]> - 1.19.1-1
- update to 1.19.1
* Wed Aug 09 2017 Wolfgang Ulbrich <[email protected]> - 1.19.0-4
- remove virtual provides
* Wed Aug 02 2017 Fedora Release Engineering <[email protected]> - 1.19.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 1.19.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Thu May 11 2017 Wolfgang Ulbrich <[email protected]> - 1.19.0-1
- update to 1.19.0 release
* Tue Apr 25 2017 Wolfgang Ulbrich <[email protected]> - 1.18.2-3
- fix opening download folder from Firefox "freezes" X
- https://github.com/mate-desktop/caja/commit/6ece67f
* Tue Apr 25 2017 Wolfgang Ulbrich <[email protected]> - 1.18.2-2
- add some upstream patches
- Expand grid width to canvas
- use gtk+-3 bookmark location
- force icons size in open-with-dialog
- show correct right-click menu after making selection
* Tue Apr 04 2017 Wolfgang Ulbrich <[email protected]> - 1.18.2-1
- update to 1.18.2
- add upstream commit "Expand grid width to canvas"
* Tue Apr 04 2017 Wolfgang Ulbrich <[email protected]> - 1.18.1-1
- update to 1.18.1
* Tue Mar 14 2017 Wolfgang Ulbrich <[email protected]> - 1.18.0-1
- update to 1.18.0 release
* Fri Feb 10 2017 Fedora Release Engineering <[email protected]> - 1.17.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Wed Jan 18 2017 Wolfgang Ulbrich <[email protected]> - 1.17.3-1
- update to 1.17.3
* Mon Jan 09 2017 Wolfgang Ulbrich <[email protected]> - 1.17.2-1
- update to 1.17.2
- fix running under wayland session
* Sat Dec 03 2016 Wolfgang Ulbrich <[email protected]> - 1.17.1-1
- update to 1.17.1 release
* Thu Nov 17 2016 Wolfgang Ulbrich <[email protected]> - 1.17.0-1
- update to 1.17.0 release
* Wed Oct 19 2016 Wolfgang Ulbrich <[email protected]> - 1.16.1-1
- update to 1.16.1 release
- fix Orca speaking
* Thu Sep 22 2016 Wolfgang Ulbrich <[email protected]> - 1.16.0-1
- update to 1.16.0 release
- disable startup notification
* Sat Aug 13 2016 Wolfgang Ulbrich <[email protected]> - 1.15.4-1
- update to 1.15.4 release
* Wed Aug 10 2016 Wolfgang Ulbrich <[email protected]> - 1.15.3-3
- fix crash on changing wallpapers in non-compositor mode
* Mon Aug 08 2016 Wolfgang Ulbrich <[email protected]> - 1.15.3-2
- fix desktop background rendering in noncomposited mode
* Thu Aug 04 2016 Wolfgang Ulbrich <[email protected]> - 1.15.3-1
- update to 1.15.3 release
* Sun Jul 24 2016 Wolfgang Ulbrich <[email protected]> - 1.15.2-2
- fix desktop redraw issues with gtk+-3.21.4
* Sat Jul 02 2016 Wolfgang Ulbrich <[email protected]> - 1.15.2-1
- update to 1.15.2 release
* Sat Jul 02 2016 Wolfgang Ulbrich <[email protected]> - 1.15.1-1
- update to 1.15.1 release
* Mon Jun 27 2016 Wolfgang Ulbrich <[email protected]> - 1.15.0-2
- don't show color and image backgounds menu entry
* Thu Jun 09 2016 Wolfgang Ulbrich <[email protected]> - 1.15.0-1
- update to 1.15.0 release
- switch to gtk+3
* Sat May 21 2016 Wolfgang Ulbrich <[email protected]> - 1.14.1-1
- update to 1.14.1 release
* Tue Apr 05 2016 Wolfgang Ulbrich <[email protected]> - 1.14.0-1
- update to 1.14.0 release
* Mon Feb 22 2016 Wolfgang Ulbrich <[email protected]> - 1.13.1-1
- update to 1.13.1 release
* Sun Feb 07 2016 Wolfgang Ulbrich <[email protected]> - 1.13.0-1
- update to 1.13.0 release
- try fix rhbz (#1291540)
* Wed Feb 03 2016 Fedora Release Engineering <[email protected]> - 1.12.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Sun Dec 27 2015 Wolfgang Ulbrich <[email protected]> - 1.12.2-2
- add XFCE to OnlyShowIn in caja-browser.desktop
* Thu Dec 24 2015 Wolfgang Ulbrich <[email protected]> - 1.12.2-1
- update to 1.12.2 release
- remove upstreamed patch
* Tue Dec 22 2015 Wolfgang Ulbrich <[email protected]> - 1.12.1-2
- change cajas behaviour in xfce session, rhbz (#1278079)
* Tue Dec 01 2015 Wolfgang Ulbrich <[email protected]> - 1.12.1-1
- update to 1.12.1 release
* Fri Nov 06 2015 Wolfgang Ulbrich <[email protected]> - 1.12.0-1
- update to 1.12.0 release
* Wed Oct 21 2015 Wolfgang Ulbrich <[email protected]> - 1.11.0-1
- update to 1.11.0 release
* Fri Sep 25 2015 Wolfgang Ulbrich <[email protected]> - 1.10.4-1
- update to 1.10.4 release
- remove upstreamed patches
* Thu Sep 17 2015 Wolfgang Ulbrich <[email protected]> - 1.10.3-2
- fix crash if restore file from trash in f23
- do not save position from last window
* Tue Jul 21 2015 Wolfgang Ulbrich <[email protected]> - 1.10.3-1
- update to 1.10.3 release
* Thu Jul 16 2015 Wolfgang Ulbrich <[email protected]> - 1.10.2.1
- update to 1.10.2 release
- remove upstreamed patches
* Sat Jul 11 2015 Wolfgang Ulbrich <[email protected]> - 1.10.1-7
- use new help dir
* Fri Jul 03 2015 Wolfgang Ulbrich <[email protected]> - 1.10.0-6
- revert 'allow caja --no-desktop in other desktops'
* Fri Jul 03 2015 Wolfgang Ulbrich <[email protected]> - 1.10.0-5
- use old help from 1.8
* Sun Jun 28 2015 Wolfgang Ulbrich <[email protected]> - 1.10.1.4
- improve double click detection
- no daemon mode in other desktop environments
- allow caja --no-desktop in other desktops
* Sat Jun 20 2015 Wolfgang Ulbrich <[email protected]> - 1.10.1.3
- fix caja help
- fix renaming of files (gtk3)
- add new bookmark behaviour
- drop old bookmarks patch
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 1.10.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Fri Jun 12 2015 Wolfgang Ulbrich <[email protected]> - 1.10.1.1
- update to 1.10.1 release
- add bookmarks patch again
- avoid prelink to mess with caja rhbz (#1228874)
* Mon Apr 06 2015 Wolfgang Ulbrich <[email protected]> - 1.10.0-1
- update to 1.10.0 release
* Wed Feb 25 2015 Wolfgang Ulbrich <[email protected]> - 1.9.90.1
- update to 1.9.90 release
* Tue Jan 13 2015 Wolfgang Ulbrich <[email protected]> - 1.9.4.1
- update to 1.9.4 release
* Tue Nov 11 2014 Wolfgang Ulbrich <[email protected]> - 1.9.3-1
- update to 1.9.3 release
* Sun Oct 12 2014 Wolfgang Ulbrich <[email protected]> - 1.9.2-1
- update to 1.9.2 release
- adjust obsoletes
* Fri Aug 15 2014 Fedora Release Engineering <[email protected]> - 1.9.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jul 12 2014 Wolfgang Ulbrich <[email protected]> - 1.9.1-1
- update to 1.9.1 release
- move gtk-docs to -devel subpackage
- removed upstreamed patches
* Tue Jul 08 2014 Rex Dieter <[email protected]> 1.8.1-3
- optimize/update scriptlets
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 1.8.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat Apr 26 2014 Wolfgang Ulbrich <[email protected]> - 1.8.1-1
- update to 1.8.1 release
- remove upstreamed patches
* Sat Mar 22 2014 Wolfgang Ulbrich <[email protected]> - 1.8.0-2
- fix for x-caja-window issue, end of a long story
- remove consolekit usage
- don't use caja-autostart script anymore
* Tue Mar 04 2014 Dan Mashal <[email protected]> - 1.8.0-1
- Update to 1.8.0
- Turn autoreconf bit back on. This is still needed for rpath issue.
* Sun Feb 23 2014 Wolfgang Ulbrich <[email protected]> - 1.7.91-0.1.git20140223.ee0a62
- update to latest git snapshot from 2014.02.23
- remove debuging patch, fix rhbz (#1067234)
- move autoreconf to the right place
- remove delay from caja-autostart for testing proposal
- remove non existent COPYING-DOCS
- disable gtk-docs for dit snapshot builds
* Wed Feb 12 2014 Dan Mashal <[email protected]> - 1.7.2-2
- Add autoreconf -fi to fix rpath issues.
* Sun Feb 09 2014 Dan Mashal <[email protected]> - 1.7.2-1
- Update to 1.7.2
* Tue Jan 14 2014 Wolfgang Ulbrich <[email protected]> - 1.7.1-1
- update to 1.7.1
- remove glib-2.39 fix, already fixed in upstream
- use gtk-docs for release build
* Tue Dec 17 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.6.git20131201.0ef48fa
- fix build against new glib2-39.2, 'g_memmove' is removed
- https://git.gnome.org/browse/glib/commit/?id=6e4a7fca431f53fdfd89afbe956212229cf52200
* Tue Dec 17 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.5.git20131201.0ef48fa
- new patch for x-caja-window issue, it surpress creating x-caja-desktop-windows
- rename patches
- fix provides
- use modern 'make install' macro
- make Maintainers life easier and use better git snapshot usage, Thanks to Björn Esser
* Sun Dec 08 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.4.git0ef48fab
- add mimeinfo rpm scriplets again
* Sun Dec 08 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.3.git0ef48fab
- fix usage of %%{buildroot}
- use desktop-database rpm scriptlet instead of mimeinfo scriptlet
* Sat Dec 07 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.2.git0ef48fab
- fix all the macro-in-comment warnings
- add ldconfig scriptlets for the extension subpackage
- add versioned provides for the obsoleted packages
- remove licence tags from subpackages
- remove group tags from subpackages
- fix permission for caja-autostart script
* Thu Dec 05 2013 Wolfgang Ulbrich <[email protected]> - 1.7.1-0.1.git0ef48fab
- rename mate-file-manager to caja for f21
- use latest git snapshot, 2013.12.05
* Thu Dec 05 2013 Dan Mashal <[email protected]> - 1.7.0-1
- Update to 1.7.0
* Thu Oct 10 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.7.gitbf47018
- add add autostart script to desktop file
* Thu Oct 10 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.6.gitbf47018
- add a 3 secs delay for caja autostart and restart if killed
* Mon Oct 07 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.5.gitbf47018
- add new caja-sidebar design for f20
* Mon Oct 07 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.4.gitbf47018
- allow dropping files to bookmarks
- fix https://github.com/mate-desktop/mate-file-manager/issues/122
* Sun Oct 06 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.3.gitbf47018
- fix caja crash if closing properties windows on dropbox folder
* Sun Sep 22 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.2.git73cc7e9
- update latest git snapshot
- fix rhbz (#1005660)
- change open folders in spatial-mode
- fix spatial mode crash and shift+double click
- https://github.com/mate-desktop/mate-file-manager/issues/120
- https://github.com/mate-desktop/mate-file-manager/issues/161
- fixed thumbnail frame not being displayed for some files
- https://github.com/mate-desktop/mate-file-manager/issues/135
* Wed Sep 18 2013 Wolfgang Ulbrich <[email protected]> - 1.6.3-0.1.git6278dcb
- update latest git snapshot
- fix rhbz (959444)
- remove upstreamed mate-file-manager_fix_privat-icons-dir.patch
* Thu Aug 08 2013 Wolfgang Ulbrich <[email protected]> - 1.6.2-3
- move gsettings schemas to -schemas subpackage, to fix #959607
- move locale to -schemas subpackage
- remove runtime require hicolor-icon-theme
* Sat Aug 03 2013 Fedora Release Engineering <[email protected]> - 1.6.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Sat Jul 20 2013 Wolfgang Ulbrich <[email protected]> - 1.6.2-1
- update to new upstream release
- remove in release included mate-file-manager_fix-radio-buttons.patch
- add upstream mate-file-manager_fix_privat-icons-dir.patch
- remove needless runtime require gsettings-desktop-schemas
- remove runtime require mate-icon-theme
* Mon Jul 01 2013 Wolfgang Ulbrich <[email protected]> - 1.6.1-9
- set autostart to false in caja-autostart, fix rhbz #969663
- and #978598
* Sun Jun 30 2013 Wolfgang Ulbrich <[email protected]> - 1.6.1-8
- add mate-file-manager_fix-radio-buttons.patch to fix rhbz #964357
- clean up BR's
- add runtime require hicolor-icon-theme
- revert 1.6.1-7 changes
* Thu Jun 20 2013 Dan Mashal <[email protected]> - 1.6.1-7
- Try caja without the autostart file (886029)
* Sat Jun 15 2013 Wolfgang Ulbrich <[email protected]> - 1.6.1-6
- remove gsettings convert file
* Thu Jun 06 2013 Wolfgang Ulbrich <[email protected]> - 1.6.1-5
- add AutostartCondition to caja-autostart.desktop
* Wed May 22 2013 Wolfgang Ulbrich <[email protected]> - 1.6.1-4
- workaround for x-caja-desktop window issue
- add caja-autostart desktopfile to /etc/xdg/autostart
* Wed May 15 2013 Dan Mashal <[email protected]> - 1.6.1-3
- Fix previous commit
* Tue May 14 2013 Dan Mashal <[email protected]> - 1.6.1-2
- Own libdir/caja (961992)
* Thu Apr 11 2013 Dan Mashal <[email protected]> - 1.6.1-1
- Update to latest upstream release.
* Wed Apr 03 2013 Dan Mashal <[email protected]> - 1.6.0-1
- Update to latest 1.6.0 stable release.
* Mon Mar 11 2013 Dan Mashal <[email protected]> - 1.5.5-1
- Update to latest upstream release
* Sat Mar 02 2013 Dan Mashal <[email protected]> - 1.5.4-1
- Update to latest upstream release
- Add upstream patch
* Mon Dec 03 2012 Dan Mashal <[email protected]> - 1.5.2-1
- Update to 1.5.2 release
- Drop all patches
- Update configure flags
- Clean up spec file
* Sun Nov 25 2012 Leigh Scott <[email protected]> - 1.5.1-2
- upload source again as upstream switched it
- specfile cleanup
* Fri Nov 23 2012 Leigh Scott <[email protected]> - 1.5.1-1
- update to 1.5.1 release
- drop upstream commits patch and other merged patch
- change source url and fix packagename in %%prep to suit
* Thu Nov 22 2012 Leigh Scott <[email protected]> - 1.5.0-6
- update commits patch
* Tue Nov 20 2012 Leigh Scott <[email protected]> - 1.5.0-5
- add git commits rollup patch, hopefully it fixes rhbz 868472
- drop merged patch
* Mon Nov 19 2012 Dan Mashal <[email protected]> - 1.5.0-4
- This change was reverted
* Sun Nov 11 2012 Leigh Scott <[email protected]> - 1.5.0-3
- add patch to call gdk_pixbuf_loader_close() earlier (#558267)
- fix mistake in scriptlets
* Mon Oct 29 2012 Leigh Scott <[email protected]> - 1.5.0-2
- add requires gsettings-desktop-schemas
- add build requires gsettings-desktop-schemas-devel
* Mon Oct 29 2012 Leigh Scott <[email protected]> - 1.5.0-1
- update to 1.5.0 release
- add schema scriptlets and remove mateconf scriptlets
- drop un-needed requires and build requires and change style
- make directory for extensions and move to main package
- drop all patches not needed for building for now
- clean up spec file
* Thu Oct 18 2012 Rex Dieter <[email protected]> - 1.4.0-12
- fix mate-doc xml error (patch out reference to non-existent caja-extension-i18n.xml)
- verbose build
* Thu Oct 18 2012 Leigh Scott <[email protected]> - 1.4.0-11
- Drop caja_remove_mate-bg-crossfade patch as it was causing crash
* Thu Oct 18 2012 Leigh Scott <[email protected]> - 1.4.0-10
- add patch to try and fix crash
* Thu Oct 18 2012 Leigh Scott <[email protected]> - 1.4.0-9
- revert last commit "add autostart file for caja desktop"
- add no session delay patch
* Thu Oct 18 2012 Leigh Scott <[email protected]> - 1.4.0-8
- add autostart file for caja desktop
- add build requires libxml2-devel
* Mon Aug 20 2012 Wolfgang Ulbrich <[email protected]> - 1.4.0-7
- remove obsoleting stuff
* Thu Aug 16 2012 Rex Dieter <[email protected]> 1.4.0-6
- drop needless ldconfig scriptlet on main pkg
* Mon Aug 13 2012 Wolfgang Ulbrich <[email protected]> - 1.4.0-5
- fix desktop file handle
- fix obsolete caja from external repo
* Sun Aug 12 2012 Wolfgang Ulbrich <[email protected]> - 1.4.0-4
- correct %%build section
- correct rpm scriplets
- correct %%prep section
- change .*z to .* in %%file section
- correct obsoletes
- some other fixes
* Sun Aug 12 2012 Wolfgang Ulbrich <[email protected]> - 1.4.0-3
- obsoleting caja from external repo
- remove unecessary build requires
* Tue Aug 07 2012 Wolfgang Ulbrich <[email protected]> - 1.4.0-2
- initial package for fedora
* Sun Dec 25 2011 Wolfgang Ulbrich <[email protected]> - 1.1.0-1
- mate-file-manager.spec based on nautilus-2.32.0-1.fc14 spec