Package Details: molden 7.3-5

Git Clone URL: https://aur.archlinux.org/molden.git (read-only, click to copy)
Package Base: molden
Description: A program for molecular and electronic structure visualization
Upstream URL: https://www.theochem.ru.nl/molden/
Keywords: molecular visualisation
Licenses: custom
Provides: molden
Submitter: dan.maftei
Maintainer: banana-bred
Last Packager: banana-bred
Votes: 7
Popularity: 0.000378
First Submitted: 2016-06-07 09:53 (UTC)
Last Updated: 2024-09-09 17:41 (UTC)

Dependencies (10)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3

arjun_karol commented on 2018-05-15 14:42 (UTC)

Hello, I found out simple way to prevent mentioned call flth(jat,icnn2,inb,iconn) error. In the rdchx.f file, in flth subroutine delete +1 from icoon declarations mxcon+1 -> mxcon.

After that change molden compiles, and I didn't noticed any problems yet.

Panadestein commented on 2018-05-07 12:45 (UTC) (edited on 2020-05-31 22:49 (UTC) by Panadestein)

Hello.

A new update of molden and gcc-fortran. There is a checksum mismatch, so I edited the PKGBUILD adding the correct md5sum. After this, there are some compilation errors (I guess related to the new gcc-fortran version):

gfortran -g -m64 -c -o rdchx.o rdchx.f rdchx.f:6097:29:

            call flth(jat,icnn2,ibnds2,iconn)
                         1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) rdchx.f:6102:39:

                      call flth(kat,icnn2,ibnds2,iconn)
                                   1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) rdchx.f:6129:29:

            call flth(jat,icnn2,ibnds2,iconn)
                         1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) rdchx.f:6144:33:

            call flth(icnn(i),icnn2,ibnds2,iconn)
                             1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) rdchx.f:6175:38:

                     call flth(jat,icnn2,ibnds2,iconn)
                                  1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) rdchx.f:6190:35:

                  call flth(jat,icnn2,inb,iconn)
                               1

Error: Actual argument contains too few elements for dummy argument ‘icnn’ (10/11) at (1) make: *** [<builtin>: rdchx.o] Error 1 ==> ERROR: A failure occurred in build(). Aborting... 2018-05-07 14:39:59,646 - wrappers - makepkg - ERROR - makepkg query makepkg -cf --noconfirm failed

Panadestein commented on 2017-10-05 13:04 (UTC)

Hello. Again a checksum mismatch, can you please correct the PKGBUILD? Your idea of the cronjob is a good one, I think it must be implemented. Greetings

dan.maftei commented on 2017-06-06 15:36 (UTC)

Symlink-ing libraries is NOT a good idea, even if it works sometimes. In your case, further updates of gcc-fortran will fail with pacman complaining that "file ... exists in the filesystem...". However, the issue doesn't relate to molden. Since you've upgraded the dependencies (gcc-gfortran and maybe others), you should recompile molden too, to link against newly-installed libs: yaourt -Syyua (to upgrade all packages, including those from AUR) or, to upgrade only molden: yaourt -Sa molden

Panadestein commented on 2017-06-02 20:24 (UTC) (edited on 2017-06-02 20:52 (UTC) by Panadestein)

Hello! I have detected a new issue on the package. After upgrading the system, in particular gcc-fortran "libgfortran.so" to version 4.0.0, Molden stopped working, with the following error message: molden: error while loading shared libraries: libgfortran.so.3: cannot open shared object file: No such file or directory I thought it could be a dependencies issue and effectively, it was, so I tried this: sudo ln -s /usr/lib/libgfortran.so.4 /usr/lib/libgfortran.so.3 But of course, there's no reason for this to work properly, and then I got this error messages: molden: /usr/lib/libgfortran.so.3: version `GFORTRAN_1.0' not found (required by molden) molden: /usr/lib/libgfortran.so.3: version `GFORTRAN_1.4' not found (required by molden) So at this point, what could be a good solution, to downgrade libgfortran.so.4? Greetings! Edit: Just uninstalled and rebuilt the package and now works flawlessly! Maybe this is an stupid question but, do I have to rebuilt the package any time the compiler is upgraded? I mean, it seems to me that you can't really have issues executing binaries compiled with to closer versions of the compiler. But again, I'm just a noob.

dan.maftei commented on 2017-05-22 16:21 (UTC)

Thank you for signaling the checksum mismatch! Indeed, the developers of molden inadvertently update the source while keeping the archive name (i.e. molden5.7.tar.gz). It happened in the past and most likely will happen again. For now, I've just updated the PKGBUILD with the current checksum. In the future, I intend to fire a cronjob to periodically check for such updates...

Panadestein commented on 2017-05-21 11:35 (UTC) (edited on 2017-05-21 11:54 (UTC) by Panadestein)

I'm getting this error when trying to build the package: ==> Making package: molden 5.7-2 (Sun May 21 12:42:09 CEST 2017) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Downloading molden5.7.tar.gz... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 5214k 100 5214k 0 0 94329 0 0:00:56 0:00:56 --:--:-- 371k ==> Validating source files with md5sums... molden5.7.tar.gz ... FAILED ==> ERROR: One or more files did not pass the validity check! Edit: I checked the md5sum of the package in ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden5.7.tar.gz, and it's different to the one in the PKGBUILD, so I think it has to be updated. After editing it, everything works perfectly.