-
Notifications
You must be signed in to change notification settings - Fork 123
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 #631 from narc-Ontakac2/debian
Back to DEP-14
- Loading branch information
Showing
20 changed files
with
176 additions
and
60 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 +1,4 @@ | ||
debian/ export-ignore | ||
# This preserves the changlog during a merge (not during a rebase). It requires | ||
# git config merge.ours.driver true | ||
debian/changelog merge=ours |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
vzlogger (0.8.2-1) unstable; urgency=medium | ||
vzlogger (0.8.3-1) unstable; urgency=medium | ||
|
||
* Initial upload (Closes: #864255) | ||
|
||
-- Joachim Zobel <[email protected]> Mon, 10 Jul 2023 16:53:23 +0200 | ||
|
||
-- Joachim Zobel <[email protected]> Mon, 04 Mar 2024 19:03:44 +0100 |
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 |
---|---|---|
|
@@ -2,19 +2,32 @@ Source: vzlogger | |
Section: net | ||
Priority: optional | ||
Maintainer: Joachim Zobel <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), pkg-config (>= 0.25), | ||
libjson-c-dev (>= 0.9), libcurl4-openssl-dev (>= 7.19), | ||
libmicrohttpd-dev (>= 0.4.6), libsml-dev (>= 1.0), cmake, libsasl2-dev, | ||
libssl-dev (>= 3.0), libgcrypt-dev, libgnutls28-dev, uuid-dev, libunistring-dev, | ||
libgmock-dev, libgtest-dev, pandoc, libmosquitto-dev | ||
Build-Depends: debhelper-compat (= 13), | ||
pkgconf, | ||
libjson-c-dev, | ||
libcurl4-openssl-dev, | ||
libmicrohttpd-dev (>= 0.4.6), | ||
libsml-dev (>= 1.0), | ||
cmake, | ||
libsasl2-dev, | ||
libssl-dev (>= 3.0), | ||
libgcrypt-dev, | ||
libgnutls28-dev, | ||
uuid-dev, | ||
libunistring-dev, | ||
libgmock-dev, | ||
libgtest-dev, | ||
pandoc, | ||
libmosquitto-dev | ||
Standards-Version: 4.6.2 | ||
Rules-Requires-Root: no | ||
Homepage: http://wiki.volkszaehler.org/software/controller/vzlogger | ||
Vcs-Git: https://github.com/volkszaehler/vzlogger.git -b debian | ||
Vcs-Browser: https://github.com/volkszaehler/vzlogger/tree/debian | ||
|
||
Package: vzlogger | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, libsml1 | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, adduser | ||
Pre-Depends: ${misc:Pre-Depends} | ||
Description: program for logging measurements to a volkszaehler.org middleware | ||
vzlogger... | ||
|
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,2 +1,4 @@ | ||
# May be odd, but I don't want to change the (non debian) past | ||
odd-historical-debian-changelog-version *0.3.4-rc1* | ||
# Having a debian watch file in the native package is easier to maintain | ||
debian-watch-file-in-native-package * |
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,3 +1,6 @@ | ||
% VZLOGGER(8) Volkszaehler project | System management commands | ||
% Joachim Zobel <[email protected]> | ||
|
||
# NAME | ||
|
||
vzlogger -- A tool to read and log measurements of a wide variety of smart meters and sensors | ||
|
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 +1 @@ | ||
vzlogger.1 | ||
vzlogger.8 |
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,25 +1,35 @@ | ||
#!/bin/sh -e | ||
|
||
set -e | ||
|
||
case "$1" in | ||
configure) | ||
if ! id vzlogger > /dev/null 2>&1 ; then | ||
adduser --system --no-create-home --home /nonexistent \ | ||
--group --disabled-password --shell /bin/false \ | ||
vzlogger | ||
usermod -a -G dialout vzlogger | ||
if id vzlogger > /dev/null 2>&1 ; then | ||
# maintain compatibility with existing native installations | ||
usermod -l _vzlogger vzlogger | ||
groupmod --new-name _vzlogger vzlogger | ||
fi | ||
if ! id _vzlogger > /dev/null 2>&1 ; then | ||
adduser --quiet --system --no-create-home --home /nonexistent \ | ||
--group --disabled-password --shell /bin/false \ | ||
_vzlogger | ||
usermod -a -G dialout _vzlogger | ||
fi | ||
|
||
touch /var/log/vzlogger.log | ||
chown vzlogger:adm /var/log/vzlogger.log | ||
touch /var/log/vzlogger.log | ||
chown _vzlogger:adm /var/log/vzlogger.log | ||
;; | ||
|
||
abort-upgrade|abort-remove|abort-deconfigure) | ||
;; | ||
|
||
*) | ||
echo "$0 called with unknown argument \`$1'" >&2 | ||
exit 1 | ||
echo "$0 called with unknown argument \`$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
#DEBHELPER# | ||
|
||
exit 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,25 @@ | ||
#!/bin/sh -e | ||
|
||
set -e | ||
|
||
case "$1" in | ||
purge) | ||
rm -f /var/log/vzlogger.log* | ||
;; | ||
|
||
remove|abort-install|abort-upgrade|disappear) | ||
;; | ||
|
||
upgrade|failed-upgrade) | ||
;; | ||
|
||
*) | ||
echo "$0 called with unknown argument \`$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
#DEBHELPER# | ||
|
||
exit 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
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
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
Oops, something went wrong.