Re: [petsc-users] SLEPc solve: progress info and abort option

2022-03-07 Thread Varun Hiremath
Thanks, Matt and Jose! I have added a custom function to KSPMonitorSet, and
that improves the response time for the *abort *option, however, it is
still a bit slow for very big problems, but I think that is probably
because I am using the MUMPS direct solver so likely a large amount of time
is spent inside MUMPS. And I am guessing there is no way to get the
progress info of MUMPS from PETSc?

Jose, for the progress bar I am using the number of converged eigenvalues
(nconv) as obtained using EPSMonitorSet function. But this is slow as it is
called only once every iteration, and typically many eigenvalues converge
within an iteration, so is there any way to get more detailed/finer info on
the solver progress?

Many thanks for your help.

Thanks,
Varun

On Fri, Mar 4, 2022 at 11:36 AM Jose E. Roman  wrote:

> Yes, assuming that the eigensolver is calling KSPSolve(), you can set a
> monitor with KSPMonitorSet(). This will be called more often than the
> callback for EPSSetStoppingTestFunction().
>
> Jose
>
> > El 4 mar 2022, a las 20:16, Matthew Knepley 
> escribió:
> >
> >
> > On Fri, Mar 4, 2022 at 2:07 PM Varun Hiremath 
> wrote:
> > Hi All,
> >
> > We use SLEPc to compute eigenvalues of big problems which typically
> takes a long time. We want to add a progress bar to inform the user of the
> estimated time remaining to finish the computation. In addition, we also
> want to add an option for the user to abort the computation midway if
> needed.
> >
> > To some extent, I am able to do these by attaching a custom function to
> EPSSetStoppingTestFunction and using nconv/nev as an indication of
> progress, and throwing an exception when the user decides to abort the
> computation. However, since this function gets called only once every
> iteration, for very big problems it takes a long time for the program to
> respond. I was wondering if there is any other function to which I can
> attach, which gets called more frequently and can provide more fine-grained
> information on the progress.
> >
> > I believe (Jose can correct me) that the bulk of the time in an iterate
> would be in the linear solve. You can insert something into a KSPMonitor.
> If you know the convergence tolerance and assume a linear convergence rate
> I guess you could estimate the "amount done".
> >
> >   Thanks,
> >
> >  Matt
> >
> > Thanks,
> > Varun
> >
> >
> > --
> > What most experimenters take for granted before they begin their
> experiments is infinitely more interesting than any results to which their
> experiments lead.
> > -- Norbert Wiener
> >
> > https://www.cse.buffalo.edu/~knepley/
>
>


[petsc-users] SLEPc solve: progress info and abort option

2022-03-04 Thread Varun Hiremath
Hi All,

We use SLEPc to compute eigenvalues of big problems which typically takes a
long time. We want to add a progress bar to inform the user of the
estimated time remaining to finish the computation. In addition, we also
want to add an option for the user to abort the computation midway if
needed.

To some extent, I am able to do these by attaching a custom function to
EPSSetStoppingTestFunction

and
using nconv/nev as an indication of progress, and throwing an exception
when the user decides to abort the computation. However, since this
function gets called only once every iteration, for very big problems it
takes a long time for the program to respond. I was wondering if there is
any other function to which I can attach, which gets called more frequently
and can provide more fine-grained information on the progress.

Thanks,
Varun


Re: [petsc-users] PETSc MUMPS interface

2022-01-22 Thread Varun Hiremath
Hi Hong,

I tested this in the latest petsc main branch and it appears to be working
fine. Thanks for implementing this so quickly!

Regards,
Varun

On Wed, Jan 19, 2022 at 3:33 PM Zhang, Hong  wrote:

> Varun,
> This feature is merged to petsc main
> https://gitlab.com/petsc/petsc/-/merge_requests/4727
> Hong
> --
> *From:* petsc-users  on behalf of Zhang,
> Hong via petsc-users 
> *Sent:* Wednesday, January 19, 2022 9:37 AM
> *To:* Varun Hiremath 
> *Cc:* Peder Jørgensgaard Olesen via petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Varun,
> Good to know it works. FactorSymbolic function is still being called
> twice, but the 2nd call is a no-op, thus it still appears in '-log_view'. I
> made changes in the low level of mumps routine, not within PCSetUp()
> because I feel your use case is limited to mumps, not other matrix package
> solvers.
> Hong
> --
> *From:* Varun Hiremath 
> *Sent:* Wednesday, January 19, 2022 2:44 AM
> *To:* Zhang, Hong 
> *Cc:* Peder Jørgensgaard Olesen via petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Hong,
>
> Thanks, I tested your branch and I think it is working fine. I don't see
> any increase in runtime, however with -log_view I see that the
> MatLUFactorSymbolic function is still being called twice, so is this
> expected? Is the second call a no-op?
>
> $ ./ex52.o -use_mumps_lu -print_mumps_memory -log_view | grep
> MatLUFactorSym
> MatLUFactorSym 2 1.0 4.4411e-04 1.0 0.00e+00 0.0 0.0e+00 0.0e+00
> 0.0e+00  2  0  0  0  0   2  0  0  0  0 0
>
> Thanks,
> Varun
>
> On Mon, Jan 17, 2022 at 7:49 PM Zhang, Hong  wrote:
>
> Varun,
> I created a branch hzhang/feature-mumps-mem-estimate,
> see https://gitlab.com/petsc/petsc/-/merge_requests/4727
>
> You may give it a try and let me know if this is what you want.
> src/ksp/ksp/tutorials/ex52.c is an example.
>
> Hong
> --
> *From:* Varun Hiremath 
> *Sent:* Monday, January 17, 2022 12:41 PM
> *To:* Zhang, Hong 
> *Cc:* Jose E. Roman ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Hong,
>
> Thanks for looking into this. Here is the workflow that I might use:
>
> MatLUFactorSymbolic(F,A,perm,iperm,);
>
> // get memory estimates from MUMPS e.g. INFO(3), INFOG(16), INFOG(17)
> // find available memory on the system e.g. RAM size
> if (estimated_memory > available_memory)
> {
>// inform and stop; or
>// switch MUMPS to out-of-core factorization
>ICNTL(22) = 1;
> }
> else
> {
>// set appropriate settings for in-core factorization
> }
>
> // Now we call the solve and inside if MatLUFactorSymbolic is already
> called then it should be skipped
> EPSSolve(eps);
>
> Thanks,
> Varun
>
> On Mon, Jan 17, 2022 at 9:18 AM Zhang, Hong  wrote:
>
> Varun,
> I am trying to find a way to enable you to switch options after 
> MatLUFactorSymbolic().
> A hack is modifying the flag  'mumps->matstruc'
> inside  MatLUFactorSymbolic_AIJMUMPS() and MatFactorNumeric_MUMPS().
>
> My understanding of what you want is:
>   // collect mumps memory info
>   ...
>   MatLUFactorSymbolic(F,A,perm,iperm,);
>   printMumpsMemoryInfo(F);
>   //-
> if (memory is available) {
> EPSSolve(eps); --> skip calling of MatLUFactorSymbolic()
> } else {
>//out-of-core (OOC) option in MUMPS
> }
>
> Am I correct? I'll let you know once I work out a solution.
> Hong
>
> --
> *From:* Varun Hiremath 
> *Sent:* Sunday, January 16, 2022 10:10 PM
> *To:* Zhang, Hong 
> *Cc:* Jose E. Roman ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Jose, Hong,
>
> Thanks for the explanation. I have verified using -log_view that 
> MatLUFactorSymbolic
> is indeed getting called twice.
>
> Hong, we use MUMPS solver for other things, and we typically run the
> symbolic analysis first and get memory estimates to ensure that we have
> enough memory available to run the case. If the available memory is not
> enough, we can stop or switch to the out-of-core (OOC) option in MUMPS. We
> wanted to do the same when using MUMPS via SLEPc/PETSc. Please let me know
> if there are other ways of getting these memory stats and switching options
> during runtime with PETSc.
> Appreciate your help!
>
> Thanks,
> Varun
>
> On Sun, Jan 16, 2022 at 4:01 PM Zhang, Hong  wrote:
>
> Varun,
> I believe Jose is correct. You may verify it by running your code with
> option '-log_view', then chec

Re: [petsc-users] PETSc MUMPS interface

2022-01-19 Thread Varun Hiremath
Hi Hong,

Thanks, I tested your branch and I think it is working fine. I don't see
any increase in runtime, however with -log_view I see that the
MatLUFactorSymbolic function is still being called twice, so is this
expected? Is the second call a no-op?

$ ./ex52.o -use_mumps_lu -print_mumps_memory -log_view | grep MatLUFactorSym
MatLUFactorSym 2 1.0 4.4411e-04 1.0 0.00e+00 0.0 0.0e+00 0.0e+00
0.0e+00  2  0  0  0  0   2  0  0  0  0 0

Thanks,
Varun

On Mon, Jan 17, 2022 at 7:49 PM Zhang, Hong  wrote:

> Varun,
> I created a branch hzhang/feature-mumps-mem-estimate,
> see https://gitlab.com/petsc/petsc/-/merge_requests/4727
>
> You may give it a try and let me know if this is what you want.
> src/ksp/ksp/tutorials/ex52.c is an example.
>
> Hong
> ------
> *From:* Varun Hiremath 
> *Sent:* Monday, January 17, 2022 12:41 PM
> *To:* Zhang, Hong 
> *Cc:* Jose E. Roman ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Hong,
>
> Thanks for looking into this. Here is the workflow that I might use:
>
> MatLUFactorSymbolic(F,A,perm,iperm,);
>
> // get memory estimates from MUMPS e.g. INFO(3), INFOG(16), INFOG(17)
> // find available memory on the system e.g. RAM size
> if (estimated_memory > available_memory)
> {
>// inform and stop; or
>// switch MUMPS to out-of-core factorization
>ICNTL(22) = 1;
> }
> else
> {
>// set appropriate settings for in-core factorization
> }
>
> // Now we call the solve and inside if MatLUFactorSymbolic is already
> called then it should be skipped
> EPSSolve(eps);
>
> Thanks,
> Varun
>
> On Mon, Jan 17, 2022 at 9:18 AM Zhang, Hong  wrote:
>
> Varun,
> I am trying to find a way to enable you to switch options after 
> MatLUFactorSymbolic().
> A hack is modifying the flag  'mumps->matstruc'
> inside  MatLUFactorSymbolic_AIJMUMPS() and MatFactorNumeric_MUMPS().
>
> My understanding of what you want is:
>   // collect mumps memory info
>   ...
>   MatLUFactorSymbolic(F,A,perm,iperm,);
>   printMumpsMemoryInfo(F);
>   //-
> if (memory is available) {
> EPSSolve(eps); --> skip calling of MatLUFactorSymbolic()
> } else {
>//out-of-core (OOC) option in MUMPS
> }
>
> Am I correct? I'll let you know once I work out a solution.
> Hong
>
> --
> *From:* Varun Hiremath 
> *Sent:* Sunday, January 16, 2022 10:10 PM
> *To:* Zhang, Hong 
> *Cc:* Jose E. Roman ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Jose, Hong,
>
> Thanks for the explanation. I have verified using -log_view that 
> MatLUFactorSymbolic
> is indeed getting called twice.
>
> Hong, we use MUMPS solver for other things, and we typically run the
> symbolic analysis first and get memory estimates to ensure that we have
> enough memory available to run the case. If the available memory is not
> enough, we can stop or switch to the out-of-core (OOC) option in MUMPS. We
> wanted to do the same when using MUMPS via SLEPc/PETSc. Please let me know
> if there are other ways of getting these memory stats and switching options
> during runtime with PETSc.
> Appreciate your help!
>
> Thanks,
> Varun
>
> On Sun, Jan 16, 2022 at 4:01 PM Zhang, Hong  wrote:
>
> Varun,
> I believe Jose is correct. You may verify it by running your code with
> option '-log_view', then check the number of calls to MatLUFactorSym.
>
> I guess I can add a flag in PCSetUp() to check if user has already called
> MatLUFactorSymbolic() and wants to skip it. Normally, users simply allocate
> sufficient memory in the symbolic factorization. Why do you want to check
> it?
> Hong
>
> --
> *From:* Jose E. Roman 
> *Sent:* Sunday, January 16, 2022 5:11 AM
> *To:* Varun Hiremath 
> *Cc:* Zhang, Hong ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hong may give a better answer, but if you look at PCSetUp_LU()
> https://petsc.org/main/src/ksp/pc/impls/factor/lu/lu.c.html#PCSetUp_LU
> you will see that MatLUFactorSymbolic() is called unconditionally during
> the first PCSetUp(). Currently there is no way to check if the user has
> already called MatLUFactorSymbolic().
>
> Jose
>
>
> > El 16 ene 2022, a las 10:40, Varun Hiremath 
> escribió:
> >
> > Hi Hong,
> >
> > Thank you, this is very helpful!
> >
> > Using this method I am able to get the memory estimates before the
> actual solve, however, I think my code may be causing the symbolic
> factorization to be run twice. Attached is

Re: [petsc-users] PETSc MUMPS interface

2022-01-17 Thread Varun Hiremath
Hi Hong,

Thanks for looking into this. Here is the workflow that I might use:

MatLUFactorSymbolic(F,A,perm,iperm,);

// get memory estimates from MUMPS e.g. INFO(3), INFOG(16), INFOG(17)
// find available memory on the system e.g. RAM size
if (estimated_memory > available_memory)
{
   // inform and stop; or
   // switch MUMPS to out-of-core factorization
   ICNTL(22) = 1;
}
else
{
   // set appropriate settings for in-core factorization
}

// Now we call the solve and inside if MatLUFactorSymbolic is already
called then it should be skipped
EPSSolve(eps);

Thanks,
Varun

On Mon, Jan 17, 2022 at 9:18 AM Zhang, Hong  wrote:

> Varun,
> I am trying to find a way to enable you to switch options after 
> MatLUFactorSymbolic().
> A hack is modifying the flag  'mumps->matstruc'
> inside  MatLUFactorSymbolic_AIJMUMPS() and MatFactorNumeric_MUMPS().
>
> My understanding of what you want is:
>   // collect mumps memory info
>   ...
>   MatLUFactorSymbolic(F,A,perm,iperm,);
>   printMumpsMemoryInfo(F);
>   //-
> if (memory is available) {
> EPSSolve(eps); --> skip calling of MatLUFactorSymbolic()
> } else {
>//out-of-core (OOC) option in MUMPS
> }
>
> Am I correct? I'll let you know once I work out a solution.
> Hong
>
> --
> *From:* Varun Hiremath 
> *Sent:* Sunday, January 16, 2022 10:10 PM
> *To:* Zhang, Hong 
> *Cc:* Jose E. Roman ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hi Jose, Hong,
>
> Thanks for the explanation. I have verified using -log_view that 
> MatLUFactorSymbolic
> is indeed getting called twice.
>
> Hong, we use MUMPS solver for other things, and we typically run the
> symbolic analysis first and get memory estimates to ensure that we have
> enough memory available to run the case. If the available memory is not
> enough, we can stop or switch to the out-of-core (OOC) option in MUMPS. We
> wanted to do the same when using MUMPS via SLEPc/PETSc. Please let me know
> if there are other ways of getting these memory stats and switching options
> during runtime with PETSc.
> Appreciate your help!
>
> Thanks,
> Varun
>
> On Sun, Jan 16, 2022 at 4:01 PM Zhang, Hong  wrote:
>
> Varun,
> I believe Jose is correct. You may verify it by running your code with
> option '-log_view', then check the number of calls to MatLUFactorSym.
>
> I guess I can add a flag in PCSetUp() to check if user has already called
> MatLUFactorSymbolic() and wants to skip it. Normally, users simply allocate
> sufficient memory in the symbolic factorization. Why do you want to check
> it?
> Hong
>
> --
> *From:* Jose E. Roman 
> *Sent:* Sunday, January 16, 2022 5:11 AM
> *To:* Varun Hiremath 
> *Cc:* Zhang, Hong ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hong may give a better answer, but if you look at PCSetUp_LU()
> https://petsc.org/main/src/ksp/pc/impls/factor/lu/lu.c.html#PCSetUp_LU
> you will see that MatLUFactorSymbolic() is called unconditionally during
> the first PCSetUp(). Currently there is no way to check if the user has
> already called MatLUFactorSymbolic().
>
> Jose
>
>
> > El 16 ene 2022, a las 10:40, Varun Hiremath 
> escribió:
> >
> > Hi Hong,
> >
> > Thank you, this is very helpful!
> >
> > Using this method I am able to get the memory estimates before the
> actual solve, however, I think my code may be causing the symbolic
> factorization to be run twice. Attached is my code where I am using SLEPc
> to compute eigenvalues, and I use MUMPS for factorization. I have commented
> above the code that computes the memory estimates, could you please check
> and tell me if this would cause the symbolic factor to be computed twice (a
> second time inside EPSSolve?), as I am seeing a slight increase in the
> overall computation time?
> >
> > Regards,
> > Varun
> >
> > On Wed, Jan 12, 2022 at 7:58 AM Zhang, Hong  wrote:
> > PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
> >   PCFactorSetUpMatSolverType(pc);
> >   PCFactorGetMatrix(pc,);
> >
> >   MatLUFactorSymbolic(F,A,...)
> >   You must provide row and column permutations etc,
> petsc/src/mat/tests/ex125.c may give you a clue on how to get these inputs.
> >
> > Hong
> >
> >
> > From: petsc-users  on behalf of
> Junchao Zhang 
> > Sent: Wednesday, January 12, 2022 9:03 AM
> > To: Varun Hiremath 
> > Cc: Peder Jørgensgaard Olesen via petsc-users 
> > Subject: Re: [petsc-users] PETSc MUMPS interface
> >
> > Calling PCSetUp() before

Re: [petsc-users] Inconsistent PETSc MUMPS statistics

2022-01-16 Thread Varun Hiremath
Hi Jose, Pierre,

Yes, I am not using ParMetis or Metis. This is how I am configuring PETSc:
$ ./configure --with-debugging=no --with-mpi-dir=
--with-scalar-type=complex --download-mumps --download-scalapack
--with-blaslapack-dir=

Would you happen to know if there is any option available to force MUMPS to
be deterministic/repeatable in parallel? I couldn't find anything in the
MUMPS user guide that suggests non-deterministic behavior.

For the example matrix that I shared, the final computed eigenvalues are
within machine precision on multiple runs. However, for some other bigger
cases that I am testing, I get different eigenvalues on multiple runs and I
am trying to figure out the source of these inconsistencies.

Thanks,
Varun

On Sun, Jan 16, 2022 at 6:09 AM Pierre Jolivet  wrote:

> Default renumbering is sequential. Since --download-parmetis requires
> --download-metis, I doubt Varun is using ParMETIS since the appropriate
> ICNTL flag is not explicitly set.
> If we go back to the original “issue”, I believe this is because you are
> doing an LU factorization with a large number of off diagonal pivots, check
> INFOG(12), which are handled dynamically, and thus may yield different
> factors.
>
> Thanks,
> Pierre
>
> > On 16 Jan 2022, at 12:28 PM, Jose E. Roman  wrote:
> >
> > Probably someone else can give a better answer, but if I remember
> correctly ParMetis relies on certain random number generator that makes it
> produce different partitions for different runs. I think this was fixed in
> the ParMetis that --download-parmetis installs, but if I am not wrong you
> are not using that version. This would explain what you get.
> >
> > Jose
> >
> >
> >> El 16 ene 2022, a las 11:37, Varun Hiremath 
> escribió:
> >>
> >> Hi All,
> >>
> >> I am using SLEPc to compute eigenvalues and MUMPS for factorization.
> >>
> >> Please find attached:
> >> 1) A simple test program slepc_eps_mumps_test.cpp that reads a given
> PETSc matrix and computes the smallest eigenvalues using MUMPS for
> factorization
> >> 2) An example PETSc matrix MatA of size 581343 rows (sending in .gz
> format via Google drive link, please extract it "gunzip MatA.gz" before
> using). You should be able to reproduce this issue with any other matrix of
> a similar or bigger size.
> >>
> >> I notice that when I run the attached test program in parallel with the
> attached test matrix the MUMPS statistics printed (using the -eps_view
> option in the command line) change with every run.
> >>
> >> This is how I run the test:
> >> $ mpiexec -n 24 ./slepc_eps_mumps_test.o -nev 5 -f MatA -eps_view
> >> and for example, the output of this includes the following MUMPS stats
> >> ...
> >> PC Object: (st_) 24 MPI processes
> >>type: lu
> >>  out-of-place factorization
> >>  tolerance for zero pivot 2.22045e-14
> >>  matrix ordering: external
> >>  factor fill ratio given 0., needed 0.
> >>Factored matrix follows:
> >>  Mat Object: 24 MPI processes
> >>type: mumps
> >>rows=581343, cols=581343
> >>package used to perform factorization: mumps
> >>total: nonzeros=348236349, allocated nonzeros=348236349
> >>  MUMPS run parameters:
> >>SYM (matrix type):   0
> >> ...
> >>
> >> I ran this test 10 times as follows and got a different number of
> nonzeros (line highlighted above ) reported in each run. (If you save the
> full output and compare, you will notice many other differences, but I
> wouldn't have expected the nonzeros to change with every run.)
> >>
> >> $ for i in `seq 1 10`; do echo "run $i :-"; mpiexec -n 24
> ./slepc_eps_mumps_test.o -nev 5 -f MatA -eps_view | grep -A 1
> "factorization: mumps"; done
> >>
> >> run 1 :-
> >>package used to perform factorization: mumps
> >>total: nonzeros=354789915, allocated nonzeros=354789915
> >> run 2 :-
> >>package used to perform factorization: mumps
> >>total: nonzeros=359811101, allocated nonzeros=359811101
> >> run 3 :-
> >>package used to perform factorization: mumps
> >>total: nonzeros=354834871, allocated nonzeros=354834871
> >> run 4 :-
> >>package used to perform factorization: mumps
> >>total: nonzeros=354830397, allocated nonzeros=354830397
> >> run 5 :-

Re: [petsc-users] PETSc MUMPS interface

2022-01-16 Thread Varun Hiremath
Hi Jose, Hong,

Thanks for the explanation. I have verified using -log_view that
MatLUFactorSymbolic
is indeed getting called twice.

Hong, we use MUMPS solver for other things, and we typically run the
symbolic analysis first and get memory estimates to ensure that we have
enough memory available to run the case. If the available memory is not
enough, we can stop or switch to the out-of-core (OOC) option in MUMPS. We
wanted to do the same when using MUMPS via SLEPc/PETSc. Please let me know
if there are other ways of getting these memory stats and switching options
during runtime with PETSc.
Appreciate your help!

Thanks,
Varun

On Sun, Jan 16, 2022 at 4:01 PM Zhang, Hong  wrote:

> Varun,
> I believe Jose is correct. You may verify it by running your code with
> option '-log_view', then check the number of calls to MatLUFactorSym.
>
> I guess I can add a flag in PCSetUp() to check if user has already called
> MatLUFactorSymbolic() and wants to skip it. Normally, users simply allocate
> sufficient memory in the symbolic factorization. Why do you want to check
> it?
> Hong
>
> --
> *From:* Jose E. Roman 
> *Sent:* Sunday, January 16, 2022 5:11 AM
> *To:* Varun Hiremath 
> *Cc:* Zhang, Hong ; Peder Jørgensgaard Olesen via
> petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Hong may give a better answer, but if you look at PCSetUp_LU()
> https://petsc.org/main/src/ksp/pc/impls/factor/lu/lu.c.html#PCSetUp_LU
> you will see that MatLUFactorSymbolic() is called unconditionally during
> the first PCSetUp(). Currently there is no way to check if the user has
> already called MatLUFactorSymbolic().
>
> Jose
>
>
> > El 16 ene 2022, a las 10:40, Varun Hiremath 
> escribió:
> >
> > Hi Hong,
> >
> > Thank you, this is very helpful!
> >
> > Using this method I am able to get the memory estimates before the
> actual solve, however, I think my code may be causing the symbolic
> factorization to be run twice. Attached is my code where I am using SLEPc
> to compute eigenvalues, and I use MUMPS for factorization. I have commented
> above the code that computes the memory estimates, could you please check
> and tell me if this would cause the symbolic factor to be computed twice (a
> second time inside EPSSolve?), as I am seeing a slight increase in the
> overall computation time?
> >
> > Regards,
> > Varun
> >
> > On Wed, Jan 12, 2022 at 7:58 AM Zhang, Hong  wrote:
> > PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
> >   PCFactorSetUpMatSolverType(pc);
> >   PCFactorGetMatrix(pc,);
> >
> >   MatLUFactorSymbolic(F,A,...)
> >   You must provide row and column permutations etc,
> petsc/src/mat/tests/ex125.c may give you a clue on how to get these inputs.
> >
> > Hong
> >
> >
> > From: petsc-users  on behalf of
> Junchao Zhang 
> > Sent: Wednesday, January 12, 2022 9:03 AM
> > To: Varun Hiremath 
> > Cc: Peder Jørgensgaard Olesen via petsc-users 
> > Subject: Re: [petsc-users] PETSc MUMPS interface
> >
> > Calling PCSetUp() before KSPSetUp()?
> >
> > --Junchao Zhang
> >
> >
> > On Wed, Jan 12, 2022 at 3:00 AM Varun Hiremath 
> wrote:
> > Hi All,
> >
> > I want to collect MUMPS memory estimates based on the initial symbolic
> factorization analysis before the actual numerical factorization starts to
> check if the estimated memory requirements fit the available memory.
> >
> > I am following the steps from
> https://petsc.org/main/src/ksp/ksp/tutorials/ex52.c.html
> >
> >   PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
> >   PCFactorSetUpMatSolverType(pc);
> >   PCFactorGetMatrix(pc,);
> >
> >   KSPSetUp(ksp);
> >   MatMumpsGetInfog(F,...)
> >
> > But it appears KSPSetUp calls both symbolic and numerical factorization.
> So is there some other way to get these statistics before the actual
> factorization starts?
> >
> > Thanks,
> > Varun
> > 
>
>


Re: [petsc-users] PETSc MUMPS interface

2022-01-16 Thread Varun Hiremath
Hi Hong,

Thank you, this is very helpful!

Using this method I am able to get the memory estimates before the actual
solve, however, I think my code may be causing the symbolic
factorization to be run twice. Attached is my code where I am using SLEPc
to compute eigenvalues, and I use MUMPS for factorization. I have commented
above the code that computes the memory estimates, could you please check
and tell me if this would cause the symbolic factor to be computed twice (a
second time inside EPSSolve?), as I am seeing a slight increase in the
overall computation time?

Regards,
Varun

On Wed, Jan 12, 2022 at 7:58 AM Zhang, Hong  wrote:

> PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
>   PCFactorSetUpMatSolverType(pc);
>   PCFactorGetMatrix(pc,);
>
>   MatLUFactorSymbolic(F,A,...)
>   You must provide row and column permutations etc,
>   petsc/src/mat/tests/ex125.c may give you a clue on how to get these
> inputs.
>
> Hong
>
>
> --
> *From:* petsc-users  on behalf of
> Junchao Zhang 
> *Sent:* Wednesday, January 12, 2022 9:03 AM
> *To:* Varun Hiremath 
> *Cc:* Peder Jørgensgaard Olesen via petsc-users 
> *Subject:* Re: [petsc-users] PETSc MUMPS interface
>
> Calling PCSetUp() before KSPSetUp()?
>
> --Junchao Zhang
>
>
> On Wed, Jan 12, 2022 at 3:00 AM Varun Hiremath 
> wrote:
>
> Hi All,
>
> I want to collect MUMPS memory estimates based on the initial
> symbolic factorization analysis before the actual numerical factorization
> starts to check if the estimated memory requirements fit the available
> memory.
>
> I am following the steps from
> https://petsc.org/main/src/ksp/ksp/tutorials/ex52.c.html
>
>   PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
>   PCFactorSetUpMatSolverType(pc);
>   PCFactorGetMatrix(pc,);
>
>   KSPSetUp(ksp);
>   MatMumpsGetInfog(F,...)
>
> But it appears KSPSetUp calls both symbolic and numerical factorization.
> So is there some other way to get these statistics before the actual
> factorization starts?
>
> Thanks,
> Varun
>
>


slepc_eps_mumps_test.cpp
Description: Binary data


[petsc-users] PETSc MUMPS interface

2022-01-12 Thread Varun Hiremath
Hi All,

I want to collect MUMPS memory estimates based on the initial
symbolic factorization analysis before the actual numerical factorization
starts to check if the estimated memory requirements fit the available
memory.

I am following the steps from
https://petsc.org/main/src/ksp/ksp/tutorials/ex52.c.html

  PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
  PCFactorSetUpMatSolverType(pc);
  PCFactorGetMatrix(pc,);

  KSPSetUp(ksp);
  MatMumpsGetInfog(F,...)

But it appears KSPSetUp calls both symbolic and numerical factorization. So
is there some other way to get these statistics before the actual
factorization starts?

Thanks,
Varun


Re: [petsc-users] SLEPc: smallest eigenvalues

2021-10-05 Thread Varun Hiremath
Hi Jose,

I have now gotten the quadratic problem working decently using the PEP
package with appropriate scaling and preconditioning, so thanks for all the
suggestions! For the case where K is a shell matrix, I used a scaling based
on an approximation of K, and that seems to be working well.

So now that both linear and quadratic problems are working, I wanted to get
your suggestions on solving a non-linear problem. In some of our cases, we
have a non-linear source term S(lambda) on the right-hand side of the
equation as follows:
(K + lambda*C + lambda^2*M)*x = S(lambda)*x,
where the source can sometimes be simplified as S(lambda) =
exp(lambda*t)*A, where A is a constant matrix.

I am currently solving this non-linear problem iteratively. For each
eigenvalue, I compute the source and add it into the K matrix, and then
iterate until convergence. For this reason, I end up solving the system
multiple times which makes it very slow. I saw some examples of non-linear
problems included in the NEP package. I just wanted to get your thoughts if
I would benefit from using the NEP package for this particular problem?
Will I be able to use preconditioning and scaling as with the PEP package
to speed up the computation for the case where K is a shell matrix? Thanks
for your help.

Regards,
Varun


On Thu, Sep 30, 2021 at 10:12 PM Varun Hiremath 
wrote:

> Hi Jose,
>
> Thanks again for your valuable suggestions. I am still working on this but
> wanted to give you a quick update.
>
> For the linear problem, I tried different KSP solvers, and finally, I'm
> getting good convergence using CGS with LU (using MUMPS) inexact inverse.
> So thank you very much for your help!
>
> But for the quadratic problem, I'm still struggling. As you suggested, I
> have now started using the PEP solver. For the simple case where the K
> matrix is explicitly known, everything works fine. But for the case where K
> is a shell matrix, it struggles to converge. I am yet to try the scaling
> option and some other preconditioning options. I will get back to you on
> this if I have any questions. Appreciate your help!
>
> Thanks,
> Varun
>
> On Tue, Sep 28, 2021 at 8:09 AM Jose E. Roman  wrote:
>
>>
>>
>> > El 28 sept 2021, a las 7:50, Varun Hiremath 
>> escribió:
>> >
>> > Hi Jose,
>> >
>> > I implemented the LU factorized preconditioner and tested it using
>> PREONLY + LU, but that actually is converging to the wrong eigenvalues,
>> compared to just using BICGS + BJACOBI, or simply computing
>> EPS_SMALLEST_MAGNITUDE without any preconditioning. My preconditioning
>> matrix is only a 1st order approximation, and the off-diagonal terms are
>> not very accurate, so I'm guessing this is why the LU factorization doesn't
>> help much? Nonetheless, using BICGS + BJACOBI with slightly relaxed
>> tolerances seems to be working fine.
>>
>> If your PCMAT is not an exact inverse, then you have to iterate, i.e. not
>> use KSPPREONLY but KSPBCGS or another.
>>
>> >
>> > I now want to test the same preconditioning idea for a quadratic
>> problem. I am solving a quadratic equation similar to Eqn.(5.1) in the
>> SLEPc manual:
>> >   (K + lambda*C + lambda^2*M)*x = 0,
>> > I don't use the PEP package directly, but solve this by linearizing
>> similar to Eqn.(5.3) and calling EPS. Without explicitly forming the full
>> matrix, I just use the block matrix structure as explained in the below
>> example and that works nicely for my case:
>> > https://slepc.upv.es/documentation/current/src/eps/tutorials/ex9.c.html
>>
>> Using PEP is generally recommended. The default solver TOAR is
>> memory-efficient and performs less computation than a trivial
>> linearization. In addition, PEP allows you to do scaling, which is often
>> very important to get accurate results in some problems, depending on
>> conditioning.
>>
>> In your case K is a shell matrix, so things may not be trivial. If I am
>> not wrong, you should be able to use STSetPreconditionerMat() for a PEP,
>> where the preconditioner in this case should be built to approximate
>> Q(sigma), where Q(.) is the quadratic polynomial and sigma is the target.
>>
>> >
>> > In my case, K is not explicitly known, and for linear problems, where C
>> = 0, I am using a 1st order approximation of K as the preconditioner. Now
>> could you please tell me if there is a way to conveniently set the
>> preconditioner for the quadratic problem, which will be of the form [-K 0;
>> 0 I]? Note that K is constructed in parallel (the rows are distributed), so
>> I wasn't sure how to construct this preconditioner matrix which will be
>> compati

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-09-30 Thread Varun Hiremath
Hi Jose,

Thanks again for your valuable suggestions. I am still working on this but
wanted to give you a quick update.

For the linear problem, I tried different KSP solvers, and finally, I'm
getting good convergence using CGS with LU (using MUMPS) inexact inverse.
So thank you very much for your help!

But for the quadratic problem, I'm still struggling. As you suggested, I
have now started using the PEP solver. For the simple case where the K
matrix is explicitly known, everything works fine. But for the case where K
is a shell matrix, it struggles to converge. I am yet to try the scaling
option and some other preconditioning options. I will get back to you on
this if I have any questions. Appreciate your help!

Thanks,
Varun

On Tue, Sep 28, 2021 at 8:09 AM Jose E. Roman  wrote:

>
>
> > El 28 sept 2021, a las 7:50, Varun Hiremath 
> escribió:
> >
> > Hi Jose,
> >
> > I implemented the LU factorized preconditioner and tested it using
> PREONLY + LU, but that actually is converging to the wrong eigenvalues,
> compared to just using BICGS + BJACOBI, or simply computing
> EPS_SMALLEST_MAGNITUDE without any preconditioning. My preconditioning
> matrix is only a 1st order approximation, and the off-diagonal terms are
> not very accurate, so I'm guessing this is why the LU factorization doesn't
> help much? Nonetheless, using BICGS + BJACOBI with slightly relaxed
> tolerances seems to be working fine.
>
> If your PCMAT is not an exact inverse, then you have to iterate, i.e. not
> use KSPPREONLY but KSPBCGS or another.
>
> >
> > I now want to test the same preconditioning idea for a quadratic
> problem. I am solving a quadratic equation similar to Eqn.(5.1) in the
> SLEPc manual:
> >   (K + lambda*C + lambda^2*M)*x = 0,
> > I don't use the PEP package directly, but solve this by linearizing
> similar to Eqn.(5.3) and calling EPS. Without explicitly forming the full
> matrix, I just use the block matrix structure as explained in the below
> example and that works nicely for my case:
> > https://slepc.upv.es/documentation/current/src/eps/tutorials/ex9.c.html
>
> Using PEP is generally recommended. The default solver TOAR is
> memory-efficient and performs less computation than a trivial
> linearization. In addition, PEP allows you to do scaling, which is often
> very important to get accurate results in some problems, depending on
> conditioning.
>
> In your case K is a shell matrix, so things may not be trivial. If I am
> not wrong, you should be able to use STSetPreconditionerMat() for a PEP,
> where the preconditioner in this case should be built to approximate
> Q(sigma), where Q(.) is the quadratic polynomial and sigma is the target.
>
> >
> > In my case, K is not explicitly known, and for linear problems, where C
> = 0, I am using a 1st order approximation of K as the preconditioner. Now
> could you please tell me if there is a way to conveniently set the
> preconditioner for the quadratic problem, which will be of the form [-K 0;
> 0 I]? Note that K is constructed in parallel (the rows are distributed), so
> I wasn't sure how to construct this preconditioner matrix which will be
> compatible with the shell matrix structure that I'm using to define the
> MatMult function as in ex9.
>
> The shell matrix of ex9.c interleaves the local parts of the first block
> and the second block. In other words, a process' local part consists of the
> local rows of the first block followed by the local rows of the second
> block. In your case, the local rows of K followed by the local rows of the
> identity (appropriately padded with zeros).
>
> Jose
>
>
> >
> > Thanks,
> > Varun
> >
> > On Fri, Sep 24, 2021 at 11:50 PM Varun Hiremath 
> wrote:
> > Ok, great! I will give that a try, thanks for your help!
> >
> > On Fri, Sep 24, 2021 at 11:12 PM Jose E. Roman 
> wrote:
> > Yes, you can use PCMAT
> https://petsc.org/release/docs/manualpages/PC/PCMAT.html then pass a
> preconditioner matrix that performs the inverse via a shell matrix.
> >
> > > El 25 sept 2021, a las 8:07, Varun Hiremath 
> escribió:
> > >
> > > Hi Jose,
> > >
> > > Thanks for checking my code and providing suggestions.
> > >
> > > In my particular case, I don't know the matrix A explicitly, I compute
> A*x in a matrix-free way within a shell matrix, so I can't use any of the
> direct factorization methods. But just a question regarding your suggestion
> to compute a (parallel) LU factorization. In our work, we do use MUMPS to
> compute the parallel factorization. For solving the generalized problem,
> A*x = lambda*B*x, we are computing inv(B)*A*x within a shell matrix,

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-09-27 Thread Varun Hiremath
Hi Jose,

I implemented the LU factorized preconditioner and tested it using
PREONLY + LU, but that actually is converging to the wrong eigenvalues,
compared to just using BICGS + BJACOBI, or simply computing
EPS_SMALLEST_MAGNITUDE without any preconditioning. My preconditioning
matrix is only a 1st order approximation, and the off-diagonal terms are
not very accurate, so I'm guessing this is why the LU factorization doesn't
help much? Nonetheless, using BICGS + BJACOBI with slightly relaxed
tolerances seems to be working fine.

I now want to test the same preconditioning idea for a quadratic problem. I
am solving a quadratic equation similar to Eqn.(5.1) in the SLEPc manual:
  (K + lambda*C + lambda^2*M)*x = 0,
I don't use the PEP package directly, but solve this by linearizing similar
to Eqn.(5.3) and calling EPS. Without explicitly forming the full matrix, I
just use the block matrix structure as explained in the below example and
that works nicely for my case:
https://slepc.upv.es/documentation/current/src/eps/tutorials/ex9.c.html

In my case, K is not explicitly known, and for linear problems, where C =
0, I am using a 1st order approximation of K as the preconditioner. Now
could you please tell me if there is a way to conveniently set the
preconditioner for the quadratic problem, which will be of the form [-K 0;
0 I]? Note that K is constructed in parallel (the rows are distributed), so
I wasn't sure how to construct this preconditioner matrix which will be
compatible with the shell matrix structure that I'm using to define the
MatMult function as in ex9.

Thanks,
Varun

On Fri, Sep 24, 2021 at 11:50 PM Varun Hiremath 
wrote:

> Ok, great! I will give that a try, thanks for your help!
>
> On Fri, Sep 24, 2021 at 11:12 PM Jose E. Roman  wrote:
>
>> Yes, you can use PCMAT
>> https://petsc.org/release/docs/manualpages/PC/PCMAT.html then pass a
>> preconditioner matrix that performs the inverse via a shell matrix.
>>
>> > El 25 sept 2021, a las 8:07, Varun Hiremath 
>> escribió:
>> >
>> > Hi Jose,
>> >
>> > Thanks for checking my code and providing suggestions.
>> >
>> > In my particular case, I don't know the matrix A explicitly, I compute
>> A*x in a matrix-free way within a shell matrix, so I can't use any of the
>> direct factorization methods. But just a question regarding your suggestion
>> to compute a (parallel) LU factorization. In our work, we do use MUMPS to
>> compute the parallel factorization. For solving the generalized problem,
>> A*x = lambda*B*x, we are computing inv(B)*A*x within a shell matrix, where
>> factorization of B is computed using MUMPS. (We don't call MUMPS through
>> SLEPc as we have our own MPI wrapper and other user settings to handle.)
>> >
>> > So for the preconditioning, instead of using the iterative solvers, can
>> I provide a shell matrix that computes inv(P)*x corrections (where P is the
>> preconditioner matrix) using MUMPS direct solver?
>> >
>> > And yes, thanks, #define PETSC_USE_COMPLEX 1 is not needed, it works
>> without it.
>> >
>> > Regards,
>> > Varun
>> >
>> > On Fri, Sep 24, 2021 at 9:14 AM Jose E. Roman 
>> wrote:
>> > If you do
>> > $ ./acoustic_matrix_test.o -shell 0 -st_type sinvert -deflate 1
>> > then it is using an LU factorization (the default), which is fast.
>> >
>> > Use -eps_view to see which solver settings are you using.
>> >
>> > BiCGStab with block Jacobi does not work for you matrix, it exceeds the
>> maximum 1 iterations. So this is not viable unless you can find a
>> better preconditioner for your problem. If not, just using
>> EPS_SMALLEST_MAGNITUDE will be faster.
>> >
>> > Computing smallest magnitude eigenvalues is a difficult task. The most
>> robust way is to compute a (parallel) LU factorization if you can afford it.
>> >
>> >
>> > A side note: don't add this to your source code
>> > #define PETSC_USE_COMPLEX 1
>> > This define is taken from PETSc's include files, you should not mess
>> with it. Instead, you probably want to add something like this AFTER
>> #include :
>> > #if !defined(PETSC_USE_COMPLEX)
>> > #error "Requires complex scalars"
>> > #endif
>> >
>> > Jose
>> >
>> >
>> > > El 22 sept 2021, a las 19:38, Varun Hiremath 
>> escribió:
>> > >
>> > > Hi Jose,
>> > >
>> > > Thank you, that explains it and my example code works now without
>> specifying "-eps_target 0" in the command line.
>> > >
>> > > However, both the Krylo

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-09-25 Thread Varun Hiremath
Ok, great! I will give that a try, thanks for your help!

On Fri, Sep 24, 2021 at 11:12 PM Jose E. Roman  wrote:

> Yes, you can use PCMAT
> https://petsc.org/release/docs/manualpages/PC/PCMAT.html then pass a
> preconditioner matrix that performs the inverse via a shell matrix.
>
> > El 25 sept 2021, a las 8:07, Varun Hiremath 
> escribió:
> >
> > Hi Jose,
> >
> > Thanks for checking my code and providing suggestions.
> >
> > In my particular case, I don't know the matrix A explicitly, I compute
> A*x in a matrix-free way within a shell matrix, so I can't use any of the
> direct factorization methods. But just a question regarding your suggestion
> to compute a (parallel) LU factorization. In our work, we do use MUMPS to
> compute the parallel factorization. For solving the generalized problem,
> A*x = lambda*B*x, we are computing inv(B)*A*x within a shell matrix, where
> factorization of B is computed using MUMPS. (We don't call MUMPS through
> SLEPc as we have our own MPI wrapper and other user settings to handle.)
> >
> > So for the preconditioning, instead of using the iterative solvers, can
> I provide a shell matrix that computes inv(P)*x corrections (where P is the
> preconditioner matrix) using MUMPS direct solver?
> >
> > And yes, thanks, #define PETSC_USE_COMPLEX 1 is not needed, it works
> without it.
> >
> > Regards,
> > Varun
> >
> > On Fri, Sep 24, 2021 at 9:14 AM Jose E. Roman 
> wrote:
> > If you do
> > $ ./acoustic_matrix_test.o -shell 0 -st_type sinvert -deflate 1
> > then it is using an LU factorization (the default), which is fast.
> >
> > Use -eps_view to see which solver settings are you using.
> >
> > BiCGStab with block Jacobi does not work for you matrix, it exceeds the
> maximum 1 iterations. So this is not viable unless you can find a
> better preconditioner for your problem. If not, just using
> EPS_SMALLEST_MAGNITUDE will be faster.
> >
> > Computing smallest magnitude eigenvalues is a difficult task. The most
> robust way is to compute a (parallel) LU factorization if you can afford it.
> >
> >
> > A side note: don't add this to your source code
> > #define PETSC_USE_COMPLEX 1
> > This define is taken from PETSc's include files, you should not mess
> with it. Instead, you probably want to add something like this AFTER
> #include :
> > #if !defined(PETSC_USE_COMPLEX)
> > #error "Requires complex scalars"
> > #endif
> >
> > Jose
> >
> >
> > > El 22 sept 2021, a las 19:38, Varun Hiremath 
> escribió:
> > >
> > > Hi Jose,
> > >
> > > Thank you, that explains it and my example code works now without
> specifying "-eps_target 0" in the command line.
> > >
> > > However, both the Krylov inexact shift-invert and JD solvers are
> struggling to converge for some of my actual problems. The issue seems to
> be related to non-symmetric general matrices. I have extracted one such
> matrix attached here as MatA.gz (size 100k), and have also included a short
> program that loads this matrix and then computes the smallest eigenvalues
> as I described earlier.
> > >
> > > For this matrix, if I compute the eigenvalues directly (without using
> the shell matrix) using shift-and-invert (as below) then it converges in
> less than a minute.
> > > $ ./acoustic_matrix_test.o -shell 0 -st_type sinvert -deflate 1
> > >
> > > However, if I use the shell matrix and use any of the preconditioned
> solvers JD or Krylov shift-invert (as shown below) with the same matrix as
> the preconditioner, then they struggle to converge.
> > > $ ./acoustic_matrix_test.o -usejd 1 -deflate 1
> > > $ ./acoustic_matrix_test.o -sinvert 1 -deflate 1
> > >
> > > Could you please check the attached code and suggest any changes in
> settings that might help with convergence for these kinds of matrices? I
> appreciate your help!
> > >
> > > Thanks,
> > > Varun
> > >
> > > On Tue, Sep 21, 2021 at 11:14 AM Jose E. Roman 
> wrote:
> > > I will have a look at your code when I have more time. Meanwhile, I am
> answering 3) below...
> > >
> > > > El 21 sept 2021, a las 0:23, Varun Hiremath 
> escribió:
> > > >
> > > > Hi Jose,
> > > >
> > > > Sorry, it took me a while to test these settings in the new builds.
> I am getting good improvement in performance using the preconditioned
> solvers, so thanks for the suggestions! But I have some questions related
> to the usage.
> > > >
> > > &g

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-09-25 Thread Varun Hiremath
Hi Jose,

