Title: [commits] (bear) [11412] Move sample parcels (Amazon, Photo, Flickr, EVDB and EventLogging)
Revision
11412
Author
bear
Date
2006-08-14 15:33:34 -0700 (Mon, 14 Aug 2006)

Log Message

Move sample parcels (Amazon, Photo, Flickr, EVDB and EventLogging)
from parcels/ to projects/ and convert them to eggs.
Egg frameworks by bkirsch, directory schlep'ing by bear
bug 6434

Modified Paths

Added Paths

Removed Paths

  • trunk/chandler/parcels/amazon/
  • trunk/chandler/parcels/evdb/
  • trunk/chandler/parcels/eventLogger/
  • trunk/chandler/parcels/flickr/
  • trunk/chandler/parcels/photos/

Property Changed

  • trunk/chandler/projects/Chandler-FeedsPlugin/
  • trunk/chandler/projects/Chandler-I18nTestsPlugin/
  • trunk/chandler/projects/EggTranslations-Plugin/

Diff

Modified: trunk/chandler/Makefile (11411 => 11412)

--- trunk/chandler/Makefile	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/Makefile	2006-08-14 22:33:34 UTC (rev 11412)
@@ -82,9 +82,14 @@
 
 
 BUILD_PLUGINS = Chandler-HelloWorldPlugin \
+                Chandler-AmazonPlugin \
+                Chandler-EVDBPlugin \
+                Chandler-EventLogger \
                 Chandler-FeedsPlugin \
+                Chandler-Flickr \
                 Chandler-I18nTestsPlugin \
-                EggTranslations-Plugin
+                Chandler-Photo \
+                EggTranslations
 
 # When a version changes, the ARCHIVES lists below needs to be updated.
 # these get installed into release or debug

Property changes: trunk/chandler/projects/Chandler-AmazonPlugin

Name: svn:ignore
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Added: trunk/chandler/projects/Chandler-AmazonPlugin/README.txt (11411 => 11412)

--- trunk/chandler/projects/Chandler-AmazonPlugin/README.txt	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-AmazonPlugin/README.txt	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+This plugin provides support for Amazon product and wishlist searches in Chandler.
+
+If you want to work on its code, you can use::
+
+    RunPython setup.py develop
+
+to install it in development mode (where you can make changes and have them
+take effect whenever Chandler is restarted), or you can use::
+
+    RunPython setup.py install
+
+to install it as an ``.egg`` file.
+
+Note that when installed as an egg file, changes made to the source code will
+not affect Chandler execution, until you run ``setup.py install`` or ``setup.py
+develop`` again.
+
+After making changes to this plugin, you should update its version number in
+``setup.py`` and in the chandler/Makefile, so that people using "quick builds"
+of Chandler will use your new version.
+
+If you want to run this plugin's tests use::
+
+    RunPython setup.py test
+
+For more information on the plugin development process, see the original
+proposal at:
+
+ http://lists.osafoundation.org/pipermail/chandler-dev/2006-March/005552.html
+
Property changes on: trunk/chandler/projects/Chandler-AmazonPlugin/README.txt
___________________________________________________________________
Name: svn:executable
   + *

Copied: trunk/chandler/projects/Chandler-AmazonPlugin/amazon (from rev 11410, trunk/chandler/parcels/amazon) ( => )

Added: trunk/chandler/projects/Chandler-AmazonPlugin/setup.py
===================================================================
--- trunk/chandler/projects/Chandler-AmazonPlugin/setup.py	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-AmazonPlugin/setup.py	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+#   Copyright (c) 2003-2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+from setuptools import setup
+
+setup(
+    name = "Chandler-AmazonPlugin",
+    version = "0.1",
+    description = "Amazon product search widget for Chandler",
+    author = "OSAF",
+    test_suite = "amazon.tests",
+    packages = ["amazon"],
+    include_package_data = True,
+    entry_points = {
+        "chandler.parcels": ["Amazon Web API = amazon"]
+    }
+)
+

Property changes: trunk/chandler/projects/Chandler-AmazonPlugin/setup.py

Name: svn:executable
   + *

Property changes: trunk/chandler/projects/Chandler-EVDBPlugin

Name: svn:ignore
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Added: trunk/chandler/projects/Chandler-EVDBPlugin/README.txt (11411 => 11412)

