summaryrefslogtreecommitdiffstats
path: root/src/bsd-flags/setup.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-22 16:46:10 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-22 16:46:10 -0700
commitaf07a791df4cea502cf910d3c049efcdcbdbc6fa (patch)
tree95b77377a5334960f9acf4903aefeca4883e3457 /src/bsd-flags/setup.py
parente90d01907a31b25ee0b8d5db0139140674b7745e (diff)
downloadportage-af07a791df4cea502cf910d3c049efcdcbdbc6fa.tar.gz
portage-af07a791df4cea502cf910d3c049efcdcbdbc6fa.tar.bz2
portage-af07a791df4cea502cf910d3c049efcdcbdbc6fa.zip
Remove the bsd-chflags module since it hasn't been used for some time
(python as read support and we spawn binaries for any necessary modifications).
Diffstat (limited to 'src/bsd-flags/setup.py')
-rwxr-xr-xsrc/bsd-flags/setup.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/bsd-flags/setup.py b/src/bsd-flags/setup.py
deleted file mode 100755
index 1499dcb34..000000000
--- a/src/bsd-flags/setup.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /usr/bin/env python
-
-from os import chdir, stat
-from distutils.core import setup, Extension
-
-setup (# Distribution meta-data
- name = "bsd-chflags",
- version = "0.1",
- description = "",
- author = "Stephen Bennett",
- author_email = "spb@gentoo.org",
- license = "",
- long_description = \
- '''''',
- ext_modules = [ Extension(
- "chflags",
- ["chflags.c"],
- libraries=[],
- )
- ],
- url = "",
- )
-