Skip to content

Commit 84e886c

Browse files
committed
alvistack/v23.6.0
git clean -xdf tar zcvf ../python-molecule-plugins_23.6.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-molecule-plugins.spec ../python-molecule-plugins_23.6.0-1.spec cp ../python*-molecule-plugins*23.6.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-community-molecule-plugins-23.6.0 rm -rf ../python*-molecule-plugins*23.6.0*.* See ansible-community#155 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
1 parent 3407427 commit 84e886c

File tree

16 files changed

+282
-9
lines changed

16 files changed

+282
-9
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ MANIFEST
3131
# Usually these files are written by a python script from a template
3232
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3333
*.manifest
34-
*.spec
3534

3635
# Installer logs
3736
pip-log.txt
@@ -127,7 +126,8 @@ dmypy.json
127126

128127
# Pyre type checker
129128
.pyre/
130-
src/molecule_plugins/_version.py
131129

132130
# Ignore generated files
133131
test/roles
132+
133+
.pybuild/

debian/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.substvars
2+
*debhelper*
3+
.debhelper
4+
files
5+
python3-molecule-plugins
6+
tmp

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
python-molecule-plugins (100:23.6.0-1) UNRELEASED; urgency=medium
2+
3+
* https://github.com/ansible-community/molecule-plugins/releases/tag/v23.6.0
4+
5+
-- Wong Hoi Sing Edison <hswong3i@pantarei-design.com> Mon, 15 Jan 2024 21:16:29 +0800

debian/control

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
Source: python-molecule-plugins
2+
Section: python
3+
Priority: optional
4+
Standards-Version: 4.5.0
5+
Maintainer: Wong Hoi Sing Edison <hswong3i@gmail.com>
6+
Homepage: https://github.com/ansible-community/molecule-plugins/tags
7+
Vcs-Browser: https://github.com/alvistack/ansible-community-molecule-plugins
8+
Vcs-Git: https://github.com/alvistack/ansible-community-molecule-plugins.git
9+
Build-Depends:
10+
debhelper,
11+
debhelper-compat (= 10),
12+
dh-python,
13+
fdupes,
14+
python3-dev,
15+
python3-setuptools,
16+
17+
Package: python3-molecule-plugins
18+
Architecture: all
19+
Description: Molecule Plugins
20+
Molecule Plugins.
21+
Depends:
22+
${misc:Depends},
23+
${shlibs:Depends},
24+
${python3:Depends},
25+
python3,
26+
python3-docker (>= 4.3.1),
27+
python3-jinja2 (>= 2.11.3),
28+
python3-molecule (>= 5.0),
29+
python3-requests,
30+
python3-selinux,
31+
python3-vagrant (>= 1.0.0),
32+
python3-yaml (>= 5.1),
33+
Conflicts:
34+
python3-molecule-docker,
35+
python3-molecule-podman,
36+
python3-molecule-vagrant,
37+
Replaces:
38+
python3-molecule-docker,
39+
python3-molecule-podman,
40+
python3-molecule-vagrant,

debian/copyright

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
3+
Files: debian/*
4+
Copyright: 2024 Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
5+
License: Apache-2.0
6+
7+
License: Apache-2.0
8+
Licensed under the Apache License, Version 2.0 (the "License");
9+
you may not use this file except in compliance with the License.
10+
You may obtain a copy of the License at
11+
.
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
.
14+
Unless required by applicable law or agreed to in writing, software
15+
distributed under the License is distributed on an "AS IS" BASIS,
16+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
See the License for the specific language governing permissions and
18+
limitations under the License.
19+
.
20+
The complete text of the Apache version 2.0 license
21+
can be found in "/usr/share/common-licenses/Apache-2.0".
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/lib/python*/*-packages/*
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python3-molecule-plugins: copyright-without-copyright-notice
2+
python3-molecule-plugins: initial-upload-closes-no-bugs
3+
python3-molecule-plugins: no-manual-page
4+
python3-molecule-plugins: zero-byte-file-in-doc-directory

debian/rules

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/make -f
2+
3+
SHELL := /bin/bash
4+
5+
override_dh_auto_install:
6+
dh_auto_install --destdir=debian/tmp
7+
find debian/tmp/usr/lib/python*/*-packages -type f -name '*.pyc' -exec rm -rf {} \;
8+
fdupes -qnrps debian/tmp/usr/lib/python*/*-packages
9+
10+
override_dh_auto_test:
11+
12+
override_dh_auto_clean:
13+
14+
%:
15+
dh $@ --buildsystem=pybuild --with python3

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

debian/source/lintian-overrides

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
python-molecule-plugins source: file-without-copyright-information
2+
python-molecule-plugins source: no-debian-changes
3+
python-molecule-plugins source: source-contains-prebuilt-windows-binary
4+
python-molecule-plugins source: source-is-missing
5+
python-molecule-plugins source: source-package-encodes-python-version

0 commit comments

Comments
 (0)