--- trunk/chandler/projects/Chandler-EVDBPlugin/README.txt	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-EVDBPlugin/README.txt	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+This plugin provides support for EVDB event feeds in Chandler.
+
+If you want to work on its code, you can use::
+
+    RunPython setup.py develop
+
+to install it in development mode (where you can make changes and have them
+take effect whenever Chandler is restarted), or you can use::
+
+    RunPython setup.py install
+
+to install it as an ``.egg`` file.
+
+Note that when installed as an egg file, changes made to the source code will
+not affect Chandler execution, until you run ``setup.py install`` or ``setup.py
+develop`` again.
+
+After making changes to this plugin, you should update its version number in
+``setup.py`` and in the chandler/Makefile, so that people using "quick builds"
+of Chandler will use your new version.
+
+If you want to run this plugin's tests use::
+
+    RunPython setup.py test
+
+For more information on the plugin development process, see the original
+proposal at:
+
+ http://lists.osafoundation.org/pipermail/chandler-dev/2006-March/005552.html
+
Property changes on: trunk/chandler/projects/Chandler-EVDBPlugin/README.txt
___________________________________________________________________
Name: svn:executable
   + *

Copied: trunk/chandler/projects/Chandler-EVDBPlugin/evdb (from rev 11410, trunk/chandler/parcels/evdb) ( => )

Added: trunk/chandler/projects/Chandler-EVDBPlugin/setup.py
===================================================================
--- trunk/chandler/projects/Chandler-EVDBPlugin/setup.py	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-EVDBPlugin/setup.py	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+#   Copyright (c) 2003-2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+from setuptools import setup
+
+setup(
+    name = "Chandler-EVDBPlugin",
+    version = "0.1",
+    description = "Event database search widget for Chandler",
+    author = "OSAF",
+    test_suite = "evdb.tests",
+    packages = ["evdb"],
+    include_package_data = True,
+    entry_points = {
+        "chandler.parcels": ["EVDB API = evdb"]
+    }
+)
+

Property changes: trunk/chandler/projects/Chandler-EVDBPlugin/setup.py

Name: svn:executable
   + *

Property changes: trunk/chandler/projects/Chandler-EventLoggerPlugin

Name: svn:ignore
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Added: trunk/chandler/projects/Chandler-EventLoggerPlugin/README.txt (11411 => 11412)

--- trunk/chandler/projects/Chandler-EventLoggerPlugin/README.txt	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-EventLoggerPlugin/README.txt	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+This plugin provides support for event logging in Chandler.
+
+If you want to work on its code, you can use::
+
+    RunPython setup.py develop
+
+to install it in development mode (where you can make changes and have them
+take effect whenever Chandler is restarted), or you can use::
+
+    RunPython setup.py install
+
+to install it as an ``.egg`` file.
+
+Note that when installed as an egg file, changes made to the source code will
+not affect Chandler execution, until you run ``setup.py install`` or ``setup.py
+develop`` again.
+
+After making changes to this plugin, you should update its version number in
+``setup.py`` and in the chandler/Makefile, so that people using "quick builds"
+of Chandler will use your new version.
+
+If you want to run this plugin's tests use::
+
+    RunPython setup.py test
+
+For more information on the plugin development process, see the original
+proposal at:
+
+ http://lists.osafoundation.org/pipermail/chandler-dev/2006-March/005552.html
+
Property changes on: trunk/chandler/projects/Chandler-EventLoggerPlugin/README.txt
___________________________________________________________________
Name: svn:executable
   + *

Copied: trunk/chandler/projects/Chandler-EventLoggerPlugin/eventLogger (from rev 11410, trunk/chandler/parcels/eventLogger) ( => )

Added: trunk/chandler/projects/Chandler-EventLoggerPlugin/setup.py
===================================================================
--- trunk/chandler/projects/Chandler-EventLoggerPlugin/setup.py	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-EventLoggerPlugin/setup.py	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+#   Copyright (c) 2003-2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+from setuptools import setup
+
+setup(
+    name = "Chandler-EventLoggerPlugin",
+    version = "0.1",
+    description = "Event Logger widget for Chandler",
+    author = "OSAF",
+    test_suite = "eventLogger.tests",
+    packages = ["eventLogger"],
+    include_package_data = True,
+    entry_points = {
+        "chandler.parcels": ["EventLogger API = eventLogger"]
+    }
+)
+

Property changes: trunk/chandler/projects/Chandler-EventLoggerPlugin/setup.py

Name: svn:executable
   + *

Property changes: trunk/chandler/projects/Chandler-FeedsPlugin

Name: svn:ignore
   - build
*.egg-info
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Property changes: trunk/chandler/projects/Chandler-FlickrPlugin

Name: svn:ignore
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Added: trunk/chandler/projects/Chandler-FlickrPlugin/README.txt (11411 => 11412)

