summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove temporary file usage from fixpackages update_ents routine.Zac Medico2006-02-191-10/+9
| | | | svn path=/main/trunk/; revision=2752
* Split out 2 reusable functions from fixdbentries and put them in a new ↵Zac Medico2006-02-191-26/+1
| | | | | | portage_update module. svn path=/main/trunk/; revision=2750
* Fix problem with /var/tmp/tbz2/tbz2 directory for bug 113088.Zac Medico2006-02-191-2/+0
| | | | svn path=/main/trunk/; revision=2743
* Update the mtimedb only after the updates have been processed.Zac Medico2006-02-191-10/+19
| | | | svn path=/main/trunk/; revision=2738
* Split move_ent calls from do_upgrade() and do them in global_updates() instead.Zac Medico2006-02-191-15/+10
| | | | svn path=/main/trunk/; revision=2737
* Fix 2 typos from revision 2735.Zac Medico2006-02-191-2/+2
| | | | svn path=/main/trunk/; revision=2736
* Clean up do_upgrade() and add atom validation.Zac Medico2006-02-181-13/+25
| | | | svn path=/main/trunk/; revision=2735
* Split the config file updates from do_upgrade into a new ↵Zac Medico2006-02-181-54/+61
| | | | | | update_config_files() function that does all updates in one big batch. svn path=/main/trunk/; revision=2734
* Create a global_updates() function in order to remove a chunk from the ↵Zac Medico2006-02-181-41/+38
| | | | | | global scope. svn path=/main/trunk/; revision=2733
* Consider global updates that proceed quickly as a single mtimedb transaction.Zac Medico2006-02-181-1/+3
| | | | svn path=/main/trunk/; revision=2732
* Split out a vardbapi.update_ents() method and leave it unused for the moment ↵Zac Medico2006-02-181-2/+7
| | | | | | since it's not currently being used properly anyway (see bug 122089). svn path=/main/trunk/; revision=2731
* Add a cleanup() method to xpak.tbz2 and do a sanity check there.Zac Medico2006-02-181-0/+2
| | | | svn path=/main/trunk/; revision=2730
* Add a return value to fixdbentries that indicates whether or not ↵Zac Medico2006-02-181-4/+8
| | | | | | modifications were performed. Use this to avoid unnecessary recomposition of tbz2 files. svn path=/main/trunk/; revision=2729
* Filter out some more invalid updates before fixpackages gets them.Zac Medico2006-02-171-2/+4
| | | | svn path=/main/trunk/; revision=2728
* Bring back myline variable inside do_upgrade because it is needed ↵Zac Medico2006-02-171-3/+6
| | | | | | (regression from rev 2726). svn path=/main/trunk/; revision=2727
* Store split lines in myupd so that they don't need to be split again later.Zac Medico2006-02-171-6/+4
| | | | svn path=/main/trunk/; revision=2726
* Optimize fixpackages to do all updates in one big batch so that each tbz2 is ↵Zac Medico2006-02-171-8/+11
| | | | | | only recomposed once. svn path=/main/trunk/; revision=2725
* Make fixdbentries operate on an iterable instead of a dict because order can ↵Zac Medico2006-02-171-18/+16
| | | | | | matter. svn path=/main/trunk/; revision=2724
* optimize fixpackages (update_ents) to feed batched package moves to fixdbentriesZac Medico2006-02-171-5/+7
| | | | svn path=/main/trunk/; revision=2723
* optimize fixdbentries by enabling it to process packages moves in batchesZac Medico2006-02-171-13/+16
| | | | svn path=/main/trunk/; revision=2722
* remove invalid package moves from myupd so that fixpackages doesn't process themZac Medico2006-02-171-0/+1
| | | | svn path=/main/trunk/; revision=2721
* Add basic sanity check for global update entriesMarius Mauch2006-02-161-4/+27
| | | | svn path=/main/trunk/; revision=2718
* misc atomic_ofstream and write_atomic updates in portage.pyZac Medico2006-02-131-29/+14
| | | | svn path=/main/trunk/; revision=2703
* use write_atomic for move_ent CATEGORY updatesZac Medico2006-02-121-6/+2
| | | | svn path=/main/trunk/; revision=2701
* fix dirsonly handling in listdirMarius Mauch2006-02-121-1/+1
| | | | svn path=/main/trunk/; revision=2700
* use write_atomic for fixdbentriesZac Medico2006-02-121-4/+3
| | | | svn path=/main/trunk/; revision=2698
* fix perform_checksum.perform_checksum() so that it wraps FileNotFound exceptionsZac Medico2006-02-121-7/+5
| | | | svn path=/main/trunk/; revision=2697
* catch possible ENOENT error from portage_checksum.perform_md5 for bug 24374Zac Medico2006-02-121-2/+10
| | | | svn path=/main/trunk/; revision=2695
* import errno at the top of portage.pyZac Medico2006-02-121-4/+1
| | | | svn path=/main/trunk/; revision=2694
* use cached stat and lstat results to minimize the number of stat calls in ↵Zac Medico2006-02-101-7/+17
| | | | | | dblink.unmerge() svn path=/main/trunk/; revision=2691
* fix KeyError: '.' in dblink.unmerge() from bug 100479Zac Medico2006-02-101-12/+12
| | | | svn path=/main/trunk/; revision=2689
* for each fetch ensure correct permissions on both $DISTDIR and ↵Zac Medico2006-02-091-29/+19
| | | | | | $DISTDIR/.locks (bug 117781) svn path=/main/trunk/; revision=2687
* use write_atomic for the counter fileZac Medico2006-02-091-6/+1
| | | | svn path=/main/trunk/; revision=2686
* use atomic_ofstream for mtimedb commitsZac Medico2006-02-091-2/+6
| | | | svn path=/main/trunk/; revision=2682
* use new write_atomic() function for all world file updatesZac Medico2006-02-091-9/+3
| | | | svn path=/main/trunk/; revision=2681
* cPickle import protection; fall back to pickle if cPickle is unavailable.Brian Harring2006-02-081-1/+5
| | | | svn path=/main/trunk/; revision=2679
* fix whitespace breakage introduced by writemsg_stdout() changesMike Frysinger2006-02-081-11/+11
| | | | svn path=/main/trunk/; revision=2677
* wrap all relevant atexit usage due to incompatibility with os.execv (needed ↵Zac Medico2006-02-061-2/+3
| | | | | | for emerge to restart itself) svn path=/main/trunk/; revision=2674
* Make sure confcache files are writable by the portage group, not just the ↵Marien Zwart2006-02-061-2/+2
| | | | | | portage user. svn path=/main/trunk/; revision=2671
* aparently someone never heard of rstrip...Brian Harring2006-02-041-6/+1
| | | | svn path=/main/trunk/; revision=2660
* Remove all bug referencesJason Stubbs2006-02-041-2/+1
| | | | svn path=/main/trunk/; revision=2649
* Thanks to Benno Schulenberg <benno@nietvergeten.nl> for the spelling/grammar ↵Alec Warner2006-02-031-6/+6
| | | | | | fixes, bug #80754 svn path=/main/trunk/; revision=2641
* confcache, baby.Brian Harring2006-02-031-1/+32
| | | | svn path=/main/trunk/; revision=2632
* s/cronological/chronological/ for you anal peepsMike Frysinger2006-02-031-1/+1
| | | | svn path=/main/trunk/; revision=2626
* Allow || ( ) deps that have no default atoms (or turn out empty).Jason Stubbs2006-01-291-0/+5
| | | | | | Released in 2.1_pre4-r1. #120803 svn path=/main/trunk/; revision=2604
* make env-update a bit more flexible by adding a --no-ldconfig optionMike Frysinger2006-01-271-3/+0
| | | | svn path=/main/trunk/; revision=2592
* touchup if logicMike Frysinger2006-01-271-5/+5
| | | | svn path=/main/trunk/; revision=2591
* Move DEPEND empty sublist processing back into use_reduceJason Stubbs2006-01-241-20/+0
| | | | svn path=/main/trunk/; revision=2578
* verify_all occasionally returns longs rather then strings.Brian Harring2006-01-231-4/+4
| | | | | | Wouldn't be a problem, but the writemsg code isn't written to do conversions on the fly... so, made it so it was. svn path=/main/trunk/; revision=2570
* Always call prerm/postrm regardless if the previous install had contents or not.Brian Harring2006-01-091-6/+5
| | | | svn path=/main/trunk/; revision=2556