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
|
# systemtap python module setup file
# Copyright (C) 2016 Red Hat Inc.
#
# This file is part of systemtap, and is free software. You can
# redistribute it and/or modify it under the terms of the GNU General
# Public License (GPL); either version 2, or (at your option) any
# later version.
from setuptools import setup, Extension
from setuptools.command.egg_info import egg_info
from setuptools.command.install_egg_info import install_egg_info
from setuptools.command.build_py import build_py
import os
# With the 'EggInfoCommand' class, we wrap the standard 'egg_info'
# class and override the build directory, which is normally the source
# directory. This is necessary since we're doing a VPATH build.
#
# This is based on ideas from the following link:
# <https://blog.kevin-brown.com/programming/2014/09/24/combining-autotools-and-setuptools.html>
class EggInfoCommand(egg_info):
def run(self):
if "build" in self.distribution.command_obj:
build_command = self.distribution.command_obj["build"]
self.egg_base = build_command.build_base
self.egg_info = os.path.join(self.egg_base,
os.path.basename(self.egg_info))
egg_info.run(self)
# See discussion above about the 'EggInfoCommand' class.
class InstallEggInfoCommand(install_egg_info):
def run(self):
if "build" in self.distribution.command_obj:
build_command = self.distribution.command_obj["build"]
self.source = os.path.join(build_command.build_base,
os.path.basename(self.source))
install_egg_info.run(self)
setup(
name = 'HelperSDT',
version = '0.1.0',
description = 'Helper SDT python module',
long_description = 'A python module that gets loaded when systemtap wants to set breakpoints in a python file.',
url='http://sourceware.org/systemtap',
license = 'GPLv2+',
author = 'Systemtap Development Team',
author_email = 'systemtap@sourceware.org',
ext_modules = [
Extension("HelperSDT._HelperSDT", ["HelperSDT/_HelperSDT.c"]),
],
packages = ['HelperSDT'],
cmdclass={
"egg_info": EggInfoCommand,
"install_egg_info": InstallEggInfoCommand,
},
)
|