rpms/python-webtest/EL-5 Makefile, 1.2, 1.3 import.log, 1.2, 1.3 python-webtest.spec, 1.3, 1.4 sources, 1.3, 1.4 .cvsignore, 1.2, 1.3 dead.package, 1.1, NONE

Luke Macken lmacken at fedoraproject.org
Thu Oct 1 19:33:00 UTC 2009


Author: lmacken

Update of /cvs/pkgs/rpms/python-webtest/EL-5
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24478/EL-5

Modified Files:
	.cvsignore 
Added Files:
	Makefile import.log python-webtest.spec sources 
Removed Files:
	dead.package 
Log Message:
Re-add python-webtest to EL-5



Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	1 Oct 2009 19:32:59 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: python-webtest
+# $Id$
+NAME := python-webtest
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)


Index: import.log
===================================================================
RCS file: import.log
diff -N import.log
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ import.log	1 Oct 2009 19:32:59 -0000	1.3
@@ -0,0 +1 @@
+python-webtest-1_2-1_fc10:EL-5:python-webtest-1.2-1.fc10.src.rpm:1254410691


Index: python-webtest.spec
===================================================================
RCS file: python-webtest.spec
diff -N python-webtest.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ python-webtest.spec	1 Oct 2009 19:32:59 -0000	1.4
@@ -0,0 +1,81 @@
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name:           python-webtest
+Version:        1.2
+Release:        1%{?dist}
+Summary:        Helper to test WSGI applications
+
+Group:          Development/Languages
+License:        MIT
+URL:            http://pythonpaste.org/webtest/
+Source0:        http://pypi.python.org/packages/source/W/WebTest/WebTest-%{version}.tar.gz
+BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+
+BuildArch:      noarch
+BuildRequires:  python-setuptools-devel
+BuildRequires:  python-nose
+BuildRequires:  python-webob
+Requires:       python-webob
+
+%description
+WebTest wraps any WSGI application and makes it easy to send test
+requests to that application, without starting up an HTTP server.
+
+This provides convenient full-stack testing of applications written
+with any WSGI-compatible framework.
+
+%prep
+%setup -q -n WebTest-%{version}
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__rm} -rf %{buildroot}
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+ 
+%clean
+%{__rm} -rf %{buildroot}
+
+
+%check
+./test
+
+
+%files
+%defattr(-,root,root,-)
+%doc docs/*
+%{python_sitelib}/webtest
+%{python_sitelib}/*.egg-info
+
+
+%changelog
+* Sun May 31 2009 Luke Macken <lmacken at redhat.com> - 1.2-1
+- Update to 1.2
+
+* Tue Apr 14 2009 Ricky Zhou <ricky at fedoraproject.org> - 1.1-3
+- Change define to global.
+- Remove old >= 8 conditional.
+- Remove unnecessary BuildRequires on python-devel.
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Dec 06 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.1-1
+- Upstream released new version.
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 1.0-4
+- Rebuild for Python 2.6
+
+* Thu Jul 17 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-3
+- Update Requires for python-webob rename.
+- Add BuildRequires on python-webob for tests.
+
+* Sat Jul 07 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-2
+- Add %%check section.
+
+* Sat Jun 14 2008 Ricky Zhou <ricky at fedoraproject.org> - 1.0-1
+- Initial RPM Package.


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	1 Oct 2009 19:32:59 -0000	1.4
@@ -0,0 +1 @@
+ec8f1a246d1033389d83afb86f840a5e  WebTest-1.2.tar.gz


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/python-webtest/EL-5/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore	14 Oct 2008 02:19:04 -0000	1.2
+++ .cvsignore	1 Oct 2009 19:32:59 -0000	1.3
@@ -1 +1 @@
-WebTest-1.0.tar.gz
+WebTest-1.2.tar.gz


--- dead.package DELETED ---




More information about the scm-commits mailing list