Package Details: teamdrive 5.1.1.3576-1

Git Clone URL: https://aur.archlinux.org/teamdrive.git (read-only, click to copy)
Package Base: teamdrive
Description: Keeps data synchronised between various computers automatically.
Upstream URL: http://www.teamdrive.com/
Licenses: custom
Submitter: jaltek
Maintainer: thieume
Last Packager: thieume
Votes: 5
Popularity: 0.000000
First Submitted: 2015-11-02 16:17 (UTC)
Last Updated: 2024-05-04 06:33 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

marwell commented on 2018-06-07 02:58 (UTC)

Just wanted to rename libfreetype like mentioned but in /opt/teamdrive I don't find a folder "lib" and in the folders below that point no file "libfreetype*". Still using 4.5.5.

thieume commented on 2018-05-16 17:59 (UTC)

Hum, something strange here... In the .deb there's a /usr/bin/teamdrive file which exists. It's a simple "/opt/teamdrive/TeamDrive $*" but the TeamDrive file does not exist, as Marwell said !!

I've tried to launch "TeamDrive.bin" which still exists in /opt/teamdrive : --> "Error : libfontconfig.so.1: undefined symbol: FT_Done_MM_Var"

After a quick search on a gentoo forum (https://forums.gentoo.org/viewtopic-p-8198000.html?sid=ab27c1ca8e1927691858595185e18284), the last answer gives the solution : rename the "/opt/teamdrive/lib/libfreetype.so.6" to another name. It will force TeamDrive to use the libfreetype from the system. Works for me.

I'll ask in parallel to the Teamdrive team why files have disappeared.

thieume commented on 2018-05-16 17:11 (UTC)

Hello, I've seen the same problem. Strange, because all was OK when I have uploaded the update. I'll check...

marwell commented on 2018-05-10 22:49 (UTC) (edited on 2018-05-10 22:50 (UTC) by marwell)

After the last update to 4.6.1.2027-1-x86_64 I can't use teamdrive anymore. From KDE application starter as well as on a command line it doesn't start. On the command line entering "teamdrive" I get: /bin/teamdrive: line 2: /opt/teamdrive/TeamDrive: No such file or directory (There is actually a TeamDrive.bin in /opt/teamdrive/)

If I downgrade to 4.5.5 it works again. Updating again breaks it, I can use only the 4.5.5 version.

ChrDr commented on 2017-09-22 23:05 (UTC)

I suggest solving the problem with the hanging by using the debian package. The following patch works for me: diff --git a/PKGBUILD b/PKGBUILD index 565d909..1d1a7b7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,27 +8,29 @@ pkgname=teamdrive pkgver=4.5.2.1774 pkgrel=1 pkgdesc="Keeps data synchronised between various computers automatically." -#arch=('i686' 'x86_64') arch=('x86_64') url="http://www.teamdrive.com/" license=('CUSTOM') depends=('') source=(teamdrive.desktop) -source_x86_64=("https://s3-eu-west-1.amazonaws.com/s3download.teamdrive.net/4.5.1774/TMDR/linux-x86_64/Install-TeamDrive-4.5.2.1774_TMDR.run") +dir=$(echo $pkgver|cut -d. -f1,2,4) +source_x86_64=("https://s3-eu-west-1.amazonaws.com/s3download.teamdrive.net/${dir}/TMDR/linux-x86_64/teamdrive-${pkgver%.*}_amd64.deb") sha256sums=('f3b06b1d5f285e6a7c5db19fc441da3f82062a1c529b17137d19e5450b6b314f') -sha256sums_x86_64=('5376d2b4fdfbfbe062dfedc201d9561674fce126d1c3190f3ba59a9e1dd47127') +sha256sums_x86_64=('94d83fded1c70ae38b9517ceed16e8c166631502c1a99e078275a4ed8a5178b1') + options=(!strip) build() { - cd ${srcdir} - chmod +x Install-TeamDrive-${pkgver}_TMDR.run + mkdir -p "${srcdir}/data" + cd "${srcdir}/data" + bsdtar xf "${srcdir}/data.tar.lzma" } package() { - ./Install-TeamDrive-${pkgver}_TMDR.run --mode unattended --prefix ${pkgdir}/opt/${pkgname} + cp -a "${srcdir}"/data/* "${pkgdir}" install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" rm -f "${pkgdir}/opt/${pkgname}/Uninstall TeamDrive.desktop" rm -f "${pkgdir}/opt/${pkgname}/uninstall"

acidicX commented on 2017-08-28 08:53 (UTC)

I can confirm that the issue is still there. Those TeamDrive guys... :facepalm:

thieume commented on 2017-08-27 15:25 (UTC)

Updated to the 1774 version. I still have problems with the installer. The TeamDrive team has not reproduced the problem (do not use Arch apparently) and I haven't found any infos in my logs....

thieume commented on 2017-07-22 07:19 (UTC)

Oups. I had manually upgraded before submitting the package. I've tried and I have the same trouble. I thinks that a Ctrl+C has finished the update :-( I try to send a mail to the team.

acidicX commented on 2017-07-18 08:34 (UTC)

@ChrDr seems to be a bug in the installer... it does not terminate correctly. Also happens when you run it in GUI mode. :(

ChrDr commented on 2017-07-14 22:47 (UTC) (edited on 2017-07-14 22:48 (UTC) by ChrDr)

Does this work for you? In my case the current PKGBUILD hangs in the package() function, more specifically when executing the "./Install-TeamDrive-${pkgver}_TMDR.run --mode unattended --prefix ${pkgdir}/opt/${pkgname}" line