Bug#991233: unblock: apertium-apy/0.11.7-2

2021-07-18 Thread Kartik Mistry
On Sun, Jul 18, 2021 at 2:35 PM Graham Inggs  wrote:
> It looks like you've attached a binary debdiff.   We are looking for a
> source debdiff between the version in testing and unstable.
> i.e.
>
> debdiff apertium-apy_0.11.6-1.dsc apertium-apy_0.11.7-2.dsc

Sorry! Attached source diff now.

-- 
Kartik Mistry | કાર્તિક મિસ્ત્રી
kartikm.wordpress.com
diff -Nru apertium-apy-0.11.6/apertium_apy/apy.py apertium-apy-0.11.7/apertium_apy/apy.py
--- apertium-apy-0.11.6/apertium_apy/apy.py	2020-07-01 13:06:52.0 +0530
+++ apertium-apy-0.11.7/apertium_apy/apy.py	2021-04-01 15:20:33.0 +0530
@@ -1,13 +1,13 @@
-#!/usr/bin/env python3
+#!/usr/bin/python3
 # coding=utf-8
 # -*- indent-tabs-mode: nil -*-
 
 __author__ = 'Kevin Brubeck Unhammer, Sushain K. Cherivirala'
-__copyright__ = 'Copyright 2013--2018, Kevin Brubeck Unhammer, Sushain K. Cherivirala'
+__copyright__ = 'Copyright 2013--2020, Kevin Brubeck Unhammer, Sushain K. Cherivirala'
 __credits__ = ['Kevin Brubeck Unhammer', 'Sushain K. Cherivirala', 'Jonathan North Washington', 'Xavi Ivars', 'Shardul Chiplunkar']
 __license__ = 'GPLv3'
 __status__ = 'Beta'
-__version__ = '0.11.6'
+__version__ = '0.11.7'
 
 import argparse
 import configparser
@@ -29,6 +29,8 @@
 from tornado.locks import Semaphore
 from tornado.log import enable_pretty_logging
 
+from typing import Sequence, Iterable, Type, List, Tuple, Any  # noqa: F401
+
 from apertium_apy import BYPASS_TOKEN, missing_freqs_db  # noqa: F401
 from apertium_apy import missingdb
 from apertium_apy import systemd
@@ -86,7 +88,7 @@
 
 
 def setup_handler(
-port, pairs_path, nonpairs_path, lang_names, missing_freqs_path, timeout,
+pairs_path, nonpairs_path, lang_names, missing_freqs_path, timeout,
 max_pipes_per_pair, min_pipes_per_pair, max_users_per_pipe, max_idle_secs,
 restart_pipe_after, max_doc_pipes, verbosity=0, scale_mt_logs=False,
 memory=1000, apy_keys=None,
@@ -249,9 +251,9 @@
 
 def setup_application(args):
 if args.stat_period_max_age:
-BaseHandler.STAT_PERIOD_MAX_AGE = timedelta(0, args.stat_period_max_age, 0)
+BaseHandler.stat_period_max_age = timedelta(0, args.stat_period_max_age, 0)
 
-setup_handler(args.port, args.pairs_path, args.nonpairs_path, args.lang_names, args.missing_freqs, args.timeout,
+setup_handler(args.pairs_path, args.nonpairs_path, args.lang_names, args.missing_freqs, args.timeout,
   args.max_pipes_per_pair, args.min_pipes_per_pair, args.max_users_per_pipe, args.max_idle_secs,
   args.restart_pipe_after, args.max_doc_pipes, args.verbosity, args.scalemt_logs,
   args.unknown_memory_limit, args.api_keys)
@@ -274,7 +276,7 @@
 (r'/identifyLang', IdentifyLangHandler),
 (r'/getLocale', GetLocaleHandler),
 (r'/pipedebug', PipeDebugHandler),
-]
+]  # type: List[Tuple[str, Type[tornado.web.RequestHandler]]]
 
 if importlib_util.find_spec('streamparser'):
 handlers.append((r'/speller', SpellerHandler))
@@ -295,7 +297,8 @@
 
 handlers.append((r'/suggest', SuggestionHandler))
 
-return tornado.web.Application(handlers)
+# TODO: fix mypy. Application expects List but List is invariant and we use subclasses
+return tornado.web.Application(handlers)  # type:ignore
 
 
 def setup_logging(args):
