-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
214 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,55 @@ | ||
{ | ||
"__version": "45D-R1", | ||
"schema_version": "45D_AP_V2.0", | ||
"name": "samba-ansible", | ||
"title": "Samba-ansible", | ||
"prerelease": false, | ||
"description": "Deploy samba,ctdb and domain joins w. anisble ", | ||
"version": "1.1.5", | ||
"buildVersion": "1", | ||
"build_number": "1", | ||
"stable": true, | ||
"author": "Brett Kelly <[email protected]>", | ||
"url": "https://github.com/45Drives/samba-ansible", | ||
"category": "utils", | ||
"priority": "optional", | ||
"git_url": "https://github.com/45Drives/samba-ansible", | ||
"licence": "GPL-3.0+", | ||
"architecture": { | ||
"deb": "all", | ||
"el": "noarch" | ||
}, | ||
"description": { | ||
"long": "Deploy samba,ctdb and domain joins w. anisble ", | ||
"short": "Deploy samba,ctdb and domain joins w. anisble " | ||
}, | ||
"defaults": { | ||
"urgency": "medium" | ||
}, | ||
"dependencies": { | ||
"deb": [ | ||
"ubuntu_common": [ | ||
"ansible" | ||
], | ||
"el": [ | ||
"rocky_common": [ | ||
"ansible" | ||
] | ||
}, | ||
"releases": [ | ||
"builds": [ | ||
{ | ||
"group": "ubuntu", | ||
"os_name": "ubuntu-focal", | ||
"image": "ci.cr.45d.io/ci/simple/ubuntu-focal:1" | ||
}, | ||
{ | ||
"image": "ubuntu-focal-builder", | ||
"codeName": "focal", | ||
"type": "deb" | ||
"group": "ubuntu", | ||
"os_name": "ubuntu-jammy", | ||
"image": "ci.cr.45d.io/ci/simple/ubuntu-jammy:1" | ||
}, | ||
{ | ||
"image": "rocky-el8-builder", | ||
"codeName": "el8", | ||
"type": "el" | ||
"group": "rocky", | ||
"os_name": "rocky-el8", | ||
"image": "ci.cr.45d.io/ci/simple/rocky-el8:1" | ||
}, | ||
{ | ||
"group": "rocky", | ||
"os_name": "rocky-el9", | ||
"image": "ci.cr.45d.io/ci/simple/rocky-el9:1" | ||
} | ||
], | ||
"repos": [ | ||
"community", | ||
"enterprise" | ||
], | ||
"changelog": { | ||
"urgency": "medium", | ||
"version": "1.1.5", | ||
|
This file was deleted.
Oops, something went wrong.
20 changes: 10 additions & 10 deletions
20
packaging/el8/main.spec → packaging/rocky-el8/main.spec.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Name: {{ name }} | ||
Version: {{ version }} | ||
Release: {{ build_number }}%{?dist} | ||
Summary: {{ description }} | ||
License: {{ license }} | ||
URL: {{ git_url }} | ||
Source0: %{name}-%{version}.tar.gz | ||
BuildArch: {{ architecture.rocky }} | ||
Requires: {{ dependencies.rocky_common | join(',') }} | ||
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root | ||
|
||
%description | ||
{{ title }} | ||
{{ description }} | ||
|
||
%prep | ||
%setup -q | ||
|
||
%build | ||
|
||
%install | ||
make DESTDIR=%{buildroot} install | ||
|
||
%files | ||
/usr/share/samba-ansible/* | ||
|
||
%changelog |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Source: {{ name }} | ||
Section: utils | ||
Priority: optional | ||
Maintainer: {{ author }} | ||
Build-Depends: debhelper-compat (= 12) | ||
Standards-Version: 4.4.1 | ||
Homepage: {{ git_url }} | ||
Vcs-Git: {{ git_url }} | ||
|
||
Package: {{ name }} | ||
Architecture: {{ architecture.ubuntu }} | ||
Depends: {{ dependencies.ubuntu_common | join(',') }} | ||
Description: {{ description }} |
6 changes: 3 additions & 3 deletions
6
packaging/focal/copyright → packaging/ubuntu-focal/copyright.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Source: {{ name }} | ||
Section: utils | ||
Priority: optional | ||
Maintainer: {{ author }} | ||
Build-Depends: debhelper-compat (= 12) | ||
Standards-Version: 4.4.1 | ||
Homepage: {{ git_url }} | ||
Vcs-Git: {{ git_url }} | ||
|
||
Package: {{ name }} | ||
Architecture: {{ architecture.ubuntu }} | ||
Depends: {{ dependencies.ubuntu_common | join(',') }} | ||
Description: {{ description }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: "{{ name }}" | ||
Upstream-Contact: "{{ author }}" | ||
Source: "{{ git_url }}" | ||
|
||
Files: * | ||
Copyright: 2021 Your Name <email@45drives.com> | ||
License: GPL-3.0+ | ||
|
||
License: GPL-3.0+ | ||
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 the Onboard package. If not, please have a look at | ||
/usr/share/common-licenses or <http://www.gnu.org/licenses/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/make -f | ||
# See debhelper(7) (uncomment to enable) | ||
# output every command that modifies files on the build system. | ||
#export DH_VERBOSE = 1 | ||
|
||
|
||
# see FEATURE AREAS in dpkg-buildflags(1) | ||
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all | ||
|
||
# see ENVIRONMENT in dpkg-buildflags(1) | ||
# package maintainers to append CFLAGS | ||
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic | ||
# package maintainers to append LDFLAGS | ||
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed | ||
|
||
%: | ||
dh $@ | ||
|
||
|
||
# dh_make generated override targets | ||
# This is example for Cmake (See https://bugs.debian.org/641051 ) | ||
#override_dh_auto_configure: | ||
# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |