Looks like the structure changed on the project and that broke the icon link.
Search Criteria
Package Details: postman-bin 11.40.5-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/postman-bin.git (read-only, click to copy) |
---|---|
Package Base: | postman-bin |
Description: | Build, test, and document your APIs faster |
Upstream URL: | https://www.getpostman.com |
Licenses: | custom |
Conflicts: | postman |
Provides: | postman |
Submitter: | claudiodangelis |
Maintainer: | j.taala |
Last Packager: | j.taala |
Votes: | 295 |
Popularity: | 1.33 |
First Submitted: | 2016-10-21 18:18 (UTC) |
Last Updated: | 2025-04-12 11:21 (UTC) |
Dependencies (3)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classic-xfceAUR, gtk3-classicAUR, gtk3-patched-filechooser-icon-viewAUR)
- libxss
- nss (nss-hgAUR)
Required by (0)
Sources (3)
wshuman3 commented on 2018-05-30 18:38 (UTC)
ijann commented on 2018-05-24 15:44 (UTC)
Hi, where did you get version 6.1.2-2 if on the web this version 6.0.10 is up to the date of March 24, 2018
https://www.getpostman.com/apps
At the end of the page are the updates with their dates.
Kunda commented on 2018-05-22 15:12 (UTC)
curl: (22) The requested URL returned error: 404
==> ERROR: Failure while downloading https://dl.pstmn.io/download/version/6.1.2/linux64
claudiodangelis commented on 2018-05-22 11:34 (UTC)
Hi @mani.zaeim, I just provided a fix which should have been already available by the time you wrote the message, sorry for that!
Please reinstall it and make sure it's version 6.1.2-2.
Thanks, Claudio
claudiodangelis commented on 2018-05-22 11:17 (UTC)
Just updated the package, thanks @MartinoMensio
petr.nehez commented on 2018-05-22 11:05 (UTC)
Thanks @MartinoMensio. It should be updated in the repo - @claudiodangelis.
MartinoMensio commented on 2018-05-21 17:06 (UTC)
For version 6.1.2, two changes are required in PKGBUILD: - pkgver=6.1.2 - the license files are in the app directory
Below the modified PKGBUILD:
pkgname=postman-bin
pkgver=6.1.2
pkgrel=1
pkgdesc="Build, test, and document your APIs faster"
arch=('x86_64')
url="<https://www.getpostman.com>"
license=('custom')
source=(
"Postman-linux-x64-${pkgver}.tar.gz::<https://dl.pstmn.io/download/version/>${pkgver}/linux64"
"postman.desktop"
)
md5sums=(
"0ee78f58d02684b51a20e7c7c12c0285"
"ebf1903fa3299a8cf3eb578674ee090f"
)
depends=(gconf libxss gtk2 libxtst nss alsa-lib)
package() {
install -dm755 "${pkgdir}/opt/"
chmod -R 755 "Postman"
cp -r "Postman" "${pkgdir}/opt/postman"
chmod -R 755 "${pkgdir}/opt/postman"
install -dm755 "${pkgdir}/usr/bin"
ln -s "/opt/postman/Postman" "${pkgdir}/usr/bin/postman"
# License
install -D -m644 "Postman/app/LICENSE" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Chromium License
install -D -m644 "Postman/app/LICENSES.chromium.html" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSES.chromium.html"
# Desktop file
install -D -m644 "postman.desktop" \
"${pkgdir}/usr/share/applications/postman.desktop"
# Icon
install -d -m755 "${pkgdir}/usr/share/icons/hicolor/128x128/apps"
ln -s "/opt/postman/resources/app/assets/icon.png" \
"${pkgdir}/usr/share/icons/hicolor/128x128/apps/postman.png"
}
claudiodangelis commented on 2018-05-18 09:03 (UTC)
Hi @kitsunyan, sorry I missed your message. I will take care of this in a few hours.
kitsunyan commented on 2018-03-08 10:53 (UTC)
Hi. Could you add postman to provides and conflicts, please?
Pinned Comments
j.taala commented on 2021-09-17 09:50 (UTC) (edited on 2021-12-21 22:53 (UTC) by j.taala)
@ntfc I was going to go the other way (update to 9.0.1 instead of reverting back to 8.11.1).
P.S. postman are pretty bad at updating their release notes page (even after a new version is out).
If you want to revert to any previous version you can do so by cloning the aur repo and changing the version in the PKGBUILD file and using makepkg to build it (it will download and install that version for you). E.g.:
Edit the
PKGBUILD
file with whatever editor you like: edit line 4 to bepkgver=8.11.1
or whatever version you like, then save and exit out of the editor and runupdpkgsums
will download the file and update sha for file in PKGBUILD so it will install with makepkg