Package Details: scrt 9.5.1-0

Git Clone URL: https://aur.archlinux.org/scrt.git (read-only, click to copy)
Package Base: scrt
Description: Vandyke SecureCRT SSH Client
Upstream URL: http://www.vandyke.com/products/securecrt/
Keywords: sftp ssh
Licenses: custom
Submitter: raymii
Maintainer: kazaii
Last Packager: kazaii
Votes: 12
Popularity: 0.026029
First Submitted: 2015-12-05 18:45 (UTC)
Last Updated: 2024-02-28 11:40 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 Next › Last »

kazaii commented on 2021-05-28 03:32 (UTC)

Here's the full pkgbuild with pkgver, md5sum etc. and allowed me to build with 9.0.2

https://pastebin.com/9C0TMbAC

kazaii commented on 2021-05-28 03:09 (UTC) (edited on 2021-05-28 03:13 (UTC) by kazaii)

There's a space now in the depends section

depends=('fontconfig' 'freetype2' 'gcc-libs' 'glibc' 'krb5' 'libcups'
                'libpng' 'libx11' 'libxcb' 'libxkbcommon' 'libxkbcommon-x11' 'openssl'
                'qt5-base' 'qt5-multimedia' 'xcb-util-image' 'xcb-util-keysyms' 'xcb-
                util-renderutil' 'xcb-util-wm' 'zlib' 'icu66')

should become

depends=('fontconfig' 'freetype2' 'gcc-libs' 'glibc' 'krb5' 'libcups'
                'libpng' 'libx11' 'libxcb' 'libxkbcommon' 'libxkbcommon-x11' 'openssl'
                'qt5-base' 'qt5-multimedia' 'xcb-util-image' 'xcb-util-keysyms' 'xcb-util-renderutil' 'xcb-util-wm' 'zlib' 'icu66')

The above will fix it, the space / new line is in 'xcb-util-renderutil'

caldog20 commented on 2021-05-05 00:45 (UTC) (edited on 2021-05-05 00:45 (UTC) by caldog20)

Fixed space typo per enderst's comment below.

enderst commented on 2021-05-04 18:37 (UTC)

The space before .so breaks the build.

install -Dm 755 ./libCommonUiQt.so ${pkgdir}/usr/lib/scrt/libCommonUiQt .so

gbcbooks commented on 2021-05-03 14:10 (UTC)

Is anyone know how to clean up free trial info for 30 days ?

GeBo commented on 2021-04-08 07:37 (UTC)

@ZEBofx: I can confirm that after installing pyenv (thanks for that!) and creating the symlink, I can execute Python scripts in SecureCRT 9.0.1.

I'll leave the environment as it is for now, as for me this is a workable workaround, atm.

Thanks again for your investigation and providing a workaround / temporary solution.

GeBo commented on 2021-04-07 19:46 (UTC)

@ZEBofx: Thank you so much for confirming and investigating further!

ZEBofx commented on 2021-04-06 07:59 (UTC) (edited on 2021-04-06 09:21 (UTC) by ZEBofx)

Hello,

What I have said, is wrong. I can make python work with scrt, but it works because pyenv build an independent environment, but if I delete it after copying the .so in scrt path, it does not work anymore. So I suspect that we need to build a full python installation in scrt, or play with LD_LIBRARY_PATH. Again, if anybody has an idea on how to build a packaged solution...

ZEBofx commented on 2021-04-05 10:54 (UTC) (edited on 2021-04-05 11:21 (UTC) by ZEBofx)

OK. I am able to make it work by using pyenv (so that I do not break the system installed version of python). And then :
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.8.7
sudo ln -s /home/XXXX/.pyenv/versions/3.8.7/lib/libpython3.8.so.1.0 /usr/lib/scrt/libpython3.8.so.1.0
But of course, this is not acceptable for a package... Being a newbie on creating arch package, I do not know how to solve this. Of course, we can probably copy the libpythonX.Y.so.1.0 in this package but I think it won't be a very nice solution. (I can confirm this work, but if anybody knows how to safe copy this libpython file so that we can embed it in the package that should be nice)
Any help welcome, here :)