-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from cobbler/feeature/add-deb-recipe
Debian: Add OBS compatible dsc files
- Loading branch information
Showing
6 changed files
with
45 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Format: 1.0 | ||
Source: cobbler-cli | ||
Maintainer: Cobbler Team <[email protected]> | ||
Standards-Version: 3.9.6 | ||
Version: 0.0.1 | ||
Homepage: https://github.com/cobbler/cli | ||
Build-Depends: debhelper (>= 12~), bash-completion, golang-go | ||
DEBTRANSFORM-TAR: cobbler-cli-0.0.1.tar.gz | ||
DEBTRANSFORM-FILES-TAR: vendor.tar.gz |
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,5 @@ | ||
cobbler-cli (0.0.1) unstable; urgency=low | ||
|
||
* Initial packaging of version 0.0.1 | ||
|
||
-- Enno Gotthold <[email protected]> Thu, 14 Nov 2024 00:00:00 +0000 |
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 @@ | ||
cobbler /usr/bin |
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 @@ | ||
10 |
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: cobbler-cli | ||
Section: admin | ||
Priority: extra | ||
Maintainer: Cobbler Team <[email protected]> | ||
Standards-Version: 3.9.6 | ||
Build-Depends: debhelper (>= 12~), bash-completion, golang-go | ||
Homepage: https://github.com/cobbler/cli | ||
|
||
Package: cobbler-cli | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Pre-Depends: ${misc:Pre-Depends} | ||
Description: Cobbler Golang based CLI |
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,16 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DH_VERBOSE = 1 | ||
export GOPATH = $(CURDIR)/.go | ||
export PATH := /usr/lib/go/bin:$(PATH) | ||
export CGO_ENABLED = 0 | ||
|
||
%: | ||
dh $@ --with=bash-completion | ||
|
||
override_dh_auto_build: | ||
@mv debian/vendor . | ||
dh_auto_build | ||
|
||
override_dh_auto_test: | ||
@echo "Integrations-Tests disabled during build" |