summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix compiling with ocaml-4.12Thierry Vignaud2021-04-011-1/+1
| | | | | | | | | "compare" becames "List.compare" due to https://github.com/ocaml/ocaml/pull/9668 Thus we need to use Stdlib.compare Thx Pascal Rigaux
* adjust to immutable/safe strings vs bytes splitThierry Vignaud2020-01-253-18/+2
| | | | it was possible to fix to_CamelCase but it was actually unused...
* fix compiling with ocaml-4.06Thierry Vignaud2018-02-061-2/+2
| | | | it'll need more work later
* fix debugsources subpkgThierry Vignaud2018-02-062-3/+3
|
* fix running tests with perl-5.26Thierry Vignaud2018-02-061-1/+1
|
* blacklist Date::Manip for urpm::parallelThierry Vignaud2016-11-061-1/+1
|
* sortThierry Vignaud2016-11-061-1/+1
|
* recognize ~~ (smartmatch)Thierry Vignaud2016-10-112-2/+6
|
* blacklist File::Spec::Unix, Test::Builder for iurtThierry Vignaud2016-10-111-2/+2
|
* blacklist some basic packagesThierry Vignaud2016-09-161-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | they are not parsable by perl_checker and thus end in every project blacklist, so ... AutoLoader B Compress::Gzip Compress::Raw::Zlib Config::IniFiles Convert::ASN1 DateTime Digest::base Digest::Perl::MD5 encoding Errno Exporter::Heavy Exporter::Tiny ExtUtils::MakeMaker File::Copy File::Copy::Recursive File::Find File::FnMatch File::GlobMapper FileHandle File::MimeInfo::Magic File::NCopy File::Path File::Slurp File::Sync File::Temp Gtk2::Gdk::Keysyms Hash::Util::FieldHash HTTP::Message HTTP::Request::Common IO::Compress::Base::Common IO::Compress::Gzip IO::File IO::Handle IO::Pipe IO::Socket::INET IO::Socket::IP IO::Socket::SSL IO::Uncompress::Gunzip Libconf::Glueconf Libconf::Templates::Generic::KeyValue List::MoreUtils LWP::UserAgent MDV::Distribconf::Build MIME::Base64 MIME::Words Net::DBus::Binding::Introspector Net::DBus::Binding::Iterator Net::DBus::RemoteObject Net::DBus::Test::MockIterator Net::HTTP Net::HTTP::Methods Net::LDAP Net::LDAP::Constant Net::LDAP::Control Net::LDAP::Filter Net::LDAP::Intermediate Net::LDAP::Schema Net::LDAP::Util Net::SSL overload parent Perl::Tidy Pod::Usage String::Escape Symbol Sys::Syslog Term::ReadKey Test::More Text::ParseWords Text::Wrap Time::ZoneInfo URI::Escape XML::LibXML::AttributeHash XML::LibXML::Boolean XML::LibXML::Error XML::LibXML::Literal XML::LibXML::NodeList XML::LibXML::Number XML::Parser XML::Simple XML::Writer
* recognize "bytes", "open" & "constant" pragmasThierry Vignaud2016-09-161-1/+1
| | | | also sort them
* do not blacklist POSIXThierry Vignaud2016-09-161-1/+1
| | | | using a fake package is better...
* Gtk package is long dead (sicne nearly 15 years)Thierry Vignaud2016-09-161-1/+1
|
* warn when @ISA / "use base" is used more than onceThierry Vignaud2015-06-141-1/+1
| | | | make it a warning instead of dying (needed for Parted bindings)
* fix "undeclared variable $_" false positive on List::Util::first()Thierry Vignaud2014-01-221-1/+1
|
* "please remove the space before the function call" is no more fatalThierry Vignaud2013-09-051-1/+1
| | | | (for Gtk3)
* recognize \E, \L, \u, \U in regexpesThierry Vignaud2012-10-131-1/+1
|
* recognize /r modifier for regexpesThierry Vignaud2012-10-131-1/+1
|
* fix an escapeThierry Vignaud2012-08-071-1/+1
|
* default to UTF-8 charset when generating reference catalogThierry Vignaud2012-08-071-1/+1
|
* recognize "%f" in printf stringsThierry Vignaud2012-03-271-0/+1
|
* recognize binmode() (for eg urpmi)Thierry Vignaud2012-03-271-1/+1
|
* recognize getpgrp() (for eg: iurt)Thierry Vignaud2012-03-251-1/+2
|
* recognize -p (pipe test) & -S (socket test) such as in MDK::Common::FileThierry Vignaud2012-03-251-1/+1
|
* kill "undeclared variable $^S" (eg in standalone.pm)Thierry Vignaud2012-03-241-1/+1
|
* recognize \B in regexps (match except at a word boundary)Thierry Vignaud2012-03-241-1/+1
| | | | eg: in detect_devices::is_netbook_nettop()
* blacklist some modules in order to fix testsuiteThierry Vignaud2012-02-021-0/+3
|
* Synthesized commit during git-svn import combining previous Mandriva history ↵Mageia SVN-Git Migration2011-09-202-4/+4
| | | | | | | | | | | | | | | | | | with Mageia. This commit consitsts of the following subversion commits: ------------------------------------------------------------------------ r1971 | tv | 2011-09-20 19:33:39 +0100 (Tue, 20 Sep 2011) | 2 lines create ------------------------------------------------------------------------ r1973 | tv | 2011-09-20 19:35:52 +0100 (Tue, 20 Sep 2011) | 2 lines initial import ------------------------------------------------------------------------
* - re-allow "$object->state" and "sub state ..."Pascal Rigaux2008-09-251-0/+1
|
* - re-allow $object->state - ignore "use feature"Pascal Rigaux2008-09-252-1/+4
|
* - fix typo causing qq(} $foo) to be parsed as q(} $foo)Pascal Rigaux2008-09-251-1/+1
|
* - recognize "state"Pascal Rigaux2008-09-252-0/+2
|
* recognize //=Pascal Rigaux2008-09-041-1/+1
|
* recognize file test "-o" (File is owned by effective uid.)Pascal Rigaux2008-09-041-1/+1
|
* - don't die when @ISA packages are unknow, make it a warning insteadPascal Rigaux2008-03-281-3/+3
|
* add support for Basedir ../../..Olivier Blin2008-03-101-0/+1
|
* re-sync after the big svn loss1.2.41.2.3Pascal Rigaux2007-04-2513-64/+215
|
* Rename folder to match history.Mageia SVN-Git Migration2007-04-2538-0/+7882
This is a Synthesized commit to combine perl-MDK-Common and perl_checker repository history.