This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via af015397c39ff259cafabf0334c16a4fc90820ee (commit) via 93036e816ddb9fbd101a7dd3934cdd3222bcec24 (commit) via d3f9d56f2091e17d945dfda550230dbcc5c225ab (commit) via 56063cff541461fb40f0c9ba96afdbae020829ed (commit) via 3af7530f56bb0aadc9fa4582f2cb8219f95ae2b3 (commit) from ebeed08a4e4d2812b3a6e848b1d2c90ed88b323f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit af015397c39ff259cafabf0334c16a4fc90820ee Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Oct 31 10:41:57 2011 +0100
usb-modeswitch: Requires usb-modeswitch-data.
Without that package, it would be pretty useless.
commit 93036e816ddb9fbd101a7dd3934cdd3222bcec24 Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Oct 31 10:39:37 2011 +0100
usb-modeswitch-data: New package.
This package is required that usb-modeswitch functions properly. It contains hardware information about which devices can be mode-switched.
commit d3f9d56f2091e17d945dfda550230dbcc5c225ab Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Oct 31 10:38:56 2011 +0100
libsolv: Correctly tag the release when using git versions.
commit 56063cff541461fb40f0c9ba96afdbae020829ed Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Oct 31 10:38:32 2011 +0100
ppl: The package did not have a -devel package.
commit 3af7530f56bb0aadc9fa4582f2cb8219f95ae2b3 Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Oct 31 10:37:34 2011 +0100
radvd: Fix using wrong parameter in systemd service file.
-----------------------------------------------------------------------
Summary of changes: libsolv/libsolv.nm | 2 +- ppl/ppl.nm | 6 ++++- radvd/radvd.nm | 2 +- radvd/systemd/radvd.service | 2 +- .../usb-modeswitch-data.nm | 22 ++++++++++++++++--- usb-modeswitch/usb-modeswitch.nm | 4 ++- 6 files changed, 29 insertions(+), 9 deletions(-) copy usb-modeswitch/usb-modeswitch.nm => usb-modeswitch-data/usb-modeswitch-data.nm (64%)
Difference in files: diff --git a/libsolv/libsolv.nm b/libsolv/libsolv.nm index f11aae8..22455af 100644 --- a/libsolv/libsolv.nm +++ b/libsolv/libsolv.nm @@ -6,7 +6,7 @@ name = libsolv version = 0.0.0 git_ver = 0db9d7f -release = 1 +release = 2.git%{git_ver}
maintainer = Michael Tremer michael.tremer@ipfire.org groups = System/Libraries diff --git a/ppl/ppl.nm b/ppl/ppl.nm index 60c5cf2..05a73e9 100644 --- a/ppl/ppl.nm +++ b/ppl/ppl.nm @@ -5,7 +5,7 @@
name = ppl version = 0.11.2 -release = 1 +release = 2
maintainer = Michael Tremer michael.tremer@ipfire.org groups = Development/Libraries @@ -56,4 +56,8 @@ end
packages package %{name} + + package %{name}-devel + template DEVEL + end end diff --git a/radvd/radvd.nm b/radvd/radvd.nm index 89d91a2..0835bd2 100644 --- a/radvd/radvd.nm +++ b/radvd/radvd.nm @@ -5,7 +5,7 @@
name = radvd version = 1.8.3 -release = 2 +release = 3
groups = System/Daemons url = http://www.litech.org/radvd/ diff --git a/radvd/systemd/radvd.service b/radvd/systemd/radvd.service index 25cff99..48a6cec 100644 --- a/radvd/systemd/radvd.service +++ b/radvd/systemd/radvd.service @@ -6,8 +6,8 @@ After=network.target [Service] ExecStartPre=/lib/network/network-radvd-config start ExecStart=/usr/sbin/radvd -C /etc/radvd.conf -u radvd -ExecStopPre=/lib/network/network-radvd-config stop ExecReload=/bin/kill -HUP $MAINPID +ExecStopPost=/lib/network/network-radvd-config stop Type=forking PIDFile=/run/radvd/radvd.pid Restart=on-failure diff --git a/usb-modeswitch-data/usb-modeswitch-data.nm b/usb-modeswitch-data/usb-modeswitch-data.nm new file mode 100644 index 0000000..af02b40 --- /dev/null +++ b/usb-modeswitch-data/usb-modeswitch-data.nm @@ -0,0 +1,45 @@ +############################################################################### +# IPFire.org - An Open Source Firewall Solution # +# Copyright (C) - IPFire Development Team info@ipfire.org # +############################################################################### + +name = usb-modeswitch-data +version = 20111023 +release = 1 +arch = noarch + +groups = Applications/System +url = http://www.draisberghof.de/usb_modeswitch +license = GPLv2 +summary = A USB mode switching tool. + +description + USB_ModeSwitch is (surprise!) a mode switching tool for controlling + "flip flop" (multiple device) USB gear. +end + +source_dl = http://www.draisberghof.de/usb_modeswitch/ +sources = %{thisapp}.tar.bz2 + +build + build + # Nothing to do here. + end + + install + mkdir -pv %{BUILDROOT}/etc/usb_modeswitch.d/ + mkdir -pv %{BUILDROOT}/lib/udev/rules.d/ + + install -p -m 644 usb_modeswitch.d/* %{BUILDROOT}/etc/usb_modeswitch.d/ + install -p -m 644 40-usb_modeswitch.rules %{BUILDROOT}/lib/udev/rules.d/ + end +end + +packages + package %{name} + requires + udev + usb-modeswitch + end + end +end diff --git a/usb-modeswitch/usb-modeswitch.nm b/usb-modeswitch/usb-modeswitch.nm index 7b50d3a..7aa7115 100644 --- a/usb-modeswitch/usb-modeswitch.nm +++ b/usb-modeswitch/usb-modeswitch.nm @@ -5,7 +5,7 @@
name = usb-modeswitch version = 1.1.9 -release = 1 +release = 2
groups = Applications/System url = http://www.draisberghof.de/usb_modeswitch @@ -28,4 +28,6 @@ end
packages package %{name} + requires += usb-modeswitch-data + end end
hooks/post-receive -- IPFire 3.x development tree