From 2516cd8fc0c3926bad826eec270dbe2732945cc9 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel <guilhem.saurel@laas.fr> Date: Mon, 30 Sep 2019 16:11:34 +0200 Subject: [PATCH] remove debian packaging, use robotpkg --- debian/changelog | 17 ----- debian/compat | 1 - debian/control | 72 --------------------- debian/copyright | 14 ---- debian/docs | 2 - debian/libdynamic-graph-python3.0.0.install | 2 - debian/python-dynamic-graph-dev.install | 3 - debian/python-dynamic-graph-doc.doc-base | 13 ---- debian/python-dynamic-graph-doc.install | 1 - debian/python-dynamic-graph.install | 1 - debian/python-dynamic-graph.postinst | 12 ---- debian/python-dynamic-graph.prerm | 17 ----- debian/rules | 21 ------ debian/source/format | 1 - debian/watch | 3 - 15 files changed, 180 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/docs delete mode 100644 debian/libdynamic-graph-python3.0.0.install delete mode 100644 debian/python-dynamic-graph-dev.install delete mode 100644 debian/python-dynamic-graph-doc.doc-base delete mode 100644 debian/python-dynamic-graph-doc.install delete mode 100644 debian/python-dynamic-graph.install delete mode 100644 debian/python-dynamic-graph.postinst delete mode 100644 debian/python-dynamic-graph.prerm delete mode 100755 debian/rules delete mode 100644 debian/source/format delete mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index c66d67c..0000000 --- a/debian/changelog +++ /dev/null @@ -1,17 +0,0 @@ -python-dynamic-graph (3.0.0-0ubuntu1ppa0~precise3) precise; urgency=low - - * Update package dependencies - - -- Rohan Budhiraja <budhiraja.rohan@gmail.com> Fri, 27 May 2016 18:51:23 +0200 - -python-dynamic-graph (3.0.0-0ubuntu1ppa0~precise2) precise; urgency=low - - * Update package dependencies - - -- Rohan Budhiraja <budhiraja.rohan@gmail.com> Fri, 27 May 2016 18:41:23 +0200 - -python-dynamic-graph (3.0.0-0ubuntu1ppa0~precise1) precise; urgency=low - - * Initial release - - -- Rohan Budhiraja <budhiraja.rohan@gmail.com> Wed, 04 May 2016 14:34:08 +0200 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 45a4fb7..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -8 diff --git a/debian/control b/debian/control deleted file mode 100644 index 4b6e442..0000000 --- a/debian/control +++ /dev/null @@ -1,72 +0,0 @@ -Source: python-dynamic-graph -Section: python -X-Python-Version: 2.6,2.7 -Priority: extra -Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> -Build-Depends: debhelper (>= 8.0.0), - cmake (>=2.6), - doxygen (>=1.6.3), - pkg-config (>=0.22), - python (<<2.8), - python (>=2.7), - python-sphinx (>=1.1), - libdynamic-graph-dev (>=3.0.0), - libboost-dev (>=1.46), - libboost-filesystem-dev (>=1.46), - libboost-python-dev (>=1.46), - libboost-system-dev (>=1.46), - libboost-test-dev (>=1.46), - libboost-thread-dev (>=1.46), - libboost-program-options-dev (>=1.46), - libeigen3-dev (>=3.0.5) -Standards-Version: 3.9.7 -Homepage: http://stack-of-tasks.github.io/ -Vcs-Git: git://github.com/proyan/dynamic-graph-python.git - -Package: python-dynamic-graph-dev -Architecture: any -Suggests: python-dynamic-graph-doc -Depends: libdynamic-graph-python3.0.0 (= ${binary:Version}), - ${misc:Depends} -Description: Python bindings for dynamic-graph library - Development Files - The dynamic graph library allows the representation of data-flow in C++. - It provides fast graph evaluation and a simple script language to manipulate - the graph actions. - . - This package contains dynamic-graph development files. - - -Package: python-dynamic-graph -Architecture: any -Suggests: python-dynamic-graph-doc -Provides: ${python:Provides} -Depends: libdynamic-graph-python3.0.0 (= ${binary:Version}), ${shlibs:Depends}, ${python:Depends}, ${misc:Depends} -Description: Python bindings for dynamic-graph library - The dynamic graph library allows the representation of data-flow in C++. - It provides fast graph evaluation and a simple script language to manipulate - the graph actions. - . - This package contains modules that allow you to use dynamic-graph from Python. - -Package: libdynamic-graph-python3.0.0 -Architecture: any -Suggests: python-dynamic-graph-doc -Pre-Depends: ${misc:Pre-Depends} -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: Python bindings for dynamic-graph library (Binary and shared libraries) - The dynamic graph library allows the representation of data-flow in C++. - It provides fast graph evaluation and a simple script language to manipulate - the graph actions. - . - This package contains binaries and shared libraries. - -Package: python-dynamic-graph-doc -Architecture: all -Section: doc -Depends: ${misc:Depends} -Description: Python bindings for dynamic-graph library (common documentation) - The dynamic graph library allows the representation of data-flow in C++. - It provides fast graph evaluation and a simple script language to manipulate - the graph actions. - . - This is the common documentation package \ No newline at end of file diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 95ac691..0000000 --- a/debian/copyright +++ /dev/null @@ -1,14 +0,0 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 -Upstream-Name: dynamic-graph-python -Upstream-Contact: HPP mailing list <hpp@laas.fr> -Source: https://github.com/proyan/dynamic-graph-python - -Files: * -Copyright: 2010-2016 JRL, CNRS/AIST. -License: LGPL-3 - See `/usr/share/common-licenses/LGPL-3'. - -Files: debian/* -Copyright: 2016 Rohan Budhiraja -License: LGPL-3 - See `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/debian/docs b/debian/docs deleted file mode 100644 index 8913f46..0000000 --- a/debian/docs +++ /dev/null @@ -1,2 +0,0 @@ -NEWS -README.md diff --git a/debian/libdynamic-graph-python3.0.0.install b/debian/libdynamic-graph-python3.0.0.install deleted file mode 100644 index acc93c6..0000000 --- a/debian/libdynamic-graph-python3.0.0.install +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin/* -usr/lib/*/*.so.* \ No newline at end of file diff --git a/debian/python-dynamic-graph-dev.install b/debian/python-dynamic-graph-dev.install deleted file mode 100644 index bdf487c..0000000 --- a/debian/python-dynamic-graph-dev.install +++ /dev/null @@ -1,3 +0,0 @@ -usr/include/* -usr/lib/*/lib*.so -usr/lib/*/pkgconfig/* \ No newline at end of file diff --git a/debian/python-dynamic-graph-doc.doc-base b/debian/python-dynamic-graph-doc.doc-base deleted file mode 100644 index ee57810..0000000 --- a/debian/python-dynamic-graph-doc.doc-base +++ /dev/null @@ -1,13 +0,0 @@ -Document: python-dynamic-graph -Title: Debian python-dynamic-graph Manual -Author: Thomas Moulard <thomas.moulard@gmail.com> -Abstract: Doxygen documentation of python-dynamic-graph - This manual describes what python-dynamic-graph is - and how it can be used - in making graph-like data-flow structures - using Python interface. -Section: Programming - -Format: HTML -Index: /usr/share/doc/dynamic-graph-python/doxygen-html/index.html -Files: /usr/share/doc/dynamic-graph-python/doxygen-html/*.html \ No newline at end of file diff --git a/debian/python-dynamic-graph-doc.install b/debian/python-dynamic-graph-doc.install deleted file mode 100644 index e9804ab..0000000 --- a/debian/python-dynamic-graph-doc.install +++ /dev/null @@ -1 +0,0 @@ -usr/share/doc/dynamic-graph-python/* \ No newline at end of file diff --git a/debian/python-dynamic-graph.install b/debian/python-dynamic-graph.install deleted file mode 100644 index 2500355..0000000 --- a/debian/python-dynamic-graph.install +++ /dev/null @@ -1 +0,0 @@ -usr/lib/python* \ No newline at end of file diff --git a/debian/python-dynamic-graph.postinst b/debian/python-dynamic-graph.postinst deleted file mode 100644 index a72a9d4..0000000 --- a/debian/python-dynamic-graph.postinst +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# postinst script for python-dynamic-graph -# -# see: dh_installdeb(1) - -set -e - -if which pycompile >/dev/null 2>&1; then - pycompile -p python-dynamic-graph -fi - -#DEBHELPER# \ No newline at end of file diff --git a/debian/python-dynamic-graph.prerm b/debian/python-dynamic-graph.prerm deleted file mode 100644 index 3115199..0000000 --- a/debian/python-dynamic-graph.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# prerm script for python-dynamic-graph -# -# see: dh_installdeb(1) - -set -e - -if which pyclean >/dev/null 2>&1; then - pyclean -p python-dynamic-graph -else - dpkg -L python-dynamic-graph | grep \.py$ | while read file - do - rm -f "${file}"[co] >/dev/null - done -fi - -#DEBHELPER# \ No newline at end of file diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 40383fb..0000000 --- a/debian/rules +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - -# Uncomment this to turn on verbose mode. -# export DH_VERBOSE=1 - -%: - dh $@ --with python2 --buildsystem=cmake - -override_dh_auto_configure: - dh_auto_configure -- \ - -DPYTHON_DEB_LAYOUT=ON - - - -export PYBUILD_NAME = dynamic-graph \ No newline at end of file diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/debian/watch b/debian/watch deleted file mode 100644 index ebd9ea7..0000000 --- a/debian/watch +++ /dev/null @@ -1,3 +0,0 @@ -version=3 -opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/dynamic-graph-python$1\.tar\.gz/ \ - https://github.com/proyan/dynamic-graph-python/releases .*/v?(\d\S*)\.tar\.gz \ No newline at end of file -- GitLab