From 710c0f7a43d235d0770f51721d783632daaae799 Mon Sep 17 00:00:00 2001 From: Alexander Aring Date: Tue, 25 Mar 2014 20:53:48 +0100 Subject: python-routing: add new package Signed-off-by: Alexander Aring Signed-off-by: Michael Olbrich --- rules/python-routing.in | 13 +++++++++ rules/python-routing.make | 74 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 rules/python-routing.in create mode 100644 rules/python-routing.make (limited to 'rules') diff --git a/rules/python-routing.in b/rules/python-routing.in new file mode 100644 index 000000000..abfa12c2b --- /dev/null +++ b/rules/python-routing.in @@ -0,0 +1,13 @@ +## SECTION=python + +config PYTHON_ROUTING + tristate + select HOST_CYTHON + select PYTHON + select LIBNL3 + prompt "python-routing" + help + This is yet another python binding for the libnl3. This bidning + was written to encompass the "route" module which isn't encompassed + by any other libnl3 python binding. The special route module is + necessary for the simpleRPL implementation. diff --git a/rules/python-routing.make b/rules/python-routing.make new file mode 100644 index 000000000..ccb4eff0a --- /dev/null +++ b/rules/python-routing.make @@ -0,0 +1,74 @@ +# -*-makefile-*- +# +# Copyright (C) 2014 by Alexander Aring +# +# See CREDITS for details about who has contributed to this project. +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_PYTHON_ROUTING) += python-routing + +# +# Paths and names +# +PYTHON_ROUTING_VERSION := 1.0 +PYTHON_ROUTING_MD5 := 2ef6adf2ab6a2f303600999546198a69 +PYTHON_ROUTING := python_routing-$(PYTHON_ROUTING_VERSION) +PYTHON_ROUTING_SUFFIX := tar.gz +PYTHON_ROUTING_URL := http://cakelab.org/~eintopf/RPL/$(PYTHON_ROUTING).$(PYTHON_ROUTING_SUFFIX) +PYTHON_ROUTING_SOURCE := $(SRCDIR)/$(PYTHON_ROUTING).$(PYTHON_ROUTING_SUFFIX) +PYTHON_ROUTING_DIR := $(BUILDDIR)/$(PYTHON_ROUTING) + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +PYTHON_ROUTING_CONF_TOOL := NO + +# ---------------------------------------------------------------------------- +# Compile +# ---------------------------------------------------------------------------- + +$(STATEDIR)/python-routing.compile: + @$(call targetinfo) + @cd $(PYTHON_ROUTING_DIR) && \ + $(CROSS_ENV) $(CROSS_PYTHON) \ + setup.py build_ext + @$(call touch) + +# ---------------------------------------------------------------------------- +# Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/python-routing.install: + @$(call targetinfo) + @cd $(PYTHON_ROUTING_DIR) && \ + $(CROSS_ENV) $(CROSS_PYTHON) \ + setup.py install --root=$(PYTHON_ROUTING_PKGDIR) --prefix="/usr" + @$(call touch) + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/python-routing.targetinstall: + @$(call targetinfo) + + @$(call install_init, python-routing) + @$(call install_fixup, python-routing,PRIORITY,optional) + @$(call install_fixup, python-routing,SECTION,base) + @$(call install_fixup, python-routing,AUTHOR,"Alexander Aring ") + @$(call install_fixup, python-routing,DESCRIPTION,missing) + + @$(call install_copy, python-routing, 0, 0, 0644, -, $(PYTHON_SITEPACKAGES)/Routing.so) + + @$(call install_finish, python-routing) + + @$(call touch) + +# vim: syntax=make -- cgit v1.2.3