Control: tags 804357 + pending
Control: tags 849526 + pending

Dear maintainer,

I've prepared an NMU for beanbag (versioned as 1.9.2-1.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
regards,
                        Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540      .''`.
more about me:  https://mapreri.org                             : :'  :
Launchpad user: https://launchpad.net/~mapreri                  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-
diffstat for beanbag-1.9.2 beanbag-1.9.2

 changelog                        |   12 ++++++++++++
 control                          |   10 +++++-----
 patches/fix-code-in-example-file |   22 ++++++++++++++++++++++
 patches/series                   |    1 +
 4 files changed, 40 insertions(+), 5 deletions(-)

diff -Nru beanbag-1.9.2/debian/changelog beanbag-1.9.2/debian/changelog
--- beanbag-1.9.2/debian/changelog	2015-03-31 15:09:41.000000000 +0200
+++ beanbag-1.9.2/debian/changelog	2017-03-09 13:17:47.000000000 +0100
@@ -1,3 +1,15 @@
+beanbag (1.9.2-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Build depend on python3-requests to fix FTBFS.  Closes: #804357
+  * Fix code in example file.
+    Thanks to Russell Stuart for the patch.  Closes: #849526
+  * Mark python-beanbag-doc as Multi-Arch:foreign.
+  * De-duplicate the synopsis of the modules packages (python2 vs python3).
+  * Bump Standards-Version to 3.9.8, no changes needed.
+
+ -- Mattia Rizzolo <mat...@debian.org>  Thu, 09 Mar 2017 13:17:47 +0100
+
 beanbag (1.9.2-1) unstable; urgency=low
 
   * New upstream. Various bug fixes and improvements.
diff -Nru beanbag-1.9.2/debian/control beanbag-1.9.2/debian/control
--- beanbag-1.9.2/debian/control	2015-03-31 15:08:42.000000000 +0200
+++ beanbag-1.9.2/debian/control	2017-03-09 13:17:47.000000000 +0100
@@ -2,8 +2,8 @@
 Maintainer: Anthony Towns <a...@debian.org>
 Section: python
 Priority: optional
-Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), dh-python, python3-all, python3-setuptools, python-docutils, python-sphinx (>= 1.1), python-pytest, python3-pytest, python-requests
-Standards-Version: 3.9.6
+Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), dh-python, python3-all, python3-setuptools, python-docutils, python-sphinx (>= 1.1), python-pytest, python3-pytest, python-requests, python3-requests
+Standards-Version: 3.9.8
 Vcs-Git: https://github.com/ajtowns/beanbag.git
 Homepage: https://pypi.python.org/pypi/beanbag
 
@@ -11,7 +11,7 @@
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}
 Suggests: python-beanbag-doc, python-requests-oauthlib
-Description: Helper module for accessing REST APIs
+Description: Helper module for accessing REST APIs - python2
  BeanBag is a simple module that lets you access REST APIs in an easy
  way. See `http://beanbag.readthedocs.org/` for more information.
  .
@@ -21,7 +21,7 @@
 Architecture: all
 Depends: ${misc:Depends}, ${python3:Depends}
 Suggests: python-beanbag-doc, python3-requests-oauthlib
-Description: Helper module for accessing REST APIs
+Description: Helper module for accessing REST APIs - python3
  BeanBag is a simple module that lets you access REST APIs in an easy
  way. See `http://beanbag.readthedocs.org/` for more information.
  .
@@ -29,6 +29,7 @@
 
 Package: python-beanbag-doc
 Architecture: all
+Multi-Arch: foreign
 Section: doc
 Depends: ${misc:Depends}, ${sphinxdoc:Depends}
 Description: Documentation for Python BeanBag module
@@ -36,4 +37,3 @@
  way. See `http://beanbag.readthedocs.org/` for more information.
  .
  This package installs the module's documentation.
-
diff -Nru beanbag-1.9.2/debian/patches/fix-code-in-example-file beanbag-1.9.2/debian/patches/fix-code-in-example-file
--- beanbag-1.9.2/debian/patches/fix-code-in-example-file	1970-01-01 01:00:00.000000000 +0100
+++ beanbag-1.9.2/debian/patches/fix-code-in-example-file	2017-03-09 13:17:47.000000000 +0100
@@ -0,0 +1,22 @@
+From: Mattia Rizzolo <mat...@debian.org>
+Date: Thu, 9 Mar 2017 13:16:21 +0100
+X-Dgit-Generated: 1.9.2-1.1 273b61f7d451c9d273083bb44de2fb946592f3c7
+Subject: Fix code in example file
+
+Closes: #849526
+Thanks: Russell Stuart for the patch.
+Signed-off-by: Mattia Rizzolo <mat...@debian.org>
+
+---
+
+--- beanbag-1.9.2.orig/docs/index.rst
++++ beanbag-1.9.2/docs/index.rst
+@@ -25,7 +25,7 @@ A simple example:
+ 
+    >>> import beanbag.v2 as beanbag # version 2 api
+    >>> github = beanbag.BeanBag("https://api.github.com";)
+-   >>> watchers = GET(github.repos.ajtowns.beanbag.watchers)
++   >>> watchers = beanbag.GET(github.repos.ajtowns.beanbag.watchers)
+    >>> for w in watchers:
+    ...     print(w.login)
+ 
diff -Nru beanbag-1.9.2/debian/patches/series beanbag-1.9.2/debian/patches/series
--- beanbag-1.9.2/debian/patches/series	1970-01-01 01:00:00.000000000 +0100
+++ beanbag-1.9.2/debian/patches/series	2017-03-09 13:17:47.000000000 +0100
@@ -0,0 +1 @@
+fix-code-in-example-file

Attachment: signature.asc
Description: PGP signature

Reply via email to