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: beanstalkd-1.7.ebuild ChangeLog beanstalkd-1.3.ebuild beanstalkd-1.4.6.ebuild
Date: Mon, 01 Oct 2012 03:07:32
Message-Id: 20121001030718.6B35621601@flycatcher.gentoo.org
1 patrick 12/10/01 03:07:18
2
3 Modified: ChangeLog
4 Added: beanstalkd-1.7.ebuild
5 Removed: beanstalkd-1.3.ebuild beanstalkd-1.4.6.ebuild
6 Log:
7 Bump for #436250
8
9 (Portage version: 2.2.0_alpha128/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.29 app-misc/beanstalkd/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?rev=1.29&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?rev=1.29&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?r1=1.28&r2=1.29
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v
21 retrieving revision 1.28
22 retrieving revision 1.29
23 diff -u -r1.28 -r1.29
24 --- ChangeLog 1 Jun 2012 00:26:21 -0000 1.28
25 +++ ChangeLog 1 Oct 2012 03:07:18 -0000 1.29
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-misc/beanstalkd
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.28 2012/06/01 00:26:21 zmedico Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.29 2012/10/01 03:07:18 patrick Exp $
31 +
32 +*beanstalkd-1.7 (01 Oct 2012)
33 +
34 + 01 Oct 2012; Patrick Lauer <patrick@g.o> +beanstalkd-1.7.ebuild,
35 + +files/init-1.7, -beanstalkd-1.3.ebuild, -beanstalkd-1.4.6.ebuild:
36 + Bump for #436250
37
38 01 Jun 2012; Zac Medico <zmedico@g.o> beanstalkd-1.3.ebuild,
39 beanstalkd-1.4.6-r1.ebuild, beanstalkd-1.4.6.ebuild, beanstalkd-1.5.ebuild,
40 @@ -120,4 +126,3 @@
41 +files/Makefile.install.patch, +files/conf, +files/init, +metadata.xml,
42 +beanstalkd-1.0.ebuild:
43 Initial import, based on bug #208963
44 -
45
46
47
48 1.1 app-misc/beanstalkd/beanstalkd-1.7.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.7.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.7.ebuild?rev=1.1&content-type=text/plain
52
53 Index: beanstalkd-1.7.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.7.ebuild,v 1.1 2012/10/01 03:07:18 patrick Exp $
58
59 EAPI="4"
60
61 PYTHON_DEPEND="test? 2"
62
63 inherit eutils python user
64
65 DESCRIPTION="A fast, distributed, in-memory workqueue service"
66 HOMEPAGE="http://xph.us/software/beanstalkd/"
67 SRC_URI="mirror://github/kr/${PN}/${P}.tar.gz"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64 ~mips ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos"
72
73 RDEPEND=""
74 DEPEND=""
75
76 IUSE="test"
77
78 pkg_setup() {
79 enewuser beanstalk -1 -1 /var/lib/beanstalkd daemon
80 python_set_active_version 2
81 }
82
83 src_compile() {
84 emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "compile failed"
85 }
86
87 src_install() {
88 dobin beanstalkd
89
90 DATADIR=/var/lib/${PN}
91 dodir ${DATADIR}
92 fowners beanstalk:daemon ${DATADIR}
93
94 doman doc/"${PN}".1
95
96 dodoc README NEWS.md doc/*.txt
97
98 newconfd "${FILESDIR}/conf-1.4.2" beanstalkd
99 newinitd "${FILESDIR}/init-${PV}" beanstalkd
100 }