[ReviewBoard/f21] https://www.reviewboard.org/docs/releasenotes/reviewboard/2.0.13/

Stephen Gallagher sgallagh at fedoraproject.org
Tue Feb 17 14:28:17 UTC 2015


commit f848a762c06f0ab328e3913f01e080eaca7e028f
Author: Stephen Gallagher <sgallagh at redhat.com>
Date:   Tue Feb 17 09:27:57 2015 -0500

    https://www.reviewboard.org/docs/releasenotes/reviewboard/2.0.13/
    
    - Drop upstreamed patches for default site installation

 .gitignore                                         |    1 +
 0001-Create-new-sites-in-a-default-path.patch      |  134 --------------------
 0002-Rename-platform.py-to-rb_platform.py.patch    |   41 ------
 FED01-Soften-dependencies.patch                    |   87 ++++++++++++-
 ...ge-default-paths-to-match-Fedora-policies.patch |    4 +-
 ReviewBoard.spec                                   |   12 +-
 sources                                            |    2 +-
 7 files changed, 90 insertions(+), 191 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6a6ec18..7e549f7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -65,3 +65,4 @@ clog
 /ReviewBoard-2.0.10.tar.gz
 /ReviewBoard-2.0.11.tar.gz
 /ReviewBoard-2.0.12.tar.gz
+/ReviewBoard-2.0.13.tar.gz
diff --git a/FED01-Soften-dependencies.patch b/FED01-Soften-dependencies.patch
index 4738c37..a032670 100644
--- a/FED01-Soften-dependencies.patch
+++ b/FED01-Soften-dependencies.patch
@@ -1,7 +1,7 @@
-From 56216dbf4a11b6b57ea195c01c9c0d5238b33578 Mon Sep 17 00:00:00 2001
+From f91fb06315bb027f940289def7f6d63d4c36acf1 Mon Sep 17 00:00:00 2001
 From: Stephen Gallagher <sgallagh at redhat.com>
 Date: Fri, 28 Feb 2014 16:20:03 -0500
-Subject: [PATCH 3/4] Soften dependencies
+Subject: [PATCH 1/2] Soften dependencies
 
 ---
  reviewboard/__init__.py | 2 +-
@@ -9,12 +9,12 @@ Subject: [PATCH 3/4] Soften dependencies
  2 files changed, 4 insertions(+), 4 deletions(-)
 
 diff --git a/reviewboard/__init__.py b/reviewboard/__init__.py
-index 8fb789b9036207f01b79c49fcbb27b2979633ed2..e1f0aa0f8e7e720f220e4fd6d75c47748cce79c5 100644
+index a9145509edb49a0251b7e105d56614728e385bf6..2390cff7538c47e1bb6f3fbb09a2daf442a9a52b 100644
 --- a/reviewboard/__init__.py
 +++ b/reviewboard/__init__.py
 @@ -9,11 +9,11 @@ from __future__ import unicode_literals
  #
- VERSION = (2, 0, 12, 0, 'final', 0, True)
+ VERSION = (2, 0, 13, 0, 'final', 0, True)
  
  
  # Required version of Django
@@ -26,12 +26,68 @@ index 8fb789b9036207f01b79c49fcbb27b2979633ed2..e1f0aa0f8e7e720f220e4fd6d75c4774
      version = '%s.%s' % (VERSION[0], VERSION[1])
  
 diff --git a/setup.py b/setup.py
-index 5ecb1bc34dd84a946f929da7209e860276b0d587..e12e94aaf37bd6b061c491b7aff42b62a00788ca 100755
+index 6fce888a2a36b351635fa9cfdf1a39eaed10fb81..435e6db055c7a8625bc216937ff8ac84bc5d5d66 100755
 --- a/setup.py
 +++ b/setup.py
