1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-08-23 20:18:14 +02:00

Build debian packages using specification files instead of shell script.

This commit is contained in:
Henrik Hautakoski 2022-08-19 17:02:18 +02:00
parent 6f8a3db85e
commit 7043d67945
No known key found for this signature in database
GPG key ID: 608414D93E862CCD
9 changed files with 79 additions and 39 deletions

7
debian/.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
.debhelper/*
*.debhelper
*.log
*-stamp
*.substvars
files
pkgroot/*

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
eosio-api-healthcheck (1.2.3) unstable; urgency=medium
*
-- Henrik Hautakoski <henrik@eossweden.org> Fri, 19 Aug 2022 16:29:56 +0200

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
10

17
debian/control vendored Normal file
View file

@ -0,0 +1,17 @@
Source: eosio-api-healthcheck
Section: introspection
Build-Depends:
debhelper (>= 11)
Standards-Version: 4.0.0
Vcs-Git: https://github.com/eosswedenorg/eos-api-healthcheck.git
Vcs-Browser: https://github.com/eosswedenorg/eos-api-healthcheck
Priority: optional
Maintainer: Henrik Hautakoski <henrik@eossweden.org>
Package: eosio-api-healthcheck
Section: introspection
Priority: optional
Architecture: amd64
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: https://github.com/eosswedenorg/eos-api-healthcheck
Description: HAproxy healthcheck program for EOSIO API.

27
debian/copyright vendored Normal file
View file

@ -0,0 +1,27 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: eosio-api-healthcheck
Upstream-Contact: Henrik Hautakoski <henrik@eossweden.org>
Source: https://github.com/eosswedenorg/eos-api-healthcheck.git
Files: *
Copyright: 2020-2022 Sw/eden
License: MIT
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

15
debian/rules vendored Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/make -f
include /usr/share/dpkg/default.mk
INSTALL_FLAGS := GOOS=linux
%:
dh $@ -P debian/pkgroot
override_dh_auto_build:
override_dh_auto_install:
dh_auto_install --buildsystem=makefile -- $(INSTALL_FLAGS)
override_dh_usrlocal:
override_dh_gconf:

1
debian/source/format vendored Normal file
View file

@ -0,0 +1 @@
3.0 (native)