r2648 - in python-mechanize/tags (9 files)
arnau at users.alioth.debian.org
arnau at users.alioth.debian.org
Tue Mar 13 10:50:25 UTC 2012
Date: Tuesday, March 13, 2012 @ 10:50:22
Author: arnau
Revision: 2648
[svn-buildpackage] Tagging python-mechanize 1:0.2.5-2
Added:
python-mechanize/tags/1:0.2.5-2/
python-mechanize/tags/1:0.2.5-2/debian/NEWS
(from rev 2647, python-mechanize/trunk/debian/NEWS)
python-mechanize/tags/1:0.2.5-2/debian/changelog
(from rev 2647, python-mechanize/trunk/debian/changelog)
python-mechanize/tags/1:0.2.5-2/debian/control
(from rev 2647, python-mechanize/trunk/debian/control)
python-mechanize/tags/1:0.2.5-2/debian/python-mechanize.install
(from rev 2646, python-mechanize/trunk/debian/python-mechanize.install)
python-mechanize/tags/1:0.2.5-2/debian/source/options
(from rev 2646, python-mechanize/trunk/debian/source/options)
Deleted:
python-mechanize/tags/1:0.2.5-2/debian/NEWS
python-mechanize/tags/1:0.2.5-2/debian/changelog
python-mechanize/tags/1:0.2.5-2/debian/control
Deleted: python-mechanize/tags/1:0.2.5-2/debian/NEWS
===================================================================
--- python-mechanize/trunk/debian/NEWS 2012-03-09 06:11:01 UTC (rev 2645)
+++ python-mechanize/tags/1:0.2.5-2/debian/NEWS 2012-03-13 10:50:22 UTC (rev 2648)
@@ -1,9 +0,0 @@
-python-mechanize (0.2.5-2) unstable; urgency=low
-
- Since mechanize 0.2.0, ClientForm has been merged into mechanize. You
- can update source code based on ClientForm by replacing any occurrence
- of ClientForm by mechanize in your source code, and ensure any use of
- the module logging logger named "ClientForm" is updated to use the new
- logger name "mechanize.forms".
-
- -- Arnaud Fontaine <arnau at debian.org> Fri, 09 Mar 2012 14:49:26 +0900
Copied: python-mechanize/tags/1:0.2.5-2/debian/NEWS (from rev 2647, python-mechanize/trunk/debian/NEWS)
===================================================================
--- python-mechanize/tags/1:0.2.5-2/debian/NEWS (rev 0)
+++ python-mechanize/tags/1:0.2.5-2/debian/NEWS 2012-03-13 10:50:22 UTC (rev 2648)
@@ -0,0 +1,9 @@
+python-mechanize (1:0.2.5-2) unstable; urgency=low
+
+ Since mechanize 0.2.0, ClientForm has been merged into mechanize. You
+ can update source code based on ClientForm by replacing any occurrence
+ of ClientForm by mechanize in your source code, and ensure any use of
+ the module logging logger named "ClientForm" is updated to use the new
+ logger name "mechanize.forms".
+
+ -- Arnaud Fontaine <arnau at debian.org> Fri, 09 Mar 2012 14:49:26 +0900
Deleted: python-mechanize/tags/1:0.2.5-2/debian/changelog
===================================================================
--- python-mechanize/trunk/debian/changelog 2012-03-09 06:11:01 UTC (rev 2645)
+++ python-mechanize/tags/1:0.2.5-2/debian/changelog 2012-03-13 10:50:22 UTC (rev 2648)
@@ -1,254 +0,0 @@
-python-mechanize (0.2.5-2) unstable; urgency=low
-
- * Following the merge of ClientForm into mechanize, add a transitional
- dummy package to replace python-clientform.
- + Add debian/NEWS to explain how to update source code based on ClientForm.
- * debian/control:
- + Bump Standards-Version to 3.9.3.
- - debian/copyright: Update Format URL following DEP-5 release.
- + Add Vcs-Browser field.
-
- -- Arnaud Fontaine <arnau at debian.org> Fri, 09 Mar 2012 14:09:05 +0900
-
-python-mechanize (0.2.5-1) unstable; urgency=low
-
- [ Arnaud Fontaine ]
- * Convert debian/changelog to DEP5 format and add missing licenses.
- * Wrap Build-Depends and Uploaders control fields.
- * Add myself as Uploaders.
-
- [ Brian Sutherland ]
- * New upstream release (Closes: #595928,#465206)
- * Fix watch file to point at pypi
- * Change e-mail address to brian at vanguardistas.net.
- * Use Homepage header to point to mechanize homepage rather than including
- it in the long description. Closes: #615362
- * Remove dependency on python-clientform, it's included in mechanize now and
- deprecated as an external project.
- * Switch to dpkg-source 3.0 (quilt) format from dpatch.
- * Convert from python-central to debhelper 7 and dh_python2 (Closes: #617013)
- * Add debian/tests
-
- -- Arnaud Fontaine <arnau at debian.org> Mon, 05 Sep 2011 12:28:25 +0900
-
-python-mechanize (0.1.11-1.1) unstable; urgency=low
-
- * Non-maintainer upload.
- * Be less selective when renaming *.egg-info files (closes: #552912).
-
- -- Jakub Wilk <ubanus at users.sf.net> Mon, 21 Dec 2009 20:35:08 +0100
-
-python-mechanize (0.1.11-1) unstable; urgency=low
-
- * New upstream release, uploaded to unstable.
- - Closes: #518945.
-
- -- Matthias Klose <doko at ubuntu.com> Tue, 22 Sep 2009 00:14:06 +0200
-
-python-mechanize (0.1.11-0ubuntu1) jaunty; urgency=low
-
- [ Ken VanDine ]
- * New upstream release (LP: #337918)
- - Fix quadratic performance in number of .read() calls (and add an
- automated performance test).
- - Add support for Python 2.6: Raise URLError on file: URL errors,
- not IOError (port of upstream urllib2 fix). Add support for
- Python 2.6's per-connection timeouts: Add timeout arguments to
- urlopen(), Request constructor, .open(), and .open_novisit().
- - Drop support for Python 2.3
- - Add Content-length header to Request object (httplib bug that
- prevented doing that was fixed in Python 2.4). There's no
- change is what is actually sent over the wire here, just in what
- headers get added to the Request object.
- - Fix AttributeError on .retrieve() with a Request (as opposed to
- URL string) argument
- - Don't change CookieJar state in .make_cookies().
- - Fix AttributeError in case where .make_cookies() or
- .cookies_for_request() is called before other methods like
- .extract_cookies() or .make_cookie_header()
- - Fixes affecting version cookie-attribute
- (http://bugs.python.org/issue3924).
- - Silence module logging's "no handlers could be found for logger
- mechanize" warning in a way that doesn't clobber attempts to set
- log level sometimes
- - Don't use private attribute of request in request upgrade
- handler (what was I thinking??)
- - Don't call setup() on import of setup.py
- - Add new public function effective_request_host
- - Add .get_policy() method to CookieJar
- - Add method CookieJar.cookies_for_request()
- - Fix documented interface required of requests and responses (and
- add some tests for this!)
- - Allow either .is_unverifiable() or .unverifiable on request
- objects (preferring the former)
- - Note that there's a new functional test for digest auth, which
- fails when run against the sourceforge site (which is the
- default). It looks like this reflects the fact that digest auth
- has been fairly broken since it was introduced in urllib2. I
- don't plan to fix this myself.
- - Fix ImportError if sqlite3 not available
- - Fix a couple of functional tests not to wait 5 seconds each
- - Close sockets. This only affects Python 2.5 (and later) -
- earlier versions of Python were unaffected. See
- http://bugs.python.org/issue1627441
- - Make title parsing follow Firefox behaviour wrt child
- elements (previously the behaviour differed between Factory and
- RobustFactory).
- - Fix BeautifulSoup RobustLinksFactory (hence RobustFactory) link
- text parsing for case of link text containing tags (Titus Brown)
- - Fix issue where more tags after <title> caused default parser to
- raise an exception
- - Handle missing cookie max-age value. Previously, a warning was
- emitted in this case.
- - Fix thoroughly broken digest auth (still need functional
- test!) (trebor74hr at ...)
- - Handle cookies containing embedded tabs in mozilla format files
- - Remove an assertion about mozilla format cookies file
- contents (raise LoadError instead)
- - Fix MechanizeRobotFileParser.set_opener()
- - Fix selection of global form using .select_form() (Titus Brown)
- - Log skipped Refreshes
- - Stop tests from clobbering files that happen to be lying around
- in cwd (!)
- - Use SO_REUSEADDR for local test server.
- - Raise exception if local test server fails to start.
- - Tests no longer (accidentally) depend on third-party coverage
- module
- - Add convenience method Browser.open_local_file(filename)
- - Add experimental support for Firefox 3 cookie jars
- ("cookies.sqlite"). Requires Python 2.5
- - Fix a _gzip.py NameError (gzip support is experimental)
- * debian/patches/drop-Gopher.dpatch:
- * removed, fixed upstream
-
- [ Martin Pitt ]
- * debian/control: Fix XS-Python-Version to only build for Python >= 2.5.
-
- -- Ken VanDine <ken.vandine at canonical.com> Mon, 09 Mar 2009 16:34:31 -0400
-
-python-mechanize (0.1.7b-3ubuntu1) jaunty; urgency=low
-
- * Add drop-Gopher.dpatch: Drop GopherError and GopherHandler, since
- Python 2.6's version does not define that any more. (LP: #336225)
- * debian/rules: Use glob instead of hardcoded site-packages/, python2.6 uses
- dist-packages now.
- * debian/rules: Supply --install-layout=deb.
-
- -- Martin Pitt <martin.pitt at ubuntu.com> Sun, 01 Mar 2009 18:17:43 +0100
-
-python-mechanize (0.1.7b-3) unstable; urgency=low
-
- * Rebuild to move files into /usr/share/pyshared. Closes: #490495.
-
- -- Matthias Klose <doko at debian.org> Sat, 12 Jul 2008 13:33:14 +0200
-
-python-mechanize (0.1.7b-2) unstable; urgency=low
-
- * debian/patches/mechanize_seek.dpatch: applied a patch from the twill
- maintainer to add file.seek(0) because ``file'' position may not be at
- the beginning; thanks Arnaud Fontaine. (Closes: #456944)
-
- -- Fabio Tranchitella <kobold at debian.org> Tue, 18 Dec 2007 19:15:17 +0100
-
-python-mechanize (0.1.7b-1) unstable; urgency=low
-
- * New upstream release. (Closes: #446523)
- * Ship functional tests in examples. (Closes: #449551)
-
- -- Fabio Tranchitella <kobold at debian.org> Tue, 18 Dec 2007 14:23:11 +0100
-
-python-mechanize (0.1.6b-1) unstable; urgency=low
-
- * New upstream release. (Closes: #418457)
- * Drop obsolete patch to mechanize/_html.py, mechanize/_util.py and
- mechanize/_mechanize.py.
- * Re-generate README.txt using "lynx -dump" as upstream forget to do it.
- * Use dh_installexamples to install examples instead of dh_installdocs.
- * Remove dh_python from debian/rules.
- * Update python-clientform dependency.
- * Update email address in Uploaders.
-
- -- Jérémy Bobbio <lunar at debian.org> Tue, 10 Apr 2007 01:34:43 +0200
-
-python-mechanize (0.1.2b-2) unstable; urgency=low
-
- [ Brian Sutherland ]
- * Remove unused python-clientcookie and python-pullparser dependencies
- as they are included in this version.
- * Add these files to installed documentation:
- GeneralFAQ.html
- README.html
- README.txt
- doc.html
- 0.1-changes.txt
- examples
-
- [ Jérémy Bobbio ]
- * Move python-setuptools to Build-Depends. (Closes: #392628)
- * Add XS-Vcs-Svn field to debian/control.
-
- -- Jérémy Bobbio <jeremy.bobbio at etu.upmc.fr> Sat, 14 Oct 2006 04:32:09 +0200
-
-python-mechanize (0.1.2b-1) unstable; urgency=low
-
- * New upstream release, patched to be compatible with Zope 3.3.0.
-
- -- Fabio Tranchitella <kobold at debian.org> Fri, 29 Sep 2006 14:40:53 +0200
-
-python-mechanize (0.0.11a-3) unstable; urgency=low
-
- * Update to new python policy using python-central (Closes: 373327)
- * Revert debian specific patch and build with setuptools.
-
- -- Brian Sutherland <jinty at web.de> Wed, 14 Jun 2006 17:34:14 +0200
-
-python-mechanize (0.0.11a-2) unstable; urgency=low
-
- [Brian Sutherland]
- * New upstream version (closes: #334241).
- * Added watch file.
- * Upstream changed setup.py to use easy_setup:
- - Remove the build deps clientform, clientcookie, pullparser. Hooray!
- * Patch the setup.py to use distutils instead of setuptools.
- (Temporary workaround until setuptools supports
- --single-version-externally-managed.)
- * Bump dependencies in to the ones mentioned in setup.py.
-
- -- Fabio Tranchitella <kobold at debian.org> Fri, 3 Feb 2006 10:58:35 +0000
-
-python-mechanize (0.0.11a-1) unstable; urgency=low
-
- * New upstream release.
-
- -- Fabio Tranchitella <kobold at debian.org> Wed, 18 Jan 2006 15:37:33 +0000
-
-python-mechanize (0.0.11a-1) unstable; urgency=low
-
- * New upstream version (closes: #334241).
- * Added watch file.
- * Upstream changed setup.py to use easy_setup:
- - Remove the build deps clientform, clientcookie, pullparser. Hooray!
- * Patch the setup.py to use distutils instead of setuptools.
- (Temporary workaround until setuptools supports
- --single-version-externally-managed.)
- * Bump dependencies in to the ones mentioned in setup.py.
-
- -- Brian Sutherland <jinty at web.de> Fri, 30 Dec 2005 12:33:16 +0100
-
-python-mechanize (0.0.9a-2) unstable; urgency=low
-
- * Build for python2.4 as well.
-
- -- Brian Sutherland <jinty at web.de> Tue, 27 Dec 2005 19:09:00 +0100
-
-python-mechanize (0.0.9a-1) unstable; urgency=low
-
- * Initial packaging.
-
- -- Brian Sutherland <jinty at web.de> Mon, 24 Oct 2005 12:52:25 +0200
-
-python-skeleton (0.0.0.0-1) unstable; urgency=low
-
- * Initial creation of skeleton python packaging dir.
-
- -- Brian Sutherland <jinty at web.de> Sat, 6 Aug 2005 02:14:33 +0100
Copied: python-mechanize/tags/1:0.2.5-2/debian/changelog (from rev 2647, python-mechanize/trunk/debian/changelog)
===================================================================
--- python-mechanize/tags/1:0.2.5-2/debian/changelog (rev 0)
+++ python-mechanize/tags/1:0.2.5-2/debian/changelog 2012-03-13 10:50:22 UTC (rev 2648)
@@ -0,0 +1,257 @@
+python-mechanize (1:0.2.5-2) unstable; urgency=low
+
+ * Following the merge of ClientForm into mechanize, add a transitional
+ dummy package to replace python-clientform.
+ + Add debian/NEWS for updating source code based on ClientForm.
+ + Add epoch as deprecated version of clientform is greater than mechanize.
+ * debian/control:
+ + Bump Standards-Version to 3.9.3.
+ - debian/copyright: Update Format URL following DEP-5 release.
+ + Add Vcs-Browser field.
+ * Add debian/source/options to ignore changes in *.egg-info directory
+ otherwise building twice fails.
+
+ -- Arnaud Fontaine <arnau at debian.org> Tue, 13 Mar 2012 10:19:55 +0900
+
+python-mechanize (0.2.5-1) unstable; urgency=low
+
+ [ Arnaud Fontaine ]
+ * Convert debian/changelog to DEP5 format and add missing licenses.
+ * Wrap Build-Depends and Uploaders control fields.
+ * Add myself as Uploaders.
+
+ [ Brian Sutherland ]
+ * New upstream release (Closes: #595928,#465206)
+ * Fix watch file to point at pypi
+ * Change e-mail address to brian at vanguardistas.net.
+ * Use Homepage header to point to mechanize homepage rather than including
+ it in the long description. Closes: #615362
+ * Remove dependency on python-clientform, it's included in mechanize now and
+ deprecated as an external project.
+ * Switch to dpkg-source 3.0 (quilt) format from dpatch.
+ * Convert from python-central to debhelper 7 and dh_python2 (Closes: #617013)
+ * Add debian/tests
+
+ -- Arnaud Fontaine <arnau at debian.org> Mon, 05 Sep 2011 12:28:25 +0900
+
+python-mechanize (0.1.11-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Be less selective when renaming *.egg-info files (closes: #552912).
+
+ -- Jakub Wilk <ubanus at users.sf.net> Mon, 21 Dec 2009 20:35:08 +0100
+
+python-mechanize (0.1.11-1) unstable; urgency=low
+
+ * New upstream release, uploaded to unstable.
+ - Closes: #518945.
+
+ -- Matthias Klose <doko at ubuntu.com> Tue, 22 Sep 2009 00:14:06 +0200
+
+python-mechanize (0.1.11-0ubuntu1) jaunty; urgency=low
+
+ [ Ken VanDine ]
+ * New upstream release (LP: #337918)
+ - Fix quadratic performance in number of .read() calls (and add an
+ automated performance test).
+ - Add support for Python 2.6: Raise URLError on file: URL errors,
+ not IOError (port of upstream urllib2 fix). Add support for
+ Python 2.6's per-connection timeouts: Add timeout arguments to
+ urlopen(), Request constructor, .open(), and .open_novisit().
+ - Drop support for Python 2.3
+ - Add Content-length header to Request object (httplib bug that
+ prevented doing that was fixed in Python 2.4). There's no
+ change is what is actually sent over the wire here, just in what
+ headers get added to the Request object.
+ - Fix AttributeError on .retrieve() with a Request (as opposed to
+ URL string) argument
+ - Don't change CookieJar state in .make_cookies().
+ - Fix AttributeError in case where .make_cookies() or
+ .cookies_for_request() is called before other methods like
+ .extract_cookies() or .make_cookie_header()
+ - Fixes affecting version cookie-attribute
+ (http://bugs.python.org/issue3924).
+ - Silence module logging's "no handlers could be found for logger
+ mechanize" warning in a way that doesn't clobber attempts to set
+ log level sometimes
+ - Don't use private attribute of request in request upgrade
+ handler (what was I thinking??)
+ - Don't call setup() on import of setup.py
+ - Add new public function effective_request_host
+ - Add .get_policy() method to CookieJar
+ - Add method CookieJar.cookies_for_request()
+ - Fix documented interface required of requests and responses (and
+ add some tests for this!)
+ - Allow either .is_unverifiable() or .unverifiable on request
+ objects (preferring the former)
+ - Note that there's a new functional test for digest auth, which
+ fails when run against the sourceforge site (which is the
+ default). It looks like this reflects the fact that digest auth
+ has been fairly broken since it was introduced in urllib2. I
+ don't plan to fix this myself.
+ - Fix ImportError if sqlite3 not available
+ - Fix a couple of functional tests not to wait 5 seconds each
+ - Close sockets. This only affects Python 2.5 (and later) -
+ earlier versions of Python were unaffected. See
+ http://bugs.python.org/issue1627441
+ - Make title parsing follow Firefox behaviour wrt child
+ elements (previously the behaviour differed between Factory and
+ RobustFactory).
+ - Fix BeautifulSoup RobustLinksFactory (hence RobustFactory) link
+ text parsing for case of link text containing tags (Titus Brown)
+ - Fix issue where more tags after <title> caused default parser to
+ raise an exception
+ - Handle missing cookie max-age value. Previously, a warning was
+ emitted in this case.
+ - Fix thoroughly broken digest auth (still need functional
+ test!) (trebor74hr at ...)
+ - Handle cookies containing embedded tabs in mozilla format files
+ - Remove an assertion about mozilla format cookies file
+ contents (raise LoadError instead)
+ - Fix MechanizeRobotFileParser.set_opener()
+ - Fix selection of global form using .select_form() (Titus Brown)
+ - Log skipped Refreshes
+ - Stop tests from clobbering files that happen to be lying around
+ in cwd (!)
+ - Use SO_REUSEADDR for local test server.
+ - Raise exception if local test server fails to start.
+ - Tests no longer (accidentally) depend on third-party coverage
+ module
+ - Add convenience method Browser.open_local_file(filename)
+ - Add experimental support for Firefox 3 cookie jars
+ ("cookies.sqlite"). Requires Python 2.5
+ - Fix a _gzip.py NameError (gzip support is experimental)
+ * debian/patches/drop-Gopher.dpatch:
+ * removed, fixed upstream
+
+ [ Martin Pitt ]
+ * debian/control: Fix XS-Python-Version to only build for Python >= 2.5.
+
+ -- Ken VanDine <ken.vandine at canonical.com> Mon, 09 Mar 2009 16:34:31 -0400
+
+python-mechanize (0.1.7b-3ubuntu1) jaunty; urgency=low
+
+ * Add drop-Gopher.dpatch: Drop GopherError and GopherHandler, since
+ Python 2.6's version does not define that any more. (LP: #336225)
+ * debian/rules: Use glob instead of hardcoded site-packages/, python2.6 uses
+ dist-packages now.
+ * debian/rules: Supply --install-layout=deb.
+
+ -- Martin Pitt <martin.pitt at ubuntu.com> Sun, 01 Mar 2009 18:17:43 +0100
+
+python-mechanize (0.1.7b-3) unstable; urgency=low
+
+ * Rebuild to move files into /usr/share/pyshared. Closes: #490495.
+
+ -- Matthias Klose <doko at debian.org> Sat, 12 Jul 2008 13:33:14 +0200
+
+python-mechanize (0.1.7b-2) unstable; urgency=low
+
+ * debian/patches/mechanize_seek.dpatch: applied a patch from the twill
+ maintainer to add file.seek(0) because ``file'' position may not be at
+ the beginning; thanks Arnaud Fontaine. (Closes: #456944)
+
+ -- Fabio Tranchitella <kobold at debian.org> Tue, 18 Dec 2007 19:15:17 +0100
+
+python-mechanize (0.1.7b-1) unstable; urgency=low
+
+ * New upstream release. (Closes: #446523)
+ * Ship functional tests in examples. (Closes: #449551)
+
+ -- Fabio Tranchitella <kobold at debian.org> Tue, 18 Dec 2007 14:23:11 +0100
+
+python-mechanize (0.1.6b-1) unstable; urgency=low
+
+ * New upstream release. (Closes: #418457)
+ * Drop obsolete patch to mechanize/_html.py, mechanize/_util.py and
+ mechanize/_mechanize.py.
+ * Re-generate README.txt using "lynx -dump" as upstream forget to do it.
+ * Use dh_installexamples to install examples instead of dh_installdocs.
+ * Remove dh_python from debian/rules.
+ * Update python-clientform dependency.
+ * Update email address in Uploaders.
+
+ -- Jérémy Bobbio <lunar at debian.org> Tue, 10 Apr 2007 01:34:43 +0200
+
+python-mechanize (0.1.2b-2) unstable; urgency=low
+
+ [ Brian Sutherland ]
+ * Remove unused python-clientcookie and python-pullparser dependencies
+ as they are included in this version.
+ * Add these files to installed documentation:
+ GeneralFAQ.html
+ README.html
+ README.txt
+ doc.html
+ 0.1-changes.txt
+ examples
+
+ [ Jérémy Bobbio ]
+ * Move python-setuptools to Build-Depends. (Closes: #392628)
+ * Add XS-Vcs-Svn field to debian/control.
+
+ -- Jérémy Bobbio <jeremy.bobbio at etu.upmc.fr> Sat, 14 Oct 2006 04:32:09 +0200
+
+python-mechanize (0.1.2b-1) unstable; urgency=low
+
+ * New upstream release, patched to be compatible with Zope 3.3.0.
+
+ -- Fabio Tranchitella <kobold at debian.org> Fri, 29 Sep 2006 14:40:53 +0200
+
+python-mechanize (0.0.11a-3) unstable; urgency=low
+
+ * Update to new python policy using python-central (Closes: 373327)
+ * Revert debian specific patch and build with setuptools.
+
+ -- Brian Sutherland <jinty at web.de> Wed, 14 Jun 2006 17:34:14 +0200
+
+python-mechanize (0.0.11a-2) unstable; urgency=low
+
+ [Brian Sutherland]
+ * New upstream version (closes: #334241).
+ * Added watch file.
+ * Upstream changed setup.py to use easy_setup:
+ - Remove the build deps clientform, clientcookie, pullparser. Hooray!
+ * Patch the setup.py to use distutils instead of setuptools.
+ (Temporary workaround until setuptools supports
+ --single-version-externally-managed.)
+ * Bump dependencies in to the ones mentioned in setup.py.
+
+ -- Fabio Tranchitella <kobold at debian.org> Fri, 3 Feb 2006 10:58:35 +0000
+
+python-mechanize (0.0.11a-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Fabio Tranchitella <kobold at debian.org> Wed, 18 Jan 2006 15:37:33 +0000
+
+python-mechanize (0.0.11a-1) unstable; urgency=low
+
+ * New upstream version (closes: #334241).
+ * Added watch file.
+ * Upstream changed setup.py to use easy_setup:
+ - Remove the build deps clientform, clientcookie, pullparser. Hooray!
+ * Patch the setup.py to use distutils instead of setuptools.
+ (Temporary workaround until setuptools supports
+ --single-version-externally-managed.)
+ * Bump dependencies in to the ones mentioned in setup.py.
+
+ -- Brian Sutherland <jinty at web.de> Fri, 30 Dec 2005 12:33:16 +0100
+
+python-mechanize (0.0.9a-2) unstable; urgency=low
+
+ * Build for python2.4 as well.
+
+ -- Brian Sutherland <jinty at web.de> Tue, 27 Dec 2005 19:09:00 +0100
+
+python-mechanize (0.0.9a-1) unstable; urgency=low
+
+ * Initial packaging.
+
+ -- Brian Sutherland <jinty at web.de> Mon, 24 Oct 2005 12:52:25 +0200
+
+python-skeleton (0.0.0.0-1) unstable; urgency=low
+
+ * Initial creation of skeleton python packaging dir.
+
+ -- Brian Sutherland <jinty at web.de> Sat, 6 Aug 2005 02:14:33 +0100
Deleted: python-mechanize/tags/1:0.2.5-2/debian/control
===================================================================
--- python-mechanize/trunk/debian/control 2012-03-09 06:11:01 UTC (rev 2645)
+++ python-mechanize/tags/1:0.2.5-2/debian/control 2012-03-13 10:50:22 UTC (rev 2648)
@@ -1,44 +0,0 @@
-Source: python-mechanize
-Section: python
-Priority: extra
-Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
-Uploaders: Brian Sutherland <brian at vanguardistas.net>,
- Fabio Tranchitella <kobold at debian.org>,
- Jérémy Bobbio <lunar at debian.org>,
- Matthias Klose <doko at ubuntu.com>,
- Arnaud Fontaine <arnau at debian.org>
-Build-Depends: debhelper (>= 7.0.50~),
- python-all (>= 2.6.6-3~),
- python-setuptools
-Standards-Version: 3.9.3
-X-Python-Version: >= 2.5
-Vcs-Svn: svn://svn.debian.org/pkg-zope/python-mechanize/trunk
-Vcs-Browser: http://svn.debian.org/viewsvn/pkg-zope/python-mechanize/trunk
-Homepage: http://wwwsearch.sourceforge.net/mechanize/
-
-Package: python-mechanize
-Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
-Provides: ${python:Provides}, python-clientform
-Replaces: python-clientform (<< 0.2.5-2)
-Breaks: python-clientform (<< 0.2.5-2)
-Description: stateful programmatic web browsing
- A library for browsing the web in Python. Mechanize acts like a browser
- allowing you to do web scraping, functional testing of web sites and
- things no one has thought of yet.
- .
- Among other things, mechanize:
- * Follows links
- * Fills in HTML forms
- * Automatically observes robots.txt
- * Has a browser history
- .
- It was modelled after the Perl module WWW::Mechanize.
-
-Package: python-clientform
-Architecture: all
-Depends: ${misc:Depends}, python-mechanize
-Section: oldlibs
-Description: transitional dummy package
- This package is a dummy transitional package following the merge of ClientForm
- into mechanize 0.2.0. It can be safely removed.
Copied: python-mechanize/tags/1:0.2.5-2/debian/control (from rev 2647, python-mechanize/trunk/debian/control)
===================================================================
--- python-mechanize/tags/1:0.2.5-2/debian/control (rev 0)
+++ python-mechanize/tags/1:0.2.5-2/debian/control 2012-03-13 10:50:22 UTC (rev 2648)
@@ -0,0 +1,44 @@
+Source: python-mechanize
+Section: python
+Priority: extra
+Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
+Uploaders: Brian Sutherland <brian at vanguardistas.net>,
+ Fabio Tranchitella <kobold at debian.org>,
+ Jérémy Bobbio <lunar at debian.org>,
+ Matthias Klose <doko at ubuntu.com>,
+ Arnaud Fontaine <arnau at debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+ python-all (>= 2.6.6-3~),
+ python-setuptools
+Standards-Version: 3.9.3
+X-Python-Version: >= 2.5
+Vcs-Svn: svn://svn.debian.org/pkg-zope/python-mechanize/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-zope/python-mechanize/trunk
+Homepage: http://wwwsearch.sourceforge.net/mechanize/
+
+Package: python-mechanize
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}, python-clientform
+Replaces: python-clientform (<< 1:0.2.5-2)
+Breaks: python-clientform (<< 1:0.2.5-2)
+Description: stateful programmatic web browsing
+ A library for browsing the web in Python. Mechanize acts like a browser
+ allowing you to do web scraping, functional testing of web sites and
+ things no one has thought of yet.
+ .
+ Among other things, mechanize:
+ * Follows links
+ * Fills in HTML forms
+ * Automatically observes robots.txt
+ * Has a browser history
+ .
+ It was modelled after the Perl module WWW::Mechanize.
+
+Package: python-clientform
+Architecture: all
+Depends: ${misc:Depends}, python-mechanize
+Section: oldlibs
+Description: transitional dummy package
+ This package is a dummy transitional package following the merge of ClientForm
+ into mechanize 0.2.0. It can be safely removed.
Copied: python-mechanize/tags/1:0.2.5-2/debian/python-mechanize.install (from rev 2646, python-mechanize/trunk/debian/python-mechanize.install)
===================================================================
--- python-mechanize/tags/1:0.2.5-2/debian/python-mechanize.install (rev 0)
+++ python-mechanize/tags/1:0.2.5-2/debian/python-mechanize.install 2012-03-13 10:50:22 UTC (rev 2648)
@@ -0,0 +1 @@
+usr/
Copied: python-mechanize/tags/1:0.2.5-2/debian/source/options (from rev 2646, python-mechanize/trunk/debian/source/options)
===================================================================
--- python-mechanize/tags/1:0.2.5-2/debian/source/options (rev 0)
+++ python-mechanize/tags/1:0.2.5-2/debian/source/options 2012-03-13 10:50:22 UTC (rev 2648)
@@ -0,0 +1 @@
+extend-diff-ignore = "\.egg-info"
More information about the pkg-zope-developers
mailing list