diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2014-11-10 10:00:00 +0100 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2020-03-26 10:34:55 +0100 |
commit | 5a755132786d90fdd2aa883d90b40a7f2295cb9d (patch) | |
tree | 62eacdd49353a204a535b93b65fb6c2048afca97 | |
parent | b48fc78d6d067d8ece912ef2c7558d2e44f361de (diff) | |
download | autobuild-5a755132786d90fdd2aa883d90b40a7f2295cb9d.tar autobuild-5a755132786d90fdd2aa883d90b40a7f2295cb9d.tar.gz autobuild-5a755132786d90fdd2aa883d90b40a7f2295cb9d.tar.bz2 autobuild-5a755132786d90fdd2aa883d90b40a7f2295cb9d.tar.xz autobuild-5a755132786d90fdd2aa883d90b40a7f2295cb9d.zip |
Tweak a few attributes in find_attributes
-rwxr-xr-x | autobuild.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/autobuild.rb b/autobuild.rb index 35acf7e..d764375 100755 --- a/autobuild.rb +++ b/autobuild.rb @@ -51,7 +51,7 @@ def find_attributes(build_dir) attr[:lang_basic] = true end if name =~ /^mono$/ then - attr[:lang_mono] = true + attr[:lang_dotnet] = true end if name =~ /^(erlang)-compiler$/ then attr[:lang_erlang] = true @@ -89,7 +89,11 @@ def find_attributes(build_dir) if name =~ /^(perl)/ then # A bunch of perl modules are installed in every installation, # so ignore those. - if name !~ /^((perl)|(perl-base)|(perl-Config-IniFiles)|(perl-Exporter-Tiny)|(perl-File-Slurp)|(perl-File-Sync)|(perl-Filesys-Df)|(perl-JSON)|(perl-libintl-perl)|(perl-List-MoreUtils)|(perl-Locale-gettext)|(perl-MDK-Common)|(perl-MDV-Distribconf)|(perl-MDV-Packdrakeng)|(perl-Module-ScanDeps)|(perl-Time-ZoneInfo)|(perl-URPM)|(perl-XML-LibXML)|(perl-XML-NamespaceSupport)|(perl-XML-SAX)|(perl-XML-SAX-Base)|(perl-YAML)|(perl-YAML-Tiny))$/ then + # A few are also pretty common and are ignored because of + # too many false positives: + # perl-libintl-perl + # perl-WWW-Curl (required by openssl) + if name !~ /^((perl)|(perl-base)|(perl-Config-IniFiles)|(perl-Exporter-Tiny)|(perl-File-Slurp)|(perl-File-Sync)|(perl-Filesys-Df)|(perl-JSON)|(perl-libintl-perl)|(perl-List-MoreUtils)|(perl-Locale-gettext)|(perl-MDK-Common)|(perl-MDV-Distribconf)|(perl-MDV-Packdrakeng)|(perl-Module-ScanDeps)|(perl-Time-ZoneInfo)|(perl-URPM)|(perl-WWW-Curl)|(perl-XML-LibXML)|(perl-XML-NamespaceSupport)|(perl-XML-SAX)|(perl-XML-SAX-Base)|(perl-YAML)|(perl-YAML-Tiny))$/ then attr[:lang_perl] = true end end |