Processed: Re: lintian: check for dh-make boilerplate in README.source

2017-05-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 633850 + pending
Bug #633850 [lintian] lintian: check for dh-make boilerplate in README.source
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
633850: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633850
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#633850: lintian: check for dh-make boilerplate in README.source

2017-05-19 Thread Chris Lamb
tags 633850 + pending
thanks

Fixed in Git:

  
https://anonscm.debian.org/git/lintian/lintian.git/commit/?id=9c090548252e7791b7c66a9ab06b26f688e245fb


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



[lintian] 01/01: spelling: Add another correction

2017-05-19 Thread Paul Wise
This is an automated email from the git hooks/post-receive script.

pabs pushed a commit to branch master
in repository lintian.

commit 6e9bd3ca04a3eadb4977f301e186a68e7ee6678f
Author: Paul Wise 
Date:   Sat May 20 13:53:22 2017 +0800

spelling: Add another correction
---
 data/spelling/corrections | 1 +
 1 file changed, 1 insertion(+)

diff --git a/data/spelling/corrections b/data/spelling/corrections
index 0e8cb62..831dc27 100644
--- a/data/spelling/corrections
+++ b/data/spelling/corrections
@@ -1734,6 +1734,7 @@ genreates||generates
 genreating||generating
 genric||generic
 gental||gentle
+geometrie||geometry
 geomtry||geometry
 geting||getting
 gettetx||gettext

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



[lintian] 01/01: spelling: Add another correction

2017-05-19 Thread Paul Wise
This is an automated email from the git hooks/post-receive script.

pabs pushed a commit to branch master
in repository lintian.

commit e158961612c7b3c29632e96862266636c33551c6
Author: Paul Wise 
Date:   Sat May 20 13:50:25 2017 +0800

spelling: Add another correction
---
 data/spelling/corrections | 1 +
 1 file changed, 1 insertion(+)

diff --git a/data/spelling/corrections b/data/spelling/corrections
index 00e25df..0e8cb62 100644
--- a/data/spelling/corrections
+++ b/data/spelling/corrections
@@ -1640,6 +1640,7 @@ folloing||following
 follwing||following
 follwoing||following
 folowing||following
+foppy||floppy
 forbiden||forbidden
 foreing||foreign
 forewarded||forwarded

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



