Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/beanstalkd/files: beanstalkd-werror-v2.patch init-1.4.6
Date: Wed, 02 Jun 2010 09:23:39
Message-Id: 20100602092332.39F6D2C3ED@corvid.gentoo.org
1 patrick 10/06/02 09:23:32
2
3 Added: beanstalkd-werror-v2.patch init-1.4.6
4 Log:
5 Bump to 1.4.6, thanks to Johan Bergstroem. Fixes #310033 #307623 #300508 #297184. Taking over maintenance and adding Johan as proxy-maintainer
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-misc/beanstalkd/files/beanstalkd-werror-v2.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/files/beanstalkd-werror-v2.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/files/beanstalkd-werror-v2.patch?rev=1.1&content-type=text/plain
13
14 Index: beanstalkd-werror-v2.patch
15 ===================================================================
16 diff --git a/configure b/configure
17 index 2f29879..50136fb 100755
18 --- a/configure
19 +++ b/configure
20 @@ -3569,7 +3569,7 @@ fi
21
22
23
24 - list="-Wall -Werror"
25 + list="-Wall"
26 flags_supported=""
27 flags_unsupported=""
28 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for supported compiler flags" >&5
29
30
31
32
33 1.1 app-misc/beanstalkd/files/init-1.4.6
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/files/init-1.4.6?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/files/init-1.4.6?rev=1.1&content-type=text/plain
37
38 Index: init-1.4.6
39 ===================================================================
40 #!/sbin/runscript
41 # Copyright 1999-2008 Gentoo Foundation
42 # Distributed under the terms of the GNU General Public License v2
43 # $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/files/init-1.4.6,v 1.1 2010/06/02 09:23:32 patrick Exp $
44
45 depend() {
46 need net
47 }
48
49 start() {
50 ebegin "Starting beanstalkd"
51 /sbin/start-stop-daemon --start \
52 --background \
53 --pidfile ${PIDFILE} --make-pidfile \
54 --exec ${BEANSTALKD_BINARY} \
55 -- -b ${DATADIR} -p ${PORT} -l ${ADDR} -u ${USER}
56 eend $?
57 }
58
59 stop() {
60 ebegin "Stopping beanstalkd"
61 start-stop-daemon --stop --quiet \
62 --pidfile ${PIDFILE} \
63 --exec ${BEANSTALKD_BINARY}
64 eend $?
65 }