SPECS: python-Paste.spec (NEW), python-PasteScript.spec (NEW), pyt...
radzio
radzio at pld-linux.org
Sat Jan 28 19:57:22 CET 2006
Author: radzio Date: Sat Jan 28 18:57:22 2006 GMT
Module: SPECS Tag: HEAD
---- Log message:
- initial release
- TODO: polish translations, better [B]R
---- Files affected:
SPECS:
python-Paste.spec (NONE -> 1.1) (NEW), python-PasteScript.spec (NONE -> 1.1) (NEW), python-PasteDeploy.spec (NONE -> 1.1) (NEW), python-INITools.spec (NONE -> 1.1) (NEW), python-WSGIUtils.spec (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SPECS/python-Paste.spec
diff -u /dev/null SPECS/python-Paste.spec:1.1
--- /dev/null Sat Jan 28 19:57:22 2006
+++ SPECS/python-Paste.spec Sat Jan 28 19:57:16 2006
@@ -0,0 +1,54 @@
+# $Revision$, $Date$
+Summary: Tools for using a Web Server Gateway Interface stack
+Name: python-Paste
+Version: 0.4.1
+Release: 1
+Group: Development/Languages/Python
+License: X11/MIT
+Source0: http://cheeseshop.python.org/packages/source/P/Paste/Paste-%{version}.tar.gz
+# Source0-md5: 955e04ebc3277cd37cc2b249f0a38b7f
+URL: http://kid.lesscode.org/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+These provide several pieces of "middleware" (or filters) that can be nested
+to build web applications. Each piece of middleware uses the WSGI (PEP 333)
+interface, and should be compatible with other middleware based on those
+interfaces.
+
+
+%prep
+%setup -q -n Paste-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install \
+ --single-version-externally-managed \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc docs/
+%{py_sitescriptdir}/paste*
+%{py_sitescriptdir}/Paste*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog -n python-Paste
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/01/28 18:57:16 radzio
+- initial release
+- TODO: polish translations, better [B]R
+
================================================================
Index: SPECS/python-PasteScript.spec
diff -u /dev/null SPECS/python-PasteScript.spec:1.1
--- /dev/null Sat Jan 28 19:57:22 2006
+++ SPECS/python-PasteScript.spec Sat Jan 28 19:57:16 2006
@@ -0,0 +1,58 @@
+# $Revision$, $Date$
+Summary: This is a pluggable command-line tool
+Name: python-PasteScript
+Version: 0.4.1
+Release: 1
+Group: Development/Languages/Python
+License: X11/MIT
+Source0: http://cheeseshop.python.org/packages/source/P/PasteScript/PasteScript-%{version}.tar.gz
+# Source0-md5: a84c08700c42a337d665b334d96ac59f
+URL: http://kid.lesscode.org/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This is a pluggable command-line tool. It includes some built-in features:
+- Create file layouts for packages. For instance:
+ $ paste create --template=basic_package MyPackage
+ will create a setuptools-ready file layout.
+- Serving up web applications, with configuration based on paste.deploy.
+
+
+%prep
+%setup -q -n PasteScript-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install \
+ --single-version-externally-managed \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT%{py_sitescriptdir} -name \*.py -and -not -path *templates* | xargs rm -f
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc docs/
+%attr(755,root,root) %{_bindir}/paster
+%{py_sitescriptdir}/paste/script
+%{py_sitescriptdir}/Paste*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog -n python-PasteScript
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/01/28 18:57:16 radzio
+- initial release
+- TODO: polish translations, better [B]R
+
================================================================
Index: SPECS/python-PasteDeploy.spec
diff -u /dev/null SPECS/python-PasteDeploy.spec:1.1
--- /dev/null Sat Jan 28 19:57:22 2006
+++ SPECS/python-PasteDeploy.spec Sat Jan 28 19:57:16 2006
@@ -0,0 +1,54 @@
+# $Revision$, $Date$
+Summary: Load, configure, and compose WSGI applications and servers
+Name: python-PasteDeploy
+Version: 0.4
+Release: 1
+Group: Development/Languages/Python
+License: X11/MIT
+Source0: http://cheeseshop.python.org/packages/source/P/PasteDeploy/PasteDeploy-%{version}.tar.gz
+# Source0-md5: 8b44cb47f87ebebffe4afd2e1a8bf258
+URL: http://pythonpaste.org/deploy/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This tool provides code to load WSGI applications and servers from URIs; these
+URIs can refer to Python Eggs for INI-style configuration files. Paste Script
+provides commands to serve applications based on this configuration file.
+
+%prep
+%setup -q -n PasteDeploy-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install \
+ --single-version-externally-managed \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT%{py_sitescriptdir} -name \*.py | xargs rm -f
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc docs/
+%{py_sitescriptdir}/paste/deploy
+%{py_sitescriptdir}/Paste*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog -n python-PasteDeploy
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/01/28 18:57:16 radzio
+- initial release
+- TODO: polish translations, better [B]R
+
================================================================
Index: SPECS/python-INITools.spec
diff -u /dev/null SPECS/python-INITools.spec:1.1
--- /dev/null Sat Jan 28 19:57:22 2006
+++ SPECS/python-INITools.spec Sat Jan 28 19:57:16 2006
@@ -0,0 +1,51 @@
+# $Revision$, $Date$
+Summary: Tools for parsing and using INI-style files
+Name: python-INITools
+Version: 0.1
+Release: 1
+Group: Development/Languages/Python
+License: X11/MIT
+Source0: http://cheeseshop.python.org/packages/source/I/INITools/INITools-%{version}.tar.gz
+# Source0-md5: 94dc7d7c6156ad0d7f436a959184b031
+URL: http://pythonpaste.org/initools/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A set of tools for parsing and using .ini-style files, including an abstract
+parser and several tools built on that parser.
+
+%prep
+%setup -q -n INITools-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install \
+ --single-version-externally-managed \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc docs/
+%{py_sitescriptdir}/initools*
+%{py_sitescriptdir}/INITools*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog -n python-INITools
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/01/28 18:57:16 radzio
+- initial release
+- TODO: polish translations, better [B]R
+
================================================================
Index: SPECS/python-WSGIUtils.spec
diff -u /dev/null SPECS/python-WSGIUtils.spec:1.1
--- /dev/null Sat Jan 28 19:57:22 2006
+++ SPECS/python-WSGIUtils.spec Sat Jan 28 19:57:16 2006
@@ -0,0 +1,56 @@
+# $Revision$, $Date$
+Summary: Collection of libraries for use in a WSGI environnmen
+Name: python-WSGIUtils
+Version: 0.7
+Release: 1
+Group: Development/Languages/Python
+License: X11/MIT
+Source0: http://cheeseshop.python.org/packages/source/W/WSGIUtils/WSGIUtils-%{version}.tar.gz
+# Source0-md5: 80656ce771bb33eb8ad502c3b674b1fc
+URL: http://kid.lesscode.org/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+WSGIUtils is a package of standalone utility libraries that ease the
+development of simple WSGI programs. The package is divided into two main
+components which can be used individualy or in combination:
+
+- wsgiServer is a multi-threaded WSGI web server based on SimpleHTTPServer
+- wsgiAdaptor is a simple WSGI application that provides basic authentication,
+ signed cookies and persistent sessions
+
+%prep
+%setup -q -n WSGIUtils-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install \
+ --single-version-externally-managed \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.txt
+%{py_sitescriptdir}/wsgiutils*
+%{py_sitescriptdir}/WSGIUtils*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog -n python-WSGIUtils
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2006/01/28 18:57:16 radzio
+- initial release
+- TODO: polish translations, better [B]R
+
================================================================
More information about the pld-cvs-commit
mailing list