packet debianization;

This commit is contained in:
Alexander Vdolainen 2025-03-05 16:37:24 +02:00
parent dfc1b90513
commit 2759f0da87
9 changed files with 99 additions and 0 deletions

1
debian/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.debhelper

6
debian/README.Debian vendored Normal file
View File

@ -0,0 +1,6 @@
libtdata for Debian
-------------------
This packages has been built with older versions of the autotools
-- Alexander Vdolainen <alex@vapaa.xyz> Wed, 5 Nov 2025 16:52:48 +0200

9
debian/README.source vendored Normal file
View File

@ -0,0 +1,9 @@
libtdata 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>

6
debian/changelog vendored Normal file
View File

@ -0,0 +1,6 @@
libtdata (0.2.5) stable; urgency=medium
* Release 0.2.5 minor fixes, documentation
* Updates to the new and uptodate libraries
-- Alexander Vdolainen <alex@vapaa.xyz> Mon, 3 Jun 2019 23:34:56 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
8

23
debian/control vendored Normal file
View File

@ -0,0 +1,23 @@
Source: libtdata
Priority: extra
Maintainer: Alexander Vdolainen <alex@vapaa.xyz>
Build-Depends: debhelper (>= 8.0.0), autotools-dev, libc-dev
Standards-Version: 3.9.3
Section: libs
Homepage: https://vapaa.work/public/libtdata
#Vcs-Git: git://git.debian.org/collab-maint/libsexpr.git
#Vcs-Browser: http://git.debian.org/?p=collab-maint/libsexpr.git;a=summary
Package: libtdata-dev
Section: libdevel
Architecture: any
Depends: libtdata (= ${binary:Version}), libc-dev
Description: Development files for libtdata
Development files for library implements various data structure implementation
Package: libtdata
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Implements various data structures
Library implements various data structure implementations

38
debian/copyright vendored Normal file
View File

@ -0,0 +1,38 @@
Upstream-Name: libtdata
Source: <https://vapaa.work/public/libtdata>
Files: *
Copyright: 2004 - 2019 Alexander Vdolainen <alex@vapaa.xyz>
License: LGPL-2
Additionally, this library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
This library 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 Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, U SA
Files: debian/*
Copyright: 2014, 2025 Alexander Vdolainen <alex@vapaa.xyz>
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 <http://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".

2
debian/docs vendored Normal file
View File

@ -0,0 +1,2 @@
NEWS
README

13
debian/rules vendored Executable file
View File

@ -0,0 +1,13 @@
#!/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 autotools-dev