Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some issues reported by lintian #4

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 9 additions & 10 deletions debian/changelog
Expand Up @@ -29,34 +29,34 @@ wondershaper (1.1a-7) experimental; urgency=low

wondershaper (1.1a-6) unstable; urgency=low

* Added ${misc:Depends} to control
* Added ${misc:Depends} to control
This fixes lintian debhelper-but-no-misc-depends.
* Upgraded dh compat from 4 to 8. Updated control and compat to match.
This fixes lintian package-uses-deprecated-debhelper-compat-version
* Upgrade standards version from 3.8.0 to 3.9.1.0
This fixes lintian out-of-date-standards-version
This fixes lintian out-of-date-standards-version
* Fix copyright file.
This fixes lintian copyright-without-copyright-notice
* Changed from dh_clean -k to dh_prep
This fixes lintian dh-clean-k-is-deprecated
* The wondershaper command has been relocated from /usr/sbin to /sbin,
in order to comply with Debian Policy. Please update any scripts you
in order to comply with Debian Policy. Please update any scripts you
might have pointing to the old location.
Policy considerations:
As a boot time network interface command, it belongs in the same
As a boot time network interface command, it belongs in the same
place as /sbin/tc, iptables, etc.
From a dependency standpoint, its intended to be run from
From a dependency standpoint, its intended to be run from
/etc/network/interfaces at boot time, so cannot be in a directory
that is theoretically NFS mountable.
* Mentined RTNETLINK errors resulting from CONFIG_NET_ACT_POLICE
misoptioning in the Debian README file.
(Closes: #395971)
* Use full path when calling tc
(Closes: #504583)
* Added some commentary to the Debian README explaining how to
* Added some commentary to the Debian README explaining how to
optionally optimize the results.
(Closes: #592579)

-- Vince Mulhollon <vlm@debian.org> Fri, 04 Mar 2011 20:37:37 -0600

wondershaper (1.1a-5) unstable; urgency=low
Expand Down Expand Up @@ -85,15 +85,15 @@ wondershaper (1.1a-4.1) unstable; urgency=low

wondershaper (1.1a-4) unstable; urgency=low

* Patched to remove the bash-isms, works with bash and dash
* Patched to remove the bash-isms, works with bash and dash
(Closes: #260641)
(Closes: #254897)
* Fixed the NOPRIOHOSTSRC bug
(Closes: #260641)
(Closes: #255347)
* Nothing bad heard about the mldonkey patches.
(Closes: #253627)
* Modified the README.Debian file to explain the kernel
* Modified the README.Debian file to explain the kernel
patch situation.
(Closes: #261133)

Expand All @@ -120,4 +120,3 @@ wondershaper (1.1a-1) unstable; urgency=low
* Initial Release.

-- Vince Mulhollon <vlm@debian.org> Sat, 1 May 2004 22:02:38 -0500

1 change: 0 additions & 1 deletion debian/compat

This file was deleted.

8 changes: 4 additions & 4 deletions debian/control
@@ -1,11 +1,11 @@
Source: wondershaper
Section: net
Priority: optional
Homepage: http://lartc.org/wondershaper/
Homepage: https://lartc.org/wondershaper/
Maintainer: Vince Mulhollon <vlm@debian.org>
Uploaders: Rolf Leggewie <foss@rolf.leggewie.biz>
Build-Depends: debhelper (>= 9)
Standards-Version: 4.1.4
Build-Depends: debhelper-compat (= 13)
Standards-Version: 4.1.5
Vcs-Browser: https://github.com/leggewie-DM/wondershaper
Vcs-Git: https://github.com/leggewie-DM/wondershaper.git

Expand All @@ -25,7 +25,7 @@ Description: Easy to use traffic shaping script
* Interactive traffic skips the queue
* ACKs and tiny packets skip the queue
.
Configuring the wondershaper requires you to accurately and precisely
Configuring the wondershaper requires you to accurately and precisely
determine your consistent upload and download speeds.
.
The wondershaper is the simplest, easiest to use, entry level, traffic
Expand Down
6 changes: 3 additions & 3 deletions debian/rules
Expand Up @@ -29,7 +29,7 @@ build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp

build-stamp: configure-stamp
build-stamp: configure-stamp
dh_testdir

# Add here commands to compile the package.
Expand All @@ -46,12 +46,12 @@ clean:
# Add here commands to clean up after the build process.
#-$(MAKE) clean

dh_clean
dh_clean

install: build
dh_testdir
dh_testroot
dh_prep
dh_prep
dh_installdirs

# Add here commands to install the package into debian/wondershaper.
Expand Down