Package Details: phpstorm 2024.3.1.1-1

Git Clone URL: https://aur.archlinux.org/phpstorm.git (read-only, click to copy)
Package Base: phpstorm
Description: Lightweight and Smart PHP IDE
Upstream URL: https://www.jetbrains.com/phpstorm/
Keywords: development ide php
Licenses: custom:jetbrains
Submitter: None
Maintainer: freswa
Last Packager: freswa
Votes: 229
Popularity: 0.111615
First Submitted: 2011-01-22 19:28 (UTC)
Last Updated: 2024-12-20 09:41 (UTC)

Dependencies (6)

Required by (0)

Sources (3)

Latest Comments

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

puzzle commented on 2019-09-14 05:38 (UTC)

@ksemmler thinks

fikrimi commented on 2019-09-14 01:54 (UTC)

I genuinely concern that build number that make you need to add custom pkgver() . Why dont just remove it and back to 2019.2.2 ?

<deleted-account> commented on 2019-09-13 20:42 (UTC)

For everyone having issues with this pkgbuild, i have modified it and it worked fine on my end:

https://pastebin.com/DwMRG2sq

freswa commented on 2019-09-13 19:22 (UTC)

There is no officially supported AUR helper. The build is fine with makepkg. Please report issues related to AUR helpers upstream.

uzvermode commented on 2019-09-13 18:33 (UTC) (edited on 2019-09-13 18:34 (UTC) by uzvermode)

Using trizen getting this error:

==> Validating source files with sha512sums... PhpStorm-2019.2.2.tar.gz ... Passed jetbrains-phpstorm.desktop ... Passed ==> Extracting sources... -> Extracting PhpStorm-2019.2.2.tar.gz with bsdtar ==> Starting pkgver()... ==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: 2019.2.2bcoder/phpstorm/src/PhpStorm :: Unable to build phpstorm - makepkg exited with code: 12

val08 commented on 2019-09-13 17:51 (UTC)

ERROR: Error loading 'https://download.jetbrains.com/webide/PhpStorm-2019.2.2b.tar.gz'

freswa commented on 2019-09-13 16:13 (UTC)

Sorry for screwing this up. It should work again for everyone.

Spider.007 commented on 2019-09-13 13:38 (UTC)

please fix your pkgver() - it fails when building from within a path that contains a dash.

Instead of find|tail you can use:

find ${srcdir} -mindepth 1 -maxdepth 1 -type d -printf %P

andoni commented on 2019-09-13 13:17 (UTC)

Hello!

There seems to be a problem with the PKGBUILD file, it fails when the build path contains "-" caracter.

To fix this I added "-exec basename {} \;" to the find command inside pkgver(). Do not know if it is the best option, but works.

Thanks

pkgver() { - echo ${pkgver%b}b$(find ${srcdir} -maxdepth 1 -type d | tail -1 | cut -d "-" -f2) + echo ${pkgver%b}b$(find "${srcdir}" -maxdepth 1 -type d -exec basename {} \; | tail -1 | cut -d "-" -f2) }