This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mutter.spec
916 lines (649 loc) · 29.1 KB
/
mutter.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
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
%global gtk3_version 3.19.8
%global gsettings_desktop_schemas_version 3.21.4
%global json_glib_version 0.12.0
%global libinput_version 1.4
Name: mutter
Version: 3.24.4
Release: 2%{?dist}.dmytr
Summary: Window and compositing manager based on Clutter
License: GPLv2+
#VCS: git:git://git.gnome.org/mutter
URL: http://www.gnome.org
Source0: http://download.gnome.org/sources/%{name}/3.24/%{name}-%{version}.tar.xz
Patch0: startup-notification.patch
Patch1: 0001-Use-LMR-tap-button-map.patch
BuildRequires: chrpath
BuildRequires: pango-devel
BuildRequires: startup-notification-devel
BuildRequires: gnome-desktop3-devel
BuildRequires: gtk3-devel >= %{gtk3_version}
BuildRequires: pkgconfig
BuildRequires: gobject-introspection-devel >= 1.41.0
BuildRequires: libSM-devel
BuildRequires: libwacom-devel
BuildRequires: libX11-devel
BuildRequires: libXdamage-devel
BuildRequires: libXext-devel
BuildRequires: libXfixes-devel
BuildRequires: libXi-devel
BuildRequires: libXrandr-devel
BuildRequires: libXrender-devel
BuildRequires: libXcursor-devel
BuildRequires: libXcomposite-devel
BuildRequires: libxcb-devel
BuildRequires: libxkbcommon-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: libxkbfile-devel
BuildRequires: libXtst-devel
BuildRequires: mesa-libGLES-devel
BuildRequires: mesa-libGL-devel
BuildRequires: mesa-libgbm-devel
BuildRequires: pam-devel
BuildRequires: systemd-devel
BuildRequires: upower-devel
BuildRequires: xkeyboard-config-devel
BuildRequires: zenity
BuildRequires: desktop-file-utils
# Bootstrap requirements
BuildRequires: gtk-doc gnome-common gettext-devel
BuildRequires: libcanberra-devel
BuildRequires: gsettings-desktop-schemas-devel >= %{gsettings_desktop_schemas_version}
BuildRequires: automake, autoconf, libtool
BuildRequires: pkgconfig(gudev-1.0)
BuildRequires: pkgconfig(libdrm)
BuildRequires: pkgconfig(gbm)
BuildRequires: pkgconfig(wayland-server)
BuildRequires: json-glib-devel >= %{json_glib_version}
BuildRequires: libgudev1-devel
BuildRequires: libwayland-server-devel
BuildRequires: libinput-devel >= %{libinput_version}
Obsoletes: mutter-wayland < 3.13.0
Obsoletes: mutter-wayland-devel < 3.13.0
# Make sure yum updates gnome-shell as well; otherwise we might end up with
# broken gnome-shell installations due to mutter ABI changes.
Conflicts: gnome-shell < 3.21.1
Requires: control-center-filesystem
Requires: gsettings-desktop-schemas%{?_isa} >= %{gsettings_desktop_schemas_version}
Requires: gtk3%{?_isa} >= %{gtk3_version}
Requires: startup-notification
Requires: dbus-x11
Requires: zenity
Requires: json-glib%{?_isa} >= %{json_glib_version}
Requires: libinput%{?_isa} >= %{libinput_version}
%description
Mutter is a window and compositing manager that displays and manages
your desktop via OpenGL. Mutter combines a sophisticated display engine
using the Clutter toolkit with solid window-management logic inherited
from the Metacity window manager.
While Mutter can be used stand-alone, it is primarily intended to be
used as the display core of a larger system such as GNOME Shell. For
this reason, Mutter is very extensible via plugins, which are used both
to add fancy visual effects and to rework the window management
behaviors to meet the needs of the environment.
%package devel
Summary: Development package for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
Header files and libraries for developing Mutter plugins. Also includes
utilities for testing Metacity/Mutter themes.
%package tests
Summary: Tests for the %{name} package
Requires: %{name}%{?_isa} = %{version}-%{release}
%description tests
The %{name}-tests package contains tests that can be used to verify
the functionality of the installed %{name} package.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
autoreconf -f -i
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi;
%configure --disable-static --enable-compile-warnings=maximum --enable-installed-tests --with-libwacom)
SHOULD_HAVE_DEFINED="HAVE_SM HAVE_RANDR HAVE_STARTUP_NOTIFICATION"
for I in $SHOULD_HAVE_DEFINED; do
if ! grep -q "define $I" config.h; then
echo "$I was not defined in config.h"
grep "$I" config.h
exit 1
else
echo "$I was defined as it should have been"
grep "$I" config.h
fi
done
make %{?_smp_mflags} V=1
%install
%make_install
#Remove libtool archives.
rm -rf %{buildroot}/%{_libdir}/*.la
%find_lang %{name}
# Mutter contains a .desktop file so we just need to validate it
desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
%post -p /sbin/ldconfig
%postun
/sbin/ldconfig
if [ $1 -eq 0 ]; then
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
fi
%posttrans
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
%files -f %{name}.lang
%license COPYING
%doc NEWS
%{_bindir}/mutter
%{_datadir}/applications/*.desktop
%{_libdir}/lib*.so.*
%{_libdir}/mutter/
%{_libexecdir}/mutter-restart-helper
%{_datadir}/GConf/gsettings/mutter-schemas.convert
%{_datadir}/glib-2.0/schemas/org.gnome.mutter.gschema.xml
%{_datadir}/glib-2.0/schemas/org.gnome.mutter.wayland.gschema.xml
%{_datadir}/gnome-control-center/keybindings/50-mutter-*.xml
%{_mandir}/man1/mutter.1*
%files devel
%{_includedir}/*
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*
%files tests
%{_libexecdir}/installed-tests/mutter
%{_libexecdir}/installed-tests/mutter-clutter
%{_libexecdir}/installed-tests/mutter-cogl
%{_datadir}/installed-tests/mutter
%{_datadir}/installed-tests/mutter-clutter
%{_datadir}/installed-tests/mutter-cogl
%{_datadir}/mutter/tests
%changelog
* Wed Sep 20 2017 Florian Müllner <[email protected]> - 3.24.4-2
- Enable tablet support
* Wed Jul 19 2017 Florian Müllner <[email protected]> - 3.24.4-1
- Update to 3.24.4
* Wed Jul 12 2017 Florian Müllner <[email protected]> - 3.24.3-2
- Don't crash when moving between non-adjacent monitors
* Fri Jun 23 2017 Florian Müllner <[email protected]> - 3.24.3-1
- Update to 3.24.3
* Tue Jun 13 2017 Rui Matos <[email protected]> - 3.24.2-2
- Update to upstream gnome-3-24 commit e22c753 for multiple fixes
* Thu May 11 2017 Florian Müllner <[email protected]> - 3.24.2-1
- Update to 3.24.2
* Tue Apr 11 2017 Florian Müllner <[email protected]> - 3.24.1-1
- Update to 3.24.1
* Mon Mar 20 2017 Florian Müllner <[email protected]> - 3.24.0-1
- Update to 3.24.0
* Tue Mar 14 2017 Florian Müllner <[email protected]> - 3.23.92-1
- Update to 3.23.92
* Fri Mar 10 2017 Florian Müllner <[email protected]> - 3.23.91-4
- Apply startup-notification hack again
* Tue Mar 07 2017 Adam Williamson <[email protected]> - 3.23.91-3
- Backport more color fixes, should really fix BGO #779234, RHBZ #1428559
* Thu Mar 02 2017 Adam Williamson <[email protected]> - 3.23.91-2
- Backport fix for a color issue in 3.23.91 (BGO #779234, RHBZ #1428559)
* Wed Mar 01 2017 Florian Müllner <[email protected]> - 3.23.91-1
- Update to 3.23.91
* Thu Feb 16 2017 Florian Müllner <[email protected]> - 3.23.90-1
- Update to 3.23.90
* Fri Feb 10 2017 Fedora Release Engineering <[email protected]> - 3.23.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Thu Dec 15 2016 Florian Müllner <[email protected]> - 3.23.3-1
- Update to 3.23.3
* Fri Dec 02 2016 Florian Müllner <[email protected]> - 3.23.2-2
- Fix build error on 32-bit platforms
* Thu Nov 24 2016 Kevin Fenzi <[email protected]> - 3.23.2-2
- Some fixes to get building. Still needs patch1 rebased.
* Wed Nov 23 2016 Florian Müllner <[email protected]> - 3.23.2-1
- Update to 3.23.2
* Tue Nov 8 2016 Matthias Clasen <[email protected]> - 3.23.1-2
- Fix 1376471
* Sun Oct 30 2016 Florian Müllner <[email protected]> - 3.23.1-1
- Update to 3.23.1
* Tue Oct 18 2016 Kalev Lember <[email protected]> - 3.22.1-3
- Backport a fix to make gnome-screenshot --area work
* Tue Oct 11 2016 Adam Jackson <[email protected]> - 3.22.1-2
- Prefer eglGetPlatformDisplay() to eglGetDisplay()
* Tue Oct 11 2016 Florian Müllner <[email protected]> - 3.22.1-1
- Update to 3.22.1
* Wed Sep 28 2016 Florian Müllner <[email protected]> - 3.22.0-2
- Include fix for crash on VT switch
* Mon Sep 19 2016 Florian Müllner <[email protected]> - 3.22.0-1
- Update to 3.22.0
* Tue Sep 13 2016 Florian Müllner <[email protected]> - 3.21.92-1
- Update to 3.21.92
* Thu Sep 08 2016 Kalev Lember <[email protected]> - 3.21.91-2
- wayland/cursor-role: Increase buffer use count on construction (#1373372)
* Tue Aug 30 2016 Florian Müllner <[email protected]> - 3.21.91-1
- Update to 3.21.91
* Mon Aug 29 2016 Kalev Lember <[email protected]> - 3.21.90-3
- clutter/evdev: Fix absolute pointer motion events (#1369492)
* Sat Aug 20 2016 Kalev Lember <[email protected]> - 3.21.90-2
- Update minimum dep versions
* Fri Aug 19 2016 Florian Müllner <[email protected]> - 3.21.90-1
- Update to 3.21.90
* Wed Jul 20 2016 Florian Müllner <[email protected]> - 3.21.4-1
- Update to 3.21.4
- Drop downstream patch
- Fix build error on 32-bit
* Tue Jun 21 2016 Florian Müllner <[email protected]> - 3.21.3-1
- Update to 3.21.3
* Fri May 27 2016 Florian Müllner <[email protected]> - 3.21.2-1
- Update to 3.21.2
* Fri Apr 29 2016 Florian Müllner <[email protected]> - 3.21.1-1
- Update to 3.21.1
* Wed Apr 13 2016 Florian Müllner <[email protected]> - 3.20.1-1
- Update to 3.20.1
* Tue Mar 22 2016 Florian Müllner <[email protected]> - 3.20.0-1
- Update to 3.20.0
* Wed Mar 16 2016 Florian Müllner <[email protected]> - 3.19.92-1
- Update to 3.19.92
* Thu Mar 03 2016 Florian Müllner <[email protected]> - 3.19.91-2
- Include fix for invalid cursor wl_buffer access
* Thu Mar 03 2016 Florian Müllner <[email protected]> - 3.19.91-1
- Update to 3.19.91
* Fri Feb 19 2016 Florian Müllner <[email protected]> - 3.19.90-1
- Update to 3.19.90
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 3.19.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Thu Jan 21 2016 Florian Müllner <[email protected]> - 3.19.4-1
- Update to 3.19.4
* Thu Dec 17 2015 Florian Müllner <[email protected]> - 3.19.3-1
- Update to 3.19.3
* Wed Nov 25 2015 Florian Müllner <[email protected]> - 3.19.2-1
- Update to 3.19.2
* Tue Nov 10 2015 Ray Strode <[email protected]> 3.19.1-5.20151110git049f1556d
- Update to git snapshot
* Thu Oct 29 2015 Florian Müllner <[email protected]> - 3.19.1-1
- Update to 3.19.1
* Wed Oct 21 2015 Ray Strode <[email protected]> 3.18.1-4
- Force the cursor visible on vt switches after setting
the crtc to workaround that qxl bug from before in a
different situation
Related: #1273247
* Wed Oct 21 2015 Kalev Lember <[email protected]> - 3.18.1-3
- Backport a fix for a common Wayland crash (#1266486)
* Thu Oct 15 2015 Kalev Lember <[email protected]> - 3.18.1-2
- Bump gnome-shell conflicts version
* Thu Oct 15 2015 Florian Müllner <[email protected]> - 3.18.1-1
- Update to 3.18.1
* Mon Sep 21 2015 Florian Müllner <[email protected]> - 3.18.0-1
- Update to 3.18.0
* Wed Sep 16 2015 Florian Müllner <[email protected]> - 3.17.92-1
- Update to 3.17.92
* Thu Sep 03 2015 Florian Müllner <[email protected]> - 3.17.91-1
- Update to 3.17.91
* Thu Sep 03 2015 Ray Strode <[email protected]> 3.17.90-2
- Add workaround for qxl cursor visibility wonkiness that we
did for f22
Related: #1200901
* Thu Aug 20 2015 Florian Müllner <[email protected]> - 3.17.90-1
- Update to 3.17.90
* Thu Jul 23 2015 Florian Müllner <[email protected]> - 3.17.4-1
- Update to 3.17.4
* Wed Jul 22 2015 David King <[email protected]> - 3.17.3-2
- Bump for new gnome-desktop3
* Thu Jul 02 2015 Florian Müllner <[email protected]> - 3.17.3-1
- Update to 3.17.3
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 3.17.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Wed May 27 2015 Florian Müllner <[email protected]> - 3.17.2-1
- Update to 3.17.2
* Thu Apr 30 2015 Florian Müllner <[email protected]> - 3.17.1-1
- Update to 3.17.1
* Thu Apr 16 2015 Kalev Lember <[email protected]> - 3.16.1.1-2
- Bump gnome-shell conflicts version
* Wed Apr 15 2015 Rui Matos <[email protected]> - 3.16.1.1-1
- Update to 3.16.1.1
* Tue Apr 14 2015 Florian Müllner <[email protected]> - 3.16.1-1
- Update to 3.16.1
* Mon Mar 23 2015 Florian Müllner <[email protected]> - 3.16.0-1
- Update to 3.16.0
* Tue Mar 17 2015 Kalev Lember <[email protected]> - 3.15.92-2
- Update minimum dep versions
- Use license macro for the COPYING file
* Tue Mar 17 2015 Florian Müllner <[email protected]> - 3.15.92-1
- Update to 3.15.92
* Tue Mar 10 2015 Peter Hutterer <[email protected]> - 3.15.91-2
- Rebuild for libinput soname bump
* Wed Mar 04 2015 Florian Müllner <[email protected]> - 3.15.91-1
- Update to 3.15.91
* Fri Feb 20 2015 Florian Müllner <[email protected]> - 3.15.90-1
- Update to 3.15.90
* Mon Feb 02 2015 Adam Williamson <[email protected]> - 3.15.4-2
- backport ad90b7dd to fix BGO #743412 / RHBZ #1185811
* Wed Jan 21 2015 Florian Müllner <[email protected]> - 3.15.4-1
- Update to 3.15.4
* Mon Jan 19 2015 Peter Hutterer <[email protected]> 3.15.3-3
- Rebuild for libinput soname bump
* Mon Jan 12 2015 Ray Strode <[email protected]> 3.15.3-2
- Add specific BuildRequires for wayland bits, so we don't
get wayland support by happenstance.
- Add BuildRequires for autogoo since ./autogen.sh is run as part of
the build process
* Fri Dec 19 2014 Florian Müllner <[email protected]> - 3.15.3-1
- Revert unsatisfiable wayland requirement
* Fri Dec 19 2014 Florian Müllner <[email protected]> - 3.15.3-1
- Update to 3.15.3
* Thu Nov 27 2014 Florian Müllner <[email protected]> - 3.15.2-1
- Update to 3.15.2
* Wed Nov 12 2014 Vadim Rutkovsky <[email protected]> - 3.15.1-2
- Build installed tests
* Thu Oct 30 2014 Florian Müllner <[email protected]> - 3.15.1-1
- Update to 3.15.1
* Tue Oct 21 2014 Florian Müllner <[email protected]> - 3.14.1-2
- Fix regression in handling raise-on-click option (rhbz#1151918)
* Tue Oct 14 2014 Florian Müllner <[email protected]> - 3.14.1-1
- Update to 3.14.1
* Fri Oct 03 2014 Adam Williamson <[email protected]> - 3.14.0-3
- backport fix for BGO #737233 / RHBZ #1145952 (desktop right click broken)
* Mon Sep 22 2014 Kalev Lember <[email protected]> - 3.14.0-2
- Bump gnome-shell conflicts version
* Mon Sep 22 2014 Florian Müllner <[email protected]> - 3.14.0-1
- Update to 3.14.0
* Wed Sep 17 2014 Florian Müllner <[email protected]> - 3.13.92-1
- Update to 3.13.92
* Fri Sep 12 2014 Peter Hutterer <[email protected]> - 3.13.91-2
- Rebuild for libinput soname bump
* Wed Sep 03 2014 Florian Müllner <[email protected]> - 3.31.91-1
- Update to 3.13.91, drop downstream patches
* Tue Aug 26 2014 Adel Gadllah <[email protected]> - 3.13.90-4
- Apply fix for RH #1133166
* Mon Aug 25 2014 Hans de Goede <[email protected]> - 3.13.90-3
- Add a patch from upstream fixing gnome-shell crashing non stop on
multi monitor setups (rhbz#1103221)
* Fri Aug 22 2014 Kevin Fenzi <[email protected]> 3.13.90-2
- Rebuild for new wayland
* Wed Aug 20 2014 Florian Müllner <[email protected]> - 3.13.90-1
- Update to 3.13.90
* Mon Aug 18 2014 Kalev Lember <[email protected]> - 3.13.4-3
- Rebuilt for upower 0.99.1 soname bump
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 3.13.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Wed Jul 23 2014 Florian Müllner <[email protected]> - 3.13.4-1
- Update to 3.13.4
* Tue Jul 22 2014 Kalev Lember <[email protected]> - 3.13.3-2
- Rebuilt for gobject-introspection 1.41.4
* Fri Jun 27 2014 Florian Müllner <[email protected]> - 3.13.3-1
- New gobject-introspection has been built, drop the last patch again
* Wed Jun 25 2014 Florian Müllner <[email protected]> - 3.13.3-1
- Revert annotation updates until we get a new gobject-introspection build
* Wed Jun 25 2014 Florian Müllner <[email protected]> - 3.13.3-1
- Update to 3.13.1
* Wed Jun 11 2014 Florian Müllner <[email protected]> - 3.13.2-2
- Backport fix for legacy fullscreen check
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 3.13.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Tue May 27 2014 Florian Müllner <[email protected]> - 3.13.2-1
- Update to 3.13.2, drop upstreamed patches
* Thu May 8 2014 Matthias Clasen <[email protected]> - 3.13.1-5
- Fix shrinking terminals
* Wed May 07 2014 Kalev Lember <[email protected]> - 3.13.1-4
- Backport an upstream fix for a Wayland session crash
* Wed May 07 2014 Kalev Lember <[email protected]> - 3.13.1-3
- Install mutter-launch as setuid root
* Thu May 01 2014 Kalev Lember <[email protected]> - 3.13.1-2
- Obsolete mutter-wayland
* Wed Apr 30 2014 Florian Müllner <[email protected]> - 3.13.1-1
- Update to 3.13.1
* Tue Apr 15 2014 Florian Müllner <[email protected]> - 3.12.1-1
- Update to 3.12.1
* Sat Apr 05 2014 Kalev Lember <[email protected]> - 3.12.0-2
- Update dep versions
* Tue Mar 25 2014 Florian Müllner <[email protected]> - 3.12.0-1
- Update to 3.12.0
* Wed Mar 19 2014 Florian Müllner <[email protected]> - 3.11.92-1
- Update to 3.11.92
* Thu Mar 06 2014 Florian Müllner <[email protected]> - 3.11.91-1
- Update to 3.11.91
* Thu Feb 20 2014 Kalev Lember <[email protected]> - 3.11.90-2
- Rebuilt for cogl soname bump
* Wed Feb 19 2014 Florian Müllner <[email protected]> - 3.11.90-1
- Update to 3.11.90
* Wed Feb 19 2014 Richard Hughes <[email protected]> - 3.11.5-4
- Rebuilt for gnome-desktop soname bump
* Mon Feb 10 2014 Peter Hutterer <[email protected]> - 3.11.5-3
- Rebuild for libevdev soname bump
* Wed Feb 05 2014 Richard Hughes <[email protected]> - 3.11.5-2
- Rebuilt for cogl soname bump
* Wed Feb 05 2014 Florian Müllner <[email protected]> - 3.11.5-1
- Update to 3.11.5
* Wed Jan 15 2014 Florian Müllner <[email protected]> - 3.11.4-1
- Update to 3.11.4
* Fri Dec 20 2013 Florian Müllner <[email protected]> - 3.11.3-1
- Update to 3.11.3
* Wed Nov 13 2013 Florian Müllner <[email protected]> - 3.11.2-1
- Update to 3.11.2
* Wed Oct 30 2013 Florian Müllner <[email protected]> - 3.11.1-1
- Update to 3.11.1
* Tue Oct 15 2013 Florian Müllner <[email protected]> - 3.10.1.1-1
- Update to 3.10.1.1
* Mon Oct 14 2013 Florian Müllner <[email protected]> - 3.10.1-1
- Update to 3.10.1
* Wed Sep 25 2013 Florian Müllner <[email protected]> - 3.10.0.1-1
- Update to 3.10.0.1
* Mon Sep 23 2013 Florian Müllner <[email protected]> - 3.10.0-1
- Update to 3.10.0
* Tue Sep 17 2013 Kalev Lember <[email protected]> - 3.9.92-2
- Update the description and URL
- Tighten -devel subpackage deps with _isa
- Use the make_install macro
* Mon Sep 16 2013 Florian Müllner <[email protected]> - 3.9.92-1
- Update to 3.9.92
* Tue Sep 03 2013 Kalev Lember <[email protected]> - 3.9.91-2
- Rebuilt for libgnome-desktop soname bump
* Tue Sep 03 2013 Florian Müllner <[email protected]> - 3.9.91-1
- Update to 3.9.91
* Thu Aug 22 2013 Florian Müllner <[email protected]> - 3.9.90-1
- Update to 3.9.90
* Fri Aug 09 2013 Kalev Lember <[email protected]> - 3.9.5-2
- Rebuilt for cogl 1.15.4 soname bump
* Tue Jul 30 2013 Florian Müllner <[email protected]> - 3.9.5-1
- Update to 3.9.5
* Wed Jul 10 2013 Florian Müllner <[email protected]> - 3.9.4-1
- Update to 3.9.4
* Tue Jun 18 2013 Florian Müllner <[email protected]> - 3.9.3-1
- Update to 3.9.3
* Tue May 28 2013 Florian Müllner <[email protected]> - 3.9.2-1
- Update to 3.9.2
* Wed May 01 2013 Florian Müllner <[email protected]> - 3.9.1-1
- Update to 3.9.1
* Tue Apr 23 2013 Florian Müllner <[email protected]> - 3.8.1-1
- Update to 3.8.1
* Tue Mar 26 2013 Florian Müllner <[email protected]> - 3.8.0-1
- Update to 3.8.0
* Tue Mar 19 2013 Florian Müllner <[email protected]> - 3.7.92-1
- Update to 3.7.92
* Mon Mar 04 2013 Florian Müllner <[email protected]> - 3.7.91-1
- Update to 3.7.91
* Wed Feb 20 2013 Florian Müllner <[email protected]> - 3.7.90-1
- Update to 3.7.90
* Tue Feb 05 2013 Florian Müllner <[email protected]> - 3.7.5-1
- Update to 3.7.5
* Fri Jan 25 2013 Peter Robinson <[email protected]> 3.7.4-2
- Rebuild for new cogl
* Tue Jan 15 2013 Florian Müllner <[email protected]> - 3.7.4-1
- Update to 3.7.4
* Tue Dec 18 2012 Florian Müllner <[email protected]> - 3.7.3-1
- Update to 3.7.3
* Mon Nov 19 2012 Florian Müllner <[email protected]> - 3.7.2-1
- Update to 3.7.2
* Fri Nov 09 2012 Kalev Lember <[email protected]> - 3.7.1-1
- Update to 3.7.1
* Mon Oct 15 2012 Florian Müllner <[email protected]> - 3.6.1-1
- Update to 3.6.1
* Tue Sep 25 2012 Florian Müllner <[email protected]> - 3.6.0-1
- Update to 3.6.0
* Wed Sep 19 2012 Florian Müllner <[email protected]> - 3.5.92-1
- Update to 3.5.92
* Tue Sep 04 2012 Debarshi Ray <[email protected]> - 3.5.91-2
- Rebuild against new cogl
* Tue Sep 04 2012 Debarshi Ray <[email protected]> - 3.5.91-1
- Update to 3.5.91
* Tue Aug 28 2012 Matthias Clasen <[email protected]> - 3.5.90-2
- Rebuild against new cogl/clutter
* Tue Aug 21 2012 Richard Hughes <[email protected]> - 3.5.90-1
- Update to 3.5.90
* Tue Aug 07 2012 Richard Hughes <[email protected]> - 3.5.5-1
- Update to 3.5.5
* Fri Jul 27 2012 Fedora Release Engineering <[email protected]> - 3.5.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue Jul 17 2012 Richard Hughes <[email protected]> - 3.5.4-1
- Update to 3.5.4
* Tue Jun 26 2012 Matthias Clasen <[email protected]> - 3.5.3-1
- Update to 3.5.3
* Fri Jun 8 2012 Matthias Clasen <[email protected]> - 3.5.2-3
- Make resize grip area larger
* Thu Jun 07 2012 Matthias Clasen <[email protected]> - 3.5.2-2
- Don't check for Xinerama anymore - it is now mandatory
* Thu Jun 07 2012 Richard Hughes <[email protected]> - 3.5.2-1
- Update to 3.5.2
- Remove upstreamed patches
* Wed May 09 2012 Adam Jackson <[email protected]> 3.4.1-3
- mutter-never-slice-shape-mask.patch, mutter-use-cogl-texrect-api.patch:
Fix window texturing on hardware without ARB_texture_non_power_of_two
(#813648)
* Wed Apr 18 2012 Kalev Lember <[email protected]> - 3.4.1-2
- Silence glib-compile-schemas scriplets
* Wed Apr 18 2012 Kalev Lember <[email protected]> - 3.4.1-1
- Update to 3.4.1
- Conflict with gnome-shell versions older than 3.4.1
* Tue Mar 27 2012 Richard Hughes <[email protected]> - 3.4.0-1
- Update to 3.4.0
* Wed Mar 21 2012 Kalev Lember <[email protected]> - 3.3.92-1
- Update to 3.3.92
* Sat Mar 10 2012 Matthias Clasen <[email protected]> - 3.3.90-2
- Rebuild against new cogl
* Sat Feb 25 2012 Matthias Clasen <[email protected]> - 3.3.90-1
- Update to 3.3.90
* Tue Feb 7 2012 Matthias Clasen <[email protected]> - 3.3.5-1
- Update to 3.3.5
* Fri Jan 20 2012 Matthias Clasen <[email protected]> - 3.3.4-1
- Update to 3.3.4
* Thu Jan 19 2012 Matthias Clasen <[email protected]> - 3.3.3-2
- Rebuild against new cogl
* Thu Jan 5 2012 Matthias Clasen <[email protected]> - 3.3.3-1
- Update to 3.3.3
* Wed Nov 23 2011 Matthias Clasen <[email protected]> - 3.3.2-2
- Rebuild against new clutter
* Tue Nov 22 2011 Matthias Clasen <[email protected]> - 3.3.2-1
- Update to 3.3.2
* Wed Oct 26 2011 Fedora Release Engineering <[email protected]> - 3.2.1-2
- Rebuilt for glibc bug#747377
* Wed Oct 19 2011 Matthias Clasen <[email protected]> - 3.2.1-1
- Update to 3.2.1
* Mon Sep 26 2011 Owen Taylor <[email protected]> - 3.2.0-1
- Update to 3.2.0
* Tue Sep 20 2011 Matthias Clasen <[email protected]> - 3.1.92-1
- Update to 3.1.92
* Wed Sep 14 2011 Owen Taylor <[email protected]> - 3.1.91.1-1
- Update to 3.1.91.1
* Wed Aug 31 2011 Matthias Clasen <[email protected]> - 3.1.90.1-1
- Update to 3.1.90.1
* Wed Jul 27 2011 Matthias Clasen <[email protected]> - 3.1.4-1
- Update to 3.1.4
* Wed Jul 27 2011 Matthias Clasen <[email protected]> - 3.1.3.1-3
- Rebuild
* Mon Jul 4 2011 Peter Robinson <[email protected]> - 3.1.3.1-2
- rebuild against new clutter/cogl
* Mon Jul 04 2011 Adam Williamson <[email protected]> - 3.1.3.1-1
- Update to 3.1.3.1
* Thu Jun 30 2011 Owen Taylor <[email protected]> - 3.1.3-1
- Update to 3.1.3
* Wed May 25 2011 Owen Taylor <[email protected]> - 3.0.2.1-1
- Update to 3.0.2.1
* Fri Apr 29 2011 Matthias Clasen <[email protected]> - 3.0.1-3
- Actually apply the patch for #700276
* Thu Apr 28 2011 Matthias Clasen <[email protected]> - 3.0.1-2
- Make session saving of gnome-shell work
* Mon Apr 25 2011 Owen Taylor <[email protected]> - 3.0.1-1
- Update to 3.0.1
* Mon Apr 4 2011 Owen Taylor <[email protected]> - 3.0.0-1
- Update to 3.0.0
* Mon Mar 28 2011 Matthias Clasen <[email protected]> - 2.91.93-1
- Update to 2.91.93
* Wed Mar 23 2011 Matthias Clasen <[email protected]> - 2.91.92-1
- Update to 2.91.92
* Mon Mar 7 2011 Owen Taylor <[email protected]> - 2.91.91-1
- Update to 2.91.91
* Tue Mar 1 2011 Matthias Clasen <[email protected]> - 2.91.90-2
- Build against libcanberra, to enable AccessX feedback features
* Tue Feb 22 2011 Matthias Clasen <[email protected]> - 2.91.90-1
- Update to 2.91.90
* Thu Feb 10 2011 Matthias Clasen <[email protected]> - 2.91.6-4
- Rebuild against newer gtk
* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 2.91.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Wed Feb 2 2011 Matthias Clasen <[email protected]> - 2.91.6-2
- Rebuild against newer gtk
* Tue Feb 1 2011 Owen Taylor <[email protected]> - 2.91.6-1
- Update to 2.91.6
* Tue Jan 11 2011 Matthias Clasen <[email protected]> - 2.91.5-1
- Update to 2.91.5
* Fri Jan 7 2011 Matthias Clasen <[email protected]> - 2.91.4-1
- Update to 2.91.4
* Fri Dec 3 2010 Matthias Clasen <[email protected]> - 2.91.3-2
- Rebuild against new gtk
- Drop no longer needed %%clean etc
* Mon Nov 29 2010 Owen Taylor <[email protected]> - 2.91.3-1
- Update to 2.91.3
* Tue Nov 9 2010 Owen Taylor <[email protected]> - 2.91.2-1
- Update to 2.91.2
* Tue Nov 2 2010 Matthias Clasen <[email protected]> - 2.91.1-2
- Rebuild against newer gtk3
* Fri Oct 29 2010 Owen Taylor <[email protected]> - 2.91.1-1
- Update to 2.91.1
* Mon Oct 4 2010 Owen Taylor <[email protected]> - 2.91.0-1
- Update to 2.91.0
* Wed Sep 22 2010 Matthias Clasen <[email protected]> - 2.31.5-4
- Rebuild against newer gobject-introspection
* Wed Jul 14 2010 Colin Walters <[email protected]> - 2.31.5-3
- Rebuild for new gobject-introspection
* Tue Jul 13 2010 Adel Gadllah <[email protected]> - 2.31.5-2
- Build against gtk3
* Mon Jul 12 2010 Colin Walters <walters@pocket> - 2.31.5-1
- New upstream version
* Mon Jul 12 2010 Colin Walters <[email protected]> - 2.31.2-5
- Rebuild against new gobject-introspection
* Tue Jul 6 2010 Colin Walters <[email protected]> - 2.31.2-4
- Changes to support snapshot builds
* Fri Jun 25 2010 Colin Walters <walters@megatron> - 2.31.2-3
- drop gir-repository-devel dep
* Wed May 26 2010 Adam Miller <[email protected]> - 2.31.2-2
- removed "--with-clutter" as configure is claiming it to be an unknown option
* Wed May 26 2010 Adam Miller <[email protected]> - 2.31.2-1
- New upstream 2.31.2 release
* Thu Mar 25 2010 Peter Robinson <[email protected]> 2.29.1-1
- New upstream 2.29.1 release
* Wed Mar 17 2010 Peter Robinson <[email protected]> 2.29.0-1
- New upstream 2.29.0 release
* Tue Feb 16 2010 Adam Jackson <[email protected]> 2.28.1-0.2
- mutter-2.28.1-add-needed.patch: Fix FTBFS from --no-add-needed
* Thu Feb 4 2010 Peter Robinson <[email protected]> 2.28.1-0.1
- Move to git snapshot
* Wed Oct 7 2009 Owen Taylor <[email protected]> - 2.28.0-1
- Update to 2.28.0
* Tue Sep 15 2009 Owen Taylor <[email protected]> - 2.27.5-1
- Update to 2.27.5
* Fri Sep 4 2009 Owen Taylor <[email protected]> - 2.27.4-1
- Remove workaround for #520209
- Update to 2.27.4
* Sat Aug 29 2009 Owen Taylor <[email protected]> - 2.27.3-3
- Fix %%preun GConf script to properly be for package removal
* Fri Aug 28 2009 Owen Taylor <[email protected]> - 2.27.3-2
- Add a workaround for Red Hat bug #520209
* Fri Aug 28 2009 Owen Taylor <[email protected]> - 2.27.3-1
- Update to 2.27.3, remove mutter-metawindow.patch
* Fri Aug 21 2009 Peter Robinson <[email protected]> 2.27.2-2
- Add upstream patch needed by latest mutter-moblin
* Tue Aug 11 2009 Peter Robinson <[email protected]> 2.27.2-1
- New upstream 2.27.2 release. Drop upstreamed patches.
* Wed Jul 29 2009 Peter Robinson <[email protected]> 2.27.1-5
- Add upstream patches for clutter 1.0
* Wed Jul 29 2009 Peter Robinson <[email protected]> 2.27.1-4
- Add patch to fix mutter --replace
* Sat Jul 25 2009 Fedora Release Engineering <[email protected]> - 2.27.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Sat Jul 18 2009 Peter Robinson <[email protected]> 2.27.1-2
- Updates from review request
* Fri Jul 17 2009 Peter Robinson <[email protected]> 2.27.1-1
- Update to official 2.27.1 and review updates
* Thu Jun 18 2009 Peter Robinson <[email protected]> 2.27.0-0.2
- Updates from initial reviews
* Thu Jun 18 2009 Peter Robinson <[email protected]> 2.27.0-0.1
- Initial packaging