summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Update timestamps in headers of modified files.v2.1.6.7_p1Zac Medico2012-05-212-2/+2
|
* Bug #302937 - Handle declare -r without assignment.Zac Medico2012-05-211-12/+29
| | | | svn path=/main/trunk/; revision=15304
* Bug #297933: Filter BASHOPTS variable for compatibility with bash-4.1.Arfrever Frehtes Taifersar Arahesis2012-05-211-2/+2
| | | | svn path=/main/trunk/; revision=15130
* Fix python shebangs. s:/usr/bin/env python:/usr/bin/python:Zac Medico2012-05-212-2/+2
| | | | svn path=/main/trunk/; revision=14573
* Fix typo in comment. Thanks to Arfrever.Zac Medico2012-05-211-2/+2
| | | | svn path=/main/trunk/; revision=13963
* Bug #280690 - Fix incorrect idendification of start quote as end quote when ↵Zac Medico2012-05-211-1/+6
| | | | | | the start quote is immediately followed by a newline. svn path=/main/trunk/; revision=13959
* Bug #255358 - Add new RDEPEND.implicit warning to detect the caes where DEPENDv2.1.6.7Zac Medico2009-01-181-0/+2
| | | | | | | is set and RDEPEND is unset in the ebuild, since this triggers implicit RDEPEND=$DEPEND assignment. (trunk r12529) svn path=/main/branches/2.1.6/; revision=12537
* Fix false positive in the 'unused local USE-description' warning. Thanks toZac Medico2009-01-181-1/+1
| | | | | | Alexis Ballier <aballier@g.o> for reporting. (trunk r12524) svn path=/main/branches/2.1.6/; revision=12536
* Identify which package has unused local USE descriptions, in case more thanZac Medico2009-01-181-1/+2
| | | | | | | one package is being scanned. Thanks to Thomas Sachau <tommy@g.o> for reporting. (trunk r12523) svn path=/main/branches/2.1.6/; revision=12535
* Drop the kernel version from the commit message for all platforms. Thanks toZac Medico2009-01-181-2/+0
| | | | | | Fabian Groffen <grobian@g.o> for the suggestion. (trunk r12519) svn path=/main/branches/2.1.6/; revision=12531
* Don't show the running Linux kernel version in the commit message, since itZac Medico2009-01-181-1/+3
| | | | | | | might leak information that would be useful to attackers. Thanks to Ned Ludd <solar@g.o> for the suggestion. (trunk r12518) svn path=/main/branches/2.1.6/; revision=12530
* Fix a TypeError which occurs in pretend commit mode when vcs is None. ThanksZac Medico2009-01-121-1/+6
| | | | | | to Fabian Groffen <grobian@g.o> for reporting. (trunk r12426) svn path=/main/branches/2.1.6/; revision=12479
* Add a new 'metadata.warning' category and a check which detects local USEZac Medico2009-01-121-0/+12
| | | | | | | descriptions that are not used in any ebuilds. Thanks to Markus Meier <maekke@g.o> for the initial patch. (trunk r12413) svn path=/main/branches/2.1.6/; revision=12469
* Make die() to show a message indicating the repository that an ebuild cameZac Medico2009-01-121-1/+13
| | | | | | | | from, and do it during any phase for both ebuilds and binary packages. Now PORTAGE_REPO_NAME is initialized inside config.setcpv() for both ebuilds and binary packages, so it's always available inside ebuild.sh. (trunk r12402) svn path=/main/branches/2.1.6/; revision=12462
* Add some blank lines around the messages that suggest --without-mask andZac Medico2009-01-121-5/+16
| | | | | | | --include-dev. Thanks to Ryan Hill <dirtyepic@g.o> for the suggestion. (trunk r12400) svn path=/main/branches/2.1.6/; revision=12460
* Bug #250469 - Fix unpack() so that deb2targz is called in a way such thatZac Medico2009-01-121-3/+17
| | | | | | $DISTDIR write access is not required. (trunk r12389) svn path=/main/branches/2.1.6/; revision=12456
* Bug #252354 - Ensure that hardlinked files are not processed multiple timesZac Medico2009-01-121-5/+24
| | | | | | when necessary. (trunk r12384:12387) svn path=/main/branches/2.1.6/; revision=12454
* Bug #253336 - Set PORTAGE_VERBOSE=1 so that files are displayed as they areZac Medico2009-01-121-0/+2
| | | | | | merge. (trunk r12376) svn path=/main/branches/2.1.6/; revision=12446
* (trunk r12375)Zac Medico2009-01-121-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=12445
* (trunk r12374)Zac Medico2009-01-121-0/+1
| | | | svn path=/main/branches/2.1.6/; revision=12444
* (trunk r12373)Zac Medico2009-01-121-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=12443
* Handle tree conflicts in svn status output, new in subversion 1.6. Thanks toZac Medico2009-01-121-0/+3
| | | | | | Arfrever Frehtes Taifersar Arahesis for reporting. (trunk r12368) svn path=/main/branches/2.1.6/; revision=12439
* Fix 'TypeError: not all arguments converted during string formatting'Zac Medico2009-01-121-2/+2
| | | | | | | triggered by repoman -v. Thanks to Javier Villavicencio <the_paya@g.o> for reporting. (trunk r12366) svn path=/main/branches/2.1.6/; revision=12437
* Bug #253002 - Add a new variable.invalidchar check for metadata variables thatZac Medico2009-01-121-0/+14
| | | | | | contain characters that are not part of the ASCII character set. (trunk r12365) svn path=/main/branches/2.1.6/; revision=12436
* Bug #252727 - Use `git diff-index --name-only --diff-filter=M HEAD` insteadZac Medico2009-01-121-7/+18
| | | | | | | | | | of `git ls-files -m --with-tree=HEAD` since the latter doesn't behave like we want for files that have been added to the index. Also, use `git diff-index` instead of `git diff` since the latter is considered a high-level "porcelain" command which means that it's interface may not be reliable. (trunk r12359) svn path=/main/branches/2.1.6/; revision=12430
* Bail out earlier if the file name argument doesn't end with '.ebuild'. ThanksZac Medico2008-12-271-0/+6
| | | | | | to Diego 'Flameeyes' Pettenò for reporting. (trunk r12350) svn path=/main/branches/2.1.6/; revision=12355
* (trunk r12345)Zac Medico2008-12-271-3/+3
| | | | svn path=/main/branches/2.1.6/; revision=12353
* Bug #252374 - Warn if FEATURES=fakeroot is enabled, but the fakeroot binaryZac Medico2008-12-251-0/+1
| | | | | | is not installed. (trunk r12301) svn path=/main/branches/2.1.6/; revision=12324
* Bug #251976 - Add a QA_PRESTRIPPED variable for ebuilds to disable warnings ↵Zac Medico2008-12-251-4/+17
| | | | | | | | about pre-stripped files. (trunk r12295:12300) svn path=/main/branches/2.1.6/; revision=12323
* Bug #252304 - Restore the -V/--version option. (trunk r12293)Zac Medico2008-12-251-0/+7
| | | | svn path=/main/branches/2.1.6/; revision=12322
* Add SIGUSR1 signal handlers that call pdb.set_trace(). Thanks to Brian ↵Zac Medico2008-12-252-0/+10
| | | | | | | | Harring for the suggestion. (trunk r12292) svn path=/main/branches/2.1.6/; revision=12321
* Move initial signal handlers to the launcher script. (trunk r12290)Zac Medico2008-12-251-0/+17
| | | | svn path=/main/branches/2.1.6/; revision=12319
* Add support for the new DEFINED_PHASES metadata key which is automatically ↵Zac Medico2008-12-251-1/+27
| | | | | | | | | generated from the set of phase functions that are defined by the ebuild and any eclasses it may have inherited. (trunk r12272:12274) svn path=/main/branches/2.1.6/; revision=12307
* Detect problems with arguments and return non-zero when appropriate.v2.1.6.1Zac Medico2008-12-121-1/+13
| | | | | | (trunk r12248) svn path=/main/branches/2.1.6/; revision=12249
* Fix incorrect usage of trap (only remove on signal at a time). (trunk r12210)Zac Medico2008-12-121-1/+2
| | | | svn path=/main/branches/2.1.6/; revision=12241
* Fix exit code to return non-zero when an error occurs. Thanks to ChristophZac Medico2008-12-121-2/+6
| | | | | | Mende <angelos@g.o> for reporting. (trunk r12202) svn path=/main/branches/2.1.6/; revision=12235
* When attempting to close fd 9 at the end of the depend phase, use exec so thatZac Medico2008-12-121-1/+1
| | | | | | it really works. (trunk r12190) svn path=/main/branches/2.1.6/; revision=12223
* Bug #250148 - Prevent ebuild.sh subprocess from inheriting file descriptorZac Medico2008-12-121-9/+19
| | | | | | | 9, since otherwise if a daemon process such as udevd gets spawned then it can inherit the file descriptor and hang emerge. (trunk r12189) svn path=/main/branches/2.1.6/; revision=12222
* For py3k compat, avoid using list.sort(cmp). (trunk r12184)Zac Medico2008-12-121-7/+11
| | | | svn path=/main/branches/2.1.6/; revision=12219
* Bug #250212 - Add a new 'upstream.workaround' qa category, and use it forZac Medico2008-12-121-1/+3
| | | | | | | the EMakeParallelDisabled check. Thanks to Mike Auty <ikelos@g.o> for this patch. (trunk r12179) svn path=/main/branches/2.1.6/; revision=12215
* It's not safe to use the git commit -a option since there mightZac Medico2008-12-031-0/+23
| | | | | | | | | | be some modified files elsewhere in the working tree that the user doesn't want to commit. Therefore, call git update-index in order to ensure that the index is updated with the latest versions of all new and modified files in the relevant portion of the working tree. (trunk r12142) svn path=/main/branches/2.1.6/; revision=12143
* When calling `git ls-files -m` to list modified files, use --with-tree=HEADZac Medico2008-12-031-2/+2
| | | | | | | | | | | so that differences from the most recent commit are given instead of differences from the index which is used for commit staging purposes. This is required since otherwise files that have been added via `git add` (such as echangelog does with the ChangeLog) won't show up in the list of modified files due to being unmodified relative to the index. Thanks to Christian Ruppert (idl0r) for reporting. (trunk r12140) svn path=/main/branches/2.1.6/; revision=12141
* Skip sourcing of profile.bashrc during the depend phase. (trunk r12136)Zac Medico2008-12-021-8/+11
| | | | svn path=/main/branches/2.1.6/; revision=12137
* Source bashrc files as late as possible, giving them the opportunity toZac Medico2008-12-023-5/+8
| | | | | | | override as much as possible. Thanks to Ned Ludd <solar@g.o> for the suggestion. (trunk r12134) svn path=/main/branches/2.1.6/; revision=12135
* Fix inconsistencies between the "clean" and "cleanrm" phases. (trunk r12126)Zac Medico2008-12-011-3/+3
| | | | svn path=/main/branches/2.1.6/; revision=12129
* Don't direct to /dev/null when creating $EBUILD_EXIT_STATUS_FILE inside die.Zac Medico2008-11-261-2/+1
| | | | | | (trunk r12107) svn path=/main/branches/2.1.6/; revision=12108
* Bug #205044 - When creating $EBUILD_EXIT_STATUS_FILE, don't direct output to ↵Zac Medico2008-11-261-3/+9
| | | | | | | | | /dev/null since it should never fail and if it does then the error message might be useful. (trunk r12105) svn path=/main/branches/2.1.6/; revision=12106
* Eliminate redundant Manifest separation code by combining mychanged + mynew ↵Zac Medico2008-11-261-13/+4
| | | | | | | | sooner. (trunk r12098) svn path=/main/branches/2.1.6/; revision=12099
* Remove redundant reference to 'mynew' since 'myupdates' already contains ↵Zac Medico2008-11-261-2/+2
| | | | | | | | those files. (trunk r12096) svn path=/main/branches/2.1.6/; revision=12097
* Bug #248464 - With git, there's never any keyword expansion, so there'sZac Medico2008-11-261-6/+20
| | | | | | | no need to regenerate manifests and all files will be committed in one big commit at the end. (trunk r12094) svn path=/main/branches/2.1.6/; revision=12095