From 819cf462338b6ffc938ba3be912632b73858255c Mon Sep 17 00:00:00 2001 From: Henk Kalkwater Date: Tue, 2 Mar 2021 17:29:32 +0100 Subject: [PATCH] Initial package commit --- debian/changelog | 5 +++ debian/compat | 1 + debian/control | 32 ++++++++++++++++++ debian/copyright | 57 ++++++++++++++++++++++++++++++++ debian/libtinyendian-dev.dirs | 2 ++ debian/libtinyendian-dev.install | 3 ++ debian/libtinyendian-docs.docs | 2 ++ debian/libtinyendian0.dirs | 1 + debian/libtinyendian0.install | 1 + debian/rules | 25 ++++++++++++++ debian/source/format | 1 + 11 files changed, 130 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/libtinyendian-dev.dirs create mode 100644 debian/libtinyendian-dev.install create mode 100644 debian/libtinyendian-docs.docs create mode 100644 debian/libtinyendian0.dirs create mode 100644 debian/libtinyendian0.install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..251966a --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libtinyendian (0.2.0-1) unstable; urgency=medium + + * Initial release + + -- Chris Josten Tue, 02 Mar 2021 16:24:56 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ed1109c --- /dev/null +++ b/debian/control @@ -0,0 +1,32 @@ +Source: libtinyendian +Priority: optional +Maintainer: Chris Josten +Build-Depends: debhelper (>= 11), + dh-dlang, + meson +Standards-Version: 4.1.3 +Section: libs +Homepage: https://github.com/dlang-community/tinyendian +Vcs-Browser: https://githee.netsoj.nl/debian-packages/libtinyendian +Vcs-Git: https://githee.netsoj.nl/debian-packages/libtinyendian.git + +Package: libtinyendian-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: libtinyendian0 (= ${binary:Version}), ${misc:Depends} +Description: Lightweight endianness library for D + TinyEndian is a minimal endianness library for the D programming language. + It has no external dependencies, it only needs a D compiler and Phobos + (standard library). TinyEndian doesn't allocate memory and is fully @nogc + to allow use in high-performance code. + +Package: libtinyendian0 +Architecture: any +Multi-Arch: same +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Lightweight endianness library for D + TinyEndian is a minimal endianness library for the D programming language. + It has no external dependencies, it only needs a D compiler and Phobos + (standard library). TinyEndian doesn't allocate memory and is fully @nogc + to allow use in high-performance code. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9c8ed39 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,57 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: TinyEndian +Source: https://github.com/dlang-community/tinyendian + +Files: * +Copyright: 2017 dlang-community +License: BSL-1.0 + Boost Software License - Version 1.0 - August 17th, 2003 + . + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + . + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +Files: debian/* +Copyright: 2021 Chris Josten +License: BSL-1.0 + Boost Software License - Version 1.0 - August 17th, 2003 + . + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + . + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. diff --git a/debian/libtinyendian-dev.dirs b/debian/libtinyendian-dev.dirs new file mode 100644 index 0000000..4418816 --- /dev/null +++ b/debian/libtinyendian-dev.dirs @@ -0,0 +1,2 @@ +usr/lib +usr/include diff --git a/debian/libtinyendian-dev.install b/debian/libtinyendian-dev.install new file mode 100644 index 0000000..7df81cd --- /dev/null +++ b/debian/libtinyendian-dev.install @@ -0,0 +1,3 @@ +usr/include/* +usr/lib/*/lib*.so +usr/lib/*/pkgconfig/* diff --git a/debian/libtinyendian-docs.docs b/debian/libtinyendian-docs.docs new file mode 100644 index 0000000..7319041 --- /dev/null +++ b/debian/libtinyendian-docs.docs @@ -0,0 +1,2 @@ +README.source +README.Debian diff --git a/debian/libtinyendian0.dirs b/debian/libtinyendian0.dirs new file mode 100644 index 0000000..6845771 --- /dev/null +++ b/debian/libtinyendian0.dirs @@ -0,0 +1 @@ +usr/lib diff --git a/debian/libtinyendian0.install b/debian/libtinyendian0.install new file mode 100644 index 0000000..3ddde58 --- /dev/null +++ b/debian/libtinyendian0.install @@ -0,0 +1 @@ +usr/lib/*/lib*.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e1c367c --- /dev/null +++ b/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +%: + dh $@ + + +# dh_make generated override targets +# This is example for Cmake (See https://bugs.debian.org/641051 ) +#override_dh_auto_configure: +# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)