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,
reading the SF release RSS feeds, I have found the (apparently)
new version 575 of your package unetbootin. (Old version last
notified/in tree was 568).
(This is just for your information. You decide whether to upgrade a package or
not.)
Location: http://sourceforge.net/projects/unetbootin/files/UNetbootin/575/
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
Hi,
reading the SF release RSS feeds, I have found the (apparently)
new version 1.4.0 of your package rkhunter. (Old version last
notified/in tree was 1.3.8).
(This is just for your information. You decide whether to upgrade a package or
not.)
Location: http://sourceforge.net/projects/rkhunter/files/rkhunter/1.4.0/
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
Hi,
By de-digesting the FreshMeat [fm] digest, I have found the (apparently)
new version 0.2.3.14-alpha of your package tor. (Old version last
notified/in tree was 0.2.3.12-alpha).
(This is just for your information. You decide whether to upgrade a package or
not.)
Location:
Extra Information:
[032] TOR 0.2.3.14-ALPHA
Project Tags: Internet, Proxy Servers, Communications, Security, Networking, Utilities
Description:
Tor is a network of virtual tunnels that allows people and
groups to improve their privacy and security on the Internet.
It also enables software developers to create new
communication tools with built-in privacy features. It
provides the foundation for a range of applications that allow
organizations and individuals to share information over
public networks without compromising their privacy.
Individuals can use it to keep remote Websites from tracking
them and their family members. They can also use it to
connect to resources such as news sites or instant
messaging services that are blocked by their local Internet
service providers (ISPs).
Release Notes:
This release fixes yet more bugs to get closer to a release candidate.
It also dramatically speeds up AES: fast relays should consider
switching to the newer OpenSSL library.
Release Tags: Unstable, Testing
License: BSD Revised
http://freecode.com/projects/tor
========================================================================
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 #114892 was changed by elvigia:
new -> accepted
Comment:
Please add a comment
https://build.opensuse.org/request/diff/114892
Source
project: home:elvigia:branches:openSUSE:Factory:Contrib
package: aqemu
revision: 2
Target:
project: openSUSE:Factory:Contrib
package: aqemu
--
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
State of submit-request #113965 was changed by mrdocs:
new -> declined
Comment:
The build failures are a missing dependency on automake and autoconf. We are no longer accepting new packages in Contrib. Please submit to Games. Thanks!
https://build.opensuse.org/request/diff/113965
Source
project: home:apersaud:branches:openSUSE:Factory:Contrib
package: xboard
revision: 5
Target:
project: openSUSE:Factory:Contrib
package: xboard
--
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
home:apersaud:branches:openSUSE:Factory:Contrib/xboard -> openSUSE:Factory:Contrib/xboard
https://build.opensuse.org/request/show/113965
Description: Updated to 4.6.1. This version installs some more desktop files and icons that should be used, so the spec file needed adjustment. Not sure if the way I added it is correct, so please review :)
changes files:
--------------
--- xboard.changes
+++ xboard.changes
@@ -1,0 +2,89 @@
+Tue Apr 17 03:40:52 UTC 2012 - arun(a)gmx.de
+
+- removed duplicated suse_update_desktop_file
+
+-------------------------------------------------------------------
+Tue Apr 17 03:32:42 UTC 2012 - arun(a)gmx.de
+
+- patched gettext version, so that autoreconf (autopoint) doesn't complain
+
+-------------------------------------------------------------------
+Tue Apr 17 02:55:40 UTC 2012 - arun(a)gmx.de
+
+- fixed spec file
+
+-------------------------------------------------------------------
+Tue Apr 17 02:40:01 UTC 2012 - arun(a)gmx.de
+
+- updated spec file
+- updated to version 4.6.1
+
+changes from 4.6.1 to 4.6.0:
+
+ bugfix release for 4.6.0
+
+ * Fix memory corruption bug on second-engine loading (through menu or in tournament),
+ which could destroy -firstInitString
+ * Fix bug loading a new engine through the menu (not loading it with the full game,
+ but just upto the current move)
+ * Prefix engine command with "./" when a pathname is split up during install, so the engine actually runs (XB)
+ * Fix fall-back to -ncp mode when engine does not start (cutting short the feature timeout)
+ * Fix bug in position search for FRC castlings (where a King could 'fall off' the board)
+ * Add a message to inform the user how to clear the board, in sweep-select edit-position mode
+ * Fix a bug that could stop the clock when the board window was dragged (XB)
+ * Fix switching off highlighting during game (so last highlights do not remain for the rest of the game)
+ * Allow user to enter the name of a non-existing file when browsing for a save file (WB)
+ * Make sure rarely used engine-related options (such as -firstNPS) are also correctly loaded during session
+ * Correctly handle parsing of Crazyhouse promotions with legality-testing off
+ * Fix click-click detour under-promotions, which were not working for non-captures
+ * Don't strip path from engine command if directory is explicitly given in Load Engine dialog
+ * Consistently make auxiliary windows top level-shells or not, with new -topLevel option (XB)
+ * No longer fatal if second engine does not support current variant (just refuse Two Machines mode)
+ * Scroll XBoard game list to keep selected item in view (XB)
+ * Suppress spurious error popup when starting observing of bughouse games
+ * Fix vertical axis ticks in eval graph with drop games
+ * Put title on same line as menu bar only for -size 72 and larger (with -titleInWindow, XB)
+ * Properly open and close debug file when switching debug mode through key binding Ctrl-D (XB)
+
+changes for 4.6.0:
+
+ (for a more detailed list with screenshots see http://www.gnu.org/software/xboard/whats_new/4.6.0/ )
+
+ * Engine vs. Engine
+ * Loading and installing engines through the menu
+ * Running tournaments with more than two partipants
+ * Stopping a match between two engines
+ * Replacing a tourney participant
+ * Playing openings in color-reversed pairs
+ * Perpetual chasing in Xiangqi
+
+ * Interface Improvements
+ * Auto-Queen, and still under-promote?
+ * Piece fonts and figurine fonts
+ * Displaying PVs as SAN
+ * Small scores in the Eval Graph
+ * How close is the 50-move draw?
+ * Sign of the engine scores
+ * Loading frequently used engines
+ * Collapsing groups of engines
+
+ * Interactive Analysis
+ * Playing moves from the PV
+ * Rapidly changing the number of PVs
+ * Setting the other side to move in analysis
+ * Annotating a game with an engine
+
+ * Other New Functionality
+ * Searching a position in a PGN file
+ * Editing the opening book
+ * Recording game sequence number in PGN
+ * Each tourney game its own debug file
+
+ * XBoard -> WinBoard Convergence
+ * Exporting the game list (XB)
+ * A move type-in box (XB)
+ * New-style Move History window (XB)
+ * Associating XBoard with file types
+ * Many Windows behave as one (XB)
+
+-------------------------------------------------------------------
old:
----
xboard-4.5.3.tar.bz2
new:
----
gettext-version.patch
xboard-4.6.1.tar.bz2
spec files:
-----------
--- xboard.spec
+++ xboard.spec
@@ -1,7 +1,7 @@
#
-# spec file for package xboard (Version 4.5.3)
+# spec file for package xboard (Version 4.6.1)
#
-# Copyright (c) 2009, 2010, 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2009, 2010, 2011, 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,15 +20,20 @@
Name: xboard
BuildRequires: texlive-latex update-desktop-files xorg-x11-devel xorg-x11-libXt-devel hicolor-icon-theme
-BuildRequires: flex
+BuildRequires: xdg-utils autoconf
+Requires(post): shared-mime-info
+Requires(postun): shared-mime-info
+Requires(post): desktop-file-utils
+Requires(postun): desktop-file-utils
License: GPL v3.0 or later
Group: Amusements/Games/Board/Chess
-Requires: gnuchess
+Requires: gnuchess xdg-utils
Recommends: chess_backend
-Version: 4.5.3
+Version: 4.6.1
Release: 0
Summary: X Window System Interface for playing chess
Source: %{name}-%{version}.tar.bz2
+Patch0: gettext-version.patch
Url: http://www.gnu.org/software/xboard/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %install_info_prereq
@@ -58,35 +63,56 @@
H.G. Muller <h.g.muller(a)hccnet.nl>
Arun Persaud <arun(a)nubati.net>
Eric Mullins <emwine(a)earthlink.net>
+ Byrial Jensen <byrial(a)vip.cybercity.dk>
%prep
%setup -q
+%patch0 -p0
%build
autoreconf -f -i
-%configure --sysconfdir=/etc --enable-silent-rules --enable-zippy
+%configure --sysconfdir=/etc --enable-silent-rules --enable-zippy --disable-update-mimedb
make %{?jobs:-j%jobs}
%install
%makeinstall
+%find_lang %{name} %{name}.lang
%suse_update_desktop_file -i %{name} Game BoardGame
+%suse_update_desktop_file -i -u %{name}-tourney Game BoardGame
+%suse_update_desktop_file -i -u %{name}-pgn-viewer Game BoardGame
+%suse_update_desktop_file -i -u %{name}-fen-viewer Game BoardGame
%clean
rm -rf $RPM_BUILD_ROOT
%post
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%mime_database_post
+%desktop_database_post
+%icon_theme_cache_post
+xdg-icon-resource install --context mimetypes --size 32 %{_datadir}/games/xboard/pixmaps/textures/board32.xpm application-x-chess-pgn
+xdg-icon-resource install --context mimetypes --size 32 %{_datadir}/games/xboard/pixmaps/textures/cross32.xpm application-x-xboard-trn
+xdg-icon-resource install --context mimetypes --size 48 %{_datadir}/games/xboard/pixmaps/textures/board48.xpm application-x-chess-pgn
+xdg-icon-resource install --context mimetypes --size 48 %{_datadir}/games/xboard/pixmaps/textures/cross48.xpm application-x-xboard-trn
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%mime_database_postun
+%desktop_database_postun
+%icon_theme_cache_postun
+xdg-icon-resource uninstall --context mimetypes --size 32 %{_datadir}/games/xboard/pixmaps/textures/board32.xpm application-x-chess-pgn
+xdg-icon-resource uninstall --context mimetypes --size 32 %{_datadir}/games/xboard/pixmaps/textures/cross32.xpm application-x-xboard-trn
+xdg-icon-resource uninstall --context mimetypes --size 48 %{_datadir}/games/xboard/pixmaps/textures/board48.xpm application-x-chess-pgn
+xdg-icon-resource uninstall --context mimetypes --size 48 %{_datadir}/games/xboard/pixmaps/textures/cross48.xpm application-x-xboard-trn
-%files
+%files -f %{name}.lang
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING COPYRIGHT FAQ.html NEWS README SHORTLOG DIFFSTAT TODO engine-intf.html ics-parsing.txt readme.htm zippy.README
%{_bindir}/*
%doc %{_mandir}/man6/*.*
%doc %{_infodir}/xboard.info*
-%{_datadir}/applications/%{name}.desktop
+%{_datadir}/applications/*.desktop
+%{_datadir}/mime/packages/*.xml
%dir %{_datadir}/games/xboard/
%dir %{_datadir}/games/xboard/bitmaps/
%dir %{_datadir}/games/xboard/sounds/
@@ -94,8 +120,7 @@
%dir %{_datadir}/games/xboard/pixmaps/textures/
%{_datadir}/games/xboard/bitmaps/*
%{_datadir}/games/xboard/sounds/*
-%{_datadir}/games/xboard/pixmaps/textures/wood_d.xpm
-%{_datadir}/games/xboard/pixmaps/textures/wood_l.xpm
+%{_datadir}/games/xboard/pixmaps/textures/*.xpm
%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
%config %{_sysconfdir}/%{name}.conf
other changes:
--------------
++++++ gettext-version.patch (new)
--- gettext-version.patch
+++ gettext-version.patch
@@ -0,0 +1,11 @@
+--- configure.ac.old 2012-04-16 20:29:58.260432385 -0700
++++ configure.ac 2012-04-16 20:30:13.210587038 -0700
+@@ -76,7 +76,7 @@
+ AC_PROG_INSTALL
+
+ dnl| add gettext support
+-AM_GNU_GETTEXT_VERSION(0.17)
++AM_GNU_GETTEXT_VERSION(0.18)
+ AM_GNU_GETTEXT([external])
+
+ AC_CHECK_PROGS(RSH, remsh rsh, rsh)
++++++ xboard-4.5.3.tar.bz2 -> xboard-4.6.1.tar.bz2
(99888 lines skipped)
To REVIEW against the previous version:
osc request show --diff 113965
To ACCEPT the request:
osc request accept 113965 --message="reviewed ok."
To DECLINE the request:
osc request decline 113965 --message="declined for reason xyz (see ... for background / policy / ...)."
To REVOKE the request:
osc request revoke 113965 --message="retracted because ..., sorry / thx / see better version ..."
--
Hermes messaging (http://hermes.opensuse.org)
openSUSE Build Service (https://build.opensuse.org/)
Collaboration: http://en.opensuse.org/Build_Service/Collaboration
--
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 #113948 was changed by msmeissn:
new -> revoked
Comment:
sorry
https://build.opensuse.org/request/diff/113948
Source
project: security
package: autossh
revision: 8
Target:
project: openSUSE:Factory:Contrib
package: autossh
--
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