emerge realworld

송효진의 이미지

emerge -uDNpv world 로는 25개의 업데이트밖에 안나옵니다.
그런데 아래와 같은 php 프로그램을 돌려서 ebuild 목록 하나씩 -pv 해 보면,
총 89개의 목록이 되어버리네요.
왜 world 에서 빠졌는지 모르겠습니다.
어쨌든 emerge 해놔야겠네요. ㅎㅎ

<?php
 
if(!file_exists('portage.txt')) {
	$world = preg_split('/[\r\n]+/', trim(shell_exec('find /usr/portage/ -type f -name "*.ebuild" | awk -F / \'{ print $4"/"$5 }\' | sort | uniq')));
} else {
	$world = preg_split('/[\r\n]+/', trim(file_get_contents('portage.txt')));
}
while(null != ($val = array_shift($world))) {
	$ret = shell_exec('emerge -pv '.$val);
	$cnt = preg_match_all('@^\[ebuild(.*?)\]\s+([^\s]+)@m', $ret, $matches);
	if($cnt > 0) {
		for($i = 0; $i < $cnt; $i ++) {
			if(!preg_match('@[NRD]@', $matches[1][$i])) {
				file_put_contents('world.txt', $matches[2][$i]."\n", FILE_APPEND);
			}
			echo $matches[1][$i].' '.$matches[2][$i]."\n";
		}
	}
	file_put_contents('portage.txt', implode("\n", $world));
}
 
?>
Ok
bus710의 이미지

주로 어떤 리스트가 있는지 알려 주시면 좋을 것 같아요.
전 어제 shadow 패키지가 자꾸 컴파일이 안되길래 기존 shadow 까지 날렸다가 로그인이 안되는 수모를 겪었습니다-_-

그나저나, 어제~오늘 kde4를 인스톨하려고 여러가지로 시도 중인데,
genkdesvn.mailstation.de 가 불안정했던가 봅니다.
그냥 4.1.3으로 갈지 4.2로 가볼지 고민 중입니다^^

akudoku.net Bob Marley - Burnin and Lootin

life is only one time

송효진의 이미지

별 규칙성은 없어보입니다.
저 코드 돌려보세요. 한 1시간-_-; 정도면 다 돌것 같네요.
중간에 끊어도 이어서 동작합니다.

emerge money
http://wiki.kldp.org/wiki.php/GentooInstallSimple - 명령어도 몇개 안되요~
http://xenosi.de/