https://bugzilla.novell.com/show_bug.cgi?id=745257https://bugzilla.novell.com/show_bug.cgi?id=745257#c0
Summary: openSUSE:Factory:Contrib: Bug Dropbox
Classification: openSUSE
Product: openSUSE.org
Version: unspecified
Platform: Other
OS/Version: openSUSE 12.1
Status: NEW
Severity: Normal
Priority: P5 - None
Component: 3rd party software
AssignedTo: opensuse-contrib(a)opensuse.org
ReportedBy: caf4926(a)opensuse-forums.org
QAContact: opensuse-communityscreening(a)forge.provo.novell.com
Found By: Community User
Blocker: ---
I have 2 reports of issues via the forum when running
dropbox start -i
Starting Dropbox...Traceback (most recent call last):
File "/usr/bin/dropbox", line 365, in handle_data_waiting
self.unpack_dropbox()
File "/usr/bin/dropbox", line 375, in unpack_dropbox
name, i, total = one_member.next()
File "/usr/bin/dropbox", line 267, in unpack
if not verify_signature(StringIO.StringIO(DROPBOX_PUBLIC_KEY), signature,
self.local_file):
File "/usr/bin/dropbox", line 200, in verify_signature
with gpgme_context([key_file]) as ctx:
File "/usr/lib64/python2.7/contextlib.py", line 17, in __enter__
return self.gen.next()
File "/usr/bin/dropbox", line 184, in gpgme_context
ctx = gpgme.Context()
gpgme.GpgmeError: (32, 176, 'Not operational')
http://forums.opensuse.org/vbcms-comments/461554-article-how-install-dropbo…http://forums.opensuse.org/vbcms-comments/461554-article-how-install-dropbo…
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org
https://bugzilla.novell.com/show_bug.cgi?id=700267https://bugzilla.novell.com/show_bug.cgi?id=700267#c0
Summary: openSUSE:Factory:Contrib/cruisecontrol: Bug
Classification: openSUSE
Product: openSUSE.org
Version: unspecified
Platform: Other
OS/Version: openSUSE 11.4
Status: NEW
Severity: Normal
Priority: P5 - None
Component: 3rd party software
AssignedTo: graham(a)andtech.eu
ReportedBy: rozelak(a)volny.cz
QAContact: opensuse-communityscreening(a)forge.provo.novell.com
CC: opensuse-contrib(a)opensuse.org
Found By: Other
Blocker: No
Dear developer.
We decided to use cruisecontrol on 'encfs'-encrypted path, which is not well
supported by your init scripts (cruisecontrol-2.8.4-1.1.noarch.rpm).
Therefore, I'm sending changes we made. They are not perfect, but please, have
a look at them and consider the proposed generalizations in order to simplify
transfer of CC to other path (ideal case is only to change settings in
/etc/default/cruisecontrol).
Unfortunatelly, I cannot append a file with changed files and diffs from
..2.8.4-1.1 rpm. But if you want, I can send it to you to graham(a)andtech.eu
e-mail.
-----
/etc/default/cruisecontrol:
# Run CruiseControl as this user ID (default: ccontrol)
#
# Set this to an empty string to prevent CruiseControl from starting
# automatically. Think to stop CruiseControl before setting an empty string ;o)
#
CRUISE_USER="cruise"
CRUISE_SPOOL=/home/cruise
CRUISE_PID=${CRUISE_SPOOL}/cc.pid
# Port used for the JMX Http Console
CRUISE_JMX_PORT=8000
# Port used for RMI
CRUISE_RMI_PORT=1099
# Port used for HTTP
CRUISE_WEB_PORT=8080
# The home directory of the Java development kit (JDK).
#JAVA_HOME="/usr/lib/jvm/java-1.5.0-sun"
# Arguments to pass to the CruiseControl script
CRUISE_OPTS="-Xmx256m -Xms256m -server -Xincgc
-Dcc.config.file=${CRUISE_SPOOL}/config.xml -Dcc.artifacts=${CRUISE_SPOOL}
/artifacts -Dcc.projects=${CRUISE_SPOOL}/projects
-Dcc.logdir=${CRUISE_SPOOL}/logs -Dcc.ajp13port=8009 -Dlog4j.configurat
ion=file://${CRUISE_SPOOL}/log4j.properties"
-----
/etc/init.d/cruisecontrol:
#!/bin/bash
#
# Init file for CruiseControl server daemon
#
# chkconfig: 2345 20 80
# description: CruiseControl server daemon
#
### BEGIN INIT INFO
# Provides: cruisecontrol
# Required-Start: $local_fs $network $syslog
# Should-Start: java
# Required-Stop: $null
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Short-Description: CruiseControl
# Description: CruiseControl
### END INIT INFO
# source function library
if [ -f /lib/lsb/init-functions ]; then
. /lib/lsb/init-functions
fi
if [ -f /etc/default/cruisecontrol ]; then
. /etc/default/cruisecontrol
fi
# DT: Must use values defined in /etc/default/cruisecontrol
CRUISE_PID=${CRUISE_PID:-/var/spool/cruisecontrol/cc.pid}
CRUISE_SPOOL=${CRUISE_SPOOL:-/var/spool/cruisecontrol}
start() {
# DT: /etc/cruisecontrol/cruisecontrol.xml replaced by
${CRUISE_SPOOL}/config.xml
# DT: must go to the directory, otherwise CC is started somehow strange ...
# It may be enough to set CCHOME, but I'm not sure ...
CMD="cd $CRUISE_SPOOL; JAVA_HOME=${JAVA_HOME:-/usr}
PATH=${JAVA_HOME:-/usr}/bin:$PATH CC_OPTS=\"${CRUISE_OPTS:-}\" /u
sr/bin/cruisecontrol -configfile ${CRUISE_SPOOL}/config.xml -jmxport
${CRUISE_JMX_PORT:-8000} -rmiport ${CRUISE_RMI_PORT:
-1099} -webport ${CRUISE_WEB_PORT:-8080} -webapppath
/usr/share/cruisecontrol/webapps/cruisecontrol -dashboard /usr/share
/cruisecontrol/webapps/dashboard >/dev/null &"
pgrep -f cruisecontrol-launcher.jar >/dev/null
PROCESS_EXIST=$?
if [ $PROCESS_EXIST -ne 0 ]; then
if [ "`whoami`" == "${CRUISE_USER:-cruise}" ]; then
echo -n "Starting Cruise Control..."
eval ${CMD}
elif [ "`whoami`" == "root" ]; then
echo -n "Starting Cruise Control..."
su -s /bin/sh ${CRUISE_USER:-cruise} -c "${CMD}"
echo "started."
else
echo "You are not root or ${CRUISE_USER:-cruise}, not starting"
fi
else
echo "Cruise Control already started."
exit
fi
}
stop() {
# DT: will fail, if $CRUISE_PID is not accessigle (e.g. encfs-crypted CC
home ...)
if [ -f $CRUISE_PID ]; then
PID=`cat $CRUISE_PID`
fi
PID_EXISTS=-1
if [ ! -z $PID ]; then
ps -p $PID >/dev/null
PID_EXISTS=$?
fi
# DT: If PID not found, use pgrep instead (exactly as in start() section
# TODO: check the user -u ${CRUISE_USER:-cruise} as well?
if [ $PID_EXISTS -ne 0 ] ; then
PID=$(pgrep -f cruisecontrol-launcher.jar)
PID_EXISTS=$?
fi
if [ $PID_EXISTS -eq 0 ] ; then
echo "Stopping Cruise Control (process $PID)..."
kill $PID
else
echo "Cruise Control not running..."
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 5
start
;;
force-reload)
;;
status)
;;
*)
echo "Usage: $0 [start|stop|restart|force-reload|status]"
exit 1
esac
exit 0
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-contrib+help(a)opensuse.org
Hi,
By de-digesting the FreshMeat [fm] digest, I have found the (apparently)
new version 3.6.1 of your package octave. (Old version last
notified/in tree was 3.4.3).
(This is just for your information. You decide whether to upgrade a package or
not.)
Location:
Extra Information:
[024] OCTAVE 3.6.1
Project Tags: Software Development, Compilers
Description:
Octave is a high-level language, primarily
intended for numerical computations. It provides a
convenient command line interface for solving
linear and nonlinear problems numerically, and for
performing other numerical experiments. It may
also be used as a batch-oriented language.
Release Notes:
This release adds many new functions, major enhancements, and bugfixes.
Release Tags: Bugfixes, Enhancements, Stable
License: GPL
http://freecode.com/projects/octave
========================================================================
Ciao, FreshMeat De Digester
(/suse/meissner/projects/caldera-tools/packagehunter/fm/filter_freshmeat.pl)
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org
State of submit-request #111434 was changed by matejcik:
new -> accepted
Comment:
Please add a comment
https://build.opensuse.org/request/diff/111434
Source
project: X11:Utilities
package: rox-filer
revision: 6
Target:
project: openSUSE:Factory:Contrib
package: rox-filer
--
Hermes messaging (http://hermes.opensuse.org)
openSUSE Build Service (https://build.opensuse.org/)
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org
https://bugzilla.novell.com/show_bug.cgi?id=748464https://bugzilla.novell.com/show_bug.cgi?id=748464#c1
Mariusz Fik <fisiu(a)opensuse.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fisiu(a)opensuse.org
AssignedTo|opensuse-contrib(a)opensuse.o |fisiu(a)opensuse.org
|rg |
Severity|Critical |Normal
--- Comment #1 from Mariusz Fik <fisiu(a)opensuse.org> 2012-03-26 12:14:44 UTC ---
Package doesn't provide symbolic link /usr/share/rawstudio/plugins ->
../../lib%{_libprefix}/rawstudio/plugins.
I'm going to fix it.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org
[This e-mail has been automatically generated.]
You have one or more bugs assigned to you in the Bugzilla bug tracking system (http://bugzilla.novell.com/) that require
attention.
All of these bugs are in the NEW orREOPENED state, and have not been
touched in 7 days or more.
You need to take a look at them, and decide on an initial action.
Generally, this means one of three things:
(1) You decide this bug is really quick to deal with (like, it's INVALID),
and so you get rid of it immediately.
(2) You decide the bug doesn't belong to you, and you reassign it to
someone else. (Hint: if you don't know who to reassign it to, make
sure that the Component field seems reasonable, and then use the
"Reassign bug to default assignee of selected component" option.)
(3) You decide the bug belongs to you, but you can't solve it this moment.
Just use the "Accept bug" command.
To get a list of all NEW/REOPENED bugs, you can use this URL (bookmark
it if you like!):
http://bugzilla.novell.com/buglist.cgi?bug_status=NEW&bug_status=REOPENED&a…
Or, you can use the general query page, at
http://bugzilla.novell.com/query.cgi
Appended below are the individual URLs to get to all of your NEW bugs
that haven't been touched for 7 days or more.
You will get this message once a week until you've dealt with these bugs!
Rawstudio does not start
-> http://bugzilla.novell.com/show_bug.cgi?id=748464
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org
Hi,
reading the SF release RSS feeds, I have found the (apparently)
new version README of your package vifm. (Old version last
notified/in tree was 0.7.2a).
(This is just for your information. You decide whether to upgrade a package or
not.)
Location: http://sourceforge.net/projects/vifm/files/vifm/README/download
Ciao, SF release RSS Reader
(/suse/meissner/projects/caldera-tools/packagehunter/rss/sf.pl)
--
To unsubscribe, e-mail: opensuse-contrib+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-contrib+owner(a)opensuse.org