summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/distutils.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/plugins/elements/distutils.yaml')
-rw-r--r--src/buildstream/plugins/elements/distutils.yaml49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/buildstream/plugins/elements/distutils.yaml b/src/buildstream/plugins/elements/distutils.yaml
deleted file mode 100644
index cec7da6e9..000000000
--- a/src/buildstream/plugins/elements/distutils.yaml
+++ /dev/null
@@ -1,49 +0,0 @@
-# Default python distutils configuration
-
-variables:
-
- # When building for python2 distutils, simply
- # override this in the element declaration
- python: python3
-
- python-build: |
-
- %{python} %{conf-root}/setup.py build
-
- install-args: |
-
- --prefix "%{prefix}" \
- --root "%{install-root}"
-
- python-install: |
-
- %{python} %{conf-root}/setup.py install %{install-args}
-
-
-config:
-
- # Commands for configuring the software
- #
- configure-commands: []
-
- # Commands for building the software
- #
- build-commands:
- - |
- %{python-build}
-
- # Commands for installing the software into a
- # destination folder
- #
- install-commands:
- - |
- %{python-install}
-
- # Commands for stripping debugging information out of
- # installed binaries
- #
- strip-commands:
- - |
- %{strip-binaries}
- - |
- %{fix-pyc-timestamps}