rpms/pypoker-eval/devel pypoker-eval.spec,1.6,1.7

Christopher Stone (xulchris) fedora-extras-commits at redhat.com
Sun Sep 10 23:15:22 UTC 2006


Author: xulchris

Update of /cvs/extras/rpms/pypoker-eval/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26993/devel

Modified Files:
	pypoker-eval.spec 
Log Message:
Move .so file into main package


Index: pypoker-eval.spec
===================================================================
RCS file: /cvs/extras/rpms/pypoker-eval/devel/pypoker-eval.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pypoker-eval.spec	6 Sep 2006 19:03:43 -0000	1.6
+++ pypoker-eval.spec	10 Sep 2006 23:15:22 -0000	1.7
@@ -1,8 +1,8 @@
 %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 
 Name:           pypoker-eval
-Version:	132.0
-Release:        2%{?dist}
+Version:        132.0
+Release:        3%{?dist}
 Summary:        Python interface to poker-eval
 Group:          Development/Libraries
 License:        GPL
@@ -27,23 +27,23 @@
 
 %prep
 %setup -q
-
 # make examples directory for devel %doc
-%{__mkdir} -p tmp/examples && %{__cp} test.py tmp/examples
+mkdir -p tmp/examples
+cp test.py tmp/examples
 
 %build
 %configure --disable-static
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %install
-%{__rm} -rf %{buildroot}
-%{__make} install DESTDIR=%{buildroot}
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
 
 %check
 %{__python} test.py
- 
+
 %clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
 
 %post -p /sbin/ldconfig
 %postun -p /sbin/ldconfig
@@ -51,19 +51,20 @@
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS ChangeLog COPYING NEWS README
-%{python_sitearch}/*.so.*
-%{python_sitearch}/*.py
-%{python_sitearch}/*.pyc
-%{python_sitearch}/*.pyo
+%{python_sitearch}/*.so*
+%{python_sitearch}/*.py*
+%exclude %{python_sitearch}/*.la
 
 %files devel
 %defattr(-,root,root,-)
 %doc tmp/examples
-%{python_sitearch}/*.so
 %{_libdir}/pkgconfig/%{name}.pc
-%exclude %{python_sitearch}/*.la
 
 %changelog
+* Sun Sep 10 2006 Christopher Stone <chris.stone at gmail.com> 132.0-3
+- Move .so file into main package
+- Remove system call macros
+
 * Wed Sep 06 2006 Christopher Stone <chris.stone at gmail.com> 132.0-2
 - No longer %%ghost pyo files. Bug #205399
 




More information about the scm-commits mailing list