Commit 94d16555 authored by jan.koester's avatar jan.koester
Browse files

deb package support

parent 2c094eeb
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
uuidplus (20260401-1) UNRELEASED; urgency=medium

  * Initial release. (Closes: #nnnn)  <nnnn is the bug number of your ITP>

 -- Jan Koester <jan.koester@intranet.tuxist.de@hel.intranet.tuxist.de>  Wed, 01 Apr 2026 02:43:13 +0200

debian/control

0 → 100644
+41 −0
Original line number Diff line number Diff line
Source: uuidplus
Section: libs
Priority: optional
Maintainer: Jan Koester <jan.koester@intranet.tuxist.de@hel.intranet.tuxist.de>
Rules-Requires-Root: no
Build-Depends:
 debhelper-compat (= 13),
 cmake,
Standards-Version: 4.7.2
Homepage: <insert the upstream URL, if relevant>
#Vcs-Browser: https://salsa.debian.org/debian/uuidplus
#Vcs-Git: https://salsa.debian.org/debian/uuidplus.git

Package: uuidplus
Architecture: any
Multi-Arch: same
Depends:
 uuidplus (= ${binary:Version}),
 ${misc:Depends},
Description: <insert up to 60 chars description>
 <Insert long description, indented with spaces.>


Package: libuuidplus-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends:
 uuidplus1 (= ${binary:Version}),
 ${misc:Depends},
Description: <insert up to 60 chars description>
 <Insert long description, indented with spaces.>

Package: libuuidplus1
Architecture: any
Multi-Arch: same
Depends:
 ${shlibs:Depends},
 ${misc:Depends},
Description: <insert up to 60 chars description>
 <Insert long description, indented with spaces.>

debian/copyright

0 → 100644
+47 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: <url://example.com>
Upstream-Name: uuidplus
Upstream-Contact: <preferred name and address to reach the upstream project>

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:
 2026 Jan Koester <jan.koester@intranet.tuxist.de@hel.intranet.tuxist.de>
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 package. If not, see <https://www.gnu.org/licenses/>.
Comment:
 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.
#
# If you need, there are some extra license texts available in two places:
#   /usr/share/debhelper/dh_make/licenses/
#   /usr/share/common-licenses/
+3 −0
Original line number Diff line number Diff line
usr/include/*
usr/lib/*/cmake/libuuidp/*.cmake
usr/lib/*/*.so
+1 −0
Original line number Diff line number Diff line
/usr/lib/*/*.so*
Loading