From 1390316a872c7c1ec24169e0d1f3922d93c3b42d Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 25 Sep 2013 09:04:52 +0200 Subject: Copy version string from package.xml although plugin versions should be derived from git tags --- bin/package2composer.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin') diff --git a/bin/package2composer.sh b/bin/package2composer.sh index aa9dffb50..c615a177f 100755 --- a/bin/package2composer.sh +++ b/bin/package2composer.sh @@ -39,6 +39,7 @@ $data = array( 'description' => trim(strval($package->description), '- ') ? trim(strval($package->description)) : trim(strval($package->summary)), 'homepage' => strval($package->uri), 'license' => 'GPLv3+', + 'version' => strval($package->version->release), 'authors' => array(), 'repositories' => array( array('type' => 'composer', 'url' => 'http://plugins.roundcube.net'), @@ -55,6 +56,9 @@ if ($package->license) { if ($package->lead) { foreach ($package->lead as $lead) { + if (strval($lead->active) == 'no') { + continue; + } $data['authors'][] = array( 'name' => strval($lead->name), 'email' => strval($lead->email), -- cgit v1.2.3