rpms/ReviewBoard/devel FED01-Disable-ez_setup-when-installing-by-RPM.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 ReviewBoard.spec, 1.10, 1.11 sources, 1.4, 1.5

Stephen Gallagher sgallagh at fedoraproject.org
Tue Jul 6 11:20:36 UTC 2010


Author: sgallagh

Update of /cvs/pkgs/rpms/ReviewBoard/devel
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv15384

Modified Files:
	.cvsignore ReviewBoard.spec sources 
Added Files:
	FED01-Disable-ez_setup-when-installing-by-RPM.patch 
Log Message:
* Mon Jul 06 2010 Stephen Gallagher <sgallagh at redhat.com> - 1.5-12.rc1
- Added support for the iPhone and iPad
- Improved move detection in diff viewer
- Support for WSGI installations
- Improvements to the JSON API
- Assorted bugfixes
- http://www.reviewboard.org/docs/releasenotes/dev/reviewboard/1.5-rc-1/


FED01-Disable-ez_setup-when-installing-by-RPM.patch:
 setup.py |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

--- NEW FILE FED01-Disable-ez_setup-when-installing-by-RPM.patch ---
>From 86d1b40676ee90f00aa6d494107161e9edff4e3a Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <sgallagh at redhat.com>
Date: Tue, 22 Jun 2010 08:14:30 -0400
Subject: [PATCH] Disable ez_setup when installing by RPM

---
 setup.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 14ebd9f47b6a624b667e7f34dc21adadab7cbc76..6c9e58076f8b7d21fcbcd85297875712e23f5d38 100755
--- a/setup.py
+++ b/setup.py
@@ -8,8 +8,8 @@
 import os
 import sys
 
-from ez_setup import use_setuptools
-use_setuptools()
+#from ez_setup import use_setuptools
+#use_setuptools()
 
 from setuptools import setup, find_packages
 from distutils.command.install_data import install_data
-- 
1.7.1



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ReviewBoard/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore	14 May 2010 17:45:58 -0000	1.4
+++ .cvsignore	6 Jul 2010 11:20:36 -0000	1.5
@@ -1 +1 @@
-ReviewBoard-1.5beta2.tar.gz
+ReviewBoard-1.5rc1.tar.gz


Index: ReviewBoard.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ReviewBoard/devel/ReviewBoard.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- ReviewBoard.spec	27 May 2010 15:30:43 -0000	1.10
+++ ReviewBoard.spec	6 Jul 2010 11:20:36 -0000	1.11
@@ -2,18 +2,18 @@
 
 Name:           ReviewBoard
 Version:        1.5
-Release:        11.beta2%{?dist}
+Release:        12.rc1%{?dist}
 Summary:        Web-based code review tool
 Group:          Applications/Internet
 License:        MIT
 URL:            http://www.review-board.org
-Source0:        http://downloads.review-board.org/releases/%{name}/1.5/%{name}-%{version}beta2.tar.gz
+Source0:        http://downloads.review-board.org/releases/%{name}/1.5/%{name}-%{version}rc1.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:      noarch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 Requires:       Django >= 1.1.1
-Requires:       python-djblets >= 0.6.1
+Requires:       python-djblets >= 0.6.3
 Requires:       python-imaging
 Requires:       httpd
 Requires:       python-sqlite
@@ -22,10 +22,13 @@ Requires:       pysvn
 Requires:       python-flup
 Requires:       python-nose
 Requires:       pytz
-Requires:       python-pygments
-Requires:       django-evolution
+Requires:       python-pygments >= 1.1.1
+Requires:       django-evolution >= 0.5
 Requires:       python-recaptcha-client
 Requires:       python-paramiko
+Requires:       python-memcached
+
+Patch1000: FED01-Disable-ez_setup-when-installing-by-RPM.patch
 
 %description
 Review Board is a powerful web-based code review tool that offers
@@ -34,11 +37,8 @@ projects to large companies and offers a
 of the stress and time out of the code review process.
 
 %prep
-%setup -q -n %{name}-%{version}beta2
-
-# Avoid trying to bootstrap setup.py; we have this via RPM:
-sed -i 's/^from ez_setup/#from ez_setup/' setup.py
-sed -i 's/^use_setuptools()/#use_setuptools()/' setup.py
+%setup -q -n %{name}-%{version}rc1
+%patch1000 -p1
 
 %build
 %{__python} setup.py build
@@ -74,6 +74,14 @@ rm -rf $RPM_BUILD_ROOT
 %{python_sitelib}/*
 
 %changelog
+* Mon Jul 06 2010 Stephen Gallagher <sgallagh at redhat.com> - 1.5-12.rc1
+- Added support for the iPhone and iPad
+- Improved move detection in diff viewer
+- Support for WSGI installations
+- Improvements to the JSON API
+- Assorted bugfixes
+- http://www.reviewboard.org/docs/releasenotes/dev/reviewboard/1.5-rc-1/
+
 * Fri May 14 2010 Stephen Gallagher <sgallagh at redhat.com> - 1.5-11.beta2
 - Added support for custom site-specific management commands
 - Set the HOME directory for Review Board to be he site directory’s


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ReviewBoard/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- sources	14 May 2010 17:45:58 -0000	1.4
+++ sources	6 Jul 2010 11:20:36 -0000	1.5
@@ -1 +1 @@
-e15203b1c582588e7c8499e7ff3f3dc4  ReviewBoard-1.5beta2.tar.gz
+b92d26c15e03a628573931ba65373b68  ReviewBoard-1.5rc1.tar.gz



More information about the scm-commits mailing list