[Checkins] SVN: keas.profile/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Wed Mar 6 14:55:00 UTC 2013


Log message for revision 130046:
  Moved to GitHub.

Changed:
  D   keas.profile/trunk/CHANGES.txt
  A   keas.profile/trunk/MOVED_TO_GITHUB
  D   keas.profile/trunk/README.txt
  D   keas.profile/trunk/bootstrap.py
  D   keas.profile/trunk/buildout.cfg
  D   keas.profile/trunk/setup.py
  D   keas.profile/trunk/src/

-=-
Deleted: keas.profile/trunk/CHANGES.txt
===================================================================
--- keas.profile/trunk/CHANGES.txt	2013-03-06 13:51:53 UTC (rev 130045)
+++ keas.profile/trunk/CHANGES.txt	2013-03-06 14:54:59 UTC (rev 130046)
@@ -1,22 +0,0 @@
-=======
-CHANGES
-=======
-
-
-0.2.1 (unreleased)
-------------------
-
-- Nothing changed yet.
-
-
-0.2.0 (2010-08-07)
-------------------
-
-- Remove pyprof2calltree support; looks like it's buggy (or incompatible with
-  Python 2.6) and just breaks everything.
-
-
-0.1.0 (2008-12-12)
-------------------
-
-- Initial release

Added: keas.profile/trunk/MOVED_TO_GITHUB
===================================================================
--- keas.profile/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ keas.profile/trunk/MOVED_TO_GITHUB	2013-03-06 14:54:59 UTC (rev 130046)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/keas.profile
\ No newline at end of file

Deleted: keas.profile/trunk/README.txt
===================================================================
--- keas.profile/trunk/README.txt	2013-03-06 13:51:53 UTC (rev 130045)
+++ keas.profile/trunk/README.txt	2013-03-06 14:54:59 UTC (rev 130046)
@@ -1,18 +0,0 @@
-===================
-Profiler middleware
-===================
-
-This package provides middleware for profiling of the application.  It's based
-on `paste.debug.profile <http://pythonpaste.org/modules/debug.profile.html>`_,
-but uses cProfile instead of hotshot.
-
-If you use PasteScript, enabling the profiler is as simple as adding ::
-
-  [filter-app:profile]
-  use = egg:keas.profile#profiler
-  next = main
-
-to your paster configuration file and passing ``--app-name=profile`` to
-``paster``.  When you access your web application, every page will have the
-profiler output appended to the end of the document body.
-

Deleted: keas.profile/trunk/bootstrap.py
===================================================================
--- keas.profile/trunk/bootstrap.py	2013-03-06 13:51:53 UTC (rev 130045)
+++ keas.profile/trunk/bootstrap.py	2013-03-06 14:54:59 UTC (rev 130046)
@@ -1,52 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2008 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-
-$Id$
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-ez = {}
-exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                     ).read() in ez
-ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-import pkg_resources
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-if sys.platform == 'win32':
-    cmd = '"%s"' % cmd # work around spawn lamosity on windows
-
-ws = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, sys.executable,
-    '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
-    dict(os.environ,
-         PYTHONPATH=
-         ws.find(pkg_resources.Requirement.parse('setuptools')).location
-         ),
-    ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout')
-import zc.buildout.buildout
-zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
-shutil.rmtree(tmpeggs)

Deleted: keas.profile/trunk/buildout.cfg
===================================================================
--- keas.profile/trunk/buildout.cfg	2013-03-06 13:51:53 UTC (rev 130045)
+++ keas.profile/trunk/buildout.cfg	2013-03-06 14:54:59 UTC (rev 130046)
@@ -1,30 +0,0 @@
-[buildout]
-develop = .
-parts = test coverage-test coverage-report python ctags
-
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = keas.profile [test]
-
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = keas.profile [test]
-defaults = ['--coverage', '../../coverage']
-
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')
-
-[python]
-recipe = zc.recipe.egg
-eggs = keas.profile
-interpreter = python
-
-[ctags]
-recipe = z3c.recipe.tag:tags
-eggs = keas.profile

Deleted: keas.profile/trunk/setup.py
===================================================================
--- keas.profile/trunk/setup.py	2013-03-06 13:51:53 UTC (rev 130045)
+++ keas.profile/trunk/setup.py	2013-03-06 14:54:59 UTC (rev 130046)
@@ -1,56 +0,0 @@
-###############################################################################
-#
-# Copyright 2008 by Keas, Inc., San Francisco, CA
-#
-###############################################################################
-"""Package setup.
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(
-    name='keas.profile',
-    version = '0.2.1dev',
-    author='Marius Gedminas and the Zope Community.',
-    author_email="zope-dev at zope.org",
-    description='WSGI Profiler for Python Paste',
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license="ZPL 2.1",
-    keywords="zope3 profile paste wsgi",
-    classifiers=[
-        'Development Status :: 4 - Beta',
-        'Environment :: Web Environment',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Natural Language :: English',
-        'Operating System :: OS Independent',
-        'Topic :: Internet :: WWW/HTTP',
-        'Framework :: Zope3'],
-    url='http://pypi.python.org/pypi/keas.profile',
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['keas'],
-    extras_require=dict(
-        test=['zope.testing',],
-        ),
-    install_requires=[
-        'setuptools',
-        'paste',
-        ],
-    include_package_data=True,
-    zip_safe=False,
-    entry_points="""
-      [paste.filter_app_factory]
-      profiler = keas.profile.profiler:make_profiler
-      """
-    )



More information about the checkins mailing list