[med-svn] r20790 - in trunk/packages/mobyle/mobyle/trunk/debian: . patches
Andreas Tille
tille at moszumanska.debian.org
Wed Dec 16 21:05:59 UTC 2015
Author: tille
Date: 2015-12-16 21:05:59 +0000 (Wed, 16 Dec 2015)
New Revision: 20790
Added:
trunk/packages/mobyle/mobyle/trunk/debian/patches/mayhem.patch
Modified:
trunk/packages/mobyle/mobyle/trunk/debian/changelog
trunk/packages/mobyle/mobyle/trunk/debian/control
trunk/packages/mobyle/mobyle/trunk/debian/patches/series
Log:
Fix mayhem issue
Modified: trunk/packages/mobyle/mobyle/trunk/debian/changelog
===================================================================
--- trunk/packages/mobyle/mobyle/trunk/debian/changelog 2015-12-16 20:53:47 UTC (rev 20789)
+++ trunk/packages/mobyle/mobyle/trunk/debian/changelog 2015-12-16 21:05:59 UTC (rev 20790)
@@ -8,6 +8,7 @@
[ Andreas Tille ]
* Add myself to Uploaders
* cme fix dpkg-control
+ * more verbose description for mobile-utils
-- Andreas Tille <tille at debian.org> Wed, 16 Dec 2015 21:49:59 +0100
Modified: trunk/packages/mobyle/mobyle/trunk/debian/control
===================================================================
--- trunk/packages/mobyle/mobyle/trunk/debian/control 2015-12-16 20:53:47 UTC (rev 20789)
+++ trunk/packages/mobyle/mobyle/trunk/debian/control 2015-12-16 21:05:59 UTC (rev 20790)
@@ -58,5 +58,10 @@
${shlibs:Depends},
${python:Depends}
Description: binary tools used by Mobyle
+ Mobyle is a framework and web portal specifically aimed at the integration of
+ bioinformatics software and databanks. It generates a web interface from an xml
+ description for command-line based tools.
+ It can submit jobs locally or using DRM systems.
+ .
Binary tools used by the Mobyle web portal to manage
jobs.
Added: trunk/packages/mobyle/mobyle/trunk/debian/patches/mayhem.patch
===================================================================
--- trunk/packages/mobyle/mobyle/trunk/debian/patches/mayhem.patch (rev 0)
+++ trunk/packages/mobyle/mobyle/trunk/debian/patches/mayhem.patch 2015-12-16 21:05:59 UTC (rev 20790)
@@ -0,0 +1,25 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Update: Wed, 16 Dec 2015 21:49:59 +0100
+Bugs-Debian: https://bugs.debian.org/716279
+Description: Fix mayhem issue
+
+--- a/Tools/setsid.c
++++ b/Tools/setsid.c
+@@ -1,4 +1,4 @@
+-
++#include <stdio.h>
+ #include <unistd.h>
+
+ int main(int argc, char **argv) {
+@@ -7,6 +7,10 @@ int main(int argc, char **argv) {
+ (void)setsid();
+
+ /* Execute the real command */
+- execvp(argv[1], argv+1);
++ if (argc > 1) {
++ execvp(argv[1], argv+1);
++ } else {
++ fprintf(stderr, "%s missing arguments\n", argv[0]);
++ }
+
+ return 1; }
Modified: trunk/packages/mobyle/mobyle/trunk/debian/patches/series
===================================================================
--- trunk/packages/mobyle/mobyle/trunk/debian/patches/series 2015-12-16 20:53:47 UTC (rev 20789)
+++ trunk/packages/mobyle/mobyle/trunk/debian/patches/series 2015-12-16 21:05:59 UTC (rev 20790)
@@ -1,2 +1,3 @@
change_mobylehome
defaultconfig
+mayhem.patch
More information about the debian-med-commit
mailing list