-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
2328 lines (1645 loc) · 81.7 KB
/
ChangeLog
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
2018-05-29 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.13.
* Tagged 1.4.13 release.
* doc/developer-guide.txt: Replace the term "dep atom" by
"package dependency specification".
* libs/multilib.bash.in (get_libdir): New function.
* doc/developer-guide.txt: Describe it.
* libs/Makefile.am (dosed): Substitute @libdir@.
* misc/eselect-mode.el (eselect-mode-keywords-multilib):
Add get_libdir.
2018-01-24 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.12.
* Tagged 1.4.12 release.
* modules/rc.eselect (show_script_status): Add /lib64/rc/bin
to PATH as well, workaround for bug 645240 until OpenRC is fixed.
2018-01-23 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Restore sparc64 which was
lost in a previous update. Sync with arch.list in the gentoo repo.
2018-01-09 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.11.
* Tagged 1.4.11 release.
* modules/profile.eselect (set_symlink): Require --force option
when selecting an experimental profile.
2018-01-08 Ulrich Müller <[email protected]>
* modules/profile.eselect (find_targets): Add a fourth field for
the profiles' status to the output.
(set_symlink): Account for the change in find_targets.
(do_list): Also show the profiles' status, but only in non-brief
output mode. Bug 643864.
2017-12-25 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.10.
* Tagged 1.4.10 release.
* modules/news.eselect (do_list): Check for valid news item format.
* libs/core.bash.in (eval): Make it fatal again, after more than
one year of transition time.
2017-10-14 Ulrich Müller <[email protected]>
* man/news.eselect.5: Update URI of GLEP 42.
2017-06-18 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Map nios2 to nios2 (as it
is called in profiles/arch.list) rather than nios.
2017-05-22 Ulrich Müller <[email protected]>
* modules/profile.eselect (set_symlink): Fix regex, bug 614008.
2017-05-06 Ulrich Müller <[email protected]>
* modules/kernel.eselect (do_set): Don't remove the old symlink
before we know that we have a valid new target, bug 640386.
Simplify.
(set_symlink): Check if the new link target is valid, then remove
any old symlink, then set the new one.
(remove_symlink): Use rm -f.
* modules/kernel.eselect (set_symlink):
* modules/profile.eselect (set_symlink): Check range of number,
bug 617572. Thanks to Takuto Yoshida <[email protected]>.
2017-03-22 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.9.
* Tagged 1.4.9 release.
2017-03-21 Mike Frysinger <[email protected]>
* libs/package-manager.bash.in (arch): Fill out arch matches
a bit more.
2016-12-10 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.8.
* Tagged 1.4.8 release.
2016-12-04 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (get_repositories)
(get_repo_news_dir): Fix pinspect calls, bug 304011.
* modules/news.eselect (find_items, find_repo_dir): Check return
status of package manager calls, bug 601506.
2016-10-31 Ulrich Müller <[email protected]>
* libs/core.bash.in (eval): Disable eval again, because the
workaround for the rc module (sourcing functions.sh) is no longer
needed. See also 2005-05-15 change by ciaranm.
2016-10-30 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.7.
* Tagged 1.4.7 release.
* libs/config.bash.in (store_config): Ignore comment lines in
config files and make parsing more robust, bug 598480.
2016-06-17 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.6.
* Tagged 1.4.6 release.
2016-06-16 Ulrich Müller <[email protected]>
* modules/pager.eselect (EDITOR_LIST): Prefer less to more.
* man/pager.eselect.5: Update.
2016-06-01 Ulrich Müller <[email protected]>
* configure.ac: Make testing for git repository more robust.
* configure.ac: Where possible, use AC_CHECK_PROGS instead of
AC_PATH_PROGS, in order to avoid absolute paths, bug 122260.
* libs/core.bash.in (sed):
* libs/package-manager.bash.in (portageq): Invoke commands with
"command" so that they will work without a path.
2016-01-27 Ulrich Müller <[email protected]>
* bin/eselect.in: Set umask +rx, bug 572348.
2015-08-26 Ulrich Müller <[email protected]>
* doc/developer-guide.txt:
* doc/user-guide.txt:
* doc/release-guide.txt: Use sentence case in headings.
2015-08-22 Ulrich Müller <[email protected]>
* configure.ac (EXTRAVERSION): Fix detection of git revision
for out-of-tree builds.
2015-08-13 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.5.
* Tagged 1.4.5 release.
* autogen.bash: Update for aclocal 1.15 and automake-1.15.
* modules/binutils.eselect:
* man/binutils.eselect.5: Module removed. This has been converted
to a wrapper and moved to the binutils-config package, bug 507870.
* modules/Makefile.am (modules_DATA):
* man/Makefile.am (man_MANS): Update accordingly.
2015-01-24 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.4.
* Tagged 1.4.4 release.
* README: Documentation is now licensed under GPL-2+ or
CC-BY-SA-3.0 (was CC-BY-SA-2.5 before).
2015-01-18 Ulrich Müller <[email protected]>
* modules/rc.eselect (is_script): Don't call external programs.
Test if script is executable, with a shebang in its first line.
* configure.ac (EXTRAVERSION): Use "git describe --long".
2015-01-17 Ulrich Müller <[email protected]>
* modules/rc.eselect: Be compatible with new OpenRC, bug 536822.
(is_script): Test for "openrc-run" or "runscript" in shebang line.
(run_runscript): Omit the interpreter when executing the script.
2014-09-01 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.3.
* Tagged 1.4.3 release.
2014-08-28 Ulrich Müller <[email protected]>
* modules/kernel.eselect (find_targets): Changed heuristic for
recognising kernel source trees: Check for both Makefile and
Kconfig being present, but don't require digits in the directory
name any more. Bug 516754.
* libs/core.bash.in (inherit):
* libs/tests.bash.in (has):
* modules/config.eselect (generic_handle_one_file, accept_handler)
(merge_handler, display_handler):
* modules/news.eselect (find_items, do_list, do_read, do_unread):
* modules/rc.eselect (run_runscript, do_show): Remove redundant $@
in "for" loops throughout.
2014-06-05 Ulrich Müller <[email protected]>
* misc/eselect.bashcomp (_eselect): Improve handling of options
that are followed by an equals sign.
* bin/eselect.in: Parse global options even if we are invoked
as something-config or similar. Respect "--" to indicate end
of options.
2014-05-24 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.2.
* Tagged 1.4.2 release.
* modules/profile.eselect (get_repos): Fix bash 4.3 breakage,
bug 511132.
2014-05-20 Ulrich Müller <[email protected]>
* bin/Makefile.am (dosed):
* libs/Makefile.am (dosed):
* man/Makefile.am (dosed): Use "%" instead of "," as delimiter.
* configure.ac: Replace "git rev-parse" by "git describe", now
that git-r3.eclass supports it (bug 489100).
2014-03-20 Ulrich Müller <[email protected]>
* doc/user-guide.txt: Mention the "unset" action also here.
Remove redundant "Usage" heading.
* doc/developer-guide.txt: Remove duplicate heading, because
rst2html --report=info complains about it.
Reorder the standard action names to be congruent with the
user guide.
* Makefile.am (%.html): Strip comments from html output, in order
to suppress wrong mode information in Emacs local variables.
2014-03-14 Ulrich Müller <[email protected]>
* libs/output.bash.in (write_kv_list_entry): Don't output spurious
trailing whitespace if value is an empty string.
2014-02-25 Ulrich Müller <[email protected]>
* modules/news.eselect (accepted_languages): Suppress "C"
and "POSIX" in output. Support <language>_<territory>.
2014-02-18 Ulrich Müller <[email protected]>
* man/news.eselect.5: Update URI of GLEP 42.
2014-02-15 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.1.
* Tagged 1.4.1 release.
2014-02-09 Ulrich Müller <[email protected]>
* modules/rc.eselect (get_runlevel): Call "rc-status -r" directly,
in order to avoid sourcing functions.sh, bug 373219.
Remove baselayout-1 compatibility code.
(source_rc_functions): Remove function.
(do_show): Don't call source_rc_functions.
(show_script_status): Set proper PATH to service_* commands.
2014-01-19 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Recognise aarch64*/arm64.
2013-12-07 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.4.
* Tagged 1.4 release.
2013-11-19 Ulrich Müller <[email protected]>
* libs/default.eselect.in (do_help): Don't reset output mode.
2013-11-15 Ulrich Müller <[email protected]>
* libs/output.bash.in (write_kv_list_entry): Suppress wrapping
of lines in brief output mode, in order to make automatic parsing
easier. Bug 490882.
* modules/modules.eselect (do_list): New local option --only-names
will output names of modules only, without their description.
This replaces the previous brief output mode behaviour and is
mainly intended for bash completion.
(describe_list_options): New function, documents --only-names.
* bin/eselect.in (es_do_help): Don't force default output mode.
* misc/eselect.bashcomp (_eselect): Call "eselect modules list"
with --only-names option.
* misc/eselect.bashcomp (_eselect): Suggest possible completions
also for an empty list of words, i.e. when the user has not typed
any parameters yet.
2013-11-14 Michael Marineau <[email protected]>
* modules/profile.eselect (set_symlink): Silence profile symlink
warning when using --force, bug 491216.
2013-11-10 Ulrich Müller <[email protected]>
* libs/output.bash.in (space): Implement more efficiently.
2013-10-27 Ulrich Müller <[email protected]>
* autogen.bash: Update for aclocal 1.14.
2013-10-25 Ulrich Müller <[email protected]>
* libs/output.bash.in (colours): Accept an argument and handle
both enabling and disabling of colour output.
(nocolours): Remove function.
* bin/eselect.in: Call 'colours' with appropriate argument.
2013-10-22 Ulrich Müller <[email protected]>
* bin/eselect.in (es_do_list_options, es_do_list_modules):
Remove deprecated functions.
(es_do_help): Move code for listing options and modules to here.
2013-10-21 Ulrich Müller <[email protected]>
* bin/eselect.in: Remove legacy --no-colour option.
Option --colour=no or --colour=never should be used instead.
* bin/eselect.in (es_find_module): Move function to core library.
* libs/core.bash.in (find_module): Rename and simplify.
2013-09-18 Ulrich Müller <[email protected]>
* misc/eselect-mode.el (eselect-mode-keywords-package-manager):
Add env_update.
2013-08-28 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.8.
* Tagged 1.3.8 release.
* autogen.bash: Update for autoconf 2.69 and automake 1.14.
2013-08-24 Ulrich Müller <[email protected]>
* man/Makefile.am (install-symlink-%): Use relative symlinks.
* modules/rc.eselect (source_rc_functions): Drop baselayout-1
compatibility code.
2013-08-08 Ulrich Müller <[email protected]>
* configure.ac: Check whether we are building from git;
include git revision in EXTRAVERSION if we do.
* bin/Makefile.am (dosed): Append EXTRAVERSION to VERSION.
2013-08-06 Ulrich Müller <[email protected]>
* libs/config.bash.in (store_config):
* libs/default.eselect.in (show_usage_message):
* libs/editor-variable.bash.in (do_set):
* libs/output.bash.in (write_kv_list_entry):
* modules/env.eselect (create_profile_env, create_prelink_conf):
* modules/news.eselect (do_list, do_read):
Declare IFS as local variable.
2013-08-05 Ulrich Müller <[email protected]>
* man/bashcomp.eselect.5: Remove stale man page.
* man/Makefile.am (man_MANS): Remove bashcomp.eselect.5 from list.
2013-07-16 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.7.
* Tagged 1.3.7 release.
* modules/bashcomp.eselect: Remove, bug 476992.
* modules/Makefile.am (modules_DATA): Remove bashcomp.eselect.
* Makefile.am (symlinks): Don't install bashcomp-config symlink.
2013-07-14 Ulrich Müller <[email protected]>
* modules/kernel.eselect (find_targets, set_symlink, do_show):
Consider target trees as valid only if they contain a Makefile,
bug 460328. Thanks to C.J. Wijtmans <[email protected]>.
2013-07-11 Ulrich Müller <[email protected]>
* doc/user-guide.txt:
* doc/developer-guide.txt:
* doc/release-guide.txt: These files are now dual-licensed under
GPL-2+ or CC-BY-SA-2.5. Permission from authors Ciaran McCreesh,
Danny van Dyk, and Shyam Mani received per e-mail on 2013-07-10.
* README: Add notice about dual-licensing of documentation.
2013-07-09 Ulrich Müller <[email protected]>
* doc/developer-guide.txt:
* libs/skel.bash.in: Move skel.bash documentation to the library
itself.
* doc/developer-guide.txt: Update description of the "arch"
function.
2013-07-07 Ulrich Müller <[email protected]>
* libs/editor-variable.bash.in (do_set):
* modules/locale.eselect (do_set): Don't return bad status when
ROOT is nontrivial, bug 473308. Thanks to <[email protected]>.
2013-07-06 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.6.
* Tagged 1.3.6 release.
* bin/eselect.in: Save stderr only in bash 4.1 or later, where
automatically assigned file descriptors are available. Using a
fixed descriptor makes bash crash on Darwin, bug 475284.
* libs/core.bash.in (die): Test for saved file descriptor.
2013-07-04 Ulrich Müller <[email protected]>
* misc/eselect-mode.el: New file, editing mode for Emacs,
split off from app-emacs/gentoo-syntax.
* misc/Makefile.am (EXTRA_DIST): Add eselect-mode.el.
2013-06-22 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.5.
* Tagged 1.3.5 release.
2013-06-17 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Workaround for incorrect
definition of ARCH in prefix/linux profiles, bug 473542.
2013-04-06 Ulrich Müller <[email protected]>
* doc/developer-guide.txt: Document the "unset" action; it is used
by several external modules.
2013-02-22 Ulrich Müller <[email protected]>
* modules/profile.eselect (get_symlink_location):
Create profile symlink below PORTAGE_CONFIGROOT, bug 453006.
2013-01-13 Ulrich Müller <[email protected]>
* bin/eselect.in (ESELECT_STDERR): Save stderr file descriptor.
* libs/core.bash.in (die): Restore stderr, otherwise there would
be no output if die was called while stderr is redirected.
Fixes bug 451150. Thanks to Michał Górny <[email protected]>.
2013-01-06 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.4.
* Tagged 1.3.4 release.
2013-01-05 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Complete rewrite of the
fallback code if there is no make.profile symlink. It now relies
on bash variables HOSTTYPE and OSTYPE which are derived from the
standard GNU triplet. The previous implementation had used uname
which would query the kernel, while we need the userland. This
fixes a problem on ppc with 64 bit kernel and 32 bit userland.
Thanks to Brent Baude <[email protected]> and Raúl Porcel
<[email protected]> for the suggestion.
2012-12-06 Ulrich Müller <[email protected]>
* modules/profile.eselect (get_repos, get_repo_path): Use EROOT
to make it work in Prefix, fixes bug 444620. Thanks to Greg Turner
<[email protected]> for bug report and patch.
2012-10-21 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.3.
* Tagged 1.3.3 release.
2012-10-13 Ulrich Müller <[email protected]>
* autogen.bash: Update to automake 1.12. This gets rid of the
"scan_file() called too early to check prototype" error that
occured with aclocal-1.11.
* configure.ac (SED): Replace broken ES_PROG_GNU_SED code by
a straightforward check for gsed or sed, bug 438112.
(READLINK, REALPATH): Simplify logic and add output messages.
(RST2HTML): Simplify.
* acinclude.m4: File removed.
2012-10-11 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (arch): Add amd64 as case label.
* modules/profile.eselect (set_symlink): Include underscore and
hyphen in regexp, because both are allowed in keyword names,
bug 437986. Thanks to Yuta Satoh <[email protected]>.
2012-09-15 Ulrich Müller <[email protected]>
* libs/editor-variable.bash.in (do_set):
* modules/locale.eselect (do_set): Output message only if ROOT
is /, and prefix /etc/profile with EROOT, bug 429960.
* bin/eselect.in (EROOT): Remove trailing slash from ROOT only
if EPREFIX is set. This guarantees that EROOT is equal to ROOT
for empty EPREFIX.
2012-09-13 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.2.
* Tagged 1.3.2 release.
* bin/eselect.in (EROOT): Remove any trailing slash from ROOT
before appending EPREFIX.
2012-09-12 Ulrich Müller <[email protected]>
* modules/profile.eselect (get_symlink_location): When both
/etc/make.profile and /etc/portage/make.profile exist, prefer the
latter. This follows the change of the default location in Portage
and in stages.
2012-08-19 Ulrich Müller <[email protected]>
* modules/binutils.eselect (switch_profile): Fix typo in
data path, bug 431898.
2012-06-27 Ulrich Müller <[email protected]>
* modules/binutils.eselect (find_targets): Properly quote
variables to prevent false globbing, bug 423525.
2012-03-07 Ulrich Müller <[email protected]>
* doc/release-guide.txt: Update to reflect the transition from
subversion to git.
* doc/developer-guide.txt: Remove subversion keywords and don't
use svn_date_to_version function in example module.
2012-02-18 Ulrich Müller <[email protected]>
* modules/modules.eselect (DESCRIPTION, MAINTAINER): Move behind
inherit command and update description.
* libs/default.eselect.in (do_version): Show version of eselect;
show version of the module if it is available.
(VERSION): Set default version to empty string.
* modules/bashcomp.eselect (VERSION):
* modules/binutils.eselect (VERSION):
* modules/config.eselect (VERSION):
* modules/cow.eselect (VERSION):
* modules/editor.eselect (VERSION):
* modules/env.eselect (VERSION):
* modules/kernel.eselect (VERSION):
* modules/locale.eselect (VERSION):
* modules/modules.eselect (VERSION):
* modules/news.eselect (VERSION):
* modules/pager.eselect (VERSION):
* modules/profile.eselect (VERSION):
* modules/rc.eselect (VERSION):
* modules/visual.eselect (VERSION): Don't assign an extra version
for modules that are part of eselect proper.
2012-02-12 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.3.1.
* Tagged 1.3.1 release.
* modules/profile.eselect (get_repos): Fix regular expression
for overlays, bug 403215. Thanks to Sergei Trofimovich
2012-02-02 Ulrich Müller <[email protected]>
* libs/multilib.bash.in (ES_VALID_MULTILIB_DIRS): Add libx32.
(list_libdirs): Scan filesystem for available libdirs, instead of
parsing /etc/ld.so.conf, bug 401843.
2012-01-21 Ulrich Müller <[email protected]>
* doc/user-guide.txt: Document --brief and --colour options.
Don't mention deprecated --no-colour option any more.
* Makefile.am (AUTOMAKE_OPTIONS): Replace dist-bzip2 by dist-xz.
* doc/release-guide.txt: Update.
* configure.ac: Update version to 1.3.
* Tagged 1.3 release.
2011-12-09 Zac Medico <[email protected]>
* libs/package-manager.bash.in (best_version, has_version)
(get_repositories, get_repo_news_dir): portageq uses EROOT,
bug 394187. This fixes "eselect news" for compatibility with
>=sys-apps/portage-2.2.01.19833 (prefix branch), as well as
mainline portage when installed in a prefix.
2011-10-29 Ulrich Müller <[email protected]>
* bin/eselect.in: New option --colour=<yes|no|auto>, similar to
the same option in emerge and ls commands. Spelling --color is
recognised too.
(es_do_list_options): Update accordingly.
(ESELECT_OPTIONS): Remove unused global variable.
* man/eselect.1: Document the --colour option.
* misc/eselect.bashcomp (_eselect): Update.
2011-10-27 Ulrich Müller <[email protected]>
* modules/news.eselect (do_list): Display read/unread flags as one
char only, in order to save some space. Show repository name in
front of title. Bug 388233.
* man/news.eselect.5: Update accordingly.
2011-09-25 Ulrich Müller <[email protected]>
* modules/editor.eselect (EDITOR_LIST):
* modules/visual.eselect (EDITOR_LIST): Remove zile, bug 384451.
* configure.ac: Remove --enable-dodgy-modules configure option.
* modules/Makefile.am: Simplify.
2011-09-18 Ulrich Müller <[email protected]>
* libs/default.eselect.in (show_usage_message): Don't set IFS when
calling describe_*_options. Fixes bug 382693.
2011-08-28 Ulrich Müller <[email protected]>
* modules/profile.eselect (find_targets, set_symlink, do_show)
(do_list): Support profiles in overlays, bug 265264. Thanks to
<[email protected]> and <[email protected]> for sending patches.
(get_repos, get_repo_path): New functions.
* modules/bashcomp.eselect: Code cleaned up.
(find_targets): Simplified.
(do_enable): Don't search for completion files in current working
directory, bug 363481. Create a relative symlink.
* doc/developer-guide.txt: Replace the example by a simplified
version of the kernel module. Mention ROOT, EPREFIX, and EROOT
variables, bug 380731.
* modules/kernel.eselect: Clean up coding style.
2011-07-07 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.16.
* Tagged 1.2.16 release.
2011-06-29 Ulrich Müller <[email protected]>
* modules/env.eselect (update_ldcache): Call ldconfig only for
Linux/GNU and BSD systems.
2011-06-29 Michał Górny <[email protected]>
* modules/env.eselect (update_ldcache): Call ldconfig with '-X' to
not update symlinks, bug 373343.
2011-06-25 Brian Harring <[email protected]>
* libs/package-manager.bash.in (package_manager, envvar)
(best_version, has_version, get_repositories, get_repo_news_dir)
(env_update): Add pkgcore support, bug 304011.
2011-05-02 Ulrich Müller <[email protected]>
* bin/Makefile.am (install-symlink-%): Make relative symlinks.
Thanks to Fabian Groffen.
2011-03-15 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.15.
* Tagged 1.2.15 release.
2011-03-13 Ulrich Müller <[email protected]>
* modules/profile.eselect: Support make.profile in both the /etc
and the /etc/portage directory.
(DESCRIPTION): Don't mention explicit path.
(get_symlink_location): New function, sets MAKE_PROFILE variable.
(do_show, do_set): Call get_symlink_location.
(remove_symlink, set_symlink, do_show, do_set): Use MAKE_PROFILE
instead of hardcoded path.
2011-03-10 Ulrich Müller <[email protected]>
* modules/news.eselect (read_item): Don't precede news item dir
with ${ROOT}, fixes bug 358185.
* doc/developer-guide.txt: Contributed modules should have a
standard header. Eselect is distributed under GPL v2 or later.
2011-01-14 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.14.
* Tagged 1.2.14 release.
* modules/locale.eselect (LOCALE_ENVFILE): Rename file to agree
with documentation in <http://www.gentoo.org/doc/en/utf-8.xml>.
2011-01-13 Ulrich Müller <[email protected]>
* autogen.bash:
* configure.ac: Update for automake 1.11 and autoconf 2.68.
* modules/locale.eselect: New module, manages the LANG variable.
Contributed by Matsuu Takuto <[email protected]> in bug 351363.
* modules/Makefile.am (safe_scripts): Add the new file.
* modules/news.eselect (NEWS_DIR, find_items, write_item_list):
Prefix NEWS_DIR with EROOT instead of separate EPREFIX and ROOT.
2010-11-27 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.13.
* Tagged 1.2.13 release.
2010-11-26 Ulrich Müller <[email protected]>
* libs/package-manager.bash.in (package_manager, run_paludis)
(envvar, best_version, has_version, get_repositories)
(get_repo_news_dir): Use cave rather than paludis. Patch from
Ciaran McCreesh <[email protected]> in bug 346837.
2010-11-21 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.12.
* Tagged 1.2.12 release.
2010-11-11 Ulrich Müller <[email protected]>
* modules/news.eselect (find_items): Sort items by their name,
i.e. effectively by date. Bug 344655.
(do_read): Don't exit the loop if the first read item is met.
* man/news.eselect.5: Update.
* modules/news.eselect (find_items, write_item_list): Add missing
local variable declaration.
2010-08-26 Ulrich Müller <[email protected]>
* misc/eselect.bashcomp: Fix typo in local variables definition.
2010-07-27 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.11.
* Tagged 1.2.11 release.
2010-03-21 Ulrich Müller <[email protected]>
* modules/news.eselect (do_read): Add --quiet (synonym --silent)
option to suppress output.
(describe_read_options): Update.
* man/news.eselect.5: Document --quiet option.
2010-03-11 Ulrich Müller <[email protected]>
* modules/editor.eselect (EDITOR_LIST):
* modules/visual.eselect (EDITOR_LIST): Remove pico.
2010-02-05 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.10.
* Tagged 1.2.10 release.
2010-01-30 Ulrich Müller <[email protected]>
* configure.ac: Test for env-update program.
* libs/Makefile.am (dosed): Substitute ENV_UPDATE.
* libs/package-manager.bash.in (env-update): New function.
* modules/env.eselect (do_update): Call env_update, bug 298742.
* configure.ac: Remove --with-pm configure option.
* libs/Makefile.am (dosed): Don't substitute PACKAGE_MANAGER.
* libs/package-manager.bash.in (package_manager): Don't hardcode
a default, use environment variable at run time only.
2009-12-31 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.9.
* Tagged 1.2.9 release.
2009-12-29 Ulrich Müller <[email protected]>
* modules/env.eselect (do_update): Remove the "makelinks" option.
The logic of this was always wrong, and mtime caching breaks with
recent glibc versions. Bug 298742.
(need_links, LDMTIMEDB): Function and variable removed.
(describe_update_parameters, describe_update_options): Update.
* modules/env.eselect (PATH_CLASS): Fix a typo, ADA_OBJECT_PATH
should be ADA_OBJECTS_PATH.
2009-12-28 Ulrich Müller <[email protected]>
* modules/env.eselect (create_profile_env): Exclude LDPATH from
profile.env, fixes bug 298789.
(is_envfile, update_envvar_classes, create_profile_env)
(create_ld_so_conf, create_prelink_conf, need_links)
(update_ldcache, do_update): Fix quoting and other modifications
to make it whitespace safe, bug 298742.
2009-12-04 Ulrich Müller <[email protected]>
* Makefile.am (MAINTAINERCLEANFILES): Remove config dir, since
only simple files are allowed here.
(maintainer-clean-local): Add rule for cleaning of config dir.
* configure.ac: AC_OUTPUT with arguments is obsolete, use
AC_CONFIG files instead.
* libs/package-manager.bash.in (envvar, best_version, has_version)
(get_repositories, get_repo_news_dir): Error checking was
redundant, because package_manager cannot return unknown values.
2009-11-20 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.8.
* Tagged 1.2.8 release.
2009-11-15 Ulrich Müller <[email protected]>
* libs/skel.bash.in (do_add): Respect EPREFIX also when called
from within an ebuild environment. Patch from Fabian Groffen
<[email protected]> in bug 293317.
2009-11-13 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.7.
* Tagged 1.2.7 release.
* libs/multilib.bash.in (list_libdirs): Handle ROOT properly,
fixes bug 289095.
2009-11-05 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.6.
* Tagged 1.2.6 release.
* bin/eselect.in (es_do_list_options): Mention "--brief" option.
* libs/output.bash.in (is_output_mode): New function.
(write_list_start, write_numbered_list_entry, write_numbered_list)
(highlight_marker): Use it.
* libs/editor-variable.bash.in (do_list):
* modules/news.eselect (do_list, do_read):
* modules/modules.eselect (do_list): Use it.
* doc/developer-guide.txt: Document is_output_mode function.
2009-11-04 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.5.
* Tagged 1.2.5 release.
2009-10-11 Ulrich Müller <[email protected]>
* libs/core.bash.in (eval): Don't redefine the eval builtin,
because it is needed in the rc module. Fixes bug 224507.
* modules/rc.eselect (do_show): Remove workaround for eval.
* README: Update style notes.
* bin/eselect.in (es_do_list_options, es_do_list_modules):
Renamed from es_do_list-* to prevent invalid identifier errors in
POSIX mode, bug 280191. Substitute underscore for hyphen in call.
(es_do_help): Fix call for es_do_list_*.
* modules/news.eselect (do_read): Suppress "no news" message in
brief output mode, bug 288527.
2009-10-08 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.4.
* Tagged 1.2.4 release.
* modules/profile.eselect (set_symlink): Output a warning message
if the target of the symlink is outside of EROOT. Suggested by
Jeremy Olexa <[email protected]>.
* modules/news.eselect (do_read): Improve handling of removed news
items: Display only a warning message instead of an error if an
item's file doesn't exist.
(do_list): Take default date from item name. Assume that the item
has been removed if we cannot read its header.
(mail_header): Really remove leading zeros from numeric month.
2009-10-05 Ulrich Müller <[email protected]>
* libs/path-manipulation.bash.in (relative_name): New function.
* doc/developer-guide.txt: Document it.
* modules/profile.eselect (do_show): Use EROOT instead of ROOT.
(set_symlink): Use relative_name(). Fixes bug 287730.
2009-09-20 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.3.
* Tagged 1.2.3 release.
* libs/package-manager.bash.in (arch): Add case patterns for
recognition of arm, hppa, m68k, ppc64, s390, and sh. Patch by
Raúl Porcel <[email protected]> in bug 285762.
* doc/developer-guide.txt:
* doc/release-guide.txt:
* doc/user-guide.txt: Update documentation for eselect 1.2.
Add a "local variables" block for Emacs. Reformat.
* doc/overview.txt: Remove, because it is redundant with
user-guide.txt (see also ChangeLog entry of 2005-06-13).
* doc/Makefile.am (doc_files): Remove overview from list.
* configure.ac: Update version to 1.2.2.
* Tagged 1.2.2 release.
2009-09-18 Ulrich Müller <[email protected]>
* libs/output.bash.in (write_numbered_list): New -m option.
It is used to specify a negative report message that is output for
an empty list.
* doc/developer-guide.txt: Document it.
* modules/bashcomp.eselect (do_list):
* modules/kernel.eselect (do_list): Call write_numbered_list with
option -m, which simplifies the code.
* modules/modules.eselect (do_list): Add support for brief output
mode. For reasons of speed, don't source any modules in this case.
* libs/default.eselect.in (do_usage): Don't reset output mode.
* misc/eselect.bashcomp (_eselect): If called with one parameter,
call "eselect --brief modules list" which should be much faster.
* bin/eselect.in: Don't accept parameters for built-in actions,
otherwise completion for "eselect help" won't work properly.
2009-09-17 Ulrich Müller <[email protected]>
* libs/manip.bash.in (svn_date_to_version): Remove both hyphens
and slashes from the date string, so that the function works for
CVS date strings too.
* libs/package-manager.bash.in (get_news_dir_name):
Remove deprecated and undocumented function.
2009-09-08 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.1.
* Tagged 1.2.1 release.
* modules/env.eselect (create_profile_env): Ignore leading
"export" in env files, fixes bug 283932. Accept only valid shell
identifiers as variable names.
2009-08-27 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2.
* Tagged 1.2 release.
2009-08-22 Ulrich Müller <[email protected]>
* bin/eselect.in (ESELECT_KNOWN_OPTIONS): Remove variable, as
there is a case statement for all possible options anyway.
* modules/news.eselect (do_list): Output read/unread tag first.
2009-08-19 Ulrich Müller <[email protected]>
* configure.ac: Update version to 1.2_rc1.
* Tagged 1.2_rc1 release candidate.
* bin/eselect.in (ESELECT_KNOWN_OPTIONS): Add --brief option,
which will enable shorter output. Bug 154511.
(es_do_help): Reset output mode to default.
* libs/output.bash.in (set_output_mode): New function.
(write_list_start): Suppress all output in "brief" output mode.
(write_numbered_list_entry): Suppress numbers in "brief" mode.
(highlight_marker): Suppress marker in "brief" mode.
* libs/default.eselect.in (do_usage, do_help): Reset output mode
to default.
* libs/editor-variable.bash.in (do_list):
* modules/bashcomp.eselect (do_list):
* modules/kernel.eselect (do_list):
* modules/news.eselect (do_list): Suppress "none found" messages
in brief output mode.
* man/eselect.1: Document the --brief option.
2009-08-18 Ulrich Müller <[email protected]>
* libs/output.bash.in (write_kv_list_entry): Fix indentation of
second column in output. Simplify the code.
(write_numbered_list_entry): Remove unused local declaration.
(space): Declare n as local variable.
(highlight, highlight_warning, highlight_marker): Use plain echo