Thanks for checking my code and providing suggestions.

In my particular case, I don't know the matrix A explicitly, I compute A*x
in a matrix-free way within a shell matrix, so I can't use any of the
direct factorization methods. But just a question regarding your suggestion
to compute a (parallel) LU factorization. In our work, we do use MUMPS to
compute the parallel factorization. For solving the generalized problem,
A*x = lambda*B*x, we are computing inv(B)*A*x within a shell matrix, where
factorization of B is computed using MUMPS. (We don't call MUMPS through
SLEPc as we have our own MPI wrapper and other user settings to handle.)

So for the preconditioning, instead of using the iterative solvers, can I
provide a shell matrix that computes inv(P)*x corrections (where P is the
preconditioner matrix) using MUMPS direct solver?

And yes, thanks, #define PETSC_USE_COMPLEX 1 is not needed, it works
without it.

Regards,
Varun

On Fri, Sep 24, 2021 at 9:14 AM Jose E. Roman  wrote:

> If you do
> $ ./acoustic_matrix_test.o -shell 0 -st_type sinvert -deflate 1
> then it is using an LU factorization (the default), which is fast.
>
> Use -eps_view to see which solver settings are you using.
>
> BiCGStab with block Jacobi does not work for you matrix, it exceeds the
> maximum 1 iterations. So this is not viable unless you can find a
> better preconditioner for your problem. If not, just using
> EPS_SMALLEST_MAGNITUDE will be faster.
>
> Computing smallest magnitude eigenvalues is a difficult task. The most
> robust way is to compute a (parallel) LU factorization if you can afford it.
>
>
> A side note: don't add this to your source code
> #define PETSC_USE_COMPLEX 1
> This define is taken from PETSc's include files, you should not mess with
> it. Instead, you probably want to add something like this AFTER #include
> :
> #if !defined(PETSC_USE_COMPLEX)
> #error "Requires complex scalars"
> #endif
>
> Jose
>
>
> > El 22 sept 2021, a las 19:38, Varun Hiremath 
> escribió:
> >
> > Hi Jose,
> >
> > Thank you, that explains it and my example code works now without
> specifying "-eps_target 0" in the command line.
> >
> > However, both the Krylov inexact shift-invert and JD solvers are
> struggling to converge for some of my actual problems. The issue seems to
> be related to non-symmetric general matrices. I have extracted one such
> matrix attached here as MatA.gz (size 100k), and have also included a short
> program that loads this matrix and then computes the smallest eigenvalues
> as I described earlier.
> >
> > For this matrix, if I compute the eigenvalues directly (without using
> the shell matrix) using shift-and-invert (as below) then it converges in
> less than a minute.
> > $ ./acoustic_matrix_test.o -shell 0 -st_type sinvert -deflate 1
> >
> > However, if I use the shell matrix and use any of the preconditioned
> solvers JD or Krylov shift-invert (as shown below) with the same matrix as
> the preconditioner, then they struggle to converge.
> > $ ./acoustic_matrix_test.o -usejd 1 -deflate 1
> > $ ./acoustic_matrix_test.o -sinvert 1 -deflate 1
> >
> > Could you please check the attached code and suggest any changes in
> settings that might help with convergence for these kinds of matrices? I
> appreciate your help!
> >
> > Thanks,
> > Varun
> >
> > On Tue, Sep 21, 2021 at 11:14 AM Jose E. Roman 
> wrote:
> > I will have a look at your code when I have more time. Meanwhile, I am
> answering 3) below...
> >
> > > El 21 sept 2021, a las 0:23, Varun Hiremath 
> escribió:
> > >
> > > Hi Jose,
> > >
> > > Sorry, it took me a while to test these settings in the new builds. I
> am getting good improvement in performance using the preconditioned
> solvers, so thanks for the suggestions! But I have some questions related
> to the usage.
> > >
> > > We are using SLEPc to solve the acoustic modal eigenvalue problem.
> Attached is a simple standalone program that computes acoustic modes in a
> simple rectangular box. This program illustrates the general setup I am
> using, though here the shell matrix and the preconditioner matrix are the
> same, while in my actual program the shell matrix computes A*x without
> explicitly forming A, and the preconditioner is a 0th order approximation
> of A.
> > >
> > > In the attached program I have tested both
> > > 1) the Krylov-Schur with inexact shift-and-invert (implemented under
> the option sinvert);
> > > 2) the JD solver with preconditioner (implemented under the option
> usejd)
> > >
> > > Both the solvers seem t

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-09-20 Thread Varun Hiremath
Hi Jose,

Sorry, it took me a while to test these settings in the new builds. I am
getting good improvement in performance using the preconditioned solvers,
so thanks for the suggestions! But I have some questions related to the
usage.

We are using SLEPc to solve the acoustic modal eigenvalue problem. Attached
is a simple standalone program that computes acoustic modes in a simple
rectangular box. This program illustrates the general setup I am using,
though here the shell matrix and the preconditioner matrix are the same,
while in my actual program the shell matrix computes A*x without explicitly
forming A, and the preconditioner is a 0th order approximation of A.

In the attached program I have tested both
1) the Krylov-Schur with inexact shift-and-invert (implemented under the
option sinvert);
2) the JD solver with preconditioner (implemented under the option usejd)

Both the solvers seem to work decently, compared to no preconditioning.
This is how I run the two solvers (for a mesh size of 1600x400):
$ ./acoustic_box_test.o -nx 1600 -ny 400 -usejd 1 -deflate 1 -eps_target 0
$ ./acoustic_box_test.o -nx 1600 -ny 400 -sinvert 1 -deflate 1 -eps_target 0
Both finish in about ~10 minutes on my system in serial. JD seems to be
slightly faster and more accurate (for the imaginary part of eigenvalue).
The program also runs in parallel using mpiexec. I use complex builds, as
in my main program the matrix can be complex.

Now here are my questions:
1) For this particular problem type, could you please check if these are
the best settings that one could use? I have tried different combinations
of KSP/PC types e.g. GMRES, GAMG, etc, but BCGSL + BJACOBI seems to work
the best in serial and parallel.

2) When I tested these settings in my main program, for some reason the JD
solver was not converging. After further testing, I found the issue was
related to the setting of "-eps_target 0". I have included "
EPSSetTarget(eps,0.0);" in the program and I assumed this is equivalent to
passing "-eps_target 0" from the command line, but that doesn't seem to be
the case. For instance, if I run the attached program without "-eps_target
0" in the command line then it doesn't converge.
$ ./acoustic_box_test.o -nx 1600 -ny 400 -usejd 1 -deflate 1 -eps_target 0
 the above finishes in about 10 minutes
$ ./acoustic_box_test.o -nx 1600 -ny 400 -usejd 1 -deflate 1
 the above doesn't converge even though "EPSSetTarget(eps,0.0);" is
included in the code

This only seems to affect the JD solver, not the Krylov shift-and-invert
(-sinvert 1) option. So is there any difference between passing "-eps_target
0" from the command line vs using "EPSSetTarget(eps,0.0);" in the code? I
cannot pass any command line arguments in my actual program, so need to set
everything internally.

3) Also, another minor related issue. While using the inexact
shift-and-invert option, I was running into the following error:

""
Missing or incorrect user input
Shift-and-invert requires a target 'which' (see EPSSetWhichEigenpairs), for
instance -st_type sinvert -eps_target 0 -eps_target_magnitude
""

I already have the below two lines in the code:
EPSSetWhichEigenpairs(eps,EPS_SMALLEST_MAGNITUDE);
EPSSetTarget(eps,0.0);

so shouldn't these be enough? If I comment out the first line
"EPSSetWhichEigenpairs", then the code works fine.

I have some more questions regarding setting the preconditioner for a
quadratic eigenvalue problem, which I will ask in a follow-up email.

Thanks for your help!

-Varun


On Thu, Jul 1, 2021 at 5:01 AM Varun Hiremath 
wrote:

> Thank you very much for these suggestions! We are currently using version
> 3.12, so I'll try to update to the latest version and try your suggestions.
> Let me get back to you, thanks!
>
> On Thu, Jul 1, 2021, 4:45 AM Jose E. Roman  wrote:
>
>> Then I would try Davidson methods https://doi.org/10.1145/2543696
>> You can also try Krylov-Schur with "inexact" shift-and-invert, for
>> instance, with preconditioned BiCGStab or GMRES, see section 3.4.1 of the
>> users manual.
>>
>> In both cases, you have to pass matrix A in the call to EPSSetOperators()
>> and the preconditioner matrix via STSetPreconditionerMat() - note this
>> function was introduced in version 3.15.
>>
>> Jose
>>
>>
>>
>> > El 1 jul 2021, a las 13:36, Varun Hiremath 
>> escribió:
>> >
>> > Thanks. I actually do have a 1st order approximation of matrix A, that
>> I can explicitly compute and also invert. Can I use that matrix as
>> preconditioner to speed things up? Is there some example that explains how
>> to setup and call SLEPc for this scenario?
>> >
>> > On Thu, Jul 1, 2021, 4:29 AM Jose E. Roman  wrote:
>> > For smallest real parts one could adapt 

Re: [petsc-users] SLEPc: smallest eigenvalues

2021-07-01 Thread Varun Hiremath
Thank you very much for these suggestions! We are currently using version
3.12, so I'll try to update to the latest version and try your suggestions.
Let me get back to you, thanks!

On Thu, Jul 1, 2021, 4:45 AM Jose E. Roman  wrote:

> Then I would try Davidson methods https://doi.org/10.1145/2543696
> You can also try Krylov-Schur with "inexact" shift-and-invert, for
> instance, with preconditioned BiCGStab or GMRES, see section 3.4.1 of the
> users manual.
>
> In both cases, you have to pass matrix A in the call to EPSSetOperators()
> and the preconditioner matrix via STSetPreconditionerMat() - note this
> function was introduced in version 3.15.
>
> Jose
>
>
>
> > El 1 jul 2021, a las 13:36, Varun Hiremath 
> escribió:
> >
> > Thanks. I actually do have a 1st order approximation of matrix A, that I
> can explicitly compute and also invert. Can I use that matrix as
> preconditioner to speed things up? Is there some example that explains how
> to setup and call SLEPc for this scenario?
> >
> > On Thu, Jul 1, 2021, 4:29 AM Jose E. Roman  wrote:
> > For smallest real parts one could adapt ex34.c, but it is going to be
> costly
> https://slepc.upv.es/documentation/current/src/eps/tutorials/ex36.c.html
> > Also, if eigenvalues are clustered around the origin, convergence may
> still be very slow.
> >
> > It is a tough problem, unless you are able to compute a good
> preconditioner of A (no need to compute the exact inverse).
> >
> > Jose
> >
> >
> > > El 1 jul 2021, a las 13:23, Varun Hiremath 
> escribió:
> > >
> > > I'm solving for the smallest eigenvalues in magnitude. Though is it
> cheaper to solve smallest in real part, as that might also work in my case?
> Thanks for your help.
> > >
> > > On Thu, Jul 1, 2021, 4:08 AM Jose E. Roman  wrote:
> > > Smallest eigenvalue in magnitude or real part?
> > >
> > >
> > > > El 1 jul 2021, a las 11:58, Varun Hiremath 
> escribió:
> > > >
> > > > Sorry, no both A and B are general sparse matrices (non-hermitian).
> So is there anything else I could try?
> > > >
> > > > On Thu, Jul 1, 2021 at 2:43 AM Jose E. Roman 
> wrote:
> > > > Is the problem symmetric (GHEP)? In that case, you can try LOBPCG on
> the pair (A,B). But this will likely be slow as well, unless you can
> provide a good preconditioner.
> > > >
> > > > Jose
> > > >
> > > >
> > > > > El 1 jul 2021, a las 11:37, Varun Hiremath <
> varunhirem...@gmail.com> escribió:
> > > > >
> > > > > Hi All,
> > > > >
> > > > > I am trying to compute the smallest eigenvalues of a generalized
> system A*x= lambda*B*x. I don't explicitly know the matrix A (so I am using
> a shell matrix with a custom matmult function) however, the matrix B is
> explicitly known so I compute inv(B)*A within the shell matrix and solve
> inv(B)*A*x = lambda*x.
> > > > >
> > > > > To compute the smallest eigenvalues it is recommended to solve the
> inverted system, but since matrix A is not explicitly known I can't invert
> the system. Moreover, the size of the system can be really big, and with
> the default Krylov solver, it is extremely slow. So is there a better way
> for me to compute the smallest eigenvalues of this system?
> > > > >
> > > > > Thanks,
> > > > > Varun
> > > >
> > >
> >
>
>


Re: [petsc-users] SLEPc: smallest eigenvalues

2021-07-01 Thread Varun Hiremath
Thanks. I actually do have a 1st order approximation of matrix A, that I
can explicitly compute and also invert. Can I use that matrix as
preconditioner to speed things up? Is there some example that explains how
to setup and call SLEPc for this scenario?

On Thu, Jul 1, 2021, 4:29 AM Jose E. Roman  wrote:

> For smallest real parts one could adapt ex34.c, but it is going to be
> costly
> https://slepc.upv.es/documentation/current/src/eps/tutorials/ex36.c.html
> Also, if eigenvalues are clustered around the origin, convergence may
> still be very slow.
>
> It is a tough problem, unless you are able to compute a good
> preconditioner of A (no need to compute the exact inverse).
>
> Jose
>
>
> > El 1 jul 2021, a las 13:23, Varun Hiremath 
> escribió:
> >
> > I'm solving for the smallest eigenvalues in magnitude. Though is it
> cheaper to solve smallest in real part, as that might also work in my case?
> Thanks for your help.
> >
> > On Thu, Jul 1, 2021, 4:08 AM Jose E. Roman  wrote:
> > Smallest eigenvalue in magnitude or real part?
> >
> >
> > > El 1 jul 2021, a las 11:58, Varun Hiremath 
> escribió:
> > >
> > > Sorry, no both A and B are general sparse matrices (non-hermitian). So
> is there anything else I could try?
> > >
> > > On Thu, Jul 1, 2021 at 2:43 AM Jose E. Roman 
> wrote:
> > > Is the problem symmetric (GHEP)? In that case, you can try LOBPCG on
> the pair (A,B). But this will likely be slow as well, unless you can
> provide a good preconditioner.
> > >
> > > Jose
> > >
> > >
> > > > El 1 jul 2021, a las 11:37, Varun Hiremath 
> escribió:
> > > >
> > > > Hi All,
> > > >
> > > > I am trying to compute the smallest eigenvalues of a generalized
> system A*x= lambda*B*x. I don't explicitly know the matrix A (so I am using
> a shell matrix with a custom matmult function) however, the matrix B is
> explicitly known so I compute inv(B)*A within the shell matrix and solve
> inv(B)*A*x = lambda*x.
> > > >
> > > > To compute the smallest eigenvalues it is recommended to solve the
> inverted system, but since matrix A is not explicitly known I can't invert
> the system. Moreover, the size of the system can be really big, and with
> the default Krylov solver, it is extremely slow. So is there a better way
> for me to compute the smallest eigenvalues of this system?
> > > >
> > > > Thanks,
> > > > Varun
> > >
> >
>
>


Re: [petsc-users] SLEPc: smallest eigenvalues

2021-07-01 Thread Varun Hiremath
I'm solving for the smallest eigenvalues in magnitude. Though is it cheaper
to solve smallest in real part, as that might also work in my case? Thanks
for your help.

On Thu, Jul 1, 2021, 4:08 AM Jose E. Roman  wrote:

> Smallest eigenvalue in magnitude or real part?
>
>
> > El 1 jul 2021, a las 11:58, Varun Hiremath 
> escribió:
> >
> > Sorry, no both A and B are general sparse matrices (non-hermitian). So
> is there anything else I could try?
> >
> > On Thu, Jul 1, 2021 at 2:43 AM Jose E. Roman  wrote:
> > Is the problem symmetric (GHEP)? In that case, you can try LOBPCG on the
> pair (A,B). But this will likely be slow as well, unless you can provide a
> good preconditioner.
> >
> > Jose
> >
> >
> > > El 1 jul 2021, a las 11:37, Varun Hiremath 
> escribió:
> > >
> > > Hi All,
> > >
> > > I am trying to compute the smallest eigenvalues of a generalized
> system A*x= lambda*B*x. I don't explicitly know the matrix A (so I am using
> a shell matrix with a custom matmult function) however, the matrix B is
> explicitly known so I compute inv(B)*A within the shell matrix and solve
> inv(B)*A*x = lambda*x.
> > >
> > > To compute the smallest eigenvalues it is recommended to solve the
> inverted system, but since matrix A is not explicitly known I can't invert
> the system. Moreover, the size of the system can be really big, and with
> the default Krylov solver, it is extremely slow. So is there a better way
> for me to compute the smallest eigenvalues of this system?
> > >
> > > Thanks,
> > > Varun
> >
>
>


Re: [petsc-users] SLEPc: smallest eigenvalues

2021-07-01 Thread Varun Hiremath
Sorry, no both A and B are general sparse matrices (non-hermitian). So is
there anything else I could try?

On Thu, Jul 1, 2021 at 2:43 AM Jose E. Roman  wrote:

> Is the problem symmetric (GHEP)? In that case, you can try LOBPCG on the
> pair (A,B). But this will likely be slow as well, unless you can provide a
> good preconditioner.
>
> Jose
>
>
> > El 1 jul 2021, a las 11:37, Varun Hiremath 
> escribió:
> >
> > Hi All,
> >
> > I am trying to compute the smallest eigenvalues of a generalized system
> A*x= lambda*B*x. I don't explicitly know the matrix A (so I am using a
> shell matrix with a custom matmult function) however, the matrix B is
> explicitly known so I compute inv(B)*A within the shell matrix and solve
> inv(B)*A*x = lambda*x.
> >
> > To compute the smallest eigenvalues it is recommended to solve the
> inverted system, but since matrix A is not explicitly known I can't invert
> the system. Moreover, the size of the system can be really big, and with
> the default Krylov solver, it is extremely slow. So is there a better way
> for me to compute the smallest eigenvalues of this system?
> >
> > Thanks,
> > Varun
>
>


[petsc-users] SLEPc: smallest eigenvalues

2021-07-01 Thread Varun Hiremath
Hi All,

I am trying to compute the smallest eigenvalues of a generalized system
A*x= lambda*B*x. I don't explicitly know the matrix A (so I am using a
shell matrix with a custom matmult function) however, the matrix B is
explicitly known so I compute inv(B)*A within the shell matrix and solve
inv(B)*A*x = lambda*x.

To compute the smallest eigenvalues it is recommended to solve the inverted
system, but since matrix A is not explicitly known I can't invert the
system. Moreover, the size of the system can be really big, and with the
default Krylov solver, it is extremely slow. So is there a better way for
me to compute the smallest eigenvalues of this system?

Thanks,
Varun


Accepted python-enable 4.8.1-1 (source amd64) into unstable, unstable

2020-01-24 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 23 Jan 2020 16:04:30 -0800
Source: python-enable
Binary: python3-enable python3-enable-dbgsym
Architecture: source amd64
Version: 4.8.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Varun Hiremath 
Description:
 python3-enable - Drawing and interaction packages (Python 3)
