summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Prefix the hardlink source with ${D} like we always have.Zac Medico2007-04-141-1/+1
| | | | svn path=/main/trunk/; revision=6396
* create leading directories to match behavior of other do* programsMike Frysinger2007-04-141-4/+5
| | | | svn path=/main/trunk/; revision=6394
* simplify unsafe file checking so files/paths with spaces dont cause troublesMike Frysinger2007-04-131-14/+5
| | | | svn path=/main/trunk/; revision=6392
* Use relative paths inside ecompressdir in order to avoid 'Argument list too ↵Zac Medico2007-04-131-1/+4
| | | | | | long' errors with large file sets (observed when installing sys-apps/man-pages). svn path=/main/trunk/; revision=6388
* For bug #173808, add back the old heuristics to make sure that we don't just ↵Zac Medico2007-04-121-1/+12
| | | | | | blindly compress the contents of any directory named "man". svn path=/main/trunk/; revision=6371
* For bug #173808, compress ${mandir} all in one go instead of doing ↵Zac Medico2007-04-101-12/+1
| | | | | | subdirectories separately. This allows symlinks that point into sibling directories to get updated properly be ecompressdir. svn path=/main/trunk/; revision=6362
* change "EXEDESTTREE" to "_E_EXEDESTTREE_" to try and prevent abuse from ↵Mike Frysinger2007-04-074-15/+16
| | | | | | ebuild writers svn path=/main/trunk/; revision=6351
* change "DOCDESTTREE" to "_E_DOCDESTTREE_" to try and prevent abuse from ↵Mike Frysinger2007-04-073-8/+9
| | | | | | ebuild writers svn path=/main/trunk/; revision=6347
* Don't set os.environ["USERLAND"] inside portage.data and rely on USERLAND ↵Zac Medico2007-04-051-1/+1
| | | | | | from the profile instead (bail out if necessary when USERLAND is unset). svn path=/main/trunk/; revision=6341
* For bug #172539, fix ecompressdir suffix handling so that automatic ↵Zac Medico2007-03-281-6/+6
| | | | | | decompression of Z, gz, and bz2 suffixes works properly. svn path=/main/trunk/; revision=6309
* Properly anchor sed regexp for readlonly attribut filtering.Zac Medico2007-03-271-2/+2
| | | | svn path=/main/trunk/; revision=6301
* Filter the readonly attribute from variables saved in ${T}/environment to ↵Zac Medico2007-03-271-1/+2
| | | | | | prevent 'readonly variable' error messages in later phases. svn path=/main/trunk/; revision=6299
* source ${T}/environment before the definition of qa_source() and qa_call() ↵Zac Medico2007-03-271-6/+6
| | | | | | so that the call stack shows the original files and line numbers instead of those from ${T}/environment. Thanks to Markus Ullmann <jokey@gentoo.org> for reporting. svn path=/main/trunk/; revision=6297
* For bug #172033, remove the obsolete QA Notice for man pages that are ↵Zac Medico2007-03-241-2/+2
| | | | | | already compressed. svn path=/main/trunk/; revision=6271
* Fix cvstree import to avoid deprecation warning.Zac Medico2007-03-201-1/+1
| | | | svn path=/main/trunk/; revision=6256
* revert previous change since it is obviously incorrect as pointed out by grobianMike Frysinger2007-03-182-2/+8
| | | | svn path=/main/trunk/; revision=6247
* make sure we prefix all arguments with $D, including ones that dont start ↵Mike Frysinger2007-03-173-8/+5
| | | | | | with a / svn path=/main/trunk/; revision=6240
* send stdout to /dev/null since we rely on the output of stdout here to ↵Mike Frysinger2007-03-171-1/+1
| | | | | | determine the proper suffix #171212 svn path=/main/trunk/; revision=6229
* forcibly break all hard links so we dont need to rely on --force in ↵Mike Frysinger2007-03-171-3/+6
| | | | | | compressor and tweak the _relocate_skip_dirs() func to handle whitespace in paths (thanks to zmedico for tip) svn path=/main/trunk/; revision=6221
* redo compression so that it is queued up in src_install and then dequeued ↵Mike Frysinger2007-03-175-15/+89
| | | | | | post src_install svn path=/main/trunk/; revision=6220
* drop the need for the force flag by default and just delete the existing ↵Mike Frysinger2007-03-161-1/+7
| | | | | | files automatically #171007 svn path=/main/trunk/; revision=6219
* For bug #163262 and conformance with section 7.2 of the PMS, make the export ↵Zac Medico2007-03-161-0/+1
| | | | | | attribute of variables persist between ebuild phases. svn path=/main/trunk/; revision=6212
* Make prepinfo remove installed info indexes recursively. Thanks to ↵Zac Medico2007-03-121-1/+3
| | | | | | Christian Faulhammer <opfer@gentoo.org> for reporting (see bugs #162675 and #170133). svn path=/main/trunk/; revision=6205
* For bug #170178, remove all hardcoded references to '/usr/lib/portage'.Zac Medico2007-03-102-5/+6
| | | | svn path=/main/trunk/; revision=6203
* import portage.xpak to avoid deprecation warningZac Medico2007-03-091-2/+2
| | | | svn path=/main/trunk/; revision=6202
* Add back a missing `source isolated-functions.sh`. The color logic is ↵Zac Medico2007-03-091-4/+1
| | | | | | handled internally. svn path=/main/trunk/; revision=6201
* allow people to disable compression by setting the PORTAGE_COMPRESS ↵Mike Frysinger2007-03-042-14/+12
| | | | | | variables to "" svn path=/main/trunk/; revision=6174
* In the same vein as copyright, add Id and svn:keywords to itAlec Warner2007-03-031-0/+1
| | | | svn path=/main/trunk/; revision=6154
* you can't insert into sys.path without importing sys...Alec Warner2007-03-031-0/+3
| | | | svn path=/main/trunk/; revision=6153
* Add compatibility code to avoid the GNU specific --reference option of ↵Zac Medico2007-03-011-2/+6
| | | | | | chmod. Thanks to Timothy Redaelli <drizzt@gentoo.org>. svn path=/main/trunk/; revision=6115
* For bug #168267, use add --force to the default PORTAGE_COMPRESS_FLAGS so ↵Zac Medico2007-02-271-1/+1
| | | | | | that hardlinks are automatically broken. svn path=/main/trunk/; revision=6088
* For compatibility with older findutils, don't use the -L predicate (bug ↵Zac Medico2007-02-271-2/+3
| | | | | | #168432). svn path=/main/trunk/; revision=6086
* Filter paths matching '/<built-in>$' that come from debugedit. Thanks to Ed ↵Zac Medico2007-02-231-1/+2
| | | | | | Catmur for this patch from bug #165342. svn path=/main/trunk/; revision=6060
* For bug #167667, add support for ${PORTDIR}/manifest1_obsolete and ↵Zac Medico2007-02-221-3/+51
| | | | | | automatically remove ${FILESDIR}/digest-* from cvs when appropriate. svn path=/main/trunk/; revision=6042
* Add some sanity checks for file list handling when repolevel < 3.Zac Medico2007-02-221-0/+12
| | | | svn path=/main/trunk/; revision=6036
* Fix broken file list handling for FEATUES=sign when only the Manifest has ↵Zac Medico2007-02-221-0/+6
| | | | | | changed. svn path=/main/trunk/; revision=6035
* Fix more broken commitmessagefile handling.Zac Medico2007-02-221-2/+7
| | | | svn path=/main/trunk/; revision=6033
* Use startdir instead of mydir since mydir has a trailing slash which ↵Zac Medico2007-02-221-3/+3
| | | | | | triggers normalization issues with the dirname function. svn path=/main/trunk/; revision=6031
* Avoid a TypeError when commitmessagefile is None.Zac Medico2007-02-221-1/+1
| | | | svn path=/main/trunk/; revision=6029
* Fix stardir and repodir logic from the previous commit.Zac Medico2007-02-211-5/+3
| | | | svn path=/main/trunk/; revision=6027
* For consistency, replace multiple os.getcwd() calls with the "mydir" variable.Zac Medico2007-02-211-4/+4
| | | | svn path=/main/trunk/; revision=6024
* s/x/xs/ to fix a typo in a variable name.Zac Medico2007-02-211-1/+1
| | | | svn path=/main/trunk/; revision=6023
* Don't exclude . since that excludes the entire contents of some tar files.Zac Medico2007-02-181-1/+1
| | | | svn path=/main/trunk/; revision=6004
* When calling tar, always exclud . in order to preserver ↵Zac Medico2007-02-181-6/+6
| | | | | | PORTAGE_WORKDIR_MODE. Thanks to Brian Harring in bug #167544. svn path=/main/trunk/; revision=6002
* For bug #166785, check for invalid categories in the world file.Zac Medico2007-02-181-3/+16
| | | | svn path=/main/trunk/; revision=5986
* For full backwards compat (with symlinks or other weird stuff) import ↵Marius Mauch2007-02-171-3/+3
| | | | | | everything into the main namespace svn path=/main/trunk/; revision=5979
* Move bin/emerge to pym/emerge/__init__.py to restore old import behavior as ↵Marius Mauch2007-02-171-5366/+5
| | | | | | the load_source solution doesn't work properly svn path=/main/trunk/; revision=5978
* Print hostname in xterm title if sheridan is available in the environmentMarius Mauch2007-02-171-4/+5
| | | | svn path=/main/trunk/; revision=5976
* Print filename when displaying package.mask commentsMarius Mauch2007-02-171-2/+3
| | | | svn path=/main/trunk/; revision=5974
* Add support for RSYNC_EXTRA_OPTS to webrsyncMarius Mauch2007-02-171-2/+2
| | | | svn path=/main/trunk/; revision=5973