This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Description
Forwarding https://bugs.debian.org/688525
When I run pyew /bin/ls I get a cache file (~/pyew-files.sqlite) in sqlite format directly in my home directory. That should be moved to a better place, preferably following the XDG basedir spec:
$ sqlite3 pyew-files.sqlite .schema
CREATE TABLE antidebugs (
id integer not null primary key,
sample_id, addr, mnemonic
);
CREATE TABLE function_stats (
id integer not null primary key,
sample_id, addr, nodes, edges, cc);
CREATE TABLE samples (id integer not null primary key,
md5, sha1, sha256, filename, type);