mirror of https://gitee.com/openkylin/dh-exec.git
Import Debian changes 0.29-ok1
dh-exec (0.29-ok1) nile; urgency=medium * Build for openKylin.
This commit is contained in:
parent
b5a7eff671
commit
fbc4b6ffc6
|
@ -0,0 +1,5 @@
|
|||
dh-exec (0.29-ok1) nile; urgency=medium
|
||||
|
||||
* Build for openKylin.
|
||||
|
||||
-- openKylinBot <openKylinBot@openkylin.top> Tue, 07 May 2024 15:07:20 +0800
|
|
@ -0,0 +1,41 @@
|
|||
Source: dh-exec
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Maintainer: openKylin Developers <packaging@lists.openkylin.top>
|
||||
XSBC-Original-Maintainer: Craig Small <csmall@debian.org>
|
||||
Build-Depends: automake,
|
||||
bats <!nocheck>,
|
||||
debhelper-compat (= 13),
|
||||
libdpkg-perl,
|
||||
libpipeline-dev,
|
||||
perl:any,
|
||||
pkgconf
|
||||
Rules-Requires-Root: no
|
||||
Standards-Version: 4.6.2
|
||||
Homepage: https://salsa.debian.org/debian/dh-exec
|
||||
Vcs-Browser: https://salsa.debian.org/debian/dh-exec
|
||||
Vcs-Git: https://salsa.debian.org/debian/dh-exec.git
|
||||
|
||||
Package: dh-exec
|
||||
Multi-Arch: foreign
|
||||
Architecture: any
|
||||
Depends: debhelper,
|
||||
libdpkg-perl,
|
||||
perl,
|
||||
${misc:Depends},
|
||||
${perl:Depends},
|
||||
${shlibs:Depends}
|
||||
Description: Scripts to help with executable debhelper files
|
||||
Debhelper (in compat level 9 and above) allows its config files to be
|
||||
executable, and uses the output of such scripts as if it was the
|
||||
content of the config file.
|
||||
.
|
||||
To ease and standardize the most common tasks, this package provides
|
||||
a few solutions to help constructing such executable scripts:
|
||||
.
|
||||
* A way to ease variable substitution, from environment variables or
|
||||
dpkg-architecture.
|
||||
* Ability to filter files by architecture or build profile, within a
|
||||
single debhelper control file.
|
||||
* An extension to dh_install and dh_installman, with the ability to
|
||||
rename files.
|
|
@ -0,0 +1,24 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: dh-exec
|
||||
Upstream-Contact: Craig Small <csmall@debian.org>
|
||||
|
||||
Files: *
|
||||
Copyright: Copyright (C) 2011-2024 Software Freedom Conservancy, Inc.
|
||||
License: GPL-3+
|
||||
|
||||
License: GPL-3+
|
||||
This program 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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
.
|
||||
This program 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 can be found in the file `/usr/share/common-licenses/GPL-3'.
|
|
@ -0,0 +1 @@
|
|||
README.md
|
|
@ -0,0 +1,8 @@
|
|||
[default]
|
||||
upstream-branch = master
|
||||
debian-branch = master
|
||||
|
||||
[buildpackage]
|
||||
tag = True
|
||||
sign-tags = True
|
||||
debian-tag = dh-exec-%(version)s
|
|
@ -0,0 +1,7 @@
|
|||
#! /usr/bin/make -f
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- --libexecdir=/usr/lib
|
||||
|
||||
%:
|
||||
dh $@ --builddirectory=debian/build-tree
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
include:
|
||||
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
|
||||
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
|
||||
|
||||
# Get too many false-positivies with reprotest
|
||||
variables:
|
||||
SALSA_CI_DISABLE_REPROTEST: 1
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Reference in New Issue