mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
66d204be81
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in unit tests and LICENSE file. Reviewers: epriestley, btrahan, edward Reviewed By: epriestley CC: aran, Korvin, davidrecordon Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3881
76 lines
2 KiB
PHP
Executable file
76 lines
2 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once dirname(__FILE__).'/__init_script__.php';
|
|
|
|
$target = 'resources/php_compat_info.json';
|
|
echo "Purpose: Updates {$target} used by ArcanistXHPASTLinter.\n";
|
|
|
|
$ok = include 'PHP/CompatInfo/Autoload.php';
|
|
if (!$ok) {
|
|
echo "You need PHP_CompatInfo available in 'include_path'.\n";
|
|
echo "http://php5.laurent-laville.org/compatinfo/\n";
|
|
exit(1);
|
|
}
|
|
|
|
$required = '5.2.3';
|
|
$reference = id(new PHP_CompatInfo_Reference_ALL())->getAll();
|
|
|
|
$output = array();
|
|
$output['@'.'generated'] = true;
|
|
$output['params'] = array();
|
|
|
|
foreach (array('functions', 'classes', 'interfaces') as $type) {
|
|
$output[$type] = array();
|
|
foreach ($reference[$type] as $name => $versions) {
|
|
$name = strtolower($name);
|
|
$versions = reset($versions);
|
|
list($min, $max) = $versions;
|
|
if (version_compare($min, $required) > 0) {
|
|
$output[$type][$name] = $min;
|
|
}
|
|
if ($type == 'functions' && isset($versions[2])) {
|
|
$params = explode(', ', $versions[2]);
|
|
foreach ($params as $i => $version) {
|
|
if (version_compare($version, $required) > 0) {
|
|
$output['params'][$name][$i] = $version;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Grepped from PHP Manual.
|
|
$output['functions_windows'] = array(
|
|
'apache_child_terminate' => '',
|
|
'chroot' => '',
|
|
'getrusage' => '',
|
|
'imagecreatefromxpm' => '',
|
|
'lchgrp' => '',
|
|
'lchown' => '',
|
|
'nl_langinfo' => '',
|
|
'strptime' => '',
|
|
'sys_getloadavg' => '',
|
|
'checkdnsrr' => '5.3.0',
|
|
'dns_get_record' => '5.3.0',
|
|
'fnmatch' => '5.3.0',
|
|
'getmxrr' => '5.3.0',
|
|
'getopt' => '5.3.0',
|
|
'imagecolorclosesthwb' => '5.3.0',
|
|
'inet_ntop' => '5.3.0',
|
|
'inet_pton' => '5.3.0',
|
|
'link' => '5.3.0',
|
|
'linkinfo' => '5.3.0',
|
|
'readlink' => '5.3.0',
|
|
'socket_create_pair' => '5.3.0',
|
|
'stream_socket_pair' => '5.3.0',
|
|
'symlink' => '5.3.0',
|
|
'time_nanosleep' => '5.3.0',
|
|
'time_sleep_until' => '5.3.0',
|
|
);
|
|
|
|
file_put_contents(
|
|
phutil_get_library_root('arcanist').'/../'.$target,
|
|
json_encode($output));
|
|
|
|
echo "Done.\n";
|