[Python-modules-commits] r18452 - in packages/python-mrjob/trunk (11 files)
janos-guest at users.alioth.debian.org
janos-guest at users.alioth.debian.org
Tue Sep 6 16:31:39 UTC 2011
Date: Tuesday, September 6, 2011 @ 16:31:38
Author: janos-guest
Revision: 18452
[svn-inject] Applying Debian modifications (0.2.7-1) to trunk
Added:
packages/python-mrjob/trunk/debian/
packages/python-mrjob/trunk/debian/changelog
packages/python-mrjob/trunk/debian/compat
packages/python-mrjob/trunk/debian/control
packages/python-mrjob/trunk/debian/copyright
packages/python-mrjob/trunk/debian/docs
packages/python-mrjob/trunk/debian/new file
packages/python-mrjob/trunk/debian/rules
packages/python-mrjob/trunk/debian/source/
packages/python-mrjob/trunk/debian/source/format
packages/python-mrjob/trunk/debian/watch
Property changes on: packages/python-mrjob/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-mrjob/trunk/debian/changelog
===================================================================
--- packages/python-mrjob/trunk/debian/changelog (rev 0)
+++ packages/python-mrjob/trunk/debian/changelog 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1,5 @@
+python-mrjob (0.2.7-1) unstable; urgency=low
+
+ * Initial release. (Closes: #640695)
+
+ -- Janos Guljas <janos at resenje.org> Tue, 06 Sep 2011 17:42:29 +0200
Added: packages/python-mrjob/trunk/debian/compat
===================================================================
--- packages/python-mrjob/trunk/debian/compat (rev 0)
+++ packages/python-mrjob/trunk/debian/compat 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1 @@
+7
Added: packages/python-mrjob/trunk/debian/control
===================================================================
--- packages/python-mrjob/trunk/debian/control (rev 0)
+++ packages/python-mrjob/trunk/debian/control 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1,22 @@
+Source: python-mrjob
+Section: python
+Priority: optional
+Maintainer: Janos Guljas <janos at resenje.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-setuptools
+Standards-Version: 3.9.2
+Homepage: http://packages.python.org/mrjob
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-mrjob/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-mrjob/trunk/
+
+Package: python-mrjob
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-boto, python-yaml,
+ python (>= 2.6) | python-simplejson
+Provides: ${python:Provides}
+Description: MapReduce framework for writing and running Hadoop Streaming jobs
+ Mrjob is a Python package that helps you write and run Hadoop Streaming jobs.
+ .
+ Mrjob fully supports Amazon's Elastic MapReduce (EMR) service, which allows
+ you to buy time on a Hadoop cluster on an hourly basis. It also works with
+ your own Hadoop cluster.
Added: packages/python-mrjob/trunk/debian/copyright
===================================================================
--- packages/python-mrjob/trunk/debian/copyright (rev 0)
+++ packages/python-mrjob/trunk/debian/copyright 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1,92 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: mrjob
+Upstream-Contact: David Marin <dave at yelp.com>
+Source: http://github.com/Yelp/mrjob/
+
+Files: *
+Copyright: 2009-2011 Yelp and Contributors
+License: Apache
+
+Files: mrjob/inline.py
+Copyright: 2011 Matthew Tai
+ 2011 Yelp
+License: Apache
+
+Files: mrjob/botoemr/__init__.py
+Copyright: 2010 Spotify AB
+License: Expat
+
+Files: mrjob/botoemr/bootstrap_action.py
+ mrjob/botoemr/connection.py
+ mrjob/botoemr/step.py
+Copyright: 2010 Spotify AB
+ 2011 Yelp
+License: Expat
+
+Files: mrjob/botoemr/emrobject.py
+Copyright: 2010 Spotify AB
+ 2010 Jeremy Thurgood <firxen+boto at gmail.com>
+ 2010-2011 Yelp
+License: Expat
+
+Files: debian/*
+Copyright: 2011 Janos Guljas <janos at resenje.org>
+License: BSD
+
+License: Apache
+ 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.
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish, dis-
+ tribute, sublicense, and/or sell copies of the Software, and to permit
+ persons to whom the Software is furnished to do so, subject to the fol-
+ lowing conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
+ ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+ SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ IN THE SOFTWARE.
+
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the Janos Guljas nor the names of his contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
Added: packages/python-mrjob/trunk/debian/docs
===================================================================
--- packages/python-mrjob/trunk/debian/docs (rev 0)
+++ packages/python-mrjob/trunk/debian/docs 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1 @@
+README.rst
Added: packages/python-mrjob/trunk/debian/new file
===================================================================
Added: packages/python-mrjob/trunk/debian/rules
===================================================================
--- packages/python-mrjob/trunk/debian/rules (rev 0)
+++ packages/python-mrjob/trunk/debian/rules 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2
+
+override_dh_installchangelogs:
+ dh_installchangelogs CHANGES.txt
Property changes on: packages/python-mrjob/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-mrjob/trunk/debian/source/format
===================================================================
--- packages/python-mrjob/trunk/debian/source/format (rev 0)
+++ packages/python-mrjob/trunk/debian/source/format 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-mrjob/trunk/debian/watch
===================================================================
--- packages/python-mrjob/trunk/debian/watch (rev 0)
+++ packages/python-mrjob/trunk/debian/watch 2011-09-06 16:31:38 UTC (rev 18452)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/m/mrjob/ mrjob-(.*).tar.gz
More information about the Python-modules-commits
mailing list