Bug#959555: Upstream patch available

2020-08-19 Thread Brian Murray
The deprecation of Feature from setuptools has been handled upstream
with the following commit:

https://github.com/zopefoundation/zope.interface/commit/1de55506a33bedeb25051ac4cfa18f2e241a9212

This was then included in release 4.7.2 of zope.interface.

--
Brian Murray @ubuntu.com



Bug#962100: python-memprof: Fix for autopkg tests

2020-06-11 Thread Brian Murray
Package: python-memprof
Version: 0.3.6-2
Followup-For: Bug #962100
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu groovy ubuntu-patch

Dear Maintainer,

I've discovered a fix which allows the autopkg tests to pass.

In Ubuntu, the attached patch was applied to achieve the following:

  * Properly import getsize so autopkg tests pass. (Closes: #962100)


Thanks for considering the patch.
diff -Nru python-memprof-0.3.6/debian/patches/import-pyx.patch 
python-memprof-0.3.6/debian/patches/import-pyx.patch
--- python-memprof-0.3.6/debian/patches/import-pyx.patch1969-12-31 
16:00:00.0 -0800
+++ python-memprof-0.3.6/debian/patches/import-pyx.patch2020-06-11 
13:08:25.0 -0700
@@ -0,0 +1,20 @@
+Description: Properly import getsize for autopkgtests
+Author: Brian Murray 
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962100
+Last-Update: 2020-06-11
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: python-memprof-0.3.6/memprof/memprof.py
+===
+--- python-memprof-0.3.6.orig/memprof/memprof.py
 python-memprof-0.3.6/memprof/memprof.py
+@@ -21,6 +21,9 @@ import time
+ import argparse
+ import types
+ 
++import pyximport
++pyximport.install()
++
+ from .mp_utils import *  # noqa
+ from .getsize import getSize, isInteresting
+ 
diff -Nru python-memprof-0.3.6/debian/patches/series 
python-memprof-0.3.6/debian/patches/series
--- python-memprof-0.3.6/debian/patches/series  2020-01-18 15:17:53.0 
-0800
+++ python-memprof-0.3.6/debian/patches/series  2020-06-11 13:06:46.0 
-0700
@@ -1 +1,2 @@
 deb_specific__dont_require_argparse.patch
+import-pyx.patch


Bug#960899: paramiko: autopkgtests failures

2020-05-21 Thread Brian Murray
I'm pretty sure its because the configs folder from usptream isn't
included in the package at all.

https://github.com/paramiko/paramiko/tree/master/tests/configs

--
Brian Murray @ubuntu.com



Bug#519603: imdb-get fails due to HTML layout changes

2009-03-13 Thread Brian Murray
Package: imdb-tools
Version: 0.7-1
Severity: grave
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu jaunty ubuntu-patch

The HTML layout of pages at the imdb changed and now searching fails
without returning any results.  This can be recreated by using a command
like:

 imdb-get -s Hook

A patch was submitted by an Ubuntu user to
http://launchpad.net/bugs/313260.  I've tested the patch it resolves the
issue.

-- 
Brian Murray @ubuntu.com
--- imdb-tools-0.7.orig/imdb-get.sh
+++ imdb-tools-0.7/imdb-get.sh
@@ -216,7 +216,7 @@
else
   TEMPCHOICES=`mktemp`
   files=(${fil...@]} $TEMPCHOICES)
-   $TEMP tidy -iq -w 1000 2/dev/null | sed 's/t\([dr][^]*\)/t\1\n/g' | sed -n '/^ *a href=\/title\/tt/s,^ *a href=/title/\(tt[0-9]*\)/\([^]*\)/a\([^]*\).*,\1%\2 \3,p'  $TEMPCHOICES
+   $TEMP tidy -iq -w 1000 2/dev/null | sed 's/t\([dr][^]*\)/t\1\n/g' | sed -n '/^ *a href=\/title\/tt/s,^ *a href=/title/\(tt[0-9]*\)/.*\([^]\+\)/a\([^]*\).*,\1%\2 \3,p'  $TEMPCHOICES
   (( i = 1 ))
   IFS='
 '