rpms/pyke/devel RELEASE_NOTES-1.0.3, NONE, 1.1 copyright_license, NONE, 1.1 pyke-1.0.3-no-ez_setup.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 pyke.spec, 1.11, 1.12 sources, 1.9, 1.10

Tom Callaway spot at fedoraproject.org
Mon Oct 19 21:00:41 UTC 2009


Author: spot

Update of /cvs/pkgs/rpms/pyke/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14650

Modified Files:
	.cvsignore pyke.spec sources 
Added Files:
	RELEASE_NOTES-1.0.3 copyright_license 
	pyke-1.0.3-no-ez_setup.patch 
Log Message:
1.0.3


--- NEW FILE RELEASE_NOTES-1.0.3 ---
1.0.3 RELEASE NOTES Oct 19, 2009

This release has two bug fixes in it.  The big thing is that the source code
repository has been moved from Subversion to Mercurial.  This is the first
release under Mercurial.

Please report bugs to http://sourceforge.net/projects/pyke at either:

    forum => help
 or tracker => bugs


INCOMPATIBILITIES WITH 1.0.2 RELEASE:

    - The source code repository has been moved from subversion to mercurial
      to make it easier for people to contribute to the project.  If you have
      the source code checked out under subversion, and want to stay abreast
      of developments or contribute your changes back to the project, you will
      need to switch to Mercurial.


FEATURE ENHANCEMENTS:

    - Moved the source code repository from Subversion to Mercurial!
    - Did some enhancements to examples/web_framework/web_framework.tst to
      better report server errors.
    - Added examples/web_framework/director.html as another example html
      template.
    - Upgraded to 3.3 version of PLY.


BUGS FIXED:

The following bugs have been fixed:

    - Fixed bug #2881934: py2exe doesn't work with Pyke
    - Applied patch #2787699: hash function returns void



--- NEW FILE copyright_license ---
Copyright © 2007 Bruce Frederiksen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

pyke-1.0.3-no-ez_setup.patch:
 setup.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- NEW FILE pyke-1.0.3-no-ez_setup.patch ---
diff -up pyke-1.0.3/setup.py.BAD pyke-1.0.3/setup.py
--- pyke-1.0.3/setup.py.BAD	2009-10-19 16:48:24.663368264 -0400
+++ pyke-1.0.3/setup.py	2009-10-19 16:48:29.407272571 -0400
@@ -1,8 +1,8 @@
 #!/usr/bin/env python
 
 # Make sure the user has setuptools installed!
-import ez_setup
-ez_setup.use_setuptools()
+# import ez_setup
+# ez_setup.use_setuptools()
 
 from setuptools import setup
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/pyke/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- .cvsignore	22 Apr 2009 19:39:03 -0000	1.8
+++ .cvsignore	19 Oct 2009 21:00:41 -0000	1.9
@@ -1 +1,2 @@
-pyke-1.0.2.tar.gz
+pyke-1.0.3.tar.gz
+pyke_doc_html-1.0.3.tar.gz


Index: pyke.spec
===================================================================
RCS file: /cvs/pkgs/rpms/pyke/devel/pyke.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- pyke.spec	26 Jul 2009 19:53:01 -0000	1.11
+++ pyke.spec	19 Oct 2009 21:00:41 -0000	1.12
@@ -2,16 +2,22 @@
 
 Name:			pyke
 Summary:		Knowledge-based inference engine
-Version:		1.0.2
-Release:		2%{?dist}
+Version:		1.0.3
+Release:		1%{?dist}
 License:		MIT
 Group:			System Environment/Libraries
 URL:			http://pyke.sourceforge.net/
 Source0:		http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
+# Taken from pyke-1.0.2
+# https://sourceforge.net/tracker/?func=detail&aid=2881969&group_id=207724&atid=1002827
+Source1:		copyright_license
+Source2:		http://download.sourceforge.net/%{name}/RELEASE_NOTES-1.0.3
+Source3:		http://download.sourceforge.net/%{name}/pyke_doc_html-%{version}.tar.gz
 BuildRoot:		%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:		noarch
 BuildRequires:		python-devel, python-setuptools
 Requires:		python-ply
+Patch0:			pyke-1.0.3-no-ez_setup.patch
 
 %description
 Pyke is a knowledge-based inference engine (expert system) written in 100% 
@@ -22,7 +28,9 @@ python that can:
   functions into complete call graphs.
 
 %prep
-%setup -q 
+%setup -q -a3
+%patch0 -p1 -b .no-ez_setup
+cp %{SOURCE1} %{SOURCE2} .
 
 %build
 %{__python} setup.py build
@@ -40,11 +48,14 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc README copyright_license RELEASE_NOTES-* doc/
+%doc README copyright_license RELEASE_NOTES-* html/
 %{python_sitelib}/%{name}/
 %{python_sitelib}/%{name}-%{version}*.egg-info/
 
 %changelog
+* Mon Oct 19 2009 Tom "spot" Callaway <tcallawa at redhat.com> - 1.0.3-1
+- update to 1.0.3
+
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0.2-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/pyke/devel/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- sources	22 Apr 2009 19:39:04 -0000	1.9
+++ sources	19 Oct 2009 21:00:41 -0000	1.10
@@ -1 +1,2 @@
-e812d22af70e30d47926ff42fe807d3e  pyke-1.0.2.tar.gz
+2c6d038e845886bd16d3eee1d8c3ef81  pyke-1.0.3.tar.gz
+9b3a1e5f657d8fd6929675125e049402  pyke_doc_html-1.0.3.tar.gz




More information about the fedora-extras-commits mailing list