forked from GNOME/jhbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1082 lines (954 loc) · 44.3 KB
/
NEWS
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
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==============
Version 3.5.91
==============
Fixed bugs:
- #656081, offer to git clean -dfx over "make distclean"
- #660844, Default to running autogen.sh on build
- #670213, supports-parallel-builds="no" should work if makeargs="-j 4"
set in .jhbuildrc
- #670240, jhbuild doesn't handle correctly drive when DESTDIR is used
- #681289, --distclean and --clean should just distclean
- #681290, document --distclean in manual
- #681342, use systemmodule for 3.6 modulesets
- #681886, sysdeps should list package name and pkg-config name
- #682904, jhbuild fails on opencc
- #682951, jhbuild update --help uses 'build' instead of 'update' in two
places
- #683408, bootstrap: Update libtool to 2.4.2
Translators:
- Daniel Mustieles (es)
- Matej Urbančič (sl)
Documentation translators:
- Daniel Mustieles (es)
Many thanks to all contributors: Juan A. Suarez Romero, Paolo Borelli,
Giovanni Campagna, Carlos Garcia Campos, William Jon McCann, Craig Keogh,
Colin Walters, Rui Matos, Philip Withnall, Daniel Mustieles, Matej
Urbančič, Christophe Fergeau, Matthias Clasen, Claudio Saavedra, Volker
Sobek, Javier Jardón, Stef Walter, Jens Georg, Dan Winship, Marcin Wojdyr
=============
Version 3.5.5
=============
Fixed bugs:
- #581515, Don't build DeviceKit-disks by default
- #656081, offer to git clean -dfx over "make distclean"
- #671042, enhance system dependencies beyond pkg-config to detect include
files & executable files
- #672697, [RFC] branch/@version not required for tarball?
- #678361, jhbuild: don't call get_system_modules() when
config.check_sysdeps is False
- #678709, create a new JHBuild tarball
- #678869, jhbuild: svn URLs broken by calling os.path.abspath()
- #679022, libnl-3 has wrong name for pkg-config file
- #679375, The python version in the example/jhbuild-session
- #679643, core-3.6: Add ibus dependency for g-s-d and g-c-c
- #679792, jhbuild cmake: use os.makedirs() to create builddir directory
- #679817, Add gnome-calendar to jhbuild
- #679948, Packages have unmet dependencies
- #679966, world-3.6: declare NetworkManager vala dependency
- #680389, gnome-shell has undeclared runtime dependency on gdm
- #681113, 3.6: nautilus requires tracker
Translators:
- Daniel Mustieles (es)
- Andika Triwidada (id)
- Seong-ho Cho (ko)
- Kjartan Maraas (nb)
- Matej Urbančič (sl)
Documentation translators:
- Daniel Mustieles (es)
Many thanks to all contributors: Seong-ho Cho, Colin Walters, Philip
Withnall, Christophe Fergeau, Dan Winship, Javier Jardón, Bastien Nocera,
Luca Ferretti, Xan Lopez, Tommi Vainikainen, Rui Matos, Ryan Lortie, Ray
Strode, Marcin Wojdyr, Alexandre Franke, Craig Keogh, Matej Urbančič,
Andika Triwidada, Carlos Garcia Campos, Stef Walter, Matthias Clasen, Daniel
Mustieles
=============
Version 3.5.3
=============
Fixed bugs:
- #581515, Don't build DeviceKit-disks by default
- #612886, Add ability to "skip-install"
- #646510, jhbuild should use g_get_user_config_dir()
- #655501, jhbuild list shouldn't load package database packagedb.xml
- #655763, JHBuild should work without a config file ~/.jhbuildrc, use
defaults
- #656818, make bootstrap all or nothing
- #667586, autotools: Move towards GNOME Build API logic
- #668368, Use new documentation infrastructure (yelp-tools instead of
gnome-doc-utils)
- #669369, Problems building gnome-common and gtk-doc
- #669554, Inform user if required system dependencies are missing
(systemmodule)
- #670220, [jhbuild, cmake, Windows] add -G "Unix Makefiles" to cmake
arguments
- #670225, jhbuild on Windows: common os.rename() problem
- #670335, babl 0.1.2 fails to build on MacOSX
- #670683, jhbuild autotools: re.sub() with path as repl gives error for
some paths
- #670696, Make --no-network more useful for tarball modules
- #670814, checkout_mode = 'clobber' interacts badly with tarball source-
subdir
- #672205, jhbuild: add supports-non-srcdir-builds attr for cmake
- #672974, jhbuild tolerates relative paths in .jhbuildrc
- #673202, autogen-sh=autoreconf always replaced with configure
- #673329, Please release jhbuild 3.4
- #673987, Fix installation of tracker error "Not a directory"
- #674010, Fix libmusicbrainz .pc installation path
- #674315, polkit fails checkout stage
- #674353, 'prefix' should also get the special expanduser treatment
- #675416, Don’t run `make install` after `jhbuild make uninstall`
- #675570, jhbuild: allow no "triggers" directory
- #676224, display circular dependencies in 'jhbuild checkmodulesets'
command
- #676490, tarballs with buildroot set results in directory name same as
filename
- #677271, jhbuild make: Automatically create modules for non-existent
ones
- #677860, Add realmd
- #677979, jhbuilds setting PYTHONPATH does not work with python 3.x
- #678132, check_sysdeps setting in config file is ignored
- #678159, folks depends on libzeitgeist
- #678372, ekiga requires a higher versions of ptlib & opal to compile
- #678704, libproxy 0.4.7 does not build with newer GCC (4.7)
- #678723, Folks does not build
- #678802, cant build gnome-online-accounts because of missing libsecret
- #678958, apps-3.6: use svn branches for ptlib and opal
- #679124, file-roller depends on autoconf version 2.69 or higher
- #679407, GST_PLUGIN_PATH and GST_REGISTRY override broken for dual
install
Translators:
- Marek Černocký (cs)
- Daniel Winzen (de)
- Vasilis Tsivikis (el)
- Daniel Mustieles (es)
- Fran Diéguez (gl)
- Andika Triwidada (id)
- Luca Ferretti (it)
- Daniel Șerbănescu (ro)
- Martin Srebotnjak, Matej Urbančič (sl)
Documentation translators:
- Daniel Mustieles (es)
- Martin Srebotnjak (sl)
Many thanks to all contributors: Dan Winship, Kalev Lember, Joanmarie Diggs,
Jasper St. Pierre, Thomas Hindoe Paaboel Andersen, Colin Walters, Philip
Withnall, Cosimo Cecchi, Christophe Fergeau, Jeremy Whiting, Javier Jardón,
Bastien Nocera, Owen W. Taylor, Luca Ferretti, Xan Lopez, Ignacio Casal
Quinteiro, David King, Fran Diéguez, Piotr Drąg, Víctor Manuel Jáquez
Leal, Ray Strode, Marek Černocký, Marcin Wojdyr, Olav Vitters, Tshepang
Lekhonkhobe, Vasilis Tsivikis, Frederic Peters, Guillaume Desmottes, Craig
Keogh, Stef Walter, Krzesimir Nowak, Giovanni Campagna, Simon Feltman,
Andika Triwidada, Carlos Garcia Campos, Martin Srebotnjak, Matej Urbančič,
Daniel Șerbănescu, Matthias Clasen, Daniel Mustieles, Florian Müllner,
Marc-André Lureau, Daniel Winzen
=============
Version 3.4.0
=============
Fixed bugs:
- #634985, Tilde character in .jhbuildrc is misinterpreted
- #650533, Make notifications less annoying
- #654555, Don't have two ways to be installed
- #654686, parallel make by default
- #654872, Delete no longer shipped files at install time
- #655164, All tests were broken by recent changes
- #655688, Improve error message when command not found
- #656399, remove arch support
- #656789, Add '3.2.x' to version in JHBuild bugzilla
- #658601, checkout_mode export can't get version attribute from svn
- #660939, Update autotools configuration
- #661010, jhbuild modulesets require out-of-date version of libgee (0.6.0
instead of 0.6.2.1)
- #661367, 'jhbuild make' not documented in manual
- #661412, Make.py should import logging
- #661533, gtk+ depends on glib 2.31.0
- #661641, gdk-pixbuf request glib 2.31.0
- #661848, jhbuild dependencies issues
- #662392, Error when pwd is removed
- #662928, The include-check rule in Makefile.plain always fails
- #663003, "Failed to parse" error for moduleset definitions blames wrong
file
- #663189, Make "jhbuild make" smarter
- #663255, config: Export GST_PLUGIN_PATH
- #663839, Cannot compile cogl in jhbuild: requested branch is not
available
- #664154, 3.4: Add Boxes & its deps
- #664230, autogen.sh should complain about make (or automake?) not being
present
- #664231, configure_without_autotools should not prompt "now type make"
if it doesn't find key dependencies
- #664304, make: Allow specifying make flags
- #664796, add libvirt to 3.4 moduleset
- #665030, IOError: [Errno 2] No such file or directory:
'/proc/22621/status'
- #665499, JHBuild fails to build if MAKE contains a space
- #666425, Handle alphabetic parts of version string
- #666546, tiny bug in sample.jhbuildrc
- #666577, Add '3.4.x' to version in JHBuild bugzilla
- #668107, jhbuild update does not really update git repositories
- #668368, Use new documentation infrastructure (yelp-tools instead of
gnome-doc-utils)
- #668434, tracker is listed in the build order after nautilus even though
tracker has a hard dependency on nautilus
- #668879, packagedb.add takes 4 args, linux.py & perl.py supply 3
- #669205, nspr/nss: update to latest versions
- #669437, libxml2 symbol versioning causes problems
- #669475, jhbuild gui doesn't work
- #669589, bootstrap: bump to automake 1.11.3
- #669658, moduleset.dtd: element moduleset missing cmake
- #669750, Should set GST_REGISTRY
- #669953, jhbuild's udev is too old to support gnome-boxes
- #669956, don't autogen avahi
- #670094, cmake/Windows fix
- #670123, libxklavier 5.2 needs patch to fix introspection
- #670127, shared-mime-info 1.0 is not safe for parallel builds
- #670154, use os.sep instead of literal '/' in hbuild/utils/fileutils.py
- #670343, udev libtool pain
- #670349, jhbuild: fix handling of pretty_print=False
- #670533, cairomm: missing dep on libsigc++2
- #670625, autotools: Don't run make check in parallel
- #670698, bluez: mismatching checksum
- #670774, apps-3.4: gnome-games depends on yelp-tools now
- #670799, gmime module needs gpgme as a system dependency
- #670801, jhbuild: small clean up in modtypes/cmake.py
- #670917, gnome-doc-utils requires rarian-compat: "/bin/sh: scrollkeeper-
config: command not found"
- #670940, gnome-themes-standard: missing dependency on gtk+
- #670943, js185 fails checkout stage
- #670993, WebKit: dependency on geoclue should be stronger
- #671162, jhbuild doesn't work if old chrt or ionice is installed
- #671217, liboauth fails checkout stage
- #671226, avoid message about unknown key e
- #671353, outdated text on Python scripts
- #671365, libgxps: missing dependency on liblcms2
- #671460, jhbuild: bazaar not working in checkout_mode = 'export'
- #671634, fix for supports-non-srcdir-builds in autotools
- #671697, core-deps-base-3.4: lcms2, ical: use ./configure
- #671700, core-deps-3.4: build libgsf from git
- #671789, fix eog dependencies and suggests
- #671891, Bump poppler dependency from 0.18.0 to 0.18.4 to fix some
compile errors
- #672172, jhbuild: fix for undefined name in bzr.py
- #672206, jhbuild moduleset.dtd: added pkg-config, removed ant
- #672266, Don't run triggers if not installing
- #672634, tracker has undeclared dependency against totem-pl-parser
- #673950, core-deps-base-3.[4|6]: dbus-glib depends on expat
- #673957, deps-3.6: fix caribou deps depending on gee-0.6 (gee-1.0)
- #673994, deps-3.6: gstreamer has been branched
- #673999, gnome-terminal gnome suites 3.6 fails to build
- #674007, core-deps-3.[4,6]: fix musicbrainz build
Translators:
- Marek Černocký (cs)
- Mario Blättermann, Christian Kirbach (de)
- Kristjan SCHMIDT (eo)
- Daniel Mustieles (es)
- Fran Diéguez (gl)
- Jiro Matsuzawa (ja)
- Seong-ho Cho, Seong-ho, Cho (ko)
- Kjartan Maraas (nb)
- Kirill Moseevskih (ru)
- Matej Urbančič (sl)
- Wylmer Wang, Yinghua Wang (zh_CN)
Documentation translators:
- Daniel Mustieles (es)
- OKANO Takayoshi, Jiro Matsuzawa (ja)
Many thanks to all contributors: Emmanuele Bassi, Gert Kulyk, John Ralls,
Travis Reitter, Jon McCann, Zeeshan Ali (Khattak), Jasper St. Pierre, Seong-
ho Cho, Thomas Hindoe Paaboel Andersen, Yinghua Wang, Mario Blättermann,
Richard Hughes, Philip Withnall, Javier Jardón, Christophe Fergeau, Jiro
Matsuzawa, Kjartan Maraas, Seong-ho, Cho, Cosimo Cecchi, Jens Georg, Ryan
Lortie, Bastien Nocera, Owen W. Taylor, Marc-André Lureau, Paolo Borelli,
Danielle Madeley, Christian Kirbach, Felix Riemann, Christian Persch, David
King, Fran Diéguez, Piotr Drąg, Tshepang Lekhonkhobe, Thomas Wood, Andre
Klapper, Shaun McCance, Marek Černocký, Matthias Clasen, Kristjan SCHMIDT,
Xan Lopez, Wylmer Wang, Guillaume Desmottes, Murray Cumming, Craig Keogh,
Alejandro G. Castro, Juan A. Suarez Romero, Stef Walter, Damien Lespiau,
Alejandro Piñeiro, Colin Walters, Giovanni Campagna, Juan Pablo Ugarte,
Gustavo Noronha Silva, Krzesimir Nowak, Kirill Moseevskih, Carlos Garcia
Campos, Luca Ferretti, Matej Urbančič, Yuri Myasoedov, Martin Robinson,
OKANO Takayoshi, Marcin Wojdyr, Daniel Mustieles, Michael Terry, Martin
Pitt, Florian Müllner, Robert Bragg, Matthew Barnes
=============
Version 3.2.1
=============
Fixed bugs:
- #648990, [PATCH] Support running scan-build (Clang Static Analyzer) with
autotools projects
- #653050, "jhbuild make" command
- #654701, consider hacks for Debian and other tar+wget wrappers that
don't have RPM-like Provides: pkgconfig(foo)
- #655164, All tests were broken by recent changes
- #655417, build, tinderbox, list, info commands are slow
- #660455, Accerciser changes in 3.2 and 3.4 modulesets
- #660527, jhbuild fails to run on mac or windows
- #660853, Broken bz2 files terminates jhbuild
- #660939, Update autotools configuration
- #660995, change the error message on command not found
- #661010, jhbuild modulesets require out-of-date version of libgee (0.6.0
instead of 0.6.2.1)
Translators:
- Marek Černocký (cs)
- Mario Blättermann (de)
- Daniel Mustieles, Jorge González (es)
- Alexandre Franke (fr)
- Matej Urbančič, Martin Srebotnjak (sl)
Documentation translators:
- Daniel Mustieles (es)
Many thanks to all contributors: Javier Hernández, Kalev Lember, Joanmarie
Diggs, Thomas Hindoe Paaboel Andersen, Colin Walters, Javier Jardón, Dan
Winship, Cosimo Cecchi, Jeremy Huddleston, Xan Lopez, Jorge González, Marek
Černocký, Matthias Clasen, Alexandre Franke, Guillaume Desmottes, Craig
Keogh, Matej Urbančič, Mario Blättermann, Björn Lindqvist, Krzesimir
Nowak, Martin Srebotnjak, Stef Walter, Daniel Mustieles, Michael Terry
=============
Version 3.2.0
=============
Fixed bugs:
- #564373, packagekit - how to best exploit it in jhbuild
- #606414, after failed installation offer distclean/remove-and-rebuild
- #606664, add support for running "make distclean"
- #619002, libproxy doesn't build
- #636888, nested modules don't work with dvcs_mirror_dir
- #637728, Restore support for absolute moduleset paths
- #637917, evolution-data-server no longer needs --enable-gtk3 argument
- #637989, Dependency error - Clutter should be built after Atk
- #638212, cannot build via jhbuild gnome-themes-extras
- #638254, there's no evolution-mapi entry for 3.0 module
- #638521, libchamplain uses GTK+3 now
- #638919, [buildbot] commit links don't work for all modules
- #639052, Many modules depend on unknown module in 3.0 modulesets
- #639968, accerciser is missing from 3.0 moduleset
- #640429, update jhbuild moduleset for glabels
- #640562, pulseuadio version not compilable for gnome-shell
- #640889, Missing module gnome-python in 3.0
- #641307, libsoup errors out because it requires non-built glib-
networking
- #642155, local patch files are sometimes not found by "patch" tool
- #642245, angosso.net
- #642897, pyatspi2 should suggest at-spi2-core
- #643864, warnings during jhbuild sanitycheck
- #643962, gnome-sharp module doesn't exist but f-spot and taglib-sharp
depend on it
- #644303, UPower requires gudev 0.147, need to update from 0.145
- #644326, Xulrunner needs to be updated to 1.9.2.15
- #644506, Update Tracker version to 0.10.2
- #644639, build: Don't choke on Windows with PATH containing '.'
- #644646, Vino and Vinagre dependencies updates
- #645187, Set DBUS_SYSTEM_BUS_ADDRESS in environment
- #645296, Breaks when error occurs with the -C option
- #645301, gudev failing to build
- #645386, Install xz-utils when not available
- #645543, at-spi2-atk should include his dependency with at-spi2-core
- #645883, Use upstream gettext instead the glib one
- #645971, mozilla xulrunner 1.9.2.15 unavailable
- #646356, jhbuild bootstrap installs autoconf 2.65 but telepathy logger
requires 2.66
- #647231, Add "workdir", use make install DESTDIR=, and clean .la files
- #647431, moduleset: Import expat
- #647433, Also set moduleset_name if URI does not end in '.modules'
- #647445, gnome-desktop needs a hard dependency on gobject-introspection
- #647537, git: Fix switching to the currently configured dvcs-mirror
- #647545, modtypes: use tree_id() consistently as revsion
- #647643, autotools: apparent copypaste error in do_distcheck.depends and
do_distcheck.error_phases
- #647868, gudev depends on gobject-introspection but that's not modelled
- #649075, gitignore: Ignore several generated files
- #649463, Less duplicated work when parsing modulesets
- #649888, set INFOPATH
- #649959, gnome-user-docs: build failure: *** missing separator. Stop.
- #650440, disable notifications by default
- #650443, terminal: Print cwd of command
- #650445, gnome-suites-core-deps-3.2: Switch over to js185 release for
gjs
- #650533, Make notifications less annoying
- #650612, libproxy: Remove mozilla dependency
- #651580, building gnome-games builds gtk+-2 (but should not)
- #651649, [3.2] Totem has clutter-gtk as a dependency
- #652666, ant modtype broken
- #653048, config: Set JHBUILD_PREFIX in environment
- #653102, terminal: Add new terminal_background_build key, implement it
- #653156, Be more robust processing files in installroot
- #653173, Add java bindings to core-deps
- #653272, 3.2: Update to vala 0.13
- #653273, 3.2: Update to gdata 0.9
- #653842, DESTDIR usage breaks installation of Pango, gdk-pixbuf, rsvg,
etc
- #653853, Do not build old versions of automake
- #653928, ability for global and per-module post-install commands
- #654013, Revert "Clean .la files post-install"
- #654062, Log when we're moving files from temporary DESTDIR
- #654466, tinderbox outputs lots of DESTDIR
- #654492, Can't build due to Permission denied: '/etc/pkcs11'
- #654512, Add some more triggers
- #654516, Update of accerciser's modulesets
- #654522, Don't fail builds if the manifest is not set
- #654578, autogen.sh: remove obsolete USE_GNOME2_MACROS
- #654582, Clean up module XML parsing
- #654592, Do something with modules that don't support DESTDIR
- #654708, KeyError: 'nice_buildinstallprog'
- #654768, XDG_DATA_DIRS in jhbuild/config.py breaks build (at least on
stock lucid)
- #654855, partial: Keep building when a system dependency transitions
from too old -> new enough
- #655056, Can't build gnome-settings-daemon due to missing dependency on
upower
- #655077, vala needs to be >0.12 for bootstrapping properly
- #655079, Add gnome-tweak-tool
- #655157, [3.2] gudev fails to build due to mismatched libtool
- #655340, triggers do not respect quiet_mode nor tinderbox
- #655417, build, tinderbox, list, info commands are slow
- #655484, re-write the place-hoders %s in python strings for convenience
of translation
- #655542, Add various missing pkg-config IDs
- #655546, [PATCH] Support SystemInstall on non-packagekit systems
- #655553, sysdeps: Do not use jhbuilt pkg-config
- #655555, Bump libmapi to 0.11 and bump samba to alpha16 (but tarball
misses autogen.sh's)
- #655613, sysdeps command not documented in manual
- #656331, gdk-pixbuf should have a dependency on gobject-introspection
- #656400, [patches] update pygobject to paralell install pygobject 3.0
and pygobject 2.28
- #656427, gnome-icon-theme-symbolic should have dependency on gtk+-2
- #656640, [3.2] Fix colord and packagekit repos
- #656653, python version built by jhbuild bootstrap is outdated
- #656697, jhbuild for telepathy-glib fails
- #656730, evince has a missing dependency on nautilus
- #656748, jhbulding ATs does not pull in at-spi2-atk
- #656880, gnome-icon-theme: missing depends on gtk+
- #656944, dbus-sharp: missing dependency on mono
- #656964, dbus-sharp-glib.dll sought in /opt/gnome/lib instead of
/opt/gnome/lib64
- #656966, WebKit: missing dependency on gst-plugins-base
- #657144, Files missing in POTFILES.in
- #657226, While running any operation with jhbuild, I am getting the
following error-
- #657258, uninstall: Fix broken error message
- #657543, hamster-applet: missing Depends on gnome-control-center
- #658361, jhbuild attempts to 'gunzip -dc'
- #658881, Error when starting up jhbuild: Non-ASCII character in
.jhbuildrc
- #659115, polkit tries and fails to 'make' before 'configure'
Translators:
- Gil Forcada (ca)
- Marek Černocký, Wouter Bolsterlee (cs)
- Mario Blättermann, Wouter Bolsterlee (de)
- Wouter Bolsterlee (en_GB)
- Daniel Mustieles, Jorge González, Wouter Bolsterlee (es)
- Alexandre Franke, Bruno Brouard, Wouter Bolsterlee (fr)
- Fran Dieguez, Wouter Bolsterlee, Fran Diéguez (gl)
- Luca Ferretti, Wouter Bolsterlee (it)
- Wouter Bolsterlee (ja)
- Kjartan Maraas, Wouter Bolsterlee (nb)
- Wouter Bolsterlee (nl)
- Rodrigo Padula de Oliveira, Wouter Bolsterlee, Gabriel F. Vilar (pt_BR)
- Martin Srebotnjak, Matej Urbančič, Wouter Bolsterlee (sl)
- Daniel Nylander, Wouter Bolsterlee (sv)
- Wouter Bolsterlee (uk)
- Wylmer Wang, Aron Xu, Yinghua Wang, Wouter Bolsterlee (zh_CN)
Documentation translators:
- dmustieles, Daniel Mustieles (es)
- Claude Paroz (fr)
Many thanks to all contributors: Kalev Lember, Jasper St. Pierre, Colin
Walters, Sean Finney, Zeeshan Ali (Khattak), David King, Fran Diéguez,
Andre Klapper, Alexandre Franke, Daniel Nylander, Bruno Brouard, Chris
Kühl, Stef Walter, Philip Withnall, Krzesimir Nowak, Carlos Garcia Campos,
Richard Hughes, Brian Nitz, Olivier Le Thanh Duong, Emmanuele Bassi,
Stéphane Maniaci, Gil Forcada, Travis Reitter, Claudio Saavedra, Javier
Jardón, Bastien Nocera, Christian Kirbach, Christian Persch, Jorge
González, John Stowers, Martyn Russell, Aron Xu, Rodrigo Padula de
Oliveira, dmustieles, Łukasz Jernaś, Emilio Pozuelo Monfort, Jürg
Billeter, Sebastian Pölsterl, Daniel Mustieles, Felix Riemann, Marc-André
Lureau, Michael J. Chudobiak, William Jon McCann, Thomas Hindoe Paaboel
Andersen, Yinghua Wang, Needs, Mario Blättermann, Dirk Wallenstein, Dan
Winship, Cosimo Cecchi, Javier Hernández, Jens Georg, Vincent Untz, Luca
Ferretti, Alberto Ruiz, Piotr Drąg, José Aliste, Claude Paroz, Wylmer
Wang, Marek Černocký, Matthias Clasen, Ryan Lortie, Wouter Bolsterlee,
John (J5) Palmieri, Craig Keogh, Jason D. Clinton, Damien Lespiau, Eugen
Dedu, Olav Vitters, Diego Escalante Urrelo, Matthew Barnes, Fran Dieguez,
Joanmarie Diggs, Carlos Martín Nieto, Javier Jardon, Federico Mena
Quintero, Enrico Minack, Kjartan Maraas, Owen W. Taylor, Paolo Borelli, Xan
Lopez, Ignacio Casal Quinteiro, Gabriel F. Vilar, Guillaume Desmottes,
Murray Cumming, Raul Gutierrez Segales, Juan A. Suarez Romero, Alejandro
Piñeiro, Martin Srebotnjak, Matej Urbančič, Michael Terry, Florian
Müllner
==============
Version 2.32.4
==============
Fixed bugs:
- #560237, Can't download from svn servers with validation error
- #599212, Add support for distcheck to jhbuild autobuild command
- #602682, Python 2.5.2 doesn't build on OSX 10.6 with gcc-4.2.1
- #610054, autobuild crashes when build fails
- #610943, Please add anjuta-extras
- #616659, failure in phase "build" cannot be ignored
- #618499, building nss in default moduleset breaks jhbuild
- #618992, Remove obsolete gconf-dbus module
- #619659, Need to integrate at-spi2 modules
- #621152, -a and -t parameters are incompatible in "jhbuild list"
- #621194, cmake doesn't configure (reconfigure) when --autogen
- #622287, [3.0] Remove deprecated esound and audiofile libraries
- #622316, jhbuild cannot find pyclutter source
- #622542, gnome-doc-utils doesn´t compile
- #622859, poppler 0.14.0 fails to build: parseargs.o: undefined reference
to symbol 'gatof'
- #623230, [git] Add optional branch attributes to snapshot
- #623425, Remove --enable-gstreamer argument from gnome-control-center
- #623439, DeviceKit-power is now UPower and Jhbuild fails
- #623500, Error during phase build of gtk+ with Jhbuild: Cairo was not
compiled with support fot the xlib backend
- #623662, [git] Add '-dirty' suffix to tree_id if dirty
- #623668, [PATCH] build: Suppress the 195 lines of warnings from Automake
- #623768, libproxy build fail: "jsapi.h not found"
- #623930, [git] Let sticky date move back and forth along master
- #623931, [git] Make it possible to leave the sticky-date branch
- #624077, Manual should detail running a Single GNOME Application
- #624079, Manual shouldn't have Frequently Asked Questions (FAQ)
- #624436, docs for the 'patch' feature are incorrect
- #624969, gnome-media depends on gnome-control-center
- #626039, Remove PolicyKit/PolicyKit-gnome from external deps modulesets
- #626042, [2.32] Make sure we only build GNOME 2.32 against GTK+ 2
- #626288, network-manager-applet should suggest mobile-broadband-
provider-info
- #626369, autogen fails to download
- #626808, gnome-disk-utility depends on avahi-ui
- #626839, Mozilla version is outdated
- #627576, totem requires libpeas 0.5.5
- #628339, Review CMake support enhancement
- #628368, Deprecate glade?
- #628556, Add glib-networking to jhbuild
- #628560, Bump libproxy to version 0.4.6
- #628738, D-Bus misconfigured in jhbuild
- #629240, Fix docs for <patch> and <quilt> in tarball <branch>es
- #629316, [Review] Fixed crash in CMake clean
- #630079, gnome-suites-3.0: Evolution seems to require gnome-desktop-3
- #630726, Replicate checkoutdir directory trees below buildroot
- #631108, libtasn1 URL changed
- #631354, Broken dependencies in gnome-suites-3.0 moduleset
- #631583, gnome-menu build error (jhbuild)
- #632265, Fix status line in quiet mode
- #632435, turn the hard dependency on dbus into a soft dependency
- #632843, farlight2 needs a patch
- #632859, [bzr] Never generate copydir location with srcdir property
- #632863, [git] Account for '.git' suffix removal in srcdir
- #633740, gnome 3 module-set: gnome-shell needs gnome-desktop-3
- #633751, gnome 3 module set: gnome-shell needs gsettings-desktop-schemas
- #633794, evolution-exchange and evolution-mapi are wrongly picked from
master with evolution 2-32
- #633850, [3.0] Suggest accountsservice for gnome-control-center
- #634373, fail to build due jhbuild error
- #634382, gnome-desktop dependency error on gnome-themes
- #634866, documentation says min-time, actual name is min-age
- #634867, min-age option is broken
- #634953, Use xulrunner 1.9.2.x in 3.0 moduleset
- #635081, Modulesets with dependencies on trunk versions are wrong
- #635498, jhbuild gui: add check for icon
- #635551, default moduleset is not as claimed
- #635862, autotools modtype should prefer configure over autogen.sh for
tarballs
- #636032, add '2.32.x' and '3.0.x' to Bugzilla versions
- #636169, Fixes for building empathy in 3.0 module sets
- #636196, [PATCH] Update pulseaudio.modules
- #636199, [PATCH] Update libsndfile to 1.0.23 in gnome-suites-core-
deps-3.0.modules
- #636205, Closing tag missing in documentation example
- #636253, Fix build issues building empathy
- #636359, support directory in moduleset config option
- #636595, [PATCH] Adapt WebKit to API change in gdk_window_get_geometry
- #636618, add cairo dependency to gobject-introspection
- #636772, shared-mime-info is not built for Evince
- #636823, nss should be built before NetworkManager
- #636877, jhbuild uninstall automake-1.8 leads to an error
- #636921, Error compiling guile with jhbuild bootstrap
- #637098, mozilla should depend on libnotify
- #637119, Document configuration option dvcs_mirror_dir in Manual
- #637218, error in moduleset.py
- #637488, jhbuild not building Gnome 2.32, error messages
- #637513, the number of methods to run JHBuild GNOME in JHBuild Manual is
wrong
- #637550, gnome-user-share: missing dep on libunique
- #637728, Restore support for absolute moduleset paths
Translators:
- Mario Blättermann (de)
- Daniel Mustieles, Jorge González (es)
- Bruno Brouard, Claude Paroz (fr)
- Fran Diéguez (gl)
- Takayuki KUSANO (ja)
- Djavan Fagundes (pt_BR)
- Matej Urbančič (sl)
- Daniel Nylander (sv)
- Maxim V. Dziumanenko (uk)
- Aron Xu (zh_CN)
Documentation translators:
- Mario Blättermann (de)
- Daniel Mustieles, Jorge González (es)
- Claude Paroz (fr)
- Jiro Matsuzawa, Hiroyuki Sekihara (ja)
Many thanks to all contributors: Emmanuele Bassi, Gil Forcada, Djavan
Fagundes, Zeeshan Ali (Khattak), William Jon McCann, Víctor Manuel Jáquez
Leal, Federico Mena Quintero, Mario Blättermann, Richard Hughes, Philip
Withnall, Cosimo Cecchi, Filippo Argiolas, Jiro Matsuzawa, Kjartan Maraas,
Javier Jardón, Travis Reitter, Nicolas Dufresne, Sven Herzberg, Jiří
Techet, Bastien Nocera, Maxim V. Dziumanenko, Owen W. Taylor, Takayuki
KUSANO, Juan A. Suarez Romero, Paolo Borelli, Luca Ferretti, Xan Lopez,
Vincent Untz, Ignacio Casal Quinteiro, Jorge González, Fran Diéguez,
Mikkel Kamstrup Erlandsen, Tshepang Lekhonkhobe, Thomas Wood, Vivien
Malerba, Claude Paroz, Andre Klapper, Ray Strode, Lucas Rocha, Torsten
Schönfeld, Matthias Clasen, Martyn Russell, Aron Xu, Hiroyuki Sekihara, Dan
Williams, Guillaume Desmottes, Murray Cumming, Craig Keogh, Bruno Brouard,
Daniel Nylander, Chris Kühl, Stef Walter, Andika Triwidada, Jonh Wendell,
Colin Walters, Benjamin Otte, Damien Lespiau, Florian Gawrilowicz, Guido
Günther, Johannes Schmid, Dirk Wallenstein, Krzesimir Nowak, Milan Bouchet-
Valat, Danielle Madeley, Matej Urbančič, Dan Ziemba, Christian Kirbach,
Olav Vitters, Daniel Mustieles, Łukasz Jernaś, Michael Meeks, Pablo
Castellano, Jon TURNEY, Marc-André Lureau
==============
Version 2.30.2
==============
Fixed bugs:
- #560237, Can't download from svn servers with validation error
- #581262, FTBFS: libsndfile: libsqlite3.so: undefined reference to
`dlsym'
- #581515, Don't build DeviceKit-disks by default
- #592438, "bot --step check" doesn't do anything
- #596385, nss 3.12 have not CERT_RegisterAlternateOCSPAIAInfoCallBack
- #597954, '--clean' argument/makeclean configuration option problems
- #598524, evolution depends on nm by default
- #604204, libsndfile library does not include the ldl
- #605932, Problem with libtool
- #606217, versioncontrol: add fossil
- #606218, autotools: chmod +x configure
- #606360, commands: add help
- #606398, log slave config parsing errors
- #606658, cleanone needs network access
- #606924, Add ardour
- #608322, jhbuild fails to clone gstreamer
- #608520, Gnumeric needs libgsf >= 1.14.15
- #608521, Tracker depends on libgee
- #608840, system man pages don't work inside jhbuild
- #608845, jhbuild autobuild --clean does not clean
- #608875, TypeError: run() takes exactly 4 arguments (5 given)
- #609250, Upgrade autoconf version to 2.65
- #609366, Bump external dep on system-tools-backends
- #609368, [PATCH] Please update new postr repository
- #609455, Bump PackageKit tarball in external dep to 0.6.0
- #609874, Add Déjà Dup
- #610024, Please add telegnome support
- #610936, gtksourceview master requires automake 1.11.1 and intltool 0.41
- #610943, Please add anjuta-extras
- #611283, Add pdfmod
- #612297, jhbuild bootstrap: meta-bootstrap has a dependency on unknown
"automake-1.4" module
- #613917, add support for buildbot 0.7.12
- #614948, po/Makefile.in.in is broken, translations aren't installed
- #614957, Manual Frequently Asked Questions, Building GNOME instructions
inaccurate
- #615413, README and INSTALL files out of date
- #615473, Various fixes for testmodule modules
- #615801, Tarball xz support
- #615802, Out of the source tree builds and autoreconf
- #615803, DTD is not complete
- #616104, PA minimum dep is 0.9.16
- #616417, Building mozilla: tarball not on server anymore
- #616593, [docs] branch, repo atrributes & cvs/svn progs
- #617083, correct dvcs_mirror dirs for git & md5 is deprecated
- #617099, [PATCH] Evolution missing dependencies
- #617114, Bzr improvements
- #617200, gjs needs gobject-introspection greater or equal to 0.6.10
- #617270, Portland fails on configure phase
- #617794, jhbuild unusable in some locales
- #618254, build_policy updated and updated-deps should honor dirty git
worktrees
- #618301, UPower 0.9.1 doesn't build
- #618313, Update repository for librest
- #618609, cloning does not consider git user accounts
- #618855, Wrong filename in modulesets/gnome-external-deps-3.0.modules
for xslt
- #618865, Error building libnl
- #618974, [PATCH 00/14] Restructure the _update member of GitBranch
- #619000, nspr fails to build
- #619002, libproxy doesn't build
- #619525, [3.0] libproxy ignores python installed by jhbuild
- #619935, [info] Additional output for git branches
- #619940, [cleanone] Restrict execution to the 'clean' phase
- #620648, [info] Display the source directory for all branch types
- #620729, [3.0] Add libpeas
- #620741, Error building sqlite in the gnome-3.0 moduleset
- #620974, [doc] Document git branch attributes
- #621199, libproxy 0.4.0 doesn't install libproxy-1.0.pc
- #621206, pycairo build failure (Python 2.6 needed)
- #621280, telepathy-mission-control 5.4.0 build failure: undefined
reference to symbol 'dbus_g_connection_unref', not linking
libdbus glib
- #621461, Automatically set GI_TYPELIB_PATH
- #621855, Clean python dependencies
- #622129, libgsf incorrectly lists gnome-vfs and libbonobo as hard
dependencies
Translators:
- Petr Kovar (cs)
- Mario Blättermann (de)
- Philip Withnall (en_GB)
- Daniel Mustieles (es)
- Claude Paroz (fr)
- Kjartan Maraas (nb)
- Matej Urbančič (sl)
- Daniel Nylander (sv)
- Maxim V. Dziumanenko (uk)
Documentation translators:
- Pavlos Tournaris (el)
- Daniel Mustieles (es)
- Claude Paroz (fr)
- Matej Urbančič (sl)
Many thanks to all contributors: Dmitrijs Ledkovs, Kjartan Maraas, Zeeshan
Ali (Khattak), William Jon McCann, Federico Mena Quintero, Mario
Blättermann, Dirk Wallenstein, Claudio Saavedra, Javier Jardón, Vincent
Untz, Maxim V. Dziumanenko, Paolo Borelli, Luca Ferretti, Christian Kirbach,
Petr Kovar, Vivien Malerba, Claude Paroz, Andre Klapper, Wouter Bolsterlee,
Matthias Clasen, Bertrand Lorentz, Guillaume Desmottes, Murray Cumming,
Craig Keogh, Daniel Nylander, Juan A. Suarez Romero, Matej Urbančič,
Johnny Jacob, Pavlos Tournaris, Philip Withnall, Łukasz Jernaś, Carlos
Garcia Campos, Pablo Castellano, Steve Frécinaux, Milan Bouchet-Valat,
Eugen Dedu, Dan Winship, Baptiste Mille-Mathias, Daniel Mustieles, Michael
Terry, Florian Müllner, Sascha Silbe, Jon TURNEY, Marc-André Lureau
==============
Version 2.29.3
==============
Fixed bugs:
- #587489, Crash when checking out pango
- #591231, BuildBot: add support for using the "Nightly" scheduler
(instead of "Periodic")
- #601276, Please add at-spi2-core, at-spi2-atk, and pyatspi2
- #605101, Remove evolution-data-server-dbus
- #606099, Jhbuild installs gobject-introspection 0.6.5 while some modules
require 0.6.7
- #606222, Removing obsolete dependencies in gnome-suites-2.30.modules
Translators:
- Mario Blättermann, Christian.Kirbach (de)
- Daniel Mustieles, Benjamin Valero Espinosa (es)
- Daniel Nylander (sv)
- Maxim V. Dziumanenko (uk)
Documentation translators:
- Mario Blättermann (de)
- Daniel Mustieles, Jorge González (es)
- Claude Paroz (fr)
Many thanks to all contributors: Frederic Crozat, gnome, Luca Ferretti,
William Jon McCann, Pablo Castellano, Gustavo Carneiro, Daniel Nylander,
Mario Blättermann, Jorge González, Christian Kirbach, Baptiste Mille-
Mathias, Claude Paroz, Daniel Mustieles, Ross Burton, Javier Jardón, Maxim
V. Dziumanenko, Vincent Untz, Benjamin Valero Espinosa, Christian.Kirbach,
Paolo Borelli
==============
Version 2.29.2
==============
Fixed bugs:
- #531543, Allow selective choice of poisoning dep tree
- #560092, Jhbuild should use XDG_CACHE_HOME
- #591239, add check for wget/curl in sanitycheck
- #592433, add command and option to run build phase "check"
- #595730, Manual should refer to sample.jhbuildrc and not mention GNOME
svn
- #596129, add nm-applet plugins
- #596905, Better documentation of branches variable
- #597437, 'jhbuild run --inbuilddir=module' doesn't work
- #598391, Manual doesn't document module_makecheck
- #598537, where is libnl?
- #598689, where is pyxdg?
- #601324, Add a new module: PyGI
Translators:
- Mario Blättermann, Christian Kirbach (de)
- Daniel Mustieles, Jorge González (es)
- Matej Urbančič (sl)
- Daniel Nylander (sv)
Documentation translators:
- Mario Blättermann (de)
- Daniel Mustieles, Jorge González, Benjamin Valero (es)
- Claude Paroz (fr)
Many thanks to all contributors: Simon van der Linden, Alexander Larsson,
Zeeshan Ali (Khattak), Luca Ferretti, Christian Kirbach, Benjamin Valero,
Guillaume Desmottes, Daniel Nylander, Mario Blättermann, Jorge González,
Matej Urbančič, Claude Paroz, Daniel Mustieles, Jonh Wendell, Vincent
Untz, Craig Keogh, Jon TURNEY
==============
Version 2.28.0
==============
Fixed bugs:
- #106737, "start at" Option for "jhbuild update"
- #583515, Selecting [1] rerun stage configure after configure failure
runs build
- #589326, nss fails to build due to incompatible /usr/lib/libplc4.so
- #590273, When a git clone is interrupted during the compressing objects
state, there's no way to recover from it automatically.
- #591142, Clean up deprecated dependencies in gnome-suites-2.28.modules
- #591470, jhbuild can't "switch" to gnome-2-28 branch
- #591508, should strip .git from repo name when finding checkout dir name
- #591553, support msdos-created zipfiles
- #592427, Wrong python2.6 path
- #592438, "bot --step check" doesn't do anything
- #592558, Python path depending on the prefix
- #592602, Add gnome-pilot
- #592801, some spelling and grammar mistakes
- #594135, Documentation could provide examples in section Configuration
File Reference
- #594981, Support configuring a buildroot for out of tree builds
- #595440, [2.28] Epiphany branch gnome-2-28 does not exist
- #595441, Brasero 2.28 branch should be brasero-2-28, not gnome-2-28
Translators:
- Mario Blättermann (de)
- Philip Withnall (en_GB)
- Daniel Mustieles (es)
- Claude Paroz (fr)
- Francisco Diéguez (gl)
- Daniel Nylander (sv)
Documentation translators:
- Mario Blättermann (de)
- Daniel Mustieles (es)
- Claude Paroz (fr)
Many thanks to all contributors: Zeeshan Ali (Khattak), Mario Blättermann,
Philip Withnall, Sam Thursfield, Kjartan Maraas, Javier Jardón, Vincent
Untz, Paolo Borelli, Luca Ferretti, Christian Kirbach, Daniel Elstner,
Claude Paroz, Lucas Rocha, Murray Cumming, Daniel Nylander, Craig Keogh, Tim
Janik, Carlos Garcia Campos, Sebastian Pölsterl, Francisco Diéguez, Daniel
Mustieles
===============
Version 2.27.90
===============
Fixed bugs:
- #583515, Selecting [1] rerun stage configure after configure failure
runs build
- #589237, libchamplain vs clutter-cairo-0.8 vs clutter-0.9
- #590064, Set ACLOCAL as well as ACLOCAL_FLAGS
- #590102, move gnome-js-common and gobject-introspection to external
deps?
- #590103, Crash if hash="" in moduleset
- #590273, When a git clone is interrupted during the compressing objects
state, there's no way to recover from it automatically.
- #590359, Remove libgail-gnome where possible
- #591142, Clean up deprecated dependencies in gnome-suites-2.28.modules
- #591236, Review all clutter stuff
- #591470, jhbuild can't "switch" to gnome-2-28 branch
Translators:
- Daniel Mustieles (es)
- Daniel Nylander (sv)
==============
Version 2.27.5
==============
Fixed bugs:
- #588928, Don't try to import md5 twice
- #582446, Options and commands containing the word "checkout" can be
confused with git's meaning of "checkout"
- #584322, [gnome-2.28] add gnome-js-common and update seed dependency
- #585996, force_checkout considered harmful with git
- #588688, Update modest repository
- #588862, Update mono to 2.4.2.2
- #589227, WebKit module fetched from wrong moduleset
- #589234, Dates, Tasks and Contacts are now in git.gnome.org
- #589296, Build pulseaudio before gst-plugins-good
- #589383, loudmouth module fails checkout
- #589482, Add claws-mail repo
- #589660, pango has a soft dependency on gobject-introspection
- #589762, Balsa branch seems to be outdated
- #589767, Add midori repo
- #590103, Crash if hash="" in moduleset
Translators:
- Daniel Mustieles (es)
- Daniel Nylander (sv)
Documentation translators:
- Daniel Mustieles (es)
==============
Version 2.27.4
==============
Major change:
- Support for more hashing algorithms
Fixed bugs:
- #586523, set XCURSOR_PATH so custom cursors work
- #503907, Add WAF support
- #586073, Install desktop file
- #586185, gconf support
- #586874, Fix Makefile syntax in sed command in Makefile.plain
- #587058, Mercurial seems broken
- #587303, Add hashing ability other than md5
- #587764, Revert excessive simplifcation of gconf support
- #588300, No rule to make target `optparse.py', needed by `install-
appPYTHON'
- #588363, add automake 1.11 to bootstrap
Translators:
- Daniel Mustieles (es)
- Claude Paroz (fr)
- Daniel Nylander (sv)
==============
Version 2.27.3
==============
Major changes:
- Rewritten GUI
- Many win32 improvements
Fixed bugs:
- #584283, endless loop when executing command "clean" if the module type
doesn't support it
- #581515, Don't build DeviceKit-disks by default
- #582165, Fix gui option
- #582490, Jhbuild crashing (NameError)
- #583455, [win32 fixes] jhbuild uses subprocess.Popen incompatibly with
win32
- #583838, libtool 2.x breaks guile build