Add Debian packaging for patch packages
Create Debian packages for patch-alarm and enable-dev-patch. Story: 2009101 Task: 43897 Signed-off-by: Tracey Bogue <tracey.bogue@windriver.com> Change-Id: Iaa0958cc857d914a99c69e063b46ded59b4af285
This commit is contained in:
parent
faded78547
commit
0131cd569c
@ -1 +1,3 @@
|
||||
cgcs-patch
|
||||
enable-dev-patch
|
||||
patch-alarm
|
||||
|
5
enable-dev-patch/debian/deb_folder/changelog
Normal file
5
enable-dev-patch/debian/deb_folder/changelog
Normal file
@ -0,0 +1,5 @@
|
||||
enable-dev-patch (1.0-1) unstable; urgency=medium
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Tracey Bogue <tracey.bogue@windriver.com> Mon, 8 Nov 2021 08:53:42 +0000
|
15
enable-dev-patch/debian/deb_folder/control
Normal file
15
enable-dev-patch/debian/deb_folder/control
Normal file
@ -0,0 +1,15 @@
|
||||
Source: enable-dev-patch
|
||||
Section: libs
|
||||
Priority: optional
|
||||
Maintainer: StarlingX Developers <starlingx-discuss@lists.starlingx.io>
|
||||
Build-Depends: debhelper-compat (= 13)
|
||||
Standards-Version: 4.5.1
|
||||
Homepage: https://www.starlingx.io
|
||||
|
||||
Package: enable-dev-patch
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}
|
||||
Description: StarlingX Enable Developer Patch Installation
|
||||
This package enables the installation of StarlingX patches signed by
|
||||
developers.
|
41
enable-dev-patch/debian/deb_folder/copyright
Normal file
41
enable-dev-patch/debian/deb_folder/copyright
Normal file
@ -0,0 +1,41 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: enable-dev-patch
|
||||
Source: https://opendev.org/starlingx/update/
|
||||
|
||||
Files: *
|
||||
Copyright: (c) 2013-2021 Wind River Systems, Inc
|
||||
License: Apache-2
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
.
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
.
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
.
|
||||
On Debian-based systems the full text of the Apache version 2.0 license
|
||||
can be found in `/usr/share/common-licenses/Apache-2.0'.
|
||||
|
||||
# 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: 2021 Wind River Systems, Inc
|
||||
License: Apache-2
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
.
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
.
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
.
|
||||
On Debian-based systems the full text of the Apache version 2.0 license
|
||||
can be found in `/usr/share/common-licenses/Apache-2.0'.
|
@ -0,0 +1 @@
|
||||
etc/pki/wrs/dev_certificate_enable.bin
|
15
enable-dev-patch/debian/deb_folder/rules
Executable file
15
enable-dev-patch/debian/deb_folder/rules
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/make -f
|
||||
# export DH_VERBOSE = 1
|
||||
|
||||
export ROOT=debian/tmp
|
||||
export WRSPKIDIR=$(ROOT)/etc/pki/wrs
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_auto_install:
|
||||
install -m 755 -d $(WRSPKIDIR)
|
||||
install -m 444 dev_certificate_enable.bin $(WRSPKIDIR)
|
||||
|
||||
override_dh_fixperms:
|
||||
dh_fixperms -Xdev_certificate_enable.bin
|
1
enable-dev-patch/debian/deb_folder/source/format
Normal file
1
enable-dev-patch/debian/deb_folder/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
7
enable-dev-patch/debian/meta_data.yaml
Normal file
7
enable-dev-patch/debian/meta_data.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
debname: enable-dev-patch
|
||||
debver: 1.0-1
|
||||
src_path: enable-dev-patch
|
||||
revision:
|
||||
dist: $STX_DIST
|
||||
PKG_GITREVCOUNT: true
|
5
patch-alarm/debian/deb_folder/changelog
Normal file
5
patch-alarm/debian/deb_folder/changelog
Normal file
@ -0,0 +1,5 @@
|
||||
python3-patch-alarm (1.0-1) unstable; urgency=medium
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Tracey Bogue <tracey.bogue@windriver.com> Fri, 5 Nov 2021 15:07:42 +0000
|
27
patch-alarm/debian/deb_folder/control
Normal file
27
patch-alarm/debian/deb_folder/control
Normal file
@ -0,0 +1,27 @@
|
||||
Source: python3-patch-alarm
|
||||
Section: libs
|
||||
Priority: optional
|
||||
Maintainer: StarlingX Developers <starlingx-discuss@lists.starlingx.io>
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
dh-python,
|
||||
python3-all,
|
||||
python3-setuptools,
|
||||
python3-wheel
|
||||
Standards-Version: 4.5.1
|
||||
Homepage: https://www.starlingx.io
|
||||
|
||||
Package: python3-patch-alarm
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-dev
|
||||
Description: StarlingX Patch Alarm Management
|
||||
This package contains the StarlingX platform patching alarm
|
||||
manager.
|
||||
|
||||
Package: python3-patch-alarm-wheels
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-wheel
|
||||
Description: StarlingX Patch Alarm Management Wheels
|
||||
This package contains python wheels for the platform patching
|
||||
alarm manager.
|
41
patch-alarm/debian/deb_folder/copyright
Normal file
41
patch-alarm/debian/deb_folder/copyright
Normal file
@ -0,0 +1,41 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: python3-patch-alarm
|
||||
Source: https://opendev.org/starlingx/update/
|
||||
|
||||
Files: *
|
||||
Copyright: (c) 2013-2021 Wind River Systems, Inc
|
||||
License: Apache-2
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
.
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
.
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
.
|
||||
On Debian-based systems the full text of the Apache version 2.0 license
|
||||
can be found in `/usr/share/common-licenses/Apache-2.0'.
|
||||
|
||||
# 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: 2021 Wind River Systems, Inc
|
||||
License: Apache-2
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
.
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
.
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
.
|
||||
On Debian-based systems the full text of the Apache version 2.0 license
|
||||
can be found in `/usr/share/common-licenses/Apache-2.0'.
|
@ -0,0 +1 @@
|
||||
plugins/patch-alarm/*.whl
|
@ -0,0 +1,4 @@
|
||||
etc/init.d/patch-alarm-manager
|
||||
usr/bin/patch-alarm-manager
|
||||
usr/lib/python3/dist-packages/patch_alarm-1.0.0.egg-info/*
|
||||
usr/lib/python3/dist-packages/patch_alarm/*
|
44
patch-alarm/debian/deb_folder/rules
Executable file
44
patch-alarm/debian/deb_folder/rules
Executable file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/make -f
|
||||
# export DH_VERBOSE = 1
|
||||
|
||||
export ROOT=debian/tmp
|
||||
export BINDIR=$(ROOT)/usr/bin
|
||||
export INITDIR=$(ROOT)/etc/init.d
|
||||
|
||||
export APP_NAME=patch-alarm
|
||||
export PYBUILD_NAME=k8sapp-vault
|
||||
export SKIP_PIP_INSTALL=1
|
||||
|
||||
%:
|
||||
dh $@ --with=python3 --buildsystem=pybuild
|
||||
|
||||
override_dh_auto_build:
|
||||
python3 setup.py build
|
||||
|
||||
override_dh_auto_install:
|
||||
python3 setup.py install \
|
||||
--skip-build \
|
||||
--install-layout=deb \
|
||||
--root $(ROOT) \
|
||||
--prefix=/usr \
|
||||
--install-data=/usr/share \
|
||||
--single-version-externally-managed
|
||||
python3 setup.py bdist_wheel \
|
||||
--universal \
|
||||
-d $(ROOT)/plugins/$(APP_NAME)
|
||||
install -m 755 -d $(BINDIR)
|
||||
install -m 700 scripts/bin/patch-alarm-manager $(BINDIR)
|
||||
install -m 755 -d $(INITDIR)
|
||||
install -m 700 scripts/init.d/patch-alarm-manager $(INITDIR)
|
||||
|
||||
override_dh_fixperms:
|
||||
dh_fixperms -Xpatch-alarm-manager
|
||||
|
||||
override_dh_python3:
|
||||
dh_python3 --shebang=/usr/bin/python3
|
||||
|
||||
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
|
||||
override_dh_auto_test:
|
||||
# (tbogue) FIXME
|
||||
PYTHONDIR=$(CURDIR) stestr run || true
|
||||
endif
|
1
patch-alarm/debian/deb_folder/source/format
Normal file
1
patch-alarm/debian/deb_folder/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
13
patch-alarm/debian/dl_hook
Executable file
13
patch-alarm/debian/dl_hook
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -x
|
||||
|
||||
PKG_BUILD_NAME=$1
|
||||
PKG_BUILD_ROOT=$(realpath `pwd`/${PKG_BUILD_NAME})
|
||||
STX_BASE=$(realpath ${MY_REPO}/stx)
|
||||
SRC=$(realpath ${STX_BASE}/update/patch-alarm)
|
||||
|
||||
mkdir ${PKG_BUILD_NAME}
|
||||
|
||||
# Copy source files from multiple locations to build root.
|
||||
cp -pr ${SRC}/patch-alarm/* ${PKG_BUILD_ROOT}
|
||||
cp -pr ${SRC}/scripts ${PKG_BUILD_ROOT}
|
7
patch-alarm/debian/meta_data.yaml
Normal file
7
patch-alarm/debian/meta_data.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
debname: python3-patch-alarm
|
||||
debver: 1.0-1
|
||||
dl_hook: dl_hook
|
||||
revision:
|
||||
dist: $STX_DIST
|
||||
PKG_GITREVCOUNT: true
|
Loading…
x
Reference in New Issue
Block a user