--- rope-0.9.2.orig/debian/changelog +++ rope-0.9.2/debian/changelog @@ -0,0 +1,57 @@ +rope (0.9.2-2ubuntu1) trusty; urgency=medium + + * Merge from Debian unstable. Remaining changes: + - {debian/docs,setup.py}: Install package documentation in /usr/share/doc/ + rather than /usr/share/pyshared/rope/docs/. + + -- Logan Rosen Mon, 23 Dec 2013 15:22:49 -0500 + +rope (0.9.2-2) unstable; urgency=low + + * Team upload. + * Convert to dh_python2 (Closes: #617053). + + -- Andrea Colangelo Sun, 09 Jun 2013 22:55:00 +0200 + +rope (0.9.2-1ubuntu1) maverick; urgency=low + + * Install package documentation in /usr/share/doc/ rather than + /usr/share/pyshared/rope/docs/ . Thanks to Johannes Mockenhaupt for + the patch! (LP: #413154) + + -- Bilal Akhtar Wed, 15 Sep 2010 10:33:58 +0300 + +rope (0.9.2-1) unstable; urgency=low + + [David Spreen] + * New upstream version (Closes: #516205). + * debian/control + - depend on ${misc:Depends} + - build-depend on debhelper >= 7 to match debian/compat + + [Sandro Tosi] + * debian/control + - switch Vcs-Browser field to viewsvn + + -- David Spreen Fri, 20 Feb 2009 09:39:11 -0800 + +rope (0.8.4-3) unstable; urgency=low + + [ David Spreen ] + * debian/control: Recommend git-core instead of git (Closes: #494570). + + -- David Spreen Wed, 13 Aug 2008 14:24:01 -0700 + +rope (0.8.4-2) unstable; urgency=low + + [ David Spreen ] + * debian/control: Changed section to devel after discussion on debian-python@lists. + + -- David Spreen Fri, 01 Aug 2008 11:53:08 -0700 + +rope (0.8.4-1) unstable; urgency=low + + [ David Spreen ] + * Initial release (Closes: #467377). + + -- David Spreen Fri, 01 Aug 2008 10:44:47 -0700 --- rope-0.9.2.orig/debian/compat +++ rope-0.9.2/debian/compat @@ -0,0 +1 @@ +7 --- rope-0.9.2.orig/debian/control +++ rope-0.9.2/debian/control @@ -0,0 +1,26 @@ +Source: rope +Section: devel +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: David Spreen +Uploaders: Debian Python Modules Team +Build-Depends: cdbs (>= 0.4.90~), debhelper (>= 7.0.0), python (>= 2.6.6-3~) +X-Python-Version: >=2.5 +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/python-modules/packages/rope/trunk +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/rope/trunk/ +Homepage: http://rope.sourceforge.net/ + +Package: python-rope +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Recommends: python-svn, mercurial, git-core +Description: Python refactoring library + Rope is a Python refactoring library that can be used with several editors + and IDEs. It provides many refactoring operations as well as forms of code + assistance like auto-completion and access to documentation. To make use of + refactoring in Mercurial, Git and Svn repositories, the recommended packages + must be installed. For a complete list of features, see the project homepage. + . + In Debian, this package is used by the Python-ropemacs package, an Emacs mode + that adds Python refactoring and IDE features to the Emacs editor. --- rope-0.9.2.orig/debian/copyright +++ rope-0.9.2/debian/copyright @@ -0,0 +1,40 @@ +This package was debianized by David Spreen on +Tue, 29 Jul 2008 15:14:05 -0700. + +It was downloaded from http://rope.sourceforge.net/ + +Upstream Author: + + Ali Gholami Rudi + +Upstream Contributors: + + Alexander Solovyov + Sebastjan Trepca + +Copyright: + + Copyright (C) 2006-2008 Ali Gholami Rudi + + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, David Spreen and +is licensed under the GPL, see above. --- rope-0.9.2.orig/debian/docs +++ rope-0.9.2/debian/docs @@ -0,0 +1,6 @@ +README.txt +docs/contributing.txt +docs/done.txt +docs/library.txt +docs/overview.txt +docs/rope.txt --- rope-0.9.2.orig/debian/rules +++ rope-0.9.2/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk --- rope-0.9.2.orig/debian/watch +++ rope-0.9.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/rope/rope-(.*)\.tar\.gz --- rope-0.9.2.orig/setup.py +++ rope-0.9.2/setup.py @@ -52,7 +52,6 @@ url='http://rope.sf.net/', packages=['rope', 'rope.base', 'rope.base.oi', 'rope.refactor', 'rope.refactor.importutils', 'rope.contrib'], - package_data={'rope': ['docs/*.txt']}, license='GNU GPL', classifiers=classifiers, **extra_kwargs)