-@@ -198,18 +198,18 @@ setup(name=PACKAGE_NAME,
+@@ -143,91 +143,91 @@ else:
+ setup(name=PACKAGE_NAME,
+       version=get_package_version(),
+       license="MIT",
+       description="Review Board, a web-based code review tool",
+       url="https://www.reviewboard.org/",
+       download_url=download_url,
+       author="The Review Board Project",
+       author_email="reviewboard at googlegroups.com",
+       maintainer="Christian Hammond",
+       maintainer_email="christian at beanbaginc.com",
+       packages=find_packages(),
+       entry_points = {
+           'console_scripts': [
+               'rb-site = reviewboard.cmdline.rbsite:main',
+               'rbssh = reviewboard.cmdline.rbssh:main',
+           ],
+           'reviewboard.hosting_services': [
+               'beanstalk = reviewboard.hostingsvcs.beanstalk:Beanstalk',
+               'bitbucket = reviewboard.hostingsvcs.bitbucket:Bitbucket',
+               'bugzilla = reviewboard.hostingsvcs.bugzilla:Bugzilla',
+               'codebasehq = reviewboard.hostingsvcs.codebasehq:CodebaseHQ',
+               'fedorahosted = '
+                   'reviewboard.hostingsvcs.fedorahosted:FedoraHosted',
+               'fogbugz = reviewboard.hostingsvcs.fogbugz:FogBugz',
+               'github = reviewboard.hostingsvcs.github:GitHub',
+               'gitlab = reviewboard.hostingsvcs.gitlab:GitLab',
+               'gitorious = reviewboard.hostingsvcs.gitorious:Gitorious',
+               'googlecode = reviewboard.hostingsvcs.googlecode:GoogleCode',
+               'kiln = reviewboard.hostingsvcs.kiln:Kiln',
+               'redmine = reviewboard.hostingsvcs.redmine:Redmine',
+               'sourceforge = reviewboard.hostingsvcs.sourceforge:SourceForge',
+               'trac = reviewboard.hostingsvcs.trac:Trac',
+               'unfuddle = reviewboard.hostingsvcs.unfuddle:Unfuddle',
+               'versionone = reviewboard.hostingsvcs.versionone:VersionOne',
+           ],
+           'reviewboard.scmtools': [
+               'bzr = reviewboard.scmtools.bzr:BZRTool',
+               'clearcase = reviewboard.scmtools.clearcase:ClearCaseTool',
+               'cvs = reviewboard.scmtools.cvs:CVSTool',
+               'git = reviewboard.scmtools.git:GitTool',
+               'hg = reviewboard.scmtools.hg:HgTool',
+               'perforce = reviewboard.scmtools.perforce:PerforceTool',
+               'plastic = reviewboard.scmtools.plastic:PlasticTool',
+               'svn = reviewboard.scmtools.svn:SVNTool',
+           ],
+           'reviewboard.auth_backends': [
+               'ad = reviewboard.accounts.backends:ActiveDirectoryBackend',
+               'ldap = reviewboard.accounts.backends:LDAPBackend',
+               'nis = reviewboard.accounts.backends:NISBackend',
+               'x509 = reviewboard.accounts.backends:X509Backend',
+               'digest = reviewboard.accounts.backends:HTTPDigestBackend',
+           ],
+       },
+       cmdclass=cmdclasses,
+       install_requires=[
+           django_version,
            'django_evolution>=0.7.4,<=0.7.999',
-           'Djblets>=0.8.14,<=0.8.999',
+           'Djblets>=0.8.15,<=0.8.999',
            'django-haystack>=2.1',
            'docutils',
            'markdown>=2.4.0,<2.4.999',
@@ -51,6 +107,23 @@ index 5ecb1bc34dd84a946f929da7209e860276b0d587..e12e94aaf37bd6b061c491b7aff42b62
            'http://downloads.reviewboard.org/mirror/',
            'http://downloads.reviewboard.org/releases/Djblets/0.8/',
            'http://downloads.reviewboard.org/releases/django-evolution/0.7/',
+           download_url,
+       ],
+       include_package_data=True,
+       zip_safe=False,
+       classifiers=[
+           "Development Status :: 5 - Production/Stable",
+           "Environment :: Web Environment",
+           "Framework :: Django",
+           "Intended Audience :: Developers",
+           "License :: OSI Approved :: MIT License",
+           "Natural Language :: English",
+           "Operating System :: OS Independent",
+           "Programming Language :: Python",
+           "Topic :: Software Development",
+           "Topic :: Software Development :: Quality Assurance",
+       ]
+ )
 -- 
 2.1.0
 
diff --git a/FED02-Change-default-paths-to-match-Fedora-policies.patch b/FED02-Change-default-paths-to-match-Fedora-policies.patch
index 1ef2a70..0aff708 100644
--- a/FED02-Change-default-paths-to-match-Fedora-policies.patch
+++ b/FED02-Change-default-paths-to-match-Fedora-policies.patch
@@ -1,7 +1,7 @@
-From 4e33ee22faae6958ebe5d27c1c6df85c8021d99d Mon Sep 17 00:00:00 2001
+From 7a64cc3b8a3b7f930dff96bd7773a8f1498698ed Mon Sep 17 00:00:00 2001
 From: Stephen Gallagher <sgallagh at redhat.com>
 Date: Fri, 9 Jan 2015 08:53:37 -0500
-Subject: [PATCH 4/4] Change default paths to match Fedora policies
+Subject: [PATCH 2/2] Change default paths to match Fedora policies
 
 The cache directory is a FHS requirement.
 The default install path is changed to simplify the creation of
diff --git a/ReviewBoard.spec b/ReviewBoard.spec
index fc47434..06de0dc 100644
--- a/ReviewBoard.spec
+++ b/ReviewBoard.spec
@@ -3,8 +3,8 @@
 %global djblets_version 0.8.14
 
 Name:           ReviewBoard
-Version:        2.0.12
-Release:        3%{?dist}
+Version:        2.0.13
+Release:        1%{?dist}
 Summary:        Web-based code review tool
 Group:          Applications/Internet
 License:        MIT
@@ -79,8 +79,6 @@ Requires:       python-django-haystack
 Requires:       httpd >= 2.4.7-5
 
 # Upstream patches awaiting the next release
-Patch0001: 0001-Create-new-sites-in-a-default-path.patch
-Patch0002: 0002-Rename-platform.py-to-rb_platform.py.patch
 
 # Fedora-specific patches
 
@@ -102,8 +100,6 @@ of the stress and time out of the code review process.
 %setup -q -n %{name}-%{version}
 
 # Upstream patches
-%patch0001 -p1
-%patch0002 -p1
 
 # Fedora patches
 %patch1001 -p1
@@ -166,6 +162,10 @@ rm -rf $RPM_BUILD_ROOT
 %{systemd_postun}
 
 %changelog
+* Tue Feb 17 2015 Stephen Gallagher <sgallagh at redhat.com> 2.0.13-1
+- https://www.reviewboard.org/docs/releasenotes/reviewboard/2.0.13/
+- Drop upstreamed patches for default site installation
+
 * Fri Jan 09 2015 Stephen Gallagher <sgallagh at redhat.com> 2.0.12-3
 - Include upstream patch to rename platform.py to rb_platform.py
 
diff --git a/sources b/sources
index 0499d93..021cb69 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-be64e60ae5d047e32dc7dc60ae8307d4  ReviewBoard-2.0.12.tar.gz
+70d2ae68bb62c1e8fa9e57bc39db47ec  ReviewBoard-2.0.13.tar.gz


More information about the scm-commits mailing list