@@ -350,10 +353,10 @@
 'certfile': args.ssl_cert,
 'keyfile': args.ssl_key,
 })
-logging.info('Serving at https://localhost:%s', args.port)
+logging.info('Serving on all interfaces/families, e.g. https://localhost:%s', args.port)
 else:
 http_server = tornado.httpserver.HTTPServer(application)
-logging.info('Serving at http://localhost:%s', args.port)
+logging.info('Serving on all interfaces/families, e.g. http://localhost:%s', args.port)
 
 signal.signal(signal.SIGTERM, sig_handler)
 signal.signal(signal.SIGINT, sig_handler)
diff -Nru apertium-apy-0.11.6/apertium_apy/gateway.py apertium-apy-0.11.7/apertium_apy/gateway.py
--- apertium-apy-0.11.6/apertium_apy/gateway.py	2020-07-01 13:06:52.0 +0530
+++ apertium-apy-0.11.7/apertium_apy/gateway.py	2021-04-01 15:20:33.0 +0530
@@ -1,7 +1,6 @@
-#!/usr/bin/env python3
+#!/usr/bin/python3
 
 import argparse
-import functools
 import itertools
 import json
 import logging
@@ -43,8 +42,7 @@
 def initialize(self, balancer):
 self.balancer = balancer
 
