Overview
Comment: | Made debian package ver 0.8. Removed lintian warining. Converted find_free_port to python3 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5bd9419845a5f91b9ddcfc31b110cc84 |
User & Date: | vitus on 2019-10-01 19:29:36.238 |
Other Links: | manifest | tags |
Context
2019-10-03
| ||
07:19 | Fix some unnoticed problems introduced by python3 switch check-in: e54cffda53 user: vitus tags: trunk | |
2019-10-01
| ||
19:29 | Made debian package ver 0.8. Removed lintian warining. Converted find_free_port to python3 check-in: 5bd9419845 user: vitus tags: trunk | |
2019-09-21
| ||
17:02 | Fix byte/string issues in send_command check-in: df1b3337bc user: vitus tags: trunk | |
Changes
Modified Makefile
from [ae5f6e9122]
to [0027921553].
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - + | [ -f $(DESTDIR)$(sysconfdir)/vws.conf ]|| $(INSTALL) -c -m 644 -o root vws.conf $(DESTDIR)$(sysconfdir) $(INSTALL) -c -m 644 -o root vws.1 $(DESTDIR)$(mandir)/man1 $(INSTALL) -c -m 644 -o root find_free_port.1 $(DESTDIR)$(mandir)/man1 $(INSTALL) -c -m 644 -o root vws.service $(DESTDIR)$(systemddir) $(INSTALL) -c -m 644 -o root vws.init $(DESTDIR)$(initddir)/vws |
Deleted debian/README.source version [7d64ff91de].
Modified debian/changelog
from [45bfd5630c]
to [1c63e77d42].
|
Modified debian/control
from [fe47a036d9]
to [1afb1a8339].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - - + + - + + | Source: vws Section: otherosfs Priority: optional Maintainer: Victor Wagner <vitus@wagner.pp.ru> |
︙ |
Modified debian/copyright
from [e98c4c337e]
to [27166e3898].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - - - - - - - - - - - - - - - - - - - - - + | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: vws Source: https://www.wagner.pp.ru/fossil/vws Files: * |
︙ |
Modified debian/files
from [0ce78ac36e]
to [f71c0396cf].
| 1 2 | - - + + |
|
Modified debian/postinst
from [0d0e831abe]
to [6ef4a9be1d].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | # the debian-policy package case "$1" in configure) update-rc.d vws defaults dpkg-statoverride --list *qemu-bridge-helper|| dpkg-statoverride --update --add root kvm 4750 /usr/lib/qemu/qemu-bridge-helper |
︙ |
Modified debian/rules
from [d101b6e240]
to [51fff019b4].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - + | #export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed prefix=/usr export prefix # main packaging script based on dh7 syntax %: dh $@ |
︙ |
Modified find_free_port
from [6153a27ecd]
to [3dfec6d4ec].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - - + + - + - + - + - + - + |
|
Modified vws.conf
from [c8201742a1]
to [65db4dd4bd].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - - + + - + | [directories] |
︙ |
Modified vws.init
from [6cd3f030a1]
to [b725c324eb].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - - | #! /bin/sh ### BEGIN INIT INFO # Provides: skeleton # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Example initscript # Description: This file should be used to construct scripts to be # placed in /etc/init.d. ### END INIT INFO |
︙ |