curl: (22) The requested URL returned error: 404
==> ERROR: Failure while downloading https://dl.pstmn.io/download/version/6.1.2/linux64
Search Criteria
Package Details: postman-bin 11.21.0-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: | 293 |
Popularity: | 4.32 |
First Submitted: | 2016-10-21 18:18 (UTC) |
Last Updated: | 2024-11-27 20:55 (UTC) |
Dependencies (3)
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- libxss
- nss (nss-hgAUR)
Required by (0)
Sources (3)
Latest Comments
« First ‹ Previous 1 .. 13 14 15 16 17 18 19 20 21 22 Next › Last »
Kunda commented on 2018-05-22 15:12 (UTC)
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?
claudiodangelis commented on 2018-02-20 22:35 (UTC)
@connesc: you are right, I added the new dependencies.
vczm commented on 2018-02-05 13:43 (UTC)
Total Installed Size: 207.99 MiB
But in https://aur.archlinux.org/packages/postman/ Total Installed Size: 85.45 MiB
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