私はこの問題を処理する小さなpythonスクリプトを書きました。ロジックはファイルの各行を調べ、orまたはpackage.accept_keywords
で始まる行にのみ作用します。これらの行には最大バインドバージョンがあるので、それらがもう必要かどうかを確認できます。修飾子やa がない行は、廃止されているかどうかを判断できないため、そのまま残されます。=
<=
>=
次に、気になる行が解析され、インストールされているパッケージのバージョンがチェックされます。インストールされているバージョンがキーワード付きバージョンよりも新しいか、まったくインストールされていない場合、キーワードは廃止されたと見なされます。インストールされたパッケージがキーワード付きバージョンと同じバージョンである場合、インストールされたパッケージは、まだキーワード付きかどうかが確認されます。安定している場合、ラインは廃止され、そうでない場合は保持されます。
#!/bin/env python
import re
import portage
vartree = portage.db[portage.root]['vartree']
with open('/etc/portage/package.accept_keywords') as f:
for x in f:
# eat newline
x = x.rstrip()
# we only want lines with a bounded max version
if re.match('^(=|<=)',x):
# get the package cpv atom -- strip the =|<= and the trailing keyword(s)
cpv_masked = re.sub('[<=]','',x.split(' ',1)[0])
cat, pkg, ver, rev = portage.catpkgsplit(cpv_masked)
# get cpv for all installed versions of the package
cpv_installed = vartree.dep_match(cat+'/'+pkg)
for cpv in cpv_installed:
cmp = portage.pkgcmp(portage.pkgsplit(cpv), portage.pkgsplit(cpv_masked))
# if the installed version is not newer than the masked version
if (cmp <= 0):
# check if this version is still keyworded
cpv_keywords = vartree.dbapi.aux_get(cpv, ['KEYWORDS'])
# keep keyword if the package has no keywords (**)
if not cpv_keywords[0]:
print(x)
break
# check if the installed package is still keyworded
for cpv_keyword in cpv_keywords[0].split(' '):
if cpv_masked_keyword == cpv_keyword:
# it is, keep the atom and move on to the next one
print(x)
break
else:
# keep atoms that have an unbounded max version
print(x)
これにより、新しいキーワードファイルが標準出力に出力されます。 注:出力をリダイレクトしないでください。リダイレクト/etc/portage/package.accept_keywords
すると、ファイルが破壊され、すべてが失われます。
これは、キーワードファイルのクリーンアップやその他の懸念事項の解決に大いに役立ちます。ファイルを並べ替え、同じパッケージの複数行を調べることで、残っているほとんどの問題を解決できます。