[Python-modules-team] Bug#571551: namebench: FTBFS with Python 2.6 as default

2010-02-26 Thread Miguel Landaeta
On Fri, Feb 26, 2010 at 12:23:39AM +0100, Jakub Wilk wrote:
> Source: namebench
> Version: 1.1+dfsg-1
> Severity: important
> User: debian-pyt...@lists.debian.org
> Usertags: python2.6
> 
> Hello,
> 
> When rebuilt in an environment with Python 2.6 as the default
> version, your package failed to build from source. Here are the
> relevant parts of the build log:
> 

[...]

Hi Jakub, thanks for this report.

How do I set python2.6 as default in sid in order to debug
this?

This seems easy to fix, but I don't find a correct way to
switch to python2.6. I have been waiting for python2.6 as
default version for ages and still it is not the default
version...

Cheers,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche





___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#571551: Bug#571551: namebench: FTBFS with Python 2.6 as default

2010-02-26 Thread Miguel Landaeta
On Fri, Feb 26, 2010 at 08:50:06PM +0100, Sandro Tosi wrote:
>  On Fri, Feb 26, 2010 at 15:06:51 -0430, Miguel Landaeta wrote:
> > This seems easy to fix, but I don't find a correct way to
> > switch to python2.6. I have been waiting for python2.6 as
> > default version for ages and still it is not the default
> > version...
> 
> What I do is:
> 
> - setup a separate pbuilder chroot, in my case
> /home/morph/deb/pbuilder/base_python2.6default.tgz
> - sudo pbuilder --login --save-after-login --basetgz
> /home/morph/deb/pbuilder/base_python2.6default.tgz
> - change /usr/share/python/debian_defaults and set python2.6 as default
> - change the symlinks /usr/bin/python* to point to 2.6
> - exit from the pbuilder chroot and --build the package with that --basetgz.

Thanks for the info Sandro. I really should have RTFM.
I did something similar to that: I installed python2.6,
changed /usr/bin/python symlink and edited /usr/share/python/debian_defaults.

After fixing some buggy lines in debian/rules, I still can't
build namebench because of some python-support error.

I don't know if I should file a bug in python-support or
keep waiting and waiting for proper python2.6 support.

Anyway, below is the relevant part of my build log, maybe someone know how
to override this problem with python-support:

