Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/postgresql-base: ChangeLog postgresql-base-8.3.1.ebuild postgresql-base-8.2.7.ebuild
Date: Sat, 19 Apr 2008 20:40:47
Message-Id: E1JnJrX-00050X-E5@stork.gentoo.org
1 dev-zero 08/04/19 20:40:43
2
3 Modified: ChangeLog postgresql-base-8.3.1.ebuild
4 postgresql-base-8.2.7.ebuild
5 Log:
6 Removed libedit USE-flag since I experienced memory leaks when having psql linked against libedit.
7 (Portage version: 2.1.5_rc4)
8
9 Revision Changes Path
10 1.2 dev-db/postgresql-base/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 15 Apr 2008 09:23:34 -0000 1.1
23 +++ ChangeLog 19 Apr 2008 20:40:42 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-db/postgresql-base
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/ChangeLog,v 1.1 2008/04/15 09:23:34 dev-zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/ChangeLog,v 1.2 2008/04/19 20:40:42 dev-zero Exp $
29 +
30 + 19 Apr 2008; Tiziano Müller <dev-zero@g.o>
31 + postgresql-base-8.2.7.ebuild, postgresql-base-8.3.1.ebuild:
32 + Removed libedit USE-flag since I experienced memory leaks when having psql
33 + linked against libedit.
34
35 *postgresql-base-8.3.1 (15 Apr 2008)
36 *postgresql-base-8.2.7 (15 Apr 2008)
37
38
39
40 1.2 dev-db/postgresql-base/postgresql-base-8.3.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild?r1=1.1&r2=1.2
45
46 Index: postgresql-base-8.3.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- postgresql-base-8.3.1.ebuild 15 Apr 2008 09:23:34 -0000 1.1
53 +++ postgresql-base-8.3.1.ebuild 19 Apr 2008 20:40:42 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild,v 1.1 2008/04/15 09:23:34 dev-zero Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.3.1.ebuild,v 1.2 2008/04/19 20:40:42 dev-zero Exp $
59
60 EAPI="1"
61
62 @@ -21,7 +21,7 @@
63 linguas_hr linguas_hu linguas_it linguas_ko linguas_nb linguas_pl
64 linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sl linguas_sv
65 linguas_tr linguas_zh_CN linguas_zh_TW"
66 -IUSE="doc kerberos libedit nls pam pg-intdatetime readline ssl threads zlib ldap ${IUSE_LINGUAS}"
67 +IUSE="doc kerberos nls pam pg-intdatetime readline ssl threads zlib ldap ${IUSE_LINGUAS}"
68 RESTRICT="test"
69
70 wanted_languages() {
71 @@ -32,8 +32,7 @@
72
73 RDEPEND="kerberos? ( virtual/krb5 )
74 pam? ( virtual/pam )
75 - readline? ( !libedit? ( >=sys-libs/readline-4.1 ) )
76 - libedit? ( dev-libs/libedit )
77 + readline? ( >=sys-libs/readline-4.1 )
78 ssl? ( >=dev-libs/openssl-0.9.6-r1 )
79 zlib? ( >=sys-libs/zlib-1.1.3 )
80 >=app-admin/eselect-postgresql-0.3
81 @@ -49,14 +48,6 @@
82
83 S="${WORKDIR}/postgresql-${PV}"
84
85 -pkg_setup() {
86 - if use readline && use libedit ; then
87 - ewarn "PostgreSQL can use libedit OR readline but not both, libedit"
88 - ewarn "will be used. If that is not what you want, please stop the"
89 - ewarn "merge and unset the 'libedit' USE-flag for ${PN}."
90 - fi
91 -}
92 -
93 src_unpack() {
94 unpack ${A}
95 cd "${S}"
96 @@ -75,13 +66,6 @@
97 }
98
99 src_compile() {
100 - local myconf
101 - if use readline || use libedit ; then
102 - myconf="${myconf} --with-readline $(use_with libedit libedit-preferred)"
103 - else
104 - myconf="${myconf} --without-readline"
105 - fi
106 -
107 econf --prefix=/usr/$(get_libdir)/postgresql-${SLOT} \
108 --datadir=/usr/share/postgresql-${SLOT} \
109 --sysconfdir=/etc/postgresql-${SLOT} \
110 @@ -93,6 +77,8 @@
111 --without-tcl \
112 --without-perl \
113 --without-python \
114 + --without-libedit \
115 + $(use_with readline) \
116 $(use_with kerberos krb5) \
117 $(use_with kerberos gssapi) \
118 "$(use_enable nls nls "$(wanted_languages)")" \
119
120
121
122 1.2 dev-db/postgresql-base/postgresql-base-8.2.7.ebuild
123
124 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild?rev=1.2&view=markup
125 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild?rev=1.2&content-type=text/plain
126 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild?r1=1.1&r2=1.2
127
128 Index: postgresql-base-8.2.7.ebuild
129 ===================================================================
130 RCS file: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild,v
131 retrieving revision 1.1
132 retrieving revision 1.2
133 diff -u -r1.1 -r1.2
134 --- postgresql-base-8.2.7.ebuild 15 Apr 2008 09:23:34 -0000 1.1
135 +++ postgresql-base-8.2.7.ebuild 19 Apr 2008 20:40:42 -0000 1.2
136 @@ -1,6 +1,6 @@
137 # Copyright 1999-2008 Gentoo Foundation
138 # Distributed under the terms of the GNU General Public License v2
139 -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild,v 1.1 2008/04/15 09:23:34 dev-zero Exp $
140 +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql-base/postgresql-base-8.2.7.ebuild,v 1.2 2008/04/19 20:40:42 dev-zero Exp $
141
142 EAPI="1"
143
144 @@ -21,7 +21,7 @@
145 linguas_hr linguas_hu linguas_it linguas_ko linguas_nb linguas_pl
146 linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sl linguas_sv
147 linguas_tr linguas_zh_CN linguas_zh_TW"
148 -IUSE="doc kerberos libedit nls pam pg-intdatetime readline ssl threads zlib ldap ${IUSE_LINGUAS}"
149 +IUSE="doc kerberos nls pam pg-intdatetime readline ssl threads zlib ldap ${IUSE_LINGUAS}"
150 RESTRICT="test"
151
152 wanted_languages() {
153 @@ -32,8 +32,7 @@
154
155 RDEPEND="kerberos? ( virtual/krb5 )
156 pam? ( virtual/pam )
157 - readline? ( !libedit? ( >=sys-libs/readline-4.1 ) )
158 - libedit? ( dev-libs/libedit )
159 + readline? ( >=sys-libs/readline-4.1 )
160 ssl? ( >=dev-libs/openssl-0.9.6-r1 )
161 zlib? ( >=sys-libs/zlib-1.1.3 )
162 >=app-admin/eselect-postgresql-0.3
163 @@ -49,14 +48,6 @@
164
165 S="${WORKDIR}/postgresql-${PV}"
166
167 -pkg_setup() {
168 - if use readline && use libedit ; then
169 - ewarn "PostgreSQL can use libedit OR readline but not both, libedit"
170 - ewarn "will be used. If that is not what you want, please stop the"
171 - ewarn "merge and unset the 'libedit' USE-flag for ${PN}."
172 - fi
173 -}
174 -
175 src_unpack() {
176 unpack ${A}
177 cd "${S}"
178 @@ -75,13 +66,6 @@
179 }
180
181 src_compile() {
182 - local myconf
183 - if use readline || use libedit ; then
184 - myconf="${myconf} --with-readline $(use_with libedit libedit-preferred)"
185 - else
186 - myconf="${myconf} --without-readline"
187 - fi
188 -
189 econf --prefix=/usr/$(get_libdir)/postgresql-${SLOT} \
190 --datadir=/usr/share/postgresql-${SLOT} \
191 --sysconfdir=/etc/postgresql-${SLOT} \
192 @@ -93,6 +77,8 @@
193 --without-tcl \
194 --without-perl \
195 --without-python \
196 + --without-libedit \
197 + $(use_with readline) \
198 $(use_with kerberos krb5) \
199 "$(use_enable nls nls "$(wanted_languages)")" \
200 $(use_with pam) \
201
202
203
204 --
205 gentoo-commits@l.g.o mailing list