Package Details: visual-paradigm-community 17.1.20231203-1

Git Clone URL: https://aur.archlinux.org/visual-paradigm-community.git (read-only, click to copy)
Package Base: visual-paradigm-community
Description: UML design application
Upstream URL: http://www.visual-paradigm.com/download/community.jsp
Keywords: design software uml
Licenses: custom
Submitter: AlexTalker
Maintainer: przemub (przemub, Levitating, ny-a)
Last Packager: Levitating
Votes: 29
Popularity: 0.004275
First Submitted: 2015-11-30 10:22 (UTC)
Last Updated: 2023-12-16 18:32 (UTC)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

matervinte commented on 2023-12-16 21:02 (UTC)

Today's update (17.1.20231203-1) fails sha256sum on file Visual_Paradigm_CE_Linux64_InstallFree.tar.gz

msnspk commented on 2023-07-06 20:43 (UTC) (edited on 2023-07-06 20:44 (UTC) by msnspk)

Line 35 of the PKGBUILD is failing because the actual path is ${srcdir}/Visual_Paradigm_CE_17.1/Application/bin but because of the value of pkgver the command is trying to access path ${srcdir}/Visual_Paradigm_CE_17.1.20230601/Application/bin

Levitating commented on 2023-05-11 19:19 (UTC)

@TheBill2001 thanks

TheBill2001 commented on 2023-04-19 01:51 (UTC)

Diff for version 20230401:

diff --git a/PKGBUILD b/PKGBUILD
index f3a1602..8733a44 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
 # Contributor: Rein Fernhout <me@levitati.ng>
 pkgname=visual-paradigm-community
 pkgver=17.0
-pkgrel=20221001
+pkgrel=20230401
 pkgdesc="UML design application"
 url='http://www.visual-paradigm.com/download/community.jsp'
 arch=('x86_64')
@@ -24,7 +24,7 @@ source=("https://www.visual-paradigm.com/downloads/${_server}/vpce/Visual_Paradi
   'LICENSE.txt'
   'x-visual-paradigm.xml')

-sha256sums=('a1eb250a432b722bf53cac681ab40e792c69dc9fe7dee96939a5df0041d85ddb'
+sha256sums=('850db0f2ea10acf2694a93c8c72cc8e85a28589aef575a1793bf05f5e176eef3'
             '52d244345f2ce8080d2b20c8c75b3ef833dfe9c5d605cac7129013b087bf2806'
             '5cdc0f50573d805938172c1f35664aa264fc5964fd92daed09b467565a6347b1'
             '41517b5c2326c0ba2fe3b6647f9594f094ccf03185cf73cb87d6cf19b355ff15'

pav commented on 2022-10-19 06:22 (UTC) (edited on 2022-10-30 04:32 (UTC) by pav)

For 17.0, this works for me:

pkgver=17.0
pkgrel=20221001
# Possible values: usa10 usa11 usa13 usa14 usa15 usa16 usa17 uk3 uk4 uk5 ca1 france3 germany6 germany7 germany4 germany8
_server=germany4
source=("https://www.visual-paradigm.com/downloads/${_server}/vpce/Visual_Paradigm_CE_Linux64_InstallFree.tar.gz"

SHA256 sum: 61c95e837c4645d1f75d1211b7ba79eb2bfc82737722839b30d87418030a49cc

Edit: Like lokonu says below, I also had to replace INSTALL4J_JAVA_HOME_OVERRIDE like this:

INSTALL4J_JAVA_HOME_OVERRIDE=/usr/lib/jvm/java-11-openjdk

or else with java-17 it is half-broken (save doesn't work).

lokonu commented on 2022-07-10 22:38 (UTC)

This package still seems to be broken.

  • Had to modify the first sha256sum value with a new one, due to new version on website (this package has already been flagged so isn't as much of a deal)
  • Had to replace "INSTALL4J_JAVA_HOME_OVERRIDE" value with "/usr/lib/jvm/java-8-openjdk", didn't work with "/usr/lib/jvm/default-runtime" which was pointed at "/usr/lib/jvm/java-18-openjdk" (i suspect this is more of an issue with the package itself though..)

After these changes to PKGBUILD file, the installation succeeds and the package works.

pr1sm8 commented on 2022-05-12 06:21 (UTC) (edited on 2022-05-12 06:32 (UTC) by pr1sm8)

there is a new update to visual-paradigm 1. pkgrel = 20220503 2. source = https://usa13.dl.visual-paradigm.com/visual-paradigm/vpce16.3/20220503/Visual_Paradigm_CE_16_3_20220503_Linux64_InstallFree.tar.gz it is hosted there but the general url provided in the front end is "https://www.visual-paradigm.com/download/community.jsp?platform=linux&arch=64bit&install=no" 3. sha256sums = c694582ff7660a1e07d5341042962c4940b6b3a846dc936e10c02cb0bcd7bfe8 for the given update file from the visual-paradigm

Jerry1098 commented on 2022-03-17 10:17 (UTC)

Seems like the download url changed from: https://eu6.visual-paradigm.com/visual-paradigm/vpce16.3/20210701/Visual_Paradigm_CE_16_3_20210701_Linux64_InstallFree.tar.gz to: https://www.visual-paradigm.com/downloads/vpce/Visual_Paradigm_CE_Linux64_InstallFree.tar.gz

Morosko commented on 2022-01-25 08:52 (UTC) (edited on 2022-01-25 08:53 (UTC) by Morosko)

I always had issues with multiple Java versions installed on my system. Visual Paradigm seems to require Java 8. As a workaround, I changed ${pkgdir}/usr/bin/${pkgname} (at my system it was /usr/bin/visual-paradigm-community) line 4 to INSTALL4J_JAVA_HOME_OVERRIDE=/usr/lib/jvm/java-8-openjdk.

Maybe it helps someone. (probably future me)