diff options
author | Michael Landin <mich@FreeBSD.org> | 2005-05-19 14:03:29 +0000 |
---|---|---|
committer | Michael Landin <mich@FreeBSD.org> | 2005-05-19 14:03:29 +0000 |
commit | 833945f372e743d34daa694990ca250b1c54fff8 (patch) | |
tree | 870718c0ccbd83447b206ca7dc4532501ca83a9c /misc | |
parent | b51b0a1422363c7c4357008d7327b7feda7de484 (diff) | |
download | ports-833945f372e743d34daa694990ca250b1c54fff8.tar.gz ports-833945f372e743d34daa694990ca250b1c54fff8.zip |
o whoops, forgot the patch
Notes
Notes:
svn path=/head/; revision=135612
Diffstat (limited to 'misc')
-rw-r--r-- | misc/portell/files/patch-portell.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/misc/portell/files/patch-portell.py b/misc/portell/files/patch-portell.py new file mode 100644 index 000000000000..51177d7a848b --- /dev/null +++ b/misc/portell/files/patch-portell.py @@ -0,0 +1,26 @@ + +$FreeBSD$ + +--- portell.py.orig ++++ portell.py +@@ -14,12 +14,16 @@ + PORTELL_DB = "/var/db/portell.db" + + PORTS_DIR = "/usr/ports/" +- ++IGNORE_DIRS = { "distfiles":None, "Tools":None, "packages":None } + + def write_pathname(d, dirname, names): +- '/'.join(dirname.split('/')[:5]) # chop port path subdirs +- d[os.path.basename(dirname)] = dirname +- ++ dirs=dirname.split('/') ++ if len(dirs)==4: ++ if IGNORE_DIRS.has_key(dirs[3]): ++ del names[:] ++ elif len(dirs)==5: ++ d[dirs[4]] = dirname ++ del names[:] + + def update_db(msg): + print msg |