Package Details: upwork 5.8.0.35-2

Git Clone URL: https://aur.archlinux.org/upwork.git (read-only, click to copy)
Package Base: upwork
Description: Track your time for Hourly Payment Protection. Stay connected.
Upstream URL: https://www.upwork.com/ab/downloads/?os=linux
Keywords: freelance job time time-tracker time-tracking
Licenses: custom
Conflicts: upwork-beta
Submitter: lybin
Maintainer: yurikoles
Last Packager: yurikoles
Votes: 68
Popularity: 0.002449
First Submitted: 2015-05-05 17:51 (UTC)
Last Updated: 2024-10-31 03:32 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 .. 19 20 21 22 23 24 25 26 Next › Last »

Changaco commented on 2013-10-15 13:15 (UTC)

The problem I had no longer happens. @wik thanks for your help.

stjhimy commented on 2013-10-15 05:31 (UTC)

Hello, First of all, thanks for this package :-) Second, in a freshly installed arch version it fails with a message "Can't find libQtDBus" and it's fixed after installing qt4 package. I think you are missing the dependency. Thanks.

Changaco commented on 2013-10-07 14:28 (UTC)

@wik odeskteam has a log file that I already looked at and sent to oDesk's support to see if they had a better idea of where the problem is and how to fix it. No luck so far. I'm on x86_64 but I just tried it in a i686 chroot and it doesn't work either so I doubt it's an architecture problem. Did you run the app on an up-to-date ArchLinux or is it a system you haven't updated for a while ? For example what versions of qt4 and openssl do you have ? I ask about openssl because the log file mentions an SSL handshake error.

wik commented on 2013-10-06 19:53 (UTC)

oh, yes, sorry @Changaco and thanks for reminding I just tried currently installed version, still works for me Also tried to reinstall and still works I'm on i686 I'd recommended to run thru the terminal as odeskteam-qt4 and see what errors are there.

Changaco commented on 2013-10-06 10:48 (UTC)

@wik: I guess you forgot ?

wik commented on 2013-10-02 13:32 (UTC)

I didn't used it for awhile, but can check this evening, still have a PC with it installed

Changaco commented on 2013-10-02 13:24 (UTC)

Is anyone using this ? The connection to oDesk's server fails here (and it's not a network problem because it works on Windows on the same machine).

der_fenix commented on 2013-08-24 12:12 (UTC)

Updated. Thanks to wik

der_fenix commented on 2013-08-24 12:12 (UTC)

Updated. Thanks to wik

wik commented on 2013-08-24 01:20 (UTC)

# For 3.6.17 version # # For example with pacaur: pacaur -Se odeskteam # And replace content with the one below this line CARCH=`uname -m` pkgname=odeskteam pkgver=3.6.17 pkgrel=1 pkgdesc="The oDesk Team client for odesk.com" arch=('i586' 'i686' 'x86_64') provides=('godesk') replaces=('godesk') conflicts=('godesk') url="http://www.odesk.com/downloads" license=('custom:ODESK TEAM LICENSE AGREEMENT') makedepends=('rpmextract') if [[ $CARCH == 'x86_64' ]] then source=("http://developers.odesk.com/w/file/fetch/67153874/odeskteam-3.6.17-1su123.x86_64.rpm" "odeskteam.desktop") md5sums=('acce222f6d4855cce0038f04894edcb9' '64f0a2e8d28ba5277d670b7b4b9c7313') else source=("http://developers.odesk.com/w/file/fetch/67153873/odeskteam-3.6.17-1su123.i586.rpm" "odeskteam.desktop") md5sums=('50ea4c2bb3d87b912aa7bbfed9e08d5b' '64f0a2e8d28ba5277d670b7b4b9c7313') fi build() { if [[ $CARCH == 'x86_64' ]] then rpmextract.sh odeskteam-3.6.17-1su123.x86_64.rpm else rpmextract.sh odeskteam-3.6.17-1su123.i586.rpm fi } package() { cd $srcdir mkdir $pkgdir/usr cp -R $srcdir/usr/* $pkgdir/usr/ # Move licence to licences dir mkdir -p $pkgdir/usr/share/licenses/$pkgname mv "$srcdir/usr/share/odeskteam/COPYING" "$pkgdir/usr/share/licenses/$pkgname/COPYING" # Install .desktop file echo $srcdir install -D -m 644 "$srcdir/odeskteam.desktop" "$pkgdir/usr/share/applications/odeskteam.desktop" }