make[1]: Leaving directory `/home/miguel/src/namebench/ftbfs/namebench-1.1+dfsg'
   dh_installcatalogs
   dh_installcron
   dh_installdebconf
   dh_installemacsen
   dh_installifupdown
   dh_installinfo
   dh_pysupport
dh_pysupport: The default python version is greater than all supported versions
make: *** [binary] Error 9
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2

> PS: let's thank the python maintainers for not having provided an
> environment where to test such problems and for waiting more and more
> for the switch

Totally, what is it still needed to make the switch?
I am really willing to help to complete this switch.

Regards,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche





___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#571551: Bug#571551: namebench: FTBFS with Python 2.6 as default

2010-02-26 Thread Miguel Landaeta
On Sat, Feb 27, 2010 at 5:14 PM, Sandro Tosi  wrote:
> On Fri, Feb 26, 2010 at 21:42, Miguel Landaeta  wrote:
>> dh_pysupport: The default python version is greater than all supported 
>> versions
>
> do you have this line in /usr/share/python/debian_defaults:
>
> supported-versions = python2.5, python2.6

Yes, I have that line in that file.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#571551: Bug#571551: namebench: FTBFS with Python 2.6 as default

2010-02-26 Thread Miguel Landaeta
On Fri, Feb 26, 2010 at 5:42 PM, Jakub Wilk  wrote:
> Make sure that /usr/bin/python symlink is relative, not absolute.

Thanks for the tip, that did the trick.
The fixes for this bug are already in svn.
Regards,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#594146: namebench: benchmark stops with UnicodeDecodeError

2010-08-25 Thread Miguel Landaeta
tags 594146 + patch
thanks

Hi Konrad,

I don't know if this is a correct way to solve this problem,
but this patch should avoid the crash:

--- reporter.py.orig2010-08-25 12:19:55.0 -0430
+++ reporter.py 2010-08-25 12:26:43.0 -0430
@@ -419,7 +419,7 @@
 
   def CreateJsonData(self):
 sharing_data = self._CreateSharingData()
-return simplejson.dumps(sharing_data)
+return simplejson.dumps(unicode(sharing_data, 'utf-8', 'replace'))
 
   def _ResponseToCountTtlText(self, response):
 """For a given DNS response, parse the most important details out.
 

Cheers,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#614496: graphy: hardcoded /usr/lib/python2.5/

2011-02-21 Thread Miguel Landaeta
On Tue, Feb 22, 2011 at 12:07:12AM +0100, Jakub Wilk wrote:
> Source: graphy
> Version: 1.0+dfsg-1
> User: debian-pyt...@lists.debian.org
> Usertags: python2.5-removal
> 
> debian/*.install looks like this:
> 
> graphyusr/lib/python2.5/site-packages
> 
> The package will badly break once python-support stops supporting
> python2.5.

I'll take care of this very soon.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#611908: namebench: tries to launch google chrome (which is not in debian)

2011-04-19 Thread Miguel Landaeta
tags 611908 + moreinfo unreproducible
thanks

On Thu, Feb 03, 2011 at 10:49:19AM -0500, Jason Woofenden wrote:
> Error showing url: Failed to execute child process
> "/opt/google/chrome/google-chrome" (No such file or directory)

Hi Jason,

Are you sure you didn't install google-chrome package provided
by Google? http://www.google.com/chrome?hl=es&platform=linux

miguel@valeria:~$ dpkg-deb -c /tmp/google-chrome-stable_current_i386.deb | grep 
opt/google/chrome/google
-rwxr-xr-x root/root  1333 2011-04-12 16:12 
./opt/google/chrome/google-chrome
-rw-r--r-- root/root  4624 2011-04-12 16:12 
./opt/google/chrome/google-chrome.desktop
lrwxrwxrwx root/root 0 2011-04-12 16:12 ./usr/bin/google-chrome -> 
/opt/google/chrome/google-chrome

namebench calls web browsers using webbrowser python module, so
I am not sure how this is a bug in namebench. namebench just
recommends www-browser virtual package.

Could you provide more information?
Thanks!

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#635338: namebench: Don't have a .desktop or .menu file

2011-07-29 Thread Miguel Landaeta
tag 635338 + upstream pending
forwarded 635338 tstromb...@google.com
thanks

On Sun, Jul 24, 2011 at 09:16:01PM +0200, Martintxo wrote:
> There isn't a .desktop file, neither a .menu file in the package, thus there
> isn't a entry in the menu of gnome, kde...
> 
> Attached a simple desktop and menu files.

Thanks for your contribution.

I already fixed the bug in svn and I forwarded those files
to upstream.

Cheers,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#653895: Acknowledgement (python-tweepy: "Homepage" URL is wrong)

2012-01-01 Thread Miguel Landaeta
tags 653895 + pending
thanks

On Sun, Jan 01, 2012 at 05:05:59PM +0800, Clayton wrote:
> Sorry, I meant:
> 
> https://code.google.com/p/tweepy/

I think the correct URL is http://tweepy.github.com/.

Thanks for reporting this, I already fixed it in the svn repo.
There is a new upstream release so this should be fixed soon.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x7D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#692444: tweepy: CVE-2012-5821

2013-05-14 Thread Miguel Landaeta
tags 692444 + confirmed
thanks

The issue is confirmed by upstream. Please see:
https://github.com/tweepy/tweepy/issues/279#issuecomment-17898339

The current status for this bug is waiting for resolution from upstream.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at
http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#793030: python-tweepy: New upstream version available

2015-10-27 Thread Miguel Landaeta
On Tue, Oct 27, 2015 at 03:34:23PM +0100, Carl Chenet wrote:
> Hi,
> 
> Tweepy 3.4.0 is now available, my request is 3-months old and I still
> need it.  
> 
> So I pushed a new branch on the Git of python-tweepy called "3.4.0-nmu"
> which packages python-tweepy for 3.4.0 with python3 support in nmu mode.

Hi Carl,

Thanks for preparing an update for this package.

I'm kinda slow lately but I can upload a new release based on your
work. I'll upload it today or sometime during this week.

Thanks,
(and sorry for the delay)

Miguel.

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key.
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Re: [Python-modules-team] Bug#793030: python-tweepy: New upstream version available

2015-10-27 Thread Miguel Landaeta
On Tue, Oct 27, 2015 at 06:27:13PM +0100, Carl Chenet wrote:
> 
> [...]
> 
> That would be perfect. I'll need it because it's a requirement of 2 of
> my personal projects [1] and [2] to enter into Debian so I'll be
> thrilled if you could make it.
> 
> But if you don't have time to make it, don't hesitate to tell me. I
> guess my git branch could be improved but we're not far from something
> we can release.

Don't worry, I just uploaded it.
Thanks for preparing this release.

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key.
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#804558: tweepy: FTBFS: ImportError: No module named {unittest2, vcr}

2016-01-08 Thread Miguel Landaeta
On Mon, Jan 4, 2016 at 6:43 AM, Carl Chenet  wrote:
> Hi Miguel,
>
> First of all, happy new year 2016!

Hi Carl, happy new year to you as well! :)

> [...]
>
> Tell me if I'm wrong but unittests executions are not mandatory by
> Debian policy while building a Debian package.

That's right, this is not mandatory.

>
> While waiting that somebody packages unittest2 and/or vcr for Debian,
> could you disable the unit tests while creating the Debian package of
> Tweepy? I've 2 more Debian package coming up and depending on
> python3-tweepy so that would help me *a lot*.
>
> Tell me if you need that I push the modifications in the debian/rules (I
> guess it's a simple override).

Let's do this:

* Can you file a wishlist bug on tweepy asking to enable the unit tests
during build time and maybe explain why that can't be enabled right now
and/or mark the bug as blocked by the unittest2 and/or vcr ITPs?

* Push and upload the changes to workaround the FTBFS.

I can't fix this bug right now because I'm about to begin my move to
another country and my workstation with my PGP key has some
connection problems during this week.

Thanks,
Miguel.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#728413: pyzmq: Please remove me from Uploaders list

2013-10-31 Thread Miguel Landaeta
Package: src:pyzmq
Version: 13.1.0-1
Severity: wishlist

Hi,

I has not been involved with the maintenance of this package since a
long time ago and I'm not using it either, so I think it would be good
if you can remove from the Uploaders list.

Thanks for taking care of this package.

Cheers,

-- System Information:
Debian Release: 7.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#734232: simplejson: Please provide a 3.3.1 backport for wheezy

2014-01-04 Thread Miguel Landaeta
Package: src:simplejson
Version: 3.3.1-2
Severity: wishlist

I'm needing a backport of 3.3.1 release of python-simplejson for
wheezy.

I need this since I'm preparing a backport for turpial as well.

I can take care of this if you are busy or not interested.

I'm filing this bug just in case somebody from the team has
comments about backporting this to wheezy.

-- System Information:
Debian Release: 7.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=UTF-8 (charmap=UTF-8) (ignored: LC_ALL set 
to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at
http://db.debian.org/fetchkey.cgi?fingerprint=4CB7FE1E280ECC90F29A597E6E608B637D8967E9
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#736174: tweepy lib does not work since 14 January 2014

2014-03-23 Thread Miguel Landaeta
On Mon, Jan 20, 2014 at 07:04:28PM +0100, NachE wrote:
> 
> but this does not work. Is now the tweepy lib broken on wheezy or Im
> doing something wrong?
> 

Hi NachE,

Sorry for the late reply. What I can do for wheezy users is to provide a
new version of this library in wheezy-backports soon.

The version shipped with stable is very outdated and with the recent
changes in the Twitter API I don't think that is usable anymore.

Cheers,

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at
http://db.debian.org/fetchkey.cgi?fingerprint=4CB7FE1E280ECC90F29A597E6E608B637D8967E9
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Re: [Python-modules-team] tweepy_2.3-1~bpo70+1_amd64.changes REJECTED

2014-04-12 Thread Miguel Landaeta
On Sat, Apr 12, 2014 at 10:00:10PM +, Alexander Wirt wrote:
> 
> Changes since stable missing in changes file, did you forgot -v?

Hi Alexander,

Yes sorry, I forgot -v flag. I uploaded it again.

Cheers,

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at
http://db.debian.org/fetchkey.cgi?fingerprint=4CB7FE1E280ECC90F29A597E6E608B637D8967E9
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#692444: tweepy: CVE-2012-5821

2014-12-01 Thread Miguel Landaeta
Upstream claims to have fixed this in their 3.0.0 release.

https://github.com/tweepy/tweepy/issues/279#issuecomment-65017673

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key.
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#871889: storm: Please update the Uploaders list

2017-08-12 Thread Miguel Landaeta
Package: src:storm
Severity: minor
Tags: pending
User: nomad...@debian.org
Usertags: cleanup

As title says.

I haven't been involved in the maintenance of this package since several
years ago.

I intend to keep an eye on this package for the current oldstable and
stable release lifecycles. However, it's very unlikely I'll be involved
in its current development cycle (buster).

I removed myself from uploaders list and prepared a tentative QA upload
but I didn't upload it to the archive since the resulting package would
be in violation of Debian Policy (§3.3 and §5.6.3). I'd appreciate if
somebody else can step in as maintainer. If this is not possible, I'll
request a removal from the archive in the future.

Cheers,
Miguel.


-- System Information:
Debian Release: 8.9
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=UTF-8 (charmap=UTF-8) (ignored: LC_ALL set 
to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key.
"Faith means not wanting to know what is true." -- Nietzsche


signature.asc
Description: Digital signature
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team