Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/sphinx: metadata.xml sphinx-0.9.7.ebuild sphinx-0.9.8_pre1065.ebuild ChangeLog Manifest
Date: Thu, 24 Jan 2008 00:05:53
Message-Id: E1JHpbI-00079u-1w@stork.gentoo.org
1 caleb 08/01/24 00:05:48
2
3 Added: metadata.xml sphinx-0.9.7.ebuild
4 sphinx-0.9.8_pre1065.ebuild ChangeLog Manifest
5 Log:
6 Initial import, from bug #144413
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.1 app-misc/sphinx/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>caleb@g.o</email>
23 <name>Caleb Tennis</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 app-misc/sphinx/sphinx-0.9.7.ebuild
30
31 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/sphinx-0.9.7.ebuild?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/sphinx-0.9.7.ebuild?rev=1.1&content-type=text/plain
33
34 Index: sphinx-0.9.7.ebuild
35 ===================================================================
36 # Copyright 1999-2008 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38 # $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.7.ebuild,v 1.1 2008/01/24 00:05:47 caleb Exp $
39
40 inherit eutils autotools
41
42 DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
43 HOMEPAGE="http://www.sphinxsearch.com/"
44 SRC_URI="http://sphinxsearch.com/downloads/${P}.tar.gz"
45 RESTRICT="mirror"
46
47 LICENSE="GPL-2"
48 SLOT="0"
49 KEYWORDS="~x86 ~amd64"
50 IUSE="mysql postgres debug"
51
52 DEPEND="mysql? ( virtual/mysql )
53 postgres? ( dev-db/postgresql )"
54 RDEPEND="${DEPEND}"
55
56 src_unpack() {
57 unpack ${A}
58 cd "${S}"
59 epatch "${FILESDIR}"/${P}-fix-sandbox.patch
60 eautoreconf
61 }
62
63 src_compile() {
64 econf \
65 $(use_with mysql) \
66 $(use_with postgres) \
67 $(use_with debug) || die "econf failed"
68
69 emake || die "emake failed"
70 }
71
72 src_install() {
73 emake DESTDIR="${D}" install || die "install failed"
74 dodoc doc/* example.sql
75 dodir /etc/sphinx
76 insinto /etc/sphinx
77 doins sphinx.conf.dist
78
79 dodir /var/lib/sphinx
80 dodir /var/log/sphinx
81 dodir /var/run/sphinx
82 }
83
84
85
86
87 1.1 app-misc/sphinx/sphinx-0.9.8_pre1065.ebuild
88
89 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/sphinx-0.9.8_pre1065.ebuild?rev=1.1&view=markup
90 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/sphinx-0.9.8_pre1065.ebuild?rev=1.1&content-type=text/plain
91
92 Index: sphinx-0.9.8_pre1065.ebuild
93 ===================================================================
94 # Copyright 1999-2008 Gentoo Foundation
95 # Distributed under the terms of the GNU General Public License v2
96 # $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.8_pre1065.ebuild,v 1.1 2008/01/24 00:05:47 caleb Exp $
97
98 inherit eutils autotools
99
100 MY_P=${P/_pre/-svn-r}
101
102 DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
103 HOMEPAGE="http://www.sphinxsearch.com/"
104 SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz"
105 RESTRICT="mirror"
106
107 LICENSE="GPL-2"
108 SLOT="0"
109 KEYWORDS="~x86 ~amd64"
110 IUSE="mysql postgres debug"
111
112 DEPEND="mysql? ( virtual/mysql )
113 postgres? ( dev-db/postgresql )"
114 RDEPEND="${DEPEND}"
115
116 S=${WORKDIR}/${MY_P}
117
118 src_unpack() {
119 unpack ${A}
120 cd "${S}"
121 # epatch "${FILESDIR}"/${P}-fix-sandbox.patch
122 eautoreconf
123 }
124
125 src_compile() {
126 econf \
127 $(use_with mysql) \
128 $(use_with postgres) \
129 $(use_with debug) || die "econf failed"
130
131 emake || die "emake failed"
132 }
133
134 src_install() {
135 emake DESTDIR="${D}" install || die "install failed"
136 dodoc doc/* example.sql
137 dodir /etc/sphinx
138 insinto /etc/sphinx
139 doins sphinx.conf.dist
140
141 dodir /var/lib/sphinx
142 dodir /var/log/sphinx
143 dodir /var/run/sphinx
144 }
145
146
147
148
149 1.1 app-misc/sphinx/ChangeLog
150
151 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/ChangeLog?rev=1.1&view=markup
152 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/ChangeLog?rev=1.1&content-type=text/plain
153
154 Index: ChangeLog
155 ===================================================================
156 # ChangeLog for app-misc/sphinx
157 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
158 # $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/ChangeLog,v 1.1 2008/01/24 00:05:47 caleb Exp $
159
160 *sphinx-0.9.8_pre1065 (23 Jan 2008)
161 *sphinx-0.9.7 (23 Jan 2008)
162
163 23 Jan 2008; Caleb Tennis <caleb@g.o>
164 +files/sphinx-0.9.7-fix-sandbox.patch, +metadata.xml,
165 +sphinx-0.9.7.ebuild, +sphinx-0.9.8_pre1065.ebuild:
166 Initial import, from bug #144413
167
168
169
170
171 1.1 app-misc/sphinx/Manifest
172
173 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/Manifest?rev=1.1&view=markup
174 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/sphinx/Manifest?rev=1.1&content-type=text/plain
175
176 Index: Manifest
177 ===================================================================
178 AUX sphinx-0.9.7-fix-sandbox.patch 568 RMD160 953814b1ec204984b3e43f3352fa67a25deef6d9 SHA1 a1bb1fd97d42ec15e1821b453a486118e3052a0b SHA256 8e2e04d6e2021ffe33afe784a05aebebe46048750da12a93adec0396df75be02
179 MD5 6cbad62dd5ac49b679fcbba7219f381b files/sphinx-0.9.7-fix-sandbox.patch 568
180 RMD160 953814b1ec204984b3e43f3352fa67a25deef6d9 files/sphinx-0.9.7-fix-sandbox.patch 568
181 SHA256 8e2e04d6e2021ffe33afe784a05aebebe46048750da12a93adec0396df75be02 files/sphinx-0.9.7-fix-sandbox.patch 568
182 DIST sphinx-0.9.7.tar.gz 344500 RMD160 b2f679855cf725a154478e59d980c60124165915 SHA1 30d13e7a63ed28282b49b5db364c48811d9c4b47 SHA256 6c841b9042f880394858dd0373a1e3343c30e815422671ba3872691326c1c0a4
183 DIST sphinx-0.9.8-svn-r1065.tar.gz 491770 RMD160 8c1b52f76ee635b4a4dbe7dce96fd5b1a3e8ea89 SHA1 f30e2bbde8c34894339a3159ac3075499558a261 SHA256 f8d4e9084570400be377c276c0987609d9e329ffc046806f8c99ec9adfc3fd59
184 EBUILD sphinx-0.9.7.ebuild 982 RMD160 c208e26ff00c3cc8499069388184f6792ecacc99 SHA1 d3c2d2c1d7f55b8a09fc9a89c25c902a1d7a28b3 SHA256 d7006e6610174e3547bcfb20e07f71d64a0bd4cc99434dc11ac8600b29ef2025
185 MD5 4fbafd3269eea5853a7425f340d24340 sphinx-0.9.7.ebuild 982
186 RMD160 c208e26ff00c3cc8499069388184f6792ecacc99 sphinx-0.9.7.ebuild 982
187 SHA256 d7006e6610174e3547bcfb20e07f71d64a0bd4cc99434dc11ac8600b29ef2025 sphinx-0.9.7.ebuild 982
188 EBUILD sphinx-0.9.8_pre1065.ebuild 1031 RMD160 ca4fa62319844b39a9d9de373c7198483689ae27 SHA1 ee2140b98335316f48b5af56900d04ab27266b7c SHA256 3dd70c014dabedfc9bd34da56862a6460e2663b1387983edca21d8e4a6eca96a
189 MD5 b586682d744508a9459e453be88c92f4 sphinx-0.9.8_pre1065.ebuild 1031
190 RMD160 ca4fa62319844b39a9d9de373c7198483689ae27 sphinx-0.9.8_pre1065.ebuild 1031
191 SHA256 3dd70c014dabedfc9bd34da56862a6460e2663b1387983edca21d8e4a6eca96a sphinx-0.9.8_pre1065.ebuild 1031
192 MISC ChangeLog 374 RMD160 9649827f5969aad7736066e9f495c08ec5e43e41 SHA1 c9403e63758df8c126e5be11d4f9fad91875f101 SHA256 f03e6874f4a8ee3a995c78bad9f35011951717611e090a77fdf38689a3862b5d
193 MD5 60c340e964cf9a950b71b04cfd5a1bee ChangeLog 374
194 RMD160 9649827f5969aad7736066e9f495c08ec5e43e41 ChangeLog 374
195 SHA256 f03e6874f4a8ee3a995c78bad9f35011951717611e090a77fdf38689a3862b5d ChangeLog 374
196 MISC metadata.xml 252 RMD160 4975ee0177b93542969b3ed3d9a29d7533745e3b SHA1 2eec8a59c9e6c7d702ff8e8ca85c206c17f3cf21 SHA256 8896dbe5acd055978bc9088a6e8c3a1d2eaecc12bd22ce864dd53fb0130fca81
197 MD5 a66d3f29a0078c35970fd164c351fea7 metadata.xml 252
198 RMD160 4975ee0177b93542969b3ed3d9a29d7533745e3b metadata.xml 252
199 SHA256 8896dbe5acd055978bc9088a6e8c3a1d2eaecc12bd22ce864dd53fb0130fca81 metadata.xml 252
200 MD5 365acffbf46630970b713e80bb70b9d5 files/digest-sphinx-0.9.7 238
201 RMD160 6be20e612612fda2e2ab2534adef0136770cccd7 files/digest-sphinx-0.9.7 238
202 SHA256 c309ccf5926fe4a6d6ab6773d8acc5b9ce318dc82ec449516f1462b8156e0d81 files/digest-sphinx-0.9.7 238
203 MD5 f38361f079f820dbf0e668374aa08398 files/digest-sphinx-0.9.8_pre1065 268
204 RMD160 1f3dc678f7d3739a3bdca554f52b661be200f5a6 files/digest-sphinx-0.9.8_pre1065 268
205 SHA256 744fa5e78559586854340af26f5b6cfbd1f83eeecd5ff508ba9384cc8c3b538a files/digest-sphinx-0.9.8_pre1065 268
206
207
208
209 --
210 gentoo-commits@l.g.o mailing list