-@tornado.gen.coroutine
-def get(self):
+async def get(self):
 path = self.request.path
 mode, lang_pair, per_word_modes = [None] * 3
 path_to_mode = {
@@ -86,11 +84,12 @@
 logging.info('Redirecting %s?%s to %s%s?%s', path, query, server_port, path, query)
 
 http = tornado.httpclient.AsyncHTTPClient()
-http.fetch(
+response = await http.fetch(
 server_port + path + '?' + query,
-functools.partial(self._on_download, (server, p

Bug#991233: unblock: apertium-apy/0.11.7-2

2021-07-18 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: kar...@debian.org

Please unblock package apertium-apy

apertium-apy version 0.11.6-1 is broken due incompatibility with
Python-tornado in testing and fails to start (See: RC Bug:
https://bugs.debian.org/990917). I had uploaded 0.11.7-1 to
experimental in April too.

[ Reason ]
0.11.7-2 fixes issue reported in #990917 and unbreaks apertium-apy.

[ Impact ]
apertium-apy is heavily used by users who are using Apertium Machine
Translation system in Production (use case: Wikipedia) and updating to
the next stable release (Bullseye) will break the current working
system.

[ Tests ]
Upstream has added a few tests, but not particularly this bug, AFAIK.
I've tested both versions and 0.11.7-2 is working fine.

[ Risks ]
Not anything I'm aware of.

[ Checklist ]
 [x] all changes are documented in the d/changelog
 [x] I reviewed all changes and I approve them
 [x] attach debdiff against the package in testing

unblock apertium-apy/0.11.7-2

-- 
Kartik Mistry | કાર્તિક મિસ્ત્રી
kartikm.wordpress.com


apertium-apy.debdiff
Description: Binary data


Bug#991233: unblock: apertium-apy/0.11.7-2

2021-07-18 Thread Kartik Mistry
On Sun, Jul 18, 2021 at 1:29 PM Graham Inggs  wrote:
> Control: tags -1 + moreinfo
>
> Hi Kartik
>
> Please see the 'Appropriate changes during Hard and Full Freeze'
> section and the 'Applying for an unblock' section below that in the
> Bullseye Freeze Policy [1].  It is recommended that you use (a recent
> version of) reportbug to file the unblock bug, this will give you a
> nice template with a checklist of information to include.  You can run
> reportbug with -o to output to a file instead of sending email, which
> you can then add to this bug.
>
> [1] https://release.debian.org/bullseye/freeze_policy.html#appropriate

Thanks Graham!

I'll send a followup update.

-- 
Kartik Mistry | કાર્તિક મિસ્ત્રી
kartikm.wordpress.com



Bug#991233: unblock: apertium-apy/0.11.7-2

2021-07-18 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock apertium-apy (0.11.7-2) which will fix #990917

Let me know if any additional information is needed.

unblock apertium-apy/0.11.7-2

-- 
Kartik Mistry | કાર્તિક મિસ્ત્રી
kartikm.wordpress.com



Bug#914767: RM: foma/1:0.9.18~r248-1

2018-11-26 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: rm

Please remove foma from experimental (1:0.9.18~r248-1). This is as requested
by upstream also. I'll prepare updated version in unstable after this.

Thanks!

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.18.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IN.UTF-8, LC_CTYPE=en_IN.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:gu (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

-- 
Kartik Mistry | IRC: kart_
https://kartikm.wordpress.com


signature.asc
Description: PGP signature


Bug#914404: transition: libmng

2018-11-22 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition

Hi Release Team,

I plan to upload new version of libmng (already in experimental and
updating it again).

Direct reverse dependencies are:

 tuxonice-userui
 libxine2-misc-plugins
 libsynfig0a
 qt5-image-formats-plugins
 libqtgui4
 libdevil1c2
 gimp

Thanks and let me know how to proceed.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com



Re: Bug#791195: fixed in lttoolbox 3.3.2~r61000-3.1

2016-02-11 Thread Kartik Mistry
On Thu, Feb 11, 2016 at 3:13 PM, Andreas Beckmann <a...@debian.org> wrote:
> You have a now useless
>
> Breaks: liblttoolbox3-3.3-0v5 (<= 3.3.2~r61000-3.1)
>
> in there.
>
> For the changelog I would say something like "Reinstate the g++-5 ABI
> transition and renamed packages."

Breaks field was removed with latest upload.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com



Re: Bug#791195: fixed in lttoolbox 3.3.2~r61000-3.1

2016-02-06 Thread Kartik Mistry
On Wed, Feb 3, 2016 at 9:46 PM, Andreas Beckmann <a...@debian.org> wrote:
>> What is the best way to fix this?
>
> Probably reverting the reverted transition, therefore reopening this bug.
>
> You can drop the v5 suffix once upstream bumps the SOVERSION again and
> you have to rename the package anyway.

I'm preparing fix, Can anyone look at,
https://anonscm.debian.org/cgit/debian-science/packages/lttoolbox.git/commit/?id=a3b07fe80d08de83902971f45aab75701bae8cea
and see if it is OK?

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com



Bug#813567: nmu: apertium-lex-tools_0.1.1~r60994-1+b1

2016-02-03 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu apertium-lex-tools_0.1.1~r60994-1+b1 . ANY . unstable . -m "Rebuild for 
lttoolbox"

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.3.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IN.UTF-8, LC_CTYPE=en_IN.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


signature.asc
Description: PGP signature


Re: Bug#791195: fixed in lttoolbox 3.3.2~r61000-3.1

2016-02-03 Thread Kartik Mistry
On Wed, Feb 3, 2016 at 4:04 PM, Julien Cristau <jcris...@debian.org> wrote:
>> The v5 transition was entirely unnecessary for this package, and I very
>> strongly want it gone.
>>
> You haven't given a single good reason to revert the change.  Maybe you
> would have preferred it didn't, but you're coming 6 months late to that
> party.

Apologies!

What is the best way to fix this?

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com



Bug#797031: nmu: apertium_3.4.0~r61013-3

2015-08-26 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu apertium_3.4.0~r61013-3 . ALL . unstable . -m Rebuild package for 
lttoolbox

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IN.UTF-8, LC_CTYPE=en_IN.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


signature.asc
Description: Digital signature


Bug#696712: unblock: falconpl/0.9.6.9-git20120606-2

2012-12-26 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package falconpl as it is going to fix RC (and security)
bug #696681 as per discussion in bug report.

Aattach the debdiff against the package in testing.

unblock falconpl/0.9.6.9-git20120606-2

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

--
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


signature.asc
Description: Digital signature


Bug#696712: Debdiff is attached!

2012-12-26 Thread Kartik Mistry
Forgot to attach debdiff. Here it is.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


falconpl-debdiff.diff
Description: Binary data


Bug#681648: unblock: recoll/1.17.3-2

2012-07-14 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package recoll

1.17.3-2 fixes RC bug: #681586

debdiff is attached.

unblock recoll/1.17.3-2

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-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/bash

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com
diff -Nru recoll-1.17.3/debian/changelog recoll-1.17.3/debian/changelog
--- recoll-1.17.3/debian/changelog  2012-06-08 17:25:48.0 +0530
+++ recoll-1.17.3/debian/changelog  2012-07-14 21:39:43.0 +0530
@@ -1,3 +1,12 @@
+recoll (1.17.3-2) unstable; urgency=medium
+
+  * debian/rules:
++ Call dh_python2 for python-recoll. (Closes: #681586)
+  * debian/control:
++ Added X-Python-Version field for correct Python version dependency.
+
+ -- Kartik Mistry kar...@debian.org  Sat, 14 Jul 2012 20:20:56 +0530
+
 recoll (1.17.3-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru recoll-1.17.3/debian/control recoll-1.17.3/debian/control
--- recoll-1.17.3/debian/control2012-05-18 14:40:18.0 +0530
+++ recoll-1.17.3/debian/control2012-07-14 21:19:13.0 +0530
@@ -13,6 +13,7 @@
python-all-dev (= 2.6.6-3~)
 Homepage: http://www.lesbonscomptes.com/recoll
 Standards-Version: 3.9.3
+X-Python-Version: = 2.7
 
 Package: recoll
 Architecture: any
diff -Nru recoll-1.17.3/debian/rules recoll-1.17.3/debian/rules
--- recoll-1.17.3/debian/rules  2012-05-18 14:40:55.0 +0530
+++ recoll-1.17.3/debian/rules  2012-07-14 20:41:28.0 +0530
@@ -62,6 +62,7 @@
dh_installmenu
dh_installman
dh_install --sourcedir=debian/tmp
+   dh_python2
dh_link
dh_strip
dh_compress


signature.asc
Description: Digital signature


Bug#681299: unblock: netsniff-ng/0.5.7-1

2012-07-12 Thread Kartik Mistry
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package netsniff-ng, reasons are below:

1. netsniff-ng in unstable is 12 days old [1].
2. With version, 0.5.6-2, It only aimed for amd64, i386, powerpc and sparc
   arches [2].
3. But, migration is on hold due to briteny is looking for it for other arches.

Please do needful or do I need to poke someone from buildd side?

[1] http://packages.qa.debian.org/n/netsniff-ng.html
[2] https://buildd.debian.org/status/package.php?p=netsniff-ng

unblock netsniff-ng/0.5.7-1

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-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/bash

--
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


signature.asc
Description: Digital signature


Re: Proposed stable update: nginx

2012-01-12 Thread Kartik Mistry
On Fri, Jan 13, 2012 at 2:44 AM, Julien Cristau jcris...@debian.org wrote:
 Security team has recently identify possible security issue [0] in Stable 
 release for nginx which only affects Stable release for Debian [1]. It is 
 suggested by Security team member that issue can be better fixed by Stable 
 upload.

 So, I've prepared and tested nginx stable packages and are available at [2]. 
 Debdiff is at [3] and also attached.

 Looks ok to me, feel free to upload.

Uploaded. Thanks!

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAPDygewK46P4rMQgeUJ2HFBdqzEUGxMdEgZL=yqaeueqbqo...@mail.gmail.com



Proposed stable update: nginx

2011-11-23 Thread Kartik Mistry
Dear Release team,

Security team has recently identify possible security issue [0] in Stable 
release for nginx which only affects Stable release for Debian [1]. It is 
suggested by Security team member that issue can be better fixed by Stable 
upload.

So, I've prepared and tested nginx stable packages and are available at [2]. 
Debdiff is at [3] and also attached.

If this is ok, I'll upload package to Stable.

Thanks.

[0] CVE-2011-4315
[1] https://bugzilla.redhat.com/show_bug.cgi?id=754757
[2] http://people.debian.org/~kartik/packages/nginx/
[3] 
http://people.debian.org/~kartik/packages/nginx/0.7.67-3-to-0.7.67-3+squeeze1.diff

--
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com

diff -Nru nginx-0.7.67/debian/changelog nginx-0.7.67/debian/changelog
--- nginx-0.7.67/debian/changelog	2010-07-29 21:42:02.0 +0530
+++ nginx-0.7.67/debian/changelog	2011-11-23 13:47:19.0 +0530
@@ -1,3 +1,11 @@
+nginx (0.7.67-3+squeeze1) stable; urgency=low
+
+  * debian/patches/CVE-2011-4315.diff:
++ Fixed compression pointer processing in DNS response greater than 255
+  bytes. See: CVE-2011-4315 for more details.
+
+ -- Kartik Mistry kar...@debian.org  Wed, 23 Nov 2011 13:47:10 +0530
+
 nginx (0.7.67-3) unstable; urgency=low
 
   * debian/rules:
diff -Nru nginx-0.7.67/debian/patches/CVE-2011-4315.diff nginx-0.7.67/debian/patches/CVE-2011-4315.diff
--- nginx-0.7.67/debian/patches/CVE-2011-4315.diff	1970-01-01 05:30:00.0 +0530
+++ nginx-0.7.67/debian/patches/CVE-2011-4315.diff	2011-11-23 11:44:56.0 +0530
@@ -0,0 +1,26 @@
+--- a/src/core/ngx_resolver.c
 b/src/core/ngx_resolver.c
+@@ -1953,5 +1953,11 @@
+ 
+ for ( ;; ) {
+-if (n != 0xc0) {
++if (n  0xc0) {
++n = ((n  0x3f)  8) + *src;
++src = buf[n];
++
++n = *src++;
++
++} else {
+ ngx_memcpy(dst, src, n);
+ dst += n;
+@@ -1963,10 +1969,4 @@
+ *dst++ = '.';
+ }
+-
+-} else {
+-n = ((n  0x3f)  8) + *src;
+-src = buf[n];
+-
+-n = *src++;
+ }
+ 
diff -Nru nginx-0.7.67/debian/patches/series nginx-0.7.67/debian/patches/series
--- nginx-0.7.67/debian/patches/series	2010-04-13 10:11:34.0 +0530
+++ nginx-0.7.67/debian/patches/series	2011-11-23 11:40:59.0 +0530
@@ -1,3 +1,4 @@
 nginx-upstream-fair.diff
 dlopen.diff
 fix_reloading_ipv6.diff
+CVE-2011-4315.diff


Re: Perl transition blockers: candidates for testing removal

2011-11-18 Thread Kartik Mistry
On Fri, Nov 18, 2011 at 10:55 PM, Luk Claes l...@debian.org wrote:
 The following packages block the perl transition and will become testing
 removal candidates soon unless the bugs get fixed:
 ...
 * nginx (#649061)
 ...

This doesn't look like Perl issue, but I'm uploading new version that
should fix build failures on some archs.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAPDygezF7RjjUhccvCakm+AV+MH-beufkxR2woO4=x4wv1h...@mail.gmail.com



Re: Proposed stable update: recoll

2011-10-31 Thread Kartik Mistry
On Sat, Oct 29, 2011 at 7:18 PM, Adam D. Barratt
a...@adam-barratt.org.uk wrote:
 Closed it in testing/unstable, since this only affects stable release.

 Thanks.  Please feel free to go ahead with the upload.

Thanks. I should upload to 'stable' it tonight after one more testing.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAPDygewJa-PVtbkch4=C_ET37t6Rrgb3154wv=i=q3+_e32...@mail.gmail.com



Re: Proposed stable update: recoll

2011-10-27 Thread Kartik Mistry
On Tue, Oct 25, 2011 at 2:25 AM, Adam D. Barratt
a...@adam-barratt.org.uk wrote:
 The version information for #614760 suggests that it also affects
 testing and unstable currently.  If that's not correct, please mark it
 as closed in an appropriate version; otherwise, please fix it in
 unstable first.

Closed it in testing/unstable, since this only affects stable release.

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/capdygewmnwv-eipyozj6pmeyrpd5aho4homorsvzsv7bf...@mail.gmail.com



Proposed stable update: recoll

2011-10-24 Thread Kartik Mistry
Hi team,

Recently we found that Bug #614760 [1] affects stable release of
recoll and confirmed by bug reporter, upstream and another users of
same version from Ubuntu too. I would like to fix this in stable. I've
built package successfully (in Squeeze pbuilder) and attached debdiff
here. Resulted package+source can be found at [2] if someone want to
test (amd64 only).

If this looks ok, please let me know further procedures.

Thanks.

[1] RC bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614760
[2] http://people.debian.org/~kartik/packages/recoll/

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com
diff -Nru recoll-1.13.04/debian/changelog recoll-1.13.04/debian/changelog
--- recoll-1.13.04/debian/changelog	2010-05-03 09:49:07.0 +0530
+++ recoll-1.13.04/debian/changelog	2011-10-24 17:27:10.0 +0530
@@ -1,3 +1,11 @@
+recoll (1.13.04-3+squeeze1) stable; urgency=low
+
+  * debian/patches/03_patch-unac-icclose.diff:
++ plug conversion descriptor leak in unac.c::convert() error path, fixes
+  index crash (Closes: #614760)
+
+ -- Kartik Mistry kar...@debian.org  Mon, 24 Oct 2011 17:25:04 +0530
+
 recoll (1.13.04-3) unstable; urgency=low
 
   * Added patch for xapian 1.2 compatibility from Olly Betts o...@survex.com
diff -Nru recoll-1.13.04/debian/patches/03_patch-unac-icclose.diff recoll-1.13.04/debian/patches/03_patch-unac-icclose.diff
--- recoll-1.13.04/debian/patches/03_patch-unac-icclose.diff	1970-01-01 05:30:00.0 +0530
+++ recoll-1.13.04/debian/patches/03_patch-unac-icclose.diff	2011-10-24 13:45:53.0 +0530
@@ -0,0 +1,53 @@
+Description: plug conversion descriptor leak in unac.c::convert() error path
+Author: Ersek, Laszlo la...@caesar.elte.hu
+Bug-Debian: http://bugs.debian.org/614760
+Last-Update: 2011-10-24
+
+--- recoll-1.13.04.orig/unac/unac.c
 recoll-1.13.04/unac/unac.c
+@@ -10661,7 +10661,7 @@ static int convert(const char* from, con
+ 	if(errno == E2BIG)
+ 	  /* fall thru to the E2BIG case below */;
+ 	else
+-	  return -1;
++		goto err;
+ 	  } else {
+ 	/* The offending character was replaced by a SPACE, skip it. */
+ 	in += 2;
+@@ -10670,7 +10670,7 @@ static int convert(const char* from, con
+ 	break;
+ 	  }
+ 	} else {
+-	  return -1;
++	  goto err;
+ 	}
+   case E2BIG:
+ 	{
+@@ -10690,7 +10690,7 @@ static int convert(const char* from, con
+ 		  DEBUG(realloc %d bytes failed\n, out_size+1);
+ 		  free(saved);
+ 		  *outp = 0;
+-		  return -1;
++		  goto err;
+ 	  }
+ 	  }
+ 	  out = out_base + length;
+@@ -10698,7 +10698,7 @@ static int convert(const char* from, con
+ 	}
+ 	break;
+   default:
+-	return -1;
++	goto err;
+ 	break;
+   }
+ }
+@@ -10710,6 +10710,9 @@ static int convert(const char* from, con
+   (*outp)[*out_lengthp] = '\0';
+ 
+   return 0;
++err:
++  iconv_close(cd);
++  return -1;
+ }
+ 
+ int unacmaybefold_string(const char* charset,
diff -Nru recoll-1.13.04/debian/patches/series recoll-1.13.04/debian/patches/series
--- recoll-1.13.04/debian/patches/series	2010-05-03 09:47:08.0 +0530
+++ recoll-1.13.04/debian/patches/series	2011-10-24 13:46:24.0 +0530
@@ -1,2 +1,3 @@
 01_nostrip_final_binaries_437901.diff
 02_recoll-prepare-for-xapian-1.2.diff
+03_patch-unac-icclose.diff


Re: Bug#588236: gwibber: lack of OAuth support

2010-11-08 Thread Kartik Mistry
On Mon, Nov 8, 2010 at 11:10 PM, Moritz Muehlenhoff j...@inutil.org wrote:
 Raphael, you raised the severity w/o any comment in the bug trail,
 should twitter support be available for Squeeze?

 If the version from experimental should be uploaded to sid, it needs
 to be discussed with release managers, adding to CC.

I think we discussed this with debian-release team. And, team is not
agree to put new upstream (and too huge debdiff!) to testing now,
which is all 'ok' from my side.

If release team can 'unlock' gwibber, that will be great too :)

-- 
Kartik Mistry
Debian GNU/Linux Developer
IRC: kart_ | Identica: @kartikm


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinvgy1fuxzrmuwzzzr9wx3ar7p3k1r1fedjf...@mail.gmail.com



Gwibber 2.32.0-1 in unstable

2010-10-03 Thread Kartik Mistry
Hi Release Team,

I'm writing to check if it is possible to get Gwibber 2.32.0-1 into
unstable and then stable before we release :)

Rational:
+ Current Gwibber 1.2.x is not supported by upstream.
+ Twitter doesn't work due to OAuth authentication by Twitter.
+ 2.32.x branch is more stable than 1.2.x

I know I'm late. One solution for above issue is make backport
available when we release, but I would like to know your thoughts.

Thanks!

-- 
Kartik Mistry
Debian GNU/Linux Developer
IRC: kart_ | Identica: @kartikm


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimv8dbpy=tcl+njhjowojqvdhqskh4czy9kt...@mail.gmail.com



Re: Gwibber 2.32.0-1 in unstable

2010-10-03 Thread Kartik Mistry
On Sun, Oct 3, 2010 at 7:49 PM, Mehdi Dogguy me...@dogguy.org wrote:
 I know I'm late. One solution for above issue is make backport
 available when we release, but I would like to know your thoughts.


 The diff is too large. No, sorry.

No issue. Thanks for quick reply!

-- 
Kartik Mistry
Debian GNU/Linux Developer
IRC: kart_ | Identica: @kartikm


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimj8r7p-dq0xshj+tpfwtgsr7ss6vfcp48sd...@mail.gmail.com



Re: Gwibber 2.32.0-1 in unstable

2010-10-03 Thread Kartik Mistry
On Mon, Oct 4, 2010 at 3:52 AM, Mehdi Dogguy me...@dogguy.org wrote:
 Well, no, large diffs can be broken too… it just that they just got
 released and we don't know yet if it's really more stable than the old
 version.

2.32.x is much more stable than earlier releases for sure.

-- 
Kartik Mistry
Debian GNU/Linux Developer
IRC: kart_ | Identica: @kartikm


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik7vrpj6de-avnc5qc14v2vxj=-eom9=wzmh...@mail.gmail.com



Please unblock/allow ttf-indic-fonts (1:0.5.11)

2010-08-26 Thread Kartik Mistry
Hi Team,

I uploaded ttf-indic-fonts (1:0.5.11) today with introducing two new udebs
needed for Debian-Installer work with two indic languages: Kannda (#593220) and
Telugu (#593221)

It is currently in NEW. Please unblock/allow package to testing. Let me know if
more information is needed.

Thanks,
Kartik



signature.asc
Description: Digital signature


Re: RFS: mobile-broadband-provider-info (updated package)

2010-08-24 Thread Kartik Mistry
On Tue, Aug 24, 2010 at 11:18 PM, Bhavani Shankar R bh...@ubuntu.com wrote:
 I am looking for a sponsor for the new version 20100824-1
 of my package mobile-broadband-provider-info.
 ...
 (ps: I m CC'ing my previous version sponsor as freeze exception was
 granted the previous version)

Hi,

Freeze exception was granted for that version only. You should not
upload new version (unless it fix bugs = important severity) /new
package when freeze is in on going.

(Paul is subscribed, so dropped CC to him).

-- 
Kartik Mistry
Debian GNU/Linux Developer
IRC: kart_ | Identica: @kartikm


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik5yck7laxratq+ml+drbjt1xpweptmofu+e...@mail.gmail.com



Please unblock freetalk 3.1-1

2008-08-28 Thread Kartik Mistry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I am requesting for unblocking 3.1-1 version of freetalk.

It will fix RC bug: #496115
and FTBFS on ia64 arch (thats why it was not included in Lenny yet)

Earlier vorlon did unblock request (Thanks!), but it was mismatched by
latest version I uploaded to fix FTBFS on ia64.

- --
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Homepage: people.debian.org/~kartik
 Blogs: {ftbfs,kartikm}.wordpress.com


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Darwin)
Comment: http://getfiregpg.org

iEYEARECAAYFAki2iREACgkQoRg/jtECjI2pSgCdEGcpUDzByrCPRaZdkr2vhJfO
xNUAn0wZDgnYR56NU0CVb8Ja1ZfviH+3
=MoJG
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



binNMU for recoll (Bug#458941: recoll is currently built against libgcc 4.3)

2008-01-04 Thread Kartik Mistry
Dear Debian-Release Team,

recoll package (1.10.0-3) was accidentally built using experimental
libgcc 4.3 (Please see: #458941 and followups).

I request you to do binNMU for amd64 arch. CCing (and thanks to)
Vincent and Julien for feedback.

Thanks in advance.

-- 
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 blog.ftbfs.in  | kartikm.wordpress.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Fixed ayttm: #402759

2006-12-12 Thread Kartik Mistry

Dear Team,

ayttm is uploaded to unstable,
http://incoming.debian.org/ayttm_0.4.6+34-3_i386.changes

This fixed: #402759 important (earlier marked as RC). I will be glad
if this hits Etch.
Thanks to Daniel for sponsoring.

Thanks.

--
Regards,
--
Kartik Mistry   | kartikmistry.org
0xD1028C8D  | kartikm.wordpress.com
---


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]