Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/tokyotyrant: tokyotyrant-1.1.41-r1.ebuild ChangeLog tokyotyrant-1.1.41.ebuild
Date: Thu, 28 Feb 2013 04:44:26
Message-Id: 20130228044422.C435C2171E@flycatcher.gentoo.org
1 patrick 13/02/28 04:44:22
2
3 Modified: ChangeLog
4 Added: tokyotyrant-1.1.41-r1.ebuild
5 Removed: tokyotyrant-1.1.41.ebuild
6 Log:
7 Bump to force update init script #459574
8
9 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.10 net-misc/tokyotyrant/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tokyotyrant/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tokyotyrant/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tokyotyrant/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/tokyotyrant/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 13 Aug 2010 10:49:15 -0000 1.9
25 +++ ChangeLog 28 Feb 2013 04:44:22 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/tokyotyrant
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tokyotyrant/ChangeLog,v 1.9 2010/08/13 10:49:15 patrick Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tokyotyrant/ChangeLog,v 1.10 2013/02/28 04:44:22 patrick Exp $
32 +
33 +*tokyotyrant-1.1.41-r1 (28 Feb 2013)
34 +
35 + 28 Feb 2013; Patrick Lauer <patrick@g.o> +tokyotyrant-1.1.41-r1.ebuild,
36 + -tokyotyrant-1.1.41.ebuild, files/tokyotyrant.initd:
37 + Bump to force update init script #459574
38
39 *tokyotyrant-1.1.41 (13 Aug 2010)
40
41 @@ -52,4 +58,3 @@
42 +files/tokyotyrant.initd, +metadata.xml:
43 Initial import of tokyotyrant. Thanks to Johan Bergstroem for the ebuild.
44 Closes #288265
45 -
46
47
48
49 1.1 net-misc/tokyotyrant/tokyotyrant-1.1.41-r1.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tokyotyrant/tokyotyrant-1.1.41-r1.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tokyotyrant/tokyotyrant-1.1.41-r1.ebuild?rev=1.1&content-type=text/plain
53
54 Index: tokyotyrant-1.1.41-r1.ebuild
55 ===================================================================
56 # Copyright 1999-2013 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/net-misc/tokyotyrant/tokyotyrant-1.1.41-r1.ebuild,v 1.1 2013/02/28 04:44:22 patrick Exp $
59
60 EAPI=2
61
62 inherit eutils
63
64 DESCRIPTION="A network interface to Tokyo Cabinet"
65 HOMEPAGE="http://fallabs.com/tokyotyrant/"
66 SRC_URI="${HOMEPAGE}${P}.tar.gz"
67
68 LICENSE="LGPL-2.1"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86 ~ppc-macos ~x86-macos"
71 IUSE="debug examples lua"
72
73 DEPEND="dev-db/tokyocabinet
74 sys-libs/zlib
75 app-arch/bzip2
76 lua? ( dev-lang/lua )"
77 RDEPEND="${DEPEND}"
78
79 pkg_setup() {
80 if use !prefix ; then
81 enewgroup tyrant
82 enewuser tyrant -1 -1 /var/lib/${PN} tyrant
83 fi
84 }
85
86 src_prepare() {
87 epatch "${FILESDIR}"/fix_makefiles-1.4.41.patch
88 epatch "${FILESDIR}"/fix_testsuite.patch
89 }
90
91 src_configure() {
92 econf \
93 $(use_enable debug) \
94 $(use_enable lua)
95 }
96
97 src_install() {
98 rm ttservctl || die "Install failed"
99 emake DESTDIR="${D}" install || die "Install failed"
100
101 for x in /var/{lib,run,log}/${PN}; do
102 dodir "${x}" || die "Install failed"
103 use prefix || fowners tyrant:tyrant "${x}"
104 done
105
106 if use examples; then
107 insinto /usr/share/${PF}/example
108 doins example/* || die "Install failed"
109 fi
110
111 dohtml doc/* || die
112
113 newinitd "${FILESDIR}/${PN}.initd" ${PN} || die "Install failed"
114 newconfd "${FILESDIR}/${PN}.confd" ${PN} || die "Install failed"
115
116 }
117
118 src_test() {
119 emake -j1 check || die "Tests failed"
120 }