summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update version to 1.4.7.eselect-1.4.7Ulrich Müller2016-10-302-1/+4
|
* Update NEWS.Ulrich Müller2016-10-301-0/+4
|
* Ignore comment lines when parsing config files.Ulrich Müller2016-10-302-3/+10
| | | | | * libs/config.bash.in (store_config): Ignore comment lines in config files and make parsing more robust, bug 598480.
* Update version to 1.4.6.eselect-1.4.6Ulrich Müller2016-06-172-1/+6
|
* Update NEWS.Ulrich Müller2016-06-171-0/+6
|
* Prefer less to more in pager module.Ulrich Müller2016-06-163-4/+9
| | | | | * modules/pager.eselect (EDITOR_LIST): Prefer less to more. * man/pager.eselect.5: Update.
* Make configure test for git more robust.Ulrich Müller2016-06-012-1/+3
| | | | * configure.ac: Make testing for git repository more robust.
* Avoid absolute paths for programs.Ulrich Müller2016-06-014-22/+25
| | | | | | | | * 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.
* Happy new year 2016!Ulrich Müller2016-01-2736-37/+37
|
* Set umask.Ulrich Müller2016-01-272-0/+6
| | | | * bin/eselect.in: Set umask +rx, bug 572348.
* Use sentence case in documentation.Ulrich Müller2015-08-264-58/+64
| | | | | | * doc/developer-guide.txt: * doc/user-guide.txt: * doc/release-guide.txt: Use sentence case in headings.
* Fix revision detection for out-of-tree builds.Ulrich Müller2015-08-222-2/+8
| | | | | * configure.ac (EXTRAVERSION): Fix detection of git revision for out-of-tree builds.
* Update version to 1.4.5.eselect-1.4.5Ulrich Müller2015-08-132-1/+4
|
* Update for automake-1.15.Ulrich Müller2015-08-132-2/+5
| | | | * autogen.bash: Update for aclocal 1.15 and automake-1.15.
* Update NEWS.Ulrich Müller2015-08-131-0/+4
|
* Remove binutils module.Ulrich Müller2015-08-136-339/+9
| | | | | | | | * 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.
* Fix typos in documentation.Ulrich Müller2015-01-242-4/+4
|
* Update version to 1.4.4.eselect-1.4.4Ulrich Müller2015-01-242-1/+4
|
* Update NEWS.Ulrich Müller2015-01-241-1/+8
|
* Update CC-BY-SA to version 3.0.Ulrich Müller2015-01-242-2/+7
| | | | | * README: Documentation is now licensed under GPL-2+ or CC-BY-SA-3.0 (was CC-BY-SA-2.5 before).
* Clean up coding style in rc module.Ulrich Müller2015-01-181-33/+25
|
* Improve is_script test in rc module.Ulrich Müller2015-01-182-5/+9
| | | | | * modules/rc.eselect (is_script): Don't call external programs. Test if script is executable, with a shebang in its first line.
* Use "git describe --long" in configure.Ulrich Müller2015-01-182-1/+5
| | | | * configure.ac (EXTRAVERSION): Use "git describe --long".
* Be compatible with new OpenRC in rc module.Ulrich Müller2015-01-172-2/+8
| | | | | | * 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.
* Happy new year 2015!Ulrich Müller2015-01-1738-39/+39
|
* Update version to 1.4.3.eselect-1.4.3Ulrich Müller2014-09-012-1/+6
|
* Update NEWS.Ulrich Müller2014-09-011-0/+8
|
* Changed heuristic for recognising kernel source trees.Ulrich Müller2014-08-282-2/+7
| | | | | | | * 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.
* Remove redundant $@ in "for" loops throughout.Ulrich Müller2014-08-286-12/+22
| | | | | | | | | | * 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.
* eselect.bashcomp: Improve handling of options followed by an equals sign.Ulrich Müller2014-06-052-2/+8
| | | | | * misc/eselect.bashcomp (_eselect): Improve handling of options that are followed by an equals sign.
* Always parse global options. Respect "--".Ulrich Müller2014-06-052-29/+41
| | | | | | * bin/eselect.in: Parse global options even if we are invoked as something-config or similar. Respect "--" to indicate end of options.
* Update version to 1.4.2.eselect-1.4.2Ulrich Müller2014-05-242-1/+4
|
* Update NEWS.Ulrich Müller2014-05-241-0/+5
|
* Fix bash 4.3 breakage.Ulrich Müller2014-05-242-1/+6
| | | | | * modules/profile.eselect (get_repos): Fix bash 4.3 breakage, bug 511132.
* Add "git" to EXTRAVERSION.Ulrich Müller2014-05-201-2/+2
|
* Use "%" instead of "," as delimiter for sed.Ulrich Müller2014-05-204-9/+13
| | | | | | * bin/Makefile.am (dosed): * libs/Makefile.am (dosed): * man/Makefile.am (dosed): Use "%" instead of "," as delimiter.
* Automake doesn't play well with leading whitespace in variables.Ulrich Müller2014-05-201-1/+1
|
* Use "git describe" in configure.Ulrich Müller2014-05-202-4/+9
| | | | | * configure.ac: Replace "git rev-parse" by "git describe", now that git-r3.eclass supports it (bug 489100).
* Remove redundant heading in user guide.Ulrich Müller2014-03-202-3/+1
| | | | * doc/user-guide.txt: Remove redundant "Usage" heading.
* developer-guide.txt: Fix wording for "arch" function.Ulrich Müller2014-03-201-4/+4
|
* Update list of standard actions in documentation.Ulrich Müller2014-03-203-11/+17
| | | | | | | * doc/user-guide.txt: Mention the "unset" action also here. * doc/developer-guide.txt: Reorder the standard action names to be congruent with the user guide.
* Remove duplicate heading in developer guide.Ulrich Müller2014-03-202-4/+4
| | | | | * doc/developer-guide.txt: Remove duplicate heading, because rst2html --report=info complains about it.
* Strip comments from generated html documentation.Ulrich Müller2014-03-202-1/+6
| | | | | * Makefile.am (%.html): Strip comments from html output, in order to suppress wrong mode information in Emacs local variables.
* README: Add Emacs local variables, re-add Vim modeline.Ulrich Müller2014-03-201-0/+9
|
* Whitespace.Ulrich Müller2014-03-203-0/+3
|
* Fix a old typo (from 2005).Ulrich Müller2014-03-201-1/+1
|
* Don't output spurious whitespace in write_kv_list_entry.Ulrich Müller2014-03-142-1/+12
| | | | | * libs/output.bash.in (write_kv_list_entry): Don't output spurious trailing whitespace if value is an empty string.
* Suppress C and POSIX as languages in news module; support _<territory>.Ulrich Müller2014-02-252-3/+13
| | | | | * modules/news.eselect (accepted_languages): Suppress "C" and "POSIX" in output. Support <language>_<territory>.
* Update URI of GLEP 42.Ulrich Müller2014-02-182-2/+6
| | | | * man/news.eselect.5: Update URI of GLEP 42.
* Update version to 1.4.1.eselect-1.4.1Ulrich Müller2014-02-152-1/+6
|