Closes: 937727
Changes:
 python-enable (4.8.1-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/control: Set Vcs-* to salsa.debian.org
   * d/watch: Use https protocol
   * d/control: Remove ancient X-Python-Version field
   * Convert git repository from git-dpm to gbp layout
 .
   [ Varun Hiremath ]
   * New upstream release
   * Switch to Python 3 (Closes: #937727)
   * Add python3-enable package
   * debian/rules: switch to dh-* and pybuild
   * d/patches:
 - Drop gcc5, fonttools, pillow, 0007-fix-FTBFS-with-SWIG-3 patches
 - Add cython_speedups patch to fix build with Python 3.8
 - Add disable_tests patch to disable a test requiring internet access
   * Add debian/source/options to ignore changes to _version.py files
   * Use debhelper-compat instead of debian/compat
   * Delete d/clean, d/pyversion, d/pydist-overrides
 .
   [ Scott Talbert ]
   * Update Build-Depends and Depends (remove last Py2 deps; add Py3)
   * Fix spurious executable permissions on file
   * Perform major update in d/copyright to DEP5 format
Checksums-Sha1:
 8df79b6ba733bed905f01593d19926bc0d4d7253 2344 python-enable_4.8.1-1.dsc
 ca2e1edd748adc34696aafa7703e8dbc70562e10 1588435 
python-enable_4.8.1.orig.tar.gz
 26aa9ba468c97d4fc8815a77cc614f68ed3da3f8 51464 
python-enable_4.8.1-1.debian.tar.xz
 5a97c573bed5bab9dfd756e23d45b79eb1315610 12808 
python-enable_4.8.1-1_amd64.buildinfo
 c3fccc679c154103f970058cb1e659c29714c69c 1338548 
python3-enable-dbgsym_4.8.1-1_amd64.deb
 ba7d1eedef6ee241f856aacb527885711a0d6eaa 1317644 
python3-enable_4.8.1-1_amd64.deb
Checksums-Sha256:
 863844c825dec670b1c38a20ec19e67ea8752091fbcf299d4b9e9885cd1530e0 2344 
python-enable_4.8.1-1.dsc
 9bfd902673abdd1358f06f024d01c9808d40c49fc9b179f574fb0ca7f96801e9 1588435 
python-enable_4.8.1.orig.tar.gz
 9e88a9be712137135c94349b3d159130f0efbc08b2d14fdfefa84976351ee3a6 51464 
python-enable_4.8.1-1.debian.tar.xz
 29bcffd4f120477f83afdfbc96bdcc35c7ede7c46592e0f5b43c22da72f455ee 12808 
python-enable_4.8.1-1_amd64.buildinfo
 5b430b5c8e1850ab2462010b0ceabf4efb57ccffaa7fa1ba2e66b64499a49844 1338548 
python3-enable-dbgsym_4.8.1-1_amd64.deb
 d648aed7a000c9dbedadee9db6d1a34e2ec27432d9b7b9e7bd6feefb4556b717 1317644 
python3-enable_4.8.1-1_amd64.deb
Files:
 3a50627f5e874feedd2141cd8d2f09da 2344 python optional python-enable_4.8.1-1.dsc
 7a69fa5c1cd2e2830f80d1e55e4acff5 1588435 python optional 
python-enable_4.8.1.orig.tar.gz
 c012e8f565ea582909ce7dae1a476078 51464 python optional 
python-enable_4.8.1-1.debian.tar.xz
 28ad253317150e82cb41770dd4c3a4a5 12808 python optional 
python-enable_4.8.1-1_amd64.buildinfo
 464b46aeb42268f23dd441981c753f92 1338548 debug optional 
python3-enable-dbgsym_4.8.1-1_amd64.deb
 be8b8ee8fd115b2b83c33cddb7db1a11 1317644 python optional 
python3-enable_4.8.1-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEDBnIgiN9JdQ7ikG+cDc88SkNuc4FAl4qnM0ACgkQcDc88SkN
uc7s+g//Svbg5wVp88Upidk0iM0PtfcFkawMR2lSxy1+3q5Op+7vO6z/8HXGKHIc
74AhOAiJzNiC23Eslw5QGiTY/rnwRWWReavqYOyXXOArv5+JeQuRveDiVGPGY6kO
3zgm21R3h2tctURHS7u1iC+6cBRcWJoxHTmWOpAkUDayqxJFg6Grw1yETq8qib1e
oR7mGS8+W8+DRVgFgxtuPsoADHiPjGE3XTK4sVHvVJKkynRJXf/tFKDWw8jKqxaA
Wdqj2VKgSvGdMVEBlPhkF+HJ1XVjqaLqrR9sdCZrVxY6CtOHm7ydXMMkxdsIXDPZ
VonH5XL1sW3wxhDqW2hG3tKO+pMP0gs+laDVTkHUnvXCyadvzCqZKMj+AK/MWBQo
P0BGevhn8gpa+XJSZr1X+r6BjGxsPXYHxZxbFJXYvydKY+BbJZXbK7Ft03Sh6tfo
LDrPPRCrhzNawqoPSaTvw5KF+MCzi69fq+WA996bEUHkl8cdNR1oFIf3DWP61ZKY
5VtZWMEGVDONGb7InoLBHpaR+wdASk2cIeNINBqe1SlJvOQVN2uwmR37kyyy+HZR
U/U4RetCguxic8SKIQE3VErbXj3W3iSlA8uc/cZniUFJg/0HQYzuKBErvKVtcUNq
BLviWoUjhTzmzWUZjuFwSirQvx5dygaUbSYSkSLig2RGugmQRVQ=
=K8Sn
-END PGP SIGNATURE-



Bug#937727: RM python-enable

2019-12-09 Thread Varun Hiremath
reassign -1 src:python-enable
retitle -1 python-enable: convert package to Python 3
thanks

Hi Dmitry,

Yes, sorry for the delay but I have finally gotten some time to spend on my
Debian packages. Thanks to you and Scott for taking care of traits,
traitsui and pyface! I plan to work on enable and chaco and update them to
Python 3.

Regards,
Varun

On Mon, Dec 9, 2019 at 2:36 AM Dmitry Shachnev  wrote:

> Hi Varun!
>
> On Sun, Dec 08, 2019 at 10:35:51PM -0500, Scott Talbert wrote:
> > Control: reassign -1 ftp.debian.org
> > Control: retitle -1 RM: python-enable -- RoQA; unmaintained; low popcon;
> blocking py2 removal; no rdeps
>
> I see you started working on python-enable in Git [1]. If you want to
> prevent
> removal of this package, please reassign this bug back to
> src:python-enable.
>
> But the Python 3 package will have to go through the NEW queue anyway, no
> matter if the old package is removed or not.
>
> [1]:
> https://salsa.debian.org/python-team/modules/python-enable/commits/master
>
> --
> Dmitry Shachnev
>


Bug#937727: RM python-enable

2019-12-09 Thread Varun Hiremath
reassign -1 src:python-enable
retitle -1 python-enable: convert package to Python 3
thanks

Hi Dmitry,

Yes, sorry for the delay but I have finally gotten some time to spend on my
Debian packages. Thanks to you and Scott for taking care of traits,
traitsui and pyface! I plan to work on enable and chaco and update them to
Python 3.

Regards,
Varun

On Mon, Dec 9, 2019 at 2:36 AM Dmitry Shachnev  wrote:

> Hi Varun!
>
> On Sun, Dec 08, 2019 at 10:35:51PM -0500, Scott Talbert wrote:
> > Control: reassign -1 ftp.debian.org
> > Control: retitle -1 RM: python-enable -- RoQA; unmaintained; low popcon;
> blocking py2 removal; no rdeps
>
> I see you started working on python-enable in Git [1]. If you want to
> prevent
> removal of this package, please reassign this bug back to
> src:python-enable.
>
> But the Python 3 package will have to go through the NEW queue anyway, no
> matter if the old package is removed or not.
>
> [1]:
> https://salsa.debian.org/python-team/modules/python-enable/commits/master
>
> --
> Dmitry Shachnev
>


Bug#934264: Please update (4.6.2?) and provide/switch to python3

2019-08-14 Thread Varun Hiremath
Hi Yaroslav and Andreas,

On Fri, Aug 9, 2019 at 6:57 AM Yaroslav Halchenko 
wrote:

> > Remark: Since it seems the package is not really maintained by the
> > Uploader inside the PAPT team and entering the PAPT team might take a
> > bit longer I'd consider it a sensible step to take over the package to
> > Debian Science team to enable more people an easy access to the
> > repository.  I'm not keen on "nursing" merge requests of grown up
> > Python developers just because these are not part of PAPT team.
>
> well -- I guess that should be cleared up with the PAPT team / original
> uploaders (at least with Varun ?  any objections?)
>

I currently don't have time to work on mayav2 package, but feel free to
move it to Debain Science team repository if it helps with maintaining this
package, I don't have any objections.

Thanks,
Varun


Accepted searchmonkey 0.8.3-1 (source amd64) into unstable

2018-03-23 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 23 Mar 2018 13:32:19 -0400
Source: searchmonkey
Binary: searchmonkey
Architecture: source amd64
Version: 0.8.3-1
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 searchmonkey - search files using regular expressions aiming to replace 
find/gre
Changes:
 searchmonkey (0.8.3-1) unstable; urgency=medium
 .
   * New upstream release
   * d/control: Add Build-Depends intltool, libzip-dev, libpoppler-glib-dev
   * Update Vcs fields to new debian git repository
   * Remove patches that are merged upstream
   * Update debian/compat to 9
Checksums-Sha1:
 f6b43d2b4538f6b1ebb4d12d0ab5715a789a98e2 2022 searchmonkey_0.8.3-1.dsc
 d1e79b1d855ec26124d80febe3a3820fd13a336f 918851 searchmonkey_0.8.3.orig.tar.gz
 c55af1b5fb8a17a4e2062204db403193a134fdc2 9712 
searchmonkey_0.8.3-1.debian.tar.xz
 04e69860237a8de901ad1787ff0e57c00dc27f33 253064 
searchmonkey-dbgsym_0.8.3-1_amd64.deb
 4f73a84d27c446114ef678a82992a4cc2b1c15d9 11412 
searchmonkey_0.8.3-1_amd64.buildinfo
 430b40eda4275b1536f15c829f752d567ec06c77 450272 searchmonkey_0.8.3-1_amd64.deb
Checksums-Sha256:
 da6da8d49136a13e641927ac4d09b534ba20e072e9fcf2f73d4139912fa32286 2022 
searchmonkey_0.8.3-1.dsc
 ffdea87aca18ddbc8ea1336fe876e094f259608c1780e968ec9b2ab84f130582 918851 
searchmonkey_0.8.3.orig.tar.gz
 fde3563fe7a70a72ed906ab2cf06b1f6a639ddb6da741f977cae8011c3fc68a8 9712 
searchmonkey_0.8.3-1.debian.tar.xz
 686989d855cbf83ec01369adfbd084e525621d319fd0a5ef7c83584a54f59a9c 253064 
searchmonkey-dbgsym_0.8.3-1_amd64.deb
 a048b3b31aa13144d7b74d15a493a80fb758dbe487f3e6dadfe36f07197a9890 11412 
searchmonkey_0.8.3-1_amd64.buildinfo
 fc60bc99a877c6cca973c53b72a1c16fb3ab6da8ae944e51f6b143aca61028d7 450272 
searchmonkey_0.8.3-1_amd64.deb
Files:
 4551b63d6b2ba4bbedda6eb2463ed75a 2022 utils optional searchmonkey_0.8.3-1.dsc
 abb2247e67cc0fa5f8a9bee13c531625 918851 utils optional 
searchmonkey_0.8.3.orig.tar.gz
 8c6f91d7a74178f27cfab5ec05dd6fec 9712 utils optional 
searchmonkey_0.8.3-1.debian.tar.xz
 7e2ecf50c62bb14ee5cc40628b252abb 253064 debug optional 
searchmonkey-dbgsym_0.8.3-1_amd64.deb
 ec1f3feb70fa5d8f47cbcd56173b7995 11412 utils optional 
searchmonkey_0.8.3-1_amd64.buildinfo
 462390305ec2198c2e5062b6df0fbc84 450272 utils optional 
searchmonkey_0.8.3-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEDBnIgiN9JdQ7ikG+cDc88SkNuc4FAlq1rDIACgkQcDc88SkN
uc5XLg/+KsK4mR9zZ7Rzj4ok9zDTVsICobQI1RA1KA3OrJ476YqgrRDdtQPsqX9S
LeaeA5+LPsmYQX40XagzkdrQ488srkNAW1YBcL0S6OcvlEi5JW5E9+gBcXWXez0I
bZ5PGmV84ihfccnpsUampnp+LCCCdL5Ny4QtDE9V/4Pc16vhBmLvgunUyhh5k0UQ
Wf+6O/Rk21fkIGvbKjClC/MS+z798JipS6fPrn8dF/g7rVP9XYTzqyLllOQZeZDf
P9x9V3R4rKjnO8rNOLzN5yWIjqBWCbZR0ejkAF19IhyMOdT0TXcBDPD5Ukc6kFgJ
xPfenpJiMdQYxU1PFXLQKQs0djedcIrKXXPpaa4Nu9c51Oi/b7lyp7hcnzLzvqEs
xV/RZdWChXZ9XZ7v1LaGyBQ3Z25fqxfOo2AZ/7Ro8JoM98vAw4tBz1yUNxED0Vwj
Mr/6jrd0YO/ElZd2eO+8cOnG4Sq0cosnx5CuNmKL2cEjTj8NCoLDjH2q2fc+AqhE
qt8bB0ULXI9JifIJhNLOOZICGo0wdpXaGCnRU+iYpi0+QeSHeTCLF5eeuKvOV4vG
cYYqOOY93m/BqU8FY1EPuhQzUdis0euIU8ynWx7mtjs6DhUTo4RK+75PwIHJbwv5
5OCuwDqt3PA3iSMN0+28VIST0q0f3RylH2ECiiQwBRKz1Wkf5Aw=
=brJT
-END PGP SIGNATURE-



Accepted python-enable 4.5.1-4 (source amd64) into unstable

2018-01-10 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Jan 2018 12:39:19 -0500
Source: python-enable
Binary: python-enable
Architecture: source amd64
Version: 4.5.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 python-enable - Drawing and interaction packages
Closes: 878671
Changes:
 python-enable (4.5.1-4) unstable; urgency=medium
 .
   * Change dependency from fonttools to python-fonttools (Closes: #878671)
   * Bump Standards-Version to 4.1.2
   * Bump debian/compat to 9
   * Remove debian/pycompat file
Checksums-Sha1:
 6a5cfc2ac8f332db80816b4335615e96eb8b0ed8 2185 python-enable_4.5.1-4.dsc
 900e42e46fb396db86707cf33f1a1118ad118caf 13776 
python-enable_4.5.1-4.debian.tar.xz
 c6ea43a3c5a8d1285aef9ae98e80c32c088f5a57 968336 
python-enable-dbgsym_4.5.1-4_amd64.deb
 ae0b2ec6d062be8c1f48e487aed8c4fc8e40c6a1 9894 
python-enable_4.5.1-4_amd64.buildinfo
 78f41ac717069d22b1db3f32b233995ef92dd807 613368 python-enable_4.5.1-4_amd64.deb
Checksums-Sha256:
 ba86798cbafdd5fa7393494c5f8bf4bb2c32e594535ade11cf2905c4b58815a8 2185 
python-enable_4.5.1-4.dsc
 ee0cd90ca80e7e94f5fb7e9df19d3e5fc9fecbcc3c02fd123ad0d681f3a8e39f 13776 
python-enable_4.5.1-4.debian.tar.xz
 450f475e7f8454d07b9084425926ac0619822d25dac3b8f2b6ea4ef1071cf423 968336 
python-enable-dbgsym_4.5.1-4_amd64.deb
 e893b9f496b328933701231d88959fa63a80107661a49ae9e0d4dfcf4c38f331 9894 
python-enable_4.5.1-4_amd64.buildinfo
 70f6b23cd42de7eee283c88326af139512e2c37a91c98395af08ee8f3e0785c6 613368 
python-enable_4.5.1-4_amd64.deb
Files:
 0f153416a4c5bfa144fc5a90ce30a5df 2185 python optional python-enable_4.5.1-4.dsc
 af4e32b25b34385ceaee7fe6dbf2fe01 13776 python optional 
python-enable_4.5.1-4.debian.tar.xz
 e2f8d8b5e334b3cfab2cbdfff4af99cf 968336 debug optional 
python-enable-dbgsym_4.5.1-4_amd64.deb
 331c71188be02038cb329bfa0efa2844 9894 python optional 
python-enable_4.5.1-4_amd64.buildinfo
 c7704514ae22854cced5db12131a81a4 613368 python optional 
python-enable_4.5.1-4_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEDBnIgiN9JdQ7ikG+cDc88SkNuc4FAlpWkekACgkQcDc88SkN
uc6oXg/9GkZ34fjOqgeBVWqOnCPM3sD5q/xBEagBitZFxwgkeyi5UsdcvHencWDW
6gLOAxbbhpQXZsw0NZCKK+WK0T5pe5EFvWl7xFEHXi7v6DQwIJZEGHHfW093jgwN
6ht2ETN3dVRLNRmAqwZySXd10IUqdB02pb2oyqenqVWjH9XDLwFFAPCvSHet1fAu
qMpikynAaBwycOpd16wMix2EEIF8tvFsk2gQr1AQrJc5cqTPKIKO/gGhPGNvUF7d
rjrP2BF1laUl8nqFZHNSmnHx8LmAad+7JN0w+zMQ012F90N70TZjLS8QTqwLkBFr
V7MMDT9/2K1pcOoSZKmyblnPehyBVQUvy804sd9YzBq6n8icTpHq4dMLYtb+3ynS
ARQ+72vnz7eEAuVb/DZEbFqdvxDddHzaf0mX6YYyRXu4l/avftkJDW/Gosb7V4Y2
G4VCcZo0E+fnA+6t6GKg0mZn0pUI5VpVmyQntOMPJFgPXTv/+B2laz0wqWbDp+Hv
OUAHzSUGIbCcsiTnCTX9fQGbqyqqxhHWvCocqsOmeY3KLfZaIk4e9tQ8eh4C4GFv
u0ofk5uVKlwbs6JdxS3Fle6Lo684N04B0NN7DXPll9elibp/YZTttiDCMnSO2sIF
G/NUwlpelHpf7hQfLgjW8v/ktJLjc+D2RH4vg17dcieAimHEu/E=
=xj0k
-END PGP SIGNATURE-



Bug#878671: marked as pending

2018-01-10 Thread Varun Hiremath
tag 878671 pending
thanks

Hello,

Bug #878671 reported by you has been fixed in the Git repository. You can
see the changelog below, and you can check the diff of the fix at:


https://anonscm.debian.org/cgit/python-modules/packages/python-enable.git/commit/?id=5a05a58

---
commit 5a05a588d6d78ec054398a424890e812d6d66fc1
Author: Varun Hiremath <va...@debian.org>
Date:   Wed Jan 10 12:42:09 2018 -0500

Change dependency from fonttools to python-fonttools

diff --git a/debian/changelog b/debian/changelog
index f6af232..00c42cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+python-enable (4.5.1-4) unstable; urgency=medium
+
+  * Change dependency from fonttools to python-fonttools (Closes: #878671)
+  * Bump Standards-Version to 4.1.2
+  * Bump compat to 9
+
+ -- Varun Hiremath <va...@debian.org>  Wed, 10 Jan 2018 12:39:19 -0500
+
 python-enable (4.5.1-3) unstable; urgency=medium
 
   * Team upload.



Accepted dvipng 1.15-1 (source amd64) into unstable

2018-01-09 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 09 Jan 2018 23:30:45 -0500
Source: dvipng
Binary: dvipng
Architecture: source amd64
Version: 1.15-1
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 dvipng - convert DVI files to PNG graphics
Closes: 712570 778524 810364 880766
Changes:
 dvipng (1.15-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #810364)
   * New release fixes segfaults (Closes: #778524, #712570)
   * Build-Depends: replace libgd2-noxpm-dev with libgd-dev (Closes: #880766)
   * Update Standards-Version to 4.1.2
Checksums-Sha1:
 ce25b3cbba336f0b868188fc59f69b7524860e0e 1880 dvipng_1.15-1.dsc
 05c3152af62dc178267efbbe5a2ebe9aba9b3078 171529 dvipng_1.15.orig.tar.gz
 9f39f5992fb24a79ee28bb9e9a160498881fe6fe 4428 dvipng_1.15-1.debian.tar.xz
 8b0ce3dc79e43ca0b7cc350554eaf27d5475dc7e 119412 dvipng-dbgsym_1.15-1_amd64.deb
 44ec85b1a9842d027437babf23fb1af03d548505 7276 dvipng_1.15-1_amd64.buildinfo
 38a94316c0cf36da5c89d6dd28aa47931f9c8f03 87052 dvipng_1.15-1_amd64.deb
Checksums-Sha256:
 1bbc2ce8d1990e8366a958bc35361c889ba3addb6b49a3a26246f8306868ccfb 1880 
dvipng_1.15-1.dsc
 197e9fd0f87ede32dc4bc1d39ec2cd72fa5260856f9d0dc2d8e6895130408347 171529 
dvipng_1.15.orig.tar.gz
 ef8a74de7248ac4bc7908b52f7ed6705e40728eabaa34450d0eb330f4f321aa3 4428 
dvipng_1.15-1.debian.tar.xz
 c5b1d793a4bc8b64d3255d65a73f88bf8882d0b78e244f8423dbe0c6b672c75c 119412 
dvipng-dbgsym_1.15-1_amd64.deb
 edb18b315e6efe684b74af53d8494b5cc3bfdc66fb4f4fcd59d52907184caceb 7276 
dvipng_1.15-1_amd64.buildinfo
 830767f18c4329a0df5c82dcc0705d0dc76cc41a4c650c1586d2e11d1453d21a 87052 
dvipng_1.15-1_amd64.deb
Files:
 02ed3e7bfd24209d568443298d19c1ed 1880 utils optional dvipng_1.15-1.dsc
 c82043f4a366a560bb87fd9eafb6ef2f 171529 utils optional dvipng_1.15.orig.tar.gz
 cdc457e213b37e0cc80b7f598561d01b 4428 utils optional 
dvipng_1.15-1.debian.tar.xz
 f701027c0eb9e0be61ca004b6da31ae8 119412 debug optional 
dvipng-dbgsym_1.15-1_amd64.deb
 ca7f42d0950d0e38b77a4592a89806bb 7276 utils optional 
dvipng_1.15-1_amd64.buildinfo
 c944a9706a8b741f28cd89158d6ef07d 87052 utils optional dvipng_1.15-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEDBnIgiN9JdQ7ikG+cDc88SkNuc4FAlpVmzYACgkQcDc88SkN
uc5Hxg/7BSodbzkjpqrl2O4E+WACwBDEpicnnjViWkhuUJMq1sMCG5i4QDncSP31
p+C7cPlxFZNt7xJ/1tF7pQpbtOowndtN922+MM4FmWYmMYFaHFjRPVN03DNZcpTb
Im8g1ewVI5xXMgt/vOj00l0CBHyHuG31+/Ad70oHELsnCLh0h15DP2lv+pc7quJi
RmTas45d1OF4T5AhsNYDoJff5wol5Y6pOA4yvs+CC5z2457767aJZ4DkKyFls5h1
CbmkqIrPLKRbGsk31aHa0kPc/mDu4yiLyMlSliPDjaVVGyUya7UmVJO6xVY3DJVp
LZlBmuU3GJ0Q4nbJ1J1vvXkMsIpfwBoOTEuV+V8QXoO+tbIKH7jUmA7sEX3blKX7
zkLp3XomizVUQJoywjkpZTU2QJnOwQOuZly8uI0SNXsUtLrRgZa6oMVuBC8i9K1A
8kLFOHeu5Dwcahs7v/wJ5LU5TdKJ1JNtpBLVaFr+8/d4wfX9t2zUqWO2lhgoVFb5
Wrxj/BtC7I6PurledWVomNGNFc/nAQPEqyOoofwa8JkMDQsz1tjEgZSTnZwopuyq
X0aE6UI76l2FBjnvvXKVwCzHrDjTPvEiLIm1WWcXsQJyCgrKchIFUBFQhEEFwrUU
Vg7+EvTk/5Y+cpX3gPFi6MBnKK5So0TRq/be5me82oYjyrEc7ck=
=sUzW
-END PGP SIGNATURE-



Accepted python-traits 4.6.0-1 (source amd64) into unstable

2016-11-23 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 24 Nov 2016 01:07:10 -0500
Source: python-traits
Binary: python-traits python3-traits
Architecture: source amd64
Version: 4.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 python-traits - Manifest typing and reactive programming for Python (Python 2)
 python3-traits - Manifest typing and reactive programming for Python (Python 3)
Closes: 830377
Changes:
 python-traits (4.6.0-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #830377)
   * debian/patches:
 - all removed; merged upstream
 - add disable_test.diff to disable failing unittests
Checksums-Sha1:
 fc5147c3677d6a694a25916dcc335631a6318d7a  python-traits_4.6.0-1.dsc
 a01068d02f626e441f933d523448f46572976074 437823 python-traits_4.6.0.orig.tar.gz
 0cee50631f07f1011022fde7f00d0531313fd296 4464 
python-traits_4.6.0-1.debian.tar.xz
 c5885954fd88eb2766852e617d1f23976bc3c9d9 61402 
python-traits-dbgsym_4.6.0-1_amd64.deb
 c37405d2ddaa31e50b50dd637d2148a68bdbcd23 7420 
python-traits_4.6.0-1_amd64.buildinfo
 40315ad8c3aa5f177b0f799f19b4e1f45ab4dd6d 235588 python-traits_4.6.0-1_amd64.deb
 6ebba5f3d5e2497a2bdc4a5d5d8e9d72691d5e63 62950 
python3-traits-dbgsym_4.6.0-1_amd64.deb
 1748923160b0f160f45eba7c12853212979e9929 234530 
python3-traits_4.6.0-1_amd64.deb
Checksums-Sha256:
 16ce0e18e18b6c20e95a6b3191d6e09f8a42a42274b65703fc51ab0ee35714aa  
python-traits_4.6.0-1.dsc
 c2deacbdb2a42825e198b35f46af13625c820e00e000f2fde2187cdb12c870b9 437823 
python-traits_4.6.0.orig.tar.gz
 7ebea32c76e767b7ab6d0ed977ea740c48119a5304a472af5d446c6451ab8821 4464 
python-traits_4.6.0-1.debian.tar.xz
 ca2df1f383908ea91c5a5a2cae1c11ee7cb504aad05f9f88cc79c79a5782cbb5 61402 
python-traits-dbgsym_4.6.0-1_amd64.deb
 9890835e8554b0038bf83bd8dd68c74b9e1c1f419749076f58c3879258560bd0 7420 
python-traits_4.6.0-1_amd64.buildinfo
 acad40b996903c8be5f9458c7a58e97070cf62bbd6a7020537a8099d129f4ce9 235588 
python-traits_4.6.0-1_amd64.deb
 9d9baa0de04a6649df0be7840e09efe3a7b15705848338e587510df22d009625 62950 
python3-traits-dbgsym_4.6.0-1_amd64.deb
 2db916d9b22e5a331c03dec2aa6cebcf407efebd5cc43ad9945e73e8fef3696e 234530 
python3-traits_4.6.0-1_amd64.deb
Files:
 6a8ed36f04fd12f2ae6b4df6d6c27349  python optional python-traits_4.6.0-1.dsc
 32516d033347e983c12d8fa482642636 437823 python optional 
python-traits_4.6.0.orig.tar.gz
 b45341ae0be0f88e0980a61542da5ebc 4464 python optional 
python-traits_4.6.0-1.debian.tar.xz
 2934321591f224c515940063554e9702 61402 debug extra 
python-traits-dbgsym_4.6.0-1_amd64.deb
 57690cdcf7ca4d7175a060a50f9aebbc 7420 python optional 
python-traits_4.6.0-1_amd64.buildinfo
 4b756d2d8e9ad5cb4dc2afeb86ac2860 235588 python optional 
python-traits_4.6.0-1_amd64.deb
 647f00e37b71940c6b62a754c123b0e1 62950 debug extra 
python3-traits-dbgsym_4.6.0-1_amd64.deb
 40cefdcbae2af49688e17cc88edc9e4a 234530 python optional 
python3-traits_4.6.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJYNpWhAAoJEHA3PPEpDbnObiMP/j4f4wxHZqjHNECJkgHVdjfD
mLF4yZ84evd4sUNWiPCefyFop0ezy3NXGU9DTlLRSMpOOx0lzRE6PGGoD6+EWCiu
ZKxibQeANYfg3Z/cT90DpKwVSvRshgLJ4vyzui3UIfsR3NKyJANxyICw/Pt/WsjW
QxMZvBEC4lZFz1nRyM3cym+M2YFUmVYQjRzlstZGGlcNkWYODa/J2/A7GDfXJrW9
3pz+D9weP21fkqqpP1yXxM0qk93pG4L5+rXPBXN6r42TKtjcHwTnNwCS9RSBSc2G
qtlkMf1/YMCbwU3m35HTuoZbX1oEm/ofq5MyL34W4z4sD0J9WS85aHxYDSrDjcGf
hRsIga5pLDt2bIDHWpNQYp0r2oBFbEMyhFukUoswdN9R1emT0+IPqVlRW89jVUL9
Yri3c/dovDGVY4Kd0w2Q/4ABhGcpLwQgj9vAeiFl4e1MAgA5mmbnbbDIerNWPxsU
b+mKpvKld/mP0Tif+fJnjb+N99Fe2W/nsQ9ulLhyZk8ALYoj6bwF3qTowbJ77uyK
QEQmKHgo03JrcIr21krs3mrcEpgWSHSfMQCoRAbuvAoa8GoPi8jq0gmspvMvXaPc
GESDXgRw/WB2cWsd5vqdFxWL7Iz5dHwmfY6AcJj/jKjVBvcze5YnDD8j7dS8mStf
ItjH1vmLgSjRULwZnr5y
=FV+9
-END PGP SIGNATURE-



Accepted mayavi2 4.5.0-1 (source amd64) into unstable

2016-10-27 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 26 Oct 2016 23:07:22 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.5.0-1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
<python-apps-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 835144 839802 839872
Changes:
 mayavi2 (4.5.0-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #835144)
   * Add p/tvtk_setup.diff (Closes: #839802, #839872)
Checksums-Sha1:
 865573007c3afa9ee1264d296b0a922db82cc1d5 2093 mayavi2_4.5.0-1.dsc
 a97c5a04b1a97cb3ab3669d89fffa06ede14af69 7017745 mayavi2_4.5.0.orig.tar.gz
 bc05dd0a638344be230b26321637c0d1d72082f3 14552 mayavi2_4.5.0-1.debian.tar.xz
 c3b4e198404d60aca2bc64f86c9c062ce921ad90 28728 mayavi2-dbgsym_4.5.0-1_amd64.deb
 c9179ca917e9c0453959f8882464b631d1750684 22469804 mayavi2_4.5.0-1_amd64.deb
Checksums-Sha256:
 b9314c5dca766c75d83cd3198be2fe4073ef8f9f9b2e7f46f5007c20bb17d6a8 2093 
mayavi2_4.5.0-1.dsc
 66f1ae85c2f4be875fb772f9f12bcdb25457d8563e1513597fd3b8567316ffad 7017745 
mayavi2_4.5.0.orig.tar.gz
 5f30d38d024a743867f758bae2023bb17a4126c48d08696cfd6866a08e586f11 14552 
mayavi2_4.5.0-1.debian.tar.xz
 881806295c683f7c3bba6df54e00b86b8bb013d08243b99e192e441bb0179880 28728 
mayavi2-dbgsym_4.5.0-1_amd64.deb
 77bf5c834044dec55f9747eac133627e32c22be079b9ab33204e6dd85daa3f68 22469804 
mayavi2_4.5.0-1_amd64.deb
Files:
 1ed42d3cc0185f5f27b6706f16f58c40 2093 science optional mayavi2_4.5.0-1.dsc
 a31a453a02fcdd014d948a20adac79c9 7017745 science optional 
mayavi2_4.5.0.orig.tar.gz
 feba9bfc14a9109b468c3c10ead1f2a2 14552 science optional 
mayavi2_4.5.0-1.debian.tar.xz
 838b0713e8e4e53fa145e6c5f2fbf69a 28728 debug extra 
mayavi2-dbgsym_4.5.0-1_amd64.deb
 d06778c76d5e2792a140a9b4f81a0c03 22469804 science optional 
mayavi2_4.5.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJYErXJAAoJEHA3PPEpDbnOTwoP+gKcCRfojevx95Fv84pVMSPC
HjlJgk4nkZQarx/4xFZQlzi0BvHPtquxAorpwVN+TJhszFKSNauc44zP7EmsrsH9
dd3OfFcbPCOLL0aeh1WKbR0xmnfVbJHYvvVsJHR58k0ztvzlkqsCI7wKbAvNNnkJ
/L112y3mr97OyydLrblQjGmvej6Zuw8CsxTVl8/zFwHEAw8AeqAvnE0BhzonpZ0D
acgDmAUSesLrkQ7toO0U5McEnIkzM+YIoeFPjupFOnXnWMFGQY/y2dgfpQqHXj++
sKoKVirSl9iMbzUGc66hENC4WOUR26LdA6RQAsFksybTGDH5sTh20MmIpdg0ze1l
pth5WY3bSyMd5gcPcqN+exyAMAeGwXFYL2Pc5RWIu/z4vRPZCd3QRkBLXfzzgtU2
cteUpaLPg+6wLwwxRhm5MTe+2tpfmGBwEitPwwYbju16RtD83edw9WfqNcPOvNn4
KwMbD/FiFk734o1ijvqVexptIniFT6rFw6mI7ud7TAcdbz8BJaeWo6Zno26LGtH9
lMkxLVjPVggfwc6ZFrA9JnYJ81rbETy+xzhrGszCG6JS1TQv9loXahUzvbW/7ZoC
ax9riulK0kikrszllv/uOeLCD/o5UztR68SIrqEYo9HquEgKWD5ZsWqImsScqnhC
QhXzwlqfBi6lVdNny5g9
=GCv7
-END PGP SIGNATURE-



Accepted pychess 0.12.2-1 (source all) into unstable

2016-02-17 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 17 Feb 2016 19:14:32 -0500
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12.2-1
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 pychess- Chess graphical user interface for several chess engines
Closes: 738010
Changes:
 pychess (0.12.2-1) unstable; urgency=medium
 .
   * New upstream release
   * Add pychess.xpm icon and install it to /usr/share/pixmaps.
   * Add menu file, thanks to Markus Koschany (Closes: #738010)
   * Remove patches/
Checksums-Sha1:
 131e5a0919e7397c040940681b207a4d534d24f8 1825 pychess_0.12.2-1.dsc
 cf6ed1af61f5084b7a3bebce5a31494e979394ea 4653011 pychess_0.12.2.orig.tar.gz
 d0d0d7ba93e11f944c53a726cd14155315a9978e 5360 pychess_0.12.2-1.debian.tar.xz
 68c54ea1c542d09b00c38d91f7822ae6a8bb0311 2789302 pychess_0.12.2-1_all.deb
Checksums-Sha256:
 bf37b136a2c81b90651e5e78a6f732f100b47aecd4b2f2e4e814d32b4a77fef8 1825 
pychess_0.12.2-1.dsc
 feecabcea35cce0d69100e0c995f0a88d83d1246be512f2348c13e40bff9916e 4653011 
pychess_0.12.2.orig.tar.gz
 774e245a1f8d5a15dcdc9cd148e245ad84dcedcd8eaf7fa82c8c3a6ec060d00f 5360 
pychess_0.12.2-1.debian.tar.xz
 436dd1dc87e52845d3230e2ead0ff5f248393439af103febf1a3e91d1af5a792 2789302 
pychess_0.12.2-1_all.deb
Files:
 e3ec49d5cc855efef77866679797c8b7 1825 games optional pychess_0.12.2-1.dsc
 4d7ed37cf2cf1e451240ed90646a6f56 4653011 games optional 
pychess_0.12.2.orig.tar.gz
 5a72ce5ea6ea9f8a2ee5e464dd2d5a2a 5360 games optional 
pychess_0.12.2-1.debian.tar.xz
 5d9f03a22273e5e209fd2ca866893e48 2789302 games optional 
pychess_0.12.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWxRI6AAoJEHA3PPEpDbnOxS0P/AlANbw89BSx8ko112uD294T
qVY/B5yBHk7TjvrQCyHZaBeKg40nAe4wP/6JuGNIJT7b3K+DHK18itu2rZ01c5tI
5iRMrRLcTjpw4Zthy4mosQU05kYTNE2M/UMRkaXYtM+rVmYXcPPq1b6A5R6Lxbxq
By7/sehxLdS6Bq5UYUk00MYqop0l52ZcwhZ+Di6BQmH3DqUJctRSn+47F/EzLHtt
b7tG/yUL83vTn1l/YgOLv+GrCw2eSF/yV795BpTJV0WX1G/DZ4J8Q4T7I/+Iy+px
3c808M99z3dBLlzBN9JEa4/ACEO95RHE+oJO5NR4BpwMGTvUr8Lf3wyQTYe/PMMD
bKjrezn1atWMyf6mx2XpowPKQLlEO1CF69M04AcZXJ2VR5vYRSmjiq66qtzopThs
zrYz+79UinAhBaf3vRg5NxM4rI2SWiyILWD1lxqXG+bgi7q3MgVcvTuH/UllQsDV
8GKJwkR8fq4y7ebucfVAdsAFKFN3u+cPW36wUVAtNeM89jLbdXe66TDIZNR9eibi
OLfxFUpkHuckOW2NvAJDreau/8909HZDPkAkiXuxVaeMIvKc5VDDqzyBnEwNalcs
SaFPWPzmQfBLZV/BakKs5KdF1nzUtIgEWcWlHadSxjBArtM4myXL2g06SRBed6QF
Dni5K9qjHtOW2TLdY+4P
=tDWZ
-END PGP SIGNATURE-



Accepted pychess 0.12-3 (source all) into unstable

2015-11-24 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 24 Nov 2015 22:45:58 -0500
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12-3
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 pychess- Chess graphical user interface for several chess engines
Closes: 785922 805022
Changes:
 pychess (0.12-3) unstable; urgency=medium
 .
   * d/control: Update Depends (Closes: #785922, #805022)
   * Update Vcs fields to new debian git repository
Checksums-Sha1:
 d349df31497be48ceb56e89aff478a96e1ffedc7 1811 pychess_0.12-3.dsc
 913c8cd61159ed84b37e5f0f68f6ed8e872edb51 4584 pychess_0.12-3.debian.tar.xz
 dde070855358cbff4f83ada3cd105e6a88dec696 2692790 pychess_0.12-3_all.deb
Checksums-Sha256:
 ad5960044e3f4dea0c9d2bfc359edafd0323b13bdee6cc322bcc0f6eb8af62e8 1811 
pychess_0.12-3.dsc
 ae70f241d96eed600df982eb593d7a228ae19ed9da643ba665c57e4cf6c1d5b3 4584 
pychess_0.12-3.debian.tar.xz
 19770d5d8736fb9b9e67790acb0e2580adc91a09b68e0c196f77c6a827bbf1a9 2692790 
pychess_0.12-3_all.deb
Files:
 1d9e9a36fb097b29d15307438e7a6305 1811 games optional pychess_0.12-3.dsc
 1639af0c33038dd0100124f0f55f7fab 4584 games optional 
pychess_0.12-3.debian.tar.xz
 5a26ede547b751350fec263553224606 2692790 games optional pychess_0.12-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWVTqwAAoJEHA3PPEpDbnOdIUP/RaTST3jk5fguKSLIfOY5Jyv
MlZ5Td1gOqvlCp6QjfD+vjZmaLcyTVZ2yKvIy40RtUd++W9TeWSrBDEA9W+xl7G2
mvP/ki8J6T9vwyYZB2ikEkKDW5FbJwgnYJlz0ouIMbmtZxy1NAveZJLkJVoc1H+V
n+RudK3KoFqlXvBgwoWR3mOp3ui4+yEVGEvIgaMHN9PIl0+k7dhC0Luku5eSLzec
Q5awGB/7NvseGiYiXANsjoXOQ0l/QJvcyxCgqFzU+Tl6Tp4L/7gokuIxebry5AQ+
PUFusS7KkoR42hyrCudhivhz5ZS8IYYMzKhhy1+EKjh6nLr0M4PcS0UL38ozlzbB
IsyTiq3dtvJWiItJ5PxtqboACcBRYPpDWE90imno+pmRzVFbFpGndj2ce9YKfXwz
5QiA/yNoNlcefN8KrC+ytP0emsWh85scLoJKwKHX7jD/bnc+jb6kg4TPvGz2zaJl
niDx7710uMKvlXFIL32mIMwZkK/BMgaTL8RLPiBEk2KHxzefKwd2k708Dk1EdRZ1
0ziSqbfUbsA/8uLp9OUP5ty9tJq3Ry9XSWfv26SFgGhd2RZnbNCgb7INk+11O+QG
Skq7Zx++/3RNOGiO0eZY3CK0a0dXkdSUF4Rt9QvGDRj6O8kybxhUSfxF7nJRO9ms
K2RRwDnKwPUX0iWFY0DN
=DcmY
-END PGP SIGNATURE-



Accepted pychess 0.12-1 (source all) into unstable

2015-11-03 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 03 Nov 2015 20:26:05 -0500
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12-1
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 pychess- Chess graphical user interface for several chess engines
Closes: 785922 790153
Changes:
 pychess (0.12-1) unstable; urgency=medium
 .
   * New upstream release
   * d/control: update Depends
  - replace python-rsvg with gir1.2-rsvg-2.0 (Closes: #790153)
  - switch to gstreamer1.0-plugins-base (Closes: #785922)
   * Update d/watch file
   * Update Standards-Version to 3.9.6
Checksums-Sha1:
 b2a31e1935df3fe43604829490b5e7160982ad6e 1792 pychess_0.12-1.dsc
 3d36387c9b693cac2b11ba51301fc9439efed256 4447578 pychess_0.12.orig.tar.gz
 32ceda218861871771636f9dc86ff04eeb5c4d42 4512 pychess_0.12-1.debian.tar.xz
 084980cc138018aff851a19d32c79a50e52c94c7 2692288 pychess_0.12-1_all.deb
Checksums-Sha256:
 ca5c521697fe0ecd8941bdb569e7ba50eee4a9fdd87f936150189c18b301faa6 1792 
pychess_0.12-1.dsc
 3651b6b28e574ba11845099cd632a262ad84126cc7bdf0a35ba4ca00c3b5c173 4447578 
pychess_0.12.orig.tar.gz
 b280962236c6f5df5ed0e271527ffba01385d49f3cc69c43a28dce455402688a 4512 
pychess_0.12-1.debian.tar.xz
 2ec941d2c03d0f875b9390c4944fc07e61c2d03cb18154e49274af8183bf20a8 2692288 
pychess_0.12-1_all.deb
Files:
 8d8d49bbf6507f43fa76989beaf4fcd1 1792 games optional pychess_0.12-1.dsc
 922065f8ec62582d6431cb73c8564fce 4447578 games optional 
pychess_0.12.orig.tar.gz
 72a52c1f9becad7b24f93fc4e43724c3 4512 games optional 
pychess_0.12-1.debian.tar.xz
 c85ba12c246976779454f784afb95159 2692288 games optional pychess_0.12-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWOYEaAAoJEHA3PPEpDbnO7oAP/A7lvaskTLNVriiTnYEZ9cRi
7+UGVVEVzj+XBsD+5dcXHNmhu9SpbbM6z2h/CWM1cxcbYHywT6QPkKkWSdpYKnCh
djtZXPL/IIt2Kc0zdKsguv9iHmKyxofoZE/xTS8n9mFyJMltB1CW/av43JvAf4sc
wx5j/U02takIMwtmCGLbyietuyR1DXnek/U/9GoFqCOPpLP7lw53IezKOKWghI1F
oR2dtFlAn38IzYZv73k0eNjE4AVI/O5qrofcLhLdK8/xcNcxMxuZPhbUWz8/uB0G
eNIUUbSaPz3UVybfsQXPpcO287qnwoiFhAJMsOzS5+44+o1NJ5RPQi9NgE9j+BNI
8aK2w7J4N8+XGP/06dbWhj+WXCzhaC6lubbqP68pwD/gr8RRr5OFpA/46RyRi37F
WQQ1A0bJSjyewALk7EFVus2+1JJHLW1BtwvkJWcMdqg39s8WxnirG+oQN0mnEXhD
67kV6fl8pREuWKHRLpjg+G1Ps1CWrpJ4Pb3MnijEEpaO/lcQzbiWSK5LjhybvlDA
iE44w+j1n9NMpyMeSRhqR4EEhWXWu77wRuCrgdauQWeTlhTla7tzHum4drVTnBS4
pphIxcckLWVQigkVOryIOqL1YxTuY1UX6/f9kl06IBEN/gw3e6EluBa7Pybr41Zi
DaERkXXDHlbBcJypjDJE
=g0cs
-END PGP SIGNATURE-



Accepted pychess 0.12-2 (source all) into unstable

2015-11-03 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 03 Nov 2015 22:58:14 -0500
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12-2
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath <va...@debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 pychess- Chess graphical user interface for several chess engines
Changes:
 pychess (0.12-2) unstable; urgency=medium
 .
   * d/control: Fix Depends python-gtk2
Checksums-Sha1:
 b17a8090aadd9494301cd0e3ec638ed2155974d5 1792 pychess_0.12-2.dsc
 e2938d20e50a0d3a529b5991aef57c9bf5e9943b 4528 pychess_0.12-2.debian.tar.xz
 d75f68ea1615f507ce31534da56357df35b71761 2692748 pychess_0.12-2_all.deb
Checksums-Sha256:
 fc9d7bde7ba937ed7207edfe2717d8ee72e679c980197ccdc868d849ed3f43f4 1792 
pychess_0.12-2.dsc
 8144353713bad7b95281a370f667765b887b1ecf7fd7901c3c50a06c7eb79d6a 4528 
pychess_0.12-2.debian.tar.xz
 b70aed2ba63b906512293102eecc4677f8b9d2df8b1d704f65eade53f4496f3f 2692748 
pychess_0.12-2_all.deb
Files:
 2e14dbc68cc11acab8e3edb378cad04d 1792 games optional pychess_0.12-2.dsc
 95ac5a0b8bf0cfc4d6ad2f39b432c977 4528 games optional 
pychess_0.12-2.debian.tar.xz
 99a77cfd0634ef721baa979c2186cd6c 2692748 games optional pychess_0.12-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWOYLKAAoJEHA3PPEpDbnOx64P/iBTqV5VehJW7SKfEchbD7C3
VJsME0k3s5Dv0X8Z84hd7oDwml1H6L8V/YwBm44mU7zBgdNSCXy7KqkvVQ22BDQl
Xmk5ImMkkRwFQ7iSqxO3vHmYvHg378r+yNaqlwfCaXz4krWvb0Eb4G2roJ2Ytf8I
clb5Eb21enj4LyzNZlGK1F1al/5mF/r65SPmeyHTly5md0QdUiWfYSxGU+Z8NIAu
ScngTDwn7sb4+t6g1ROX0W4AiK26Uw/QUZd1cKBU7/7ysFltklOgpaBh+0rQ7QRG
09FIv34tv5rooAFL8G7hOTnOoMv7PVxaC1YQisI8Y8ixh54L1xzaJBrVjq4OIf27
MB33F0YKsMH1kmss34HsaZDGLMVWtjVmPr8HomJVWAXfPXJi/Zeg3Y+B44b6/inb
370CBMh7FyMj7ATlYPI9wMhMi15BGIAID19Y6tTYCJKCF9Vbq66DCGXhbg3+7xCw
wEFGNJmTGe4eRB9d9yZd9uTP2iNX9OIujNsjN86++3a3b9fDj7p29RkrtSoASHiw
da7ThHfOQkhbmHmdxPW2xbdj8T7w6BxG3G4yGJ5ZAFb/D+bZsY0H6PShxB+tDJUY
we1ML96COLgIsDfwCJKU1E+ozmssOGewHJuPhc8fTa6se9UwBFiACVAOwf5v0MU4
TzaGGgakwAwpMGQ/Tugf
=k3C9
-END PGP SIGNATURE-



Accepted mayavi2 4.4.3-2 (source amd64) into unstable

2015-10-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 16 Oct 2015 18:39:34 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.4.3-2
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
<python-apps-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Changes:
 mayavi2 (4.4.3-2) unstable; urgency=medium
 .
   * Add the missing changes from Olly Betts NMU (4.3.1-3.1)
   * d/control: Add dh-python to BD
Checksums-Sha1:
 d4ed7d8e7a6ba02423eb1e741639dae057e25bf8 2068 mayavi2_4.4.3-2.dsc
 3a31f2079068fe9af3cb4e57facb2a338c16282f 14184 mayavi2_4.4.3-2.debian.tar.xz
 da3ec0e1a6335d54e43dfed4eb5aa49b090fdf13 21946546 mayavi2_4.4.3-2_amd64.deb
Checksums-Sha256:
 3089849d1f5488ff8ed9c14a69f027c8005207fea73396165a05aa5fe7fe64e8 2068 
mayavi2_4.4.3-2.dsc
 eb45d19418efbd21e09ad060151cbe73c87dfe82651e699149db7a2fc1eb0900 14184 
mayavi2_4.4.3-2.debian.tar.xz
 6d917f8327fb0071cc801cdbf9b56f6c1913ef8638cf88669be69d200447b7fe 21946546 
mayavi2_4.4.3-2_amd64.deb
Files:
 b1ee17b94854f4ea1f466048a397adf4 2068 science optional mayavi2_4.4.3-2.dsc
 f16ef4cfd3467e207acfac171ef58f53 14184 science optional 
mayavi2_4.4.3-2.debian.tar.xz
 521d0a55b4e008ccf4a49d804e0ea112 21946546 science optional 
mayavi2_4.4.3-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWIX/1AAoJEHA3PPEpDbnOrLAP/Reh+FuuGGGOyvcbb6cz7cYO
u4/Vdv5Na2K6JJMqGFzTdBT08ZOcKZIE+3tlOpEBDmp56qr6OaLWooq9SOspez8F
+kCMUJUjxGtC/Gbi2Tzb3QyqIkDQC6ovzYHCXmrrKEzAG8hUBEKIVdS9QruEfuek
wSk4/7pWeXymHUirET1r8uP+0GF5c50ErW0aBiB4HujP5M8zTkBbwKtXIzenicqS
Ol7ntNAnVBttg27XUDOaV7qhrwHRApQzDzEd/ySReQX3QsEhRdHYLRQrs9iJSKF6
Cw1jID39ybupHFg/Pz8QhNfFNKb3yJ17SbK+xiru3t4JGPKpJgpbV4yiUSJf1zdp
ivQJ9eZKN8FFeCU7zTY+HxK0Glq6CIviIwIfIhhx2MGrbQQByprb0je5YXVHLULs
93mqRXk1JKWLRR5HoZEJ2SqjpXW6r9aFRCYbwmFdpIHcgO+0anWQ1sPJfexNPvQ6
lAdmGplEjjD4BzSW8uDrFlikq/1CNSkt3tuU8igcjAw1WdSNhQ2NbaZybLeTmzY5
+UoF2xPtMNXmeeB1zkCvh/r/uTagI2xzKjf+T+IiZ+YMS8tYRX7bZwRkYhMGBzP6
9DgBQJraGdeO/CELE00+TAB7A2gWrYBuzq/qzyMa7LZA/0jn6Xvs+RkeL4TYEJRN
lAFPDN8d3ZDNbNx0zmKF
=m2ES
-END PGP SIGNATURE-



Accepted mayavi2 4.4.3-1 (source amd64) into unstable

2015-10-12 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 Oct 2015 21:52:54 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.4.3-1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
<python-apps-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 784839 798169
Changes:
 mayavi2 (4.4.3-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #784839)
   * Bump Standards-Version to 3.9.6
   * d/control: BD on python-vtk6 (Closes: #798169)
   * Fix d/watch file
Checksums-Sha1:
 6d49bae02548e6b31e01754f86de4afe8968edf6 2057 mayavi2_4.4.3-1.dsc
 1e3bf4642958c134c287392dd97e49ba95cb219a 6556983 mayavi2_4.4.3.orig.tar.gz
 844c135529ca376cbdeadb98aa99748351cb3efa 12768 mayavi2_4.4.3-1.debian.tar.xz
 9c0ef81750f4332fefbc5307034c22af88135c59 21856496 mayavi2_4.4.3-1_amd64.deb
Checksums-Sha256:
 02d1c247d59f506f1fe374a1cbc9cb5296d5b9aff6dead9a677a5a4104daedd3 2057 
mayavi2_4.4.3-1.dsc
 2d1005421c1357ff9942372870787a48c86da51cfff40c92ae36c7f681db03e8 6556983 
mayavi2_4.4.3.orig.tar.gz
 b8fe4b0742602e502e3a29874703f692c0a8a0449e7f880a7931440d3271c5e3 12768 
mayavi2_4.4.3-1.debian.tar.xz
 00de90e2a71cb6217e15b45d4b76e84e959ae97ce3a272ef60f04d06dc98bd36 21856496 
mayavi2_4.4.3-1_amd64.deb
Files:
 c30c7e7977803320ccb81f5ff743d32f 2057 science optional mayavi2_4.4.3-1.dsc
 8ad9aa94ed425697f0d1969822b17005 6556983 science optional 
mayavi2_4.4.3.orig.tar.gz
 e8aaa6ac6f067e25d031aec2f575b8a3 12768 science optional 
mayavi2_4.4.3-1.debian.tar.xz
 07ba279d55d0c02f29cf06841fa19508 21856496 science optional 
mayavi2_4.4.3-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWHIBHAAoJEHA3PPEpDbnOE3UP/1LE4uqX3F7/rvdNVjddiNjK
BlD4t1zjCD3k/gToOB3bZP9iOIe6e7/PdYEdviF4Q8lUPFZF2mHbX/fjEvhM2UEa
Z5E/ZPbYeHoHlWbtDHEDLVCa7i7ly4T0jAvy0+AFOa/OtYjwx8tMmbFKjnkyUQG7
WOwyOfPsbohX07cOU3qIRZxeb3vYybXAc7sgkYwPj59X1fp/OYX8u9SbAwNZqyPi
knZ7KYsZQSGWTFvd4eCJvvypf7as2XTTbUaDcs55HGxoDQo2WfUkAUBYhUlIIboG
KEZbhfXhmbeDvFp+S2V96+fh9iesi7eUySlO1/4+ubk3ohbqaH6D4AZgqU6YXe21
6yX5WyVCUE5f58UjPAvqGWXx+xcMSJtGibuIWwOTHfyvgfDDCvNshrMzX9fdr2EB
JOVsDAyZiEej81prAuxTjvklfeXUsnQUbRCcpKPtKLEo6yazozYQ52sr7WqrGYr7
G9+wOxYdiJY04vcOqV7m+/OD2QP1dHeAPcmav2y9fH7ybFb+Ybxufhlv6MFglIgT
TVfWjeO0b8TPBwU5LZ2xXiTMtN/l1nuGRdZdntkt9a6joT9B/rYTYAK32wrmJ32F
Np0DRa9+2Y1VQrX1hEopfLU1vfbQWDmZWGCzsqgFM8FaXzHJ+iOarmrEAjCxIc96
mV1rKTenjMl7gWjoEnka
=DLCa
-END PGP SIGNATURE-



Accepted python-enable 4.5.1-2 (source amd64) into unstable

2015-09-26 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 27 Sep 2015 00:33:58 -0400
Source: python-enable
Binary: python-enable
Architecture: source amd64
Version: 4.5.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
Changed-By: Varun Hiremath <va...@debian.org>
Description:
 python-enable - Drawing and interaction packages
Closes: 797483
Changes:
 python-enable (4.5.1-2) unstable; urgency=medium
 .
   [ Philip Chimento ]
   * Add patch to build package without optimization (Closes: #797483)
Checksums-Sha1:
 b4dabe179378b69abd6b4552c3d0903ccfc1d54f 2172 python-enable_4.5.1-2.dsc
 af9e9053f6842f4616e941ba1a0be93a00fd7a9f 12280 
python-enable_4.5.1-2.debian.tar.xz
 05163b0d33c43f2d146db453d81322e49a650bbb 612156 python-enable_4.5.1-2_amd64.deb
Checksums-Sha256:
 ba8247b999feda8a9812f726b8c4addbb7a6ebbd6adf0c71c6703be555cfdb14 2172 
python-enable_4.5.1-2.dsc
 8d4ac884a039de637c987ef0269e720d5a28118cf9f2c91d81bb6f96a378a4cd 12280 
python-enable_4.5.1-2.debian.tar.xz
 4f59074466901af84dc668865ac8be780b5a9007de859f51427ba3439d134e85 612156 
python-enable_4.5.1-2_amd64.deb
Files:
 1b5d94c82db9a030b3adffe27328c1ee 2172 python optional python-enable_4.5.1-2.dsc
 5478ca394824ccabd5a76daef903b4a6 12280 python optional 
python-enable_4.5.1-2.debian.tar.xz
 8e20dcde67b5698784f325e5021f850b 612156 python optional 
python-enable_4.5.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWB3T7AAoJEHA3PPEpDbnOBpkP/jXApq68aBFpTs4ju/qX0HKO
0/RrUpB8VU8XTfFHceIoiCmXtx0K54UtK+YAXyksddrfwsatBr4NvFLcgDPbwyhq
SYxbZJFzFf6bhjSA42GHaFYXUTEFbZ6QTOHKLeQdbWPgyyN8LzVmbYRUd6KFkMV/
LRgTOlAtayEx4jXF9/aJNo2g5dBE8dT5WC29B1Z49grb/TnlPfzTP0yaZ7a7v431
LOIq6Ns4TA7IDX4YE+53K3ASr5NEGns0AHtfuE6Nls6VHXCSNdUguwHMudrWZIjJ
zq3p2kPsm66o78J4HEfnupKCq1rheOQ5ouCVXJbiZ3rmnvtfMLxGzFfxKu3IlYD4
cVimm+Uli5u/BgmzRugPb0m9GPrhRBxnTC7muDIoeLlzV8zf1JOo3L3WeRxTV5k8
NZTrCsU+E1pBkFMomJvJzjvkYmcRgtktf6N5wp5TtMLYy8x2AYMZRnA0q+SSyldr
HsSTgSOs0ivv8l58yNoOk2ufBGCgju88DSaUGJ+UNdcxIQqhf/tj/w7ECbmgS4Rl
RWgDM3mqG+tsAtfgXyu+V+HM9ExhY2QnY3aEjm7uPkyRZeBThZwShPEHqwve/Qht
2+BAsxbPOqhcsd6GH9EiKwDqUtCCQmGKjSDjELUcHMOT0yLQrtR7v2vFeptFNFAC
2gNR3dh0Rt+UKlqcLpqc
=dwuU
-END PGP SIGNATURE-



Accepted python-scipy 0.16.0-1 (source amd64 all) into unstable

2015-08-23 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 23 Aug 2015 23:01:46 -0400
Source: python-scipy
Binary: python-scipy python3-scipy python-scipy-dbg python3-scipy-dbg 
python-scipy-doc
Architecture: source amd64 all
Version: 0.16.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-scipy - scientific tools for Python
 python-scipy-dbg - scientific tools for Python - debugging symbols
 python-scipy-doc - scientific library for Python - documentation
 python3-scipy - scientific tools for Python 3
 python3-scipy-dbg - scientific tools for Python 3 - debugging symbols
Changes:
 python-scipy (0.16.0-1) unstable; urgency=medium
 .
   [ Varun Hiremath ]
   * New upstream release
   * Bump Standards-Version to 3.9.6
   * Remove upstream applied patches:
 - fitpack-alias.patch
 - fix-undefined-behavior-in-alngam.patch
 - relax-bounds-of-interpolate-test.patch
   * d/rules: minor build fixes
 .
   [ Jean-Christophe Jaskula ]
   * Pointed debian/watch to github.com (cleaner sources)
   * d/control:
 - Added dh_python to B-d
 - Removed unnecessary XS-Testsuite field
   * Linking to local javascript libraries
 - use_local_mathjax.patch
   * Using local intersphinx objects
 - use_local_objects.patch
   * Cleaned debian/copyright
Checksums-Sha1:
 9cf2530a278ee524a3977b6f4579a0a739695b76 2882 python-scipy_0.16.0-1.dsc
 74cd9f128f2775a9d24d4e5b726ece1b437ccee6 11607949 
python-scipy_0.16.0.orig.tar.gz
 03f8c8f054b3ed65ab927355920ef0e4999197e7 16380 
python-scipy_0.16.0-1.debian.tar.xz
 b65ea74a4534b1e737a8b54e6b678c93bb556d70 18553272 
python-scipy-dbg_0.16.0-1_amd64.deb
 0d7bd0cb13d76e5102b9d0a0bbfa73c75e6e1877 22378480 
python-scipy-doc_0.16.0-1_all.deb
 70052ad49292de1c65b36bc10ce604ca14faa9e5 8707336 
python-scipy_0.16.0-1_amd64.deb
 e4fd1b0bfa8f1a62dfdf1a520d75ee82beff2278 25162470 
python3-scipy-dbg_0.16.0-1_amd64.deb
 81fcd7391bf3b560590f6682886d16b14ffb33a7 8300196 
python3-scipy_0.16.0-1_amd64.deb
Checksums-Sha256:
 a7c43c07603948e1f49778b9e135d02cf7a38a905612d91af126081fbc55edd0 2882 
python-scipy_0.16.0-1.dsc
 3a24043e11e3830fd6be58249da44cd1cbf77e40cf0cad7055cb59f85f339572 11607949 
python-scipy_0.16.0.orig.tar.gz
 7ed35b4e155ea84fea668f4935b8eb7a37eabf18dc7a97000c0e5f66f625a81a 16380 
python-scipy_0.16.0-1.debian.tar.xz
 13759822d002f98134410a58ed2e60a93683198d0636bee15de56537e6098c08 18553272 
python-scipy-dbg_0.16.0-1_amd64.deb
 b2343dc2e369056ba434a80feb775afa874643ec184d3edbca82ae6ce1158578 22378480 
python-scipy-doc_0.16.0-1_all.deb
 7a74452e8e1d793ea5fce3d01c5744166cac94b33588b65b958a371f27ad15a8 8707336 
python-scipy_0.16.0-1_amd64.deb
 b177829cfbd85d6612fb25d4b0f6ca9ed337b1ae8fe8495b506eaf352f7428b9 25162470 
python3-scipy-dbg_0.16.0-1_amd64.deb
 238cbf6cf872262f9c396c2644838ead5c9207c3f7ab0b6713f0dae5d023077f 8300196 
python3-scipy_0.16.0-1_amd64.deb
Files:
 bcbc36ef34a31e6083a79d3e0e0ea381 2882 python extra python-scipy_0.16.0-1.dsc
 f721ae2746dcbdd923665ba73d0ba3df 11607949 python extra 
python-scipy_0.16.0.orig.tar.gz
 979717c7e3d63e9238183461f4898d76 16380 python extra 
python-scipy_0.16.0-1.debian.tar.xz
 08ea317e6ae8b033c5541cb0af0655f1 18553272 debug extra 
python-scipy-dbg_0.16.0-1_amd64.deb
 61924af2b199fad082d2517dd323e684 22378480 doc extra 
python-scipy-doc_0.16.0-1_all.deb
 f5512b55ddb763253d8c62df0c8a704f 8707336 python extra 
python-scipy_0.16.0-1_amd64.deb
 09b6462e57e76d35a192add5997f07de 25162470 debug extra 
python3-scipy-dbg_0.16.0-1_amd64.deb
 071efd62d47079f3c8b764817af23e0d 8300196 python extra 
python3-scipy_0.16.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV2patAAoJEHA3PPEpDbnOLP0P+QHVSFjk6PLKCMCm/Vay9oV7
qKhkKQcSV2MgmcTnWx9ef1My7vKlALWfrI3PndUZ5SIQcKt2v7LXxEo405JDWvkm
sR1VJusiHQY9to7ybpG219vKuI+eHFb+cT5WTVoDX+pjaopyOiNhNtyIv+2nfqBb
XyN8QTDYrz28MOknNVrnn1EhPvwYRwBY1a39K4q3uDrg8i+kxnU6Xf1dsDJa5aSX
zX4b1scaWHzKcprSJM/XCJOWsj1f0mrMZOWznFF6DE4Dr/XM2NF2rIL4TV6cupa4
2m0yRet+ZeT8UX9z1hv82OF2D35tGYSE3lpAlWMePQes8wiYGyJZnKyuzUQYm1Yk
nPqb83SBoCfMgYt+rsjvR4Cn2Z/rUAFPmpg2CgiLJTK2Jg47hBI/ZmrDTDAe4jtV
fEC17cefiC99iNi6yF2AqMfUMFkHXDBRaqfKRpAONqex+P8eK/TIFZlXaSjGF69m
2ssn/sRnOtYeEw6cE9gWndFfh/waCbunOKZ9yJBZ8lmGM/L6xEXMepKWjTl4Z9Vk
w4z1KBtR/WKCFgL1eRO7v1+k4VAqDFZxiplLEGKvKz4psEQCobH4wVyfPzSLyv1B
dvDZdr6He+WNYtGdUZmRSG5Ty6xzvLkmYJsntg8GF+yjJfOuA2IzFt7G11COMlXq
KfQYXaZuSwyAnW0RmMZs
=SZ6p
-END PGP SIGNATURE-



Accepted python-traits 4.5.0-1 (source amd64) into unstable, unstable

2015-08-17 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Aug 2015 20:39:49 -0400
Source: python-traits
Binary: python-traits python3-traits
Architecture: source amd64
Version: 4.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-traits - Manifest typing and reactive programming for Python (Python 2)
 python3-traits - Manifest typing and reactive programming for Python (Python 3)
Changes:
 python-traits (4.5.0-1) unstable; urgency=low
 .
   [ Jean-Christophe Jaskula ]
   * New upstream release
   * Building python3 package
   * Bump Standards-Version to 3.9.6 (no changes needed)
   * Dropped cdbs in favor of dh-* and pybuild
   * debian/patches/
 - remove_testing_dependencies_class.patch: Remove unused, undocumented
   ImportManager and ImportSpy classes, needed for python23 compatibility
   (from upstream)
 - py3_sort_fix.patch: Fix TraitListObject.sort for Python 3, along with
   tests. (from upstream)
 - invalid_tokens_fix.patch: Fix the trait_documenter machinery. (upstream)
Checksums-Sha1:
 e00fb4aac7ed8fba2d672613d925ea4da921f128 2228 python-traits_4.5.0-1.dsc
 72a0e07a814f5be0c44fc5599b99bd4340a72451 4856962 
python-traits_4.5.0.orig.tar.gz
 d15ed7316ee48f2f1269934a3aa03a59b2a00220 10968 
python-traits_4.5.0-1.debian.tar.xz
 850de686530c0347fc1aea36414f5d61321db72d 244748 python-traits_4.5.0-1_amd64.deb
 28067bfc375a3f6b3b94003523752396f18d59d5 244218 
python3-traits_4.5.0-1_amd64.deb
Checksums-Sha256:
 47beee83a17cece52b07190d7056105527908e27dae529fb2144c5e571459fd6 2228 
python-traits_4.5.0-1.dsc
 029d71ef36c85bfc4a2c5bd5e8f8a7fa81be86f74308be6f9dab7f7da31deb49 4856962 
python-traits_4.5.0.orig.tar.gz
 c1d422f533aaae862071499917dbb891d81e37a1fe95103acf940588c13b20c8 10968 
python-traits_4.5.0-1.debian.tar.xz
 1a1c8725abc233fbecde334bcc7798220ac9304dcb0ee22b77d35a0bffb52b3b 244748 
python-traits_4.5.0-1_amd64.deb
 a7168fa803ced63f60e189f9b001650dd1016b9a9b0ba25ef963b0beef2d075f 244218 
python3-traits_4.5.0-1_amd64.deb
Files:
 03424b0eb972313343028e00cb90a6b1 2228 python optional python-traits_4.5.0-1.dsc
 b77b08837afd20c1254e5d94369712cd 4856962 python optional 
python-traits_4.5.0.orig.tar.gz
 9ce38d704f7a2132562aa00132f7401d 10968 python optional 
python-traits_4.5.0-1.debian.tar.xz
 43411b0ae6d7b2782c7570965948ee6c 244748 python optional 
python-traits_4.5.0-1_amd64.deb
 bc0f009fd8ae7b966011cf08f9d054fd 244218 python optional 
python3-traits_4.5.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0T/gAAoJEHA3PPEpDbnOhysP/0BPYkWyRT7zG5iDDVx9Ih2/
fxKOE9Oi/KE/ctajnRwJi1idm9d/jhTEyQbW7+Q0f2vCXHC5Ku2YVTQrxAAVHUws
ZZkrXbayqaZ3tK2q3/9Kaj67JBSAHFBRcOyrvvru9K9XpzbePimMfGj+fGe5+2EO
jygdTCEbfukwNfz316DGJLss8cyx27h/3xY6dbAn1xmyp+7Y5pqP5nza0ceRaQol
UEaTiVR500qMXgRShXq6ynMWDuI1lrSG/bFyrreD4DFd0Z3r1/RiFAR7iowRm7Jw
2ySyM+2J75nqw5Z/o7CJWScP7f3NPSv5dgI65p49AIZT5gxDdbAO+EnIIVsQCFhS
UHiP9E2l0d03eZpaWK86XfXsFqwtlLaahV8ekgos0RQ1kzM5QU8h/1kV5wjTLDyp
mAotF6/0+J75UbEJ6AwQtCVIbj/hcbOSsouGuynySwfA9CmwUZWg2wzGz5nP+/yE
Q2EbkucSz9AVDmIUougFnTEU+egmqcQFZNltn5YULFjHxI1JBM3ghKB8s9oYcsG6
CrUzrbgvcLgt1fRGhz/9jeuo/+wuvOoLUQP2PKg80AFqIoKoUrJFArBoilJBP/j/
A4fJ1ymC03vaYUpQgvH8qtf7Tvs0A1wdwV07vtHKOTfzBaZJZrnOgN9jW0OWW9jV
UoNQrv2G6XYhsWPLBp49
=ErIS
-END PGP SIGNATURE-



Accepted python-apptools 4.3.0-1 (source all) into unstable

2015-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 10 Aug 2015 00:28:51 -0400
Source: python-apptools
Binary: python-apptools
Architecture: source all
Version: 4.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-apptools - ETS Application Tools
Changes:
 python-apptools (4.3.0-1) unstable; urgency=medium
 .
   * New upstream release
   * Bump Standards-Version to 3.9.6
Checksums-Sha1:
 08bc123e0a41efe98bbb3d9b93452dcd4b03c05b 2114 python-apptools_4.3.0-1.dsc
 1ffa61e276ca73c20e9a2f640013958b3a07abbe 291137 
python-apptools_4.3.0.orig.tar.gz
 5a956d44adea5b4da571fea566f9de6f7491d20a 3428 
python-apptools_4.3.0-1.debian.tar.xz
 bacc190b381890a7d455ad9728f3acfab21d4770 200982 python-apptools_4.3.0-1_all.deb
Checksums-Sha256:
 cf2fa733fcb4e77803dc6632c9524c9ed41ed200d0427a2a0c277dd10793cc9c 2114 
python-apptools_4.3.0-1.dsc
 f36bfc61c37d1e6da87b4fec51592d276d0aaecc8254a68a24e580161fa1d6da 291137 
python-apptools_4.3.0.orig.tar.gz
 5df4e623f33814f88a6dec55479f4fedf7b4fb2192ba9bf7dfd31859c792af47 3428 
python-apptools_4.3.0-1.debian.tar.xz
 07e33bc41bd799f139eaa5be9df97174ed807ba08e924580b3a3acda727762c1 200982 
python-apptools_4.3.0-1_all.deb
Files:
 3e6cedf7881700ba6e26ff040029c1ad 2114 python optional 
python-apptools_4.3.0-1.dsc
 bc85e9a3e5dcbbb23472f2b99ef14233 291137 python optional 
python-apptools_4.3.0.orig.tar.gz
 836d415ebaea427dbf84f4b7f308de8c 3428 python optional 
python-apptools_4.3.0-1.debian.tar.xz
 ef095380b146d9c4ad56d8daa63ac933 200982 python optional 
python-apptools_4.3.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0UG9AAoJEHA3PPEpDbnO2m4P+wbs7NFM8UV5F8tZQikqhc7i
9ZKXIvexb+Ej1wgEvytWeg0QHPhe7HNHP07IXYpyJ6VZUG7e8T484NhIbDzyaw3J
DNHxXYNuI3ga6bHgLil7biiCcxjJCKH8AWEuJBbhoXsE2M2mrS9xLELClzf++Wmv
m/7lMYTexK/u76SeBKOx/BVf1lL3ACndGetxU0DaywcqiejE5T/k3Jg5Zp7cK64P
0oEHf0teNHpBi+et/7eAhuizLgabG6HyDQGJkYZRKrFbmTgJRSQVvLi6B/W4c6r2
O8g/MFIgUXR9k+Rhe1/vmSJJH9DEWWMrq4wBHrDUb2gMer6LRFRenjFLonqKLsJZ
jCCZIOF+MfZxOMN5j1Wu587ZcBShWIDPAp98061eKu0FFjiPTbPUBHERVwAw9dUn
kwuc0qFSiCOpU4UmkpqplXUs5nE1jBc/3X+OcNb+k9qUcUmlmZWaGOpfCPhxO/Az
IWqSJmaiX3JV+RZKH8abK/PeFGCwvGMGd8KYWIk3qdcM3jvWVMjcU+FpoyKVSknf
pQkG7OuzV4n/O8ZnWdYgR1xmv2KKQs61yGPRTUz2XkleppjwRC3lxWAitc0HKHD4
QZzMIioQ7DMuZARKGRci3gX6MhJyGXrWz7whQrFFzUTQNMZFS+9BCRqDayRw7+Ib
eXoD9i4pdWYBd6SPliGj
=nSc4
-END PGP SIGNATURE-



Accepted python-pyface 4.5.2-1 (source all) into unstable

2015-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Aug 2015 22:13:14 -0400
Source: python-pyface
Binary: python-pyface
Architecture: source all
Version: 4.5.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-pyface - traits-capable windowing framework
Changes:
 python-pyface (4.5.2-1) unstable; urgency=medium
 .
   * New upstream release
   * Acknowledge previous NMU, thanks!
   * Bump Standards-Version to 3.9.6
   * Fix the watch file
   * Refresh the wxpy3.0-compat.patch file
Checksums-Sha1:
 6a4b147317eabe49a846000f2ed7d8ad30c64316 2045 python-pyface_4.5.2-1.dsc
 95f54d5ece0a34d0eb01de12a7e761444df92a30 5089390 
python-pyface_4.5.2.orig.tar.gz
 23e3c75b9acdb9ebc1de44fd5b69600ec71258f7 8040 
python-pyface_4.5.2-1.debian.tar.xz
 e0f31cc193230653e2b30bec6cb9f5fda9b6c815 394640 python-pyface_4.5.2-1_all.deb
Checksums-Sha256:
 1a55f69a761febea502d849879e4c229892bd3e6ed1a3355739712fb3eb4fc03 2045 
python-pyface_4.5.2-1.dsc
 3f909bcc3983ad707c69a83bc96858c52c4a0ff4a3358ce9acd7c3febd9c3410 5089390 
python-pyface_4.5.2.orig.tar.gz
 b50abc8a769d29dd054021a33a4845e5915be740c4ba734c943296ff93a82bf3 8040 
python-pyface_4.5.2-1.debian.tar.xz
 e112282c15a52706b380d971807cfe061feec7906453e366035d68256d017a22 394640 
python-pyface_4.5.2-1_all.deb
Files:
 840a95c0130af425a6b7edf8e1c5a8c8 2045 python optional python-pyface_4.5.2-1.dsc
 7b45452990a706b6b3352a9ce2069c5e 5089390 python optional 
python-pyface_4.5.2.orig.tar.gz
 d7cfed47b9e848d4812f4e0e1d317829 8040 python optional 
python-pyface_4.5.2-1.debian.tar.xz
 f8bf4a6971a774e0ac4d967239ac4a13 394640 python optional 
python-pyface_4.5.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0USnAAoJEHA3PPEpDbnOtvsP/RufKxz4AROx4mE44hoQqbws
O5JhzAQv27D0Ndie0gqQPjSty6mBQsDhGqW2uOwuoiO7d9l4WIDZJc8S1ulr0iIe
UTXtWeE2YGjE/MrkUEZN1+O3e80CXuLlFH3wcq5Ig8S3mg7BT5OFQDYZK6CuRtBE
I5HZTe5UYQb3mDVfIsG3nlDZW64nMkeB2gNr2aYsxITeXRi7QI2TrYN8qx+YxHbP
EK2Tj2JyP4obDqjGpBN0e6d6LHSoAWlorCZiAecpN1j/Hs4aNQ/3qg/nsR1yPASM
DM2TqlSmWpzTd3SmsBHAtmMtYX9NyizagqgF2DUnPNIUvShutRM9PhP0MFmY+g80
ngBgfwZHbhHNK7rDwu/2R5DhiiAyOYgb+GEGmHfiVKvN21n0pS2RHvPp6/GvABoK
nN/4URWZaOjbjM7FwBaRMAZI0C5kbgvBfUwD2UDP9QZQ/sNgKivlrh6p7nobs2E7
GAUNpPwdWZlnwb2Yb0X31vVMlX0sJolm08HUN5jXuCx6i1GnwSBw/5y5Lva3fzKB
bKFVbRp9/oXPP35iXYUFoqZG3eRms2UpDWVvE74bKntgMkF6rF9XsTFI1uPaa/Bm
qbwDRoFZfiQeo5mYTgQCYfK7AcEQwqPoCPKUdlqiytdWNR/tjrxHKDr8M5BGb6/7
TQVksO3htbUMULT/zw1y
=xb2g
-END PGP SIGNATURE-



Accepted python-traitsui 4.5.1-1 (source all) into unstable

2015-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Aug 2015 21:41:09 -0400
Source: python-traitsui
Binary: python-traitsui
Architecture: source all
Version: 4.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-traitsui - traits-capable user interfaces
Changes:
 python-traitsui (4.5.1-1) unstable; urgency=medium
 .
   * New upstream release
   * Acknowledge previous NMU changes, thanks
   * Bump Standards-Version to 3.9.6
   * Fix the watch file
Checksums-Sha1:
 df39202bdf7e7ef3149934152cef4d478b0b7359 2103 python-traitsui_4.5.1-1.dsc
 6a27fa0ac2fe5e6098eff524c38c9b3652c7dabf 6692940 
python-traitsui_4.5.1.orig.tar.gz
 f97ccb12aa28239fd5ab96f23004ee09a5ef6497 9244 
python-traitsui_4.5.1-1.debian.tar.xz
 29775c2e1279da1c231f8549433d28610df438d4 6400558 
python-traitsui_4.5.1-1_all.deb
Checksums-Sha256:
 8a17623eb35011820050d3abff3ef63e30b89875659ec887475905bc20027c38 2103 
python-traitsui_4.5.1-1.dsc
 452bfe7ffb9e38948cacbcfc66cc922cec3a3cb415e5fa02ef0d756ea673104d 6692940 
python-traitsui_4.5.1.orig.tar.gz
 32df3569f2cbb31e02d08c6811d741dbe0f07a896ef5064f590a37c917e4cf01 9244 
python-traitsui_4.5.1-1.debian.tar.xz
 bd85e40722f9aa470283e57374d5684d8a57fea4a922d269acf79d0627156638 6400558 
python-traitsui_4.5.1-1_all.deb
Files:
 72e5f80da6618749080b70b212079b85 2103 python optional 
python-traitsui_4.5.1-1.dsc
 bd53ae63748034d6087e0c5ffbe3d8ad 6692940 python optional 
python-traitsui_4.5.1.orig.tar.gz
 44ba5e0a48b26e4c286b5cdbdfe9aeb4 9244 python optional 
python-traitsui_4.5.1-1.debian.tar.xz
 47d4757bb1e5842264ed0310f227ced0 6400558 python optional 
python-traitsui_4.5.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0T2CAAoJEHA3PPEpDbnO4PIP/iren8ZWyKMVQT39DgEre2lW
bpFHSHK113ciqhEaRoaeqAvDbAmKYoAelUQ8IeLTCeXBT6q6rz+OSTLwshKVoZTh
VIfDdDB+DJN0taXK3FUKy7N+o4FhfGy+cDzq+f9yLRWgDnjy6edoJ9uKCaAvjaXU
+l/KIeBJ8eg1HGboMcckZJydDOTPifN3hPcqdNIsTEa4vhOQJDmK8wyZKFxb2Sdm
H0Hp/r/ooa6Dz2PBEpehdXy/nlduknIo/BHD/tGVRMp0QwXFj9xHnL5xHEyY2tjh
xYOvVGZOoIBYD4CHIA5fCE0jS8Y0WriCSNFH8k6Q8jny62E0+9ypDXXAaccQV6qf
h2LdVnLWItpX7T57xZ9yorEKogF807TJGCZoC45Ex8v6iGXo2bHQkBzVuVNoT+AH
FJe+JQkghLvoE0cBTxmECsXhJMGFjZlXDbinCNWEC1Jqe8fuGI6xs49JVmLoHK8X
du3Q7aWq+EISGKdP/9CX/I9yGLKWrYYGGLACdASxD6Vd8blOT4NbdAeaUen2kqwf
y8Yk6HLFynKGoGfzi06tWoQw74RDt9c2bPvaFJkwTWw57rAxb5SE8NhTTE228BCG
o/g5WwZNk5sNj8MKzqVTv/WSeOyZ0LN7Gc/RGOA4PKYP+C/48XkXK3smmGTP+bL2
hGdHLPC+UORXaNFpuDAH
=3i/p
-END PGP SIGNATURE-



Accepted python-chaco 4.5.0-1 (source amd64) into unstable

2015-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 17 Aug 2015 00:27:59 -0400
Source: python-chaco
Binary: python-chaco
Architecture: source amd64
Version: 4.5.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-chaco - interactive plotting application toolkit
Changes:
 python-chaco (4.5.0-1) unstable; urgency=medium
 .
   * New upstream release
   * Acknowledge previous NMUs, thanks!
   * Bump Standards-Version to 3.9.6
Checksums-Sha1:
 d157fb92fd7ddd3526650959ec6f7c650587b69b 2082 python-chaco_4.5.0-1.dsc
 275348d1334636a0d8541accf1f868b961a76b0f 409562 python-chaco_4.5.0.orig.tar.gz
 49a841fc78edeae65825f7e63216a32a1d652710 4268 
python-chaco_4.5.0-1.debian.tar.xz
 69c8292a7b57a30479671fd427f4a75ee9455076 337456 python-chaco_4.5.0-1_amd64.deb
Checksums-Sha256:
 8beb04b9125aa513c5d44f97deb396c5ee44640e33c7c5ef1d262a2938421722 2082 
python-chaco_4.5.0-1.dsc
 809674bdbdaf1a363b180366c6eaa70d9c49aa2c93b1933ee5c481e0a072da9c 409562 
python-chaco_4.5.0.orig.tar.gz
 d6e96d9e1f3cc283096349fc77dc4f0b728c0369a5cd6ca841e18ac84d07732e 4268 
python-chaco_4.5.0-1.debian.tar.xz
 6802937789b57150689c9205f20cef15d42dd84632d776b417f1e33ebe39035f 337456 
python-chaco_4.5.0-1_amd64.deb
Files:
 8702c50f27fdd58c44bcceb4081b1278 2082 python optional python-chaco_4.5.0-1.dsc
 5e3232e844487f1a44b2e8a7ce5019c2 409562 python optional 
python-chaco_4.5.0.orig.tar.gz
 886368edd4a0f76e812b354b101c5ae7 4268 python optional 
python-chaco_4.5.0-1.debian.tar.xz
 1cf97c730ebae4e8db7d971a5d75fd5c 337456 python optional 
python-chaco_4.5.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0WQ5AAoJEHA3PPEpDbnOQF0P+gMBapvCc8DcTcQNicxaoS6O
DI678wlT9OkBRx75fkCJEiJ35hpit3It/8k/9Sqlbg9t83UrvHA4Adsh0/BDdBp3
2Q0oGNuF7yP3MtKgyNRQUd/oKxAbo+8q3vWdqg2+t5f4qKcb7uPXCPosFnfTP4Bf
GAuqxf9Uuj74b3KsmKzq2yJdnIMeoMmlx21K5QNGnjW7m6VptUwfXMU5thMMfobh
Q2GaO/c+sA41s3w6UaRtFxkZWjEiB29ODXA6MGNQK11bBsAP5fIJsgHyQ9s4Nv54
yQg7NlwsLu6Zltb+CUl+kIfDpXFrZdZQieBaoAkbfaBt+MxoJ2kVfsqMhSbT2hHQ
5LEc59XRppRl0wBjRbPUwO2in1EpgArJrZDFSrEHnjMrylJ4bkk3hfpzslNYKTfx
Quq7mVKMcQWNmPimHqCVjWRL68CtvH2V9JqQ4tN/emVW/KVy+prFh6sjpEdmVTyH
EXr06lWtLd1BVHVXtTkl1OMZPKCeNvv7lWLEzyU9RwAvFP2Uq2j7E3bF8dT/dElH
rXCb6tz591QPko/XM2oo6HICQjkRnR6tT0/xZe6s575cNs7vekwHLwoBbqHKwi1X
G5OlKUZcgFP37GHdBY2WOnqp6F+lKLmBNyg6++DeRCCJ+Bta81poRTPD8Vp/CjK4
Gr1Sgh7Px8CSyxyfqFB7
=5TTl
-END PGP SIGNATURE-



Accepted python-enable 4.5.1-1 (source amd64) into unstable

2015-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Aug 2015 22:24:29 -0400
Source: python-enable
Binary: python-enable
Architecture: source amd64
Version: 4.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-enable - Drawing and interaction packages
Changes:
 python-enable (4.5.1-1) unstable; urgency=medium
 .
   * New upstream release
   * Acknowledge previous NMUs, many thanks!
   * Bump Standards-Version to 3.9.6
   * Fix the watch file
   * Update all the patch files
Checksums-Sha1:
 e2098c35a46122092d1a1dca230dc947db820d10 2172 python-enable_4.5.1-1.dsc
 88dc7f47a342a0b601c10ee127952eb86b15d322 842484 python-enable_4.5.1.orig.tar.gz
 6f7d3360616e94dd33d32bc42adbc3131a5b58f9 12104 
python-enable_4.5.1-1.debian.tar.xz
 46a570c4f4658d7d06837c070fb28b692858f34e 541210 python-enable_4.5.1-1_amd64.deb
Checksums-Sha256:
 1f337e9595124ad9de5032dc7ce0d0f7b0699928a5b024d8e1a62839b1fec3f0 2172 
python-enable_4.5.1-1.dsc
 94ff4cfecf2c74bc2e5820d0d38c90bca087aa393aeb010b060ff8168ede7b64 842484 
python-enable_4.5.1.orig.tar.gz
 3f7cf1cea8184de21142dc635a07b474c279375bd7ffee846439dc209226f474 12104 
python-enable_4.5.1-1.debian.tar.xz
 5667629a4276be47989386be82d33590a1763e74c6e13b4b429c61eda13f1d34 541210 
python-enable_4.5.1-1_amd64.deb
Files:
 7b405c89b53f7b9893ff34d6d9c30b97 2172 python optional python-enable_4.5.1-1.dsc
 ebfde807e56a8e860b7352bb86e4c38f 842484 python optional 
python-enable_4.5.1.orig.tar.gz
 b6a7edf66753d4bed317e23e7613d803 12104 python optional 
python-enable_4.5.1-1.debian.tar.xz
 17dfaebcd7597a2447bc13516890e924 541210 python optional 
python-enable_4.5.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV0WG6AAoJEHA3PPEpDbnOH4wP/3Mn85oyW1k5jzXLnBJ6d7W3
oYJnpt95IeZAauQ6a2NB1lFmhlQGrLIt1yT9u9FzSZE3G8R8pegy3GwGHON4h+Y8
jNF2MYv74sGOzm5FDU6qguESGgC4iibdMfmx+iwuo8p/3EckVbDbFNJbWRH/GZzt
2C7XdWJbyPMbhtZEhdd5Y3x/sT/VVuarvSLL8YYrB2L/2NDOs+9XSJFpdm1Y322N
8AwZn3KTKFdopZtDpa9e7fSI+gFZaR0cl+R6VFuZ5AyD+rxdrr7fDWW3DjcfK0wv
N8WCPs820omi3qQC8p0WxUT2FA90SFE6WEejDFMDldVuaiMv8Z8dn53yIZGdpzfS
Cy80ds9ByGmQc+WMfruMcdj/KQtcRg5/E4d2ukFUa/JTfB8bCT52BQwx7+3MHRTf
vyNqlzICsrH9GfCidoGb2Ztb8K0ES5eBdgal5Zpn2POP0z1+9iORObdSMylT7v8I
sOlqQmXtiH5jECLpy4nHIv7YYaUVshOHbGZxBIV0erDUZlk2j/9tT8lnCJ/SS/xG
i7f9u4HX3bl/phkJF9LYhdVJaxN8Wq+EK7Dfk40MhEkNgYCuih2O2ADzYfwZbtNr
L7Yuz0LeLMIngHlvMZWURaeov6OcXdI8djRuFOYDwq+MwcsOg9fWFDJEjlBkV2NK
c787xHjv0BHHcspaw2pw
=K8Vs
-END PGP SIGNATURE-



Accepted mayavi2 4.3.1-4 (source amd64) into unstable

2015-05-26 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 May 2015 10:08:07 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.3.1-4
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 785627
Changes:
 mayavi2 (4.3.1-4) unstable; urgency=medium
 .
   * Add a patch to fix python interpreter (Closes: #785627)
Checksums-Sha1:
 5dc386a3ab8696588100973147403d5e96284e10 2056 mayavi2_4.3.1-4.dsc
 938bcf568077fe58212e3193c3ed4f720556695b 12716 mayavi2_4.3.1-4.debian.tar.xz
 d51e19ca0636a05513339f97defefcfbb09faba7 1744 mayavi2_4.3.1-4_amd64.deb
Checksums-Sha256:
 74b1d4bd7fd17450f172041b6909d2695c7e82f658fbb1d2060d3360ce514958 2056 
mayavi2_4.3.1-4.dsc
 0e3874bc2318550a83eff6654c19dd44fe4920f3bfefd60214db68f996771e9a 12716 
mayavi2_4.3.1-4.debian.tar.xz
 0e03ef31a6a4d42e0b4f08531183d7585386db7adf1dbce8947b6f93196b5016 1744 
mayavi2_4.3.1-4_amd64.deb
Files:
 9722f2b110155a1b8ad1fa31d49d7962 2056 science optional mayavi2_4.3.1-4.dsc
 3ee14b895235b9d401be23db9e6b04e6 12716 science optional 
mayavi2_4.3.1-4.debian.tar.xz
 87dfac22fa94e8dd8b4871c9a1cb33d0 1744 science optional 
mayavi2_4.3.1-4_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVZIfxAAoJEHA3PPEpDbnOAxkP/0a3qHisROhU501Bl0S9uIuT
33HAQ+hBggVd+RM6xU0opP+1jXcPuXq9EHuwX+23EX4gCDK4RF21PXSQTJNJ69oU
8+pB7ZwdH2z2tpUithhGJBXgK8fuqFKsWYR9xZQWxzdPPmioMx7Px/znI6kuHCwF
X9zAhUF4DA6odGIzGgRTeX+KnztUnqMYKtCR844SRRGhbjicagoT0cjjApFZRjcM
KzKgHMrG88N4jMMKEdz6/v3ZRnn9ps3CjONFgRIyRwVJ0a87+Eh5RoGrSVX1ioa2
qJVBS9FbsxjolwVKqqqQr1UObaLewggIH2ayVlmIScDQqRzhBEXTefPGA2rNZbDm
kG2DABc4ozv7x23dO+1232o1nG+v3mLIOkhliMqC4osjHsdP3XZLmjgTA2iV9qvl
/zsOe4Su5UlUSY9acUUOF2Xg52pupv2dV4HGW/EDZhXEO9hz8ziBM/AE3rZa830Z
6bM1pvbssw41zD0mY8LFVlFUF6JgQoPjB3TDtZvIhduBgFhh6MHFXWl0jR4C3VyV
4+Dbu8mNj4Szb1uv3PcBjzfgyC+PrirSgns4E2UGA/aQIAfZYJFpBxzaTvXvxZM/
bHP1sFB5/j0zttAmHrXlC1asp+rKQsFl8B1q8OJMw1O7MSSS/SQCu5m0+QJ5kxcw
4D7W2whN4V9avYeMAUu5
=8cov
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yxhqu-0003kp...@franck.debian.org



Accepted gaviotatb 0.4-2 (source amd64 all) into unstable

2015-01-20 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 20 Jan 2015 23:56:15 -0500
Source: gaviotatb
Binary: libgaviotatb-dev libgaviotatb1 gaviotatb
Architecture: source amd64 all
Version: 0.4-2
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 gaviotatb  - Gaviota chess endgame tablebases
 libgaviotatb-dev - Gaviota chess endgame tablebase probing library
 libgaviotatb1 - Gaviota chess endgame tablebase probing library (development 
pack
Closes: 775699
Changes:
 gaviotatb (0.4-2) unstable; urgency=medium
 .
   * Incorporate patch by Mathieu Malaterre, fix linking errors
 (Closes: #775699)
Checksums-Sha1:
 eb820c3864140b9c1b55f3961c99b508b460aa87 1988 gaviotatb_0.4-2.dsc
 76c2ed7faa15eaf5130980a41d4bb06b27079ddd 4580 gaviotatb_0.4-2.debian.tar.xz
 eb02c7e521a3761d349d826372e4b714ec17cdf4 52504 libgaviotatb-dev_0.4-2_amd64.deb
 da6431593bf586c8af49652c9877491118d5bc59 46134 libgaviotatb1_0.4-2_amd64.deb
 db4e3e92f92ae0fd5c51fbf0aadcfb6b223042ec 288464 gaviotatb_0.4-2_all.deb
Checksums-Sha256:
 6636463fb113c8768b2fe87ff14dfc6101166a88ab3edad4c195e42c0cc84f51 1988 
gaviotatb_0.4-2.dsc
 d3a66d7584be5987e1c7efaa8884eaf007a801be410a8fb0f08fe870e1611be6 4580 
gaviotatb_0.4-2.debian.tar.xz
 43ec2baa68f83dc6dd1d478be31c84dc976d05095350512110e8e1df023e9de0 52504 
libgaviotatb-dev_0.4-2_amd64.deb
 59d775b74d3e9ae7fe576613f360cb810cfd8f08cb91d2264c48be9e4d7ed0a4 46134 
libgaviotatb1_0.4-2_amd64.deb
 f801d3e35914b24277c85f3a0450d3fbdcf7dab5acaaaff8f426ae19053ff3e4 288464 
gaviotatb_0.4-2_all.deb
Files:
 23ece47d80d37b9cc75744bb14406a28 1988 libs extra gaviotatb_0.4-2.dsc
 f23462faa706dfd42988253433a3bb1e 4580 libs extra gaviotatb_0.4-2.debian.tar.xz
 8b08efb59ea23f52fb057d7b9f966020 52504 libdevel extra 
libgaviotatb-dev_0.4-2_amd64.deb
 44a2ad50ee2b093120c8be278302f538 46134 libs extra libgaviotatb1_0.4-2_amd64.deb
 9df8fcacd0affc66b7be446207208a65 288464 database extra gaviotatb_0.4-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJUvzusAAoJEHA3PPEpDbnOBd0P+QGRcf28D6Pz8FKJS8MFahwc
zy9iWtahwV5TwJQ1SvNcy1DJ/PJuhLtOoYWemOJ+wQnu0pz6N3d14Qlzm3N3LlMN
Cfoux2uTOWVL5T+OcuhiOdlc4NCRCYT45mD0vYeaU5BJecFYDT31vQ7wk+jbfZ7d
UjNutWWiEYy4EMoWaBEFHITE9stptYgO5NdajdpTuMgFppLGSMSWPqpIeNEJdVR7
myQ1EQ8k56qmHhRLSkXLbT02c+5sRrKQ71eRFiuPpskBjdfByji14LkMrLOS8hEU
w4G54hWjC+OdfobBNnJ9qCbRuC5YlMKiyRaEoO9xgcvUh7NvtkCD5qeN8y6zwO86
uCIzwhUyVSupD+xtpuQ+VdydCnycvTLS9XEBG/irpLORQYJIhMGpY12CCgGBt8p1
slhuHaH6QBvt5hN1/j7m6VsT1M1Oixuc0eGP4ql1wq6i9UeJH7l92vfeM3skA+Aa
go2RpbPFQ8ibnw9iFyxEEB5BYV8t8ZfZ7qrE9HORxWQGmgjV8Gy3qclH+EDzSMZ7
jLMjNPp9r1WawzvM3bS8pEYYjP1t24QslRJfb1WN9iKH7+Np3/w/gISpanhciLXW
pHl5L07OHAkecER8K3vIbT4FPZqJ5pZDHYQ1gYoeS4mqbc7o/5ngmQrPBkKiFIwQ
78WZfS5DhlwlN7gKTsfc
=gTQB
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1ydo9o-0002ma...@franck.debian.org



Bug#775880: unblock: gaviotatb/0.4-2

2015-01-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gaviotatb

Fixes an RC bug: #775699

Last set of changes:
http://anonscm.debian.org/cgit/users/varun/gaviotatb.git/commit/?id=c42dc56b8ed203d15368923891af5674b529b9fc

unblock gaviotatb/0.4-2

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

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


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150121052500.9031.11166.reportbug@debian



Bug#775880: unblock: gaviotatb/0.4-2

2015-01-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gaviotatb

Fixes an RC bug: #775699

Last set of changes:
http://anonscm.debian.org/cgit/users/varun/gaviotatb.git/commit/?id=c42dc56b8ed203d15368923891af5674b529b9fc

unblock gaviotatb/0.4-2

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

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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted python-pyface 4.4.0-2 (source all) into unstable

2014-09-03 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 Sep 2014 00:10:14 -0400
Source: python-pyface
Binary: python-pyface
Architecture: source all
Version: 4.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 python-pyface - traits-capable windowing framework
Closes: 757313
Changes:
 python-pyface (4.4.0-2) unstable; urgency=medium
 .
   [ Olly Betts ]
   * Update for wxpython3.0 (Closes: #757313):
 + New patch: wxpy3.0-compat.patch
 .
   [ Varun Hiremath ]
   * Apply patch provided by Olly Betts, thanks!
   * Acknowledge last NMU by Jonathan Wiltshire, thanks!
Checksums-Sha1:
 436ee9ef9cbfda55a2f1aacdef9de9c2509f1eae 2059 python-pyface_4.4.0-2.dsc
 6a63f38c138ab4fbe142e2ab04a0e320f33daf89 7880 
python-pyface_4.4.0-2.debian.tar.xz
 c020af139f7c60b0cb5b151fe4da6014c1c854f5 376706 python-pyface_4.4.0-2_all.deb
Checksums-Sha256:
 bfc3e2f895ee30f14e48db5a200bb5f9c74d67c18238b08db1d11bdde27ecb39 2059 
python-pyface_4.4.0-2.dsc
 0f7cb6c6254224c5d19d41a65ae1f761768c987f1e1df98e17bf67c68a689041 7880 
python-pyface_4.4.0-2.debian.tar.xz
 f24f2ac1446c5fbdfa9d8603bcefc09e7d6defc1e3d5b86843032dc872c6c845 376706 
python-pyface_4.4.0-2_all.deb
Files:
 3931ea4e01ff860786a830a7fc013fe8 376706 python optional 
python-pyface_4.4.0-2_all.deb
 a80a8cd0f3d0e10e964e73d4949ce416 2059 python optional python-pyface_4.4.0-2.dsc
 c8a63df577a85b8d12a41f7505a9c95c 7880 python optional 
python-pyface_4.4.0-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJUBxHmAAoJEHA3PPEpDbnO/gcP/jEonlaEniq4eHWRDKIJ9gn9
zffMT7h+BsekxldDjE0AXKAFu8JQM9GfOMgO2mFxMz1C8vKKm4u+HFvZQY01fcqQ
KnDNt5zIDH03auMwSaMo1ODMwmBeKGv7HpOdtK+/+YXT9qClD65XmhYshPF7wlFd
7uDq1zcAJH3F0gL19u2grGe4+xalRSYyDfr7Q3fDj1B/sg/ph17/UJX5SUnWomku
pgAEeUlTqgT3+7YKHpFdvH9zFslBu+hVa3t+YwZTTl2KezyAAiKafo6p6ysYqA4D
VfFtBpk0Y2Tl3FO9PLASah/LRX255+bvLIN0DODkDLX+aHEqzh0WsZ8dFTHBENFj
E0I705Ds6fFcbebAbFO3sU986r0JI0LIgqAQZ8MHFXmHx67os2E0XHdRJktGefET
4uJFIqVxr0/v+3KRRehkNZJR17G/4tn3z8540a9i8/2QC9+5+ExSwrMP0jyh3d0k
e8Jky6h0QnR0kN/grqmZyGx5A/tnDumFMQW9MTOHqaxxqM2ga2W3AKSwKN77kIAQ
aohOhbW5eWNf/GyBUBzs5S5XCkyLk3fDlK32wViYAIlINV5r/8atrugmSbZr1PNM
JY+wQkhSH/rW/oNiFvy+GBriOKHbrfYdtBtbnclgJhEtaVQTJ10u/9qSXi/fPrR7
v1LcoLIVUj7AuA3bGGcj
=mOXk
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xpasc-00014y...@franck.debian.org



Accepted mayavi2 4.3.1-3 (source amd64)

2014-06-17 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Jun 2014 02:37:52 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.3.1-3
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 746762
Changes:
 mayavi2 (4.3.1-3) unstable; urgency=medium
 .
   * d/rules: remove references to pyshared (Closes: #746762)
Checksums-Sha1:
 11dd19f4c21835e0c21475d014ba4a45b9bd0326 2073 mayavi2_4.3.1-3.dsc
 62bf4ee9eaa786c97b6b048070049973bbb0d56a 12504 mayavi2_4.3.1-3.debian.tar.xz
 26fe3f53be3a2b1996a5834837161c797f8b08df 4446 mayavi2_4.3.1-3_amd64.deb
Checksums-Sha256:
 490ec93d3e1ee614f93cb78eaff7506a514f5831c60379e2b993ebbb3ebd62d0 2073 
mayavi2_4.3.1-3.dsc
 b1d6bfd73dcd60716ab4e9a2fe03d2d1b32530940b14ee56680535db18689ec6 12504 
mayavi2_4.3.1-3.debian.tar.xz
 b3e97e6f4c83835d02c9b9a64ce853e0e7f3971377b480ee3bcffb612786ebfb 4446 
mayavi2_4.3.1-3_amd64.deb
Files:
 7758a6d5928df31dcfcdd06a05bf7323 4446 science optional 
mayavi2_4.3.1-3_amd64.deb
 62eb716d11034592249e689f2de3a1a8 2073 science optional mayavi2_4.3.1-3.dsc
 5f546b11c74aeca2e3c4c56aaf2b029f 12504 science optional 
mayavi2_4.3.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTn+fiAAoJEHA3PPEpDbnOlCsP/jolt9G+wDWB8qAUhOWl+iAD
U+dVmuD/ocU9jVzAgkwRJKslCUdYpzj3joYIoss9kPjiT9jyqTZG3N5W8eSmUpPn
AXfVkE+JN4kIAr/FXOf9VYZvRru2XcAtnNyPWM8KVOSM8nqK1MzPQg6ZRAUBC0x7
/Co68Ctn2R+uD1Pqm7651Mk/HeSffvDwxXroc51KcTFnw9Ei6e+AMpnMek2wCiEa
jIOxDXtLmlboQnceoa6w9yhU/gYQBv8aTxOaEJ+15DNmOsm5/Hfu5n7yfbyAO0UN
xYLvuXvrbgyloQW+Bh3pG6Cy80zDlGyx5qeRGAjSwWfUUIF/qvIZPMvoI25ERCec
L+LgSyw+UT1KtGueT5TEzqPoKxcIuvJZJYrOBh3oLG9oc90ku227b9kwt5pN9E7Z
jmaG//oB6o74eAh5o8TrVdpJatjBBBQgQzplad7JzY7uvLPyaWlbeDYMp2HHWOrG
aOsyWeD8yFcv777bVX3tJyJiSxhlPuM1OO1Q02BAPYnQoanwlcCCOnmC8t5J4Ggj
XMrYxUrA8d7+r+lsAZzwOrO/We9PxQ3Fc6VGqv7L7bsZ/C1sjnrg40VZqiSRZwbl
txTyAgkF7gSunbBYU5ywSJn0EC6EI9u7VVqYC+vOzBqZymMQycS70fmAgzTyFfjJ
MwRLCgXoGc8iC9Dq7w+S
=4DWz
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wwnh5-w2...@franck.debian.org



Accepted python-chaco 4.4.1-1 (source amd64)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 22:52:33 -0400
Source: python-chaco
Binary: python-chaco
Architecture: source amd64
Version: 4.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-chaco - interactive plotting application toolkit
Closes: 649473
Changes: 
 python-chaco (4.4.1-1) unstable; urgency=low
 .
   [ Varun Hiremath ]
   * New upstream release
   * d/control: Fix upstream Homepage URL (Closes: #649473)
   * Bump Standards-Version to 3.9.5
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
Checksums-Sha1: 
 01fe2fcbfa369d423da95f0b2dfb107b53c965ba 2094 python-chaco_4.4.1-1.dsc
 c62e2f0f9ae767e39c9cb02db9b6dad6878902af 406469 python-chaco_4.4.1.orig.tar.gz
 d491814b2575562bdba6a149bc98b6710f2511ca 4036 
python-chaco_4.4.1-1.debian.tar.xz
 d3a29acca3876648e00aee7edf52102c10cc2b62 328218 python-chaco_4.4.1-1_amd64.deb
Checksums-Sha256: 
 8d00ee230692e7a33034add9e5db4f8232fcae4e90259b0c58fef3f1a702faae 2094 
python-chaco_4.4.1-1.dsc
 a607565393bdc669d5d8fb992a5338eb9a6c1f69c1b50460dee7193dd8b9533d 406469 
python-chaco_4.4.1.orig.tar.gz
 dbf7b32cc18e34302b89a72d22f62272f038958d6cf74c5ce964430f4f42e26b 4036 
python-chaco_4.4.1-1.debian.tar.xz
 397b06f7b9757f17f0d262874d620ea41e288d59200f21958e57b1f53403e9c9 328218 
python-chaco_4.4.1-1_amd64.deb
Files: 
 0a666435301f1bca16329e691178e606 2094 python optional python-chaco_4.4.1-1.dsc
 86a6840c711ccbef517d4a042296986f 406469 python optional 
python-chaco_4.4.1.orig.tar.gz
 e63b9b90fe03847063bffb926ec98353 4036 python optional 
python-chaco_4.4.1-1.debian.tar.xz
 fd0d57ab98fb76da1e15ca6c54feeb93 328218 python optional 
python-chaco_4.4.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSF6AAoJEHA3PPEpDbnOLroP/j33T44FIcKNHKZtfyob7Mb6
/kd1hUZGcIqrkUOFi3hjGYaQXzvF1kLwhAJHuYqjZ382cp4Eja0ILO7ReUcbzvIm
BEkuKgdqk07qD0EceNDVghvOJrrW6sxXajy5YHRNaIvsv4Kox3mAGTRx/Eci3j/l
Q2AzI92PSIygW7u43ovLPSLndzoZoYZLJZIab1m5IziSPuc+d8QFgwr8HB76PC/6
A9ryZX+DVQr8YVDZIXNFSbjonEmt+QKusMOztMopCi7ftVayH7XJ9hODEyELV56m
8vL4H9QiXbHQ72LYL27VvQUj6LtstqFsG/cFeN5vIHllDzDUi4wc7qe9ddrrfduS
hVefYn4YA1m0lIJ8EbsLx0BHGtXW6P8fMNwHcEb1Rao6z3CRYdi76DwetC9XwfKy
bOIDXPXb78ETYMJ9gXzrVxc73mqZr9NItFZzUoGd2f96UM1yBAF/S7lICXh2vVqR
iWKjPfEhb7iBHrOtIfr4RWN/SbppqPD7y/IC8iVfUMRcCHC3GMlpAW9PyX02tVSN
q5GOFw+6S6ZCsd6NQdjzkXrLnNtXCYk26HngpGV4Ke0d4YQTLHyDh7N9e2RMdmcp
Nmc3MujzavhPaytBa3AlBCntzZpV2oDA09PMzwCLesm7eD+/PDlpyDQSafeLv+Gd
AeY9zEktauUf/wiXLVJV
=lM2U
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2ip-0007ix...@franck.debian.org



Accepted python-apptools 4.2.1-1 (source all)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 22:47:59 -0400
Source: python-apptools
Binary: python-apptools
Architecture: source all
Version: 4.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-apptools - ETS Application Tools
Changes: 
 python-apptools (4.2.1-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 f83fbd27ef863e8ebd19036f9bf3d20e74481d1b 2126 python-apptools_4.2.1-1.dsc
 177c083dfb31b7eabf0d04de548ea592cb5540e5 274521 
python-apptools_4.2.1.orig.tar.gz
 dea6cb20ab6b4bdd887dee1a491bf8147b6001ce 3392 
python-apptools_4.2.1-1.debian.tar.xz
 efc89be335080cd9d960d000c48bc55385bfb56e 176968 python-apptools_4.2.1-1_all.deb
Checksums-Sha256: 
 08769945056135de4d2ac1071b55cd09d2ab760b1fed3d5a237e212fb6a38caf 2126 
python-apptools_4.2.1-1.dsc
 66f4d61e4be80fd0b153f4a8c1d680c45d5b2e0734899695cb6e918f3f594369 274521 
python-apptools_4.2.1.orig.tar.gz
 d17f2070794a32d6c362456cad8c2d2820e56d13991e369d05913a306b2c0a75 3392 
python-apptools_4.2.1-1.debian.tar.xz
 84d06ab9f73c3877cf38af6b462d784a44f4e55f40e23b585c8f4b98194c3948 176968 
python-apptools_4.2.1-1_all.deb
Files: 
 013167b20cca0734293023ac08eef113 2126 python optional 
python-apptools_4.2.1-1.dsc
 83bbe5f26968a0a5e234aaf29281667b 274521 python optional 
python-apptools_4.2.1.orig.tar.gz
 fe2a7716c8faada9281cac1151b6ae56 3392 python optional 
python-apptools_4.2.1-1.debian.tar.xz
 e8cbd2a1bdc50f5a5eeea9453b63b75e 176968 python optional 
python-apptools_4.2.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSF1AAoJEHA3PPEpDbnOlIoP/ArfDNviqmSd64IknRKwVlDX
DZPvk3PwYWU1IdZvP/vWNtZ6vBKZqTrzCgv4p6db8LgFPTZwrYL/tcOqn/ljMvGH
Ji0wxfEyyhfIlb3pPnEW4gjY4eAMULlLe63rraDBZLczXgUAqg09fr0yv6D546TU
rUH15Dy6tjRqTcVyfsJFGjHqIqo0ot23xaBYw90/mFCciBcUNJ9fczmHUxtTwL3r
FS6ZBfVOgg6GdY9EAaGMMJeLUco2y0PPRvPSiLCUnVIGSL7GH8r/8LEJJaTB7/Tk
wtMJyDAoWaC9eNFDfh06YNrO3cFNPi8Em0FntMFgrYNgfxAqR23ieC1hHeVmr/1Y
3yuAoaMtFmwl3DNJ7XP1reHETtBf0UaAiB8QFXpjiqK9hZbt9KMt8Z/BejHqYK1T
0hTwSpoll6eMXkbckvrd4GcWUAv6UJWXANnL6yuXwZifb7wrR9V9T4u8FtNiZs3B
fQp1wpwe7+6fJjrnbQ1/iRlJBgJ2u0olAy2gTsJqfQTExnVVcaEUAeGfsBMpXjQh
TIl0dnH5BnI6u6CsEhb4UB7lQ9lJh+Y37B+byYglWKj1q+9lXn4u4278K8QhJXkL
rmIaW8g4AOpsWzuG8jeJdiM/OnXQ4vDsFu+uaDzNT6vy242AR2/TDXoX7nIrglhI
yhvjLQBFZST/8XBqb0n5
=agyu
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2ih-0007gx...@franck.debian.org



Accepted python-traitsui 4.4.0-1 (source all)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 23:52:35 -0400
Source: python-traitsui
Binary: python-traitsui
Architecture: source all
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-traitsui - traits-capable user interfaces
Changes: 
 python-traitsui (4.4.0-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 e3ab602dbff3b1067b03df5b2c5ed1e2af6b4941 2112 python-traitsui_4.4.0-1.dsc
 de18dcbc7ca7062b90eb4aa5a605693fb4f35c88 598148 
python-traitsui_4.4.0.orig.tar.gz
 8fe49694e4adb421e4850aa716a84eb8b155b632 7892 
python-traitsui_4.4.0-1.debian.tar.xz
 56fdd964e60ba66db106cb755a1855db20d56f0f 433324 python-traitsui_4.4.0-1_all.deb
Checksums-Sha256: 
 113575a1e6096a1b02ff41c2d07b414bb5f765e8e1f44a2789f477f02a165e0a 2112 
python-traitsui_4.4.0-1.dsc
 68a10c4f86cf0f5ba5d9fac5caece73e0a76256a4175efcded5edec03949cf60 598148 
python-traitsui_4.4.0.orig.tar.gz
 3158f273151d2fd83831ec2f8f9e543c82d186721a0a7836b107b379d70f869b 7892 
python-traitsui_4.4.0-1.debian.tar.xz
 7c767ed45a5fe5b7bc498371fea3905f459b33068301a772ff46552b92489190 433324 
python-traitsui_4.4.0-1_all.deb
Files: 
 cd64d7069d239e230eab458ae54d1e11 2112 python optional 
python-traitsui_4.4.0-1.dsc
 71aaf7f5b9b76e5f288252e090d29a63 598148 python optional 
python-traitsui_4.4.0.orig.tar.gz
 951d9add71df935707c62b334685e3ab 7892 python optional 
python-traitsui_4.4.0-1.debian.tar.xz
 cf631b95c963a263e861a27d47dc5946 433324 python optional 
python-traitsui_4.4.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSGVAAoJEHA3PPEpDbnONL0P/366SMJshlrwSmQcdskHliIp
PBYTxpGM6390XGzEGoKsvE+EsdS4VlU8Gu0R4rXCiX4pBrXl58Evp7yt5ymg0sOU
JLdonQ/4hQaZ93Zb4y6yMM9r53AhCHIw1WXzPPy2/cEhqA2CHPGWXsyQBYWNnvfS
x6QGKgmYd0Aa4aUfpgKR7mF/szXvGtCoUx5aejkFLum6i6kX420tg24mKruztXx1
gFocdTi2OCV0OFA5lznKfZJhO4/ESIof/delNIkj/Bwj/LUS+vams7JWFNgg4cP2
hs58hUTPXRFSLtQXOJsh86238KbVTlYQV+MYZQSGi7FxjWGQgCs3sWkW/kx+nIus
1KKi1VDScBOzBv8iBOK22tbDFBjqgrG3XYd/ZowEKBNqXoVOvRz1I3HjLm6t04gg
EvYJDPy0hZcwbVMTRXm1QCIylxRYWsnDcJYnF3kYJdzQHrEEwRJPk5OnIiLCkVeD
ON0TR1GzSe7Q2loQb8x3MITc4vg1zN1bRjG8WDyCFFBhUW9hDqfyITrBNNk4UOIF
QoX4NaGovF0zG0JIUtrv4UHh77lRc0DNQXsoCIlGd2dVUdnnBMySyb1RZdWvfiJf
BEKljujdiWSamg2vDNnf3FSc0KZl3KZ3Un21ERezQbyjpGgI4TDMSoWu5PSe1x/j
e3hQN+niAbLDMFhsJx+S
=ekE+
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2jt-0007tw...@franck.debian.org



Accepted python-pyface 4.4.0-1 (source all)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 23:44:36 -0400
Source: python-pyface
Binary: python-pyface
Architecture: source all
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-pyface - traits-capable windowing framework
Changes: 
 python-pyface (4.4.0-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 3aaf1e9b680ee66c91c94ccef707ddad3dd6fb52 2054 python-pyface_4.4.0-1.dsc
 0f53e660c78d52a106e6f816d7d26b370bbc71a6 486490 python-pyface_4.4.0.orig.tar.gz
 729225210b2694195747fd5c8aed2320b94e6f54 6488 
python-pyface_4.4.0-1.debian.tar.xz
 a87729562d8dc88d2c6d270e2e453101c3855f2f 382070 python-pyface_4.4.0-1_all.deb
Checksums-Sha256: 
 e3180c826a62c803a50318ebef6c4f72bd5065d31bf26e953ae50b7b10eb2f00 2054 
python-pyface_4.4.0-1.dsc
 270bc35a5364681b78569619917e1b5890150c882b455b52578f0c0752f3d3fc 486490 
python-pyface_4.4.0.orig.tar.gz
 5094c917e987e9e7607bc50390da3cb1aaeb6c9e5dd03afd547293aaad52 6488 
python-pyface_4.4.0-1.debian.tar.xz
 f430da4a913bb3d315468fb4f3d019cc176147e586d2a564000d5c3bd0679457 382070 
python-pyface_4.4.0-1_all.deb
Files: 
 69e57c046852a1aeb5775043ca1377aa 2054 python optional python-pyface_4.4.0-1.dsc
 0e8667a365042310b7302d968e067e5b 486490 python optional 
python-pyface_4.4.0.orig.tar.gz
 d91abe0617e20bbb0146e5a1cf663407 6488 python optional 
python-pyface_4.4.0-1.debian.tar.xz
 281c0ced9b4f609e3d7b5a64701ecbb8 382070 python optional 
python-pyface_4.4.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSGKAAoJEHA3PPEpDbnOYAsP/Rvwyysv0r2g31M9ICrwouWg
4JdAZ8pR+Wxvhx3PdWWGYXWwKgimSqlASVpVOG+pWlMStcHTCPiUfKJbzL3dk/Lp
uaTE9QcMeZkAa8cGcNlc8S7/3zKnI3MyXpFovSpvuf0Fj6l6yCZh3ts/vh/dE5cF
DM3WhVXhDNdSs0mYMpE/YhmFfHgK7uwrc2pxR5wqsw186ZX5JalwO8OGq3lNcH6m
HNJ9LK93IVfaHKwSstDjxlCycitHdPYl1HvdwiNOv4MlKUTu2crJMntKuZvm1hrV
pPMnWCp84ngDMC0MPYKe7RyGD4L2hbZiEdK6SSTivR2BICf+T08oqEQgK1hWpOMe
NhR7MjYXeZ3ilSPXYI66cnh8yoKmZRUars038wtLDxSrjrLJ0NMFaljW5OPgI23e
rB+bFeCNZ4vNWVCHoA5CWkHATRfkzmfiyym7TGEtkLmCVl2Z1PfTRDOjnmOAmKZM
yNkMLf7jnW5YWRkRUdmVcnGMsVPdjhgvtKrC9F61DSa0eQ15UYvWYJXLd2YAWLr1
HcAXJdhWc5395Ztv/3/kg4SRTjTuWQT88Cew9IzcCuW0Z/mlIsP+O1ERJ6cov++I
gMgHhU6tf2PBKIrIhSlaO4njJsSaB5QgT22eTpXvCOhKC21U7suqRGps7fm+uOMl
pJJxITOKRxiSXbjuSTsa
=xBQ+
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2jd-0007pz...@franck.debian.org



Accepted python-traits 4.4.0-1 (source amd64)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 23:48:58 -0400
Source: python-traits
Binary: python-traits
Architecture: source amd64
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-traits - Manifest typing and reactive programming for Python
Closes: 673638
Changes: 
 python-traits (4.4.0-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * d/rules: Remove reference to pyshared (Closes: #673638)
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 2a5c266229e78d9dea22953873a852f581bf0918 2072 python-traits_4.4.0-1.dsc
 56be9ce85fc79e7c90822bfc86b6adb13d4ffb6e 226316 python-traits_4.4.0.orig.tar.gz
 15fd87edaa0c135e0558429e364cebe7367affed 7356 
python-traits_4.4.0-1.debian.tar.xz
 cebf61b10081f262cbd57ce713b2048c4a9e192f 214272 python-traits_4.4.0-1_amd64.deb
Checksums-Sha256: 
 0498685d4467fafcf6a46920223a37a3360f1f130070810c44474891c0edf5fb 2072 
python-traits_4.4.0-1.dsc
 737e710e9cbcd087d5b5dee9928447b5592049900757b55a2802ee2e4336c49c 226316 
python-traits_4.4.0.orig.tar.gz
 5a8d370bbe4beedf12d2fefd5a25693b612f45a469fb3964fc530a2c73ba96b1 7356 
python-traits_4.4.0-1.debian.tar.xz
 b4c09852a7c8257a4dbdd1fd78b8373d6dcf6bb6256ebc9bd4d4c068ba0be911 214272 
python-traits_4.4.0-1_amd64.deb
Files: 
 c07233b044bc30e3f6b83ad49cb2725d 2072 python optional python-traits_4.4.0-1.dsc
 ced61ab7dac2ca41420fbd20edd7e502 226316 python optional 
python-traits_4.4.0.orig.tar.gz
 13338414a5d47562f6b67521c3538fca 7356 python optional 
python-traits_4.4.0-1.debian.tar.xz
 e797b1108ea5a8aa81056071d35e8af4 214272 python optional 
python-traits_4.4.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSGQAAoJEHA3PPEpDbnOlEYQAJxURrFRzgDFmpWy17NawZTj
q4yXhNec25OrJ5SnQ+BRvP558zcKfbr/8I2xtSH9+N9hPB6sn3pXsKptR0YQV1Rh
zgVynJkH3F4tr68IueOdlbqZnM1n5okmxk6w1ZlbOei01i+BdClMYBj5sbZAQVyF
XIj/Lmt+XSKmj2yxy5oY4r5MhR/u2uBEOLMaFOx6WEcTKPgkYatUdv2GKnafTuff
V1rsZ2hB2LvKDUG4fSfDSg9HdENrLHFDnELzSioEJETnHfDbydPgg+5hKgZamkDP
bpJLemEqmWJkj1sfeOt48qAf1z+J6we6L/YQxuf/Tps28VXI7ZmHGjA9kFsCH32M
vJ8/5d4mxePQYNgheIFFAAeAoBZvEWvJPKH1n+UMDjTuyp72zA+BRk3JQh2svRkW
kjdECxZdktkLGnifNHl7mhfZCoonsWISeNXSyVMr1QnhcPHk4Bdy2XwUS/4DcnOK
Pz3GppxGOyzfB3lWYALOabPVM2L9R0AsJFllmzEWoKK2ra9XjGXiXdpPBAzX1Mki
E+EmOdWfa0zGmYTI9iZGuExdQE0lWwHwsCXHLCdhcnLr/4PpBXOCQ92abjxaNPfd
gQ1quG3AUC2tDAf7HbwGsTFYf90NMmihTyLEZff+/lPVYoBfitbwPdewrqkJKJmx
25I7b4GLgoLjXryuSQhQ
=pTpU
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2jl-0007rs...@franck.debian.org



Accepted python-enable 4.3.0-1 (source amd64)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 23:02:32 -0400
Source: python-enable
Binary: python-enable
Architecture: source amd64
Version: 4.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-enable - Drawing and interaction packages
Closes: 715145
Changes: 
 python-enable (4.3.0-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * Remove embedded fonttools from upstream sources (Closes: #715145)
   * Add fonttools to Depends
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 9fc231bd2d80cf33f3f14bffe76be8fff2f8a960 2187 python-enable_4.3.0-1.dsc
 0b63cc072f0abe11e3f54c33ee857f116aa3a5f6 1345881 
python-enable_4.3.0.orig.tar.gz
 bbde3ea06d136c13cfb39dfb6d15c00b657fad92 10948 
python-enable_4.3.0-1.debian.tar.xz
 adaad99eba47f66b9f7c7b7f5be9d1a1e28a9382 907496 python-enable_4.3.0-1_amd64.deb
Checksums-Sha256: 
 560639a6485bf3caee892b2cb2ebad38dcf8cb5cf817d1daaa33b4f30ca79214 2187 
python-enable_4.3.0-1.dsc
 2ad48cc5cdc9dc69f91048864867ef59eedfaabcff14997e9f8f658ffcbdf54b 1345881 
python-enable_4.3.0.orig.tar.gz
 797b132ded0cb404bda827498dd0fec4b49d5f4cc2dc193ffe0452d85a3d8f9e 10948 
python-enable_4.3.0-1.debian.tar.xz
 5b8c27bf53a70ef6b0621be77ee2c8c3b3ace97ac3cc7d5d4086904c74fb0630 907496 
python-enable_4.3.0-1_amd64.deb
Files: 
 17610855c2a35f805a52f33591fb8184 2187 python optional python-enable_4.3.0-1.dsc
 b11a03f67227dd862c4faca4694bcb45 1345881 python optional 
python-enable_4.3.0.orig.tar.gz
 ef999b736d8b84ca2e1e6fb23ef382cc 10948 python optional 
python-enable_4.3.0-1.debian.tar.xz
 5b78946af986c5daad2641ce2ea12356 907496 python optional 
python-enable_4.3.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSF/AAoJEHA3PPEpDbnO2RAP/1PH762Jxyfpx+lD0CfAogQx
2+5HZLwvbOLY3BmjbubR82otC6pKRASssEo+2qeRFtrO2BAVb4rERWy1UJqdg6BH
5IToEDtqsH7VJEsa/dRjKQrk5+x204K3G6b8WzZ7MqisnfqhG4tQavD51fAgu/2k
zRE0iAtz1TqzgXIfVeFgy/WUYGgbBfaohQShM4x1WUCYRmI5uoGY/IuiXvjViavA
/Q+MSS8yUpB2YH5qMZc2uS/QJbX1p9cW7Asi748OI8hbRM2uuuxW7mPuz9YeqJpP
t3vdaXgRBA97aOz+YW7jqXG5onRYCT/vMxwWN+gpa7b8m7iEzpJoC/ZfTCjd6r3x
6srliw/vpy8Z532qPh0+5fmoWihBi6XK+2M6mzQP2mp1mwd6+ppQdzn+s/yUmoAv
HTh3SoBaTSCgSXVVe7nubt7aNjUJOahjMmiDDIVb1qpJdS8JJ8fPF4G1ImZzsDUp
mirIGQmJ/hyp9w/M6OUyRCt7T4qTiyrQQnoScEIzMKO8PtRf1vGmdEO1i6z9BKmH
OIjjj96SMdqGf2f4G2HqspLXNHuB6+gMjXZ2f9tWod83BEXOv6/zJoVa1kH+g8T4
witHuYZ2usPqgKnBpAeLngCR7/Zcmsq3gCuZmZe+1hKuhbO/C/T4Ovn4ZIx7pXgr
+uArf3fyF+I9v+ZGhiZb
=tpoz
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2iy-0007lb...@franck.debian.org



Accepted python-envisage 4.4.0-1 (source all)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 15 Mar 2014 23:41:54 -0400
Source: python-envisage
Binary: python-envisage
Architecture: source all
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-envisage - Extensible Application Framework
Changes: 
 python-envisage (4.4.0-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Varun Hiremath ]
   * New upstream release
   * Bump Standards-Version to 3.9.5
Checksums-Sha1: 
 c24fe37700ae3dc6c0949ad0e1b6f6167669ef62 2092 python-envisage_4.4.0-1.dsc
 3dda90e5bf324e3ae20dffa5895b2f1f53d927e5 192529 
python-envisage_4.4.0.orig.tar.gz
 c5e67c121621a2d3d1d38aa94f5c80ed810f0d98 4220 
python-envisage_4.4.0-1.debian.tar.xz
 6bc53229b56a47c95365420942dea477b710d9b1 168894 python-envisage_4.4.0-1_all.deb
Checksums-Sha256: 
 f990f61b733dc434e8438c8603812bfd6f380434ac93595316e02fbbae04af87 2092 
python-envisage_4.4.0-1.dsc
 ce9274a1afef8e4b660344eda2b32c4aa23fa35aa61dadc33d5a85eb284270f6 192529 
python-envisage_4.4.0.orig.tar.gz
 c12cb4e4fdd57179d1ec7bc2a28415d7506187a469e9270685cee8d3a314a41e 4220 
python-envisage_4.4.0-1.debian.tar.xz
 d7823fd12ec3910bb02f0e00c44cc1d0f3788827bf14cd2074c4b37992f272fe 168894 
python-envisage_4.4.0-1_all.deb
Files: 
 2d1502d99085691fcd7e9d039352ca76 2092 python optional 
python-envisage_4.4.0-1.dsc
 35547a7b5736de292a264cba4326bca4 192529 python optional 
python-envisage_4.4.0.orig.tar.gz
 17b31fde027541b5c4030a013b589350 4220 python optional 
python-envisage_4.4.0-1.debian.tar.xz
 089c22f558800bf5a94e9ce3da7d93e7 168894 python optional 
python-envisage_4.4.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSGEAAoJEHA3PPEpDbnOducP/AwrCIYvckoKsGNnnIRnTok8
aaR9kRrJUZv7s7QYdVYaAyzCBk01qjz4HVoSmbTxWtw6F3IYepnM8GNRi6R5f2qi
D+ScPW71Ql92R0Olv9/mVO2fZHdIwQUO1q0wfGog5rGBfwjmuG3/XvPWwzRRdpEE
IAUSp88CPBnUidFBAE5+76Y6074mo1rQ/ImyX5k9A1maAXqj1wX2RgFfYi5UybgL
Fkr5CIavXNXDqKy0+q7VYdlBXfboX3HnPaC92/yNILuQUnP4YOvdp6Rzzw7vaVQc
3aBDvpvzBMd1CLnGByMroa90B8akEBbxOnqEjW5Eo5cj91y4fi48Zxy6MQkQNdQL
gNlbL/Iy6AYYC9lnGYtUNruyuN40U6lDrQFxaZt0Pr9Sa0WZkYMYg6G6OmkoeKFs
V9dLR6c7mbDRHYAHBSNFz/8/HlqCpLsQC5M83Iy2PqJ7hGSy4eN4KXM1F5JRVbUA
xItNFrfZFQF+5i76K7TxH0rE8sLilKg51liuQYL5dUBRBgsuwkynV/RfJMdkRVuT
zDJJ3Xi6W5z1Vp8y/nGgajFghvWl1LLnpF7atHKS4WLnYJcpalPazHCHELZBEC/s
xVAmMs5BOH5NA/xtIOgj2kIdbvTlawiC9vfYqOqJLtsm6OOojq4GwTnddrBf3Nnu
T7ZlOj+Z2Z7Jb9RhA5sb
=DqsZ
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2j5-0007ne...@franck.debian.org



Accepted mayavi2 4.3.1-2 (source amd64)

2014-03-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Mar 2014 00:01:01 -0400
Source: mayavi2
Binary: mayavi2
Architecture: source amd64
Version: 4.3.1-2
Distribution: unstable
Urgency: low
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 678051
Changes: 
 mayavi2 (4.3.1-2) unstable; urgency=low
 .
   [ Varun Hiremath ]
   * New upstream release
   * d/rules: Add missing jquery.js links (Closes: #678051)
   * Bump Standards-Version to 3.9.5
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
Checksums-Sha1: 
 a3313a023115e24abf94bad80533281c9e7e7ab3 2068 mayavi2_4.3.1-2.dsc
 7037490c9387747c36757c584437dff4df4dc45b 7713572 mayavi2_4.3.1.orig.tar.gz
 434f833d9f29a3b0fddcd0cbb4377db7c6fbdb0e 12468 mayavi2_4.3.1-2.debian.tar.xz
 a453fb71a7a93bf17ec9a64709e7cf0d2fff623c 22230378 mayavi2_4.3.1-2_amd64.deb
Checksums-Sha256: 
 225d9ff3243a9a0022b6c061568624b4a4e75bbff90950c1595346e375f7f2e6 2068 
mayavi2_4.3.1-2.dsc
 5a0b573d238c271302d41de7282bec55306ef80baa8339144a5565dff5fd4831 7713572 
mayavi2_4.3.1.orig.tar.gz
 6a1422315d7d0df178af9d54fb41f91fd878cea5a0ffb90651af90866266e3b6 12468 
mayavi2_4.3.1-2.debian.tar.xz
 8fda1871d4a2d1be1d4dafdca3cbdff26074b95b6950b0cfc75aac587a80372b 22230378 
mayavi2_4.3.1-2_amd64.deb
Files: 
 2ad2db5aa7f483a2b8129ad74d96a12a 2068 science optional mayavi2_4.3.1-2.dsc
 93677c77f0a835537bd210c493740b03 7713572 science optional 
mayavi2_4.3.1.orig.tar.gz
 f063c7ae25af2287a00951965eaf122c 12468 science optional 
mayavi2_4.3.1-2.debian.tar.xz
 ce1349a63338c8f15bedf3162fea6413 22230378 science optional 
mayavi2_4.3.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJTJSNgAAoJEHA3PPEpDbnOFB8QAI/aPK1AN7r6WhOftKB6wqh6
zZoMLNMOMUOPh5fEFJtd8vlNvQ1zmguKutOIq7lsn85KvkSfp0rWMPBlulw/rMHz
W8iajv5RqzRwaZgRxbdZLuYPj3wLc9rQIuGVc60gQ4pnX1iPTLjfd5r3pmcCBaK0
4mnDKMWocNZS15suqD5qGPrTDmqGsKM/Ng/nIZ6RCaXMMB4unNtyYB0u26QCg/7B
3/9JZTw0A+2FHPZHEBqQxMoreD4DrxqbdhCqJBXa9/NNnFjtGhRlOzMc4uk+MMi+
dLkL4FyeXE86h6hWvvsFGuImFBmjbSRiyW24khRTUlF0miwsC65YgposxlgBnyKe
AxJDiHk6B3t33XwhJaEkxZpgjImowETvqWCBq8CD8kiIpSVWQQ3I1mz5L531UvRm
YaOOuWApwuEOtJ2EQTHVaPgYro/UDNaKrk2KdIN9GntzBaVcPsy0JcC6sCnE49UD
vyQf9c09z0ak+B8teeXyyRmfdgXX18j0ZGYdjnGHHUCsL/RMYuwp9JLqn1ndgJKE
oowCetgYDHYvU6LzOkIGCnIPi8zJ8g+tvUpKbks1M71orjponiKGDvTOJSYeBXHk
O6KvGdgxqjkSqEuby22mjhIqBOjbylgI81LneAgIbdXMJofK0p7SY4ygAvY6yXxA
eJI1cSCLjZBSCJR8OBwz
=/zaP
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wp2xt-z1...@franck.debian.org



Bug#720881: RM: python-traitsbackendqt -- ROM; Package superseded by python-traitsui

2013-08-25 Thread Varun Hiremath
Package: ftp.debian.org
Severity: normal

Hi,

This package is replaced by python-traitsui and so can be removed.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#720882: RM: python-traitsbackendwx -- ROM; Package superseded by python-traitsui

2013-08-25 Thread Varun Hiremath
Package: ftp.debian.org
Severity: normal

Hi,

This package is replaced by python-traitsui and thus can be removed.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#720884: RM: python-traitsgui -- ROM; Package superseded by python-traitsui

2013-08-25 Thread Varun Hiremath
Package: ftp.debian.org
Severity: normal

Hi,

This package is superseded by python-traitsui and thus can be removed.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#720886: RM: python-envisageplugins -- ROM; Package superseded by python-envisage

2013-08-25 Thread Varun Hiremath
Package: ftp.debian.org
Severity: normal

Hi,

This package is replaced by python-envisage and thus can be removed.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#720885: RM: python-envisagecore -- ROM; Package superseded by python-envisage

2013-08-25 Thread Varun Hiremath
Package: ftp.debian.org
Severity: normal

Hi,

This package is replaced by python-envisage and thus can be removed.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted pidgin-festival 2.4-3 (source i386)

2013-08-15 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 15 Aug 2013 22:33:29 -0400
Source: pidgin-festival
Binary: pidgin-festival
Architecture: source i386
Version: 2.4-3
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pidgin-festival - pidgin plugin to hear incoming messages using voice synthesis
Closes: 576920 680535
Changes: 
 pidgin-festival (2.4-3) unstable; urgency=low
 .
   * Add patches/errno.diff, thanks to Pino Toscano p...@debian.org,
 fixes build on GNU/Hurd (Closes: #680535)
   * Add German translation, thanks to Chris Leick c.le...@vollbio.de
 (Closes: #576920)
   * Bump Standards-Version to 3.9.4
   * Update Vcs fields to the new git repository
Checksums-Sha1: 
 66b0482b2dae18011388cd57295d82dc374eb3ed 1958 pidgin-festival_2.4-3.dsc
 5433579336b58a436ed20d1363a52ef2017dbb1c 4612 
pidgin-festival_2.4-3.debian.tar.gz
 3b82861b99687445d8176f23460d8c5b2d696207 14416 pidgin-festival_2.4-3_i386.deb
Checksums-Sha256: 
 cc1cd1cbb6c25980bd17e9c8430d1712c173ed835751b493f8edcf05e3b7f298 1958 
pidgin-festival_2.4-3.dsc
 e738bfb51e17ddf9665866a58f181429ac9e24df54ae317ff9b9fa77a5b11976 4612 
pidgin-festival_2.4-3.debian.tar.gz
 92e9b12bb2e0228fa993f6b78aa31e8a5dd5ea0612375bf8e183f388f42339b2 14416 
pidgin-festival_2.4-3_i386.deb
Files: 
 630c53b469d4c5894619900f2dfd64b0 1958 net optional pidgin-festival_2.4-3.dsc
 fe095d632bb9743d6d2a24c5ed1397a7 4612 net optional 
pidgin-festival_2.4-3.debian.tar.gz
 676b9c78d6f3ec95d9cdd2b555455181 14416 net optional 
pidgin-festival_2.4-3_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJSDZmBAAoJEHA3PPEpDbnOsFQP/i1M7nYqcg/n6AjtAb8rK7Sk
kBaRceA0I5Tn/iZMpNyaz9DKiMIw4kqHre+NthPfKURcE/GzXO3E8RbI0Vx3U+o6
abSDrSSPgPrGGbjTSZ9xf0iuunuQNFEKPhCC7lmzcrFWZ4NxLCFJYGgZCKkhD/36
KaXUp1jxglvyNzzEkhBBUN2smoO9MR97VaLRNwiEpl6o9mMod9iDrz6IsFbwRyCf
hsv0QojH6noZheZAOOAn69TdKPlqUBgN87S6wmHPXY7n7ItUga06TA4o+sqBATcS
SI3aFiKZ/hSj94/xSw9LSL/jnYCtzcB3aRqI40DrMTF1FYydyczl2rPQxSK+/B8E
yjV2dq+qQ/91E+bSdWZzk2rWBcbvd+Bsn4niQ4Re2741SRxcCrC+G9Nxp/5FVqHy
NufbEINxBGUQ2OtzjTzUB9p3A7iDQcZ789mNQ9uATtMKiIdYL7MdcG9BYhNi83JO
iZvRAcR/8MOBjSuEj9VtYklEk1mXivGbe0ncDpRT5J5RNedPC9f+7aZxMyv9p+uj
o7Hmb0W4asYhK+x74mldirlh7NSsyliDT4yLY/bmeZ4R6adUlrSdEZKR9w9W1P/W
YU3NxHJwLGvQ++OA4r5mj7bOmb7Q7WgGcaolNsvm9THOHgRmIuCWEJGm10wtnhXC
7gve2KNyZLLvEZGFjTuZ
=lbPJ
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vab1l-0006dr...@franck.debian.org



Accepted xpuzzles 7.7.1-1 (source i386)

2013-08-11 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 10 Aug 2013 20:40:57 -0400
Source: xpuzzles
Binary: xpuzzles xmpuzzles
Architecture: source i386
Version: 7.7.1-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 xmpuzzles  - collection of puzzles for X (Motif version)
 xpuzzles   - collection of puzzles for X (plain X version)
Closes: 657595 714676
Changes: 
 xpuzzles (7.7.1-1) unstable; urgency=low
 .
   * New upstream release
   * Build-Depends replace lesstif2-dev with libmotif-dev (Closes: #714676)
   * Add Build-Depnds libaudiofile-dev (Closes: #657595)
   * Add a patch linkaudio.diff to fix linking with libaudiofile
   * Switch to source format 3
Checksums-Sha1: 
 92ecab11f903bf1428cdb56b429aa078e171ca5b 1981 xpuzzles_7.7.1-1.dsc
 e1dde538cfb26d63ab90c57eaddd149d62f5241d 3066670 xpuzzles_7.7.1.orig.tar.gz
 e39614e0245d137b6e1e15051fba79243ff1e5ba 7875 xpuzzles_7.7.1-1.debian.tar.gz
 d195d24d36b55ba7b923e3ff66a3483d833773f9 520468 xpuzzles_7.7.1-1_i386.deb
 9f25c6f76abbf372ca7a649279cdb316887a11af 553376 xmpuzzles_7.7.1-1_i386.deb
Checksums-Sha256: 
 455daa55d07060365e6d9c2c85f5f9d8039b6ceafc5afde4f44b97d465bddfc4 1981 
xpuzzles_7.7.1-1.dsc
 172971eb6a8b3e410aeae1a0c00b1b5ad2b07c32bbf1e92688252ad241419681 3066670 
xpuzzles_7.7.1.orig.tar.gz
 15867ca666d6172e3cb7ee50f9ddd82d6f063dc36a3fc00c021307213fdcfeaa 7875 
xpuzzles_7.7.1-1.debian.tar.gz
 199ec83b8492c61af92547d22c0d089cd4a54dc7554309da7c91e7a0a4b99bb5 520468 
xpuzzles_7.7.1-1_i386.deb
 ffacd0eeeaf29dcb04ac17c91bd19d62e674306055427d62e00cd3a315c7960e 553376 
xmpuzzles_7.7.1-1_i386.deb
Files: 
 1ba9dcd11a558610978c0260e8cce13e 1981 games optional xpuzzles_7.7.1-1.dsc
 198787e506e71a2db8900158c1e8a832 3066670 games optional 
xpuzzles_7.7.1.orig.tar.gz
 03bc51499cca061788674a3ebc299711 7875 games optional 
xpuzzles_7.7.1-1.debian.tar.gz
 5d9e443680f9073131a8c89a1318949e 520468 games optional 
xpuzzles_7.7.1-1_i386.deb
 326494f22826d489f6ccb248e0ef9202 553376 games extra xmpuzzles_7.7.1-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJSByU9AAoJEHA3PPEpDbnOfwYP/1rwuJuEXlPNPqGBH/lqD22X
B17xrY44btbsNXBbZR18YQrvZQ7h6lJc7GLLpJRHOGpqqjfRiFD7Jd/9/bNBmEb7
WYYONvfKvxjgce94TQnvVkDW1PO+/H7EKjslpFVRetfAglRehzyZ5r+SJ+KgloX2
GvjZdZj8nJ5N1kpZv64+Ph0Rk1QEdU0gBOjATARGvqZzEOWIa+4Q2JKEfPoXMd3a
Rvw5ZoAuS7el5pb8Wmoxw+LePQ+H/tnqgvf03QdQPGOCiPcCTq0GryPyCyxLlprQ
GWuinpCklJPpoYXvWzUqvHAhEfsWW4sA0qhotfgYdToHJAkr/UyZL73ajwAQmLPj
P6uXfd7ZFQtCVLtDsbDpr4JE2lQXOjsy2JA3HDVVBHAlcurnyqy4x6uSeS5srL0/
cH5OxnekcdLsjTjNK1B+9YCHNmUzhMiQX2brhYo1CbEGOKwDlLXlpWphlZsYHESy
o7Q5SEIT4y9DnIDrv2IA+HrfGjIst6vBsxJVb4AKnd1ErL7Us2Wdy3F3o1hqXaFu
B/RNeymfsdXQmNHid06Ezey5s8rsiRv/WBgEZrNTIzXGO3UUUj7MQLffLxvFSp6g
vXutJVApf1a8P52D5WYq8VZMCxZGgfa6LjP5cyR2fjBQxjXJ/+JyMmPW8VqrnIzg
TSEq22gAqbGCS+af13AU
=celt
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v8okf-ez...@franck.debian.org



Accepted searchmonkey 0.8.1-9 (source i386)

2013-08-11 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 11 Aug 2013 20:06:47 -0400
Source: searchmonkey
Binary: searchmonkey
Architecture: source i386
Version: 0.8.1-9
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 searchmonkey - search files using regular expressions aiming to replace 
find/gre
Closes: 625643 663661 705849
Changes: 
 searchmonkey (0.8.1-9) unstable; urgency=low
 .
   [ Benjamin Kerensa ]
   * Add self as co-maintainer
 .
   [ Varun Hiremath ]
   * Fix a typo in the desktop file (Closes: #663661)
   * Add a patch fix-crash.diff to fix crashes, thanks to Peter
 pe...@pblackman.plus.com (Closes: #625643)
   * Update build.diff patch to fix broken link (Closes: #705849)
   * Update Standards-Version to 3.9.4
Checksums-Sha1: 
 f5731921df48648d7a0d81cc1143714cdc84ff0c 1974 searchmonkey_0.8.1-9.dsc
 bdc14a617d00e8b08c420521887200320dfbd957 11419 
searchmonkey_0.8.1-9.debian.tar.gz
 4be2d1868dac3b7f328af709db9a030faabd0be1 222126 searchmonkey_0.8.1-9_i386.deb
Checksums-Sha256: 
 fd8b1c243a429a6c3e7a659f56951091f5d0ecbb061f6ffeb5eb125f7156cb14 1974 
searchmonkey_0.8.1-9.dsc
 68ea2e6c416698e0addee935c308f8d7ae409a8f12555ad7bad0bb6e31a44729 11419 
searchmonkey_0.8.1-9.debian.tar.gz
 c8e17b8ce677732bf84af7c1b552f4ebc2396c7ac9c04fb975d52e8045b1c80e 222126 
searchmonkey_0.8.1-9_i386.deb
Files: 
 95a5685c995cde080c384a885328870d 1974 utils optional searchmonkey_0.8.1-9.dsc
 200d9200a1deb4d910fa235294a0e134 11419 utils optional 
searchmonkey_0.8.1-9.debian.tar.gz
 ed7d8d7d5e5d489c3f242d2a83af9188 222126 utils optional 
searchmonkey_0.8.1-9_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJSCDfQAAoJEHA3PPEpDbnO33wP/2UR2fmJRJSQwcgw2bD0jiOH
VcITSPOHGyUkVtOL+FmS5o6hDYX6tDxS8kKvm4NiuLow0Dwa12PgKhZ2HMMisn8c
JjvOWPLY0zIq9ysHO+TkfnKu0aI7TZkvwD57MgAKa/r8Ewmme54t+CzlCGQWt/eC
D2jt5e9QTPkrFihvPJF19ry/XXUZak6zbtaebnjyst0FAExEv1Fi6LH3kdE502c2
kIduLp5mvivHEUYVHmnFr55Gan2nfXF919ZBXIhA2EutzqDnGO7gBNmmeSJMFv/s
LePh/dtKd3+w3pT2v8GWiqxGb/C+8x2k4lV2P/9YEJG2fcUM+n1n66t0n/zvTsL1
1KX1x8C5yxlb4YeHya/H5r3yFWZwPvUZMUU6SF5JT4AMYGobaQiFyCrA1ABZrLdh
rguLPZjzM0NxiCyoVygo7Esw6ZkyukLlz6pwLqplZ6z68/91I6IJdUec2KBy4wdC
n0PlfKsWRSzVHEODNWLAD7cz80NW7IC2ly/IvXSY8EQjvAgRmqbKZSpRLp1Z5BYB
ETgIo5xIm8S/TSSwQYgLgkEEncPKChX7IbS7KM92IoBhk+keSH/GkzsK30TbYSlm
Txi6postIZHGU90DffucOtKVcp6kqHXVauOK7d80RvGp4hKy4HcxsYeqrzsy6/sQ
VN01P4LjEkYUSrUEPVOY
=6mwW
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v8h11-0006ld...@franck.debian.org



Accepted dvipng 1.14-2 (source i386)

2013-08-10 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 10 Aug 2013 19:03:50 -0400
Source: dvipng
Binary: dvipng
Architecture: source i386
Version: 1.14-2
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 dvipng - convert DVI files to PNG graphics
Changes: 
 dvipng (1.14-2) unstable; urgency=low
 .
   * Build-Depends replace libpng12-dev with libpng-dev
   * Update Standards-Version to 3.9.4
   * Update Vcs locations to the new git repository
Checksums-Sha1: 
 4b51991d50784d9a2a91e04d2a1b6b4e63e4e83f 1879 dvipng_1.14-2.dsc
 1222afcad2d1784211934f5bb6dcca7196d6dead 4613 dvipng_1.14-2.debian.tar.gz
 2a6e4593be5d7780ba132bba49aa54c9eff5c2aa 80856 dvipng_1.14-2_i386.deb
Checksums-Sha256: 
 5a898f09230598eccb9459990acbe3b141c87ee45589a5bfc8f0ac15c9f7c8ac 1879 
dvipng_1.14-2.dsc
 6ecddb7b61d1efac4c4e2604dcadadca8b64e043b1c5ef7e9b02251b1e32b172 4613 
dvipng_1.14-2.debian.tar.gz
 d8cc27237235baba1dccf2db6e33aab7b88ab71af8177ffa0825ea8309c5ae9c 80856 
dvipng_1.14-2_i386.deb
Files: 
 f7e439b0a0ea6c9a251fa9b897de428a 1879 utils optional dvipng_1.14-2.dsc
 f1a4ad70b19e158a861e5063c03e0163 4613 utils optional 
dvipng_1.14-2.debian.tar.gz
 39df11a065bca477dd7ef779520d2ab5 80856 utils optional dvipng_1.14-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJSBsziAAoJEHA3PPEpDbnO6eYP/iLIUVABNx+lHZhIWgLapcGZ
jpe/uKIZSGSJKiLW3vvCaZv8N1RP10F6fKOlygsGWc7uGvhaKzndpkjrLMPSu1OI
e5Kl3YiDthF9Ucv/snPo14LVmsaWRLBjhdI1wbJ+/8N9WQDM0F+pr9kAVtRLQ/Qa
Z0U3oKUnDvbgPPzDTqkse/pOWocHSr1LffIlWxOCUueX4qqBVcFe7UMZiHJlXKbV
xFYV0sofanSRf9/f8IL+Ryy5OD5H6ERXoWg3ymzklXphWCVf1etFr+3W2B2gCblR
uKkDnRqebU5b0XcAUrhoB3cf/arQpBWF1i5EldUTR25TTAfzEQXhZdmzkVtmjZex
cUS/sGIgFdmG0nvwgKNAKvSpna9e3odjZ7G0UPjBrXKygwA83SoXXK6SeFGUxBEk
G9CMPTlc0BgjF51EjK5NHXr6gBCWsraIbm7gu8jwjpQqACGdXl5b3x+k+dStX3I7
XPTNLFWWWfR52NY9vgiqTdsAXwMZ0ppWq6IefCUpYiZNmU9rZdA59m4xZBAmQaTk
siSV9nXvPawjC8ncNpKOagn2tPReTfTcsenB20ZedIvl28g3Fx6fNK4JWanuX1Ew
z2LCzi6u6kIawihlFMU4Co0iTwXR/ZBZR3Eftiq4gBsGicN8+EhLNcTXQkwuGHtg
G0mS3ovQxV/Maot0SU87
=kW9V
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v8it4-0003e7...@franck.debian.org



Bug#719337: O: cone -- COnsole Newsreader and Emailer

2013-08-10 Thread Varun Hiremath
Package: wnpp
Severity: normal

I no longer have time to maintian the cone package, and so I am hereby 
orphaning this package.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719337: O: cone -- COnsole Newsreader and Emailer

2013-08-10 Thread Varun Hiremath
Package: wnpp
Severity: normal

I no longer have time to maintian the cone package, and so I am hereby 
orphaning this package.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130811032729.5786.58664.reportbug@debian



Accepted pychess 0.12~beta3-1 (source all)

2013-08-05 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 19:53:19 -0400
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12~beta3-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pychess- chess graphical user interface for several chess engines
Closes: 657494 685473 703560 708827
Changes: 
 pychess (0.12~beta3-1) unstable; urgency=low
 .
   * New upstream release (Closes: #708827, #657494)
   * d/control: Add gstreamer0.10-plugins-base to Depends
 (Closes: #703560, #685473)
   * d/control: add libgaviotatb1 and gaviotatb to Depends
   * d/patches: remove executable.diff; update setup_docs.diff
Checksums-Sha1: 
 a8b0154aacb86f5ede4851b21870516a386f68f9 1870 pychess_0.12~beta3-1.dsc
 315b7bf5ab0ffce47d22ee7e10ff956009efe9fe 3573813 pychess_0.12~beta3.orig.tar.gz
 923c1eb460418c2dbfd183a78a9ff934b8c33dc1 4266 
pychess_0.12~beta3-1.debian.tar.gz
 95d1f216d1bb3ef4416c2cca9f4012d72395b3e6 2504272 pychess_0.12~beta3-1_all.deb
Checksums-Sha256: 
 f30ce6efabcb1b9ec18b707c65e31ac2477f5be4e59a49f4f263f0a60b89a79a 1870 
pychess_0.12~beta3-1.dsc
 8c7a8f0968a0d02db478598ca3128e864f083e9669d7dd5300edbd122a70685d 3573813 
pychess_0.12~beta3.orig.tar.gz
 9a57ef5beaabffb724b345ed1de534caf4cbb9ce3622c39a85b62b3d318e37b0 4266 
pychess_0.12~beta3-1.debian.tar.gz
 f23c1ef1dd64bd59b85692cfb3f16c2e578c0331921c0279bf060239a677fdf9 2504272 
pychess_0.12~beta3-1_all.deb
Files: 
 c25657f5c126de25855f6c98395abb3f 1870 games optional pychess_0.12~beta3-1.dsc
 767bcc356055ceb1f3db8081f97214d6 3573813 games optional 
pychess_0.12~beta3.orig.tar.gz
 d3de53fbd588b2ca41e2ad1d3f380a64 4266 games optional 
pychess_0.12~beta3-1.debian.tar.gz
 78274a33209beaaa9bee25cf339428c9 2504272 games optional 
pychess_0.12~beta3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJSAGazAAoJEHA3PPEpDbnOUsEP/3QR7msH4F26T+wYwfvh3x18
GUGQETmGcPxWBOC/li+Vt1B4ildOpvVPP+uBY0dX2dgBTw1dLh7iQGSL1wx8iSMR
HnC4IW+MASJ93aDhXpHD6JAGHL80jG/VP12tjopzq9S+bPHj6L+jormrTatMIxQf
FDiV/FOyU0NB/iLx+t9DpdDPVxpJqg/e1hrwgPHZw7qzjNfjeNmM5375BziF67uw
e2aZw/IlqKqiHWduRkvFICz/vPkjn9+yb7bAGmx4m87Blzu9Bhm9rqxSaZQ7gukG
FvyC3KP7uN8XxUe07hwPlA8yWUJyllwXnU46DjWr/a9M9kYMnYkE2TQnVc2h47DT
35YSQNjLp65fK7mKbtzMfQW+Xntp7nUnvSP5A4IyLUnnAr+YlKmknBiB7UeeNUdN
MhalgKCBKU9bEuGHuHisk9l6n91H374ja1dw9akB/ujlN1HoOWsrjs2v5NQ2Nfvc
Nk2WcGCG5mMfKfOuopEAizaJM/M3jiChkv/0P6Z+NiZ6zImN627v05pGnOtVEBiQ
CrPIGNw6wq83nofWxDNl1h2xQrLsoLdzOG8wwuFcilrzY4qUtx/z4jpx1vlkAjCc
SSOzf9qDf9cl11+fbXAGbjhSZundsTCC1VRCvaLKE7DAEf6jP3Rpk5CJL6HhE3CQ
kI/bFFMSs+ifzgapSvoQ
=OlFq
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v6xnh-0004h0...@franck.debian.org



Accepted gaviotatb 0.4-1 (source i386 all)

2013-07-21 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Jun 2013 15:26:15 -0400
Source: gaviotatb
Binary: libgaviotatb-dev libgaviotatb1 gaviotatb
Architecture: source i386 all
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 gaviotatb  - Gaviota chess endgame tablebases
 libgaviotatb-dev - Gaviota chess endgame tablebase probing library
 libgaviotatb1 - Gaviota chess endgame tablebase probing library
Changes: 
 gaviotatb (0.4-1) unstable; urgency=low
 .
   * Initial release
Checksums-Sha1: 
 416cf22996e3d27f7a17d5603455604660ed9b3b 1965 gaviotatb_0.4-1.dsc
 c5c2ef97f4390e4deec249a8d1f668f34990dea8 399538 gaviotatb_0.4.orig.tar.gz
 415098f921c202bacc367b3e697e789aeaabd24e 4532 gaviotatb_0.4-1.debian.tar.gz
 d680133deafbc8f98424b94748cb4ba5538ac524 67034 libgaviotatb-dev_0.4-1_i386.deb
 c31587e04241c015035666ebf91d9883b2abb2a3 55720 libgaviotatb1_0.4-1_i386.deb
 44dc4ab97504a196162f27eb1cdd7c753b3a37b0 300276 gaviotatb_0.4-1_all.deb
Checksums-Sha256: 
 43db41c72deacf6d4de7584d75bbdc9a92c31b3af3298024cf5b227bee84cf9b 1965 
gaviotatb_0.4-1.dsc
 a673880e632f90e4a34667dc37e249742ec0de737e6581c6f0aa4462a0dbd24b 399538 
gaviotatb_0.4.orig.tar.gz
 b01809220305b6f7ad57213ef95c082720bb1c6f0251369ae25b22b61e8259b3 4532 
gaviotatb_0.4-1.debian.tar.gz
 51c64fb2ec4c1a756d861a40a87578650d89adf3a8fcc71ecc540570b47e761a 67034 
libgaviotatb-dev_0.4-1_i386.deb
 10f9ef337d4e9bb48773d3d4a352d053fb5e44701de7a8ccf0655f557ba8f752 55720 
libgaviotatb1_0.4-1_i386.deb
 a4382ac1153eb7ebf1ddc6f4835a0aa52473cd3262d814e52e50fb810fd2a7f7 300276 
gaviotatb_0.4-1_all.deb
Files: 
 9082ac0daee8de22a3c7716fe9cf81f7 1965 libs extra gaviotatb_0.4-1.dsc
 4ba5c40f403c4db86dd7b747670a7056 399538 libs extra gaviotatb_0.4.orig.tar.gz
 5431c9f98fe488f5358cb8a4fa8f8686 4532 libs extra gaviotatb_0.4-1.debian.tar.gz
 c762624045004dc4fc3f6a71cff397e8 67034 libdevel extra 
libgaviotatb-dev_0.4-1_i386.deb
 9bdce62ddfbb023e250fa96c49a45165 55720 libs extra libgaviotatb1_0.4-1_i386.deb
 9cb38a74fc4a6013055287873e42c8da 300276 database extra gaviotatb_0.4-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJRs3qGAAoJEHA3PPEpDbnOoDoP/jKa0Plhmge5VFJudnNNHssY
uohIlt4OleG5yS+C5dlOVWv+S4rdYwIv5+lv7iKpaPHwbzCWdZ0qBvdLPMm1Xnvt
z9WO3QNF9dRJH2T5lsy/EIPHYcvueP5scZy38WGN2Zx/xrG4qWt70OJE1V+a/0Ue
ZBkbQFMpAWCGilYPbiOMZCP/lZ/qtKCm49UttIwL8fHZngciL9u90bFRD8Fdsieq
nwXjw5kTd/loFJVOUWUx/Taxb/3CfLdSJTf9TQdz0ZtjQMd/rJfDwFkwOrrsdOBo
LKGteROsD1fs0OmTQOADts0AIBb255YFktaJO3gSwhkQ2BfbkAlXAMD7dcQJsH/b
bj+bjGpbH5nWBIEGv3DpaCT8imah1tSsRbxf0u6PDNftaHl01kPdyS2ozfdIWxIl
B+DmqZ2drGaF6m/7rMk2yX2IlkBPk1zVPO4tSJFBCT2FaoWRfkV617VznLGTB5jA
hCGoemxyJcGmWEpb0YCL/GEcRIhx0tr3hYlom/jBqJlQngJN+DoNylDjAEqnT72F
0T/8gmGZezaJwNba6v20RewAd3gCWkaFM8hVFGlxDyzKp3xVqj8ZF1WOlfJ89p1d
XLSO76aEVHBfZEOSUNfw+SQ3EyDUROPm71SEncfmdXdk+rW5YzXS99xsXTHKguZz
EPGBOJ6d5J/iv0WjwDcm
=x+wd
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1v0wzq-0002ux...@franck.debian.org



Re: Advice regarding chess engine database files license

2013-06-05 Thread Varun Hiremath
Hi!

MJ Ray mjr at phonecoop.coop writes:

 
 Paul Wise pabs at debian.org
  On Wed, Jun 5, 2013 at 6:13 PM, MJ Ray wrote:
   The Gaviota Engine licence shouldn't apply to the database files. See
   http://www.gnu.org/licenses/gpl-faq.html#GPLOutput for a similar topic.
  
  Sounds like they should go to contrib though, due to the non-free build-dep?
 
 If the database files need to be built by the Gaviota Engine, I think.
 I don't know it well enough to say.
 
 Hope that helps,

Some small database (compressed) files are included in the upstream sources
and other larger ones can be downloaded from this site:
http://www.olympuschess.com/egtb/gaviota/

So, if we can consider these database files as output files, then I think
these are good to go to main. However, if these should be treated as
binary files which must be generated from the Gaviota Engine, then these
should go to contrib. Can I assume the former and upload these to main?

Thanks,
Varun





-- 
To UNSUBSCRIBE, email to debian-legal-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/loom.20130606t044824-...@post.gmane.org



Advice regarding chess engine database files license

2013-06-03 Thread Varun Hiremath
Hello All,

I am considering packaging Gaviota chess tablebase files and probing
code for Debian released under this MIT license:
https://sites.google.com/site/gaviotachessengine/license

The chess tablebase files are generated by the Gaviota Engine whose
license is clearly not DFSG compatible. However, the author is
releasing the generated database files under the MIT license. Is the
MIT license for these database files DFSG compatible?  There is an
accompanying probing code (used for reading the database files) which
is also available under the MIT license.

https://sites.google.com/site/gaviotachessengine/Home/endgame-tablebases-1


The Gaviota Tablebases can be probed from your own program (engine or
interface). The code needed to do this has been released under the
liberal MIT license, so basically anybody can use it with almost no
restrictions. The tablebase files themselves, compressed (*.gtb.cp?)
and uncompressed (*.gtb) are also distributed under the MIT license.

https://sites.google.com/site/gaviotachessengine/Home/endgame-tablebases-1

I maintain a package pychess which wants to use these database files.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-legal-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CA+b0NX3qa0uy+Hz0Ci9h9XceO3CivA=5mitnh6ub59z-33h...@mail.gmail.com



Accepted afuse 0.4.1-1 (source i386)

2013-05-31 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 30 May 2013 23:36:35 -0400
Source: afuse
Binary: afuse
Architecture: source i386
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 afuse  - automounting file system implemented in user-space using FUSE
Changes: 
 afuse (0.4.1-1) unstable; urgency=low
 .
   * New upstream release
   * d/control: update Homepage
   * d/copyright updated
   * Switch to source format 3.0
   * d/patches - removed; merged upstream
Checksums-Sha1: 
 18b0956f414daa356889aad742d0c30fef409895 1810 afuse_0.4.1-1.dsc
 156b196a27c181eee8b192e7922fbe3c32c858e3 121957 afuse_0.4.1.orig.tar.gz
 14f41e5454a0aaf6adff2e3c7ce45d79bf3f4529 3384 afuse_0.4.1-1.debian.tar.gz
 addedcc7992df5c992c109959c260e26f9e68edc 22180 afuse_0.4.1-1_i386.deb
Checksums-Sha256: 
 decd77726af4a5fe3a6f634f910db083c2dd4fe7a402fda56dbf18be8175952c 1810 
afuse_0.4.1-1.dsc
 c6e0555a65d42d3782e0734198bbebd22486386e29cb00047bc43c3eb726dca8 121957 
afuse_0.4.1.orig.tar.gz
 70f88651cf96c60bf05540528393183484534013eee1aabb5d33993f6ed7a90c 3384 
afuse_0.4.1-1.debian.tar.gz
 aaab39dd1922e958581a7c6b161e6410a7c7858e020022c605294891d7f0c6d4 22180 
afuse_0.4.1-1_i386.deb
Files: 
 79508801639ba0936128ccd8a823d837 1810 utils optional afuse_0.4.1-1.dsc
 317efdda85d5585d085c61a0d262b83b 121957 utils optional afuse_0.4.1.orig.tar.gz
 89ad8092b02a87d26ae90d3c42ff582a 3384 utils optional 
afuse_0.4.1-1.debian.tar.gz
 9825c7812a073c987d27478886dd14d7 22180 utils optional afuse_0.4.1-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJRqDs/AAoJEHA3PPEpDbnOi7wQAJc9ndksU8mYZMJKrVI/fJ6F
McKGLUzv+Nyar30MSu4JuTCYu7juknNdDcO8/tcBxXaRq8Nz3wL+J0kk1OKuXnWm
EM+fLW5xumVrjLwFf6Fy0xyxcfyqluTQ8x91Xtv4HW+PkX28yoSaC2lEJN/Ux5CU
uHSABVYNsxHjOVlQ8VWkZpmC86sbCImWAalXHJF20vszLC7x+8Q5W+Mtq3lyW2C1
kDKiey2uEW261glQFj3jNvIb/yCq7SZr7nECOU+elPWpYS5UJMME3lXrLomhE3fU
Y5czLFe8HrxK+Ne4JExfzaO74Ge4lTyLY+OatRTN7lQwc2UuqQJnl+NDnyBcszTg
2GtEI3mH8fHzoCrqwziBqXi7wPq2BvgAZ8Q7ZMYvF83r4av5j0b3cxd5k+sql3CM
cLmr4pHDfyf7Ui3E6nd351Y3aRZryvdT+5r/FI/JiK3XdIz4QCIuf8fdsGZNyqQn
z9/ee4Hw5UIWfvAeGnNZDc1t8d8OZ4hpF/GC0zcFLIVjgPBEpg+E9jTfEm531p+c
rky4D1PVp3jm3zxBy4VxmcXO6iEMkGZ5GT4i1qzqJGCsLux7jDZrwOzPzM3QvjSK
AkGub3vD7TfYEC23Qzyje34mgVPnOAhwU9vd5AFEZj/SLXcXWhjPo+8SqmaFPg3A
DDgJb6UFAnXrmlyeXCmH
=MH27
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1uiies-0004mb...@franck.debian.org



Bug#685446: unblock: model-builder/0.4.1-6

2012-08-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock model-builder/0.4.1-6. Updating model-builder fixes an
RC bug: #684681

unblock model-builder/0.4.1-6

Changes:
 model-builder (0.4.1-6) unstable; urgency=high
   * Update patches/use_wx2.8.diff:
 - disable import of matplotlib.numerix, which is not used and no
   longer available (Closes: #684681)
 - fix the MB.ico icon load path

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#685449: unblock: pytimechart/1.0.0~rc1-3

2012-08-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock pytimechart/1.0.0~rc1-3. Updating pytimechart fixes an
RC bug: #684779

unblock pytimechart/1.0.0~rc1-3

Changes:
 pytimechart (1.0.0~rc1-3) unstable; urgency=high
 .
   [ Andrew Starr-Bochicchio ]
   * debian/control: Depend on python-gtk2 (Closes: #684779).
   * Add extend-diff-ignore=^[^/]+\.egg-info/ to debian/source/options.
 This allows the package to build twice in a row (Closes: #671148).
 .
   [ Varun Hiremath ]
   * Set urgency high, fixes RC bug.

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#685446: unblock: model-builder/0.4.1-6

2012-08-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock model-builder/0.4.1-6. Updating model-builder fixes an
RC bug: #684681

unblock model-builder/0.4.1-6

Changes:
 model-builder (0.4.1-6) unstable; urgency=high
   * Update patches/use_wx2.8.diff:
 - disable import of matplotlib.numerix, which is not used and no
   longer available (Closes: #684681)
 - fix the MB.ico icon load path

Thanks,
Varun


-- 
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/ca+b0nx2z91zamg2mscqqz9nwvclot3hytu_teimvtsgwi_j...@mail.gmail.com



Bug#685449: unblock: pytimechart/1.0.0~rc1-3

2012-08-20 Thread Varun Hiremath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock pytimechart/1.0.0~rc1-3. Updating pytimechart fixes an
RC bug: #684779

unblock pytimechart/1.0.0~rc1-3

Changes:
 pytimechart (1.0.0~rc1-3) unstable; urgency=high
 .
   [ Andrew Starr-Bochicchio ]
   * debian/control: Depend on python-gtk2 (Closes: #684779).
   * Add extend-diff-ignore=^[^/]+\.egg-info/ to debian/source/options.
 This allows the package to build twice in a row (Closes: #671148).
 .
   [ Varun Hiremath ]
   * Set urgency high, fixes RC bug.

Thanks,
Varun


-- 
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/CA+b0NX2X1b8yCYGGSEugQGc4N74mtnu71BSn0o-cT=6up-c...@mail.gmail.com



Accepted pytimechart 1.0.0~rc1-3 (source all)

2012-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 16 Aug 2012 19:13:32 -0400
Source: pytimechart
Binary: pytimechart
Architecture: source all
Version: 1.0.0~rc1-3
Distribution: unstable
Urgency: high
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pytimechart - GUI Viewer for Linux kernel traces
Closes: 671148 684779
Changes: 
 pytimechart (1.0.0~rc1-3) unstable; urgency=high
 .
   [ Andrew Starr-Bochicchio ]
   * debian/control: Depend on python-gtk2 (Closes: #684779).
   * Add extend-diff-ignore=^[^/]+\.egg-info/ to debian/source/options.
 This allows the package to build twice in a row (Closes: #671148).
 .
   [ Varun Hiremath ]
   * Set urgency high, fixes RC bug.
Checksums-Sha1: 
 40b8b0fbf611ffcfa807c14996c35003a2c69863 2056 pytimechart_1.0.0~rc1-3.dsc
 6a68a7a72fb515f9b46a2fac485bc2e2f9fcaed9 5334 
pytimechart_1.0.0~rc1-3.debian.tar.gz
 551078902e56f0bb51b367c87c0f3d32a5b2f3f2 47768 pytimechart_1.0.0~rc1-3_all.deb
Checksums-Sha256: 
 238ce50199fbdeb673b7681eddf987123ba96b6af08e36fa132bfd7f4069ba3a 2056 
pytimechart_1.0.0~rc1-3.dsc
 77c57f88af665488c75637586a928e394d2766feadd0b1b549c57da392aa909a 5334 
pytimechart_1.0.0~rc1-3.debian.tar.gz
 92d13be6f414deadd86c1994126831b640cba8ca4fafe857b0437e78cbce80bd 47768 
pytimechart_1.0.0~rc1-3_all.deb
Files: 
 c808b628492c55ce787b2de72d0e0d85 2056 python optional 
pytimechart_1.0.0~rc1-3.dsc
 4c1fdf8d02cb68edd4298a05c1f287d0 5334 python optional 
pytimechart_1.0.0~rc1-3.debian.tar.gz
 31aefc77f1fd49f8aad7eb68bb2ebd5f 47768 python optional 
pytimechart_1.0.0~rc1-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJQLYAgAAoJEHA3PPEpDbnOtn8P/2KIMJV3pP/1R7f6b8cZZ80Z
RzUftqqvJFCkjfor56EY9ye1AL3HThH/SGfxiJf5fmyArk0Z2uMgP4qaYfyVW0G6
/M4/ULjlndTpfjIjRm4PozhafcAEIMxTMoxyysjJpIzJnKSM0dPxbeqQDrsMZUXA
yXNUPm2rkRC3I28ala7jokcQMo41Jz5AyK4l22pJ+DvHUEbAc3d5s/xTw4gOk4qw
0jpst/Y/ukw5LVtqjMGgL2atcTc064ycrEZiiX+OP4WnnGjIVt6+mPLeGO48+SAb
CdZjY/sTK9cjyDgyuZIzvnFIe8ctkevzLA6rk5KKyO1/h6mkhY/eEu2VNHyM2plr
8j5xVOHpIS7fe/JYVWMGBFvE62AwYJnuNevwhn4l4PKTEA1LJVOWFyeATfbNTpmS
QpeeDpjlnVeyB56cDp6oBzupEEvSG/o5EJzSHwGy0o7JoXcEh3GxaVb0qiy1Couc
rDfpVEBdjjNx6Gs6PZMDMPBaRP7wVQgBVenblWKC1c7M/nvlsS14pKiEBQ8D6cPI
45prB0A8TYJO7QpuugvNxEcv7oNG9cW+lkGKL4yeCmDQ/T4xbXGgyzh0bscqM/11
cCejhVYH4PRy3AHJoV1j9IX1zazsPZTXTuexWfhqPqpHHzgmztZgBbgooH+Ltl8Q
PhE23CF6zrrUHpMwnRKk
=HUhs
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1t29yr-0005r9...@franck.debian.org



Accepted model-builder 0.4.1-6 (source all)

2012-08-16 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 16 Aug 2012 20:03:58 -0400
Source: model-builder
Binary: model-builder
Architecture: source all
Version: 0.4.1-6
Distribution: unstable
Urgency: high
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 model-builder - graphical ODE simulator
Closes: 684681
Changes: 
 model-builder (0.4.1-6) unstable; urgency=high
 .
   * Update patches/use_wx2.8.diff:
 - disable import of matplotlib.numerix, which is not used and no
   longer available (Closes: #684681)
 - fix the MB.ico icon load path
Checksums-Sha1: 
 17755b64f70d6e285e019d277a4e3b7520f09f31 1978 model-builder_0.4.1-6.dsc
 291b2ddbe7aee96623783359eafa4883bc077998 8231 
model-builder_0.4.1-6.debian.tar.gz
 f1f568322ec6116295e25508add48819ce850cdf 157280 model-builder_0.4.1-6_all.deb
Checksums-Sha256: 
 9cc3a05bd1845aab9e005f215ca3afaf7667309514d447d7ed680d24c1ed0719 1978 
model-builder_0.4.1-6.dsc
 d685951708df653e15305df2d5396eadccd651e25bfe88fd18bf58530494ebaa 8231 
model-builder_0.4.1-6.debian.tar.gz
 23811f60adca264038057711c38b6f12dcb0746abfb64e5f7d48b9622a41c5bc 157280 
model-builder_0.4.1-6_all.deb
Files: 
 52db85e8ae8ee09599b298c5bb322160 1978 math optional model-builder_0.4.1-6.dsc
 2c25c0e21f8f4e476a560b1ca90a5e9f 8231 math optional 
model-builder_0.4.1-6.debian.tar.gz
 c476ab9262e290d897bb43a40976d036 157280 math optional 
model-builder_0.4.1-6_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJQLY0wAAoJEHA3PPEpDbnOkwkP/1Jq28wWyTcJgKBuYfR0MsPQ
E2KedV9edcVV7LhwSgq3YEO72DgN6V8/MKFL4nlOzZ193Ji+OQoVhMSaovYUoTL0
rjs8GmzTOOCJ7estc7Z+uLAnRTpFBPtAbf2oqrwiPVlnUMhr2Wd9cuJ9SBeBDi7v
jYq0kU3INIQHzf7VrPQJMMid0WKwZRUmRFmXbY6Zn5f5UH7okxrnP5dStmM+12u/
L88uGRPg71EZSUpg+2bNj637J1EGt7Aj17ZiRQoWYMIe+yr8WgY5MnQfqdHfFRXu
ULeYZbJp4ycirI78dA4SmAwsP7w4C1BNFtDQNobWBE0hjggf1ViqEERkuWY/JgzH
B/7Z0IqvcUIOQIlkCPoJUMkMZ0m8Lg/MbOeq6JZ8cXbJ94ZWcMvWttlGO+yRDlLh
OUqPHk5olzYjT+joTOkxudm6iYL4hTfQ9mrKs5nOY9jUEk7FkdYZQk2Rh836AZ7/
+Gf+OPZl2EJzTEQCVMh27t7gFHP7d2ohrb6y+sXfixxTD3JmejXv8rtoqJxqGFh/
lcIOwR+lgfoUI6qEUdz/VQQfmiXFCtrCdHd8bJXUqblYsg1BXnEGa8cbnw5/ALpf
E9YkYbkKVxEHDnSaaW+n9bGIJ8V8aHOCtagfDzdG5HWM13EWh4SH8mTI5Uq6H6nl
Nga0s++slYC2jD+SHIg2
=82AD
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1t2aus-0002vr...@franck.debian.org



Bug#671148: [Python-apps-team] Bug#671148: Patch for 671148 and 684779

2012-08-16 Thread Varun Hiremath
Hi Andrew,

On Thu, Aug 16, 2012 at 5:53 PM, Andrew Starr-Bochicchio
a.star...@gmail.com wrote:
 tags 671148 patch
 tags 684779 patch
 thanks

 Hi,

 The attached debdiff resolves both #671148 and #684779. As #684779 is
 a RC bug, if I don't hear a reply in a few days I will seek a sponsor
 for a NMU.

I have uploaded a new package with your changes; thanks for the patch.

-Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#684779: [Python-apps-team] Bug#671148: Patch for 671148 and 684779

2012-08-16 Thread Varun Hiremath
Hi Andrew,

On Thu, Aug 16, 2012 at 5:53 PM, Andrew Starr-Bochicchio
a.star...@gmail.com wrote:
 tags 671148 patch
 tags 684779 patch
 thanks

 Hi,

 The attached debdiff resolves both #671148 and #684779. As #684779 is
 a RC bug, if I don't hear a reply in a few days I will seek a sponsor
 for a NMU.

I have uploaded a new package with your changes; thanks for the patch.

-Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651058: New version uploaded to unstable

2012-08-12 Thread Varun Hiremath
Hello,

I uploaded a new version of pidgin-libnotify (0.14-9) to unstable.
Could you please check if this bug is still reproducible with the new
version?

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#651058: New version uploaded to unstable

2012-08-12 Thread Varun Hiremath
Hello,

I uploaded a new version of pidgin-libnotify (0.14-9) to unstable.
Could you please check if this bug is still reproducible with the new
version?

Thanks,
Varun


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



unblock: pidgin-libnotify/0.14-9

2012-08-12 Thread Varun Hiremath
Hi,

Please unblock pidgin-libnotify/0.14-9, it fixes RC bug: #651058.

unblock pidgin-libnotify/0.14-9

Thanks,
Varun

p.s. please CC me, I'm not subscribed to debian-release.


-- 
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/ca+b0nx01cwkyf5qk-0xbhjgmg7jupwaq_9hke54e4jqheuv...@mail.gmail.com



Accepted pidgin-libnotify 0.14-9 (source amd64)

2012-08-08 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 08 Aug 2012 16:01:15 -0400
Source: pidgin-libnotify
Binary: pidgin-libnotify
Architecture: source amd64
Version: 0.14-9
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pidgin-libnotify - display notification bubbles in pidgin
Changes: 
 pidgin-libnotify (0.14-9) unstable; urgency=low
 .
   * Merge changes from Ubuntu
 - d/control: add Build-Depends: libindicate-dev, libindicate-gtk-dev
 - add patches: best_name.patch, libnotify_0_7.patch, force-load.patch,
   indicate.patch, update others
 - remove patches: fix-libnotify0.7-compatibility.diff, fix-notify-osd.diff,
   transient-hint-on-event-notifications.diff, fix-printf-warnings.diff,
   chat-nick-test-optional.diff
   * Update debian/rules based on Ubuntu changes
Checksums-Sha1: 
 64fc7262c688c8ddb3f22e50e8c9f2213ed0b085 2083 pidgin-libnotify_0.14-9.dsc
 7e234e0b95bd69998ea7803c69dc44b7f56b7709 18176 
pidgin-libnotify_0.14-9.debian.tar.gz
 8036bd9855d554e038401bbd56c457f73870784a 24672 
pidgin-libnotify_0.14-9_amd64.deb
Checksums-Sha256: 
 14491a8d1d24b9d2c92532a8cc5ff496dc9c7575619fed34898687d3dc0aaf26 2083 
pidgin-libnotify_0.14-9.dsc
 6bae485190f713f8cc6c26ffe88638262598493f64c269a7c8ba41b877d20b0b 18176 
pidgin-libnotify_0.14-9.debian.tar.gz
 0ee523c10417c49fa2ccc4bb20a0eed798f3921a3c202fa71277102ee10a99b2 24672 
pidgin-libnotify_0.14-9_amd64.deb
Files: 
 bd90a20f10903bfdb730e3303cd36a8c 2083 net optional pidgin-libnotify_0.14-9.dsc
 ee13988c01f756c1d5d5df117ba11cb0 18176 net optional 
pidgin-libnotify_0.14-9.debian.tar.gz
 b34f028d60188e35e3be4907b7366226 24672 net optional 
pidgin-libnotify_0.14-9_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJQIsfIAAoJEHA3PPEpDbnOZlUQAIOnLR38IIPqqN3Gf94uxhKF
MGhlx2h16xE+KwFmhAID525JzhJCiQtx0uEfdcBPso8szui2t/DtckbPKbqlRDQ0
2DRsVWkk/z2HiHRRyY4HzsvRGv8y68m8/RWTA0xAD0P/kpH9pGfQUpwTQFBwjv3F
fpbWift0R+P23Hzz4oquqLMbsqmuQ3C/HaeylWMVrlcJ7SuLY7zsAjeqXtaIs05Y
M8d5NtmulNuzgArTt2T02P6zKP72uzFMhZl76eAyvFZsNuWfDKvzKZPWNbzF1RUU
2aASHIHSY+b2CDi3tGvuKGa6g2ghtfVSFiSrUfEZuH6LOpeBP/dSpVpluVF/DG30
S41T0Sw8IwZr5XSeCTL8RZxQdUrmAr1uC4ujP+mKr9PF20mrwN77lWW/x69bpNFC
XZ7AI/DhvjQFcuXSWzsPfj6r4LgfW+jfGel6jdxU/uw++VMMWaa4ur+vT5HzsQAd
l5xqhCNT1vNdYLCMAlyRBAYzatOpYVxZTuITW4PUbmSTW/DQgqzM0txkIKkgx5gk
vg4CRzpq2t9I9WcR0qhG1vhWT7wXnKNysaxfP9rueN1OzymARC7mzZJBCzgsr6/R
pJ3ot/ziWYfIpWUCo/4EsrcYcdOqW5VWzThMS6Ej+LgZprQJ5q8+g16ED5qtHJoV
zV+I0UipZ4B1Yu52m9z5
=pvP/
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1szdap-0008ap...@franck.debian.org



Accepted python-scipy 0.10.1+dfsg1-4 (source amd64)

2012-07-21 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 21 Jul 2012 17:23:02 -0400
Source: python-scipy
Binary: python-scipy python3-scipy python-scipy-dbg python3-scipy-dbg
Architecture: source amd64
Version: 0.10.1+dfsg1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 python-scipy - scientific tools for Python
 python-scipy-dbg - scientific tools for Python - debugging symbols
 python3-scipy - scientific tools for Python 3
 python3-scipy-dbg - scientific tools for Python 3 - debugging symbols
Closes: 681270 682030
Changes: 
 python-scipy (0.10.1+dfsg1-4) unstable; urgency=low
 .
   [ Julian Taylor ]
   * use dh_numpy3
 - build depend on python3-numpy = 1:1.6.2~rc1-1~
   * debian/rules: remove reference to pyshared
 .
   [ Varun Hiremath ]
   * debian/patches:
 - add dtype.diff (Closes: #682030)
 - add up_minpack_ints.diff, thanks to Yaroslav Halchenko (Closes: #681270)
Checksums-Sha1: 
 abe10eddf1383545d311fcc3ffa85de2b80324e1 2641 python-scipy_0.10.1+dfsg1-4.dsc
 08cca9b58ccecc6d753e725686094fca256f4100 13652 
python-scipy_0.10.1+dfsg1-4.debian.tar.gz
 e67b2794f792d792d3892a1721e2b18a15616b18 12202152 
python-scipy_0.10.1+dfsg1-4_amd64.deb
 a92dd1580174552e9c4b3797a67bd1eb8f08c71a 7118334 
python3-scipy_0.10.1+dfsg1-4_amd64.deb
 3da4b6485f85277a58ba7761d9bc8ce3bc26f391 29377734 
python-scipy-dbg_0.10.1+dfsg1-4_amd64.deb
 7de7d861be7519bd6cdbcd1379931f0fcea0febb 14671086 
python3-scipy-dbg_0.10.1+dfsg1-4_amd64.deb
Checksums-Sha256: 
 6e9fe6ca37862314feac4e4a18bfc0f9c613fffdc3ae9202c225093af4c2296f 2641 
python-scipy_0.10.1+dfsg1-4.dsc
 4517fae8f58efae0f74082ce4c0408f98ca2b96a6805ec319631a7fe6e45cff5 13652 
python-scipy_0.10.1+dfsg1-4.debian.tar.gz
 611a995c7b4c7e18ce5ca4680fb203fda0933610d833c457c4d9f9b3d01e4e17 12202152 
python-scipy_0.10.1+dfsg1-4_amd64.deb
 d829d5753d9d4351f3ea60d1c4a402e14691b91a360dd518a8b8376266eb7937 7118334 
python3-scipy_0.10.1+dfsg1-4_amd64.deb
 3b0034e58176c0476f7590e036c0ec46fc980c3d267ab7d906938983e4f1692a 29377734 
python-scipy-dbg_0.10.1+dfsg1-4_amd64.deb
 b86e339d69be2e6a2114920eeefbe5dedbbc89691cd85cdbfe6b7248e81a309b 14671086 
python3-scipy-dbg_0.10.1+dfsg1-4_amd64.deb
Files: 
 096ecbe1675717fd2161c680f8d76f2a 2641 python extra 
python-scipy_0.10.1+dfsg1-4.dsc
 9abf78534517f31910690af15cc0b6a4 13652 python extra 
python-scipy_0.10.1+dfsg1-4.debian.tar.gz
 edb5ae0b6a922f763c6e0df2568ef2e8 12202152 python extra 
python-scipy_0.10.1+dfsg1-4_amd64.deb
 dee0b8f36783e058e0164eb688b878bb 7118334 python extra 
python3-scipy_0.10.1+dfsg1-4_amd64.deb
 841ae4da141e460b38e6be0ce4171459 29377734 debug extra 
python-scipy-dbg_0.10.1+dfsg1-4_amd64.deb
 5afa949614500c3e1f95f5f0faa28b3e 14671086 debug extra 
python3-scipy-dbg_0.10.1+dfsg1-4_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJQC3uXAAoJEHA3PPEpDbnOJxcQAJhdCIkc4yj8jRmxZAVPChSz
LD+cYAwiMxVaZ/92RIFvrfnfmdiQAFQ9GWUmfmOkrpC5a4jqf1YDGUgWkhcmJNQl
VMQAh8yzSWNiSGkxQJlVG6+WGDbNLlyTMMKFIt1/csa5ZYPHA4qsufuwiiVaaybZ
dCCZr1QnuiDF/myrnhQ77yklsLatqL7toAQqBdntd26ApYtmYtGDhNLIJpCKPrGh
/2XYito6yYeJlMTqm5c8T4xUUPBr0u0I+hX7HkHfP7JjT9qCkpTkyourdI3QvGuh
r84qK2YHm/XR5dhVz8C2Qbdnb24n1fjgyCwNIDJLEWUnXciV9Y2Mk7mBvNUZy1uy
9z+z6J4+MMQgbFG/R384wn/yfLLUtRU8nVKqQtt9ShIw6XJmOYnxuEh5UiJJhKHR
28qqKeggAGZmM86AF9sFqff2/bjrCCQj6WJtebCHI8BEVWExAPeJ56TSMkhP1aCc
07VocL3FF6IiOhlFafA3VZQ0N3PoWLZQNiER197Wt2mXy/YP1f0Bc4dG/mmpUrDr
U8LTlnyc+n13GLNmzCgnMYZcJffzBHTpS84VFLsEFewxPSRstNUzrrCrHiImDqP5
zeS6iYtaZ0z3N7eWo82P3kSBtLabZ3j35biFldrFLx0jjHbMJ41qGRTQ/2/+YiR5
sFk2Kkc/mgLNgoPCpC00
=Sdp4
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ssnbe-0005n2...@franck.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-02 Thread Varun Hiremath
Hi Francesco,

On Mon, Jul 2, 2012 at 1:24 PM, Francesco Poli
invernom...@paranoici.org wrote:
 Wait a second, I noticed an important thing!

 It seems that there's a huge difference in how I add modules
 in step 1 (see my original bug report).

 First possibility: in the tree-like view of the objects, I click on +
 Add module or filter (under VTK XML file (fire_ug.vtu)), then in the
 Mayavi object editor (Visualization modules tab) I double-click on
 Streamline.
 Booom! Segmentation fault!

Got it! I can also reproduce the segfault now :-(. I was using the 4th
option: adding modules from the Visualize menu, which works fine. This
looks like a bug in mayavi2, because other options work fine.
I will forward this upstream, thanks.

-Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-02 Thread Varun Hiremath
Hi Francesco,

On Mon, Jul 2, 2012 at 1:24 PM, Francesco Poli
invernom...@paranoici.org wrote:
 Wait a second, I noticed an important thing!

 It seems that there's a huge difference in how I add modules
 in step 1 (see my original bug report).

 First possibility: in the tree-like view of the objects, I click on +
 Add module or filter (under VTK XML file (fire_ug.vtu)), then in the
 Mayavi object editor (Visualization modules tab) I double-click on
 Streamline.
 Booom! Segmentation fault!

Got it! I can also reproduce the segfault now :-(. I was using the 4th
option: adding modules from the Visualize menu, which works fine. This
looks like a bug in mayavi2, because other options work fine.
I will forward this upstream, thanks.

-Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-01 Thread Varun Hiremath
Hi Francesco,

On Wed, Jun 13, 2012 at 4:23 PM, Francesco Poli (wintermute)
invernom...@paranoici.org wrote:
 I reproduced this bug with any data set I tried to visualize, hence
 the package is currently unusable.

 Steps to reproduce:

I had been traveling so didn't get time to investigate this until now.
However, I am unable to reproduce this segfault on my system (with
same versions of packages that you have). I can load both Streamline
and IsoSurface modules and visualize the data. Could you please try
again to reproduce this bug?

Thanks,
Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-01 Thread Varun Hiremath
Hi Francesco,

On Sun, Jul 1, 2012 at 4:56 PM, Francesco Poli
invernom...@paranoici.org wrote:
 I've just reproduced it again, unfortunately.

 Maybe the issue is triggered by something unrelated to the packages
 mayavi2 depends on...
 For instance, it could be video-hardware-specific: the boxes I tested
 mayavi2 on have Intel integrated graphics
 (xserver-xorg-video-intel/2:2.19.0-4).
 Do you have the same type of video card?

I earlier tested on a system with NVidia card (running with Vesa), and
just now tried on a laptop with intel graphics (running
xserver-xorg-video-intel/2:2.19.0-4). I don't get any segfault and the
modules load fine. Do I need to something extra after loading the
modules? I see the streamlines and the iso-surface; I can send you
screenshots if you want.

Thanks,
Varun

Installed packages:

ii  ipython  0.9.1-3
ii  libc62.13-21
ii  libjs-jquery 1.7-1
ii  python   2.7.2-9
ii  python-apptools  4.0.0-1
ii  python-configobj 4.5.2-2
ii  python-envisage  4.0.0-1
ii  python-numpy 1:1.6.2-1
ii  python-pkg-resources 0.6.16-1
ii  python-traits4.1.0-1
ii  python-traitsui  4.1.0-1
ii  python-vtk   5.8.0-13
ii  python-wxgtk2.8  2.8.12.1-11
ii  python2.72.7.3-1



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-01 Thread Varun Hiremath
Hi Francesco,

On Wed, Jun 13, 2012 at 4:23 PM, Francesco Poli (wintermute)
invernom...@paranoici.org wrote:
 I reproduced this bug with any data set I tried to visualize, hence
 the package is currently unusable.

 Steps to reproduce:

I had been traveling so didn't get time to investigate this until now.
However, I am unable to reproduce this segfault on my system (with
same versions of packages that you have). I can load both Streamline
and IsoSurface modules and visualize the data. Could you please try
again to reproduce this bug?

Thanks,
Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2: segfaults as soon as a module is loaded

2012-07-01 Thread Varun Hiremath
Hi Francesco,

On Sun, Jul 1, 2012 at 4:56 PM, Francesco Poli
invernom...@paranoici.org wrote:
 I've just reproduced it again, unfortunately.

 Maybe the issue is triggered by something unrelated to the packages
 mayavi2 depends on...
 For instance, it could be video-hardware-specific: the boxes I tested
 mayavi2 on have Intel integrated graphics
 (xserver-xorg-video-intel/2:2.19.0-4).
 Do you have the same type of video card?

I earlier tested on a system with NVidia card (running with Vesa), and
just now tried on a laptop with intel graphics (running
xserver-xorg-video-intel/2:2.19.0-4). I don't get any segfault and the
modules load fine. Do I need to something extra after loading the
modules? I see the streamlines and the iso-surface; I can send you
screenshots if you want.

Thanks,
Varun

Installed packages:

ii  ipython  0.9.1-3
ii  libc62.13-21
ii  libjs-jquery 1.7-1
ii  python   2.7.2-9
ii  python-apptools  4.0.0-1
ii  python-configobj 4.5.2-2
ii  python-envisage  4.0.0-1
ii  python-numpy 1:1.6.2-1
ii  python-pkg-resources 0.6.16-1
ii  python-traits4.1.0-1
ii  python-traitsui  4.1.0-1
ii  python-vtk   5.8.0-13
ii  python-wxgtk2.8  2.8.12.1-11
ii  python2.72.7.3-1



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2 segfault on debian

2012-06-21 Thread Varun Hiremath
Hi,

Could you please take a look at this bug report:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677421

Do you think this a bug in wx or vtk, or has this anything to do with
mayavi2? Let me know so I can reassign the bug to the correct package.

Thanks,
Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677421: mayavi2 segfault on debian

2012-06-21 Thread Varun Hiremath
Hi,

Could you please take a look at this bug report:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677421

Do you think this a bug in wx or vtk, or has this anything to do with
mayavi2? Let me know so I can reassign the bug to the correct package.

Thanks,
Varun



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#678046: RM: pdfedit -- ROM; depends on Qt3 libraries

2012-06-18 Thread Varun Hiremath
Package: ftp.debian.org


Severity: normal





Hi,





pdfedit depends on QT3 libraries (#604576) and upstream is not yet ready to


port to QT4: http://pdfedit.petricek.net/bt/view.php?id=318





Thus, I request the removal of pdfedit package from Debian. I will reupload
the

package when upstream finishes porting pdfedit to QT4.





Thanks,


Varun


Bug#604576: RM: pdfedit -- ROM; depends on Qt3 libraries

2012-06-18 Thread Varun Hiremath
Package: ftp.debian.org


Severity: normal





Hi,





pdfedit depends on QT3 libraries (#604576) and upstream is not yet ready to


port to QT4: http://pdfedit.petricek.net/bt/view.php?id=318





Thus, I request the removal of pdfedit package from Debian. I will reupload
the

package when upstream finishes porting pdfedit to QT4.





Thanks,


Varun


Bug#604575: Preparations for the removal of the KDE3 and Qt3 libraries

2012-05-27 Thread Varun Hiremath
Ana,

On Sun, May 27, 2012 at 2:15 PM, Ana Guerrero a...@debian.org wrote:

 On Sat, May 19, 2012 at 10:59:51AM +0200, Ana Guerrero wrote:
  Hello maintainer(s),
 
  One year and a half later, it is about time to remove Qt3.
  Please, migrate to the Qt4 version (if existing) or file for removal of
 your
  package.
 

 Looking at http://extcalc-linux.sourceforge.net/ there is newer upstream
 version. Could you please update it or if you are not interested in extcalc
 anymore, I will do an orphaning upload with the  new version.


I don't have time anymore to maintain extcalc, so please go ahead with
orphaning the package.

Thanks,
Varun


Accepted pdfedit 0.4.5-3 (source amd64)

2012-05-08 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 May 2012 12:53:08 -0400
Source: pdfedit
Binary: pdfedit
Architecture: source amd64
Version: 0.4.5-3
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pdfedit- Editor for manipulating PDF documents
Closes: 667320
Changes: 
 pdfedit (0.4.5-3) unstable; urgency=low
 .
   * Add patches/pdfedit-ftbfs-fix.diff to fix FTBFS with gcc-4.7, thanks
 to Willi Mann wi...@wm1.at for the patch (Closes: #667320)
   * Bump Standards-Version to 3.9.3
Checksums-Sha1: 
 bdc8250dc029513cd627c8180b260e19187637ea 1906 pdfedit_0.4.5-3.dsc
 6cec6124f9dc916626462b0804d00c1df786e444 6501 pdfedit_0.4.5-3.debian.tar.gz
 f75098e29a56e5ce96c5b730bbc67fc9002af7c1 2135868 pdfedit_0.4.5-3_amd64.deb
Checksums-Sha256: 
 c8158319b501315dbda59af7f230842f3ba4533f959724735f80a2bef87d0b7b 1906 
pdfedit_0.4.5-3.dsc
 981d18099a4b4352c9072ffa85888045b0ef4312dc56b6cf7e406f0e59b30dec 6501 
pdfedit_0.4.5-3.debian.tar.gz
 209ddc7878b07bc3b87f41506f6f0b62193b91b800b6948a6c26b715e966d022 2135868 
pdfedit_0.4.5-3_amd64.deb
Files: 
 1725b5400a2261c8b29927225cf43d47 1906 utils optional pdfedit_0.4.5-3.dsc
 080a581783465557fee1d847c81d6c66 6501 utils optional 
pdfedit_0.4.5-3.debian.tar.gz
 e7712670ec18fa05b3edf914422b71c0 2135868 utils optional 
pdfedit_0.4.5-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJPqV63AAoJEHA3PPEpDbnOFroQAIZpp/+JhHyJv2pcLdycCVLo
GjJfFyXNYAKpkKa/7vNujHqK2dlGICaw3pAumQ2V3WF0Jrp4DZTyj536rkeg1NV7
jvkGjxtS1u31BkU1vGiWPVJprtJ7fyStRVj7gnjRe6Vyd+tlbJQKTfR0urgwOzL0
vW0/IwodSiV6F/dMtuGwu+H5oseVRQ6kQs/bUEk3CRUs9iQ0ByF7hr7BkPAZ84Fh
5o5y77nMCAWBK+BRVrfJbYPzFIdp0bwcHVF4m6h0M9Rt+KE3Pf/vgx3JFn5GrOC2
FncK9iWKlctZQJGNk7kFTn8F0wgw+LcYqdlt/lz6PDMuVUj6IfeRtVV/5Melxot3
HlpSAOYcsr9A7F8fh9LURRVI3vq2Q3tuqMY+70LRlU4TYsSaqfiO1BGfNq9VjBlF
2XgSAd30BYXdqcE4SaiSHfbaHrROobyUbDBz07nQsvAksqAZhrLEeoWXtFLx3PoV
KdCCzWIwb6j3eOu6NF+o1BIVRPAE3RG4RT//vRXGRkIfuWLBYM47Mb+2FLJsV6Gc
ycN+vYUbDQSjZ3PAWsqkSGyZdy3Ol1fOmuZ1Ubt+ElQFnzi1NGp/mRmhbjvKVS78
ghNdS58hOmXffEuOlnT5t+c6hBCdn/Vkl14zOHM80IY7NZWA5+UkwqzE3J73FkPA
FSMXbejzMngBcN/OE24V
=7L4H
-END PGP SIGNATURE-


Accepted:
pdfedit_0.4.5-3.debian.tar.gz
  to main/p/pdfedit/pdfedit_0.4.5-3.debian.tar.gz
pdfedit_0.4.5-3.dsc
  to main/p/pdfedit/pdfedit_0.4.5-3.dsc
pdfedit_0.4.5-3_amd64.deb
  to main/p/pdfedit/pdfedit_0.4.5-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1srome-0003hj...@franck.debian.org



Accepted stalonetray 0.8.1-1 (source amd64)

2012-05-05 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 05 May 2012 18:00:11 -0400
Source: stalonetray
Binary: stalonetray
Architecture: source amd64
Version: 0.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Roman Dubtsov busa...@users.sourceforge.net
Changed-By: Varun Hiremath va...@debian.org
Description: 
 stalonetray - Standalone freedesktop.org and KDE systray implementation
Changes: 
 stalonetray (0.8.1-1) unstable; urgency=low
 .
   * Acknowledge NMU, thanks Steve McIntyre
   * New upstream release
   * Use source format 3.0 (quilt)
Checksums-Sha1: 
 b447f304292821fd4b198460e283397ccce9fe0c 1948 stalonetray_0.8.1-1.dsc
 80a137a80a469354f59dd6c228834d72db82777a 195544 stalonetray_0.8.1.orig.tar.gz
 9025f873ac8e6027b90f6b5744681518a4ca8b87 3597 stalonetray_0.8.1-1.debian.tar.gz
 0ad57086d34fccd2a5f57ee4e2430872ddca131e 86622 stalonetray_0.8.1-1_amd64.deb
Checksums-Sha256: 
 fb11460518a83f13c1333de2dc34a6583f0e4c1e720ed35447c10aebfc236d9b 1948 
stalonetray_0.8.1-1.dsc
 b59b77cf002974e70efd38275002111ae586e3c0b51628860672b256e3561b72 195544 
stalonetray_0.8.1.orig.tar.gz
 5ffa20356bc5ae93588516355d9a83159748fbacf8f0f4d91abc3b252f5a31a4 3597 
stalonetray_0.8.1-1.debian.tar.gz
 9f121e57b2d837f7ad2a7a27ce932eb5846a3939147a279aaae57e1fec362ce6 86622 
stalonetray_0.8.1-1_amd64.deb
Files: 
 5f1aabbcc6a5075f6801a0422d3080d5 1948 x11 optional stalonetray_0.8.1-1.dsc
 0f7c8b51535ce3ae1054d21f2a6082fa 195544 x11 optional 
stalonetray_0.8.1.orig.tar.gz
 c1cb55fe99fac2de138904b01aabe93d 3597 x11 optional 
stalonetray_0.8.1-1.debian.tar.gz
 4c44a13dc49af9434dc236259faf7eff 86622 x11 optional 
stalonetray_0.8.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCgAGBQJPpaV9AAoJEHA3PPEpDbnOtGcP/RhHpRb0MC6gFzfKWZfg8HgY
A8qNoWqMGPEyeSS3sc7meDQDofhfarzQIsJFncQYYguFE7K2p+hq+s07N6X0YoNj
/ZiKD2NHGh6zOp4S7Db6P5J5wZrV33H8G3I/fUbFcqwvZj3HDkZddGhnqXBBTcbo
DYOH75pybKFeOcnTgblQT0/hN7JilrIs2Swg2w8kP1eD7ajtKU7FHpDYrG7nuwsc
OjVklac/yGgQtecDwP/m4CGqPAMIiALrwk6Q7DhrR3vqfkQRYEbZCJj1IU0FRLwz
DNXbkBYWrSEB57/i2QJVsii4T7OROIiUocK3+BL878cLTB9BfTvnj6DvNTL4z2A9
EpJ5G5R+rxIyrUtitG5DmxMQcAenaO04p5qzLiy3vnR9TyK+5GaG4ehYRjxHg9cr
Q/iIZoPpLIv/bNGE+KSmL5htKno9X6D3elsSLqiki3ZxTc1Qhsu5ozFAeG+z1qNC
7ON/4qwqUMXVeG0Lnf/ZjQmVH9jeRytQoB49nBHzGuIPLb/vkiZQIEU66qesiVXU
+78oB7xR1hajLt/CRF7vxaoWwteHuKXRMr+csrpLVKtK7DxGh3q8dXDdp+gI8uPQ
2iTgb7+KGmjXdSCLtNV9ykCiPYlY8vmRll+RU6UWsOxo/I8GDaSvABOaJRWWKDKh
TRn9YfdPqf+MYTB2Hq8w
=UnP+
-END PGP SIGNATURE-


Accepted:
stalonetray_0.8.1-1.debian.tar.gz
  to main/s/stalonetray/stalonetray_0.8.1-1.debian.tar.gz
stalonetray_0.8.1-1.dsc
  to main/s/stalonetray/stalonetray_0.8.1-1.dsc
stalonetray_0.8.1-1_amd64.deb
  to main/s/stalonetray/stalonetray_0.8.1-1_amd64.deb
stalonetray_0.8.1.orig.tar.gz
  to main/s/stalonetray/stalonetray_0.8.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1sqnjw-0006t1...@franck.debian.org



  1   2   3   4   5   6   7   8   9   10   >