Re: [Pkg-pascal-devel] lazarus is marked for autoremoval from testing

2024-02-13 Thread Abou Al Montacir
Hi All,

On Tue, 2024-02-13 at 16:16 +, Peter B wrote:
> On 13/02/2024 12:46, Peter B wrote:
> > The autoremoval log contains no date.
> >  https://udd.debian.org/cgi-bin/autoremovals.cgi
> > So its impossible to tell when it was run, or when it will rerun.
> > 
> > As the bug is closed, the next run of the autoremoval script should 
> > clear these AUOTRMs.
> > I'm hoping this will happen in a day or two.
> > 
> 
> Oops!
> 
> That was wishful thinking.
> The link is a cgi script and updates on each call, but the AUTORMs remain.
> 
> Maybe (as we know the bugs are properly fixed now) drop the severities 
> to important?
It looks like reassigning the bugs from other packages to Lazarus seems to
confuse some migration scripts.

I've found a solution, I've tested on one of the bugs and it works: Declare the
bug affects lazarus on version 3.0+dfsg1-5 and as it was fixed in 3.0+dfsg1-6
the bug is no more blocking migration.

I'm going to do this for the two remaining bugs.

-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: lazarus is marked for autoremoval from testing

2024-02-12 Thread Abou Al Montacir
Hi All,

On Tue, 2024-02-13 at 04:39 +, Debian testing autoremoval watch wrote:
> lazarus 3.0+dfsg1-6 is marked for autoremoval from testing on 2024-03-13
> 
> It is affected by these RC bugs:
> 1061034: lcl-utils-3.0: lcl-utils-3.0 Missing dependencies for lazbuild
>  https://bugs.debian.org/1061034
I really don't understand this message.
the bug was fixed and is marked as so in the BTS.
I also have 3 other bugs already fixed, but preventing migration to testing for
more than 8 days.

What' wrong with BTS since a few days? Is there a bug, or the procedure to fix
bugs changed?

Other bugs preventing migration according
to https://tracker.debian.org/pkg/lazarus: 
 Updating lazarus would introduce bugs in testing: #1060932, #1060995, #1061009

-- 
Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Re: [Pkg-pascal-devel] Issue with fpc_3.2.2+dfsg-24 in Sid.

2023-12-30 Thread Abou Al Montacir
On Sat, 2023-12-30 at 16:05 +, Otto Kekäläinen wrote:
> Hi Abou!
> 
> I can't help with the issue at hand, but as general advice for the
> future: if you had Salsa-CI enabled at
> https://salsa.debian.org/pascal-team/fpc/-/pipelines the build-all and
> build-any jobs would have probably caught this before upload.
> 
> Just open https://salsa.debian.org/pascal-team/fpc/-/settings/ci_cd
> and under "General pipelines" in box "CI/CD configuration file" put
> "recipes/debian.yml@salsa-ci-team/pipeline" to activate it. It is
> super easy.
> 
> More at
> https://salsa.debian.org/salsa-ci-team/pipeline/-/blob/master/README.md
> 
> Hopefully more and more DDs adopt Salsa-CI, it is such a time saver! :)
Thank you Otto fo this advice.
Sure I should setup this CI/CD on salsa.
I'll come back to you if I need help.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: [Pkg-pascal-devel] Issue with fpc_3.2.2+dfsg-24 in Sid.

2023-12-30 Thread Abou Al Montacir
Hi All,

Can anyone help with below issue?

On Sat, 2023-12-30 at 09:17 +0100, Abou Al Montacir wrote:
> Hi All,
> 
> I've uploaded a broken version fpc_3.2.2+dfsg-24 unfortunately.
> This prevents building arch independent packages due to a silly mistake.
> This issue does not appear when you build both binaries and arch independent
> packages thus I did not see it before upload.
> 
> Now, the issue is fixed in fpc_3.2.2+dfsg-25, which managed to build on slow
> building architectures, but all major architectures are now broken.
> 
> I see only two possibilities, either upload manually fpc_3.2.2+dfsg-25 for
> each missing architecture, or get fpc_3.2.2+dfsg-24 removed from archive and
> replaced by fpc_3.2.2+dfsg-23 so that fpc_3.2.2+dfsg-25 can be built.
> 
> Can anyone advise on how to proceed?
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Can not recreate GIR information from gir1.2-harfbuzz-0.0.typelib

2023-06-04 Thread Abou Al Montacir
Hi Simon and All,

On Sun, 2023-06-04 at 15:24 +0100, Simon McVittie wrote:
> On Sat, 03 Jun 2023 at 23:39:29 +0200, Abou Al Montacir wrote:
> > I've added support for on the fly converting .typelib files using
> > g-ir-generate.
> 
> The normal workflow for GObject-Introspection is:
> 
>     C source code  }
>    } ---> GIR XML ---> binary typelib
>     compiled binaries  } |   |
>  |   |
>  v   v
>     static bindings   dynamic bindings
>     (Rust, C++, etc.) (Python, JavaScript, etc.)
> 
> Decompiling the binary typelib to re-create the GIR XML is not
> something that is conventionally done, and until today I wasn't aware
> that gobject-introspection even had a tool that could do this - I had
> assumed that compiling the GIR XML into a binary typelib was a lossy
> transformation, similar to the way compiling C or Pascal code into object
> files is a lossy transformation.
Yes makes sens.
> 
> If you are writing a binding for Pascal (a compiled language analogous
> to C or Java), then I would expect it to read the GIR XML from the -dev
> package, for example libharfbuzz-dev, and generate Pascal source code
> from that. That's how bindings for other statically-compiled languages
> like Rust, C++, Java and Vala tend to work.
The reason I oriented myself to use .typelib files is that I was not sure how to
get .gir files.
I could not find them and did not find packages that carry them.
If these are available, then I can make them build dependency of my bindings
package and that is enough.
> 
> The binary typelibs in gir1.2-* are usually only used by bindings into
> dynamic languages like Python (PyGI), JavaScript (gjs, seed) and Perl
> (Glib::Object::Introspection), as a faster and more disk-space-efficient
> way to generate bindings on-demand on end-user systems, without the
> space consumption of installing the XML and the -dev package, and the
> computational overhead of parsing it.
Permit me to remark that it is strange that packages named gir* do not provide
gir files.
This is really misleading for anyone who is not implicated in this logic.
> 
> > However, when starting the conversion, g-ir-generate crashes with an error
> > on
> > HarfBuzz-0.0.
> > I've raised a ticket [1]https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
> > 1035669 to that package, but I'm not sure it is an issue in HarfBuzz itself,
> > and maybe it is in g-ir-generate itself.
> 
> I don't know whether this is a bug in harfbuzz or GObject-Introspection.
> > From the patch proposed, it looks like either:
> 
> - a bug in g-ir-scanner (which is the component that parses C source code)
>   for mis-parsing harfbuzz's header file; or
> - a bug in harfbuzz, for having GObject-Introspection bindings that include
>   a header file, but then having content in that header file that a current
>   version of g-ir-scanner will mis-parse
> 
> Either way I don't think it's release-critical for either harfbuzz or
> gobject-introspection.
I was thinking that .typelib is lossless transformation and that Debian does not
ship .gir files.
IF this logic is wrong, then I agree this is not RC, as long as interpreted
languages can use it as intended.
> 
> > The reason I'm write to debian-devel is to know if we want to enforce the
> > fact
> > that typelib files shall be able to regenerate gir files for Bookworm.
> > If this is the case, shall I raise severity to be release critical?
> 
> No, this is not a release-critical bug. This looks to me like a bug of
> normal severity: the definition of normal severity used to mention "a
> problem with a particular option", and this looks like a problem with a
> particular constant in a particular header, which is conceptually similar.
> 
> In particular, this is not a DFSG violation, because the compiled typelibs
> aren't source code, so there is certainly no particular requirement that
> we can reproduce other files from them.
> 
> If we can load the compiled typelib into PyGI, gjs, etc., and the majority
> of it works as intended, then the gir1.2-* package is usable.
Just to note that on Bullseye, this issue does not exist.
But I agree with you on the above.

Thanks for taking the time to answer this question.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Can not recreate GIR information from gir1.2-harfbuzz-0.0.typelib

2023-06-04 Thread Abou Al Montacir
Hi James and All,

On Sun, 2023-06-04 at 14:18 +0100, James Addison wrote:
> Hi Abou,
> 
> Please find some slightly re-ordered responses below, and with the
> gtk-gnome list and bug on cc because others are likely to know more
> than me about this.
Thank you for looking on this so quickly.
> 
> On Sat, 3 Jun 2023 at 22:40, Abou Al Montacir  wrote:
> ...
> > However, when starting the conversion, g-ir-generate crashes with an error
> > on HarfBuzz-0.0.
> > I've raised a ticket
> > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1035669 to that package,
> > but I'm not sure it is an issue in HarfBuzz itself, and maybe it is in g-ir-
> > generate itself.
> 
> I'd begun looking into the problem - it seems that the g-ir-generate
> tool determines that the HB_LANGUAGE_INVALID constant (zero) is a GTK
> 'interface'[1] type instead of a basic type (such as int, utf8, ...).
> That causes the XML gir serialization failure here[2], because the
> interface type isn't supported.
> 
> > Few weeks ago, I started adding support for Gtk3 in FPC and Lazarus as part
> > of the effort to close bugs related to the deprecation of Gtk2.
> > My goal was to be able to build binding units (pascal modules) from .typelib
> > files shipped by Debian.
> > In order to be able to do that, I use a tool called gir2pas that I'm
> > maintaining.
> > I've added support for on the fly converting .typelib files using g-ir-
> > generate.
> 
> While developing a patch I'd found it difficult to figure out what the
> effect of my changes were on the output .typelib binary file.  In
> fact, I filed
> https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/341
> as a feature request for diffoscope.  Would any of the code from
> gir2pas be helpful to mention there?
I intend to make gir2pas the standard way to interface Gtk-X libs with Free
Pascal compiler.
So, feel free to mention it there.
gir2pas code is located
here: 
https://gitlab.com/freepascal.org/lazarus/lazarus/-/tree/main/tools/gir2pascal
Code generated (with still some manual tweaks for
now): 
https://gitlab.com/freepascal.org/lazarus/lazarus/-/tree/main/lcl/interfaces/gtk3/gtk3bindings
> 
> > The reason I'm write to debian-devel is to know if we want to enforce the
> > fact that typelib files shall be able to regenerate gir files for Bookworm.
> > If this is the case, shall I raise severity to be release critical?
> 
> What's the impact of the inability to generate the XML gir files for
> gir1.2-harfbuzz on other packages?
Not sure there is any impact if we can get gir file from -dev packages as Simon
stated in his answer.
> 
> Thanks,
> James
> 
> [1] -
> https://gitlab.gnome.org/GNOME/gobject-introspection/-/blob/37bde613a7cb77e7399dafb25731e13208f0ae0b/girepository/gitypes.h#L410
> 
> [2] -
> https://gitlab.gnome.org/GNOME/gobject-introspection/-/blob/37bde613a7cb77e7399dafb25731e13208f0ae0b/girepository/girwriter.c#L784
> 
Thank you for these pointers. It helps understanding the issue.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Can not recreate GIR information from gir1.2-harfbuzz-0.0.typelib

2023-06-03 Thread Abou Al Montacir
Hi All,

Few weeks ago, I started adding support for Gtk3 in FPC and Lazarus as part of
the effort to close bugs related to the deprecation of Gtk2.
My goal was to be able to build binding units (pascal modules) from .typelib
files shipped by Debian.
In order to be able to do that, I use a tool called gir2pas that I'm
maintaining.
I've added support for on the fly converting .typelib files using g-ir-generate.

However, when starting the conversion, g-ir-generate crashes with an error on
HarfBuzz-0.0.
I've raised a
ticket https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1035669 to that
package, but I'm not sure it is an issue in HarfBuzz itself, and maybe it is in
g-ir-generate itself.

The reason I'm write to debian-devel is to know if we want to enforce the fact
that typelib files shall be able to regenerate gir files for Bookworm.
If this is the case, shall I raise severity to be release critical?
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Dynamic linker support for FPC.

2023-05-28 Thread Abou Al Montacir
Dear All,

One year ago, glibc 2.32 introduced a change in the dynamic linker removing the
functions calloc/malloc/realloc/free.
This was motivated by the fact that libC is always in the way and provides these
functions.

However, this is not always true, because other compilers, FPC for instance,
does not require libC for its generated programs.
This resulted in all programs that use FPC and need to deal with SOL to link
with libC, or fail to start.
Of course, this may be an acceptable workaround for now, but there are case,
where one don't want to link with libC and thus will fail to run in Debian.

Is it possible to get this change reverted, or to have a way to workaround it?
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#997663: general: bullseye, system freezes completely when firefox freezes

2021-10-24 Thread Abou Al Montacir
On Sun, 2021-10-24 at 00:50 +0200, Jacob Kochems wrote:
> That is why I consider this *not* to be a bug of FF, although a bug
> in FF seems to trigger it. No user space program should be able to tank the
> system by hogging up resources.
I fully share this idea that Linux should be robust to any kind of these
freezes.
In past most of these bugs were closed without any real fix. I hope this will
not be the case here.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Accepted lazarus 2.0.6+dfsg-3 (source) into unstable

