From 1390316a872c7c1ec24169e0d1f3922d93c3b42d Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Wed, 25 Sep 2013 03:04:52 -0400 Subject: [PATCH] Copy version string from package.xml although plugin versions should be derived from git tags --- bin/package2composer.sh | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/bin/package2composer.sh b/bin/package2composer.sh index aa9dffb..c615a17 100755 --- a/bin/package2composer.sh +++ b/bin/package2composer.sh @@ -39,6 +39,7 @@ '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->lead) { foreach ($package->lead as $lead) { + if (strval($lead->active) == 'no') { + continue; + } $data['authors'][] = array( 'name' => strval($lead->name), 'email' => strval($lead->email), -- Gitblit v1.9.1