Package Details: webstorm 2024.3-1

Git Clone URL: https://aur.archlinux.org/webstorm.git (read-only, click to copy)
Package Base: webstorm
Description: JavaScript IDE and HTML editor
Upstream URL: https://www.jetbrains.com/webstorm/
Licenses: custom:jetbrains
Submitter: Testuser_01
Maintainer: freswa
Last Packager: freswa
Votes: 181
Popularity: 0.097433
First Submitted: 2012-01-05 18:10 (UTC)
Last Updated: 2024-11-12 22:01 (UTC)

Dependencies (4)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 12 Next › Last »

closingin commented on 2021-05-01 07:25 (UTC) (edited on 2021-05-01 07:26 (UTC) by closingin)

@Wennadocta the build number in the PKGBUILD's pkgver is wrong. You'll be able to build by setting it to 2021.1.1b211.7142.46 (i removed the 8, it's 46 and not 468)

Wennadocta commented on 2021-04-30 22:26 (UTC)

Build fails now

ayanami@zerodell: /tmp/webstorm$ makepkg -sri
==> Making package: webstorm 2021.1.1b211.7142.468-1 (Sat 01 May 2021 01:24:55 AM MSK)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Downloading WebStorm-2021.1.1.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   138  100   138    0     0    370      0 --:--:-- --:--:-- --:--:--   370
100  465M  100  465M    0     0  24.4M      0  0:00:19  0:00:19 --:--:-- 26.1M
  -> Found jetbrains-webstorm.desktop
  -> Found LICENSE
==> Validating source files with b2sums...
    WebStorm-2021.1.1.tar.gz ... Passed
    jetbrains-webstorm.desktop ... Passed
    LICENSE ... Passed
==> Extracting sources...
  -> Extracting WebStorm-2021.1.1.tar.gz with bsdtar
==> Entering fakeroot environment...
==> Starting package_webstorm()...
cp: cannot stat '/tmp/webstorm/src/WebStorm-211.7142.468/': No such file or directory
==> ERROR: A failure occurred in package_webstorm().
    Aborting...

petris commented on 2020-03-23 16:13 (UTC)

Icon has been broken in GNOME since 3/6 with the commit "fix icon patch in jetbrains desktop files"

Kage-Yami commented on 2019-12-26 09:54 (UTC)

I believe JetBrains IDEs utilises org.freedesktop.secrets, rather than require gnome-keyring specifically. As such, it would be more appropriate to optional-depend on org.freedesktop.secrets, as gnome-keyring is not the only package that implements org.freedesktop.secrets (e.g. keepassxc).

freswa commented on 2019-12-24 16:02 (UTC)

Just edit your makepkg according to your needs.

twofyw commented on 2019-12-21 12:05 (UTC)

I noticed that the installation process spents a lot of time in "package compress". Is it possible to optimize this by leveraging multithreading compression?

louis9902 commented on 2019-07-24 19:02 (UTC) (edited on 2019-07-24 19:04 (UTC) by louis9902)

Hey, I had to much free time and made some changes to the build file. With the changes, it should be easier to maintain. If you are interested: https://github.com/geekeey/arch-packages/blob/master/webstorm/PKGBUILD

It basically changes two things:

  • the jetbrains internal version is not required anymore

  • it allows icon packs to change the icon

davidjytang commented on 2019-07-24 06:38 (UTC)

@petris Thanks!

I'm to report that upgrade proceeded smoothly after changing jre64 to jbr.

davidjytang commented on 2019-07-24 05:37 (UTC)

Upon further examination, I suspect the expected jre64 folder is now named jbr. Therefore, the following changes might be necessary:

31 - rsync -rtl "${srcdir}/WebStorm-${_pkgver}/" "${pkgdir}/opt/${pkgbase}" --exclude=/jre64
31 + rsync -rtl "${srcdir}/WebStorm-${_pkgver}/" "${pkgdir}/opt/${pkgbase}" --exclude=/jbr
40 - rsync -rtl "${srcdir}/WebStorm-${_pkgver}/jre64" "${pkgdir}/opt/${pkgbase}"
40 + rsync -rtl "${srcdir}/WebStorm-${_pkgver}/jbr" "${pkgdir}/opt/${pkgbase}"

Has anyone also encountered webstorm/src/WebStorm-192.5728.87/jre64" failed: No such file or directory (2) error? Would the above be the right direction?