Commit dfe114e1 authored by jan.koester's avatar jan.koester
Browse files

deb support

parent 9c3c9df9
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
libhttppp (20260401) unstable; urgency=medium

  * Initial Debian packaging with multiarch support.

 -- Jan Koester <jan.koester@tuxist.de>  Wed, 01 Apr 2026 00:00:00 +0200

debian/control

0 → 100644
+40 −0
Original line number Diff line number Diff line
Source: libhttppp
Section: libs
Priority: optional
Maintainer: Jan Koester <jan.koester@tuxist.de>
Build-Depends: debhelper-compat (= 13), cmake (>= 3.26), doxygen,
 libnetplus-dev, libcmdplus-dev
Standards-Version: 4.6.2
Homepage: https://github.com/tuxist/libhttppp
Rules-Requires-Root: no

Package: libhttppp1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: C++ HTTP server library
 libhttppp is a C++ library providing HTTP/1.1 and HTTP/2 server
 functionality with HPACK, QPACK, and HTTPS support.

Package: libhttppp-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libhttppp1 (= ${binary:Version}), ${misc:Depends}
Description: C++ HTTP server library - development files
 libhttppp is a C++ library providing HTTP/1.1 and HTTP/2 server
 functionality with HPACK, QPACK, and HTTPS support.
 .
 This package contains the headers, static library, and CMake config
 files needed for development.

Package: libhttppp-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: C++ HTTP server library - API documentation
 libhttppp is a C++ library providing HTTP/1.1 and HTTP/2 server
 functionality with HPACK, QPACK, and HTTPS support.
 .
 This package contains the Doxygen-generated API documentation.

debian/copyright

0 → 100644
+34 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libhttppp
Upstream-Contact: Jan Koester <jan.koester@tuxist.de>

Files: *
Copyright: 2019 Jan Koester
License: BSD-3-Clause

License: BSD-3-Clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
 .
 3. Neither the name of the copyright holder nor the names of its
    contributors may be used to endorse or promote products derived from
    this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
+4 −0
Original line number Diff line number Diff line
usr/include/httppp/
usr/lib/*/libhttppp.so
usr/lib/*/libhttppp-static.a
usr/lib/*/cmake/libhttppp/
+1 −0
Original line number Diff line number Diff line
usr/share/doc/libhttppp/
Loading