* [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
@ 2010-07-25 14:18 Alexey Shvetsov (alexxy)
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2010-07-25 14:18 UTC (permalink / raw
To: gentoo-commits
alexxy 10/07/25 14:18:17
Added: wimax
Log:
[net-wireless/wimax] Initial import of wimax network service. Currently it isnt working on 64bit systems.
(Portage version: 2.2_rc67_p258/cvs/Linux x86_64)
Revision Changes Path
1.1 net-wireless/wimax/files/wimax
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.1&content-type=text/plain
Index: wimax
===================================================================
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.1 2010/07/25 14:18:17 alexxy Exp $
description="WiMAX Network Service"
depend() {
need localmount
after bootmisc
}
start() {
ebegin "Starting WiMAX Network Service"
[ -e /var/run/wimaxd.pid ] && rm -f /var/run/wimaxd.pid
start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd
eend $?
}
stop() {
ebegin "Stoping WiMAX Network Service"
start-stop-daemon --stop --quiet --pidfile /var/run/wimax.pid
eend $?
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
@ 2010-07-26 22:13 Alexey Shvetsov (alexxy)
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2010-07-26 22:13 UTC (permalink / raw
To: gentoo-commits
alexxy 10/07/26 22:13:27
Modified: wimax
Log:
[net-wireless/wimax] Make wimax always builds as 32bit app since it doesnt suport 64bit mode. Also it fixes bug #329935
(Portage version: 2.2_rc67_p258/cvs/Linux x86_64)
Revision Changes Path
1.2 net-wireless/wimax/files/wimax
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?r1=1.1&r2=1.2
Index: wimax
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wimax 25 Jul 2010 14:18:17 -0000 1.1
+++ wimax 26 Jul 2010 22:13:27 -0000 1.2
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.1 2010/07/25 14:18:17 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.2 2010/07/26 22:13:27 alexxy Exp $
description="WiMAX Network Service"
@@ -13,7 +13,7 @@
start() {
ebegin "Starting WiMAX Network Service"
[ -e /var/run/wimaxd.pid ] && rm -f /var/run/wimaxd.pid
- start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd
+ start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd -b
eend $?
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
@ 2010-11-08 18:04 Alexey Shvetsov (alexxy)
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2010-11-08 18:04 UTC (permalink / raw
To: gentoo-commits
alexxy 10/11/08 18:04:00
Modified: wimax
Log:
[net-wireless/wimax] fix init.d per bug #338922
(Portage version: 2.2.0_alpha4_p14/cvs/Linux x86_64)
Revision Changes Path
1.3 net-wireless/wimax/files/wimax
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?r1=1.2&r2=1.3
Index: wimax
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wimax 26 Jul 2010 22:13:27 -0000 1.2
+++ wimax 8 Nov 2010 18:04:00 -0000 1.3
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.2 2010/07/26 22:13:27 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.3 2010/11/08 18:04:00 alexxy Exp $
description="WiMAX Network Service"
@@ -12,13 +12,13 @@
start() {
ebegin "Starting WiMAX Network Service"
- [ -e /var/run/wimaxd.pid ] && rm -f /var/run/wimaxd.pid
- start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd -b
+ [ -e /var/run/wimaxd.wmx0.pid ] && rm -f /var/run/wimaxd.wmx0.pid
+ start-stop-daemon --start --quiet --pidfile /var/run/wimaxd.wmx0.pid --exec /usr/bin/wimaxd -b
eend $?
}
stop() {
ebegin "Stoping WiMAX Network Service"
- start-stop-daemon --stop --quiet --pidfile /var/run/wimax.pid
+ start-stop-daemon --stop --quiet --pidfile /var/run/wimaxd.wmx0.pid
eend $?
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
@ 2011-02-23 11:12 Alexey Shvetsov (alexxy)
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Shvetsov (alexxy) @ 2011-02-23 11:12 UTC (permalink / raw
To: gentoo-commits
alexxy 11/02/23 11:12:08
Modified: wimax
Log:
[net-wireless/wimax] Add updates from git. Also fix bug #356121
(Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
Revision Changes Path
1.4 net-wireless/wimax/files/wimax
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?r1=1.3&r2=1.4
Index: wimax
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wimax 8 Nov 2010 18:04:00 -0000 1.3
+++ wimax 23 Feb 2011 11:12:08 -0000 1.4
@@ -1,7 +1,7 @@
#!/sbin/runscript
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.3 2010/11/08 18:04:00 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.4 2011/02/23 11:12:08 alexxy Exp $
description="WiMAX Network Service"
@@ -13,7 +13,7 @@
start() {
ebegin "Starting WiMAX Network Service"
[ -e /var/run/wimaxd.wmx0.pid ] && rm -f /var/run/wimaxd.wmx0.pid
- start-stop-daemon --start --quiet --pidfile /var/run/wimaxd.wmx0.pid --exec /usr/bin/wimaxd -b
+ start-stop-daemon --start --quiet --pidfile /var/run/wimaxd.wmx0.pid --exec /usr/bin/wimaxd -- -b
eend $?
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
@ 2015-02-03 14:54 Pacho Ramos (pacho)
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2015-02-03 14:54 UTC (permalink / raw
To: gentoo-commits
pacho 15/02/03 14:54:37
Removed: wimax
Log:
Remove masked for removal package
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-02-03 14:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-23 11:12 [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax Alexey Shvetsov (alexxy)
-- strict thread matches above, loose matches on Subject: below --
2015-02-03 14:54 Pacho Ramos (pacho)
2010-11-08 18:04 Alexey Shvetsov (alexxy)
2010-07-26 22:13 Alexey Shvetsov (alexxy)
2010-07-25 14:18 Alexey Shvetsov (alexxy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox