libSavitar: initial commit of the packaging

This commit is contained in:
Thomas-Karl Pietrowski 2017-02-09 19:19:40 +01:00
parent 2da99bd264
commit 70621b36c0
14 changed files with 219 additions and 0 deletions

6
libSavitar/README.Debian Normal file
View File

@ -0,0 +1,6 @@
libsavitar for Debian
--------------------
<possible notes regarding this package - if none, delete this file>
-- Thomas Karl Pietrowski <thopiekar@unknown> Thu, 09 Feb 2017 18:12:16 +0100

10
libSavitar/README.source Normal file
View File

@ -0,0 +1,10 @@
libsavitar for Debian
--------------------
<this file describes information about the source package, see Debian policy
manual section 4.14. You WILL either need to modify or delete this file>
-- Thomas Karl Pietrowski <thopiekar@unknown> Thu, 09 Feb 2017 18:12:16 +0100

5
libSavitar/changelog Normal file
View File

@ -0,0 +1,5 @@
libsavitar (0.0.1-1) unstable; urgency=medium
* Initial release
-- Thomas Karl Pietrowski <thopiekar@googlemail.com> Thu, 09 Feb 2017 18:12:16 +0100

1
libSavitar/compat Normal file
View File

@ -0,0 +1 @@
9

73
libSavitar/control Normal file
View File

@ -0,0 +1,73 @@
Source: libsavitar
Section: devel
Priority: optional
Maintainer: Thomas Karl Pietrowski <thopiekar@googlemail.com>
Build-Depends: debhelper (>= 9), cmake,
python3-all-dev, python3-all-dbg,
python3-sip-dev, python3-sip-dbg,
Standards-Version: 3.9.8
X-Python3-Version: >= 3.4
Homepage: <insert the upstream URL, if relevant>
#Vcs-Git: git://anonscm.debian.org/collab-maint/libsavitar.git
#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/libsavitar.git
Package: libsavitar
Architecture: any
Multi-Arch: same
Section: libs
Depends:
${shlibs:Depends},
${misc:Depends}
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>
Package: libsavitar-dbg
Architecture: any
Multi-Arch: same
Section: debug
Depends:
${shlibs:Depends},
${misc:Depends},
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>
Package: libsavitar-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends:
${shlibs:Depends},
${misc:Depends},
libsavitar (= ${binary:Version}),
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>
Package: python3-savitar
Architecture: any
Section: python
Depends:
${shlibs:Depends},
${python3:Depends},
${misc:Depends},
libsavitar (= ${binary:Version})
Provides:
${python3:Provides}
XB-Python3-Version:
${python3:Versions}
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>
Package: python3-savitar-dbg
Architecture: any
Section: python
Depends:
${shlibs:Depends},
${python3:Depends},
${misc:Depends},
libsavitar-dbg (= ${binary:Version})
Provides:
${python3:Provides}
XB-Python3-Version:
${python3:Versions}
Description: <insert up to 60 chars description>
<insert long description, indented with spaces>

38
libSavitar/copyright Normal file
View File

@ -0,0 +1,38 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libsavitar
Source: <url://example.com>
Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: <special license>
<Put the license of the package here indented by 1 space>
<This follows the format of Description: lines in control file>
.
<Including paragraphs>
# If you want to use GPL v2 or later for the /debian/* files use
# the following clauses, or change it to suit. Delete these two lines
Files: debian/*
Copyright: 2017 Thomas Karl Pietrowski <thopiekar@unknown>
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.
# Please avoid picking licenses with terms that are more restrictive than the
# packaged work, as it may make Debian's contributions unacceptable upstream.

View File

@ -0,0 +1,3 @@
/usr/lib/debug/lib/x86_64-linux-gnu/*.so*
/usr/lib/debug/lib/x86_64-linux-gnu/*.a
/usr/lib/debug/lib/x86_64-linux-gnu/cmake

View File

@ -0,0 +1,4 @@
/usr/lib/*/libSavitar.so
/usr/lib/*/libpugixml.a
/usr/lib/*/cmake
/usr/include

