このrepoqueryコマンドと同じDebianコマンドは何ですか?
repoquery --repofrompath="abc,http://path/to/repo" --repoid=abc -q mypkg
--qf %{NAME}_%{VERSION}_%{RELEASE}_%{ARCH}_%{BUILDTIME}_%{PACKAGER}_%{LOCATION}
これは、/etc/yum.repos.dで指定されたリポジトリーを無視し、repofrompathで指定されたリポジトリーにある使用可能な最新バージョンのmypkgの要求情報をリストします。
これまで私は見つけました
apt-cache showpkg mypkg
しかし、上記のrepofrompath効果をシミュレートするために-c config-fileオプションを使用する方法がわかりません。
答え1
適性を試すことができます。例:
root@printserver:/root# aptitude search --display-format '%p_%V_%m ' --disable-columns "tcsh"
tcsh_6.17.02-4_Thomas Lange <[email protected]>
どこ:
%p = Package Name
%V = Version
%m = Maintainer
はい--target-release option
root@printserver:~# aptitude search --display-format '%p_%V_%m ' --disable-columns "linux-image-amd64" --target-release squeeze
linux-image-amd64_2.6.32+29_Debian Kernel Team <[email protected]>
root@printserver:~# aptitude search --display-format '%p_%V_%m ' --disable-columns "linux-image-amd64" --target-release squeeze-backports
linux-image-amd64_3.2+46~bpo60+1_Debian Kernel Team <[email protected]>