2019-12-15 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 15 Dec 2019 12:16:47 +0100
Source: lazarus
Architecture: source
Version: 2.0.6+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 943600
Changes:
 lazarus (2.0.6+dfsg-3) unstable; urgency=medium
 .
   * Limit number of processor within LPK build test to avoid crash.
 (Closes: Bug#943600)
Checksums-Sha1:
 da46b4da1e4f6eb912b1caf9e3306a8e4d1536cc 2990 lazarus_2.0.6+dfsg-3.dsc
 100c01d9560460e90cf3b147aceb109231584ee4 71208 
lazarus_2.0.6+dfsg-3.debian.tar.xz
 592baeef874594fb870ea37c19044d6c27a129e8 19690 
lazarus_2.0.6+dfsg-3_amd64.buildinfo
Checksums-Sha256:
 bb5ece05de3a66ed00fab18efe82098e25e88e50d3d9a17a9fcee4a8e59c273b 2990 
lazarus_2.0.6+dfsg-3.dsc
 0f5b6983845ca8a54748c4a2502c1f2fe091e8955b8db0d25f29bd03e6e83fd8 71208 
lazarus_2.0.6+dfsg-3.debian.tar.xz
 396f84b834a805d31b7e37d88b57672a2db5ea64bde05800c8d964f7eab84644 19690 
lazarus_2.0.6+dfsg-3_amd64.buildinfo
Files:
 5448b6846e75e18b81654c96e5fbdc16 2990 devel optional lazarus_2.0.6+dfsg-3.dsc
 21d8be4c29e990a24723160742fd952d 71208 devel optional 
lazarus_2.0.6+dfsg-3.debian.tar.xz
 94cb715a38e11a247560466f6bf36bc7 19690 devel optional 
lazarus_2.0.6+dfsg-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXfYddxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjEVGAQCk1q6VL9mU2+qQJ1PM3pnZrM9m
GNuzjzojeWjR7IyRmQD+OGUNnNjPO7inXX4I20Ev0N2k9E6CUBwJZqbfvIBB1Gg=
=gFw7
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-23 (source) into unstable

2019-11-25 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Nov 2019 22:51:22 +0100
Source: fpc
Architecture: source
Version: 3.0.4+dfsg-23
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 939414
Changes:
 fpc (3.0.4+dfsg-23) unstable; urgency=medium
 .
   * Fixed a bug causing fpdoc to fail silently.
   * Fixed documentation causing fpdoc to crash. (Closes: Bug#939414)
Checksums-Sha1:
 0f40e3520f45cc426a2d9f17c185142cdf77cf0f 3798 fpc_3.0.4+dfsg-23.dsc
 51893260d34450dc3bf80be550866767cfd4a22e 267248 fpc_3.0.4+dfsg-23.debian.tar.xz
 f9450a5fb21ee8eb20074a157e59c33e31c66c38 17548 
fpc_3.0.4+dfsg-23_amd64.buildinfo
Checksums-Sha256:
 d605c05a2ce521eae538fab059557cf884128503355ca5e6f9207825db9c06b9 3798 
fpc_3.0.4+dfsg-23.dsc
 59864798c29fd9849583fd1e9b602db09c04884cca2bf9941e0ad8ff75b93fac 267248 
fpc_3.0.4+dfsg-23.debian.tar.xz
 289760a352b0eeba592a22d2f3e9534e8d0f8b099560ac527bac242d603ec62a 17548 
fpc_3.0.4+dfsg-23_amd64.buildinfo
Files:
 b8943b78dfc53059eadaf8e56189afb9 3798 devel optional fpc_3.0.4+dfsg-23.dsc
 9d7fb0edb949f10087295fc595e91d7d 267248 devel optional 
fpc_3.0.4+dfsg-23.debian.tar.xz
 5fbd187a36f40a66f5c6a2e1755f5a83 17548 devel optional 
fpc_3.0.4+dfsg-23_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXdxXBxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjP9VAQCeFBtIIPgLzhusI/yC1zodZMrS
8tb19BaZhAz1Xc3XhQD+MQ+ZqWKhgXNhu7xAEN+vp8+7SVHtUdUyNL3k/R02Jss=
=4ct3
-END PGP SIGNATURE-



Accepted lazarus 2.0.6+dfsg-2 (source) into unstable

2019-11-16 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 16 Nov 2019 11:03:27 +0100
Source: lazarus
Architecture: source
Version: 2.0.6+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 944426
Changes:
 lazarus (2.0.6+dfsg-2) unstable; urgency=medium
 .
   * Fixed diversion issue when upgrading from a different upstream release.
 (Closes: Bug#944426)
   * Fixed crash in lazbuild avoiding to deference freed class instance.
Checksums-Sha1:
 ea81ade3291e488d26ed5029f31a71cb452abaab 2990 lazarus_2.0.6+dfsg-2.dsc
 211f7ded6d19dd65625a0044f0207d446e176d4f 71140 
lazarus_2.0.6+dfsg-2.debian.tar.xz
 40c3829a4c9a8c891f9371186a6c48a7c43ec43b 19679 
lazarus_2.0.6+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 e895778b7f43fe48ec229bcf08f5d4ed00a9b09645ebc88934308fb94ff38f67 2990 
lazarus_2.0.6+dfsg-2.dsc
 636d620e91de0cae380ec7f1dd0312fab97b79aa3f7f5c8de251974816dd2d13 71140 
lazarus_2.0.6+dfsg-2.debian.tar.xz
 f93b929b63c439443e750b38caf61f759ff30fe5d077b94792c6fc297a06db3f 19679 
lazarus_2.0.6+dfsg-2_amd64.buildinfo
Files:
 bc137ec65636dc765537da911ef245ff 2990 devel optional lazarus_2.0.6+dfsg-2.dsc
 beaaef0bb48ad2770fff3886ec31e0ff 71140 devel optional 
lazarus_2.0.6+dfsg-2.debian.tar.xz
 05e285809046fb7f4ed9015a00274820 19679 devel optional 
lazarus_2.0.6+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXc/apxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjHfJAP0TVp79E0lxT3Or/+xa5fMKrqSB
OJrREgN7i89RmLaNoAEAstcCERW4g2/T2t/0FYioht3HtmBH1FaSWBjQXaaDIVk=
=jnj1
-END PGP SIGNATURE-



Accepted lazarus 2.0.6+dfsg-1 (source) into unstable

2019-11-02 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 02 Nov 2019 17:59:18 +0100
Source: lazarus
Architecture: source
Version: 2.0.6+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Changes:
 lazarus (2.0.6+dfsg-1) unstable; urgency=medium
 .
   * New upstream version 2.0.6+dfsg
   * Removed patches that are already accepted by upstream.
Checksums-Sha1:
 985ed98c57db858c68c65261b4bdb3fdd9a9c67c 2990 lazarus_2.0.6+dfsg-1.dsc
 c97ff1df8b8f204687493177d17354de305f13af 44589928 
lazarus_2.0.6+dfsg.orig.tar.xz
 031783ebb4b0a20792c1088e7170c22190c64743 70824 
lazarus_2.0.6+dfsg-1.debian.tar.xz
 0d25a3a8407cfe0c580f4dd4aa79c897271016c6 19684 
lazarus_2.0.6+dfsg-1_amd64.buildinfo
Checksums-Sha256:
 fd4334f7b37c823c979c1c6458256df0e89cb362760759041803169754ef1f42 2990 
lazarus_2.0.6+dfsg-1.dsc
 72fd3fc6f58303a403561f1094b9cd7d67b88007ec9d6f0e9e45fb16a0da6475 44589928 
lazarus_2.0.6+dfsg.orig.tar.xz
 16175cc6b7186937685df7fd9816034f74b4d41f74d5dc5f76b4b798a7937f6b 70824 
lazarus_2.0.6+dfsg-1.debian.tar.xz
 3c6b9bd3d4dcdfc35d9d324bfe9f3027cd22de4f8f8a66cd87c6255b3cf80588 19684 
lazarus_2.0.6+dfsg-1_amd64.buildinfo
Files:
 72fbc7ba4666d233e6408f0838d549d7 2990 devel optional lazarus_2.0.6+dfsg-1.dsc
 a558e9a2f729c64cf40d025e5c845e9a 44589928 devel optional 
lazarus_2.0.6+dfsg.orig.tar.xz
 c2126a0965a05d2e0e65a0aee92c3e9b 70824 devel optional 
lazarus_2.0.6+dfsg-1.debian.tar.xz
 131f6d55a4f811364fbcf861432c6064 19684 devel optional 
lazarus_2.0.6+dfsg-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXb3epBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjJ/yAQCei7202x7Ux0KMlTeJnR9LijBt
Dz+IQ1bJwNLtWFkdNAD/cqAAFeshc+tKloeGp+Epo4rWPVQjGZaV/rT9AisMO40=
=g77L
-END PGP SIGNATURE-



Accepted lazarus 2.0.2+dfsg-7 (source) into unstable

2019-10-24 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 24 Oct 2019 23:33:59 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-7
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 942768
Changes:
 lazarus (2.0.2+dfsg-7) unstable; urgency=medium
 .
   * Fixed version upon upgrade to create files diversion for lpk files.
 (Closes: Bug#942768)
   * Fixed logic to remove diversion of lpk files as per policy requirements.
   * Bumped standard version to 4.4.1.
Checksums-Sha1:
 e4a237adf11176d6d25520b6c8d1744b41f0eb0b 2990 lazarus_2.0.2+dfsg-7.dsc
 1031581f23404ac0a49439ded87ef89e7f85f4cd 71508 
lazarus_2.0.2+dfsg-7.debian.tar.xz
 37931e41e34ad60fcd8eb22717d94b4e278378a9 19663 
lazarus_2.0.2+dfsg-7_amd64.buildinfo
Checksums-Sha256:
 dfa26c574aa2347c608cbc887e30bc8249bdf3ba49425d618cc4df577102d128 2990 
lazarus_2.0.2+dfsg-7.dsc
 a42b9693faae851cc69cd97cc36dd2cdffe74af17c5751d30d0b0ba8db4add5d 71508 
lazarus_2.0.2+dfsg-7.debian.tar.xz
 bcca1e2da60ef751a036b4f78ae61342171a625446f82be2f38127ef039f3c0f 19663 
lazarus_2.0.2+dfsg-7_amd64.buildinfo
Files:
 41ec15066e08c13442ea8260c1c1b629 2990 devel optional lazarus_2.0.2+dfsg-7.dsc
 4bcb96188544125851bcb1c33730a2cd 71508 devel optional 
lazarus_2.0.2+dfsg-7.debian.tar.xz
 46062663b3f4af03d7a890236704cf13 19663 devel optional 
lazarus_2.0.2+dfsg-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXbIe6BccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjBBgAP9J6AottXrvlyjyrvqFjeB+HdP+
am0V10C8UY7K7n7ASAD/V0nbySn9MsjIJZm5LtcLGQdLlQEdu5QjtcuPbrO9B4o=
=kZZo
-END PGP SIGNATURE-



Possible bug in policy?

2019-10-24 Thread Abou Al Montacir
Dear all,
Can you please see thebelow mail and confirm there is a real bug?
On Tue, 2019-10-22 at 22:22 +0200, Abou Al Montacir wrote:
> Hi Jan, Hi Andreas,
> 
> > both contains the same file, namely 
> >   /usr/lib/lazarus/2.0.2/components/IdeInspector/ideinspector.lpk
> > and removing it from one of them would fix the issue.
> That is not a bug, but rather a feature that is solving previous bugs [1] and
> [2]
> 
> The issue is that I copied some code from the Debian policy manual [3] and
> that code was wrong:
> 
> The given example is missing closing bracket. I should noticed it before, but
> for some obscure reason it is passing on my computer:
> if [ upgrade != "$1 || dpkg --compare-versions "$2" lt 1.0-2; thenI've checked
> it again and I've fixed it. Will upload soon.
> 
> [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823706
> [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=898310
> [3] https://www.debian.org/doc/debian-policy/ap-pkg-diversions.html
> -- 
> Cheers,Abou Al Montacir
> 
> ___Pkg-pascal-devel mailing 
> listpkg-pascal-de...@alioth-lists.debian.net
> https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-pascal-devel
-- 
Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Accepted lazarus 2.0.2+dfsg-6 (source) into unstable

2019-10-22 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 22 Oct 2019 22:31:10 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-6
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 942768 942784
Changes:
 lazarus (2.0.2+dfsg-6) unstable; urgency=medium
 .
   * Fixed typo in pre install and post removal script.
 (Closes: Bug#942768, Bug#942784)
Checksums-Sha1:
 53fa345151f206336e3f299c13359ba45e059ac6 2990 lazarus_2.0.2+dfsg-6.dsc
 be1dc825db246c2422339d3b35286761fc135d17 71420 
lazarus_2.0.2+dfsg-6.debian.tar.xz
 5bd72dad5d1f91c881b6215ea66b724db4ea4350 19663 
lazarus_2.0.2+dfsg-6_amd64.buildinfo
Checksums-Sha256:
 3b49e45b09cb3e3257797845079d04e99a72bf4a1d0812049242db4b744fde61 2990 
lazarus_2.0.2+dfsg-6.dsc
 a1f85172d67762dd48f57a28b659b14926873a32ce26fb7b73092af531eae0d4 71420 
lazarus_2.0.2+dfsg-6.debian.tar.xz
 c07d9c6f30862620a0a670adf7669981b057542e098146008079067604e67934 19663 
lazarus_2.0.2+dfsg-6_amd64.buildinfo
Files:
 9d8ae65d4204506378288fd43c83fb26 2990 devel optional lazarus_2.0.2+dfsg-6.dsc
 ace3cdaf1dfb384963aa7bc9b337fd39 71420 devel optional 
lazarus_2.0.2+dfsg-6.debian.tar.xz
 a0c2d4044dcaba1cecd5451e00d964f1 19663 devel optional 
lazarus_2.0.2+dfsg-6_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXa91tRccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjCAcAP94Hr9v56gd3mJYm21bBY4MzwL2
XzGsY7numPy7Hku5fwD/WtHzZNSbih+OGGbnRhCKgdiZmLMIiCa+trT+R42lBVE=
=Y7Rx
-END PGP SIGNATURE-



Re: Bug#942768: lcl-units-2.0: file conflict with lazarus-src-2.0 (versin 2.0.2+dfsg-5)

2019-10-22 Thread Abou Al Montacir
Hi Jan, Hi Andreas,
> both contains the same file, namely 
>   /usr/lib/lazarus/2.0.2/components/IdeInspector/ideinspector.lpk
> and removing it from one of them would fix the issue.
That is not a bug, but rather a feature that is solving previous bugs [1] and
[2]
The issue is that I copied some code from the Debian policy manual [3] and that
code was wrong:
The given example is missing closing bracket. I should noticed it before, but
for some obscure reason it is passing on my computer:if [ upgrade != "$1 || dpkg
--compare-versions "$2" lt 1.0-2; then
I've checked it again and I've fixed it. Will upload soon.

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823706
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=898310
[3] https://www.debian.org/doc/debian-policy/ap-pkg-diversions.html-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Accepted lazarus 2.0.2+dfsg-5 (source) into unstable

2019-10-20 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 20 Oct 2019 22:24:03 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-5
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Changes:
 lazarus (2.0.2+dfsg-5) unstable; urgency=medium
 .
   [ Paul Gevers ]
   * Revert unintended changes from commit 8354ab1 and fix control.in to 
prevent it
   * Missed control.in in previous commit afe3237
 .
   [ Abou Al Montacir ]
   * Removed auto generated preinst and postrm from VCS.
   * Fixed issue related to hard linking lpk files when building arch all.
Checksums-Sha1:
 a43128a1fcfd18bec5f8d1cf9fc616fc2d64ded6 2990 lazarus_2.0.2+dfsg-5.dsc
 eb1990cd6206d5e2d9d9939c05c68e3e4aa0dc6c 71396 
lazarus_2.0.2+dfsg-5.debian.tar.xz
 e397f06475c295fbca905633e01dcf91e2d3b460 19643 
lazarus_2.0.2+dfsg-5_amd64.buildinfo
Checksums-Sha256:
 892efb8a1130858f6b940a18da2adfe45c6a87630e5f5f6a0be35ddef915b8e0 2990 
lazarus_2.0.2+dfsg-5.dsc
 f876e8ceb38d0a324fe3c9e1928f4f26583af66a9dfd7fbc375d74fc85e96fb4 71396 
lazarus_2.0.2+dfsg-5.debian.tar.xz
 14b018677c7ae1781f9c6069b490c55e684f7c5af5fe89445204ba9a99339a9a 19643 
lazarus_2.0.2+dfsg-5_amd64.buildinfo
Files:
 12a5937d2532f4b007ed145c8f89ccb1 2990 devel optional lazarus_2.0.2+dfsg-5.dsc
 1e312e2ced780501c9ac96822a173804 71396 devel optional 
lazarus_2.0.2+dfsg-5.debian.tar.xz
 1e0478ad4e663ab0e833e6f7b24bda17 19643 devel optional 
lazarus_2.0.2+dfsg-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXazIjxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjKM6AQCDODDzGunMX6wOdc1j6yQPSrcu
nfyvyLNkOgTe2XaXOAD9GL+yzWm6O3UFQuPqZG/rba7VZCX9mu7cjRkFtxGdSLI=
=4VB6
-END PGP SIGNATURE-



Accepted lazarus 2.0.2+dfsg-4 (source) into unstable

2019-10-20 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 20 Oct 2019 15:09:24 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Changes:
 lazarus (2.0.2+dfsg-4) unstable; urgency=medium
 .
   * Look for lpk files in sources install directory instead of binaries one.
   * Fix postinst and postrm file to hadle upgrade correctly.
Checksums-Sha1:
 7ae5ea1099b6550115878643e268984c5bce89f2 2959 lazarus_2.0.2+dfsg-4.dsc
 0ec9ce0e862395fa920946eb7bca5e438ada5273 73108 
lazarus_2.0.2+dfsg-4.debian.tar.xz
 5a40b8f33de3d19ecdb44f6261c0a0704629f042 19611 
lazarus_2.0.2+dfsg-4_amd64.buildinfo
Checksums-Sha256:
 a23647de70789dbbcbdf54a88a9662aed710c260aeb6e7a1f1a6a06de33b6276 2959 
lazarus_2.0.2+dfsg-4.dsc
 fa46db788d5778747502b669e37b28b4a06e2392383f3b5c94fb27774da1d05e 73108 
lazarus_2.0.2+dfsg-4.debian.tar.xz
 b70f1f764306d9a690678f9c214f0ef3fecd09dbdf36665f4774d839ae88812d 19611 
lazarus_2.0.2+dfsg-4_amd64.buildinfo
Files:
 d477079b67fa58c78574df6de85f722c 2959 devel optional lazarus_2.0.2+dfsg-4.dsc
 0e690c5b90d782464efc4638f6f43685 73108 devel optional 
lazarus_2.0.2+dfsg-4.debian.tar.xz
 e13213954e472fc8b154a15208948a5c 19611 devel optional 
lazarus_2.0.2+dfsg-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEAREKAB0WIQS69sZENhB4UNQicQazJVxtVYeNjAUCXax5vAAKCRCzJVxtVYeN
jBTnAP9MK70NmLHCdDuG4zLsv2wf2UrN3QMmRuCLoZjnnieyAgEAhMsVwJRI4nf8
Uro6pLKh6Erc4brH08LtVSFdeU1DklE=
=IJHr
-END PGP SIGNATURE-



Accepted lazarus 2.0.2+dfsg-3 (source) into unstable

2019-10-19 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 20 Oct 2019 01:04:45 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Closes: 823706 898310
Changes:
 lazarus (2.0.2+dfsg-3) unstable; urgency=medium
 .
   * Use scalable icon. Put it in right folder conforming to Debian policy.
   * Updated multiarch tags as suggested by multiarch hinter tool.
   * Include compilable version of files in lazrus-src.
 This enables user to compile Lazarus when adding lpk packages.
 It requires file diversion to avoid breaking lcl-units packaged lpk files.
 (Closes: Bug#823706, Bug#898310)
Checksums-Sha1:
 a031e71ae92f0fd12ae129c4db02823b49c766fa 2991 lazarus_2.0.2+dfsg-3.dsc
 95cc740513caf1f2bdaa0b6ab9032f7d2ee81f55 72924 
lazarus_2.0.2+dfsg-3.debian.tar.xz
 f12d911c51ed5ef31152176e3a667ba386921ae1 19643 
lazarus_2.0.2+dfsg-3_amd64.buildinfo
Checksums-Sha256:
 8a751def17cfc0018684cf9b92f06217e8923cfd3838dc3a565c126de5edcff3 2991 
lazarus_2.0.2+dfsg-3.dsc
 def08004872b376a17c703c5204a32b105835a887d925834d06d2da9f5a0c3dc 72924 
lazarus_2.0.2+dfsg-3.debian.tar.xz
 286cd7ef34e3d5750ae159a58c51dc964d4764d1258e940b3e942173e7da58b1 19643 
lazarus_2.0.2+dfsg-3_amd64.buildinfo
Files:
 3dc905f11ca86a9023bf9083109527b9 2991 devel optional lazarus_2.0.2+dfsg-3.dsc
 0aa1daca1d125c8c10dc0db88361b461 72924 devel optional 
lazarus_2.0.2+dfsg-3.debian.tar.xz
 f4758b90a0a49438dec911cfd301f5c1 19643 devel optional 
lazarus_2.0.2+dfsg-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXaujVBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjGlwAP9NwQr2oU5M18C3Gl5j3KkFiwxa
9qNDkc4cFn/pK9ZBEgEArY/CL1khCvYXnu0TEGoy6B4gubJ4xBW3MXaEo49Cmz0=
=49Ji
-END PGP SIGNATURE-



Accepted lazarus 2.0.2+dfsg-1 (source) into experimental

2019-05-21 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 21 May 2019 15:34:57 +0200
Source: lazarus
Architecture: source
Version: 2.0.2+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Changes:
 lazarus (2.0.2+dfsg-1) experimental; urgency=medium
 .
   * New upstream version 2.0.2+dfsg
Checksums-Sha1:
 0e6f6f431c2ed2af65e028d15cdd784fd1888727 2990 lazarus_2.0.2+dfsg-1.dsc
 c7efac96e6777cbde9773fb1d3f9810e9232f233 46133368 
lazarus_2.0.2+dfsg.orig.tar.xz
 22d0a34ebaec708730e78cad6b0db4e757e81a30 70628 
lazarus_2.0.2+dfsg-1.debian.tar.xz
 39c1903c16d080d3c2c29c5977a79ca0ded3bdf4 19306 
lazarus_2.0.2+dfsg-1_amd64.buildinfo
Checksums-Sha256:
 bfef5beb6bf589b036f5669e03ad3dc338a7ae541ce3eab6d18dc26d8d18 2990 
lazarus_2.0.2+dfsg-1.dsc
 02860c816f5592640c9221e5cf0118dc76841334588d0c608f2f0a53d62504a5 46133368 
lazarus_2.0.2+dfsg.orig.tar.xz
 0cd6a02316f0fcc663fd141251849f0509e4fe8e30e14bf2c9cdc6c3afe32531 70628 
lazarus_2.0.2+dfsg-1.debian.tar.xz
 072676687d329db4a05a69e45e9d44c861cfd5ce4d551a76b10fd6d8d367d422 19306 
lazarus_2.0.2+dfsg-1_amd64.buildinfo
Files:
 94b0b09ae7122a085bb77284b9306686 2990 devel optional lazarus_2.0.2+dfsg-1.dsc
 2ead49cf46c462e63e7bd76ed4c00691 46133368 devel optional 
lazarus_2.0.2+dfsg.orig.tar.xz
 74b3cd8050c269a50648f80132ec2c22 70628 devel optional 
lazarus_2.0.2+dfsg-1.debian.tar.xz
 73ddbf36d097e8ed2744d315377c1586 19306 devel optional 
lazarus_2.0.2+dfsg-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXOQIjxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjBgFAQCXsrKjCq0+mDgJAb/0krR4oiby
6BLVtHwHSfO1ohtJ9QD9HLrDKG3nD+Rz5imMnaY4LTHE29ZnT+GpjCOt3S+QsR8=
=PGLW
-END PGP SIGNATURE-



Accepted lazarus 2.0.0+dfsg-2 (source) into unstable

2019-03-01 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 01 Mar 2019 14:50:21 +0100
Source: lazarus
Architecture: source
Version: 2.0.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Changes:
 lazarus (2.0.0+dfsg-2) unstable; urgency=medium
 .
   [ Graham Inggs ]
   * Expect failure in lazdebugtestbase.lpk
Checksums-Sha1:
 bbd0a13d4c1c81b8bbc3838524153aea832bc828 2990 lazarus_2.0.0+dfsg-2.dsc
 a3d1be183569df77b168d6adc65309251609b577 70644 
lazarus_2.0.0+dfsg-2.debian.tar.xz
 5af3987462f458ffb4b521aecbdaab5922f62001 19278 
lazarus_2.0.0+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 9d4b9cad34a6cd64642821c9c31218bc8438618728a0646a7c858bb4cb5878e2 2990 
lazarus_2.0.0+dfsg-2.dsc
 8ef59ba0dfacdf41d1528f037b360c91522bf021c12b70437546d41ec7de228a 70644 
lazarus_2.0.0+dfsg-2.debian.tar.xz
 53f838d8349f1ba382bedb56314d6f0ad7c2bc37651c3649bb7574c9f1bec104 19278 
lazarus_2.0.0+dfsg-2_amd64.buildinfo
Files:
 a6d4a70b01fb2b683c343598452c626e 2990 devel optional lazarus_2.0.0+dfsg-2.dsc
 d8abc8cd177385a36e7205e0c32b6607 70644 devel optional 
lazarus_2.0.0+dfsg-2.debian.tar.xz
 1c8c65fd1dd326c4abe25ada90f0b0b9 19278 devel optional 
lazarus_2.0.0+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXHlGihccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjNcpAPoCfsB+Sv+N90y+Ux2oLwguXBwZ
40QkaBgpVJG558MP+QEAvBQOc7PaEjgaPxaIsl9P6uauj97oTHAaM3Si+YXmGxM=
=6oGd
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-21 (source) into unstable

2019-01-16 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 16 Jan 2019 10:14:10 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-21
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 892285
Changes:
 fpc (3.0.4+dfsg-21) unstable; urgency=medium
 .
   [ Paul Gevers ]
   * Drop Recommends: libggi2-dev as it was removed from Debian in 2012.
 We should probably remove ggigraphs unit as well as it is useless
   * Drop ancient Breaks/Replaces, add one missing
 .
   [ Abou Al Montacir ]
   * Moved compiler messages files to location expected by Lazarus.
 The files are anyway architecture independent and it does not hurt
 to have them in /usr/share. (Closes: Bug#892285)
Checksums-Sha1:
 dccf3b3cf2ef39d0b55817ec0616d1e98485a3e4 3798 fpc_3.0.4+dfsg-21.dsc
 87b98dc940d3c3ef565488754894bc13557d90a7 265828 fpc_3.0.4+dfsg-21.debian.tar.xz
 e12bc2114252b36e89b9e43ba258550a6886f05f 17542 
fpc_3.0.4+dfsg-21_amd64.buildinfo
Checksums-Sha256:
 ea52b44b4cff5873de17fc8287407c457b9c1eac11add1bfc7b8f20c96966ce3 3798 
fpc_3.0.4+dfsg-21.dsc
 8d5e0340cb8c9c2173fafcd202751eaa7491ba398163b245fd285ec3e9d92024 265828 
fpc_3.0.4+dfsg-21.debian.tar.xz
 aa4aaea541c81b2a09c6c81f68753c3ad89329648260f19699ae1df1f03e0595 17542 
fpc_3.0.4+dfsg-21_amd64.buildinfo
Files:
 9dba83aa917e13064512b9b4c99909f2 3798 devel optional fpc_3.0.4+dfsg-21.dsc
 c43e7faa578fabe7184ae8b9d5ab4a0c 265828 devel optional 
fpc_3.0.4+dfsg-21.debian.tar.xz
 f0def9f0ed3c27b102576abcb5fb4ac7 17542 devel optional 
fpc_3.0.4+dfsg-21_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCXD9YahccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjHLKAQCe3B8JCzyiVgNvUR2bApA8ZQfu
ULIDrgDVzY5lAHc1JAD9GTFJkM6AO1m6vCdUepLxMjMhM4QHxx89CkruTDuGhO4=
=t0oV
-END PGP SIGNATURE-



Accepted lazarus 1.8.4+dfsg-2 (source) into unstable

2018-07-18 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 18 Jul 2018 18:16:37 +0200
Source: lazarus
Binary: lazarus-1.8 lazarus-src-1.8 lazarus-ide-1.8 lazarus-ide-gtk2-1.8 
lazarus-ide-qt5-1.8 lcl-1.8 lcl-utils-1.8 lcl-units-1.8 lcl-nogui-1.8 
lcl-gtk2-1.8 lcl-qt5-1.8 lazarus-doc-1.8 lazarus lazarus-src lazarus-ide 
lazarus-ide-gtk2 lazarus-ide-qt5 lcl lcl-utils lcl-units lcl-nogui lcl-gtk2 
lcl-qt5 lazarus-doc
Architecture: source
Version: 1.8.4+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team 
Changed-By: Abou Al Montacir 
Description:
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-1.8 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-1.8 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - dependency package
 lazarus-ide-1.8 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - Last GTK+ version dependency package
 lazarus-ide-gtk2-1.8 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt5 - IDE for Free Pascal - Last Qt version dependency package
 lazarus-ide-qt5-1.8 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-1.8 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-1.8- Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-1.8 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-1.8 - Lazarus Components Library - no GUI backend
 lcl-qt5- Lazarus Components Library - Qt backend dependency package
 lcl-qt5-1.8 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-1.8 - Lazarus Components Library - backend independent components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-1.8 - Lazarus Components Library - command line build tools
Closes: 898310
Changes:
 lazarus (1.8.4+dfsg-2) unstable; urgency=medium
 .
   * Removed the need to define FPCDIR for building Lazarus source package.
   * Stop adding manually compiled flag from packages. Added missing units.
 Thanks to Alexander Kernozhitsky (Closes: Bug#898310)
Checksums-Sha1:
 3a8e7d41afc4b8ec9c3a90147ef3672d9fc149c8 2962 lazarus_1.8.4+dfsg-2.dsc
 487fe7bdfca7800115f33525473c9c9f9afbc401 107908 
lazarus_1.8.4+dfsg-2.debian.tar.xz
 a9ed9acf75fb2c8c4fa32bccbde9accdf466d6b3 18900 
lazarus_1.8.4+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 9b0a272057dd0205cb7bf9ef0257c581d4bd3902e7e8d14b6e17ee4d9806940d 2962 
lazarus_1.8.4+dfsg-2.dsc
 79532a07e9b0f2175a5c41d2009306d7f42aca1e7218a3f85dfc41b39ed5991e 107908 
lazarus_1.8.4+dfsg-2.debian.tar.xz
 b9ab14a16a23c7dd75700934cc8c39252c74cfdaa5334433b00d32fbbe2acecc 18900 
lazarus_1.8.4+dfsg-2_amd64.buildinfo
Files:
 c3a4c493d90f7e22b23282de8c077f36 2962 devel optional lazarus_1.8.4+dfsg-2.dsc
 0c4d2cce0f943a42c9a8e83f72c8a80e 107908 devel optional 
lazarus_1.8.4+dfsg-2.debian.tar.xz
 d67847643513ee24b11960f3f23160a9 18900 devel optional 
lazarus_1.8.4+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCW0+hRBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjLGaAP4+crRYFJVsir9GIeXDlOhHJ4nV
PK+06nzjZ1hEM7yeWQD9ElazLaTTVTuDJdk3majCE4vdSWQp64CKJFZ0tTmngUs=
=XS1Z
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-18 (source) into unstable

2018-04-22 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 22 Apr 2018 16:10:23 +0200
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-18
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 892285
Changes:
 fpc (3.0.4+dfsg-18) unstable; urgency=medium
 .
   * Remove dpkg-architecture calls to reduce build time and lintian warnings
   * Changed Vcs-Git and Vcs-Browser to point to salsa.debian.org.
 This removes lintian warnings about old repository links.
   * Cleaned man page for fpcjres tool to be lintian warnings free.
   * Fixed ppc suffix in fpcmake to be compatible with ppc executable name.
 For arm64 architecture, FPC make files build compiler as ppca64 while
 fpcmake looks for ppcxaarch64 to set default FPCDIR value.
 Thanks to Graham Inggs (Closes: Bug#892285)
Checksums-Sha1:
 8d3428ec80fb029c0bd4554daa6f4634fe731c16 3798 fpc_3.0.4+dfsg-18.dsc
 a8bd43ea50d225cad5a66bfe1bed415a1d69fd9a 265028 fpc_3.0.4+dfsg-18.debian.tar.xz
 56b0486e5f028a05c55e3ba9a200389af6c6a33b 17334 
fpc_3.0.4+dfsg-18_amd64.buildinfo
Checksums-Sha256:
 d7948a310a9b9d4b697ac77adc7af1fc0421c723df4e4f8fdf72f20d0334410d 3798 
fpc_3.0.4+dfsg-18.dsc
 8873beab05bac3273be3d317b28867771f23ff7d0e2ef4a3a903d918b065c9e5 265028 
fpc_3.0.4+dfsg-18.debian.tar.xz
 2fca07b27f302e307d78c999342006d186b6514fc32eaed49e60a9e54e37251c 17334 
fpc_3.0.4+dfsg-18_amd64.buildinfo
Files:
 e83f62474983a1a1654179b29a5551f5 3798 devel optional fpc_3.0.4+dfsg-18.dsc
 0faebf2b75b1245bc88d0d166fbd6c7d 265028 devel optional 
fpc_3.0.4+dfsg-18.debian.tar.xz
 6e90b88dcd5bcf223480915a93847814 17334 devel optional 
fpc_3.0.4+dfsg-18_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWtyf2RccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjF2VAQCuUMRebZo+11TWrP6QH9MeauLM
KybUXSxrLVbd5xN9BAD/Tns+9aiuEBGJJMuQ3RoIXLFLxHRRXnE/wbcyBbKNQjY=
=X5KO
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-17 (source) into unstable

2018-04-14 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 14 Apr 2018 18:08:39 +0200
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-17
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 892285
Changes:
 fpc (3.0.4+dfsg-17) unstable; urgency=medium
 .
   * Fixed ppc suffix in fpcmake to be compatible with ppc executable name.
 For x86_64 architecture, FPC make files build compiler as ppcx64 while
 fpcmake looks for ppcx86_64 to set default FPCDIR value.
   * Patched fpcmake to look for FPCDIR in Debian FPC sources location.
 (Closes: Bug#892285)
Checksums-Sha1:
 a8c2a0265df4afcde25ec1be345fc25f89024bf1 3817 fpc_3.0.4+dfsg-17.dsc
 1c185cdf5f190aea55d57fac8d2f5175b85f0e40 264676 fpc_3.0.4+dfsg-17.debian.tar.xz
 c20a0710f93c20c0c07ccea26d8619b993a1c156 17409 
fpc_3.0.4+dfsg-17_amd64.buildinfo
Checksums-Sha256:
 1da8e2f9eaa06f1fb4d2567da7971a3a209da439e040c9aba3c684d7ce163c5e 3817 
fpc_3.0.4+dfsg-17.dsc
 d25e7c23146b3e2755981a5d54a1003bd678eb552c27c1e7056866021713695e 264676 
fpc_3.0.4+dfsg-17.debian.tar.xz
 23749c6ad4917071c5ea03b083560cf3a2d19340255992ba23d641d25bc8ad78 17409 
fpc_3.0.4+dfsg-17_amd64.buildinfo
Files:
 b42632203b8c0865d43c5d5ae39e1fbb 3817 devel optional fpc_3.0.4+dfsg-17.dsc
 d5077abf12ca9e898ae9d17e53f82469 264676 devel optional 
fpc_3.0.4+dfsg-17.debian.tar.xz
 f4558147f3bcb96a03b2421203e923a7 17409 devel optional 
fpc_3.0.4+dfsg-17_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWtJBvBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjKmrAQCZDfgwWGgdETw9g+Nrl1nVEMmD
1uEmVxz9BDgQ6a9alQEAi8PMAACO445f6YdECIJEAODCx49IX0yhcav/4agrew8=
=XtDY
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-15 (source) into unstable

2018-02-03 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 03 Feb 2018 10:30:21 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-15
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 888697
Changes:
 fpc (3.0.4+dfsg-15) unstable; urgency=medium
 .
   * Fixed FpMkUnit for ARM based architectures. (Closes: Bug#888697)
Checksums-Sha1:
 f04de2ae82b84ff0217e5f4d0d47b2289e1102e6 3817 fpc_3.0.4+dfsg-15.dsc
 7bef3ee08a2ed92b0f7810b28f3609e06f5b0062 264532 fpc_3.0.4+dfsg-15.debian.tar.xz
 6d0653b5376b95316bd6ac4d90fd62df7a673dcf 17282 
fpc_3.0.4+dfsg-15_amd64.buildinfo
Checksums-Sha256:
 cd754b23f4ac0ed6e4936ab9c37b2184c8dac30ac8ee402429458c4f6ebe8e47 3817 
fpc_3.0.4+dfsg-15.dsc
 0ae4ddfc549cbcb0fef86cee3221cd4f98a53c39c1d5fb991f9bd0d9b059c94b 264532 
fpc_3.0.4+dfsg-15.debian.tar.xz
 7421a10d48571b19153ab18d951e04ada094df4749655cbfa2813f0c2d3104b1 17282 
fpc_3.0.4+dfsg-15_amd64.buildinfo
Files:
 dbbc1ee8604788390b2a2474af57278c 3817 devel optional fpc_3.0.4+dfsg-15.dsc
 e0dbac7d45b61fbafe989d0922caa4ab 264532 devel optional 
fpc_3.0.4+dfsg-15.debian.tar.xz
 d8aea366217cee891755db5abe9fb272 17282 devel optional 
fpc_3.0.4+dfsg-15_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWnWEChccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjC51AP9Ouf6Q784WshMUAjAfhF6W5kZz
qcEJsoePbdSnE/C1QgD9GDfwUQD68vX/r28jZzVBOzTrwfyjLFLGzVhkPqu30zg=
=seA0
-END PGP SIGNATURE-



Re: Removing packages perhaps too aggressively?

2018-02-01 Thread Abou Al Montacir
On Thu, 2018-02-01 at 12:23 +0200, Lars Wirzenius wrote:
> On Thu, 2018-02-01 at 11:10 +0100, Abou Al Montacir wrote:
> > In general I agree with this as a DD, but when I wear my user hat I don't.
> 
> I disagree, I'm afraid. As a user, the speed in which we do removals
> from testing or unstable shouldn't matter to you. What matters is that
> the software you need is in the stable release. For that, you need to
> know that something is not going to be in the next stable release,
> with enough time for you to request it to be included if it matters to
> you.
> 
> (I think we need ways of helping users to do that, but it's orthogonal
> to how fast we remove things from testing.)
I do agree with the statements above. However I think that by decreasing the
speed of removal, packages get more chance to be fixed, but I'll not bet on
this.
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Re: Removing packages perhaps too aggressively?

2018-02-01 Thread Abou Al Montacir
On Wed, 2018-01-31 at 23:00 +, Scott Kitterman wrote:
> On January 31, 2018 10:34:28 PM UTC, Michael Biebl <em...@michaelbiebl.de>
> wrote:
> > Am 31.01.2018 um 22:49 schrieb Don Armstrong:
> > > On Wed, 31 Jan 2018, Abou Al Montacir wrote:
> > > > Me too likes to extend the removal notice for few weeks/months.
> > > > Especially removal from testing when outside freeze periods.
> > > 
> > > Packages removed from testing outside of the freeze can be easily
> > > re-added to testing once the underlying RC bugs are fixed. So RMs
> > 
> > should
> > > continue to remove early, and remove often. [When this has happened
> > 
> > with
> > > my packages (see lilypond), it's resulted in more people helping with
> > > the maintenance of them, and brought some issues to a wider
> > 
> > audience.]
> > 
> > I agree. Removals from testing should have no artifical delay. Removals
> > from the archive (i.e. unstable), a two or four week courtesy delay
> > seems ok to me, giving the person listed in Maintainers a chance to
> > reply, seems ok.
> 
> So far, every time this comes up, there's no actual volunteer to invest the
> time to update the removals page to make this reasonable to do in practice.
> 
> I think some normal delay is reasonable, but it needs to be integrated into
> the pending removals page so the FTP team member processing removals gets an
> indication the request is new.
In general I agree with this as a DD, but when I wear my user hat I don't.It
happened multiple times that I need to install a package that is not widely used
(last one I remember was spyder, a Python editor) and it was not in stable,
because of FTBFS caused by other packages update! I was obliged to take it from
sid and "update" some libs from "unstable" to make my "stable" system install
it. This is not user friendly.
Of course here I'm not discussing the pertinence of FTBFS bugs, but saying that
sometimes some packages get removed as collateral damage of igration of othe
ones especially if the package maintainer does not react because busy.
I think this kind of case need to be discussed and the situation improved, but I
don't have a strong mind about what to do with it.
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Re: Removing packages perhaps too aggressively?

2018-01-31 Thread Abou Al Montacir
On Wed, 2018-01-31 at 21:03 +0100, Christoph Biedl wrote:
> > It has happened to me in the recent years quite a few times that a
> 
> > package which I was using has a RoQA bug filed against it, and the
> 
> > package's got removed at a very short notice.
> 
> 
> 
> +1
> 
> 
> 
> You meant "RM"? Let me extend this to package removals in general since
> 
> I'm not to happy with the current situation, too.
+1
Me too likes to extend the removal notice for few weeks/months. Especially
removal from testing when outside freeze periods.
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Accepted fpc 3.0.4+dfsg-14 (source) into unstable

2018-01-22 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 22 Jan 2018 10:28:53 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-14
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 636088 887575 887967
Changes:
 fpc (3.0.4+dfsg-14) unstable; urgency=medium
 .
   * Fixed fpmkunit to use new MA compatible unit paths.
 Thanks to Michalis Kamburelis for the hints.
 (Closes: Bug#636088, Bug#887967, Bug#887575)
Checksums-Sha1:
 3b66a892febbed1d256543412d62359e998f01eb 3817 fpc_3.0.4+dfsg-14.dsc
 14f8e7c275d19c42735ed6ff85b62d39e03809d7 264524 fpc_3.0.4+dfsg-14.debian.tar.xz
 bd05302246a30847bbcf2b38b0d02371f852a0c3 17282 
fpc_3.0.4+dfsg-14_amd64.buildinfo
Checksums-Sha256:
 51295eaa5c2380fe12961e31dffdc5c7a159518ccb4f859ae7b88d7aa5725b6c 3817 
fpc_3.0.4+dfsg-14.dsc
 eefab24140a2b7888256e919e633af7587c0d6b9bf77b3b9a46729eb4035313a 264524 
fpc_3.0.4+dfsg-14.debian.tar.xz
 987ba610943758fbdb6121b42e2047fa32da58f13879c1657c9d9f6d8d40a664 17282 
fpc_3.0.4+dfsg-14_amd64.buildinfo
Files:
 e7d4e4cc1bad928419dc0de94bbf8b57 3817 devel optional fpc_3.0.4+dfsg-14.dsc
 b224996a543f22cc23c5f3e85407ce99 264524 devel optional 
fpc_3.0.4+dfsg-14.debian.tar.xz
 df267135ab44488b42759eb6f293bfed 17282 devel optional 
fpc_3.0.4+dfsg-14_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWmXBLhccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjIcwAPoDDMyYbLUR5T//DDmBqVJ5ZDJQ
jvC3otGJyDyFMzOxJAD/fK0sgORuktn+aMx/mxjD5HrCAD27DRGY9aq38svZbDI=
=prtf
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-13 (source) into unstable

2018-01-12 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 12 Jan 2018 09:54:33 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-13
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 886859 886926
Changes:
 fpc (3.0.4+dfsg-13) unstable; urgency=medium
 .
   * Fixed typo in change log file.
   * Bumped standard version to 4.1.3. Use https in URLS.
   * Fixed fp-utils_${VERSION} package dependencies to fix upgrade issues.
 (Closes: Bug#886859)
   * Fixed alternatives removal for package fp-compiler_${VERSION}.
 (Closes: Bug#886926)
   * Added missing man file of fp-fix-timestamp in package fp-utils.
 Removes a lintian warning.
Checksums-Sha1:
 dcdb3a2370b4cbbf5462d6061f43a7a7e7f188ab 3817 fpc_3.0.4+dfsg-13.dsc
 8ea272ce3a3388f9f37fa07d1fe82bf227caa165 264172 fpc_3.0.4+dfsg-13.debian.tar.xz
 1575978721bee8ff6a6df9520ff25b7c21dcdeac 17283 
fpc_3.0.4+dfsg-13_amd64.buildinfo
Checksums-Sha256:
 00bcfd6e528eb8dc8fa9c88bb139af2920664da49f697b3e9b267c1508d549de 3817 
fpc_3.0.4+dfsg-13.dsc
 dcbb7372d48a345f5ebfa652c85429c47ee4023dfdd9b9641b94631f53f3dc0a 264172 
fpc_3.0.4+dfsg-13.debian.tar.xz
 4ee5280a4b6d45a74d942db45845e9d1fb94dddeca187b42c6f25bac9b0d 17283 
fpc_3.0.4+dfsg-13_amd64.buildinfo
Files:
 888fcce6b03f3c57487c2fef082e9f35 3817 devel optional fpc_3.0.4+dfsg-13.dsc
 aca65ee7e39b3e92be0c4da4a296ef7f 264172 devel optional 
fpc_3.0.4+dfsg-13.debian.tar.xz
 caa7eed806d02fe64483cece64aa44e5 17283 devel optional 
fpc_3.0.4+dfsg-13_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWliJehccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjPOeAQCnBES8cOz/g6kBbktB72IGp3Dy
2uTpEfRx+KViW2JWzwD+M9W5FWofN09fxGUveowU/vZ3pSW9VEsjopE1hvQDTgU=
=A2wz
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-12 (source) into unstable

2018-01-07 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 07 Jan 2018 13:37:01 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-12
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-12) unstable; urgency=medium
 .
   * Changed fp-ide and fp-utils packages to be arch:all as suggested by
 Multiarch hinter tool.
   * Fixed man pages after executables renaming required by MA changes.
   * Fix IDE GDB support by importing MI supoort from upstream trunk.
 (Closes: Bug##528855)
Checksums-Sha1:
 c4ffe559fb7f240858d5cf8097d0279f1e8b2f2b 3816 fpc_3.0.4+dfsg-12.dsc
 3955ae1d803eacf01a6f2c461f31dfc8b97b7383 263996 fpc_3.0.4+dfsg-12.debian.tar.xz
 db3bfdb5ff36e3cd5bb21d8f379b836cd4583561 17283 
fpc_3.0.4+dfsg-12_amd64.buildinfo
Checksums-Sha256:
 8f5eee5a877971cbfb0cdf222cf44b2b928fa344761823b65ef2ad5aff75a34a 3816 
fpc_3.0.4+dfsg-12.dsc
 6c10c6ce5725c63e91bffdc9e1f26620352b99920d2a3460503f816596ec741e 263996 
fpc_3.0.4+dfsg-12.debian.tar.xz
 0c3d4cc43dd0a5368c45f7f2413651c77aaf7ce54a6f7b4a7ca62fc4ecc61d92 17283 
fpc_3.0.4+dfsg-12_amd64.buildinfo
Files:
 ab21ddbc0392de9d9e1d5b89dd40eacd 3816 devel optional fpc_3.0.4+dfsg-12.dsc
 638a70cb6280d141fc28b65eeb316190 263996 devel optional 
fpc_3.0.4+dfsg-12.debian.tar.xz
 cb66b0e568efd82e85addb0c14ada632 17283 devel optional 
fpc_3.0.4+dfsg-12_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWlIpExccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjPCMAQCctEde72F5TAsBFGF6XEFWcWlP
Hy7ykyUadBoOTqvuHQEAlAKCRpkNXYFJCye9DcURREFaES2iWq1d3WIqfxQz1jY=
=BKp1
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-11 (source) into unstable

2017-12-30 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Dec 2017 21:14:32 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-11
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 885102
Changes:
 fpc (3.0.4+dfsg-11) unstable; urgency=medium
 .
   * Fixed upgrade of fp-utils from older version. (Closes: #885102)
Checksums-Sha1:
 6961dea3cd5590c5f09afc885cf2994391a43a8f 3816 fpc_3.0.4+dfsg-11.dsc
 e7379089cc16e5c2ec09cf433acd6644f554d378 240032 fpc_3.0.4+dfsg-11.debian.tar.xz
 0e15cd87bff90ccee42f604fb53ca2621fdb2522 17285 
fpc_3.0.4+dfsg-11_amd64.buildinfo
Checksums-Sha256:
 0bea392be765e454b98c698d5c6f92f0795556876f3d1682dedf9cab412b36fd 3816 
fpc_3.0.4+dfsg-11.dsc
 8e4c7b2476b9f316219c250a3ccb186e3a41655b3babe5280b9a29816585251c 240032 
fpc_3.0.4+dfsg-11.debian.tar.xz
 8bfa78820a897e364c042afa6ec25e94447dd970f70ff531094e45d14660a21e 17285 
fpc_3.0.4+dfsg-11_amd64.buildinfo
Files:
 b19362d9f3522c973fc561434e6e8755 3816 devel optional fpc_3.0.4+dfsg-11.dsc
 5565444d5350d2bc3c5cfe653c08f917 240032 devel optional 
fpc_3.0.4+dfsg-11.debian.tar.xz
 1cbef99c08fbd7a137191e015766347e 17285 devel optional 
fpc_3.0.4+dfsg-11_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWkgEfxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjFOeAPsEEvLSqljYVw1iuo8N0KDXGbtf
OiYf8PyQwWt9DNMc4wEArnRr3cHQKW8NeBCokQsp+8+SvDkwZP9BSVMJQEFFJcs=
=5/cS
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-10 (source) into unstable

2017-12-25 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Dec 2017 20:30:59 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-10
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 885102
Changes:
 fpc (3.0.4+dfsg-10) unstable; urgency=medium
 .
   * Fixed upgrade of fp-utils from older version. (Closes: #885102)
   * Fixed upstream test suite by generating missing configuration file.
Checksums-Sha1:
 665770bddadb2dd51910eafa20a89a9aabe3b14f 3816 fpc_3.0.4+dfsg-10.dsc
 5e60a5c1b7268d6e8b244993ede81e13d839cab9 239988 fpc_3.0.4+dfsg-10.debian.tar.xz
 4a153ad226b196688ea8e722911936119dbec20e 17285 
fpc_3.0.4+dfsg-10_amd64.buildinfo
Checksums-Sha256:
 0361ac4cbc3adbf2e5fd005c0dcc033952225d5e65a3b636e54198472dd763a3 3816 
fpc_3.0.4+dfsg-10.dsc
 b79bdec3f7a61a2199dadfce88d5421880e599e341c6d3f546d11360a54b7de6 239988 
fpc_3.0.4+dfsg-10.debian.tar.xz
 2bd515d35def9fd6389ebc6726c8d4c00cd6bab236e45fd84b87d8ebceaf861c 17285 
fpc_3.0.4+dfsg-10_amd64.buildinfo
Files:
 0156452051e81b1b2924c50543f3d4b0 3816 devel optional fpc_3.0.4+dfsg-10.dsc
 9f8dc3ac6f10e288dd53924dd2218322 239988 devel optional 
fpc_3.0.4+dfsg-10.debian.tar.xz
 4f63d8be415831b7d751afd9466240fd 17285 devel optional 
fpc_3.0.4+dfsg-10_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWkFqTBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjMFbAPkBVwej6GQYHyO3ESqFTn3Fndh3
wV/pmYHHu94veJ4UTQD8D18O/Uxq0R3tXVX93N4BPozbWB+vWKMtajZF8zHWPc8=
=NF5K
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-9 (source) into unstable

2017-12-18 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 18 Dec 2017 23:48:31 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-9
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-9) unstable; urgency=medium
 .
   * Renamed binaries of fp-compiler to -* as it is forbidden by
 policy to have sub-directories in /us/bin.
   * Moved grab_vcsa from fp-compiler to fp-utils as this is a tool that is
 not required by the compiler, but by video unit from fp-units-base.
   * Fixed generation of make files for test suite, including sub directories.
Checksums-Sha1:
 6f10d0551052349c478b96968d27678fe6ac2b60 3812 fpc_3.0.4+dfsg-9.dsc
 88786a7f688443544dd6fbd83465ecc93e9d261a 239852 fpc_3.0.4+dfsg-9.debian.tar.xz
 cec14d3ee233f24d50c8a16ae07a0fa58f823104 17179 fpc_3.0.4+dfsg-9_amd64.buildinfo
Checksums-Sha256:
 c949c9612240d352f523bc75dfabc2ef7078ef82ae4b5b1026b10ab07c630bfd 3812 
fpc_3.0.4+dfsg-9.dsc
 0864572a245fab0b9cd086a1a579bf954705cd13cec9abce1e5d92826403d861 239852 
fpc_3.0.4+dfsg-9.debian.tar.xz
 9ed66bbd7cc3b26829831a8c6671660e3db87d19190c5e60cbd2345b24e2a131 17179 
fpc_3.0.4+dfsg-9_amd64.buildinfo
Files:
 791d05cb5538e8eee9167af1ce885ecc 3812 devel optional fpc_3.0.4+dfsg-9.dsc
 5d8aa916f9d27144d6fbeed90c91fa84 239852 devel optional 
fpc_3.0.4+dfsg-9.debian.tar.xz
 86977abb678a6d986ae5ab39dc4ea114 17179 devel optional 
fpc_3.0.4+dfsg-9_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWjhPtRccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjMd/AQCthuYd459erq8+Ex6vIuTqkvYY
kccuuJQ2CSq3YEHYUwD9FBjRfgbcDBmtrbJWb580LTYpjU1L/VE18qSv4j1eh3o=
=QFrj
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-8 (source) into unstable

2017-12-16 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 16 Dec 2017 23:05:46 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-8
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-8) unstable; urgency=medium
 .
   * Fixed generation of make files for test suite.
   * Moved binaries of fp-compiler to /usr/bin/ to be MA compatible.
Checksums-Sha1:
 5c1485f0c4137479b54ff3bbacff6a5b1bc8702f 3812 fpc_3.0.4+dfsg-8.dsc
 18aa902b48c5e7451e3be189f24c4dece9ffbf12 239524 fpc_3.0.4+dfsg-8.debian.tar.xz
 b893954865b2763d2e6c5d154f1e58b5e7262cc2 17187 fpc_3.0.4+dfsg-8_amd64.buildinfo
Checksums-Sha256:
 ad7b71e9a042f02d257626690f79f9660985f01aacfa2158c181fef3aca33ee8 3812 
fpc_3.0.4+dfsg-8.dsc
 92d2aa0391b828a568d8d842293acf356c885f147c14d3e6a1718dd0d2211851 239524 
fpc_3.0.4+dfsg-8.debian.tar.xz
 4cff6a4026d7b51e78e69ecc2fbcab26ae1028d22763e6195f0b1b10c84c2b6f 17187 
fpc_3.0.4+dfsg-8_amd64.buildinfo
Files:
 6f30c015153d134ef614d15db92ca838 3812 devel optional fpc_3.0.4+dfsg-8.dsc
 3e234fa51b1429d45d7a699f23f4a5c2 239524 devel optional 
fpc_3.0.4+dfsg-8.debian.tar.xz
 ac731c933a3a49be6995e57250725b7f 17187 devel optional 
fpc_3.0.4+dfsg-8_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWjWbfRccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjCPxAP9GrdYfUggrrsER3xhuUtnQHbG7
REoDHGr7dmY0TBdzVwD7B80apUzxXYlIzgqjvcdmBsDonUZzZOCgxuQfT8B10Cc=
=17r/
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-7 (source) into unstable

2017-12-14 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 14 Dec 2017 10:27:15 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-7
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-7) unstable; urgency=medium
 .
   * Upload to unstable MA related fixes, previously uploaded to exprimental.
Checksums-Sha1:
 4468795c7e0cc6de9a05ec4ee930cc9a6163861d 3812 fpc_3.0.4+dfsg-7.dsc
 02127e4175dbfea1550c1fb03938bd798a80518d 239400 fpc_3.0.4+dfsg-7.debian.tar.xz
 14cf978896c69a23579bba4e86446f878ecee6a1 17175 fpc_3.0.4+dfsg-7_amd64.buildinfo
Checksums-Sha256:
 d12e8a65cfe741eb003b944c21961f2cf1f3e382c2ecf4847c474435554d4210 3812 
fpc_3.0.4+dfsg-7.dsc
 afc467af38d622b69e4fdbe47cd7cd1cd4a996cf736c83e20d15a37084d7101a 239400 
fpc_3.0.4+dfsg-7.debian.tar.xz
 17efe761586f78b82e448df8a6327750c56f8148cf87df0c09b256ceb40abdf4 17175 
fpc_3.0.4+dfsg-7_amd64.buildinfo
Files:
 b8385352b94c934a947276ca6b49da0e 3812 devel optional fpc_3.0.4+dfsg-7.dsc
 db6e81921e7520eb1eb39fe603d24226 239400 devel optional 
fpc_3.0.4+dfsg-7.debian.tar.xz
 deea91b96ace0976069c8339819e23db 17175 devel optional 
fpc_3.0.4+dfsg-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWjJMoBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjPDqAQC/g2uaMgSK8Fa00cqN09HUBBg1
K2K8WglaLsmVXNQ3lgD9G5uX/GhAGId6WS8i0NV6NQD81HhOqCosgViULkH+fbs=
=YU4P
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-6 (source) into experimental

2017-12-10 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 10 Dec 2017 16:46:11 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-6
Distribution: experimental
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-6) experimental; urgency=medium
 .
   * Fixed issue in postinst/postrm scripts related to unknown env variable.
Checksums-Sha1:
 5579ff6d60288dd30d60ea134a722c12ba5c790f 3812 fpc_3.0.4+dfsg-6.dsc
 c2bdb77358913f4d6e7eaad502346df806f45bca 239212 fpc_3.0.4+dfsg-6.debian.tar.xz
 c1cf6fce403d1ecdf9b32beb1fdcef09dc20db76 17175 fpc_3.0.4+dfsg-6_amd64.buildinfo
Checksums-Sha256:
 6cb667958ee78408532e28af0580e2d3e13c0b1b9cc2a7ae2ecb9bda8f03b3cd 3812 
fpc_3.0.4+dfsg-6.dsc
 0194ccabe33e1554f78fc10287bb38b79aa908ebb886cc7b239e27e096c9e63a 239212 
fpc_3.0.4+dfsg-6.debian.tar.xz
 dd2f03b1efd3665efd108c1d6649e780bdb232e5809e78bf7029503881fd28ba 17175 
fpc_3.0.4+dfsg-6_amd64.buildinfo
Files:
 611b5bef7689261337886590119bbdbb 3812 devel optional fpc_3.0.4+dfsg-6.dsc
 94840c5d30cf22105547e0aa05ef12f2 239212 devel optional 
fpc_3.0.4+dfsg-6.debian.tar.xz
 0bc8909168f0cf00db69ed76f343b3ed 17175 devel optional 
fpc_3.0.4+dfsg-6_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWi2hfBccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjLQhAQCMzDmUDza31DQ0AB/bVuwioBdB
O90QOLUkbC0GMH0fnAD/cset6XewJiUkvWP7Uk/+wHKVDIwhTJe0QB+jR96Be+s=
=Xfir
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-5 (source) into experimental

2017-12-08 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 09 Dec 2017 00:33:46 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-5
Distribution: experimental
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-5) experimental; urgency=medium
 .
   * Fixed units installation path according to MA policy.
   * Bump standards version to 4.1.2 (no changes)
Checksums-Sha1:
 2fa6c226e917de7fd3856523968349563d6c3bc4 3812 fpc_3.0.4+dfsg-5.dsc
 3da3f68a490e4ee99e28a283e38b150dc4e24b32 239180 fpc_3.0.4+dfsg-5.debian.tar.xz
 cbf348bac74a099e69e65c01d21d65c956142118 17175 fpc_3.0.4+dfsg-5_amd64.buildinfo
Checksums-Sha256:
 c40fc94429f87f9f30aabc0754a790b89da3e15126b0d70f558044d8534e4fab 3812 
fpc_3.0.4+dfsg-5.dsc
 cc0068fa4e767f24a51186df88878d97adc19d20b991cc6139b8013894223df1 239180 
fpc_3.0.4+dfsg-5.debian.tar.xz
 1ff55f59cc0a9768397d2e5d4ab98b1ff521198bde56646d2748953dd36d0a98 17175 
fpc_3.0.4+dfsg-5_amd64.buildinfo
Files:
 e06730ab2fa5e2c4ac952119c52f6f04 3812 devel optional fpc_3.0.4+dfsg-5.dsc
 b10e7e54cd3c5c780e86efd598ab158d 239180 devel optional 
fpc_3.0.4+dfsg-5.debian.tar.xz
 52c0168b75d3f520dc4ecea020ef4f34 17175 devel optional 
fpc_3.0.4+dfsg-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWislkhccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjJoOAP4uJS+eY00k3oI5xjbxl3SH8SXy
WLztosfzNPuS9tiZrAD+K4WrVtY+aHR05YMzG7h2JvI0lQ/N1s8hi6eZ/WveS8U=
=gRve
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-4 (source) into experimental

2017-12-04 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 04 Dec 2017 23:59:34 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-4
Distribution: experimental
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-4) experimental; urgency=medium
 .
   * Accelerated generation of make files.
   * Fixed units installation path.
Checksums-Sha1:
 e54e12e99779649f22293503b4452e5e352d5eef 3812 fpc_3.0.4+dfsg-4.dsc
 97bdf39bd406c40aad6617bb59b589f36ac640df 240844 fpc_3.0.4+dfsg-4.debian.tar.xz
 f80512386a1496dcf5b71c052b1ea0a57ad660e8 17175 fpc_3.0.4+dfsg-4_amd64.buildinfo
Checksums-Sha256:
 3e2cee01a014e40c11ecfc9a8e7b47d6a1c548616c477153d2a8b1e0c251bebe 3812 
fpc_3.0.4+dfsg-4.dsc
 0bfec25c91585605d8ed5630ab8fbcfa153cc19b8407730db5ceee33ce932cef 240844 
fpc_3.0.4+dfsg-4.debian.tar.xz
 accfdeabc6d025a2edea02d6a9ac0da9300e790c0cfcb09c96344576da391218 17175 
fpc_3.0.4+dfsg-4_amd64.buildinfo
Files:
 c7d54606e68726be2f99ae3bd6c70ff7 3812 devel optional fpc_3.0.4+dfsg-4.dsc
 df2439daab2c9fe9994c797eccb8b8e1 240844 devel optional 
fpc_3.0.4+dfsg-4.debian.tar.xz
 ee956b1fc67550a565d4947417ef6711 17175 devel optional 
fpc_3.0.4+dfsg-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWiXXDhccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjNQ1APwK1+3HVUEuO8+hJ/gxPoYLggpm
jg3tiHLc4/22re4pVAD8Cl4P1h29LLoZCvOVV+dYQJQF9/Lc9dtV6XDdBUwTevA=
=ifPM
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-3 (source) into experimental

2017-11-30 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 30 Nov 2017 22:36:25 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-3
Distribution: experimental
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Changes:
 fpc (3.0.4+dfsg-3) experimental; urgency=medium
 .
   * Install unit files to a multi-arch safe location.
Checksums-Sha1:
 755899d5f66d8d895e3c86b55398b5a98338840d 3812 fpc_3.0.4+dfsg-3.dsc
 fee83fccd9afd9ae8cec10029375a04ee34dab68 240044 fpc_3.0.4+dfsg-3.debian.tar.xz
 940ec1b921753921e257c6b671e160a369870cc4 17154 fpc_3.0.4+dfsg-3_amd64.buildinfo
Checksums-Sha256:
 da70b47bedcdbbe9c9ea7106b402048eeac2bc4db2a48f87e183854c48c4e9ef 3812 
fpc_3.0.4+dfsg-3.dsc
 3241be807620b260ffc78d780cb37ad7658bd0b482cf46b09318f9fd5b5317ea 240044 
fpc_3.0.4+dfsg-3.debian.tar.xz
 188c1ebe2197c6a09093bd7b5eb6565469144a59a23b4b3df28cabd1a49b493e 17154 
fpc_3.0.4+dfsg-3_amd64.buildinfo
Files:
 15d637ed59947f2acfb8c6da14ffe439 3812 devel optional fpc_3.0.4+dfsg-3.dsc
 d8c5ee0d01b3a21397e62727a71c209c 240044 devel optional 
fpc_3.0.4+dfsg-3.debian.tar.xz
 12c07dae940bf7828911d71129f5bcaa 17154 devel optional 
fpc_3.0.4+dfsg-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWiCANxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjEpiAP9ISZz0CP2sLEDjuA9VDhgs3NRh
vA+rnmq/niZReNEj2QD7B80kJWTVkkzrlFOLLr25JCjce310YlpJBjfZ3Z/xj3I=
=sPVU
-END PGP SIGNATURE-



Accepted fpc 3.0.4+dfsg-2 (source) into unstable

2017-11-12 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 12 Nov 2017 17:13:55 +0100
Source: fpc
Binary: fpc-3.0.4 fpc-source-3.0.4 fp-compiler-3.0.4 fp-ide-3.0.4 
fp-utils-3.0.4 fp-docs-3.0.4 fp-units-rtl-3.0.4 fp-units-base-3.0.4 
fp-units-fcl-3.0.4 fp-units-fv-3.0.4 fp-units-gtk2-3.0.4 fp-units-db-3.0.4 
fp-units-gfx-3.0.4 fp-units-net-3.0.4 fp-units-math-3.0.4 fp-units-misc-3.0.4 
fp-units-multimedia-3.0.4 fp-units-i386-3.0.4 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.4+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.4 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.4  - Free Pascal - SDK-3.0.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.4 - Free Pascal - SDK source code
Closes: 875838
Changes:
 fpc (3.0.4+dfsg-2) unstable; urgency=medium
 .
   [ Adam Conrad ]
   * fix_texpfncase_test.patch: Cherrypick upstream fix to texpfncase test.
 (Closes: 875838)
 .
   [ Abou Al Montacir ]
   * Set Muti-Arch: foreign for fp-utils* and fp-ide*.
   * Set Muti-Arch: same for fp-compiler*.
Checksums-Sha1:
 4004b21e1f61a779719d9c779476e2a7eec20f1c 3812 fpc_3.0.4+dfsg-2.dsc
 1de3cf9e174daf65c014d839e9bc2e79150fde79 237840 fpc_3.0.4+dfsg-2.debian.tar.xz
 fe5b115b941f348cea6c83186ca1fee934c1e079 17180 fpc_3.0.4+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 32fde2b6589fe25d2368b85152d365780be21a70d78d7bf80526ebc07b2788e6 3812 
fpc_3.0.4+dfsg-2.dsc
 5ddf591f5b556267d9e4db727d545ff30cfaa3c284e4dc19788f42dcb876e315 237840 
fpc_3.0.4+dfsg-2.debian.tar.xz
 38657cce0569dcf8a3c2fb1be6693a875799a116ce1eed02cd0100a060761e61 17180 
fpc_3.0.4+dfsg-2_amd64.buildinfo
Files:
 013ab96663e3f4578845939bf4c82388 3812 devel optional fpc_3.0.4+dfsg-2.dsc
 d29c0748448af874b26ab9326c262dcc 237840 devel optional 
fpc_3.0.4+dfsg-2.debian.tar.xz
 d705e4d2170f5bbabda96716855b8636 17180 devel optional 
fpc_3.0.4+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWgh7DxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjLYxAP4yp4ncwsL8fDhYrj6MYESmzqzw
Mt7FzxowXF488EGLEwD7Bo7GSLI9vtcVVEHnbt/ASIHI1ehe2wHe0nchVync0vk=
=MRAb
-END PGP SIGNATURE-



Accepted fpc 3.0.2+dfsg-6 (source) into unstable

2017-10-07 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 07 Oct 2017 16:12:36 +0200
Source: fpc
Binary: fpc-3.0.2 fpc-source-3.0.2 fp-compiler-3.0.2 fp-ide-3.0.2 
fp-utils-3.0.2 fp-docs-3.0.2 fp-units-rtl-3.0.2 fp-units-base-3.0.2 
fp-units-fcl-3.0.2 fp-units-fv-3.0.2 fp-units-gtk2-3.0.2 fp-units-db-3.0.2 
fp-units-gfx-3.0.2 fp-units-net-3.0.2 fp-units-math-3.0.2 fp-units-misc-3.0.2 
fp-units-multimedia-3.0.2 fp-units-i386-3.0.2 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.2+dfsg-6
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.2 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.2 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.2 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.2 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.2 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.2 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.2 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.2 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.2 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.2 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.2 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.2 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.2 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.2 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.2 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.2 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.2  - Free Pascal - SDK-3.0.2 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.2 - Free Pascal - SDK source code
Closes: 789091
Changes:
 fpc (3.0.2+dfsg-6) unstable; urgency=medium
 .
   * Removed declaration of legacy ncursus variables. (Closes: #789091)
 These variables are now internal and no more exported by new ncursus
 libraries.
   * Removed Muti-Arch: same from packages with Architecture: all.
   * Set Muti-Arch: same for fp-units-* packages to allow installing on
 a host sytem for cross compiling.
   * Set Muti-Arch: foreign for fp-docs* and fpc-source* to allow satisfying
 dependency of other architectures using host architecture (all) package.
Checksums-Sha1:
 42b53abd953a287852e94db0cba80156c5dde240 3812 fpc_3.0.2+dfsg-6.dsc
 72f9448cb5c3d2772906d388bceb41a4c5fcfa24 237376 fpc_3.0.2+dfsg-6.debian.tar.xz
 023d3629378d98b986fa4ac7505f50dac6168992 17158 fpc_3.0.2+dfsg-6_amd64.buildinfo
Checksums-Sha256:
 63730b156c4d4b70c58ed5d4fcd37809533598e98c0a553fabb9315dc6af5530 3812 
fpc_3.0.2+dfsg-6.dsc
 3905b9a4f493b45a92bb7adbe4841078323237fe7f891c20efff58f473008b2b 237376 
fpc_3.0.2+dfsg-6.debian.tar.xz
 d9fc91f7fe156844ef737fa29c9886e9eb1c45d2f1a3ff23b8591eaf8f3a4dbd 17158 
fpc_3.0.2+dfsg-6_amd64.buildinfo
Files:
 1d63d3cb4f281154a1145bdf1028715f 3812 devel optional fpc_3.0.2+dfsg-6.dsc
 b06772327a9a686725e8c9ce5df05ac0 237376 devel optional 
fpc_3.0.2+dfsg-6.debian.tar.xz
 69f177e68cc037949ccb4e5bf96250d8 17158 devel optional 
fpc_3.0.2+dfsg-6_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWdk4cxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjA9SAP47g6tgZEkN/+VAJ17UwKiP8yFn
8lU922HuUykhtUR7TAEAvYnl0B0qxFZ++RV1z4ml4HdJvmlISX/YtCf6UzFNt7I=
=BJiM
-END PGP SIGNATURE-



Re: Call for volunteers: FTP Team

2017-08-18 Thread Abou Al Montacir
Hi,
On Fri, 2017-08-18 at 08:24 -0500, Matt Zagrabelny wrote:
...
> > > if you are a Debian Developer, for this. If you are not and want to
> > 
> > > help, read the last paragraph please.
> > 
> > 
> > 
> > If someone hypothetically joins, are they allowed to rename the FTP team
> > 
> > to something that doesn't include "FTP"?
> > 
> 
> Archive Team. Or the A-Team for short. The only Debian team with a theme song.
Why Archive, maybe Queue is more accurate (Q-Team), isn't it?
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Accepted fpc 3.0.0+dfsg-12 (source) into unstable

2017-06-23 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 10 Jun 2017 19:13:48 +0200
Source: fpc
Binary: fpc-3.0.0 fpc-source-3.0.0 fp-compiler-3.0.0 fp-ide-3.0.0 
fp-utils-3.0.0 fp-docs-3.0.0 fp-units-rtl-3.0.0 fp-units-base-3.0.0 
fp-units-fcl-3.0.0 fp-units-fv-3.0.0 fp-units-gtk2-3.0.0 fp-units-db-3.0.0 
fp-units-gfx-3.0.0 fp-units-net-3.0.0 fp-units-math-3.0.0 fp-units-misc-3.0.0 
fp-units-multimedia-3.0.0 fp-units-i386-3.0.0 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source
Version: 3.0.0+dfsg-12
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.0 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.0 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.0 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.0 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.0 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.0 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.0 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.0 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.0 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.0 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.0 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.0 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.0 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.0 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.0 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.0 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.0  - Free Pascal - SDK-3.0.0 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.0 - Free Pascal - SDK source code
Closes: 864148
Changes:
 fpc (3.0.0+dfsg-12) unstable; urgency=medium
 .
   * Fix "[fp-units-rtl-3.0.0] Incorrect conversion from local time to
 UTC". Backported fix from 3.0.2 (Closes: #864148)
Checksums-Sha1:
 42d514207c111d650f1b747301521934a0591ee0 3816 fpc_3.0.0+dfsg-12.dsc
 68bf07e8599c42657959f0eaf0388da5d21529f5 251468 fpc_3.0.0+dfsg-12.debian.tar.xz
 ce05a3185fa9480c6b7710c767bdc8ea0c939bdf 17521 
fpc_3.0.0+dfsg-12_amd64.buildinfo
Checksums-Sha256:
 413abad79eca723d800c18b36d1cbd13d605b22455e4f86fede3181d000c4553 3816 
fpc_3.0.0+dfsg-12.dsc
 3c0404cdda7a2ace61e61386017b448b06ca2dfc618073b5fe0015cb7151a1bb 251468 
fpc_3.0.0+dfsg-12.debian.tar.xz
 b48b3e3bacd6db2114b5e5f24bea9201ab181f31298e876bc46bb226d3ecd60a 17521 
fpc_3.0.0+dfsg-12_amd64.buildinfo
Files:
 1a54cd92ce7efe748e57a513e1ff2a3c 3816 devel optional fpc_3.0.0+dfsg-12.dsc
 9964a3457e41ec813abf877f3a174452 251468 devel optional 
fpc_3.0.0+dfsg-12.debian.tar.xz
 6c8a89e56e5b4387a2d43b083259a58c 17521 devel optional 
fpc_3.0.0+dfsg-12_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EAREKADUWIQS69sZENhB4UNQicQazJVxtVYeNjAUCWU0wkxccYWJvdS5hbG1v
bnRhY2lyQHNmci5mcgAKCRCzJVxtVYeNjFBeAPsGBCceP+qQDKRkfrep8pD5+qld
VGy0n0hfHxT/7xKxEgEAoHiec1bn9Em4Dhm7SzEifZq8T7TpHR2hextSPzBg2WY=
=Nv6s
-END PGP SIGNATURE-



Re: [Fwd: [Pkg-pascal-devel] Bug#472304: marked as done (fpc: doesn't link dynamically)]

2017-01-03 Thread Abou Al Montacir
On Mon, 2017-01-02 at 23:26 +0500, Andrey Rahmatullin wrote:
> On Mon, Jan 02, 2017 at 07:25:04PM +0100, Geert Stappers wrote:
> > Banning those words in the Subject-line to our BTS would be too hars.
> 
> ITYM "won't".

What about requiring signed mail for closing a bug report?
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


[Fwd: [Pkg-pascal-devel] Bug#472304: marked as done (fpc: doesn't link dynamically)]

2017-01-01 Thread Abou Al Montacir
Dear All,

Since last month I'm really stuck with a spammer closing this very same
bug#472304 as soon as I reopen it.

I've reported abuse multiple times via the link at the foot of the bug page but
nothing changed.
Can anyone help please?

bug#472304: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=472304 id="-x-evo-
selection-start-marker">
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Re: Debian does not have customers

2016-09-20 Thread Abou Al Montacir
Sorry, I've promised not to react anymore to this subject, but I felt myself
obliged after the manifest and explicit violation, on my sense, of the DSC by
some people claiming that they contribute to Debian only for their own sake and
do not care about users frustration caused by their poor SW quality.

On Tue, 2016-09-20 at 12:46 +0200, Santiago Vila wrote:
> Bart, you have taken the gift analogy in a too literal sense, but it's
> just an analogy, and it may have its flaws.
> 
> Instead of a gift, I see it more like a fruit that you take from a tree.
Can you please explain to me how do you understand the following statements in
the DSC?

   1. ...
   2. ...
   3. We will not hide problemsWe will keep our entire bug report database open 
forpublic view at all times. Reports that people file online will promptly 
becomevisible to others.
   4. Our priorities are our users and free softwareWe will be guided by the 
needs ofour users and the free software community. We will place their 
interests firstin our priorities. We will support the needs of our users for 
operation in manydifferent kinds of computing environments. We will not object 
to non-free worksthat are intended to be used on Debian systems, or attempt to 
charge a fee topeople who create or use such works. We will allow others to 
createdistributions containing both the Debian system and other works, without 
any feefrom us. In furtherance of these goals, we will provide an integrated 
system ofhigh-quality materials with no legal restrictions that would prevent 
such usesof the system.
When I decided to join Debian I did accept those statement, did you and the
others.
For me these are the most valuable rules in this project, but unfortunately I
see that more and more new contributers ignore them. I don't say most of
contributers but probably the most noisy one that react systematically on any
thread but instead of trying to solve the technical problem, they bring an
ethical one and try to enforce their point of view on the subject.

I feel that this d-d list becomes more political than technical and this is
something making me more and more sad. I did love this project and gave it my
time, but feel more and more frustrated each time I read this list.

I don't want to blame anyone, but just kindly ask to keep discussions in line
with Debian social contract and constitution. That is in my understanding
committing to help Debian, users in order to make it the best operating system.
That was true few years ago (at least it was the most stable one). It becomes
less and less true.

--
Cheers,
About Al Montacir,


signature.asc
Description: This is a digitally signed message part


Bug#837606: general: system freeze

2016-09-19 Thread Abou Al Montacir
On Thu, 2016-09-15 at 11:30 +0200, Vincent Lefevre wrote:
> On 2016-09-15 10:10:23 +0200, Abou Al Montacir wrote:
> > That is very similar to the issue I'm experiencing. However I can
> > reproduce this 100% when opening a page on linkedIn using epiphany
> > browser.
> 
> Then I think that you should give strace information + system logs.
Thanks Vincent for the only valuable answer I've got on this.

I tried that but unfortunately could not reproduce it again due to probably my
recent upgrade. I'll keep trying until I get it.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#838211: general: black screen after suspending

2016-09-19 Thread Abou Al Montacir
Hi Maicon,

You will need to gather more information about this issue to be solved.
Can you please provide as much information as you can about your HW (laptop
manufactuerer, series, ...)?
Can you also join the /var/log/syslog file just after the a system crash?
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#829076: general: Random freezes but the mouse can still move

2016-09-18 Thread Abou Al Montacir
Hi John,

On Thu, 30 Jun 2016 11:37:24 +0200 John <john_m...@t-online.de> wrote:
> Package: general
> Severity: grave
> Justification: causes non-serious data loss
> 
> I'm running the current 64-bit Debian with the Cinnamon desktop and have been
experiencing 'freezes' for about 
> a month now. The mouse still moves around but clicking on any window produces
no response. However right-clicking 
> on any window (eg Firefox) brings up the context menu for the desktop!?This
looks more like a bug in the window manager rather than a general bug. I'd
recommend to reassign it.

> 
> I run a twin-screen set-up and looking at the screens which were timed-out I
noticed that the times on the two 
> screens were different! One was reading 11:03 and the other 11:16!Like if one
of the screens stop updating?

> 
> After a few minutes both screens were frozen and I had to Ctrl+Alt+F1, kill
the x-session-manager which resulted 
> in the login screen and the system wsudo gedit /var/log/syslogas usable
again..
> 
> >From this I conclude that the problem is OS-related and not driver-related
(as a twin-screen set-up is configured 
> in the OS).From this I conclude that the OS part (kernel and basic utilities)
are still running correctly but the window manager stops dispatching events,
maybe due to a buggy program catching the focus and incorrectly handling the X
events. I'd recommend again to reassign this bug to the window manager package.
There you will probably find a better chance to get help.
-- 
Cheers,
Abou Al Montacir 


signature.asc
Description: This is a digitally signed message part


Re: Debian does not have customers, but users

2016-09-18 Thread Abou Al Montacir
On Sat, 2016-09-17 at 13:11 +0200, W. Martin Borgert wrote:
> On 2016-09-16 21:26, Nicholas D Steeves wrote:
> > What about the term client? ;-)
> 
> What about the term "users"?
> 
> (We use the word already in our social contract
> and IMHO it serves us well.)
I see that most people are interested in the discussion for the sake of
discussion. I still received only 1 mail relevant: use strace to debug your
problem!

you can call it users, I call it customers or public or what ever! If you don't 
care about users then you will loose them and you be very happy to be anonymous 
project between billions on the web.

When I started using Debian it was because it was a project caring about 
quality. "We release when we are ready!" was the slogan. Meaning no time frame 
but quality!
Today Users say I can't use your SW anymore because it is freezing and you say 
we don't sell anything, we don't care.

I'll stop talking on this thread. I'll only add comment to the bug report 
whenever I have more related information to report. You can close it or ignore 
it. But be sure if you continue doing that and disappointing users, you will 
end being a community of geeks developing SW for themselves only. It is no more 
Debian and the biggest OS project, it will be an unknown project with big 
history showing how we can touch the summit and then fall down!

Sorry for that, you can answer or not, I'm not going to read this anymore.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-15 Thread Abou Al Montacir
Thanks The Wanderer,

You explained it better that I can ever do! It is a perception problem at the
first plane.
-- 
Cheers,
Abou Al Montacir

On Thu, 2016-09-15 at 13:39 -0400, The Wanderer wrote:
> On 2016-09-15 at 13:24, Russ Allbery wrote:
> 
> 
> 
> > > Abou Al Montacir <abou.almonta...@sfr.fr> writes:
> 
> > 
> 
> >> Does improve distribution means hiding issues? I don't think it
> 
> >> is.
> 
> > 
> 
> > You keep using this term, but I have no idea what you mean by it.
> 
> > What information do you feel like we're hiding?
> 
> 
> 
> I suspect that he feels that closing a bug report without having first
> 
> tried to address it equals pretending that the problem reported in the
> 
> bug report does not exist, and thus, represents an attempt to hide the
> 
> fact that the problem does exist.
> 
> 
> 
> Given all the surrounding facts (some of which you've cited, quite
> 
> validly, in this thread), I'm not sure he's right, but - at least from
> 
> the outside, and as a general matter - the perception does seem to be a
> 
> reasonable one. Which only means that this represents a potential PR
> 
> problem, albeit perhaps a minor one.


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-15 Thread Abou Al Montacir

On Wed, 2016-09-14 at 12:51 -0700, Russ Allbery wrote:
> > Abou Al Montacir <abou.almonta...@sfr.fr> writes:
> 
> > Because you think people will not be frustrated if they experience a bug
> > and that we prevent them to raise bugs? Hiding reality is always
> > bad?. Look at the original reporter last message. He seems quite
> > disappointed by the project reaction. He should feel as we don't care
> > about our users. I personally sometimes feel the same.
> 
> However, this is unavoidable for that sort of bug report.  As much as
> anyone might like the situation to be different, Debian is not going to be
> able to act on a bug report with that little information complaining about
> a whole-system problem.  All that would happen if we didn't close the bug
> is that it would just be ignored forever, which I think is even worse.
There are little information because the guy reporting the bug, or the other one
suffering from it (me) does not know how to debug such a bug.

In my case, when I get such a report for my package, I start instructing the
user to gather more information. Later, if the user does not help I wait maybe
other users see the bug and help reproducing. If after several months none react
then I tag it and close it. If it happens someone reopen it I'm glad again to
hunt it.
> 
This is the reality of a volunteer project with limited time for triage of
bugs that haven't been traced technically to the faulty component.
Sometimes (rarely) someone will have the free time and desire to do that
tracing, but that can happen as easily (or more easily) on debian-user,
and isn't how we use the bug system.
bug system is meant to track issues, not to debug them. If an issue is there it
should appear, especially in an open source project. We don't care to loose
customers because of an issue faced by someone, but we are transparent enough to
tell users that someone discovered that and they may fall in it.
> 
Debian's bug system is a tool we use to improve the distribution, not a
user support channel.  We should not retain bugs that do not help us
achieve that.  It would be great if it could also be a user support
channel, but this is just unachievable for a volunteer-maintained
distribution like Debian, and we should avoid creating the impression that
we promise to do this.
Does improve distribution means hiding issues? I don't think it is.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-15 Thread Abou Al Montacir
Hi Joël,

On Wed, 2016-09-14 at 15:38 +0200, Joël Krähemann wrote:
> Hi
> 
> reproducing the critical parts in a unit test would be helpful
> 
> Something like in the attachment.
> 
> install dependencies:
> 
> apt-get install libcunit1-dev
> 
> Compile with
> > gcc -g -o mutex_fail_test mutex_fail_test.c `pkg-config --cflags --libs 
> > cunit`
-pthread
> 
> launch
> ./mutex_fail_test
> 
> 
Thanks for that,

Here are the results:
$gcc -g -o mutex_fail_test mutex_fail_test.c `pkg-config --cflags --libs cunit`
-pthread
$./mutex_fail_test


 CUnit - A unit testing framework for C - Version 2.1-3
 http://cunit.sourceforge.net/


Suite: MutexFailTest
  Test: test of pthread_mutex_lock concurrently with unassigned pointer
...Segmentation fault

-- 
Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-15 Thread Abou Al Montacir
Hi Adam,
On Thu, 2016-09-15 at 04:07 +0200, Adam Borowski wrote:
> Even quite experienced people may have a hard time investigating a "system
> 
> freeze".
> 
> 
> 
> It just happens that I had two today; the system was working reliably before
> 
> with no unexplained crashes[1] at least in kernelly stuff.  Then out of a
> 
> sudden music gets stuck on a small buffer, screen freezes, no response
> 
> to anything, even no SysRq; ping worked for a short time then stopped. 
> 
> Half an hour later a repeat.  I've attached a serial console but it's
> 
> apparently a heisenbug -- no reproduces since.
That is very similar to the issue I'm experiencing. However I can reproduce this
100% when opening a page on linkedIn using epiphany browser.

I can send you the URL (privately), as I don't have serial port on my laptop.
But generally each time I try to accept someone's invitation or send an
invitation to someone, it happens. It works well with other browsers, but I do
prefer not changing my browser.
-- 
Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Re: Bug#837723: Removing/Disabling the general psuedo package; refering to debian-u...@lists.debian.org

2016-09-14 Thread Abou Al Montacir
On Wed, 2016-09-14 at 11:44 +0200, Holger Levsen wrote:
> On Wed, Sep 14, 2016 at 11:34:26AM +0200, Abou Al Montacir wrote:
> > > > I'm quite disappointed that instead of trying to fix the bug you are 
> > > > just
trying
> > to discuss how to make user life more complicated.
> 
> how about you take care about those 32 bugs against
> https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=general;dist=unstable
> then?
I'll have a look. I don't promise I can help as I don't know if I have the skill
for all of them but it is worth the trial.

> 
Most of them needs reassigning to the proper package.
I'll see what I can do.

> 
If you really care about those users submitting those bugs, you should
help them reassigning those bugs, so they will become visible and acted
upon.

Talk is cheap. (Sorry.)
Yes I do know!
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#837723: Removing/Disabling the general psuedo package; refering to debian-u...@lists.debian.org

2016-09-14 Thread Abou Al Montacir
I'm quite disappointed that instead of trying to fix the bug you are just trying
to discuss how to make user life more complicated.
What is the difference between Debian and any commercial SW? Just that it
becomes less user friendly with less support despite it is cost free.
-- 
Cheers,
Abou Al Montacir

On Wed, 2016-09-14 at 09:10 +, Holger Levsen wrote:
> On Tue, Sep 13, 2016 at 04:11:21PM -0700, Don Armstrong wrote:
> > bugs.debian.org controls whether pseudopackage exist at all; reportbug
> > is responsible for what reportbug outputs as possible pseudopackages.
> 
> I'm well aware of that…
>  
> > That's true. There are some bugs which affect lots of packages, but
> > don't really belong to a single one of them. general is as good a place
> > as any to coordinate those bugs.
> 
> agreed. we just need *a* place in the BTS for those…
> 
> > Maybe just changing this text:
> > 
> >    Please enter the name of the package in which you have found a
> >    problem, or type 'other' to report a more general problem. If you
> >    don't know what package the bug is in, please contact
> > > >    debian-u...@lists.debian.org for assistance.
> > 
> > To something like:
> > 
> >    Please enter the name of the package in which you have found a
> >    problem, If you don't know what package the bug is in, please contact
> > > >    debian-u...@lists.debian.org for assistance. Type 'other' to report a
> >    problem in a pseudopackage.
> > 
> > would help address this problem?
> 
> sounds good/better to me!
> 
> 


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-14 Thread Abou Al Montacir
On Tue, 2016-09-13 at 15:51 -0700, Josh Triplett wrote:
> Russ Allbery wrote:
> > Should we just disable the general pseudo-package?  Is it serving a
> > sufficient useful purpose to warrant the constant (if somewhat slow)
> > stream of misdirected bug reports?
> 
> I don't think so, no.  Seems better for reportbug in the "I don't know
> where the bug is" case to just direct the user to debian-user, and
> perhaps provide some generally useful information for them to paste into
> the mail.
And the most probable answer will be we don't experience this bug, we can't
help!

We are here facing a bug that appears only on some devices. The issue is tricky
and the user does not have the skills to debug. The duty of the project is to
help him investigating the right way so that the bug get solved. Not saying ask
the community.

I would be in favor that general get forwarded to debian-user, but then it will
become a forum and many noise will raise. If developers will be lost there, then
what to say for lambda user?

I think warning that general bugs should be first discussed in debian-user is
the best option we can afford. But what ever is the option, the result is that a
bug does not get solved by just making reporting it more difficult.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-14 Thread Abou Al Montacir
On Tue, 2016-09-13 at 14:27 -0700, Russ Allbery wrote:
> > Holger Levsen <hol...@layer-acht.org> writes:
> 
> > it seems you haven't realized two things:
> > - the "general" pseudo package is mostly useless
> > - when Ben closed this bug he gave a pointer to another bug which
> >   basically is the same issue *and* a much better bug report. You
> >   completly failed to reply to *that*.
> 
> > I'd close this bug again, but I gave up on caring about bugs in the
> > "general" pseudo package…
> 
> Should we just disable the general pseudo-package?  Is it serving a
> sufficient useful purpose to warrant the constant (if somewhat slow)
> stream of misdirected bug reports?
> 
> I feel like every bug report that's come into general would have been
> better as an email message to debian-user (assuming the reporter wasn't
> able to do a more detailed diagnosis and figure out which package was
> actually the cuase).
> 
> People always get frustrated when we close bugs to general as
> unactionable.  Maybe we're just creating an attractive nuisance and should
> shut it down entirely to avoid that frustration?
Because you think people will not be frustrated if they experience a bug and
that we prevent them to raise bugs? Hiding reality is always bad?. Look at the
original reporter last message. He seems quite disappointed by the project
reaction. He should feel as we don't care about our users. I personally
sometimes feel the same.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#837606: general: system freeze

2016-09-14 Thread Abou Al Montacir
Hi Holger,

On Tue, 2016-09-13 at 17:08 +, Holger Levsen wrote:
> On Tue, Sep 13, 2016 at 04:15:54PM +0200, Abou Al Montacir wrote:
> > Control: reopen -1
> > > > Sorry, I don't think that the best way to solve this issue is to close 
> > > > the
bug.
> 
> it seems you haven't realized two things:
> - the "general" pseudo package is mostly useless
Yes really? I don't agree here. It just pops issues that users can't affect, but
there are real issues

> - when Ben closed this bug he gave a pointer to another bug which
  basically is the same issue *and* a much better bug report. You
  completly failed to reply to *that*.
Yes that seems very close to the current problem, but is concerning a particular
linux image that I'm not using.
Also here the freeze is almost immediate, I cant even type anything when it
happens.
> 
I'd close this bug again, but I gave up on caring about bugs in the "general"
pseudo package…
Do you think that closing this bug will help improving user experience? I don't.
I never close bugs on my packages because I think only few users are bothered.

 I do care about any user as I care about myself. This is for me the real 
meaning of "Debian is the universal operating system". Here universal means all 
kind of users.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#837606: general: system freeze

2016-09-13 Thread Abou Al Montacir
Hi Mathieu

On Tue, 2016-09-13 at 16:36 +0200, Mathieu Malaterre wrote:
> > > - What is your hardware? Desktop, laptop? Models? Video cards and 
> > > drivers can cause of hangs.
> >
> > A Dell pressario series 5500. Intel video card.
> 
> Could you please check:
> 
> https://bugzilla.kernel.org/show_bug.cgi?id=109051 
> 
> 
> 
This seems another issue that I'm experiencing too, but not the same as here.

The current issue is a freeze caused by a buggy program that makes the system
unable to recover.

The one you pointed to is a system crash, I do experience too from time to time
when waking up my laptop.
However I feel some kernel versions are better than others. Some of them do not
almost hang. The latest one hangs frequently.
But this is not related to this bug report.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#837606: general: system freeze

2016-09-13 Thread Abou Al Montacir
Hi Joël,

On Tue, 2016-09-13 at 16:26 +0200, Joël Krähemann wrote:
> Hi
> 
> I experienced the same as developing GSequencer probably a concurrency
> issue. I had to fix it.
> This can happen may be with unintialized mutices or conditional locks.
I fully agree there is a bug in epiphany browser, but still think that Linux
shall be able to handle correctly such a use case.

In the very old days, the kernel would killed the process, today the swap daemon
hangs du to a faulty program. This I can not call improvement over time.
-- 
Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#837606: general: system freeze

2016-09-13 Thread Abou Al Montacir
Control: reopen -1
Sorry, I don't think that the best way to solve this issue is to close the bug.

I personally encounter the very same issue when using epiphany browser with
lindedIn. Imagine yourself sowing to your colleague something, you are
enthusiast, and the unique  Linux user in the company, and proud to do it, but
then it hangs. Awful, especially when they tackle you about all the says you did
about an well known operating system whith blue screen!

Now back to your request:

On Tue, 13 Sep 2016 08:42:59 +1200 Ben Caradoc-Davies <b...@transient.nz> wrote:
> Rouven,
> 
> you have provided very little information so it will be hard for anyone 
> to reproduce this problem.Yes, this is true, but not a reason to trash the bug
report.

> 
> - What causes the problem? Are you running any program in particular?The cause
is that the system starts swapping on a laptop with 16GiB RAM and 32GiB swap on
a 5200R/mn
OK, my hard drive is slow but I don't see why it should hang the system.

> 
> - What is your hardware? Desktop, laptop? Models? Video cards and 
> drivers can cause of hangs.A Dell pressario series 5500. Intel video card.

> 
> - What do you mean by "freezes"? Can you ssh into the machine? Can you 
> suspend/resume? If you press the power button what happens?The only thing I
can do is hit the power button for more than 4s. Otherwise, nothing works. I
have a statical image, mouse can not move anymore, the clock stops updating on
gnome panel and lid close dos not react any more. System does not enter sleep
mode when I press power button, and even Verr/num led does not react anymore.

> 
> - Does your keyboard work? Are you able to switch to a console with 
> Ctrl-Alt-F1? Back with Ctrl-F7?No, absolutely no.

> 
> - Any indication of hardware problems such as failing storage or memory 
> errors? Overheating?No, it happens only when using the browser. It is clear
that the browser have a bug but the system is not expected to freeze.

> 
> - Wireless keyboard low battery or lost connection?No

> 
> In any case, the Debian Bug Tracking System is not the most suitable 
> forum for general support unless you can determine specific steps to 
> reproduce this problem.Tried forums: https://lists.debian.org/debian-user/2015
/10/msg01329.html
However it is not a matter of discussion, it is a matter of tracking a real
issue!

> 
> Kind regards,

Thanks for your effort

-- 
Abou Al Montacir







signature.asc
Description: This is a digitally signed message part


Re: trying to use wireless not from gnome... what's the incantation?

2016-05-23 Thread Abou Al Montacir
On Mon, 2016-05-23 at 08:28 +0200, Adam Borowski wrote:
> > 
> > I'm posting here both in hope of a solution, and because this seems
> > like a bug.  How come this only works from gnome?  nmcli in particular
> > looks like it's trying to be a general-purpose solution, but somehow
> > it too only works from gnome.
> NM is closely tied to Gnome so regressions in non-Gnome use aren't
> surprising.
Login in Gnome once, activate wifi and ask that the connection should be used by
all users.
Then NM will save the password some were so that it connect without user login.
Hope this works also for you.
-- 
Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Accepted fpc 3.0.0+dfsg-4 (source amd64 all) into unstable

2016-03-22 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 22 Mar 2016 08:54:18 +0100
Source: fpc
Binary: fpc-3.0.0 fpc-source-3.0.0 fp-compiler-3.0.0 fp-ide-3.0.0 
fp-utils-3.0.0 fp-docs-3.0.0 fp-units-rtl-3.0.0 fp-units-base-3.0.0 
fp-units-fcl-3.0.0 fp-units-fv-3.0.0 fp-units-gtk2-3.0.0 fp-units-db-3.0.0 
fp-units-gfx-3.0.0 fp-units-net-3.0.0 fp-units-math-3.0.0 fp-units-misc-3.0.0 
fp-units-multimedia-3.0.0 fp-units-i386-3.0.0 fpc fpc-source fp-compiler fp-ide 
fp-utils fp-docs fp-units-rtl fp-units-base fp-units-fcl fp-units-fv 
fp-units-gtk2 fp-units-db fp-units-gfx fp-units-net fp-units-math fp-units-misc 
fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 3.0.0+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-3.0.0 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-3.0.0 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-3.0.0 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-3.0.0 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-3.0.0 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-3.0.0 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-3.0.0 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-3.0.0 - Free Pascal - graphics-library units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-3.0.0 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-3.0.0 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-3.0.0 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-3.0.0 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-3.0.0 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-3.0.0 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-3.0.0 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-3.0.0 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-3.0.0  - Free Pascal - SDK-3.0.0 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-3.0.0 - Free Pascal - SDK source code
Closes: 818663
Changes:
 fpc (3.0.0+dfsg-4) unstable; urgency=medium
 .
   [ Peter Michael Green ]
   * modify 
debian/patches/Keep-the-GOT-offset-in-a-virtual-register-for-i386-n.patch
 (Closes: Bug#818663)
 for compatibility with fpc 3.0.0 to fix FTBFS on i386
 + move globtype from implementation uses to interface uses in hlcgcpu.pas
 + remove "paras" parameter from thlcgcpu.a_call_name
 + Add symconst and aasmcpu to implementation uses in hlcgcpu.pas
Checksums-Sha1:
 741d27af6dca474bbe5cde4e0c71d8b238bcd14b 3771 fpc_3.0.0+dfsg-4.dsc
 14401ac2a3d797191d02d6cec550d7e70c983d0d 240740 fpc_3.0.0+dfsg-4.debian.tar.xz
 686756bcb8ed3263d0264964c6358a12d70b5ad4 1954814 
fp-compiler-3.0.0_3.0.0+dfsg-4_amd64.deb
 b9ac1c07e8f25ffbb905d058615287bd18e03d7a 40258 
fp-compiler_3.0.0+dfsg-4_amd64.deb
 bdda51755d2b9a8e136a70e427ee65786dc852bd 2365948 
fp-docs-3.0.0_3.0.0+dfsg-4_all.deb
 0312c92c92a08440442654452936d04003820305 40192 fp-docs_3.0.0+dfsg-4_all.deb
 bf1f4ae48a84b9c0dd48a784f6a68d174a3c3a29 1412106 
fp-ide-3.0.0_3.0.0+dfsg-4_amd64.deb
 29f8c29d2065b8bc3ecc2b2f05b881387f1617b1 40308 fp-ide_3.0.0+dfsg-4_amd64.deb
 b481fd2e6db0895aed38b25d0ec249edf3024271 1032408 
fp-units-base-3.0.0_3.0.0+dfsg-4_amd64.deb
 cabacd58f49afdd974361ddef1c27fac19d07994 40242 
fp-units-base_3.0.0+dfsg-4_amd64.deb
 d30f706c7a3ebd7b15b6956096810b68a277bd29 781646 
fp-units-db-3.0.0_3.0.0+dfsg-4_amd64.deb
 e9360cd1ab9ac0a11606c18604826e99c14b8108 40238 
fp-units-db_3.0.0+dfsg-4_amd64.deb
 4ecf77187463e64149ad8144257e3ceb43a6e582 4228282 
fp-units-fcl-3.0.0_3.0.0+dfsg-4_amd64.deb
 376251e6f11488952073d7bee92ecbcc2204a38c 40194 
fp-units-fcl_3.0.0+dfsg-4_amd64.deb
 49165b01e1df5e64d95e3f81f843696c5226eef4 312938 
fp-units-fv-3.0.0_3.0.0+dfsg-4_amd64.deb
 4810d81ffc38f4e73c4ec5694c8cdb41f4fd0a24 40240 
fp-units-fv_3.0.0+dfsg-4_amd64.deb
 b36a9621e7ea07ea600bb8c581275b4f3e47cc05 1139874 
fp-units-gfx-3.0.0_3.0.0+dfsg-4_amd64.deb
 8515e9c3a9534357ad3adaa284d7be5252

Accepted lazarus 1.6+dfsg-2 (source all amd64) into unstable

2016-03-21 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 21 Mar 2016 09:57:15 +0100
Source: lazarus
Binary: lazarus-1.6 lazarus-src-1.6 lazarus-ide-1.6 lazarus-ide-gtk2-1.6 
lazarus-ide-qt4-1.6 lcl-1.6 lcl-utils-1.6 lcl-units-1.6 lcl-nogui-1.6 
lcl-gtk2-1.6 lcl-qt4-1.6 lazarus-doc-1.6 lazarus lazarus-src lazarus-ide 
lazarus-ide-gtk2 lazarus-ide-qt4 lcl lcl-utils lcl-units lcl-nogui lcl-gtk2 
lcl-qt4 lazarus-doc
Architecture: source all amd64
Version: 1.6+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team <pkg-pascal-de...@lists.alioth.debian.org>
Changed-By: Abou Al Montacir <abou.almonta...@sfr.fr>
Description:
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-1.6 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-1.6 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - common IDE files dependency package
 lazarus-ide-1.6 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - Last GTK+ version dependency package
 lazarus-ide-gtk2-1.6 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt4 - IDE for Free Pascal - Last Qt version dependency package
 lazarus-ide-qt4-1.6 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-1.6 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-1.6- Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-1.6 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-1.6 - Lazarus Components Library - no GUI backend
 lcl-qt4- Lazarus Components Library - Qt backend dependency package
 lcl-qt4-1.6 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-1.6 - Lazarus Components Library - backend independent components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-1.6 - Lazarus Components Library - command line build tools
Changes:
 lazarus (1.6+dfsg-2) unstable; urgency=medium
 .
   * Fixed a bug causing code help toi handle only lower case file names.
Checksums-Sha1:
 33103ff53e2e2dad1b3403f77267c26fcae1540e 2832 lazarus_1.6+dfsg-2.dsc
 40125c2b361a9b019e8a6115bd293150ff0b959d 59684 lazarus_1.6+dfsg-2.debian.tar.xz
 2810d519b5ac1b132c8efe7e19be0c29e686ae6f 40592 lazarus-1.6_1.6+dfsg-2_all.deb
 716312dedc22b57d81c865f44162aebd54366a9b 194426 
lazarus-doc-1.6_1.6+dfsg-2_all.deb
 14bfc1b7b4b1f97c295c260cc7c8ae74ead819c4 40198 lazarus-doc_1.6+dfsg-2_all.deb
 4a131f894f32c905055394288969bc4a5de67d06 3587732 
lazarus-ide-1.6_1.6+dfsg-2_amd64.deb
 ab7500e620631d43e21ba3e6a71572e5d6cd3c78 6132464 
lazarus-ide-gtk2-1.6_1.6+dfsg-2_amd64.deb
 bfd6930007aaa52446d9b58b2aaa98314227829e 40102 
lazarus-ide-gtk2_1.6+dfsg-2_all.deb
 adf9497f13dbc3e867dd13fe3169c82ad7f03029 6028932 
lazarus-ide-qt4-1.6_1.6+dfsg-2_amd64.deb
 53ab7bdea349d50e2014f5301cc9f8c0073cce97 40104 
lazarus-ide-qt4_1.6+dfsg-2_all.deb
 d5198c5c947f0ebb620502c54a9416aed5238a73 40098 lazarus-ide_1.6+dfsg-2_all.deb
 4b7013d071a671c6ada7e3c587812dd16bb7d052 13132274 
lazarus-src-1.6_1.6+dfsg-2_all.deb
 eda52871bc9a5cb24d069c75421c0808f68e797d 40122 lazarus-src_1.6+dfsg-2_all.deb
 9e5ee50b4a8dfce508f93ff3488dc01952f44f9d 40082 lazarus_1.6+dfsg-2_all.deb
 e38e34d39d78049042ff637caa69623294cdaf89 40134 lcl-1.6_1.6+dfsg-2_amd64.deb
 1fa0eb73739fae43576bc275a2b013a2a79bcb43 7411342 
lcl-gtk2-1.6_1.6+dfsg-2_amd64.deb
 269354551cda20066ee4911c6bb85c6a35de0386 40100 lcl-gtk2_1.6+dfsg-2_all.deb
 627a3014f4295bfbce46647a5b1dbe2c0fdd0232 6729570 
lcl-nogui-1.6_1.6+dfsg-2_amd64.deb
 f1f24ea1fe710474267927570a9312b4b09284dc 40120 lcl-nogui_1.6+dfsg-2_all.deb
 0474c9678bcd6382554ae286f238fc1b82ac86cf 1814064 
lcl-qt4-1.6_1.6+dfsg-2_amd64.deb
 0388c9193b41ca86b36550ccee2fd5ea98a7aac3 40102 lcl-qt4_1.6+dfsg-2_all.deb
 dbde7593df85561d4c40852035f992d30ef0b5b8 13572324 
lcl-units-1.6_1.6+dfsg-2_amd64.deb
 d501eabfc89f1aabc5485c0505063122404fdf54 40090 lcl-units_1.6+dfsg-2_all.deb
 2d2321b033d3706a9c44119ac457841d8fef6d5f 3526308 
lcl-utils-1.6_1.6+dfsg-2_amd64.deb
 ef662d17d68a02cfe43fdcf1f03093dcdafaa13d 40100 lcl-utils_1.6+dfsg-2_all.deb
 ff6d5ff764efce5e5ad106caf89cb16836c51c75 40080 lcl_1.6+dfsg-2_all.deb
Checksums-Sha256:
 d711af903987aeb7c52930ad6f87f00d022cb98d57e44fddfe2b22de4b59532d 2832 
lazarus_1.6+dfsg-2.dsc
 db4dad3a9352d9c3fb83ac9837c89d9aebb90759aec6205fa8bcc07d8908b146 59684 
lazarus_1.6+dfsg-2.debian.tar.xz
 f7b054390d7210906178fe760953c6abe97554087b65b960eb99172aa0b85728 40592 
lazarus-1.6_1.6+dfsg-2_all.deb
 5b68e0857ce3759d31b3cb3c4bd1c03fc47ae543e35dfdd21deadfb4c3bf4588 194426 
lazarus-doc-1.6_1.6+df

Re: How shall I report a bug in the .deb packaging itself?

2015-12-21 Thread Abou Al Montacir
On Mon, 2015-12-21 at 17:03 +0100, Julian Andres Klode wrote:
> On Mon, Dec 21, 2015 at 04:57:39PM +0100, Abou Al Montacir wrote:
> > Hi Julian
> > 
> > On Mon, 2015-12-21 at 16:13 +0100, Julian Andres Klode wrote:
> > > I also wrote I am thinking about adding some kind of apt revert command
> > > that allows you to revert entries from apt's history.log, which would
> > > allow
> > > you to undo install commands.
> > That will be really a great feature. I was always upset that apt(itude) does
> > not
> > have this feature. I was even thinking about a feature that allows you to
> > recover your system at a certain date based on snapshots.
> > The last time I was missing this is today. I updated ssh and suddenly I
> > could
> > not access anymore my github account due to my key was rejected. I would
> > loved
> > to aptitude revert instead of doing this manually.
> 
> In a lot of cases it won't work though. For example, reverting an
> upgrade is formally unsupported (so you'd need to answer yes to
> some warnings), and in any case, the old versions and packages
> still need to be available in your sources. Actually, anything
> where something other than an install happened (whether remove
> or upgrade) is a bit flaky.
I was more thinking about sid/testing users that stable users. So these people
should be experimented enough to be able to deal with warnings.
Normally one can always access snapshots to recover a given version of any
package so why should one have to have the old packages?
> A better option is to use snapshotting on the file system.
> 

Yes was thinking about putting / in a git repository and playing with
.gitignore, but maybe there are better solutions.
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Re: How shall I report a bug in the .deb packaging itself?

2015-12-21 Thread Abou Al Montacir
Hi Julian

On Mon, 2015-12-21 at 16:13 +0100, Julian Andres Klode wrote:
> I also wrote I am thinking about adding some kind of apt revert command
> that allows you to revert entries from apt's history.log, which would allow
> you to undo install commands.
That will be really a great feature. I was always upset that apt(itude) does not
have this feature. I was even thinking about a feature that allows you to
recover your system at a certain date based on snapshots.
The last time I was missing this is today. I updated ssh and suddenly I could
not access anymore my github account due to my key was rejected. I would loved
to aptitude revert instead of doing this manually.
-- 
Cheers,
Abou Al Montacir

signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-28 Thread Abou Al Montacir
On Mon, 2014-07-28 at 17:31 +0100, Ian Jackson wrote:
 Abou Al Montacir writes (Re: How Debian should handle users requests?):
  On Fri, 2014-07-25 at 13:24 +0100, Ian Jackson wrote:
   On the contrary, we should definitely close bugs which are very
   unlikely to produce any actionable information.
 ...
  There are two kinds of those bugs: those we won't fix and those we don't
  have the time or the courage to fix. The last one shall stay until maybe
  someone can fix them.
 
 No.  There are also those which won't be fixed because we are never
 going to get enough useful information, no matter how hard we try.
 This is generally the case with user support requests missend as bugs
 against `general'.
Those are either fixed in the long term or we finish by getting someone
smart enough who reproduce them. I'd suggest to keep them.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-25 Thread Abou Al Montacir
On Fri, 2014-07-25 at 13:24 +0100, Ian Jackson wrote:
 Abou Al Montacir writes (Re: How Debian should handle users requests?):
  On Sun, 2014-07-20 at 17:01 +0200, Adam Borowski wrote:
   Suspend quirks are among worst bugs for a non-hacker to report.
 
  I fully understand this, but we can not close bugs just because we
  assume that the user will not be able to debug this and produce relevant
  bugs.
 
 On the contrary, we should definitely close bugs which are very
 unlikely to produce any actionable information.
 
 Ian.
There are two kinds of those bugs: those we won't fix and those we don't
have the time or the courage to fix. The last one shall stay until maybe
someone can fix them.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Accepted lazarus 1.2.4+dfsg-1 (source i386 all)

2014-07-24 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Jul 2014 20:16:50 +0200
Source: lazarus
Binary: lazarus-1.2.4 lazarus-src-1.2.4 lazarus-ide-1.2.4 
lazarus-ide-gtk2-1.2.4 lazarus-ide-qt4-1.2.4 lcl-1.2.4 lcl-utils-1.2.4 
lcl-units-1.2.4 lcl-nogui-1.2.4 lcl-gtk2-1.2.4 lcl-qt4-1.2.4 lazarus-doc-1.2.4 
lazarus lazarus-src lazarus-ide lazarus-ide-gtk2 lazarus-ide-qt4 lcl lcl-utils 
lcl-units lcl-nogui lcl-gtk2 lcl-qt4 lazarus-doc
Architecture: source i386 all
Version: 1.2.4+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description:
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-1.2.4 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-1.2.4 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - common IDE files dependency package
 lazarus-ide-1.2.4 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - Last GTK+ version dependency package
 lazarus-ide-gtk2-1.2.4 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt4 - IDE for Free Pascal - Last Qt version dependency package
 lazarus-ide-qt4-1.2.4 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-1.2.4 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-1.2.4  - Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-1.2.4 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-1.2.4 - Lazarus Components Library - no GUI backend
 lcl-qt4- Lazarus Components Library - Qt backend dependency package
 lcl-qt4-1.2.4 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-1.2.4 - Lazarus Components Library - backend independent components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-1.2.4 - Lazarus Components Library - command line build tools
Changes:
 lazarus (1.2.4+dfsg-1) unstable; urgency=low
 .
   * New upstream release with few fixes and official support of FPC 2.6.4.
 - The detailed list of changes can be found here:
   
http://wiki.lazarus.freepascal.org/Lazarus_1.2_fixes_branch#Fixes_for_1.2.4_.28Merged.29
Checksums-Sha1:
 b93e4b80cc49d258ddb3f166cf2a83c7ec729b2b 2774 lazarus_1.2.4+dfsg-1.dsc
 94d7ed9cf3fe667408e1fe5b3c536fcbca57299c 48216670 
lazarus_1.2.4+dfsg.orig.tar.gz
 e279f5ad02084e4a40cf7edfd1f3ba70326317a0 43248 
lazarus_1.2.4+dfsg-1.debian.tar.xz
 6af47a12dcbc8d2d3e57d675b18c0f8dd4249917 3305804 
lazarus-ide-1.2.4_1.2.4+dfsg-1_i386.deb
 c6549d89152d6b23248fa9bee953964e0f48b14a 5614818 
lazarus-ide-gtk2-1.2.4_1.2.4+dfsg-1_i386.deb
 bbd8728327407a1df5ca5fee83b06b9886025947 5518400 
lazarus-ide-qt4-1.2.4_1.2.4+dfsg-1_i386.deb
 4845c68f80847bf2278450dea3cf58b0d73af9c0 23408 lcl-1.2.4_1.2.4+dfsg-1_i386.deb
 07c34935ac5c7abfd808a6f1508175ce175a7161 3307198 
lcl-utils-1.2.4_1.2.4+dfsg-1_i386.deb
 80cb70b141b1d7306d66a9560e6528cb917b8710 13015024 
lcl-units-1.2.4_1.2.4+dfsg-1_i386.deb
 2da52adc599e66fe7ae8c89f4ae35e3e0803db2c 8100614 
lcl-nogui-1.2.4_1.2.4+dfsg-1_i386.deb
 a19eb1db28249983209bbb7f8ef195d9871fc103 11537832 
lcl-gtk2-1.2.4_1.2.4+dfsg-1_i386.deb
 9d04dba121cd567d12cfb11c8f7154627461f4e8 1886056 
lcl-qt4-1.2.4_1.2.4+dfsg-1_i386.deb
 564b9b7c0c4954287f4d879666af5b0d4bd00620 23808 
lazarus-1.2.4_1.2.4+dfsg-1_all.deb
 88d21d506975672dcbf41f8b4463feca6038889e 12680048 
lazarus-src-1.2.4_1.2.4+dfsg-1_all.deb
 4c9a4e9e8e464d445d6ba9c7a3f146f2e19c864c 13278852 
lazarus-doc-1.2.4_1.2.4+dfsg-1_all.deb
 b9a870ad01d114eb2207a247abb8fbb32751531d 23360 lazarus_1.2.4+dfsg-1_all.deb
 fb34e58634a083af588894857bedcc569ca55e25 23414 lazarus-src_1.2.4+dfsg-1_all.deb
 46c2b4d404739af27be683fe12365436f4aff779 23384 lazarus-ide_1.2.4+dfsg-1_all.deb
 088d961ad18fc276d27d247c7fe1241d6c07b655 23374 
lazarus-ide-gtk2_1.2.4+dfsg-1_all.deb
 f473783ada4727b1de8900376515f7e445382476 23400 
lazarus-ide-qt4_1.2.4+dfsg-1_all.deb
 fd615aa9b79b0bde3b62ff5fee534f43d227cbe5 23354 lcl_1.2.4+dfsg-1_all.deb
 dcbdb2cbf9fc1550b71fb25db871ce782f160d64 23382 lcl-utils_1.2.4+dfsg-1_all.deb
 46e269a4d239fa9ec17b346be709c846cf0187e8 23372 lcl-units_1.2.4+dfsg-1_all.deb
 3129ac25b959608abe38b906fd8fe70792f102e4 23388 lcl-nogui_1.2.4+dfsg-1_all.deb
 7954d6e6e6029e99ccc77e123b524fe628cd05c1 23380 lcl-gtk2_1.2.4+dfsg-1_all.deb
 1966af853e9683ee9a6faa8e51a97fc116323585 23384 lcl-qt4_1.2.4+dfsg-1_all.deb
 a1e19dedd7334db78fdd6c73ae57e5757a2362ff 23464 lazarus-doc_1.2.4+dfsg-1_all.deb
Checksums-Sha256:
 3ffc1e075001d7a2844ed11f5df18101f52762542fd9cb2a9897fc72e5a7 2774 
lazarus_1.2.4+dfsg-1.dsc

Re: How Debian should handle users requests?

2014-07-21 Thread Abou Al Montacir
Hi Holger,

On Mon, 2014-07-21 at 13:30 +0200, Holger Levsen wrote:
 Hi Abou,
 
 On Sonntag, 20. Juli 2014, Abou Al Montacir wrote:
  Then I'd propose to have an other pseudo package support and a new
  mailing list alias for d-u@l.d.o called for example support@d.o which
  does not link to d-d@l.d.o and providing support for users.
  
  This new pseudo package support can substitute to general
  automatically by the tool after few messages are asked like:
I don't really know how to investigate this issue
I'm not experienced user
...
 
 oh, wow, how do you want to deal with those? What do you do if these users 
 don't follow up?
There is always a risk that a user make a mistake, but these questions
can only reduce the noise and increase the SNR on this comm channel.

 Really there are quite many many of these bugs already, against base+general, 
 but also against d-i (installation-reports) and many other packages, where 
 users file bug reports which are *not* bug reports (because they lack vital 
 information) but just bug notices which are often quite useless.
That why I think we shall add the above suggested feature to reportbug(-ng)

 Sure, you (we) could help those users, but currently we too often lack the 
 ressources to deal with useful bug reports.
I know this very well, just taking my personal case, but my point is not
about lack of support but rather about abrupt reaction to some bugs. It
is more about nice reaction when someone reports a bad bug and teaching
him how to improve his reporting. This can help him for next bugs he
will report. 

 I'd welcome you triaging the bugs against installation-reports, xorg, gnome, 
 base and general for the next year. I'd be curious to hear your opinon after 
 that. 
I trust you here, but my rule is try to clean my packages as much as
possible and try to explain to users the real issues. Some of my bugs I
know I'll never be able to fix, but I don't close them, I just keep them
maybe someone someday will be able to do what I can't do.

 Right now, I just think you have an idea (we should help users having 
 problems) which I also share, but which I have found to be impractical to do 
 _by the means of the BTS_. The idea is good, but impractical in reality. If 
 you think otherwise, please convince me by dealing with existing bugs. The 
 list is reaaally long.
I think Debian have a very good support channel which is d-u list but
many users just ignore it exists. So having reportbug-ng suggesting to
use this help channel before reporting a bug could probably help a lot.

 Also, as a data point: I've closed, dunno, 30 or 50 bugs stating this bug 
 has 
 too little / no information, the BTS is no user support forum, please use 
 debian-user@l.d.o instead over the last year or so, and almost (or was it 
 really none?) noone complained.
 
 A useless bug is a useless bug. If a submitter cannot come up with any useful 
 information in the report, it is very unlikey they will be able to come up 
 with that later.
Here I really disagree. User my be ignorant but never assume he is
stupid. Sometimes small hints could help.

  The main goal of all this is to make Debian more user friendly.
 
 You dont make Debian more user friendly by creating a support forum which 
 will 
 not be used... there is d-u@l.d.o and there is ask debian (forgot the url) 
 too. Are you active on those, helping users?
I should admit I'm not active on those due to lack of time, and I really
appreciate the energy and devotion of all active persons (not only DDs
but also users) who helped me many times on these lists.
But still, I'm not trying to replace this help channel, I'm just trying
to extend it.

Cheers,
Abou Al Montacir,


signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-21 Thread Abou Al Montacir
On Sun, 2014-07-20 at 17:01 +0200, Adam Borowski wrote:
 On Sun, Jul 20, 2014 at 10:55:55AM +0200, Abou Al Montacir wrote:
  upgrade == not working anymore == bug
  I think this is a typical acceptable situation, what ever the user's
  level of experience.
  It is more about how much we care about our users rather than about the
  validity of the bug report. A user may need to install third parties
  packages, and we are in the right to refuse supporting this. But we can
  not ask our users to be either a real hacker or to stop using our SW.
 
 Except that in this case, to file a meaningful bug report, you need to be
 able to:
 * bisect the kernel
 * attach a serial console (good luck even having the port these days)
 and even that is likely to not be enough for kernel guys to fix this.
 
 Suspend quirks are among worst bugs for a non-hacker to report.
I fully understand this, but we can not close bugs just because we
assume that the user will not be able to debug this and produce relevant
bugs.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-20 Thread Abou Al Montacir
Hi All,

On Sat, 2014-07-19 at 22:57 +0300, Arto Jantunen wrote:
 (please don't CC me on replies, I read the list)
 
 Abou Al Montacir abou.almonta...@sfr.fr writes:
  We have several forums for user support requests, the main one being
  debian-user@l.d.o. The bts general pseudopackage is not a user support
  forum. The consensus for dealing with user support requests being filed
  as general bugs has always been close the bug and instruct the user
  to contact a support forum, mainly debian-user. When what the user is
  seeing turns out to be a bug in some package debian-user can also help
  with producing an actionable bug report against that package. Perhaps
  this needs to be documented more prominently?
 
  While I agree that the pseudo package general shall not be used as a
  help forum, I don't like to close a bug abruptly. Also in this case the
  current bug we are dealing with is probably a real bug.
 
 It might indeed be a real bug, but not in any Debian package. I don't
 know what distribution the user runs, but his kernels come from an
 Ubuntu PPA. In any case something no longer works but I have no idea
 how to find out what isn't an actionable bug report, it's a request for
 support.
upgrade == not working anymore == bug
I think this is a typical acceptable situation, what ever the user's
level of experience.
It is more about how much we care about our users rather than about the
validity of the bug report. A user may need to install third parties
packages, and we are in the right to refuse supporting this. But we can
not ask our users to be either a real hacker or to stop using our SW.

  I'd recommend that reportbug(-ng) provide a clear message when creating
  a bug, just like some other packages do it (evolution to name my
  preferred mail client). This will then filter more this kind of reports.
 
  Then if the user reports a bug we need to understand it and try to fix
  it. Maybe adding debian-user to the list of users monitoring bugs
  against general pseudo package could also help in this case.
 
 I don't think reportbug should allow filing bugs against general at
 all. The extremely rare cases when one is needed can be filed manually.
 
 -- 
 Arto Jantunen
This is probably a valid point. If you consider reports against general
as for experienced users only then make reportbug(-ng) refuse filling
bugs against them and send rather a request to d-u or even better,
create a separate DB for support, a kind of BTS coupled with d-u.

Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-20 Thread Abou Al Montacir
On Sun, 2014-07-20 at 07:50 +0800, Paul Wise wrote:
 On Sun, Jul 20, 2014 at 2:56 AM, Abou Al Montacir wrote:
 
  I'd recommend that reportbug(-ng) provide a clear message when creating
  a bug, just like some other packages do it (evolution to name my
  preferred mail client). This will then filter more this kind of reports.
 
 Please file bugs about it. Unfortunately reportbug{,-ng} maintenance
 is not happening often right now so it might take a long time for that
 to happen.
Sure I'll do.
I perfectly understand that we are lacking time to maintain this or that
package, especially that on may loose too much time to follow mails on
d-d.

  Then if the user reports a bug we need to understand it and try to fix
  it. Maybe adding debian-user to the list of users monitoring bugs
  against general pseudo package could also help in this case.
 
 I think that would probably just add more noise to debian-devel.
 
 -- 
 bye,
 pabs
Then I'd propose to have an other pseudo package support and a new
mailing list alias for d-u@l.d.o called for example support@d.o which
does not link to d-d@l.d.o and providing support for users.

This new pseudo package support can substitute to general
automatically by the tool after few messages are asked like:
  I don't really know how to investigate this issue
  I'm not experienced user
  ...

The main goal of all this is to make Debian more user friendly.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-20 Thread Abou Al Montacir
On Sun, 2014-07-20 at 11:09 +0200, Abou Al Montacir wrote:
  Please file bugs about it. Unfortunately reportbug{,-ng} maintenance
  is not happening often right now so it might take a long time for
 that
  to happen.
 Sure I'll do.

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=755392

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Bug#755286: Bug#755285: marked as done (general: Black screen on resume after suspend)

2014-07-20 Thread Abou Al Montacir
On Sun, 2014-07-20 at 13:10 +0300, Aleksandar Nikolov wrote:
 I tried this experiment:
 Installed sshd and connected from another computer - it works. But
 after 
 the lid closed and opened, I cannot connect. The system must be dead, 
 although the fans blows and the power led is on.
This means that your system hanged either during going into sleep mode
or when exiting the sleep mode. This is then not a screen issue but a
system issue. The fact that fans are on may indicate that the issue
happened when exiting suspend mode. But we definitely need more
information.
 Further after restart I found that nothing was written in neither
 dmesg 
dmesg does not remember messages from old boot, you need to relay on
logs
 nor pm-powersave.log after the lid is closed and then opened.
yes this is normal as you rebooted. Then this file will be filled for
the next time but you won't be able to recover it. Normally you should
find a /var/log/pm-*.log.1, these files are the ones you need to
provide.

Also it could be better if you try using the official Debian kernel, at
least while we are investigating the issue. I assume you have good
reason to use an other kernel, but we do not support such combinations,
so please ensure investigating this bug with:
(jessie)root@karim:~# aptitude show linux-image-amd64
Package: linux-image-amd64   
State: not installed
Version: 3.14+58
Priority: optional
Section: kernel
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Architecture: i386
Uncompressed Size: 38.9 k
Depends: linux-image-3.14-1-amd64
Provides: linux-latest-modules-3.14-1-amd64
Description: Linux for 64-bit PCs (meta-package)
 This package depends on the latest Linux kernel and modules for use on
PCs with AMD64, Intel 64 or VIA Nano processors. 
 
 This kernel also runs on a Xen hypervisor.  It supports both privileged
(dom0) and unprivileged (domU) operation.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


Re: Bug#755285: marked as done (general: Black screen on resume after suspend)

2014-07-19 Thread Abou Al Montacir
Control: reopen -1

On Sat, 2014-07-19 at 17:03 +, Debian Bug Tracking System wrote:
...
  Missing information, dupe.
  
  Kind regards,
  Andrei

Hi Andrei,

I don't think that missing information is enough argument to close a
bug.

Hi AL Nik,

Can you please provide more information about your issue. As the screen
is dead I understand that you may have issue to provide the required
information depending on your computer skills. Please find below some
hints, and maybe Andrei can provide more hints instead of closing this
bug again ;)

If you have access to another computer, please consider logging into the
first one after resume (you need to have sshd installed or any other
deamon for remote access) then gain root access and provide output of
dmesg and other log files in /var/log like /var/log/pm-powersave.log.

I'm not a specialist of such issues, but don't like to have user's
request closed abruptly.

Cheers,
Abou Al Montacir


signature.asc
Description: This is a digitally signed message part


How Debian should handle users requests?

2014-07-19 Thread Abou Al Montacir
On Sat, 2014-07-19 at 19:49 +0200, Abou Al Montacir wrote:
 Control: reopen -1
 
 On Sat, 2014-07-19 at 17:03 +, Debian Bug Tracking System wrote:
 ...
   Missing information, dupe.
   
   Kind regards,
   Andrei
 
 Hi Andrei,
 
 I don't think that missing information is enough argument to close a
 bug.
 
 Hi AL Nik,
 
 Can you please provide more information about your issue. As the screen
 is dead I understand that you may have issue to provide the required
 information depending on your computer skills. Please find below some
 hints, and maybe Andrei can provide more hints instead of closing this
 bug again ;)
 
 If you have access to another computer, please consider logging into the
 first one after resume (you need to have sshd installed or any other
 deamon for remote access) then gain root access and provide output of
 dmesg and other log files in /var/log like /var/log/pm-powersave.log.
 
 I'm not a specialist of such issues, but don't like to have user's
 request closed abruptly.
 
 Cheers,
 Abou Al Montacir

Dear All,

I want to take the occasion of this bug to enlighten how some DDs treat
users, and especially newbes. This is a typical case of a user updating
his laptop and suddenly is frustrated because some thing went wrong or a
buggy package or nothing important but in his case he have a no more
functional computer.

The first reaction is to open a bug, a reaction I find natural and sane.
But the maintainer closes immediately the bug without even asking for
additional information. The user tries to figure out what is wrong and
opens another bug. And finally both DD and user get frustrated.

I'd like to bring this issue to d-d@l.d.o list in order to rich a
consensus about good conduct when treating bugs. I was myself in several
cases treated the same way and see some maintainers closing my bugs
because they don't have the issue on their machines, or because they
dont care of my use case. On my side I don't do this for my packages. i
consider each problem report worth investigating and if I'm not
interested in hunting such issue, I try to help the user doing so.

It is probably kind of arrogance to think that a bug report is silly and
is not worth spending our valuable time to understand its cause. One may
argue that a ticket shall be open on real bugs, but here we don't even
know if it is one. Maybe it is, so let's give time to the user
investigating, and if he can not do it himself, give him hints.

I'd really like having a king of code of conduct for bug handling, just
like we have one for mailing lists.

Cheers,
Abou Al Montacir, 


signature.asc
Description: This is a digitally signed message part


Re: Bug#755285: marked as done (general: Black screen on resume after suspend)

2014-07-19 Thread Abou Al Montacir
On Sat, 2014-07-19 at 19:17 +0100, Adam D. Barratt wrote:
 On Sat, 2014-07-19 at 19:49 +0200, Abou Al Montacir wrote:
  Control: reopen -1
  
  On Sat, 2014-07-19 at 17:03 +, Debian Bug Tracking System wrote:
  ...
Missing information, dupe.

Kind regards,
Andrei
  
  Hi Andrei,
  
  I don't think that missing information is enough argument to close a
  bug.
 
 It's also a duplicate, as Andrei mentioned. Given that #755286 exists,
 having #755285 open is providing no benefit to anyone, including the
 submitter.
 
 Regards,
 
 Adam

Thank you Adam for this notification. I agree that #755285 is duplicate
of #755286. But then the message should make it clear that it was closed
because it is duplicate and not because it is missing information. It
may be clear for may that dupe means duplicate, but this is not clear
for every body especially that in French this means stupid. Of course
I'm sure Andrei doesn't mean this, but it is sometime important to be as
much clear as possible in order to avoid misunderstanding.

Cheers,
Abou Al Montacir,


signature.asc
Description: This is a digitally signed message part


Re: How Debian should handle users requests?

2014-07-19 Thread Abou Al Montacir
On Sat, 2014-07-19 at 21:20 +0300, Arto Jantunen wrote:
  I'd really like having a king of code of conduct for bug handling, just
  like we have one for mailing lists.
 
 We have several forums for user support requests, the main one being
 debian-user@l.d.o. The bts general pseudopackage is not a user support
 forum. The consensus for dealing with user support requests being filed
 as general bugs has always been close the bug and instruct the user
 to contact a support forum, mainly debian-user. When what the user is
 seeing turns out to be a bug in some package debian-user can also help
 with producing an actionable bug report against that package. Perhaps
 this needs to be documented more prominently?
 
 -- 
 Arto Jantunen

While I agree that the pseudo package general shall not be used as a
help forum, I don't like to close a bug abruptly. Also in this case the
current bug we are dealing with is probably a real bug.

I'd recommend that reportbug(-ng) provide a clear message when creating
a bug, just like some other packages do it (evolution to name my
preferred mail client). This will then filter more this kind of reports.

Then if the user reports a bug we need to understand it and try to fix
it. Maybe adding debian-user to the list of users monitoring bugs
against general pseudo package could also help in this case.

Cheers,
Abou Al Montacir



signature.asc
Description: This is a digitally signed message part


Accepted fpc 2.6.4+dfsg-3 (source i386 all)

2014-07-12 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 21:01:47 +0200
Source: fpc
Binary: fpc-2.6.4 fpc-source-2.6.4 fp-compiler-2.6.4 fp-ide-2.6.4 
fp-utils-2.6.4 fp-docs-2.6.4 fp-units-rtl-2.6.4 fp-units-base-2.6.4 
fp-units-fcl-2.6.4 fp-units-fv-2.6.4 fp-units-gtk-2.6.4 fp-units-gtk2-2.6.4 
fp-units-gnome1-2.6.4 fp-units-db-2.6.4 fp-units-gfx-2.6.4 fp-units-net-2.6.4 
fp-units-math-2.6.4 fp-units-misc-2.6.4 fp-units-multimedia-2.6.4 
fp-units-i386-2.6.4 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source i386 all
Version: 2.6.4+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description:
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.4 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.4 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.4 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.4 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.4 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.4 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.4 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.4 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.4 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.4 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.4 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.4 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.4 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.4 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.4 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.4 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.4 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.4 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.4  - Free Pascal - SDK-2.6.4 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.4 - Free Pascal - SDK source code
Closes: 749418 751387
Changes:
 fpc (2.6.4+dfsg-3) unstable; urgency=low
 .
   [ Abou Al Montacir ]
   * Added libgmp-dev to recommended packages list of fp-units-math in order to
 avoid users getting lik errors about missing libgmp. (Closes: Bug#749418)
   [ Michal Šimůnek ]
   * Updated Czech translation of PO debconf. (Closes: Bug#751387)
Checksums-Sha1:
 0963767f309a4e3e36e51feb5346a39f33bc5ec3 3899 fpc_2.6.4+dfsg-3.dsc
 60bdb7ff71d0da76df7bc9e6f859cc77913ddd76 59668 fpc_2.6.4+dfsg-3.debian.tar.xz
 ea20b1ff888e96ae5a2905ba7b34ce7e11c40ed2 1617524 
fp-compiler-2.6.4_2.6.4+dfsg-3_i386.deb
 113813ee3d5884f8c5647560654918ebf0418dff 1198064 
fp-ide-2.6.4_2.6.4+dfsg-3_i386.deb
 014017aa86e1d94b0b76f251b08991db2650a104 1616040 
fp-utils-2.6.4_2.6.4+dfsg-3_i386.deb
 70abdc1227043a5841b828ba5ba20aabcd193f67 1552422 
fp-units-rtl-2.6.4_2.6.4+dfsg-3_i386.deb
 e785e7c7d4972ddf55261c49f00da79ad62b5f63 1040634 
fp-units-base-2.6.4_2.6.4+dfsg-3_i386.deb
 95691dd0d6064c315035c0aa8f1422167f5e05fa 4281382 
fp-units-fcl-2.6.4_2.6.4+dfsg-3_i386.deb
 cdeaaac8dd349ae2dffb8fa7eb118a3ca908d877 348960 
fp-units-fv-2.6.4_2.6.4+dfsg-3_i386.deb
 2425277dd6865754c44cb17fead5209c27dcb3db 735850 
fp-units-gtk-2.6.4_2.6.4+dfsg-3_i386.deb
 6e32e8b658ea01d58e9d869ec100cc1965d7729d 1163652 
fp-units-gtk2-2.6.4_2.6.4+dfsg-3_i386.deb
 97dd412d9a25d5493975882f1e21cb0505db30d8 267822 
fp-units-gnome1-2.6.4_2.6.4+dfsg-3_i386.deb
 27b55668536091f1ba8497df13d70a9bb24f372f 863492 
fp-units-db-2.6.4_2.6.4+dfsg-3_i386.deb
 be491e6751d5e3856d4137064741cb34241d54d9 1313018 
fp-units-gfx-2.6.4_2.6.4+dfsg-3_i386.deb
 1e065c8fbe42720b3e57898479b2958cf8d42ae6 477468 
fp-units-net-2.6.4_2.6.4+dfsg-3_i386.deb
 646966739fa3c9fd91b3a7a20956a449c5a41bd3

Accepted lazarus 1.2.2+dfsg-1 (source amd64 all)

2014-05-17 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 May 2014 23:17:51 +0200
Source: lazarus
Binary: lazarus-1.2.2 lazarus-src-1.2.2 lazarus-ide-1.2.2 
lazarus-ide-gtk2-1.2.2 lazarus-ide-qt4-1.2.2 lcl-1.2.2 lcl-utils-1.2.2 
lcl-units-1.2.2 lcl-nogui-1.2.2 lcl-gtk2-1.2.2 lcl-qt4-1.2.2 lazarus-doc-1.2.2 
lazarus lazarus-src lazarus-ide lazarus-ide-gtk2 lazarus-ide-qt4 lcl lcl-utils 
lcl-units lcl-nogui lcl-gtk2 lcl-qt4 lazarus-doc
Architecture: source amd64 all
Version: 1.2.2+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-1.2.2 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-1.2.2 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - common IDE files dependency package
 lazarus-ide-1.2.2 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - Last GTK+ version dependency package
 lazarus-ide-gtk2-1.2.2 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt4 - IDE for Free Pascal - Last Qt version dependency package
 lazarus-ide-qt4-1.2.2 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-1.2.2 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-1.2.2  - Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-1.2.2 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-1.2.2 - Lazarus Components Library - no GUI backend
 lcl-qt4- Lazarus Components Library - Qt backend dependency package
 lcl-qt4-1.2.2 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-1.2.2 - Lazarus Components Library - backend independent components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-1.2.2 - Lazarus Components Library - command line build tools
Changes: 
 lazarus (1.2.2+dfsg-1) unstable; urgency=medium
 .
   * New upstream release with few fixes and official support of FPC 2.6.4.
 - The detailed list of changes can be found here:
 
http://wiki.lazarus.freepascal.org/Lazarus_1.2_fixes_branch#Fixes_for_1.2.2_.28Merged.29
Checksums-Sha1: 
 f5784b707d39c94257a7fb37ebbcf0debe76f771 2856 lazarus_1.2.2+dfsg-1.dsc
 a7f3a4c5ccb41ae090de88b70586ab9df4a31643 48145539 
lazarus_1.2.2+dfsg.orig.tar.gz
 0a93d3a676d6a334a273c3b219a6b12bdbddde0c 49053 
lazarus_1.2.2+dfsg-1.debian.tar.gz
 b75f18fbe63080b707ef782bf5ec333819ff2b66 2558296 
lazarus-ide-1.2.2_1.2.2+dfsg-1_amd64.deb
 fe1a2767386966ed29443a86ff2fabf6716cb021 6107774 
lazarus-ide-gtk2-1.2.2_1.2.2+dfsg-1_amd64.deb
 1242bae5a6dd91298c7babd421e6fd757392e9c5 540 
lazarus-ide-qt4-1.2.2_1.2.2+dfsg-1_amd64.deb
 67d7b2c8c4a32d46a3e41fc4cd81760cdc55dcd1 22458 lcl-1.2.2_1.2.2+dfsg-1_amd64.deb
 10a67372ea6186b47af710ac3bbf18b064e5dbd5 3650958 
lcl-utils-1.2.2_1.2.2+dfsg-1_amd64.deb
 e833541d011dca1683e99e5aaf2339b1e06f271f 12421306 
lcl-units-1.2.2_1.2.2+dfsg-1_amd64.deb
 215ad4f4a802946578a0a24bad06d549e659bb78 6631752 
lcl-nogui-1.2.2_1.2.2+dfsg-1_amd64.deb
 443df24780618f697423bcf054ebfcfbacd5b282 6287444 
lcl-gtk2-1.2.2_1.2.2+dfsg-1_amd64.deb
 bd66e2637b381d99e273b4e6bf62fe6ed7d2aa9a 1589296 
lcl-qt4-1.2.2_1.2.2+dfsg-1_amd64.deb
 5148cf138aff0cb509f2dd17db6ee2373f094f50 22846 
lazarus-1.2.2_1.2.2+dfsg-1_all.deb
 7c228b100e5d2ab3c567f10344e255240d8a68a7 12660254 
lazarus-src-1.2.2_1.2.2+dfsg-1_all.deb
 77075066a9f8bc616cf1b4cddcbbc4aad2e843e3 356 
lazarus-doc-1.2.2_1.2.2+dfsg-1_all.deb
 193f50649f2fb3c4a07836742375130bb3071b68 22430 lazarus_1.2.2+dfsg-1_all.deb
 0d5c7b1801c33798a5091f275f883ce83e28a95e 22466 lazarus-src_1.2.2+dfsg-1_all.deb
 78ab9fc7acc373062b731c4ccb7d57be24cc68fd 22432 lazarus-ide_1.2.2+dfsg-1_all.deb
 d624eb668e39c677e1478a0473f4e8ca2fa2e5be 22430 
lazarus-ide-gtk2_1.2.2+dfsg-1_all.deb
 6efc1f57d6cc5497724f1cb78fa753982e8e0db3 22452 
lazarus-ide-qt4_1.2.2+dfsg-1_all.deb
 62583c0f11f56b4d92f63f150ae68e13eca7f4cb 22422 lcl_1.2.2+dfsg-1_all.deb
 21fd6a56574f1abf5012c6789d51d0fce9bfbeb2 22436 lcl-utils_1.2.2+dfsg-1_all.deb
 440e2c5191ab9a8b971b5bb95d71dd0190c3a723 22418 lcl-units_1.2.2+dfsg-1_all.deb
 22f7bd6b81b2ab8942d504ae42b5f3e7f039bbf9 22446 lcl-nogui_1.2.2+dfsg-1_all.deb
 c6bbe1e844fb49dd17828aadf60eda3258d3ea5e 22440 lcl-gtk2_1.2.2+dfsg-1_all.deb
 c764694e81ef37cce01fb82830ac7765ae15df73 22440 lcl-qt4_1.2.2+dfsg-1_all.deb
 60de3860e9731ed5b9efc0d5b2379c17c4f9f00d 22516 lazarus-doc_1.2.2+dfsg-1_all.deb
Checksums-Sha256: 
 3d21ec41417871d3a190a1a9aa794cadeca0c293b46efef057cf0e1693fcb2ca 2856 
lazarus_1.2.2+dfsg-1.dsc

Accepted castle-game-engine 5.0.0-1 (source amd64 all)

2014-05-10 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 13 Dec 2013 21:29:44 +0100
Source: castle-game-engine
Binary: fp-units-castle-game-engine castle-game-engine-doc 
castle-game-engine-src
Architecture: source amd64 all
Version: 5.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Abou Al Montacir abou.almonta...@sfr.fr
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 castle-game-engine-doc - Castle Game Engine - Developer's Documentation
 castle-game-engine-src - Castle Game Engine - Source code for Lazarus 
integration
 fp-units-castle-game-engine - Castle Game Engine - 3D game engine for 
FreePascal / Lazarus
Closes: 732760 747128
Changes: 
 castle-game-engine (5.0.0-1) unstable; urgency=medium
 .
   [ Abou Al Montacir ]
   * New upstream release. (Closes: #747128)
   * Remove unused include file to allow building on systems where quilt is not
 installed
 .
   [ Paul Gevers ]
   * Fix typo in package descriptions (Closes: #732760)
   * Remove nearly obsolete bzip compression for binary packages
 (See https://lists.debian.org/debian-devel/2014/01/msg00542.html)
   * Bump standards to 3.9.5 (no changes)
   * Converted copyright file to machine readable format and add notices for new
 files
   * Build Pascal source style font formats (using dejavu fonts package)
   * Strip piwik from documentation (thanks Lintian)
Checksums-Sha1: 
 f1e276be77f866403435064f1aaa9ae392e317d2 1996 castle-game-engine_5.0.0-1.dsc
 fe849d394d098e7349d01daae11294e7da89a29c 94238304 
castle-game-engine_5.0.0.orig.tar.gz
 29e9a1a9c99289131c5a2e2c361b57a08515c446 18408 
castle-game-engine_5.0.0-1.debian.tar.gz
 b9213bf38f3de318ea4e3f0525b60c7119d43c4a 2854162 
fp-units-castle-game-engine_5.0.0-1_amd64.deb
 6250bbe3ee7643909c9464cf22efe5c27a028ad4 934888 
castle-game-engine-doc_5.0.0-1_all.deb
 fe4e99b47528df2e494b2034551ab0b752100f59 1983192 
castle-game-engine-src_5.0.0-1_all.deb
Checksums-Sha256: 
 25c7686b79cc6e5818e0e95ba2074690e3972c085c65cb49f16cc58bfed5b516 1996 
castle-game-engine_5.0.0-1.dsc
 c305cb5cf8c07f3f76e2098d3fbf56861c8d36d4f09784c050a011a290aafaf7 94238304 
castle-game-engine_5.0.0.orig.tar.gz
 25d5969eebe1a30f40bbf9e0c90f66a426650574a9a4ca32a6d8e1fa9aed4c76 18408 
castle-game-engine_5.0.0-1.debian.tar.gz
 499bb8c357b307438ea840d6ad06fc9a012c5650297b81d6fbf1ee9eec72d5dd 2854162 
fp-units-castle-game-engine_5.0.0-1_amd64.deb
 5a96193a56c0f1b4814b7880d953267d9dfa06771bdf74bf229603c545434da8 934888 
castle-game-engine-doc_5.0.0-1_all.deb
 232868d1070231de984ff648f3ff52e060600febdcc9a48a6eb037defaede82b 1983192 
castle-game-engine-src_5.0.0-1_all.deb
Files: 
 8ca062a7feed21a8e64afec6c005e8b8 2854162 misc optional 
fp-units-castle-game-engine_5.0.0-1_amd64.deb
 71bc9ee4ec662d489512b76b51d1ae1e 934888 doc optional 
castle-game-engine-doc_5.0.0-1_all.deb
 55ae4d36c59300e8a17dc022c1162077 1983192 doc optional 
castle-game-engine-src_5.0.0-1_all.deb
 c7017dec8d0568328cf96e99ff743bea 1996 misc optional 
castle-game-engine_5.0.0-1.dsc
 f341f653b10c8de4fea5bfb1f40731b9 94238304 misc optional 
castle-game-engine_5.0.0.orig.tar.gz
 5b80ec1fe5448e5c2f79b08c4621bd15 18408 misc optional 
castle-game-engine_5.0.0-1.debian.tar.gz

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

iQEcBAEBCAAGBQJTbc0bAAoJEJxcmesFvXUK6IUIAIVCXHj9qdw5hsG/epPjwpAX
9ob08lOnIe4x63swDVc5MwJe1MbSz1Kb3134Z8ZAVJyWSryY+NtKOVolieRn87+a
+cMpmvjJbpXxq/Z8JREa9ZAjUlErZ5yvPvwnG9R+Jfgrw96GPooTlQuu1bi665/e
EYTzj8M1hItEDdidoE++BwXJv/gQV5oI/5LwhTK+bSM+h+W2gFWVCb/wVTgJZN/f
NAf3rVCIWm4dypBraMA0F9u2dX2iVvb9REMw0lt4j+a9kepnyoTeS0+KAqIbGRcu
EaUsSabydNGD1LVMiNOfxM8/lxfkhRQcO/8G5wAuds34F/BseB3hi91xgFYkpks=
=r6zb
-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/e1wj3rf-0005ub...@franck.debian.org



Accepted fpc 2.6.2-8 (source amd64 all)

2014-01-21 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Jan 2014 20:39:35 +0100
Source: fpc
Binary: fpc-2.6.2 fpc-source-2.6.2 fp-compiler-2.6.2 fp-ide-2.6.2 
fp-utils-2.6.2 fp-docs-2.6.2 fp-units-rtl-2.6.2 fp-units-base-2.6.2 
fp-units-fcl-2.6.2 fp-units-fv-2.6.2 fp-units-gtk-2.6.2 fp-units-gtk2-2.6.2 
fp-units-gnome1-2.6.2 fp-units-db-2.6.2 fp-units-gfx-2.6.2 fp-units-net-2.6.2 
fp-units-math-2.6.2 fp-units-misc-2.6.2 fp-units-multimedia-2.6.2 
fp-units-i386-2.6.2 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 2.6.2-8
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.2 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.2 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.2 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.2 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.2 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.2 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.2 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.2 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.2 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.2 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.2 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.2 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.2 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.2 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.2 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.2 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.2 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.2 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.2  - Free Pascal - SDK-2.6.2 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.2 - Free Pascal - SDK source code
Closes: 73368 733618
Changes: 
 fpc (2.6.2-8) unstable; urgency=low
 .
   [ Gianfranco Costamagna ]
   * Backport upstream revision 22477 to fix a FTBFS. (Closes: Bug#733618)
 .
   [ Abou Al Montacir ]
   * Change path of localization files to fit Debian standard.
 (Closes: Bug#73368)
   * Fix encoding of German localization files to be UTF-8.
Checksums-Sha1: 
 0a2503d97519cdeffedd050bf7391707c44c406e 3800 fpc_2.6.2-8.dsc
 2ffae2f5d9539671a06c6e5a4efd1e1b467b6154 78887 fpc_2.6.2-8.debian.tar.gz
 da061428936015afe762be46a51455c2c0d85315 2451854 
fp-compiler-2.6.2_2.6.2-8_amd64.deb
 4602d0513bbe59610659a159327b0b853952e57a 1496612 fp-ide-2.6.2_2.6.2-8_amd64.deb
 72a17b982707dc4d49c76bc1de3bad69ba7b3143 5045688 
fp-utils-2.6.2_2.6.2-8_amd64.deb
 138ee90a0f4de10526fea766f4e4f6f6bc6fea43 2357556 
fp-units-rtl-2.6.2_2.6.2-8_amd64.deb
 622c9cff15399aa0960d78681beab2e20744cc83 1513668 
fp-units-base-2.6.2_2.6.2-8_amd64.deb
 bcdb57d19ae39b0039bfbe6ffa5790475a1d23f0 6786582 
fp-units-fcl-2.6.2_2.6.2-8_amd64.deb
 3be3efefa57c99ca6662b183bc5e1f620f8cc833 501502 
fp-units-fv-2.6.2_2.6.2-8_amd64.deb
 fabc95b937b7f5ee13d6529d2fba70df6c254910 1044024 
fp-units-gtk-2.6.2_2.6.2-8_amd64.deb
 31bcfce7cd80c371f0ebdb9cab56519015ac2877 1596350 
fp-units-gtk2-2.6.2_2.6.2-8_amd64.deb
 b5ff89e550d82cca9e68b917faa87c6035ed6e53 366950 
fp-units-gnome1-2.6.2_2.6.2-8_amd64.deb
 f7c97b7cc62fb043cc02bf7f11ebb63b2aa53cf3 1433538 
fp-units-db-2.6.2_2.6.2-8_amd64.deb
 ae00f54663daa84160d27b26f631ee652c6219c3 1727170 
fp-units-gfx-2.6.2_2.6.2-8_amd64.deb
 e12ca88487613c14a80a3cbd171f842855cda602 518142 
fp-units-net-2.6.2_2.6.2-8_amd64.deb
 ef65abc71c966c0a3f96f6d90e36b7d8b8c8d797 510780 
fp-units-math-2.6.2_2.6.2-8_amd64.deb

Accepted castle-game-engine 4.0.1-1 (source amd64 all)

2013-08-08 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 27 Apr 2013 18:06:40 +0100
Source: castle-game-engine
Binary: fp-units-castle-game-engine castle-game-engine-doc 
castle-game-engine-src
Architecture: source amd64 all
Version: 4.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Abou Al Montacir abou.almonta...@sfr.fr
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 castle-game-engine-doc - Castle Game Engine - Developer's Documentation
 castle-game-engine-src - Castle Game Engine - Source code for Lazarus 
integration
 fp-units-castle-game-engine - Castle Game Engine - 3D game engine for 
FreePascal / Lazarus
Closes: 706408
Changes: 
 castle-game-engine (4.0.1-1) unstable; urgency=low
 .
   * Packaged Castle Game Engine for Debian. (Closes: Bug#706408)
Checksums-Sha1: 
 d2f4c380c93195b7acf3a4d9547cc3677d446fb1 1920 castle-game-engine_4.0.1-1.dsc
 72c54e0bd717de4285e27b862ba1d6cbc9b86706 82596868 
castle-game-engine_4.0.1.orig.tar.gz
 32e43ebec916379214699a70f4de668f737c1936 6212 
castle-game-engine_4.0.1-1.debian.tar.gz
 5257ec7bbb33670966adc44035568ff20e5e9436 4180542 
fp-units-castle-game-engine_4.0.1-1_amd64.deb
 7f7227dbd689f3297efce99159ec0b861cd7596c 1022178 
castle-game-engine-doc_4.0.1-1_all.deb
 0079184a9c9b382ce5574699ac49b140e5a060bb 2019588 
castle-game-engine-src_4.0.1-1_all.deb
Checksums-Sha256: 
 a7c66e7c546d0084a8e233efee2bbfd21fe45d7e716e12fdab43dc315c988d9a 1920 
castle-game-engine_4.0.1-1.dsc
 6e4f4c1d9cd1e1564f54272a48197d157a055d1be3330671f46f6296e4b9668e 82596868 
castle-game-engine_4.0.1.orig.tar.gz
 4c130b949c99f548491add5557b1ea0c7bd6aafd457dd2ab46a7bf1e72ea1f67 6212 
castle-game-engine_4.0.1-1.debian.tar.gz
 9caff0c6b1ce12bf34303fd67e6f561740acc879b5e3fbe5e48efdbc32ac5082 4180542 
fp-units-castle-game-engine_4.0.1-1_amd64.deb
 2da968f937f901e15839094b5fa2e224586e2b8af27ed19e500f40c55e8cac9b 1022178 
castle-game-engine-doc_4.0.1-1_all.deb
 44f7805533592e1876b9d8808a67d5c32db489b032fdd54eaf5292142c92128d 2019588 
castle-game-engine-src_4.0.1-1_all.deb
Files: 
 e2fbf1de664355de05990f7c80ea09c0 1920 misc optional 
castle-game-engine_4.0.1-1.dsc
 0dbc1737ce1c02a8d6644ecd22b01536 82596868 misc optional 
castle-game-engine_4.0.1.orig.tar.gz
 250dab3bc0855e020afecd6da9f2d3a3 6212 misc optional 
castle-game-engine_4.0.1-1.debian.tar.gz
 b9801fa508488ca4a1067d5a931907fe 4180542 misc optional 
fp-units-castle-game-engine_4.0.1-1_amd64.deb
 a668a6720bc730968062845bceba140f 1022178 doc optional 
castle-game-engine-doc_4.0.1-1_all.deb
 8dea6d9c74743d03942528bd65bf2ccc 2019588 doc optional 
castle-game-engine-src_4.0.1-1_all.deb

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

iQEcBAEBCAAGBQJRwLY9AAoJEJxcmesFvXUK5IMH/3fyBy/vJbidDhZraJiA9L9C
1hyyzKf18HFhMQP/F9W5C2vHSP1URoRI3F1bPeJ4jdbtORM9XFjVpSOyaamrLjoU
JY7935mccK8x0O59740VC/1ZNuBGHSFEYazpn4OMBRAIZ2HhDq6XDv/Q9TugnNP/
xXLBGqfiCLAFit4F+ldlON8zRlRiOoPpK+WFFerYumrpevVzOyI+iQEOewrNZgUD
yUQG4nKuwwHm84mh8abQLt7MFjH8QxKs9xt/TDpa0up2VIXBxXlvbHHfoQcQ29jX
KypJ/T3zLAXVuWmwqkmfAuPe2xX/Y94tI7gzRuC/BBvcj+MyBC5g7Ugg8ypjNg4=
=DFxQ
-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/e1v7zbm-0006qc...@franck.debian.org



Creating a new team Pascal4Debian

2013-06-09 Thread Abou Al Montacir
Hi All,

As FPC  Lazarus are getting more and more success and as there are a
few programs that are now using them, I'm considering creating a new
team for taking care of both tools, but also supporting other programs
based on Pascal.

This mail is just to allow interested persons to know about it. So
please do not hesitate to drop me a mail.

Cheers,


signature.asc
Description: This is a digitally signed message part


Accepted fpc 2.6.2-1 (source amd64 all)

2013-05-28 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 7 May 2013 19:41:59 +0100
Source: fpc
Binary: fpc-2.6.2 fpc-source-2.6.2 fp-compiler-2.6.2 fp-ide-2.6.2 
fp-utils-2.6.2 fp-docs-2.6.2 fp-units-rtl-2.6.2 fp-units-base-2.6.2 
fp-units-fcl-2.6.2 fp-units-fv-2.6.2 fp-units-gtk-2.6.2 fp-units-gtk2-2.6.2 
fp-units-gnome1-2.6.2 fp-units-db-2.6.2 fp-units-gfx-2.6.2 fp-units-net-2.6.2 
fp-units-math-2.6.2 fp-units-misc-2.6.2 fp-units-multimedia-2.6.2 
fp-units-i386-2.6.2 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 2.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.2 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.2 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.2 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.2 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.2 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.2 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.2 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.2 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.2 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.2 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.2 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.2 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.2 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.2 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.2 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.2 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.2 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.2 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.2  - Free Pascal - SDK-2.6.2 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.2 - Free Pascal - SDK source code
Changes: 
 fpc (2.6.2-1) unstable; urgency=low
 .
   * New upstream point release with many fixes to the 2.6.0 fixes branch.
 - List of changes that may affect the behaviour of previously working
   code, and how to cope with these changes is available online on
   http://wiki.freepascal.org/User_Changes_2.6.2
 - List of reported bugs which have been fixed in this release is available
   online on http://bugs.freepascal.org/changelog_page.php?version_id=223
 - List of new features which have been added to this release is available
   online on http://wiki.freepascal.org/FPC_New_Features_2.6.2
   * Compiler changes:
 - Improvements and fixes for the ARM architecture
   * Packages changes:
 - New package fpindexer (indexing engine)
 - Support for observer pattern added to fcl-base (and base classes in RTL)
 - Lots and lots fixes and improvements for fcl-db
   + Support for JSON dataset added among others
 - Fixes and improvements for fcl-passrc (and fpdoc)
 - Updates for PTCPas and gtk2
 - fpmkunit improvements (better support for future switch to fpmake)
 - Several fixes for x11
 - Several fixes for winunits (and winceunits)
   * Platforms specific changes:
 - Improvements to the NativeNT target (newly introduced as alpha in 2.6.0)
 - Many fixes for OpenBSD and NetBSD (considered in beta state now)
 - Internal ELF writer supported for more BSD targets
 - Fixes and improvements for gba and nds
   * Added new tool relpath to compute relative path according to a given base
 directory.
   * Added new tool ifpc (Instant Free Pascal Compiler) for compiling and
 running pascal scripts.
Checksums-Sha1

Accepted lazarus 0.9.30.4-7 (source amd64 all)

2013-05-17 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 11 May 2013 11:37:00 +0200
Source: lazarus
Binary: lazarus-0.9.30.4 lazarus-src-0.9.30.4 lazarus-ide-0.9.30.4 
lazarus-ide-gtk2-0.9.30.4 lazarus-ide-qt4-0.9.30.4 lcl-0.9.30.4 
lcl-utils-0.9.30.4 lcl-units-0.9.30.4 lcl-nogui-0.9.30.4 lcl-gtk2-0.9.30.4 
lcl-qt4-0.9.30.4 lazarus-doc-0.9.30.4 lazarus lazarus-src lazarus-ide 
lazarus-ide-gtk2 lazarus-ide-qt4 lcl lcl-utils lcl-units lcl-nogui lcl-gtk2 
lcl-qt4 lazarus-doc
Architecture: source amd64 all
Version: 0.9.30.4-7
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-0.9.30.4 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-0.9.30.4 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - common IDE files dependency package
 lazarus-ide-0.9.30.4 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - GTK+ version
 lazarus-ide-gtk2-0.9.30.4 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt4 - IDE for Free Pascal - IDE build on top of Qt backend 
dependency p
 lazarus-ide-qt4-0.9.30.4 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-0.9.30.4 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-0.9.30.4 - Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-0.9.30.4 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-0.9.30.4 - Lazarus Components Library - no GUI backend
 lcl-qt4- Lazarus Components Library - Qt backend dependency package
 lcl-qt4-0.9.30.4 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-0.9.30.4 - Lazarus Components Library - backend independent 
components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-0.9.30.4 - Lazarus Components Library - command line build tools
Closes: 694045
Changes: 
 lazarus (0.9.30.4-7) unstable; urgency=low
 .
   [Hiroyuki Yamamoto]
   * Added support for ppc64 architecture. (Closes: Bug#694045)
Checksums-Sha1: 
 d17b339a7494be0767c1878398a2543cc67a8f9b 2869 lazarus_0.9.30.4-7.dsc
 728064ded7495f5c360c2943e831340d696deb7c 43334 lazarus_0.9.30.4-7.debian.tar.gz
 caa60de24f81818496fac31269ee8468c94a748a 5994392 
lazarus-ide-0.9.30.4_0.9.30.4-7_amd64.deb
 aab3a5a826b411b66d098d7d6d40d42fe5867ce3 6582768 
lazarus-ide-gtk2-0.9.30.4_0.9.30.4-7_amd64.deb
 0aa0cdd00c6e430d73ff5a31c6f8c9b2c79a4e60 20168 
lazarus-ide-qt4-0.9.30.4_0.9.30.4-7_amd64.deb
 30c2bf51fbe1b79d7e3885e6d86d9c786cd20991 19982 
lcl-0.9.30.4_0.9.30.4-7_amd64.deb
 6b8b4bfae32b1945b9167657519158bd2e060baf 5365268 
lcl-utils-0.9.30.4_0.9.30.4-7_amd64.deb
 5844643785ae852cbe0c76cf1efe6310816e7fd8 29118730 
lcl-units-0.9.30.4_0.9.30.4-7_amd64.deb
 e1f69b60d703d24cde181f1e5f85e255147f0eb0 48924 
lcl-nogui-0.9.30.4_0.9.30.4-7_amd64.deb
 d50484cf6f7967b2b73d9652d37f23e418046c6f 1313938 
lcl-gtk2-0.9.30.4_0.9.30.4-7_amd64.deb
 0e154ef3fa47be8bcfde42304ef4fd95f1ef52d9 2095828 
lcl-qt4-0.9.30.4_0.9.30.4-7_amd64.deb
 7144fef79c2adf93625bd01ca71e25b31c5084e8 19934 lazarus-ide_0.9.30.4-7_amd64.deb
 9d7fb0adc506769dadc57eca8eb35a7a4f8cdbd5 19922 
lazarus-ide-gtk2_0.9.30.4-7_amd64.deb
 e4dc7711f3e846cead76abc004379cca289ca169 19946 
lazarus-ide-qt4_0.9.30.4-7_amd64.deb
 449119b85976f669ecae68b134bc3eb2de532338 19944 lcl_0.9.30.4-7_amd64.deb
 cdf7009eca93604219c72e78d4f7398676c54d09 19948 lcl-utils_0.9.30.4-7_amd64.deb
 b843c40f9c5e0f422c9e0ba4dc439e06be234de6 19932 lcl-units_0.9.30.4-7_amd64.deb
 4752769df205e95e48b9c48ff540eef0e4fb20b4 19972 lcl-nogui_0.9.30.4-7_amd64.deb
 458322e1b88e797f47c5cd012f5ee9a3b2710409 19948 lcl-gtk2_0.9.30.4-7_amd64.deb
 07bc7b87c99dca58b9b7b128c8855007804bee8e 19946 lcl-qt4_0.9.30.4-7_amd64.deb
 9d16159b5de38c8b627cdbfb963e65f6099a4e5d 20310 
lazarus-0.9.30.4_0.9.30.4-7_all.deb
 6cdfd93ea49aacd889dd38bfea9c45f6ac9ba66c 14314108 
lazarus-src-0.9.30.4_0.9.30.4-7_all.deb
 082a8807dc83fe4b413cc7e7b78b604c40b5b762 2985414 
lazarus-doc-0.9.30.4_0.9.30.4-7_all.deb
 6e3f5363571efeeb5b0d081863297e4de35d5d9b 19932 lazarus_0.9.30.4-7_all.deb
 963b6c56850fd1b86e3e37a325c61bddc1d8be2b 19966 lazarus-src_0.9.30.4-7_all.deb
 6ee8ac72bcc2dcb033d970d452cd9875537ee852 20020 lazarus-doc_0.9.30.4-7_all.deb
Checksums-Sha256: 
 fb3108fc9d577f7074b9808280d7b9655274623c4eb61ada1991d34de78efcf6 2869 
lazarus_0.9.30.4-7.dsc
 c8a6619e9895347c7135b047b0d99c829ca7a5dc4708df2b548c63d02dce9e31 43334 
lazarus_0.9.30.4-7.debian.tar.gz
 8ba1d9f3e22c78a43242a652247018057b56d1630574da6457a101bdefada053 5994392 
lazarus-ide

Bug#708333: ITP: view3dscene -- 3D scene viewer written with FreePascal Lazarus

2013-05-15 Thread Abou Al Montacir
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

   Package name: castle-game
Version: 1.0.0
Upstream Author: Michalis Kamburelis ka...@users.sf.net
URL: http://castle-engine.sourceforge.net/castle.php
License: GPL-2
Description:  3D Castle Game - 3D game based on Castle Game Engine

Castle Game Engine is a set of LGPL licenced libraries that are inteded to
ease developing 3D games with FreePascal / Lazarus.

It provides an excellent support for the VRML / X3D 3D data format. Other 3D
formats are also supported.

It features many advanced graphic effects and easy to use API on top of OpenGL

The Castle Game is a game developed on top of Castle Game Engine and features
multi-levels attack scenario.

Cheers,




signature.asc
Description: This is a digitally signed message part


Bug#707932: ITP: view3dscene -- 3D scene viewer written with FreePascal Lazarus

2013-05-12 Thread Abou Al Montacir
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

   Package name: view3dscene
Version: 4.0.1
Upstream Author: Michalis Kamburelis ka...@users.sf.net
URL: http://castle-engine.sourceforge.net
License: LGPL-2 + extention allowing statically linking to non free 
software
Description:  View 3D Scene - 3D scene viewer written with FreePascal  
Lazarus

Castle Game Engine is a set of LGPL licenced libraries that are inteded to
ease developing 3D games with FreePascal / Lazarus.

It provides an excellent support for the VRML / X3D 3D data format. Other 3D
formats are also supported.

It features many advanced graphic effects and easy to use API on top of OpenGL

View 3D Scene is a 3D scene viewer used to export 3D scenes into
compatible format for use with Casle Game Engine based games and
applications.

Cheers,



signature.asc
Description: This is a digitally signed message part


Re: Bug#705982: marked as done (Wireless connection drops and will NOT re-connect -- Debian/Wheezy RC1 64 bit)

2013-04-29 Thread Abou Al Montacir
On Sun, 2013-04-28 at 11:18 +, Debian Bug Tracking System wrote:
 Your message dated Sun, 28 Apr 2013 13:15:47 +0200
 with message-id 201304281315.52575.hol...@layer-acht.org
 and subject line after correction configuration things work ;)
 has caused the Debian Bug report #705982,
 regarding Wireless connection drops and will NOT re-connect -- Debian/Wheezy 
 RC1 64 bit
 to be marked as done.
 
 This means that you claim that the problem has been dealt with.
 If this is not the case it is now your responsibility to reopen the
 Bug report if necessary, and/or fix the problem forthwith.
 
 (NB: If you are a system administrator and have no idea what this
 message is talking about, this may indicate a serious mail system
 misconfiguration somewhere. Please contact ow...@bugs.debian.org
 immediately.)
 
 
 email message attachment (Wheezy RC1 64 bit)
   Forwarded Message 
  From: Wayno bluefigto...@pobox.com
  To: sub...@bugs.debian.org
  Subject: Wireless connection drops and will NOT re-connect --
  Debian/Wheezy RC1 64 bit
  Date: Mon, 22 Apr 2013 22:59:55 -0700
  
  Package:  Unknown
  Version:  Wheezy RC1 (64 Bit)
  
  HP Pavilion G6 2323DX.  Running Wheezy RC1 64 bit.  AMD Radeon HD 7640G 
  Discrete-Class graphics card, WITH or WITHOUT proprietary drivers. 
  Power management settings, set to DO NOT SUSPEND.
  
  Once any screensaver (gnome-screensaver or xscreesaver) engages, the 
  wireless lan (atheros AR9485 -- using ath9k driver) drops offline, and 
  can not be reconnected, without doing a reboot.
  
  Removed all screensavers, it stays connected.
  
  Connect box keeps re-appearing multiple instances for wireless connection.
  
  Severity:  High.  Leaves computer physically un-protected.
  
  Reproducible.
  
  Wayno
  
 email message attachment (after correction configuration things
 work ;))
   Forwarded Message 
  From: Holger Levsen hol...@layer-acht.org
  To: 705982-d...@bugs.debian.org
  Subject: after correction configuration things work ;)
  Date: Sun, 28 Apr 2013 13:15:47 +0200
  
  Hi,
  
  you are right, there might be a bug in network-manager-gnome hidden 
  somewhere, 
  but as as you found a workaround using wicd and manually editing 
  /etc/network/interfaces, I think it's better to close this bug then to keep 
  it 
  open. Also because this bug mostly describes the workaround and because of 
  http://qa.debian.org/data/bts/graphs/n/network-manager.png
  
  
  cheers,
  Holger

Hi Holger,

I'm not convinced this is the right way to proceed with this bug. I'm
CCing d-d@l.d.o to get more advices, but I'd prefer to keep the bug open
for tracking and release Wheezy with it open rather than hide it because
one have a workaround.

Also the fact the N-M is completely buggy does not mean we should hide
its bugs, this will not help at all. We'd rather keep them open and ask
hacker for help.

Cheers,


signature.asc
Description: This is a digitally signed message part


Bug#705982: marked as done (Wireless connection drops and will NOT re-connect -- Debian/Wheezy RC1 64 bit)

2013-04-29 Thread Abou Al Montacir
On Mon, 2013-04-29 at 11:24 +0200, Holger Levsen wrote:

 Hi Abou,
 
 are you the original submitter?

Hi Holger,

No I'm not the original submitter, but I'm a user of N-M

 Technically, you and I and everybody can reopen this bug, but practically I 

I know, but would like to discuss this before doing so

 think it would be better if you file a new one, where you describe the issue 
 short and to the point. As it is, this bug report is cluttered with your 
 description how to setup wicd and /etc/network/interfaces - which hides the 
 problem you had with network-manager. 

I think you should have asked for clarification before closing the bug, but no 
problem as we can reopen it anyway.

I'm ccing the original repoter for providing more information. we just
can ignore the workaround, even if it could be important for those who
want cope with this issue quickly.

 Hint: it doesnt work is not a good bug report.

I fully agree here, but some users may not be familiar with bug
reporting and should be educated with patience.

  Also the fact the N-M is completely buggy 
 
 That's just wrong (but there is a vocal group on d-devel who will shout hell 
 yeah!, so enjoy).

I know! I personally find the concept of N-M very interesting, but think
that it lacks many features and has many bugs. I'll not reopen this
flavor again and prefer to help or shut-up. I was accommodated to many
issues and I'm usually blaming myself not reporting these issues so can
not blame N-M to have them.  

  does not mean we should hide
  its bugs, this will not help at all. We'd rather keep them open and ask
  hacker for help.
 
 Looking at http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=network-manager I 
 dont think we're activly hiding problems with network-manager (or any other 
 software for that matter).

Sorry, but that was not my thought, I'm just speaking about this bug
report.

Cheers,


signature.asc
Description: This is a digitally signed message part


Bug#706408: ITP: castle-game-engine -- 3D game engine for FreePascal Lazarus

2013-04-29 Thread Abou Al Montacir
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

   Package name: castle-game-engine
Version: 4.0.1
Upstream Author: Michalis Kamburelis ka...@users.sf.net
URL: http://castle-engine.sourceforge.ne
License: LGPL-2 + extention allowing statically linking to non free 
software
Description:  Castle Game Engine - 3D game engine for FreePascal  Lazarus

Castle Game Engine is a set of LGPL licenced libraries that are inteded to
ease developing 3D games with FreePascal / Lazarus.

It provides an excellent support for the VRML / X3D 3D data format. Other 3D
formats are also supported.

It features many advanced graphic effects and easy to use API on top of OpenGL

Cheers,


signature.asc
Description: This is a digitally signed message part


Accepted fpc 2.6.0-10 (source amd64 all)

2013-04-29 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 26 Apr 2013 18:59:00 +0100
Source: fpc
Binary: fpc-2.6.0 fpc-source-2.6.0 fp-compiler-2.6.0 fp-ide-2.6.0 
fp-utils-2.6.0 fp-docs-2.6.0 fp-units-rtl-2.6.0 fp-units-base-2.6.0 
fp-units-fcl-2.6.0 fp-units-fv-2.6.0 fp-units-gtk-2.6.0 fp-units-gtk2-2.6.0 
fp-units-gnome1-2.6.0 fp-units-db-2.6.0 fp-units-gfx-2.6.0 fp-units-net-2.6.0 
fp-units-math-2.6.0 fp-units-misc-2.6.0 fp-units-multimedia-2.6.0 
fp-units-i386-2.6.0 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 2.6.0-10
Distribution: experimental
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.0 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.0 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.0 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.0 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.0 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.0 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.0 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.0 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.0 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.0 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.0 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.0 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.0 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.0 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.0 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.0 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.0 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.0 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.0  - Free Pascal - SDK-2.6.0 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.0 - Free Pascal - SDK source code
Closes: 692893 696536 704251 704252
Changes: 
 fpc (2.6.0-10) experimental; urgency=low
 .
   [ Abou Al Montacir ]
   * Fixed typo in French translation. (Closes: Bug#696536)
   * Removed auto-generation of debian/control during build process as required
 by policy. (Closes: Bug#704252)
   * Detect when user refused to migrate to update-alternatives managed and
 do not handle configuration files. (Closes: Bug#704251)
   * Added debconf screens to let user select a default .rc MS Windows resourse
 files compiler either from mingw32-binutils package or any others custom
 installed the system. (Closes: UpstreamBug#23092)
   [Hiroyuki Yamamoto]
   * Added support for ppc64 architecture. (Closes: Bug#692893)
   [ Peter Michael Green ]
   * Don't remove fpc.*dpkg* the release team don't like it and
 as far as I can tell it isn't needed.
Checksums-Sha1: 
 86ab9d467c3867c149c54a8f8534224d2a840fc1 4112 fpc_2.6.0-10.dsc
 3d8255b19805aaeeb971d724928f6eed8725c589 59140 fpc_2.6.0-10.debian.tar.gz
 cf596da5e406d552c8626e44883b1abebf07ef85 2492692 
fp-compiler-2.6.0_2.6.0-10_amd64.deb
 ed3bc625dc7e8f28050cdb30dce21f9f766237a5 1517532 
fp-ide-2.6.0_2.6.0-10_amd64.deb
 c7ccc128da070300e9bb0aab8fa1c8e2135a6737 4812110 
fp-utils-2.6.0_2.6.0-10_amd64.deb
 98cfcdfe9adc4016cfc7d4ce22ddf21fa524d788 2369496 
fp-units-rtl-2.6.0_2.6.0-10_amd64.deb
 06a54af24442db357e4a80ecd09469d340c3f7ca 1442520 
fp-units-base-2.6.0_2.6.0-10_amd64.deb
 250cc1bb48167e00b458f9b0f6961b493bde35c7 6382346 
fp-units-fcl-2.6.0_2.6.0-10_amd64.deb
 33c68c108d66d8ff07ec327e694dc023f5331e11 495430 
fp-units-fv-2.6.0_2.6.0-10_amd64.deb
 d1057be349decab468aa135e1c54ca6647e254a9 1041424 
fp-units-gtk-2.6.0_2.6.0-10_amd64.deb

Accepted fpc 2.6.0-8 (source amd64 all)

2013-04-12 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 26 Mar 2013 09:54:00 +0100
Source: fpc
Binary: fpc-2.6.0 fpc-source-2.6.0 fp-compiler-2.6.0 fp-ide-2.6.0 
fp-utils-2.6.0 fp-docs-2.6.0 fp-units-rtl-2.6.0 fp-units-base-2.6.0 
fp-units-fcl-2.6.0 fp-units-fv-2.6.0 fp-units-gtk-2.6.0 fp-units-gtk2-2.6.0 
fp-units-gnome1-2.6.0 fp-units-db-2.6.0 fp-units-gfx-2.6.0 fp-units-net-2.6.0 
fp-units-math-2.6.0 fp-units-misc-2.6.0 fp-units-multimedia-2.6.0 
fp-units-i386-2.6.0 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 2.6.0-8
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.0 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.0 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.0 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.0 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.0 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.0 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.0 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.0 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.0 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.0 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.0 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.0 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.0 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.0 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.0 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.0 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.0 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.0 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.0  - Free Pascal - SDK-2.6.0 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.0 - Free Pascal - SDK source code
Closes: 704252
Changes: 
 fpc (2.6.0-8) unstable; urgency=low
 .
   * Removed auto-generation of debian/control during build process as required
 by policy. (Closes: Bug#704252)
Checksums-Sha1: 
 2d46e73a554134391096e71d9660776e6e93566d 3762 fpc_2.6.0-8.dsc
 6d8a176e507bfed47a9e0b6063db00cda45ef396 57754 fpc_2.6.0-8.debian.tar.gz
 40270f380cd579357963c8841d57415838134af5 2457214 
fp-compiler-2.6.0_2.6.0-8_amd64.deb
 1725ee5995d950545550d4c5f6f7718043447114 1517148 fp-ide-2.6.0_2.6.0-8_amd64.deb
 6bfa02c6fb62ed7a39f690105f4c2b33f6501e9a 4758420 
fp-utils-2.6.0_2.6.0-8_amd64.deb
 1ec14b6cf4691b3d801506b9c4df456fa8ccc52b 2342944 
fp-units-rtl-2.6.0_2.6.0-8_amd64.deb
 f019862e846dadeb112993f3d36a70a47aefbf36 1475082 
fp-units-base-2.6.0_2.6.0-8_amd64.deb
 1e8c230ade6a7c04d08f55bac2663d7f200952af 6379700 
fp-units-fcl-2.6.0_2.6.0-8_amd64.deb
 4feb0b97d6e541f21396608b09a4b578fc7c7ecc 500564 
fp-units-fv-2.6.0_2.6.0-8_amd64.deb
 61476b5e42ebd605890ba4fdaf56f9b8c172bbfd 1040814 
fp-units-gtk-2.6.0_2.6.0-8_amd64.deb
 7b606b8c14b8a8ac6dcb2322a6cfdb9cc5b8e296 1593072 
fp-units-gtk2-2.6.0_2.6.0-8_amd64.deb
 55e65114c68b87d4cabb62f00c1d91fe7ca19bab 363082 
fp-units-gnome1-2.6.0_2.6.0-8_amd64.deb
 ad4dbec400bc790593968809713000b81a70b50f 1308872 
fp-units-db-2.6.0_2.6.0-8_amd64.deb
 3d126970277a3c5e916aaf2141e3ad781e726c85 1696216 
fp-units-gfx-2.6.0_2.6.0-8_amd64.deb
 e0cfc2fe7428a5c6f9b9f8b97025c14416d9f466 515234 
fp-units-net-2.6.0_2.6.0-8_amd64.deb
 bef6b4c6dea3914cca34d463c17aa5a25b36407b 500236 
fp-units-math-2.6.0_2.6.0-8_amd64.deb
 fea296093d19128d49e40ccfb08d3c35c51c27be 1697344 
fp-units-misc-2.6.0_2.6.0-8_amd64.deb
 f7b455ac422fd67a142dd9f6e27a58b6e019610d 216914 
fp-units-multimedia-2.6.0_2.6.0-8_amd64.deb

Bug#702844: marked as done (general: imposible to shutdown or logout graphically in gnome-shell)

2013-03-13 Thread Abou Al Montacir
On Tue, 2013-03-12 at 20:12 +, Jonathan Dowland wrote:

 I think gnome-shell-extensions has an extension that changes the behaviour to 
 what you desire.
 

I confirm, but I'd expect that the default behavior get changed and that
the extension installs this (mis/bad)feature.

Cheers,


signature.asc
Description: This is a digitally signed message part


Accepted lazarus 0.9.30.4-6 (source amd64 all)

2013-03-05 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Mar 2013 09:15:00 +0100
Source: lazarus
Binary: lazarus-0.9.30.4 lazarus-src-0.9.30.4 lazarus-ide-0.9.30.4 
lazarus-ide-gtk2-0.9.30.4 lazarus-ide-qt4-0.9.30.4 lcl-0.9.30.4 
lcl-utils-0.9.30.4 lcl-units-0.9.30.4 lcl-nogui-0.9.30.4 lcl-gtk2-0.9.30.4 
lcl-qt4-0.9.30.4 lazarus-doc-0.9.30.4 lazarus lazarus-src lazarus-ide 
lazarus-ide-gtk2 lazarus-ide-qt4 lcl lcl-utils lcl-units lcl-nogui lcl-gtk2 
lcl-qt4 lazarus-doc
Architecture: source amd64 all
Version: 0.9.30.4-6
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 lazarus- IDE for Free Pascal - SDK dependency package
 lazarus-0.9.30.4 - IDE for Free Pascal - suite
 lazarus-doc - IDE for Free Pascal - documentation dependency package
 lazarus-doc-0.9.30.4 - IDE for Free Pascal - documentation
 lazarus-ide - IDE for Free Pascal - common IDE files dependency package
 lazarus-ide-0.9.30.4 - IDE for Free Pascal - common IDE files
 lazarus-ide-gtk2 - IDE for Free Pascal - GTK+ version
 lazarus-ide-gtk2-0.9.30.4 - IDE for Free Pascal - GTK+ version
 lazarus-ide-qt4 - IDE for Free Pascal - IDE build on top of Qt backend 
dependency p
 lazarus-ide-qt4-0.9.30.4 - IDE for Free Pascal - Qt version
 lazarus-src - IDE for Free Pascal - LCL source code dependency package
 lazarus-src-0.9.30.4 - IDE for Free Pascal - LCL source code
 lcl- Lazarus Components Library - LCL dependency package
 lcl-0.9.30.4 - Lazarus Components Library - LCL suite
 lcl-gtk2   - Lazarus Components Library - GTK+ backend dependency package
 lcl-gtk2-0.9.30.4 - Lazarus Components Library - GTK+ backend
 lcl-nogui  - Lazarus Components Library - no GUI backend dependency package
 lcl-nogui-0.9.30.4 - Lazarus Components Library - no GUI backend
 lcl-qt4- Lazarus Components Library - Qt backend dependency package
 lcl-qt4-0.9.30.4 - Lazarus Components Library - Qt backend
 lcl-units  - Lazarus Components Library - backend independent components depen
 lcl-units-0.9.30.4 - Lazarus Components Library - backend independent 
components
 lcl-utils  - Lazarus Components Library - command line build tools dependency
 lcl-utils-0.9.30.4 - Lazarus Components Library - command line build tools
Changes: 
 lazarus (0.9.30.4-6) unstable; urgency=low
 .
   * Fixed typo in name of conflicting packages (lazarus-docs = lazarus-doc).
Checksums-Sha1: 
 b32d7b9c6035212edc97b7e2898dd8142ad0597c 3215 lazarus_0.9.30.4-6.dsc
 5b8a82e48a35abf23b1dbd6c815c4e2ca523311c 42433 lazarus_0.9.30.4-6.debian.tar.gz
 53b8cca597cb2a24fed750722deb0b304d71b37e 6015406 
lazarus-ide-0.9.30.4_0.9.30.4-6_amd64.deb
 113477b27e52d7f300a188f62a95b5d9ff87a27d 6581440 
lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
 9f784c9275e633ec6bf5787f9d39e840913c75f0 20088 
lazarus-ide-qt4-0.9.30.4_0.9.30.4-6_amd64.deb
 1b81c9ff7a9ba02cfed0a04df82d19e7d2efeb73 19876 
lcl-0.9.30.4_0.9.30.4-6_amd64.deb
 a89909761f4b8c753f0cd06203a4b230675525d4 5439854 
lcl-utils-0.9.30.4_0.9.30.4-6_amd64.deb
 acc1d9ad3644a0053bc9d7140831c8682bbf3ba1 29094480 
lcl-units-0.9.30.4_0.9.30.4-6_amd64.deb
 fb35c24fbbbd0301f616cd3a1cdfd3e749357d01 48844 
lcl-nogui-0.9.30.4_0.9.30.4-6_amd64.deb
 5b210a89bd884cb5c2f4c4e3117e2cd2218f3293 1332364 
lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
 a20911b6ba294d78ea7e0dec82e90f0af162fd7f 2079892 
lcl-qt4-0.9.30.4_0.9.30.4-6_amd64.deb
 6aa5d73a798dad5253ab44aee096faa5b4dfb32e 19824 lazarus-ide_0.9.30.4-6_amd64.deb
 94b2dce98c300353c16c463e8393a7e25cbc3e0b 19860 
lazarus-ide-gtk2_0.9.30.4-6_amd64.deb
 222544e7f3ff743d4cfed5df561a8afbd3e31f00 19870 
lazarus-ide-qt4_0.9.30.4-6_amd64.deb
 785bde879f2f11a132c4c5798487bb9921b672da 19806 lcl_0.9.30.4-6_amd64.deb
 bb0015035498a71158b5d80de9dc620ee116c864 19824 lcl-utils_0.9.30.4-6_amd64.deb
 8a19b57220db79f78aee95368912d42a271cf441 19812 lcl-units_0.9.30.4-6_amd64.deb
 64915a39b1a58bd1d1706049c18715722d7a32e2 19848 lcl-nogui_0.9.30.4-6_amd64.deb
 215e5bc62df3452dc3897e895638024c9ef8b5db 19836 lcl-gtk2_0.9.30.4-6_amd64.deb
 98ab199ca8f75829e2154020f10701a570f1d9eb 19834 lcl-qt4_0.9.30.4-6_amd64.deb
 f99460104c9185e350df4796736db1dc5c0b32dc 20210 
lazarus-0.9.30.4_0.9.30.4-6_all.deb
 f5af500f4d5d78909cca4809a9a6d9b8009a7d0f 14054808 
lazarus-src-0.9.30.4_0.9.30.4-6_all.deb
 eff697308819cedab32cfd60ab67907bb789897d 3004602 
lazarus-doc-0.9.30.4_0.9.30.4-6_all.deb
 4daf52d155980b00aba1573d9d4a47483b6f5f81 19784 lazarus_0.9.30.4-6_all.deb
 d4d7cd7fe681907b4d63f2888e8cf321734eaf2f 19846 lazarus-src_0.9.30.4-6_all.deb
 4fc676b663f17301004ebe2bc578c17233758aa9 19890 lazarus-doc_0.9.30.4-6_all.deb
Checksums-Sha256: 
 5a4b44a10f5184e7f81a314486de0d6848286093b946ee7825e51d5b449585f0 3215 
lazarus_0.9.30.4-6.dsc
 84aaadd8b207d1f3118cfea98d82197572fd2a6533ec08b3b90846d04844997b 42433 
lazarus_0.9.30.4-6.debian.tar.gz
 2677b1a1a1235e64fc4ac4f7ff0a2b26686da2404f38cb2aa78785cd80b3a1be 6015406 
lazarus-ide-0.9.30.4_0.9.30.4-6_amd64.deb

  1   2   >