View File

@ -0,0 +1,2 @@
README.source
README.Debian

View File

@ -0,0 +1 @@
/usr/lib/*/libSavitar.so.*

View File

@ -0,0 +1 @@
usr/lib/python3*/dist-packages/Savitar.so

View File

@ -0,0 +1 @@
usr/lib/python3*/dist-packages/Savitar.so

73
libSavitar/rules Executable file
View File

@ -0,0 +1,73 @@
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
export DH_VERBOSE = 1
CMAKE_COMMON_OPTIONS := -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
-DBUILD_EXAMPLES:BOOL=OFF
%:
dh $@ --with python3 --buildsystem=cmake --parallel
override_dh_auto_clean:
rm -rf build-*
- rm -rf debian/tmp
- rm -rf debian/tmp-dbg
override_dh_auto_configure:
for PYX in $(shell py3versions -rv) ; do \
mkdir -p build-$${PYX}; \
dh_auto_configure -a \
--builddirectory=build-$${PYX} -- \
$(CMAKE_COMMON_OPTIONS) \
-DCMAKE_BUILD_TYPE:STRING="RelWithDebInfo" \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH) \
-DPYTHON_LIBRARY:FILEPATH=/usr/lib/$(DEB_HOST_MULTIARCH)/libpython$${PYX}m.so \
-DPYTHON_SITE_PACKAGES_DIR:FILEPATH=/usr/lib/python$${PYX}/dist-packages \
-DPYTHON_INCLUDE_DIR:FILEPATH=/usr/include/python$${PYX}m \
-DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python$${PYX} ; \
done
# DEBUG
for PYX in $(shell py3versions -rv) ; do \
mkdir -p build-$${PYX}-dbg; \
dh_auto_configure -a \
--builddirectory=build-$${PYX}-dbg -- \
$(CMAKE_COMMON_OPTIONS) \
-DCMAKE_BUILD_TYPE:STRING="Debug" \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/debug/lib/$(DEB_HOST_MULTIARCH) \
-DPYTHON_LIBRARY:FILEPATH=/usr/lib/$(DEB_HOST_MULTIARCH)/libpython$${PYX}m.so \
-DPYTHON_DEBUG_LIBRARY:FILEPATH=/usr/lib/$(DEB_HOST_MULTIARCH)/libpython$${PYX}dm.so \
-DPYTHON_SITE_PACKAGES_DIR:FILEPATH=/usr/lib/python$${PYX}/dist-packages \
-DPYTHON_INCLUDE_DIR:FILEPATH=/usr/include/python$${PYX}dm \
-DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python$${PYX}dm ; \
done
override_dh_auto_build:
for PYX in $(shell py3versions -rv) ; do \
dh_auto_build -a --builddirectory=build-$${PYX}; \
dh_auto_build -a --builddirectory=build-$${PYX}-dbg; \
done
override_dh_auto_install:
for PYX in $(shell py3versions -rv) ; do \
dh_auto_install -a --builddirectory=build-$${PYX} --destdir=debian/tmp; \
dh_auto_install -a --builddirectory=build-$${PYX}-dbg --destdir=debian/tmp-dbg; \
done
override_dh_auto_test:
for PYX in $(shell py3versions -rv) ; do \
dh_auto_test --builddirectory=build-$${PYX}; \
dh_auto_test --builddirectory=build-$${PYX}-dbg; \
done
override_dh_install:
dh_install \
-plibsavitar-dbg \
-ppython3-savitar-dbg \
--sourcedir=debian/tmp-dbg --list-missing
dh_install -a --remaining-packages --fail-missing
override_dh_strip:
dh_strip -plibarcus --dbg-package=libsavitar-dbg
dh_strip -ppython3-arcus --dbg-package=python3-savitar-dbg

1
libSavitar/source/format Normal file
View File

@ -0,0 +1 @@
3.0 (native)