1 |
|
### RPM external python-ldap 2.3.5 |
2 |
+ |
## INITENV +PATH PYTHONPATH %i/lib/python`echo $PYTHON_VERSION | cut -f1,2 -d.`/site-packages |
3 |
+ |
|
4 |
|
Source: http://voxel.dl.sourceforge.net/sourceforge/python-ldap/python-ldap-%{realversion}.tar.gz |
5 |
< |
Requires: python |
6 |
< |
Requires: openssl |
5 |
< |
Requires: openldap |
5 |
> |
Patch0: python-ldap-2.3.5-gcc44 |
6 |
> |
Requires: python openssl openldap |
7 |
|
|
8 |
|
%prep |
9 |
|
%setup -q -n %n-%{realversion} |
10 |
< |
pwd |
10 |
< |
%build |
11 |
< |
pwd |
10 |
> |
%patch0 -p1 |
11 |
|
|
12 |
+ |
%build |
13 |
|
mkdir -p sasl2lib |
14 |
|
ln -s /usr/lib/libsasl2.so.2.0.19 sasl2lib/libsasl2.so |
15 |
|
|
18 |
|
%install |
19 |
|
python setup.py install --prefix=%i |
20 |
|
|
21 |
< |
# SCRAM ToolBox toolfile |
22 |
< |
mkdir -p %i/etc/scram.d |
23 |
< |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
24 |
< |
<doc type=BuildSystem::ToolDoc version=1.0> |
25 |
< |
<Tool name=%n version=%v> |
26 |
< |
<info url="http://python-ldap.sourceforge.net/"></info> |
27 |
< |
<Client> |
28 |
< |
<Environment name=PYTHON_LDAP_BASE default="%i"></Environment> |
29 |
< |
<Environment name=PYTHON_LDAP_PYPATH default="$PYTHON_LDAP_BASE/lib/python2.4/site-packages"></Environment> |
30 |
< |
</Client> |
31 |
< |
<use name=openssl> |
32 |
< |
<use name=openldap> |
33 |
< |
<use name=python> |
34 |
< |
<Runtime name=PYTHONPATH value="$PYTHON_LDAP_PYPATH" type=path> |
35 |
< |
</Tool> |
36 |
< |
EOF_TOOLFILE |
21 |
> |
# Dependencies environment |
22 |
> |
rm -rf %i/etc/profile.d |
23 |
> |
mkdir -p %i/etc/profile.d |
24 |
> |
for x in %pkgreqs; do |
25 |
> |
case $x in /* ) continue ;; esac |
26 |
> |
p=%{instroot}/%{cmsplatf}/$(echo $x | sed 's/\([^+]*\)+\(.*\)+\([A-Z0-9].*\)/\1 \2 \3/' | tr ' ' '/') |
27 |
> |
echo ". $p/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh |
28 |
> |
echo "source $p/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh |
29 |
> |
done |
30 |
> |
|
31 |
|
|
32 |
|
%post |
33 |
< |
%{relocateConfig}etc/scram.d/%n |
33 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.sh |
34 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.csh |
35 |
> |
|