6 changed files with 190 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
Source: systemd-dev |
|||
Section: devel |
|||
Priority: optional |
|||
Maintainer: Mark Hindley <mark@hindley.org.uk> |
|||
Build-Depends: debhelper-compat (= 13), |
|||
Standards-Version: 4.6.0 |
|||
Rules-Requires-Root: no |
|||
Vcs-Git: https://git.devuan.org/devuan/systemd-dev.git |
|||
Vcs-Browser: https://git.devuan.org/devuan/systemd-dev |
|||
Homepage: https://www.freedesktop.org/wiki/Software/systemd |
|||
Origin: Devuan |
|||
|
|||
Package: systemd-dev |
|||
Architecture: all |
|||
Pre-Depends: ${misc:Pre-Depends} |
|||
Conflicts: systemd |
|||
Provides: systemd |
|||
Replaces: systemd |
|||
Depends: ${misc:Depends} |
|||
Description: Development files extracted from systemd |
|||
Files used at compile time by other packages which enable Debian packages with |
|||
Build-Depends: systemd to be rebuilt on Devuan systems |
|||
. |
|||
Contents: |
|||
- /usr/share/pkgconfig/systemd.pc |
@ -0,0 +1,56 @@ |
|||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ |
|||
Upstream-Name: systemd |
|||
Upstream-Contact: systemd-devel@lists.freedesktop.org |
|||
Source: https://www.freedesktop.org/wiki/Software/systemd/ |
|||
|
|||
Files: * |
|||
Copyright: 2008-2015 Kay Sievers <kay@vrfy.org> |
|||
2010-2015 Lennart Poettering |
|||
2012-2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> |
|||
2013-2015 Tom Gundersen <teg@jklm.no> |
|||
2013-2015 Daniel Mack |
|||
2010-2015 Harald Hoyer |
|||
2013-2015 David Herrmann |
|||
2013, 2014 Thomas H.P. Andersen |
|||
2013, 2014 Daniel Buch |
|||
2014 Susant Sahani |
|||
2009-2015 Intel Corporation |
|||
2000, 2005 Red Hat, Inc. |
|||
2009 Alan Jenkins <alan-jenkins@tuffmail.co.uk> |
|||
2010 ProFUSION embedded systems |
|||
2010 Maarten Lankhorst |
|||
1995-2004 Miquel van Smoorenburg |
|||
1999 Tom Tromey |
|||
2011 Michal Schmidt |
|||
2012 B. Poettering |
|||
2012 Holger Hans Peter Freyther |
|||
2012 Dan Walsh |
|||
2012 Roberto Sassu |
|||
2013 David Strauss |
|||
2013 Marius Vollmer |
|||
2013 Jan Janssen |
|||
2013 Simon Peeters |
|||
License: LGPL-2.1+ |
|||
|
|||
Files: debian/* |
|||
Copyright: 2021 Mark Hindley <mark@hindley.org.uk> |
|||
License: LGPL-2.1+ |
|||
|
|||
License: LGPL-2.1+ |
|||
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 USA |
|||
. |
|||
On Debian systems, the full text of the GNU Lesser General Public |
|||
License version 2 can be found in the file |
|||
`/usr/share/common-licenses/LGPL-2.1'. |
@ -0,0 +1,3 @@ |
|||
[DEFAULT] |
|||
debian-branch=suites/unstable |
|||
debian-tag=%(version)s |
@ -0,0 +1 @@ |
|||
pkgconfig/systemd.pc usr/share/pkgconfig/ |
@ -0,0 +1,4 @@ |
|||
#!/usr/bin/make -f |
|||
|
|||
%: |
|||
dh $@ |
@ -0,0 +1,101 @@ |
|||
# SPDX-License-Identifier: LGPL-2.1-or-later |
|||
# |
|||
# This file is part of systemd. |
|||
# |
|||
# systemd 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. |
|||
|
|||
# Names with prefixes are preferred, and the run-together names should be |
|||
# considered deprecated (though there is no plan to remove them). New names |
|||
# shall have underscores. |
|||
|
|||
prefix=/usr |
|||
root_prefix= |
|||
rootprefix=${root_prefix} |
|||
sysconf_dir=/etc |
|||
sysconfdir=${sysconf_dir} |
|||
|
|||
systemd_util_dir=${root_prefix}/lib/systemd |
|||
systemdutildir=${systemd_util_dir} |
|||
|
|||
systemd_system_unit_dir=${rootprefix}/lib/systemd/system |
|||
systemdsystemunitdir=${systemd_system_unit_dir} |
|||
|
|||
systemd_system_preset_dir=${rootprefix}/lib/systemd/system-preset |
|||
systemdsystempresetdir=${systemd_system_preset_dir} |
|||
|
|||
systemd_user_unit_dir=${prefix}/lib/systemd/user |
|||
systemduserunitdir=${systemd_user_unit_dir} |
|||
|
|||
systemd_user_preset_dir=${prefix}/lib/systemd/user-preset |
|||
systemduserpresetdir=${systemd_user_preset_dir} |
|||
|
|||
systemd_system_conf_dir=${sysconfdir}/systemd/system |
|||
systemdsystemconfdir=${systemd_system_conf_dir} |
|||
|
|||
systemd_user_conf_dir=${sysconfdir}/systemd/user |
|||
systemduserconfdir=${systemd_user_conf_dir} |
|||
|
|||
systemd_system_unit_path=${systemd_system_conf_dir}:/etc/systemd/system:/run/systemd/system:/usr/local/lib/systemd/system:${systemd_system_unit_dir}:/usr/lib/systemd/system:/lib/systemd/system |
|||
systemdsystemunitpath=${systemd_system_unit_path} |
|||
|
|||
systemd_user_unit_path=${systemd_user_conf_dir}:/etc/systemd/user:/run/systemd/user:/usr/local/lib/systemd/user:/usr/local/share/systemd/user:${systemd_user_unit_dir}:/usr/lib/systemd/user:/usr/share/systemd/user |
|||
systemduserunitpath=${systemd_user_unit_path} |
|||
|
|||
systemd_system_generator_dir=${root_prefix}/lib/systemd/system-generators |
|||
systemdsystemgeneratordir=${systemd_system_generator_dir} |
|||
|
|||
systemd_user_generator_dir=${prefix}/lib/systemd/user-generators |
|||
systemdusergeneratordir=${systemd_user_generator_dir} |
|||
|
|||
systemd_system_generator_path=/run/systemd/system-generators:/etc/systemd/system-generators:/usr/local/lib/systemd/system-generators:${systemd_system_generator_dir} |
|||
systemdsystemgeneratorpath=${systemd_system_generator_path} |
|||
|
|||
systemd_user_generator_path=/run/systemd/user-generators:/etc/systemd/user-generators:/usr/local/lib/systemd/user-generators:${systemd_user_generator_dir} |
|||
systemdusergeneratorpath=${systemd_user_generator_path} |
|||
|
|||
systemd_sleep_dir=${root_prefix}/lib/systemd/system-sleep |
|||
systemdsleepdir=${systemd_sleep_dir} |
|||
|
|||
systemd_shutdown_dir=${root_prefix}/lib/systemd/system-shutdown |
|||
systemdshutdowndir=${systemd_shutdown_dir} |
|||
|
|||
tmpfiles_dir=${prefix}/lib/tmpfiles.d |
|||
tmpfilesdir=${tmpfiles_dir} |
|||
|
|||
sysusers_dir=${prefix}/lib/sysusers.d |
|||
sysusersdir=${sysusers_dir} |
|||
|
|||
sysctl_dir=${prefix}/lib/sysctl.d |
|||
sysctldir=${sysctl_dir} |
|||
|
|||
binfmt_dir=${prefix}/lib/binfmt.d |
|||
binfmtdir=${binfmt_dir} |
|||
|
|||
modules_load_dir=${prefix}/lib/modules-load.d |
|||
modulesloaddir=${modules_load_dir} |
|||
|
|||
catalog_dir=${prefix}/lib/systemd/catalog |
|||
catalogdir=${catalog_dir} |
|||
|
|||
system_uid_max=999 |
|||
systemuidmax=${system_uid_max} |
|||
system_gid_max=999 |
|||
systemgidmax=${system_gid_max} |
|||
|
|||
dynamic_uid_min=61184 |
|||
dynamicuidmin=${dynamic_uid_min} |
|||
dynamic_uid_max=65519 |
|||
dynamicuidmax=${dynamic_uid_max} |
|||
|
|||
container_uid_base_min=524288 |
|||
containeruidbasemin=${container_uid_base_min} |
|||
container_uid_base_max=1878982656 |
|||
containeruidbasemax=${container_uid_base_max} |
|||
|
|||
Name: systemd |
|||
Description: systemd System and Service Manager |
|||
URL: https://www.freedesktop.org/wiki/Software/systemd |
|||
Version: 250 |
Loading…
Reference in new issue