--- /dev/null
+/.debhelper
+/autoreconf.*
+/debhelper-build-stamp
+/files
+/*/
+*.debhelper
+*.log
+*.substvars
+!/patches/
+!/source/
+!/tests/
--- /dev/null
+pakfire (0.9.29-1) UNRELEASED; urgency=medium
+
+ * Initial Debian package build
+
+ -- Michael Tremer <michael.tremer@ipfire.org> Wed, 23 Oct 2024 13:42:57 +0000
--- /dev/null
+Source: pakfire
+Section: devel
+Priority: optional
+Maintainer: Michael Tremer <michael.tremer@ipfire.org>
+Rules-Requires-Root: no
+Build-Depends:
+ debhelper-compat (= 13),
+ dh-sequence-python3,
+ asciidoc,
+ autoconf,
+ automake,
+ bison,
+ flex,
+ intltool,
+ libarchive-dev,
+ libbpf-dev,
+ libcap-dev,
+ libcurl4-openssl-dev,
+ libdw-dev,
+ libelf-dev,
+ libpython3-dev,
+ libjson-c-dev,
+ libkrb5-dev,
+ liblzma-dev,
+ libmagic-dev,
+ libnl-3-dev,
+ libnl-route-3-dev,
+ libssl-dev,
+ libpcre2-dev,
+ libseccomp-dev,
+ libsolv-dev,
+ libsqlite3-dev,
+ libsystemd-dev,
+ libtool,
+ libzstd-dev,
+ pkg-config,
+ uuid-dev,
+Standards-Version: 4.6.2
+Homepage: https://pakfire.ipfire.org
+Vcs-Browser: https://git.ipfire.org/?p=pakfire.git;a=summary
+Vcs-Git: https://git.ipfire.org/pub/git/pakfire.git
+Description: IPFire Package Management System
+ Pakfire builds packages and creates images.
+
+Package: pakfire
+Architecture: any
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+Description: ${source:Synopsis} (CLI utilities)
+ ${source:Extended-Description}
+
+Package: libpakfire0
+Architecture: any
+Section: libs
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+Multi-Arch: same
+Description: ${source:Synopsis}
+ ${source:Extended-Description}
+ .
+ This package provides the shared library.
+
+Package: libpakfire-dev
+Architecture: any
+Section: libdevel
+Depends:
+ libpakfire0 (= ${binary:Version}),
+ ${misc:Depends},
+Multi-Arch: same
+Description: ${source:Synopsis} (development files)
+ ${source:Extended-Description}
+ .
+ This package provides the headers and development files needed to use
+ libpakfire in your own programs.
+
+Package: python3-pakfire
+Architecture: any
+Section: python
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ ${shlibs:Depends},
+Multi-Arch: foreign
+Description: ${source:Synopsis} (Python 3 bindings)
+ ${source:Extended-Description}
+ .
+ This package provides the Python 3 bindings for libpakfire.
--- /dev/null
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://pakfire.ipfire.org
+Upstream-Name: pakfire
+Upstream-Contact: Michael Tremer <michael.tremer@ipfire.org>
+
+Files:
+ *
+Copyright:
+ 2013-2024 Michael Tremer <michael.tremer@ipfire.org>
+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/>
+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".
--- /dev/null
+usr/include/pakfire
+usr/lib/*/libpakfire.so
+usr/share/doc/pakfire
+usr/share/man/man5
--- /dev/null
+usr/lib/*/libpakfire.so.*
+usr/share/locale/*/LC_MESSAGES/pakfire.mo
--- /dev/null
+usr/lib/*/libpakfire.la
+usr/lib/python3/dist-packages/pakfire/pakfire.la
--- /dev/null
+etc/pakfire
+usr/bin
+lib/systemd/system
+usr/lib/pakfire
+usr/share/man/man8
--- /dev/null
+usr/lib/python3*
--- /dev/null
+#!/usr/bin/make -f
+
+# Output every command that modifies files on the build system
+export DH_VERBOSE = 1
+
+# Enable hardening
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+%:
+ dh $@ --with python3
+
+# Enable debug code
+override_dh_auto_configure:
+ dh_auto_configure -- --enable-debug --disable-static
+
+# Ignore if the testsuite fails
+override_dh_auto_test:
+ make check || true
+
+# Run some custom commands after "make install"
+override_dh_auto_install:
+ dh_auto_install
+
+ # Remove .la files
+ find debian/tmp -name "*.la" -exec rm {} +
--- /dev/null
+3.0 (quilt)