[lintian] 01/01: c/cruft: Check that README.source is not the dh_make template. (Closes: #633850)

2017-05-19 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a commit to branch master
in repository lintian.

commit 9c090548252e7791b7c66a9ab06b26f688e245fb
Author: Chris Lamb 
Date:   Sat May 20 07:49:49 2017 +0200

c/cruft: Check that README.source is not the dh_make template. (Closes: 
#633850)
---
 checks/cruft.desc   | 9 +
 checks/cruft.pm | 9 +
 debian/changelog| 2 ++
 t/tests/cruft-readme-source/debian/debian/README.source | 5 +
 t/tests/cruft-readme-source/desc| 6 ++
 t/tests/cruft-readme-source/tags| 1 +
 6 files changed, 32 insertions(+)

diff --git a/checks/cruft.desc b/checks/cruft.desc
index 3b41c62..e0da7c7 100644
--- a/checks/cruft.desc
+++ b/checks/cruft.desc
@@ -859,3 +859,12 @@ Info: As of Perl 5.20, the vendorarch directory is 
/usr/lib/triplet/perl
  Please replace that with the value of $Config{vendorarch} configuration
  parameter, e.g.
   $(shell perl -MConfig -wE'say substring($$Config{vendorarch},1)')
+
+Tag: readme-source-is-dh_make-template
+Severity: important
+Certainty: certain
+Info: The debian/README.source file appears to be an unmodified or 
insufficiently
+ modified copy of the dh_make template.
+ .
+ Please double-check the README.source page and replace it with information
+ about this source package or simply remove the file completely.
diff --git a/checks/cruft.pm b/checks/cruft.pm
index c3b9bce..3b6ac11 100644
--- a/checks/cruft.pm
+++ b/checks/cruft.pm
@@ -681,6 +681,15 @@ sub find_cruft {
 tag 'debian-upstream-obsolete-path', $name;
 }
 
+if (   $name eq 'debian/README.source'
+&& $entry->is_file
+&& $entry->is_open_ok) {
+my $contents = $entry->file_contents;
+if (index($contents, 'You WILL either need to modify or delete 
this file') >= 0) {
+tag 'readme-source-is-dh_make-template';
+}
+}
+
 # Find mentioning of usr/lib/perl5 inside the packaging
 if ($name =~ m{^debian/}) {
 my $short = $entry->basename;
diff --git a/debian/changelog b/debian/changelog
index db7130e..981b099 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -28,6 +28,8 @@ lintian (2.5.51) UNRELEASED; urgency=medium
   config.sub files.  These days debhelper automatically updates
   them when people use the dh-sequencer and the check is not
   geared for more thorough analysis.  (Closes: #848878)
++ [CL] Check that README.source is not the dh_make template.
+  (Closes: #633850)
   * checks/debian-readme.{desc,pm}:
 + [NT] Locate the README.Debian using the index rather than relying
   on a collection.
diff --git a/t/tests/cruft-readme-source/debian/debian/README.source 
b/t/tests/cruft-readme-source/debian/debian/README.source
new file mode 100644
index 000..5fdbe79
--- /dev/null
+++ b/t/tests/cruft-readme-source/debian/debian/README.source
@@ -0,0 +1,5 @@
+cruft-readme-source for Debian
+--
+
+
diff --git a/t/tests/cruft-readme-source/desc b/t/tests/cruft-readme-source/desc
new file mode 100644
index 000..3f12848
--- /dev/null
+++ b/t/tests/cruft-readme-source/desc
@@ -0,0 +1,6 @@
+Testname: cruft-readme-source
+Sequence: 6000
+Version: 1.0
+Description: Check for cruft in README.source
+Test-For:
+ readme-source-is-dh_make-template
diff --git a/t/tests/cruft-readme-source/tags b/t/tests/cruft-readme-source/tags
new file mode 100644
index 000..99beb25
--- /dev/null
+++ b/t/tests/cruft-readme-source/tags
@@ -0,0 +1 @@
+E: cruft-readme-source source: readme-source-is-dh_make-template

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



Processed: Re: [checks/patch-systems] Please revisit or temper patch-system-but-no-source-readme

2017-05-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 543260 [checks/patch-systems] Please revisit or temper 
> patch-system-but-no-source-readme
Bug #543260 [lintian] [checks/patch-systems] Please revisit or temper 
path-system-but-no-source-readme
Changed Bug title to '[checks/patch-systems] Please revisit or temper 
patch-system-but-no-source-readme' from '[checks/patch-systems] Please revisit 
or temper path-system-but-no-source-readme'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
543260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543260
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



derniers jours

2017-05-19 Thread I.F.T.A
Bonjour, 
Il ne vous reste que quelques jours pour profiter de notre promotion 1 
formation achetée = 1 formation offerte.
 
Pour rappel, la formation offerte peut être la même formation à offrir à un 
proche ... ou alors une autre formation, pour vous. Il suffit simplement que la 
2eme formation, celle qui est offerte, compte le même nombre de jours que celle 
que vous avez payé !
A bientôt
Eric PORNIN - Président
 
 
J'espère ne pas vous avoir importuné avec mon mail, pour ne plus recevoir de 
mails de ma part il vous suffit de répondre à ce mail en mettant STOP dans 
l'objet du mail


Build failed in Jenkins: lintian-tests_sid #1664

2017-05-19 Thread jenkins
See 


Changes:

[pabs] spelling: Add several corrections

--
[...truncated 262.18 KB...]
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:AddTrust_Qualified_Certificates_Root.pem
Adding debian:AddTrust_Public_Services_Root.pem
Adding debian:AddTrust_Low-Value_Services_Root.pem
Adding debian:AddTrust_External_Root.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Warning: there was a problem reading the certificate file 
/etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem. Message:
  /etc/ssl/certs/AC_Ra?z_Certic?mara_S.A..pem (No such file or directory)
Adding debian:ACEDICOM_Root.pem
Adding debian:ACCVRAIZ1.pem
done.
Setting up openjdk-8-jdk-headless:amd64 (8u131-b11-2) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/idlj to 
provide /usr/bin/idlj (idlj) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jdeps to 
provide /usr/bin/jdeps (jdeps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/wsimport to 
provide /usr/bin/wsimport (wsimport) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/rmic to 
provide /usr/bin/rmic (rmic) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jinfo to 
provide /usr/bin/jinfo (jinfo) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jsadebugd to 
provide /usr/bin/jsadebugd (jsadebugd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/native2ascii 
to provide /usr/bin/native2ascii (native2ascii) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jstat to 
provide /usr/bin/jstat (jstat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javac to 
provide /usr/bin/javac (javac) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javah to 
provide /usr/bin/javah (javah) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jstack to 
provide /usr/bin/jstack (jstack) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jrunscript to 
provide /usr/bin/jrunscript (jrunscript) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javadoc to 
provide /usr/bin/javadoc (javadoc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jhat to 
provide /usr/bin/jhat (jhat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javap to 
provide /usr/bin/javap (javap) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jar to provide 
/usr/bin/jar (jar) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/xjc to provide 
/usr/bin/xjc (xjc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/schemagen to 
provide /usr/bin/schemagen (schemagen) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jps to provide 
/usr/bin/jps (jps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/extcheck to 
provide /usr/bin/extcheck (extcheck) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jmap to 
provide /usr/bin/jmap (jmap) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jstatd to 
provide /usr/bin/jstatd (jstatd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jdb to provide 
/usr/bin/jdb (jdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/serialver to 
provide /usr/bin/serialver (serialver) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/wsgen to 
provide /usr/bin/wsgen (wsgen) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jcmd to 
provide /usr/bin/jcmd (jcmd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jarsigner to 
provide /usr/bin/jarsigner (jarsigner) in auto mode
Setting up openjdk-8-jre:amd64 (8u131-b11-2) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/policytool 
to provide /usr/bin/policytool (policytool) in auto mode
Setting up default-jre-headless (2:1.8-58) ...
Setting up default-jdk-headless (2:1.8-58) ...
Setting up openjdk-8-jdk:amd64 (8u131-b11-2) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/appletviewer 
to provide /usr/bin/appletviewer (appletviewer) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jconsole to 
provide /usr/bin/jconsole (jconsole) in auto mode
Setting up default-jre (2:1.8-58) ...
Setting up default-jdk (2:1.8-58) ...
Setting up lintian-build-deps (2.5.51) ...
Processing triggers for libc-bin (2.24-10) ...
Processing 

[lintian] branch master updated (cd0fd88 -> c94a82c)

2017-05-19 Thread Paul Wise
This is an automated email from the git hooks/post-receive script.

pabs pushed a change to branch master
in repository lintian.

  from  cd0fd88   spelling: Add another correction
   new  c94a82c   spelling: Add several corrections

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 data/spelling/corrections | 2 ++
 1 file changed, 2 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



[lintian] 01/01: spelling: Add several corrections

2017-05-19 Thread Paul Wise
This is an automated email from the git hooks/post-receive script.

pabs pushed a commit to branch master
in repository lintian.

commit c94a82cfbd08ed5d42799bbdd1315f997e3931d9
Author: Paul Wise 
Date:   Sat May 20 11:30:51 2017 +0800

spelling: Add several corrections
---
 data/spelling/corrections | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/data/spelling/corrections b/data/spelling/corrections
index d37ea10..8ed2e5e 100644
--- a/data/spelling/corrections
+++ b/data/spelling/corrections
@@ -1620,6 +1620,7 @@ finsihes||finishes
 finsih||finish
 finsihing||finishing
 firmwware||firmware
+firts||first
 fisrt||first
 fitler||filter
 fitlers||filters
@@ -3657,6 +3658,7 @@ texually||textually
 texual||textual
 tghe||the
 thansk||thanks
+thant||than
 thats||that's
 theer||there
 therby||thereby

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git