/usr/bin/rapt-file is in apt-file 2.5.2ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | #!/usr/bin/python
#
# apt-file - APT package searching utility -- command-line interface
#
# Copyright (c) 2009 Enrico Zini <enrico@debian.org>
#
# This package is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 dated June, 1991.
#
# This package is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this package; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA.
VERSION="0.1"
import sys, subprocess, os, os.path
import cPickle as pickle
from urllib2 import urlopen
def unpickle(inputfd):
unp = pickle.Unpickler(inputfd)
unp.find_global = None
while True:
try:
yield unp.load()
except EOFError:
break
def get_architecture(opts):
if opts.arch:
return opts.arch
else:
return subprocess.Popen(["dpkg", "--print-architecture"], stdout=subprocess.PIPE).communicate()[0].strip()
DIST_WHITELIST = set(["sid", "squeeze", "lenny", "wheezy"])
DIST_ALIASES = {
"unstable": "sid",
"testing": "wheezy",
"stable": "squeeze",
"oldstable": "lenny",
}
def get_dists(opts):
if opts.sources:
infiles = [opts.sources]
else:
infiles = []
if os.path.exists("/etc/apt/sources.list"):
infiles.append("/etc/apt/sources.list")
sld = "/etc/apt/sources.list.d"
if os.path.isdir(sld):
for f in os.listdir(sld):
if f.endswith(".list"):
infiles.append(os.path.join(sld, f))
dists = set()
for f in infiles:
for line in open(f):
line = line.strip()
if not line or line[0] == "#": continue
line = line.split()
if len(line) < 4: continue
dist = line[2].split("/")[0]
dist = DIST_ALIASES.get(dist, dist)
if dist in DIST_WHITELIST:
dists.add(dist)
return sorted(dists)
import optparse
class Parser(optparse.OptionParser):
def __init__(self, *args, **kwargs):
optparse.OptionParser.__init__(self, *args, **kwargs)
def print_help(self, out=sys.stdout):
optparse.OptionParser.print_help(self, out)
print >>out
print >>out, "Action:"
print >>out, " update Fetch Contents files from apt-sources (ignored)"
print >>out, " search|find <pattern> Search files in packages"
print >>out, " list|show <pattern> List files in packages"
print >>out, " purge Remove cache files (ignored)"
def error(self, msg):
sys.stderr.write("%s: error: %s\n\n" % (self.get_prog_name(), msg))
self.print_help(sys.stderr)
sys.exit(2)
parser = Parser(usage="usage: %prog [options] action [pattern]",
version="%prog "+ VERSION,
description="Search files in packages")
parser.add_option("-s", "--sources-list", metavar="FILE", dest="sources", help="sources.list location")
parser.add_option("-a", "--architecture", dest="arch", help="Use specific architecture")
parser.add_option("-l", "--package-only", dest="pkgonly", action="store_true", help="Only display package names")
parser.add_option("-v", "--verbose", action="store_true", help="run in verbose mode")
parser.add_option("-c", "--cache", dest="dir", help="Cache directory (ignored)")
parser.add_option("-d", "--cdrom-mount", dest="cdrom", help="Use specific cdrom mountpoint (ignored)")
parser.add_option("-N", "--non-interactive", action="store_true", help="Skip schemes requiring user input (useful in cron jobs) (ignored)")
parser.add_option("-x", "--regexp", action="store_true", help="pattern is a regular expression (ignored)")
parser.add_option("-y", "--dummy", action="store_true", help="run in dummy mode (no action) (ignored)");
parser.add_option("-i", "--ignore-case", action="store_true", help="Ignore case distinctions (ignored)")
parser.add_option("-F", "--fixed-string", action="store_true", help="Do not expand pattern (ignored)")
(options, args) = parser.parse_args()
action = args and args.pop(0) or None
# Skip ignored actions
if action in ("update", "purge"):
sys.exit(0)
elif action in ("search", "find"):
pattern = args.pop(0)
arch = get_architecture(options)
dists = get_dists(options)
pkgs = set()
for dist in dists:
url = "http://dde.debian.net/dde/q/aptfile/byfile/%s-%s/%s?t=pickle" % (dist, arch, pattern)
if options.verbose: print >>sys.stderr, "Querying %s..." % url
for res in unpickle(urlopen(url)):
for pkg in res:
pkgs.add(pkg)
if options.pkgonly:
for pkg in sorted(pkgs):
print pkg
else:
import warnings
# Yes, apt, thanks, I know, the api isn't stable, thank you so very much
#warnings.simplefilter('ignore', FutureWarning)
warnings.filterwarnings("ignore","apt API not stable yet")
try:
import apt
except ImportError:
sys.stderr.write("%s: error: %s\n\n" % (self.get_prog_name(), "please install the python apt module"))
sys.exit(2)
warnings.resetwarnings()
cache = apt.Cache()
for pkg in sorted(pkgs):
if not pkg in cache: continue
p = cache[pkg]
v = p.candidate
if not v: continue
print pkg, "-", v.summary
sys.exit(0)
elif action in ("list", "show"):
pattern = args.pop(0)
arch = get_architecture(options)
dists = get_dists(options)
files = set()
for dist in dists:
url = "http://dde.debian.net/dde/q/aptfile/bypackage/%s-%s/%s?t=pickle" % (dist, arch, pattern)
if options.verbose: print >>sys.stderr, "Querying %s..." % url
for res in unpickle(urlopen(url)):
for f in res[0]:
files.add(f)
for f in sorted(files):
print f
sys.exit(0)
elif action is None:
parser.print_help()
sys.exit(0)
else:
parser.error("Action '%s' is not valid" % action)
|