--- trunk/chandler/projects/Chandler-FlickrPlugin/README.txt	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-FlickrPlugin/README.txt	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+This plugin provides support for Flickr photo searches by user or tag in Chandler.
+
+If you want to work on its code, you can use::
+
+    RunPython setup.py develop
+
+to install it in development mode (where you can make changes and have them
+take effect whenever Chandler is restarted), or you can use::
+
+    RunPython setup.py install
+
+to install it as an ``.egg`` file.
+
+Note that when installed as an egg file, changes made to the source code will
+not affect Chandler execution, until you run ``setup.py install`` or ``setup.py
+develop`` again.
+
+After making changes to this plugin, you should update its version number in
+``setup.py`` and in the chandler/Makefile, so that people using "quick builds"
+of Chandler will use your new version.
+
+If you want to run this plugin's tests use::
+
+    RunPython setup.py test
+
+For more information on the plugin development process, see the original
+proposal at:
+
+ http://lists.osafoundation.org/pipermail/chandler-dev/2006-March/005552.html
+
Property changes on: trunk/chandler/projects/Chandler-FlickrPlugin/README.txt
___________________________________________________________________
Name: svn:executable
   + *

Copied: trunk/chandler/projects/Chandler-FlickrPlugin/flickr (from rev 11410, trunk/chandler/parcels/flickr) ( => )

Added: trunk/chandler/projects/Chandler-FlickrPlugin/setup.py
===================================================================
--- trunk/chandler/projects/Chandler-FlickrPlugin/setup.py	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-FlickrPlugin/setup.py	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+#   Copyright (c) 2003-2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+from setuptools import setup
+
+setup(
+    name = "Chandler-FlickrPlugin",
+    version = "0.1",
+    description = "Flickr photo search widget for Chandler",
+    author = "OSAF",
+    test_suite = "flickr.tests",
+    packages = ["flickr"],
+    include_package_data = True,
+    entry_points = {
+        "chandler.parcels": ["Flickr Photo API = flickr"]
+    }
+)
+

Property changes: trunk/chandler/projects/Chandler-FlickrPlugin/setup.py

Name: svn:executable
   + *

Property changes: trunk/chandler/projects/Chandler-I18nTestsPlugin

Name: svn:ignore
   - *.pyc
*.pyo
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Property changes: trunk/chandler/projects/Chandler-PhotoPlugin

Name: svn:ignore
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe

Added: trunk/chandler/projects/Chandler-PhotoPlugin/README.txt (11411 => 11412)

--- trunk/chandler/projects/Chandler-PhotoPlugin/README.txt	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-PhotoPlugin/README.txt	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+This plugin provides support for photo loading in Chandler.
+
+If you want to work on its code, you can use::
+
+    RunPython setup.py develop
+
+to install it in development mode (where you can make changes and have them
+take effect whenever Chandler is restarted), or you can use::
+
+    RunPython setup.py install
+
+to install it as an ``.egg`` file.
+
+Note that when installed as an egg file, changes made to the source code will
+not affect Chandler execution, until you run ``setup.py install`` or ``setup.py
+develop`` again.
+
+After making changes to this plugin, you should update its version number in
+``setup.py`` and in the chandler/Makefile, so that people using "quick builds"
+of Chandler will use your new version.
+
+If you want to run this plugin's tests use::
+
+    RunPython setup.py test
+
+For more information on the plugin development process, see the original
+proposal at:
+
+ http://lists.osafoundation.org/pipermail/chandler-dev/2006-March/005552.html
+
Property changes on: trunk/chandler/projects/Chandler-PhotoPlugin/README.txt
___________________________________________________________________
Name: svn:executable
   + *

Copied: trunk/chandler/projects/Chandler-PhotoPlugin/photos (from rev 11410, trunk/chandler/parcels/photos) ( => )

Added: trunk/chandler/projects/Chandler-PhotoPlugin/setup.py
===================================================================
--- trunk/chandler/projects/Chandler-PhotoPlugin/setup.py	2006-08-14 22:26:58 UTC (rev 11411)
+++ trunk/chandler/projects/Chandler-PhotoPlugin/setup.py	2006-08-14 22:33:34 UTC (rev 11412)
@@ -0,0 +1,30 @@
+#   Copyright (c) 2003-2006 Open Source Applications Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+from setuptools import setup
+
+setup(
+    name = "Chandler-PhotoPlugin",
+    version = "0.1",
+    description = "Photograph loading for Chandler",
+    author = "OSAF",
+    test_suite = "photos.tests",
+    packages = ["photos"],
+    include_package_data = True,
+    entry_points = {
+        "chandler.parcels": ["Photo API = photos"]
+    }
+)
+

Property changes: trunk/chandler/projects/Chandler-PhotoPlugin/setup.py

Name: svn:executable
   + *

Property changes: trunk/chandler/projects/EggTranslations-Plugin

Name: svn:ignore
   - *.pyc
*.pyo
build
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe
   + *.pyc
*.pyo
*.egg-info
build
dist
PKG-INFO
SOURCES.txt
top_level.txt
zip-safe




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to