-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added rudimentary debian packaging information. (#81)
This should allow someone to build a basic installable .deb package out of checkout of this repo.
- Loading branch information
Showing
12 changed files
with
71 additions
and
7 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 |
---|---|---|
@@ -1,2 +1,11 @@ | ||
*.pyc | ||
/dist | ||
|
||
/debian/* | ||
!/debian/changelog | ||
!/debian/control | ||
!/debian/dirs | ||
!/debian/install | ||
!/debian/manpages | ||
!/debian/rules | ||
!/debian/copyright |
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 |
---|---|---|
|
@@ -54,3 +54,6 @@ srpm: dist | |
|
||
snap: | ||
cd packaging/snap/; snapcraft | ||
|
||
deb: | ||
dpkg-buildpackage -us -uc |
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 @@ | ||
dool (1.3.3-1) unstable; urgency=low | ||
|
||
* Initial packaging of the Python3 compatible fork of dstat. | ||
|
||
-- Uroš Knupleš <uros@knuples.net> Sun, 06 Oct 2024 11:18:38 +0200 |
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 @@ | ||
Source: dool | ||
Section: utils | ||
Priority: optional | ||
Maintainer: Uroš Knupleš <uros@knuples.net> | ||
Build-Depends: debhelper-compat (= 13) | ||
Homepage: https://github.com/scottchiefbaker/dool | ||
|
||
Package: dool | ||
Architecture: all | ||
Depends: ${misc:Depends}, python3 | ||
Description: Python3 compatible fork of dstat. | ||
Dool is a versatile replacement for vmstat, iostat, netstat and ifstat. | ||
Dool overcomes some of their limitations and adds some extra features, | ||
more counters and flexibility. Dool is handy for monitoring systems | ||
during performance tuning tests, benchmarks or troubleshooting. | ||
|
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,7 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: dool | ||
Source: https://github.com/scottchiefbaker/dool | ||
|
||
Files: * | ||
Copyright: 2024 Scott Baker <scott@perturb.org> | ||
License: GPL-3.0+ |
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 @@ | ||
usr/bin | ||
usr/share/dool | ||
usr/share/man/man1 |
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 @@ | ||
dool usr/bin | ||
plugins/* usr/share/dool/ | ||
docs/dool.1 usr/share/man/man1/ |
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 @@ | ||
docs/dool.1 |
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,17 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_install: | ||
dh_install | ||
dh_installman | ||
|
||
override_dh_auto_test: | ||
# Disable the test suite | ||
|
||
override_dh_auto_clean: | ||
# Don't clean stuff | ||
|
||
override_dh_auto_build: | ||
# No build step needed |
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
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