summaryrefslogtreecommitdiffstats
path: root/checkpkgist.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-30 06:58:09 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-30 06:58:09 +0200
commit974e4b31a9c750c1e5bd0051cf066d68250b1d08 (patch)
treecffad5450b0e94d20208784065900601de88a074 /checkpkgist.php
parent8c2e6b45b72bed3e6177ef810013a7fc880ce94e (diff)
checkpkgist: refresh and minor fix for 'ext-foo' case
Diffstat (limited to 'checkpkgist.php')
-rwxr-xr-xcheckpkgist.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/checkpkgist.php b/checkpkgist.php
index f350fcf..482cc4d 100755
--- a/checkpkgist.php
+++ b/checkpkgist.php
@@ -71,6 +71,10 @@ function run($name, $rpm) {
if (in_array($name, ['znerol/php-stringprep', 'psr/http-message-implementation'])) {
return;
}
+ if (!strpos($name, '/')) {
+ // e.g. ext-foo
+ return;
+ }
list($owner, $library) = explode('/', $name, 2);
if (in_array($owner, ['horde', 'kolab'])) {
return;