Package Details: peerflix 0.39.0-4

Git Clone URL: https://aur.archlinux.org/peerflix.git (read-only, click to copy)
Package Base: peerflix
Description: Streaming torrent client for node.js
Upstream URL: https://github.com/mafintosh/peerflix
Licenses: MIT
Submitter: heddson
Maintainer: BachoSeven
Last Packager: BachoSeven
Votes: 60
Popularity: 0.000002
First Submitted: 2014-03-18 19:42 (UTC)
Last Updated: 2022-10-13 17:24 (UTC)

Latest Comments

1 2 3 Next › Last »

BachoSeven commented on 2022-10-13 17:11 (UTC)

@Drommer okay, I'll try including it.

Drommer commented on 2022-10-13 14:14 (UTC) (edited on 2022-10-13 14:16 (UTC) by Drommer)

Patch from pull requests on Github. Include:
- Fix unresponsive keyboard input when is used with an -l flag (by tryzniak)
- Show downloaded percentage on prompt file selection (by haodemon)
- Add some extra features and fixed somes bugs (by meteor314)
pullrequests.patch
PKGBUILD

BachoSeven commented on 2021-07-06 14:57 (UTC)

@qark is the bug still reproducible with the current version deps and nodejs, and/or does that patch still work?

qark commented on 2020-09-12 19:07 (UTC)

Could you please apply patch from https://github.com/mafintosh/peerflix/pull/357 ? Looks like upstream is dead and this issue is really annoying.

paulodiovani commented on 2019-07-25 19:20 (UTC)

Please, fix node_modules dir permissions, you can add this at the end of package() find "$pkgdir/usr" -type d -exec chmod 755 '{}' +

agusdallalba commented on 2018-06-16 12:31 (UTC)

I'm not sure why, but all directories under usr/lib/node_modules/peerflix/node_modules have 777 permissions!

Tharbad commented on 2018-05-15 23:43 (UTC)

Getting: error: failed to commit transaction (conflicting files) peerflix: /usr/lib/node_modules/peerflix/node_modules/brace-expansion/LICENSE exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/debug/src/inspector-log.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/dns-packet/opcodes.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/dns-packet/rcodes.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/inquirer/node_modules/lodash/_safeGet.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/ipaddr.js/lib/ipaddr.js.d.ts exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/mime/CHANGELOG.md exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/mime/src/build.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/mime/src/test.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/rc/cli.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/rusha/.babelrc exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/rusha/.eslintrc.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/rusha/dist/rusha.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/rusha/dist/rusha.min.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/thunky/.npmignore exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/thunky/.travis.yml exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/thunky/test.js exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/ultron/README.md exists in filesystem peerflix: /usr/lib/node_modules/peerflix/node_modules/ws/lib/.DS_Store exists in filesystem Errors occurred, no packages were upgraded.

heddson commented on 2017-07-20 22:53 (UTC)

I got the same issue after updating npm.. Seems to be an issue with npm 5. Got around it by adding the path to the tarball. I'm not too keen on using the registry name with 'npm install' as young.acinonyx suggested. That would download it from the registry, instead of using the already downloaded source taball.. Updated the PKGBUILD.

damien commented on 2017-07-18 05:13 (UTC)

Thanks young.acinonyx, that PKGBUILD works for me.

young.acinonyx commented on 2017-07-18 00:09 (UTC)

I compiled this package with the following PKGBUILD and it worked: pkgname=peerflix pkgver=0.37.0 pkgrel=1 pkgdesc="Streaming torrent client for node.js" arch=('any') url="https://github.com/mafintosh/peerflix" license=('MIT') depends=('nodejs') makedepends=('npm') options=(!emptydirs) source=("https://github.com/mafintosh/${pkgname}/archive/v${pkgver}.tar.gz") sha256sums=('f8b870d88baa138c195bec7fd8c6d0f52718a3a4da949caccc168a96de99ba2f') package() { cd "${srcdir}/${pkgname}-${pkgver}" install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" npm install -g --prefix "${pkgdir}/usr" peerflix } # vim:set ts=2 sw=2 et: