From c31fcf2dcf98aab82ce456681c197a5d7861d80c Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sun, 21 Jun 2015 11:39:32 -0300 Subject: Initial import --- .SRCINFO | 30 +++++++++++++++++++++++++ PKGBUILD | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++ icon.png | Bin 0 -> 81183 bytes popcorntime.desktop | 8 +++++++ popcorntime.install | 13 +++++++++++ 5 files changed, 114 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 icon.png create mode 100644 popcorntime.desktop create mode 100644 popcorntime.install diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..9d163a9 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,30 @@ +pkgbase = popcorntime-bin + pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. + pkgver = 0.3.7.2 + pkgrel = 3 + url = http://popcorntime.io/ + install = popcorntime.install + arch = x86_64 + arch = i686 + license = GPL3 + depends = ttf-liberation + depends = gconf + depends = nss + depends = libxtst + depends = gtk2 + depends = alsa-lib + optdepends = net-tools: necessary for the new vpn feature + provides = popcorntime + conflicts = popcorntime + options = !strip + source = http://get.popcorntime.io/build/Popcorn-Time-0.3.7.2-Linux64.tar.xz + source = icon.png + source = popcorntime.install + source = popcorntime.desktop + sha256sums = 0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952 + sha256sums = 9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3 + sha256sums = ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25 + sha256sums = 3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2 + +pkgname = popcorntime-bin + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..d581031 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,63 @@ +# Maintainer: Ricardo Funke +# Contributor: Attila Bukor +# Contributor: Iwan Timmer +# Contributor: Eric Engestrom +# Contributor: Ricardo Band +# Contributor: Axilleas Pipinellis (aka axil42) +# Contributor: UshakovVasilii +# Contributor: Giulio Fidente +# Contributor: xantares + +pkgname=popcorntime-bin +pkgver=0.3.7.2 +pkgrel=3 +pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." +arch=('x86_64' 'i686') +url="http://popcorntime.io/" +license=('GPL3') +depends=('ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +optdepends=('net-tools: necessary for the new vpn feature') +provides=('popcorntime') +conflicts=('popcorntime') +options=('!strip') +install="popcorntime.install" +sha256sums=('0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952' + '9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3' + 'ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25' + '3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2') + +_platform=Linux64 + +if [ "$CARCH" = 'i686' ]; then + _platform=Linux32 + sha256sums[0]='21e5dbc667f13572fcd8edc535ce4fcd2c0bffafcd237753ad8a2f1cc665e1b7' +fi + +source=("http://get.popcorntime.io/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" + "icon.png" + "popcorntime.install" + "popcorntime.desktop") + +package() { + cd "${srcdir}" + + install -dm755 "${pkgdir}/opt/${pkgname}/" + install -dm755 "${pkgdir}/usr/bin" + install -dm755 "${pkgdir}/usr/share" + + # Program + echo "${pkgdir}/opt/${pkgname}/" + install -Dm755 ${srcdir}/Popcorn-Time "${pkgdir}/opt/${pkgname}/" + install -Dm644 ${srcdir}/nw.pak "${pkgdir}/opt/${pkgname}/" + install -Dm644 ${srcdir}/libffmpegsumo.so "${pkgdir}/opt/${pkgname}/" + install -Dm644 ${srcdir}/package.nw "${pkgdir}/opt/${pkgname}/" + + # Link to program + ln -s "/opt/${pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/popcorntime" + + # Desktop file + install -Dm644 "${srcdir}/popcorntime.desktop" "${pkgdir}/usr/share/applications/popcorntime.desktop" + + # Icon + install -Dm644 "${srcdir}/icon.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png" +} diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..3ea5010 Binary files /dev/null and b/icon.png differ diff --git a/popcorntime.desktop b/popcorntime.desktop new file mode 100644 index 0000000..f8f223b --- /dev/null +++ b/popcorntime.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=Popcorn Time +Comment=Watch torrent movies instantly +Exec=popcorntime %U +Icon=popcorntime +Terminal=false +Type=Application +Categories=Player;Video;Network; diff --git a/popcorntime.install b/popcorntime.install new file mode 100644 index 0000000..55a36e4 --- /dev/null +++ b/popcorntime.install @@ -0,0 +1,13 @@ +post_install() { + echo + echo "WARNING: Popcorn Time streams movies from Torrents" + echo "Downloading copyrighted material may be illegal in your country!" + echo "Use at your own risk!" + echo +} + +post_upgrade() { + post_install +} + +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-70-g09d2 From 32bfce4027cf8d266278aaefb7e661bcb8b78d47 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sun, 28 Jun 2015 23:09:23 -0300 Subject: Fixing sha256sums for popcorntime.install and popcorntime.desktop --- .SRCINFO | 4 ++-- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9d163a9..c0bd77e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.7.2 - pkgrel = 3 + pkgrel = 4 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -23,8 +23,8 @@ pkgbase = popcorntime-bin source = popcorntime.desktop sha256sums = 0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952 sha256sums = 9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3 - sha256sums = ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25 sha256sums = 3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2 + sha256sums = ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index d581031..a6e6a9d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ pkgname=popcorntime-bin pkgver=0.3.7.2 -pkgrel=3 +pkgrel=4 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -23,8 +23,8 @@ options=('!strip') install="popcorntime.install" sha256sums=('0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952' '9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3' - 'ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25' - '3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2') + '3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2' + 'ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25') _platform=Linux64 -- cgit v1.2.3-70-g09d2 From 4b183eacc7dc11897a0cd7d60e7cec0ac8d11511 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sun, 28 Jun 2015 23:13:11 -0300 Subject: Fixing sha256sums for popcorntime.install and popcorntime.desktop --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c0bd77e..1d00ef4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.7.2 - pkgrel = 4 + pkgrel = 5 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index a6e6a9d..6e292f3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ pkgname=popcorntime-bin pkgver=0.3.7.2 -pkgrel=4 +pkgrel=5 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" -- cgit v1.2.3-70-g09d2 From f3a7f740822c968dbc49d6a6bb5350f4fe6567c2 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sun, 28 Jun 2015 23:15:47 -0300 Subject: Fixing sha256sums for popcorntime.install and popcorntime.desktop --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1d00ef4..e678bf5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.7.2 - pkgrel = 5 + pkgrel = 6 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 6e292f3..69feb57 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ pkgname=popcorntime-bin pkgver=0.3.7.2 -pkgrel=5 +pkgrel=6 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" -- cgit v1.2.3-70-g09d2 From 52e437121a63c4d27ed702b897014f7ae81ae7bc Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 9 Jul 2015 18:50:10 -0300 Subject: Update to 0.3.8-0 --- .SRCINFO | 15 +++++++-------- PKGBUILD | 44 +++++++++++++++++++++++++++----------------- popcorntime.desktop | 7 ++++--- 3 files changed, 38 insertions(+), 28 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e678bf5..1bd7564 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,13 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. - pkgver = 0.3.7.2 - pkgrel = 6 + pkgver = 0.3.8.0 + pkgrel = 1 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 arch = i686 license = GPL3 + depends = libsystemd depends = ttf-liberation depends = gconf depends = nss @@ -17,14 +18,12 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://get.popcorntime.io/build/Popcorn-Time-0.3.7.2-Linux64.tar.xz - source = icon.png + source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-0-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop - sha256sums = 0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952 - sha256sums = 9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3 - sha256sums = 3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2 - sha256sums = ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25 + sha1sums = e0d34c48fb55680f922b62d31121032c744fb183 + sha1sums = 23ee4387bebeaec41fb5b2d0428dd0ff5d0cad73 + sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 69feb57..96fe647 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,32 +9,31 @@ # Contributor: xantares pkgname=popcorntime-bin -pkgver=0.3.7.2 -pkgrel=6 +pkgver=0.3.8.0 +_pkgver='0.3.8-0' +pkgrel=1 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +depends=('libsystemd' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') optdepends=('net-tools: necessary for the new vpn feature') provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" -sha256sums=('0b294d08e6bc46d3d06717d4a6344b4e6e4e14f742f61101b8498d931d99a952' - '9e1bc552bb06446689233b1a123d4cc421771673a7b803a980d4149bf4dc38b3' - '3dd794302ad0b3a98d48973175b6de9bc632181872df2d0376a19a5cc0aa14a2' - 'ac2b7183d3ea62ae821c7d1f4b243b0ca41c7838efa16babe29cad0c4958ee25') +sha1sums=('e0d34c48fb55680f922b62d31121032c744fb183' + '23ee4387bebeaec41fb5b2d0428dd0ff5d0cad73' + '98cba5c0c979d37e601cc33cf3b562f106427d36') -_platform=Linux64 +_platform='Linux-64' if [ "$CARCH" = 'i686' ]; then - _platform=Linux32 - sha256sums[0]='21e5dbc667f13572fcd8edc535ce4fcd2c0bffafcd237753ad8a2f1cc665e1b7' + _platform='Linuxi-32' + sha256sums[0]='0217ce93e88650c7d557cafcfdf10a4b5fa14c54' fi -source=("http://get.popcorntime.io/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" - "icon.png" +source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" "popcorntime.install" "popcorntime.desktop") @@ -47,10 +46,21 @@ package() { # Program echo "${pkgdir}/opt/${pkgname}/" - install -Dm755 ${srcdir}/Popcorn-Time "${pkgdir}/opt/${pkgname}/" - install -Dm644 ${srcdir}/nw.pak "${pkgdir}/opt/${pkgname}/" - install -Dm644 ${srcdir}/libffmpegsumo.so "${pkgdir}/opt/${pkgname}/" - install -Dm644 ${srcdir}/package.nw "${pkgdir}/opt/${pkgname}/" + install -Dm755 "${srcdir}/Popcorn-Time" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/nw.pak" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/libffmpegsumo.so" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/CHANGELOG.md" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/icudtl.dat" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/install" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/LICENSE.txt" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/package.json" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/README.md" "${pkgdir}/opt/${pkgname}/" + + # Directories + cp -a "${srcdir}/locales" "${pkgdir}/opt/${pkgname}/" + cp -a "${srcdir}/node_modules" "${pkgdir}/opt/${pkgname}/" + cp -a "${srcdir}/src" "${pkgdir}/opt/${pkgname}/" # Link to program ln -s "/opt/${pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/popcorntime" @@ -59,5 +69,5 @@ package() { install -Dm644 "${srcdir}/popcorntime.desktop" "${pkgdir}/usr/share/applications/popcorntime.desktop" # Icon - install -Dm644 "${srcdir}/icon.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png" + install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png" } diff --git a/popcorntime.desktop b/popcorntime.desktop index f8f223b..3b39b63 100644 --- a/popcorntime.desktop +++ b/popcorntime.desktop @@ -1,8 +1,9 @@ [Desktop Entry] Name=Popcorn Time -Comment=Watch torrent movies instantly +Comment=Watch Movies and TV Shows instantly Exec=popcorntime %U Icon=popcorntime -Terminal=false +MimeType=application/x-bittorrent;x-scheme-handler/magnet; +StartupNotify=false +Categories=AudioVideo;Video;Network;Player;P2P; Type=Application -Categories=Player;Video;Network; -- cgit v1.2.3-70-g09d2 From 0e21cacafc9bd016b6a5bd808c4c27e1031874a0 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 9 Jul 2015 19:08:24 -0300 Subject: Update to 0.3.8.0-2 --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- icon.png | Bin 81183 -> 0 bytes 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 icon.png diff --git a/.SRCINFO b/.SRCINFO index 1bd7564..e896aef 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.0 - pkgrel = 1 + pkgrel = 2 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 arch = i686 license = GPL3 depends = libsystemd - depends = ttf-liberation + depends = ttf-font depends = gconf depends = nss depends = libxtst diff --git a/PKGBUILD b/PKGBUILD index 96fe647..7953ee4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,12 +11,12 @@ pkgname=popcorntime-bin pkgver=0.3.8.0 _pkgver='0.3.8-0' -pkgrel=1 +pkgrel=2 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('libsystemd' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +depends=('libsystemd' 'ttf-font' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') optdepends=('net-tools: necessary for the new vpn feature') provides=('popcorntime') conflicts=('popcorntime') diff --git a/icon.png b/icon.png deleted file mode 100644 index 3ea5010..0000000 Binary files a/icon.png and /dev/null differ -- cgit v1.2.3-70-g09d2 From 77c894b8e041762dd6334f2935cf0794bb753546 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 9 Jul 2015 19:54:50 -0300 Subject: Update to 0.3.8.0-3 --- .SRCINFO | 4 ++-- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e896aef..e033e41 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.0 - pkgrel = 2 + pkgrel = 3 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 arch = i686 license = GPL3 depends = libsystemd - depends = ttf-font + depends = ttf-liberation depends = gconf depends = nss depends = libxtst diff --git a/PKGBUILD b/PKGBUILD index 7953ee4..93d273a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,12 +11,12 @@ pkgname=popcorntime-bin pkgver=0.3.8.0 _pkgver='0.3.8-0' -pkgrel=2 +pkgrel=3 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('libsystemd' 'ttf-font' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +depends=('libsystemd' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') optdepends=('net-tools: necessary for the new vpn feature') provides=('popcorntime') conflicts=('popcorntime') @@ -29,7 +29,7 @@ sha1sums=('e0d34c48fb55680f922b62d31121032c744fb183' _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then - _platform='Linuxi-32' + _platform='Linux-32' sha256sums[0]='0217ce93e88650c7d557cafcfdf10a4b5fa14c54' fi -- cgit v1.2.3-70-g09d2 From a0ab06aa0e41192822c8b5b88a50ab407bd83db7 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 9 Jul 2015 19:59:10 -0300 Subject: Update to 0.3.8.0-4 fixing typo sha256sum -> sha1sum for the 32 arch --- .SRCINFO | 2 +- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e033e41..398c523 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.0 - pkgrel = 3 + pkgrel = 4 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 93d273a..292d205 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ pkgname=popcorntime-bin pkgver=0.3.8.0 _pkgver='0.3.8-0' -pkgrel=3 +pkgrel=4 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -30,7 +30,7 @@ _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then _platform='Linux-32' - sha256sums[0]='0217ce93e88650c7d557cafcfdf10a4b5fa14c54' + sha1sums[0]='0217ce93e88650c7d557cafcfdf10a4b5fa14c54' fi source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -- cgit v1.2.3-70-g09d2 From 8292808c573a809f3e5e1dc7ee6af8f3cae83109 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sun, 12 Jul 2015 21:15:59 -0300 Subject: Update to 0.3.8.0-5 adding libnotify and desktop-file-utils as dependencies and the "update-desktop-database -q" command to the .install file --- .SRCINFO | 6 ++++-- PKGBUILD | 6 +++--- popcorntime.install | 1 + 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 398c523..541b3a8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,15 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.0 - pkgrel = 4 + pkgrel = 5 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 arch = i686 license = GPL3 depends = libsystemd + depends = libnotify + depends = desktop-file-utils depends = ttf-liberation depends = gconf depends = nss @@ -22,7 +24,7 @@ pkgbase = popcorntime-bin source = popcorntime.install source = popcorntime.desktop sha1sums = e0d34c48fb55680f922b62d31121032c744fb183 - sha1sums = 23ee4387bebeaec41fb5b2d0428dd0ff5d0cad73 + sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 292d205..7240519 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,19 +11,19 @@ pkgname=popcorntime-bin pkgver=0.3.8.0 _pkgver='0.3.8-0' -pkgrel=4 +pkgrel=5 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('libsystemd' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +depends=('libsystemd' 'libnotify' 'desktop-file-utils' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') optdepends=('net-tools: necessary for the new vpn feature') provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" sha1sums=('e0d34c48fb55680f922b62d31121032c744fb183' - '23ee4387bebeaec41fb5b2d0428dd0ff5d0cad73' + 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' '98cba5c0c979d37e601cc33cf3b562f106427d36') _platform='Linux-64' diff --git a/popcorntime.install b/popcorntime.install index 55a36e4..380b52e 100644 --- a/popcorntime.install +++ b/popcorntime.install @@ -1,4 +1,5 @@ post_install() { + update-desktop-database -q echo echo "WARNING: Popcorn Time streams movies from Torrents" echo "Downloading copyrighted material may be illegal in your country!" -- cgit v1.2.3-70-g09d2 From f8716ff2a1f85eeb31a644c213af2e6ec162c233 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Wed, 15 Jul 2015 11:46:38 -0300 Subject: Update to 0.3.8.0-6: Removing libsystemd as it is already pulled by some of the other dependencies --- .SRCINFO | 3 +-- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 541b3a8..3a4da66 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,12 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.0 - pkgrel = 5 + pkgrel = 6 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 arch = i686 license = GPL3 - depends = libsystemd depends = libnotify depends = desktop-file-utils depends = ttf-liberation diff --git a/PKGBUILD b/PKGBUILD index 7240519..5bd82a7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,12 +11,12 @@ pkgname=popcorntime-bin pkgver=0.3.8.0 _pkgver='0.3.8-0' -pkgrel=5 +pkgrel=6 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('libsystemd' 'libnotify' 'desktop-file-utils' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +depends=('libnotify' 'desktop-file-utils' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') optdepends=('net-tools: necessary for the new vpn feature') provides=('popcorntime') conflicts=('popcorntime') -- cgit v1.2.3-70-g09d2 From 5e630e934a5deacadf679cfcae5e983ec9bc7558 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Tue, 4 Aug 2015 09:33:36 -0300 Subject: Update to 0.3.8.2-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3a4da66..4b56914 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. - pkgver = 0.3.8.0 - pkgrel = 6 + pkgver = 0.3.8.2 + pkgrel = 1 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -19,10 +19,10 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-0-Linux-64.tar.xz + source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-2-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop - sha1sums = e0d34c48fb55680f922b62d31121032c744fb183 + sha1sums = 5b3f956fa72b9879bcea65c5f89d99a0e2ada6e4 sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 diff --git a/PKGBUILD b/PKGBUILD index 5bd82a7..149b179 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,9 +9,9 @@ # Contributor: xantares pkgname=popcorntime-bin -pkgver=0.3.8.0 -_pkgver='0.3.8-0' -pkgrel=6 +pkgver=0.3.8.2 +_pkgver='0.3.8-2' +pkgrel=1 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -22,7 +22,7 @@ provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" -sha1sums=('e0d34c48fb55680f922b62d31121032c744fb183' +sha1sums=('5b3f956fa72b9879bcea65c5f89d99a0e2ada6e4' 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' '98cba5c0c979d37e601cc33cf3b562f106427d36') @@ -30,7 +30,7 @@ _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then _platform='Linux-32' - sha1sums[0]='0217ce93e88650c7d557cafcfdf10a4b5fa14c54' + sha1sums[0]='a959062f209927eee8e026ccf54510aaa3ca26c8' fi source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -- cgit v1.2.3-70-g09d2 From cae6ba667fffb3fb4b56e72ceac61e1657f9e9db Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Mon, 17 Aug 2015 16:42:43 -0300 Subject: Update to 3.8.3 --- .SRCINFO | 6 +++--- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4b56914..749c6dd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. - pkgver = 0.3.8.2 + pkgver = 0.3.8.3 pkgrel = 1 url = http://popcorntime.io/ install = popcorntime.install @@ -19,10 +19,10 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-2-Linux-64.tar.xz + source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-3-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop - sha1sums = 5b3f956fa72b9879bcea65c5f89d99a0e2ada6e4 + sha1sums = 8aff55d7e6fe79a407b615d62e0bc8ec1ff4d596 sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 diff --git a/PKGBUILD b/PKGBUILD index 149b179..f88644d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,8 +9,8 @@ # Contributor: xantares pkgname=popcorntime-bin -pkgver=0.3.8.2 -_pkgver='0.3.8-2' +pkgver=0.3.8.3 +_pkgver='0.3.8-3' pkgrel=1 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') @@ -22,7 +22,7 @@ provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" -sha1sums=('5b3f956fa72b9879bcea65c5f89d99a0e2ada6e4' +sha1sums=('8aff55d7e6fe79a407b615d62e0bc8ec1ff4d596' 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' '98cba5c0c979d37e601cc33cf3b562f106427d36') @@ -30,7 +30,7 @@ _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then _platform='Linux-32' - sha1sums[0]='a959062f209927eee8e026ccf54510aaa3ca26c8' + sha1sums[0]='22573cdad5687502101f36100e8c4c5cbcb97e09' fi source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -- cgit v1.2.3-70-g09d2 From 0ec695b37dff39f93a184236cd6521625a262dda Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 20 Aug 2015 11:46:33 -0300 Subject: replacing ttf-liberation with ttf-font and providing ttf-liberation as an optional dependency --- .SRCINFO | 5 +++-- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 749c6dd..2b3a60f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.3 - pkgrel = 1 + pkgrel = 2 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -9,13 +9,14 @@ pkgbase = popcorntime-bin license = GPL3 depends = libnotify depends = desktop-file-utils - depends = ttf-liberation + depends = ttf-font depends = gconf depends = nss depends = libxtst depends = gtk2 depends = alsa-lib optdepends = net-tools: necessary for the new vpn feature + optdepends = ttf-liberation provides = popcorntime conflicts = popcorntime options = !strip diff --git a/PKGBUILD b/PKGBUILD index f88644d..73ea56d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,13 +11,13 @@ pkgname=popcorntime-bin pkgver=0.3.8.3 _pkgver='0.3.8-3' -pkgrel=1 +pkgrel=2 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') -depends=('libnotify' 'desktop-file-utils' 'ttf-liberation' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') -optdepends=('net-tools: necessary for the new vpn feature') +depends=('libnotify' 'desktop-file-utils' 'ttf-font' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') +optdepends=('net-tools: necessary for the new vpn feature' 'ttf-liberation') provides=('popcorntime') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From 7488a9392db88efc2d64a01d9ff908d7759b59d1 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Thu, 20 Aug 2015 11:51:48 -0300 Subject: Adding description for the ttf-liberation optional dependency and petterk as a contributor --- .SRCINFO | 2 +- PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2b3a60f..ac700bb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -16,7 +16,7 @@ pkgbase = popcorntime-bin depends = gtk2 depends = alsa-lib optdepends = net-tools: necessary for the new vpn feature - optdepends = ttf-liberation + optdepends = ttf-liberation: open source ttf fonts provides = popcorntime conflicts = popcorntime options = !strip diff --git a/PKGBUILD b/PKGBUILD index 73ea56d..1f48785 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,6 +7,7 @@ # Contributor: UshakovVasilii # Contributor: Giulio Fidente # Contributor: xantares +# Contributor: petterk pkgname=popcorntime-bin pkgver=0.3.8.3 @@ -17,7 +18,7 @@ arch=('x86_64' 'i686') url="http://popcorntime.io/" license=('GPL3') depends=('libnotify' 'desktop-file-utils' 'ttf-font' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') -optdepends=('net-tools: necessary for the new vpn feature' 'ttf-liberation') +optdepends=('net-tools: necessary for the new vpn feature' 'ttf-liberation: open source ttf fonts') provides=('popcorntime') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From 0a94d11430a09e4c2a600f878c745114422f832a Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Tue, 8 Sep 2015 17:51:07 -0300 Subject: Update to 0.3.8.5-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 24 +++++++++++++----------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ac700bb..7350d1f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. - pkgver = 0.3.8.3 - pkgrel = 2 + pkgver = 0.3.8.5 + pkgrel = 1 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -20,10 +20,10 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-3-Linux-64.tar.xz + source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop - sha1sums = 8aff55d7e6fe79a407b615d62e0bc8ec1ff4d596 + sha1sums = c9e40d39a8953c7a61543332f82bac9e0b6d50e4 sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 diff --git a/PKGBUILD b/PKGBUILD index 1f48785..d67251c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,9 +10,9 @@ # Contributor: petterk pkgname=popcorntime-bin -pkgver=0.3.8.3 -_pkgver='0.3.8-3' -pkgrel=2 +pkgver=0.3.8.5 +_pkgver='0.3.8-5' +pkgrel=1 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -23,7 +23,7 @@ provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" -sha1sums=('8aff55d7e6fe79a407b615d62e0bc8ec1ff4d596' +sha1sums=('c9e40d39a8953c7a61543332f82bac9e0b6d50e4' 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' '98cba5c0c979d37e601cc33cf3b562f106427d36') @@ -31,7 +31,7 @@ _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then _platform='Linux-32' - sha1sums[0]='22573cdad5687502101f36100e8c4c5cbcb97e09' + sha1sums[0]='c3e3917219a6658e149bb678622e9ea1741c6b89' fi source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" @@ -50,18 +50,19 @@ package() { install -Dm755 "${srcdir}/Popcorn-Time" "${pkgdir}/opt/${pkgname}/" install -Dm644 "${srcdir}/nw.pak" "${pkgdir}/opt/${pkgname}/" install -Dm644 "${srcdir}/libffmpegsumo.so" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/CHANGELOG.md" "${pkgdir}/opt/${pkgname}/" +# install -Dm644 "${srcdir}/CHANGELOG.md" "${pkgdir}/opt/${pkgname}/" install -Dm644 "${srcdir}/icudtl.dat" "${pkgdir}/opt/${pkgname}/" install -Dm644 "${srcdir}/install" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/LICENSE.txt" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/package.json" "${pkgdir}/opt/${pkgname}/" +# install -Dm644 "${srcdir}/LICENSE.txt" "${pkgdir}/opt/${pkgname}/" +# install -Dm644 "${srcdir}/package.json" "${pkgdir}/opt/${pkgname}/" + install -Dm644 "${srcdir}/package.nw" "${pkgdir}/opt/${pkgname}/" install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/README.md" "${pkgdir}/opt/${pkgname}/" +# install -Dm644 "${srcdir}/README.md" "${pkgdir}/opt/${pkgname}/" # Directories cp -a "${srcdir}/locales" "${pkgdir}/opt/${pkgname}/" - cp -a "${srcdir}/node_modules" "${pkgdir}/opt/${pkgname}/" - cp -a "${srcdir}/src" "${pkgdir}/opt/${pkgname}/" +# cp -a "${srcdir}/node_modules" "${pkgdir}/opt/${pkgname}/" +# cp -a "${srcdir}/src" "${pkgdir}/opt/${pkgname}/" # Link to program ln -s "/opt/${pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/popcorntime" @@ -72,3 +73,4 @@ package() { # Icon install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png" } + -- cgit v1.2.3-70-g09d2 From b2dcfa4f75d0d9e326f524889b322edd0808e239 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Mon, 19 Oct 2015 01:00:47 -0200 Subject: Update to 0.3.8.5-2: Fixing sha1sums --- .SRCINFO | 4 ++-- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7350d1f..cac408c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.5 - pkgrel = 1 + pkgrel = 2 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -23,7 +23,7 @@ pkgbase = popcorntime-bin source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop - sha1sums = c9e40d39a8953c7a61543332f82bac9e0b6d50e4 + sha1sums = fcd6044861cfb78587d9b6e9590c0872144045c6 sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 diff --git a/PKGBUILD b/PKGBUILD index d67251c..7f289b4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ pkgname=popcorntime-bin pkgver=0.3.8.5 _pkgver='0.3.8-5' -pkgrel=1 +pkgrel=2 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -23,7 +23,7 @@ provides=('popcorntime') conflicts=('popcorntime') options=('!strip') install="popcorntime.install" -sha1sums=('c9e40d39a8953c7a61543332f82bac9e0b6d50e4' +sha1sums=('fcd6044861cfb78587d9b6e9590c0872144045c6' 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' '98cba5c0c979d37e601cc33cf3b562f106427d36') @@ -31,7 +31,7 @@ _platform='Linux-64' if [ "$CARCH" = 'i686' ]; then _platform='Linux-32' - sha1sums[0]='c3e3917219a6658e149bb678622e9ea1741c6b89' + sha1sums[0]='ec994d8a0420857018aabf8555926b0a6d43a1f1' fi source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -- cgit v1.2.3-70-g09d2 From 81ed89a299dd673e24b4d42af145f2fcb4fc941b Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sat, 31 Oct 2015 16:40:32 -0200 Subject: Update to 0.3.8.5-3: Changing source to a cache site --- .SRCINFO | 4 ++-- PKGBUILD | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cac408c..0755378 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.5 - pkgrel = 2 + pkgrel = 3 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://get.popcorntime.io/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz + source = http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop sha1sums = fcd6044861cfb78587d9b6e9590c0872144045c6 diff --git a/PKGBUILD b/PKGBUILD index 7f289b4..7b43c63 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ pkgname=popcorntime-bin pkgver=0.3.8.5 _pkgver='0.3.8-5' -pkgrel=2 +pkgrel=3 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -34,7 +34,8 @@ if [ "$CARCH" = 'i686' ]; then sha1sums[0]='ec994d8a0420857018aabf8555926b0a6d43a1f1' fi -source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" +#source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" +source=("http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" "popcorntime.install" "popcorntime.desktop") -- cgit v1.2.3-70-g09d2 From ee0a43d920e4a76c87de71f83402018df7e971e3 Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sat, 31 Oct 2015 17:34:41 -0200 Subject: Update to 0.3.8.5-4: Trying another URL as the previous don't get the upstream script right --- .SRCINFO | 2 +- PKGBUILD | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0755378..0b77f4e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -20,7 +20,7 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz + source = http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-0.3.8-5-Linux-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop sha1sums = fcd6044861cfb78587d9b6e9590c0872144045c6 diff --git a/PKGBUILD b/PKGBUILD index 7b43c63..e20b858 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ pkgname=popcorntime-bin pkgver=0.3.8.5 _pkgver='0.3.8-5' -pkgrel=3 +pkgrel=4 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -35,7 +35,8 @@ if [ "$CARCH" = 'i686' ]; then fi #source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -source=("http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" +#source=("http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" +source=("http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-${_pkgver}-Linux-${_platform}.tar.xz" "popcorntime.install" "popcorntime.desktop") -- cgit v1.2.3-70-g09d2 From 16012f745e7f75c5ff03ef50f5724ab5c625273c Mon Sep 17 00:00:00 2001 From: ricardofunke Date: Sat, 31 Oct 2015 17:36:41 -0200 Subject: Update to 0.3.8.5-5: Fixing the URL --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0b77f4e..3ae4c4a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. pkgver = 0.3.8.5 - pkgrel = 3 + pkgrel = 5 url = http://popcorntime.io/ install = popcorntime.install arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = popcorntime-bin provides = popcorntime conflicts = popcorntime options = !strip - source = http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-0.3.8-5-Linux-Linux-64.tar.xz + source = http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz source = popcorntime.install source = popcorntime.desktop sha1sums = fcd6044861cfb78587d9b6e9590c0872144045c6 diff --git a/PKGBUILD b/PKGBUILD index e20b858..782abf2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,7 @@ pkgname=popcorntime-bin pkgver=0.3.8.5 _pkgver='0.3.8-5' -pkgrel=4 +pkgrel=5 pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." arch=('x86_64' 'i686') url="http://popcorntime.io/" @@ -36,7 +36,7 @@ fi #source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" #source=("http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -source=("http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-${_pkgver}-Linux-${_platform}.tar.xz" +source=("http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" "popcorntime.install" "popcorntime.desktop") -- cgit v1.2.3-70-g09d2 From d7fb614e0cb16f2ce9f4023d53ac18803d8bce9a Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Fri, 19 Feb 2016 16:23:36 +0100 Subject: Update for new release --- .SRCINFO | 31 ++++++++++++-------------- PKGBUILD | 77 +++++++++++++++++++++++++--------------------------------------- 2 files changed, 44 insertions(+), 64 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3ae4c4a..2e9dd30 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,31 +1,28 @@ pkgbase = popcorntime-bin - pkgdesc = Stream movies from torrents. Skip the downloads. Launch, click, watch. - pkgver = 0.3.8.5 - pkgrel = 5 - url = http://popcorntime.io/ + pkgdesc = Stream movies and TV shows from torrents + pkgver = 0.3.9 + pkgrel = 1 + url = https://popcorntime.sh install = popcorntime.install - arch = x86_64 arch = i686 + arch = x86_64 license = GPL3 - depends = libnotify - depends = desktop-file-utils - depends = ttf-font + depends = alsa-lib depends = gconf + depends = gtk2 depends = nss + depends = ttf-font depends = libxtst - depends = gtk2 - depends = alsa-lib - optdepends = net-tools: necessary for the new vpn feature - optdepends = ttf-liberation: open source ttf fonts + depends = libnotify + depends = desktop-file-utils provides = popcorntime + provides = popcorn-time-ce conflicts = popcorntime options = !strip - source = http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-0.3.8-5-Linux-64.tar.xz - source = popcorntime.install + source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-.tar.xz source = popcorntime.desktop - sha1sums = fcd6044861cfb78587d9b6e9590c0872144045c6 - sha1sums = d2e56426a321faabd316ea0bc89b2fa2fb0dfa48 - sha1sums = 98cba5c0c979d37e601cc33cf3b562f106427d36 + sha256sums = 27db5a11580204add3494f0274d170bad2fcba0c9e4461d408a20dcd10b4eadf + sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 782abf2..561b4a5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer: Ricardo Funke +# Maintainer: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> +# Contributor: Ricardo Funke # Contributor: Attila Bukor # Contributor: Iwan Timmer # Contributor: Eric Engestrom @@ -10,69 +11,51 @@ # Contributor: petterk pkgname=popcorntime-bin -pkgver=0.3.8.5 -_pkgver='0.3.8-5' -pkgrel=5 -pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch." -arch=('x86_64' 'i686') -url="http://popcorntime.io/" +_pkgname=popcorntime +pkgver=0.3.9 +pkgrel=1 +pkgdesc="Stream movies and TV shows from torrents" +arch=('i686' 'x86_64') +url="https://popcorntime.sh" license=('GPL3') -depends=('libnotify' 'desktop-file-utils' 'ttf-font' 'gconf' 'nss' 'libxtst' 'gtk2' 'alsa-lib') -optdepends=('net-tools: necessary for the new vpn feature' 'ttf-liberation: open source ttf fonts') -provides=('popcorntime') +depends=('alsa-lib' 'gconf' 'gtk2' 'nss' 'ttf-font' 'libxtst' 'libnotify' 'desktop-file-utils') +provides=('popcorntime' 'popcorn-time-ce') conflicts=('popcorntime') options=('!strip') -install="popcorntime.install" -sha1sums=('fcd6044861cfb78587d9b6e9590c0872144045c6' - 'd2e56426a321faabd316ea0bc89b2fa2fb0dfa48' - '98cba5c0c979d37e601cc33cf3b562f106427d36') +install=popcorntime.install +[ "$CARCH" = "i686" ] && _platform='Linux-32' +[ "$CARCH" = "x86_64" ] && _platform='Linux-64' +source=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" + "${_pkgname}.desktop") +sha256sums=('27db5a11580204add3494f0274d170bad2fcba0c9e4461d408a20dcd10b4eadf' + '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -_platform='Linux-64' - -if [ "$CARCH" = 'i686' ]; then - _platform='Linux-32' - sha1sums[0]='ec994d8a0420857018aabf8555926b0a6d43a1f1' -fi - -#source=("http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -#source=("http://web.archive.org/web/20150909191012/http://get.popcorntime.io/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" -source=("http://web.archive.org/web/20150909184516/http://128.199.107.206/build/Popcorn-Time-${_pkgver}-${_platform}.tar.xz" - "popcorntime.install" - "popcorntime.desktop") +[ "$CARCH" = "i686" ] && _platform=linux32 +[ "$CARCH" = "x86_64" ] && _platform=linux64 package() { - cd "${srcdir}" + _bpath="${_platform}" - install -dm755 "${pkgdir}/opt/${pkgname}/" + install -dm755 "${pkgdir}/usr/share/${_pkgname}" install -dm755 "${pkgdir}/usr/bin" - install -dm755 "${pkgdir}/usr/share" # Program - echo "${pkgdir}/opt/${pkgname}/" - install -Dm755 "${srcdir}/Popcorn-Time" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/nw.pak" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/libffmpegsumo.so" "${pkgdir}/opt/${pkgname}/" -# install -Dm644 "${srcdir}/CHANGELOG.md" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/icudtl.dat" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/install" "${pkgdir}/opt/${pkgname}/" -# install -Dm644 "${srcdir}/LICENSE.txt" "${pkgdir}/opt/${pkgname}/" -# install -Dm644 "${srcdir}/package.json" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/package.nw" "${pkgdir}/opt/${pkgname}/" - install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/opt/${pkgname}/" -# install -Dm644 "${srcdir}/README.md" "${pkgdir}/opt/${pkgname}/" + install -Dm755 "${_bpath}/Popcorn-Time" "${pkgdir}/usr/share/${_pkgname}/" + install -Dm644 "${_bpath}/"{icudtl.dat,libffmpegsumo.so,nw.pak,package.json} \ + "${pkgdir}/usr/share/${_pkgname}/" # Directories - cp -a "${srcdir}/locales" "${pkgdir}/opt/${pkgname}/" -# cp -a "${srcdir}/node_modules" "${pkgdir}/opt/${pkgname}/" -# cp -a "${srcdir}/src" "${pkgdir}/opt/${pkgname}/" + cp -a "${_bpath}/"{locales,node_modules,src} "${pkgdir}/usr/share/${_pkgname}/" # Link to program - ln -s "/opt/${pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/popcorntime" + ln -s "/usr/share/${_pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/${_pkgname}" # Desktop file - install -Dm644 "${srcdir}/popcorntime.desktop" "${pkgdir}/usr/share/applications/popcorntime.desktop" + install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" # Icon - install -Dm644 "${srcdir}/popcorntime.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png" + install -Dm644 "${_bpath}/src/app/images/icon.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png" } +# vim:set ts=2 sw=2 et: + -- cgit v1.2.3-70-g09d2 From c13236718a0d32020f3451304296398bb243659e Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Sat, 20 Feb 2016 14:20:13 +0100 Subject: Update sha256sums --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2e9dd30..cca9399 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 1 + pkgrel = 2 url = https://popcorntime.sh install = popcorntime.install arch = i686 @@ -21,7 +21,7 @@ pkgbase = popcorntime-bin options = !strip source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-.tar.xz source = popcorntime.desktop - sha256sums = 27db5a11580204add3494f0274d170bad2fcba0c9e4461d408a20dcd10b4eadf + sha256sums = 42f2c92c90717eb23f890d1ca42dd4210a48a4b9013f9ab8273b32b3e80c8a84 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 561b4a5..75ece81 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=1 +pkgrel=2 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -27,7 +27,7 @@ install=popcorntime.install [ "$CARCH" = "x86_64" ] && _platform='Linux-64' source=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" "${_pkgname}.desktop") -sha256sums=('27db5a11580204add3494f0274d170bad2fcba0c9e4461d408a20dcd10b4eadf' +sha256sums=('42f2c92c90717eb23f890d1ca42dd4210a48a4b9013f9ab8273b32b3e80c8a84' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') [ "$CARCH" = "i686" ] && _platform=linux32 -- cgit v1.2.3-70-g09d2 From 9d742f09223f06bde3b967ecf5148357241fe72c Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Wed, 24 Feb 2016 01:27:28 +0100 Subject: Update sha256sums --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cca9399..1d2bf0e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -21,7 +21,7 @@ pkgbase = popcorntime-bin options = !strip source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-.tar.xz source = popcorntime.desktop - sha256sums = 42f2c92c90717eb23f890d1ca42dd4210a48a4b9013f9ab8273b32b3e80c8a84 + sha256sums = f2c29632488e5052c8b29df4cfdfc532a4f3984a9b8e654441bb37ad312591a1 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 75ece81..5a3cc14 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -27,7 +27,7 @@ install=popcorntime.install [ "$CARCH" = "x86_64" ] && _platform='Linux-64' source=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" "${_pkgname}.desktop") -sha256sums=('42f2c92c90717eb23f890d1ca42dd4210a48a4b9013f9ab8273b32b3e80c8a84' +sha256sums=('f2c29632488e5052c8b29df4cfdfc532a4f3984a9b8e654441bb37ad312591a1' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') [ "$CARCH" = "i686" ] && _platform=linux32 -- cgit v1.2.3-70-g09d2 From ed048fe6e34ed5e866d21e118388ae1cf3c63427 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Thu, 25 Feb 2016 17:28:57 +0100 Subject: Update sha256sums --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1d2bf0e..00d1274 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 2 + pkgrel = 3 url = https://popcorntime.sh install = popcorntime.install arch = i686 @@ -21,7 +21,7 @@ pkgbase = popcorntime-bin options = !strip source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-.tar.xz source = popcorntime.desktop - sha256sums = f2c29632488e5052c8b29df4cfdfc532a4f3984a9b8e654441bb37ad312591a1 + sha256sums = 4316a066af9c8f4bcad8f2fa59b32750c051617631f25c04d0f655f5ed13823d sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 5a3cc14..adc95c6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=2 +pkgrel=3 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -27,7 +27,7 @@ install=popcorntime.install [ "$CARCH" = "x86_64" ] && _platform='Linux-64' source=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" "${_pkgname}.desktop") -sha256sums=('f2c29632488e5052c8b29df4cfdfc532a4f3984a9b8e654441bb37ad312591a1' +sha256sums=('4316a066af9c8f4bcad8f2fa59b32750c051617631f25c04d0f655f5ed13823d' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') [ "$CARCH" = "i686" ] && _platform=linux32 -- cgit v1.2.3-70-g09d2 From ccd4579216b147e3e4f53797d8b40a3cae86c359 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Fri, 26 Feb 2016 08:55:57 +0100 Subject: Update sources and sha256sums --- .SRCINFO | 6 ++++-- PKGBUILD | 14 +++++++------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 00d1274..2af4d87 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -19,10 +19,12 @@ pkgbase = popcorntime-bin provides = popcorn-time-ce conflicts = popcorntime options = !strip - source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-.tar.xz source = popcorntime.desktop - sha256sums = 4316a066af9c8f4bcad8f2fa59b32750c051617631f25c04d0f655f5ed13823d sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 + source_i686 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-32.tar.xz + sha256sums_i686 = 7793f41c7a9b1c2431ade59e5cf86a49b2286719292676bd93811bce691430e2 + source_x86_64 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-64.tar.xz + sha256sums_x86_64 = bfa3a62ed0008c5e79c7fa5982c53f184ba71ed18431ffed55bbb679dbd4c860 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index adc95c6..e6213a4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=3 +pkgrel=4 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -23,12 +23,12 @@ provides=('popcorntime' 'popcorn-time-ce') conflicts=('popcorntime') options=('!strip') install=popcorntime.install -[ "$CARCH" = "i686" ] && _platform='Linux-32' -[ "$CARCH" = "x86_64" ] && _platform='Linux-64' -source=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-${_platform}.tar.xz" - "${_pkgname}.desktop") -sha256sums=('4316a066af9c8f4bcad8f2fa59b32750c051617631f25c04d0f655f5ed13823d' - '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') +source=("${_pkgname}.desktop") +source_i686=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") +source_x86_64=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") +sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') +sha256sums_i686=('7793f41c7a9b1c2431ade59e5cf86a49b2286719292676bd93811bce691430e2') +sha256sums_x86_64=('bfa3a62ed0008c5e79c7fa5982c53f184ba71ed18431ffed55bbb679dbd4c860') [ "$CARCH" = "i686" ] && _platform=linux32 [ "$CARCH" = "x86_64" ] && _platform=linux64 -- cgit v1.2.3-70-g09d2 From 6fcc94eb142ae7f16370c3b2b5b0adfbcaeaa974 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Sun, 28 Feb 2016 17:24:09 +0100 Subject: mksrcinfo --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2af4d87..11ac9e4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 3 + pkgrel = 4 url = https://popcorntime.sh install = popcorntime.install arch = i686 @@ -22,9 +22,9 @@ pkgbase = popcorntime-bin source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 source_i686 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-32.tar.xz - sha256sums_i686 = 7793f41c7a9b1c2431ade59e5cf86a49b2286719292676bd93811bce691430e2 + sha256sums_i686 = 3678e52f3a808c57ef492cf51ca43320408bd8ba7780fbb623abb63ca8d37ad6 source_x86_64 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-64.tar.xz - sha256sums_x86_64 = bfa3a62ed0008c5e79c7fa5982c53f184ba71ed18431ffed55bbb679dbd4c860 + sha256sums_x86_64 = 9b92566d3eea3eeb3529ca1e59d6a86a904706e5b83e4bc8b20477ced90d10ad pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index e6213a4..69affde 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -27,8 +27,8 @@ source=("${_pkgname}.desktop") source_i686=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") source_x86_64=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('7793f41c7a9b1c2431ade59e5cf86a49b2286719292676bd93811bce691430e2') -sha256sums_x86_64=('bfa3a62ed0008c5e79c7fa5982c53f184ba71ed18431ffed55bbb679dbd4c860') +sha256sums_i686=('3678e52f3a808c57ef492cf51ca43320408bd8ba7780fbb623abb63ca8d37ad6') +sha256sums_x86_64=('9b92566d3eea3eeb3529ca1e59d6a86a904706e5b83e4bc8b20477ced90d10ad') [ "$CARCH" = "i686" ] && _platform=linux32 [ "$CARCH" = "x86_64" ] && _platform=linux64 -- cgit v1.2.3-70-g09d2 From 6989f356bb70eac43b38b623467e177a997bda2d Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Wed, 2 Mar 2016 21:16:43 +0100 Subject: Disable checksums --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 11ac9e4..0b2ea4a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 4 + pkgrel = 5 url = https://popcorntime.sh install = popcorntime.install arch = i686 @@ -22,9 +22,9 @@ pkgbase = popcorntime-bin source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 source_i686 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-32.tar.xz - sha256sums_i686 = 3678e52f3a808c57ef492cf51ca43320408bd8ba7780fbb623abb63ca8d37ad6 + sha256sums_i686 = SKIP source_x86_64 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-64.tar.xz - sha256sums_x86_64 = 9b92566d3eea3eeb3529ca1e59d6a86a904706e5b83e4bc8b20477ced90d10ad + sha256sums_x86_64 = SKIP pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 69affde..45f5e3c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=4 +pkgrel=5 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -27,8 +27,8 @@ source=("${_pkgname}.desktop") source_i686=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") source_x86_64=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('3678e52f3a808c57ef492cf51ca43320408bd8ba7780fbb623abb63ca8d37ad6') -sha256sums_x86_64=('9b92566d3eea3eeb3529ca1e59d6a86a904706e5b83e4bc8b20477ced90d10ad') +sha256sums_i686=('SKIP') +sha256sums_x86_64=('SKIP') [ "$CARCH" = "i686" ] && _platform=linux32 [ "$CARCH" = "x86_64" ] && _platform=linux64 -- cgit v1.2.3-70-g09d2 From 15eb232ed54452a272c79a7c0dbf0dbefa05a0d9 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Wed, 6 Apr 2016 16:06:58 +0200 Subject: Bump pkgrel --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0b2ea4a..07b6977 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 5 + pkgrel = 6 url = https://popcorntime.sh install = popcorntime.install arch = i686 diff --git a/PKGBUILD b/PKGBUILD index 45f5e3c..f818aa1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=5 +pkgrel=6 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" -- cgit v1.2.3-70-g09d2 From 65f8d3ad3d184fcf348457a4043f78de86088c70 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Wed, 10 Aug 2016 11:26:05 +0200 Subject: Remove .install file (handled by package hooks) --- .SRCINFO | 7 +++---- PKGBUILD | 9 +++------ popcorntime.install | 14 -------------- 3 files changed, 6 insertions(+), 24 deletions(-) delete mode 100644 popcorntime.install diff --git a/.SRCINFO b/.SRCINFO index 07b6977..06253df 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,8 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents pkgver = 0.3.9 - pkgrel = 6 + pkgrel = 7 url = https://popcorntime.sh - install = popcorntime.install arch = i686 arch = x86_64 license = GPL3 @@ -22,9 +21,9 @@ pkgbase = popcorntime-bin source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 source_i686 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-32.tar.xz - sha256sums_i686 = SKIP + sha256sums_i686 = 0c8a84e853946c70b4986d8044ec869f995b8001b48cd5bd3ef0ed61e8848335 source_x86_64 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-64.tar.xz - sha256sums_x86_64 = SKIP + sha256sums_x86_64 = 5655111b7f5883ce7a620a8fb0b9f7fb7563a46516697aac5ad2b28b8b5e49df pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index f818aa1..f7310e5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,7 +13,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.9 -pkgrel=6 +pkgrel=7 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -22,13 +22,12 @@ depends=('alsa-lib' 'gconf' 'gtk2' 'nss' 'ttf-font' 'libxtst' 'libnotify' 'deskt provides=('popcorntime' 'popcorn-time-ce') conflicts=('popcorntime') options=('!strip') -install=popcorntime.install source=("${_pkgname}.desktop") source_i686=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") source_x86_64=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('SKIP') -sha256sums_x86_64=('SKIP') +sha256sums_i686=('0c8a84e853946c70b4986d8044ec869f995b8001b48cd5bd3ef0ed61e8848335') +sha256sums_x86_64=('5655111b7f5883ce7a620a8fb0b9f7fb7563a46516697aac5ad2b28b8b5e49df') [ "$CARCH" = "i686" ] && _platform=linux32 [ "$CARCH" = "x86_64" ] && _platform=linux64 @@ -57,5 +56,3 @@ package() { install -Dm644 "${_bpath}/src/app/images/icon.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png" } -# vim:set ts=2 sw=2 et: - diff --git a/popcorntime.install b/popcorntime.install deleted file mode 100644 index 380b52e..0000000 --- a/popcorntime.install +++ /dev/null @@ -1,14 +0,0 @@ -post_install() { - update-desktop-database -q - echo - echo "WARNING: Popcorn Time streams movies from Torrents" - echo "Downloading copyrighted material may be illegal in your country!" - echo "Use at your own risk!" - echo -} - -post_upgrade() { - post_install -} - -# vim:set ts=2 sw=2 et: -- cgit v1.2.3-70-g09d2 From 54f02a4e90824b8760d167451c133f83d5a5fce6 Mon Sep 17 00:00:00 2001 From: Pieter Goetschalckx Date: Tue, 8 Nov 2016 13:03:57 +0100 Subject: Version 0.3.10 --- .SRCINFO | 12 ++++++------ PKGBUILD | 35 ++++++++++++++--------------------- 2 files changed, 20 insertions(+), 27 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 06253df..d593e2d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents - pkgver = 0.3.9 - pkgrel = 7 + pkgver = 0.3.10 + pkgrel = 1 url = https://popcorntime.sh arch = i686 arch = x86_64 @@ -20,10 +20,10 @@ pkgbase = popcorntime-bin options = !strip source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 - source_i686 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-32.tar.xz - sha256sums_i686 = 0c8a84e853946c70b4986d8044ec869f995b8001b48cd5bd3ef0ed61e8848335 - source_x86_64 = https://get.popcorntime.sh/build/Popcorn-Time-0.3.9-Linux-64.tar.xz - sha256sums_x86_64 = 5655111b7f5883ce7a620a8fb0b9f7fb7563a46516697aac5ad2b28b8b5e49df + source_i686 = https://get.popcorntime.sh/repo/build/Popcorn-Time-0.3.10-Linux-32.tar.xz + sha256sums_i686 = c6497b067304918c3d19db2fecd36cc9efe1fff13765d461b24fd2cd8692ed42 + source_x86_64 = https://get.popcorntime.sh/repo/build/Popcorn-Time-0.3.10-Linux-64.tar.xz + sha256sums_x86_64 = b7f789c2e2f3b0f7e3408a437080404f8a2aa7ce4a41858cf891b02cda8c37a5 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index f7310e5..2b73d45 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ # Maintainer: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> +# Contributor: Bastien Traverse # Contributor: Ricardo Funke # Contributor: Attila Bukor # Contributor: Iwan Timmer @@ -12,8 +13,8 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.3.9 -pkgrel=7 +pkgver=0.3.10 +pkgrel=1 pkgdesc="Stream movies and TV shows from torrents" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -23,29 +24,16 @@ provides=('popcorntime' 'popcorn-time-ce') conflicts=('popcorntime') options=('!strip') source=("${_pkgname}.desktop") -source_i686=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") -source_x86_64=("https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") +source_i686=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") +source_x86_64=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('0c8a84e853946c70b4986d8044ec869f995b8001b48cd5bd3ef0ed61e8848335') -sha256sums_x86_64=('5655111b7f5883ce7a620a8fb0b9f7fb7563a46516697aac5ad2b28b8b5e49df') - -[ "$CARCH" = "i686" ] && _platform=linux32 -[ "$CARCH" = "x86_64" ] && _platform=linux64 +sha256sums_i686=('c6497b067304918c3d19db2fecd36cc9efe1fff13765d461b24fd2cd8692ed42') +sha256sums_x86_64=('b7f789c2e2f3b0f7e3408a437080404f8a2aa7ce4a41858cf891b02cda8c37a5') package() { - _bpath="${_platform}" - install -dm755 "${pkgdir}/usr/share/${_pkgname}" install -dm755 "${pkgdir}/usr/bin" - # Program - install -Dm755 "${_bpath}/Popcorn-Time" "${pkgdir}/usr/share/${_pkgname}/" - install -Dm644 "${_bpath}/"{icudtl.dat,libffmpegsumo.so,nw.pak,package.json} \ - "${pkgdir}/usr/share/${_pkgname}/" - - # Directories - cp -a "${_bpath}/"{locales,node_modules,src} "${pkgdir}/usr/share/${_pkgname}/" - # Link to program ln -s "/usr/share/${_pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/${_pkgname}" @@ -53,6 +41,11 @@ package() { install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" # Icon - install -Dm644 "${_bpath}/src/app/images/icon.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png" -} + install -Dm644 "${srcdir}/src/app/images/icon.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png" + + # Remove makepkg-created symlinks before copying content + rm *.tar.xz *.desktop + # Copy complete content of source archive to /usr/share/${_pkgname}/ + cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" +} -- cgit v1.2.3-70-g09d2 From 2910ea7ec7fe94b1ad2cfd70adc510c80741ef97 Mon Sep 17 00:00:00 2001 From: Bastien Traverse Date: Mon, 5 Feb 2018 00:58:41 +0100 Subject: Switch to CI builds to get fresher versions & fix permissions --- .SRCINFO | 14 ++++++++------ PKGBUILD | 19 +++++++++++++------ 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d593e2d..5685087 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,9 @@ +# Generated by mksrcinfo v8 +# Sun Feb 4 23:49:44 UTC 2018 pkgbase = popcorntime-bin - pkgdesc = Stream movies and TV shows from torrents + pkgdesc = Stream movies and TV shows from torrents (continuous integration builds) pkgver = 0.3.10 - pkgrel = 1 + pkgrel = 2 url = https://popcorntime.sh arch = i686 arch = x86_64 @@ -20,10 +22,10 @@ pkgbase = popcorntime-bin options = !strip source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 - source_i686 = https://get.popcorntime.sh/repo/build/Popcorn-Time-0.3.10-Linux-32.tar.xz - sha256sums_i686 = c6497b067304918c3d19db2fecd36cc9efe1fff13765d461b24fd2cd8692ed42 - source_x86_64 = https://get.popcorntime.sh/repo/build/Popcorn-Time-0.3.10-Linux-64.tar.xz - sha256sums_x86_64 = b7f789c2e2f3b0f7e3408a437080404f8a2aa7ce4a41858cf891b02cda8c37a5 + source_i686 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux32.tar.xz + sha256sums_i686 = 6eb6a16cc40ed199c5e14b9a16f9dbb1bd45174b59a2a93271048ced21a2b618 + source_x86_64 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux64.tar.xz + sha256sums_x86_64 = 2509fe735b6517f9fec38f9c7f5652840a5ee5a7148e31f813b0946db4bca43e pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 2b73d45..0de2302 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -14,8 +14,8 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=1 -pkgdesc="Stream movies and TV shows from torrents" +pkgrel=2 +pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" arch=('i686' 'x86_64') url="https://popcorntime.sh" license=('GPL3') @@ -24,11 +24,14 @@ provides=('popcorntime' 'popcorn-time-ce') conflicts=('popcorntime') options=('!strip') source=("${_pkgname}.desktop") -source_i686=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") -source_x86_64=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") +## Official releases are lagging behind. Using CI builds instead +#source_i686=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") +#source_x86_64=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") +source_i686=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux32.tar.xz") +source_x86_64=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('c6497b067304918c3d19db2fecd36cc9efe1fff13765d461b24fd2cd8692ed42') -sha256sums_x86_64=('b7f789c2e2f3b0f7e3408a437080404f8a2aa7ce4a41858cf891b02cda8c37a5') +sha256sums_i686=('6eb6a16cc40ed199c5e14b9a16f9dbb1bd45174b59a2a93271048ced21a2b618') +sha256sums_x86_64=('2509fe735b6517f9fec38f9c7f5652840a5ee5a7148e31f813b0946db4bca43e') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" @@ -48,4 +51,8 @@ package() { # Copy complete content of source archive to /usr/share/${_pkgname}/ cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" + + # Fix permissions + find "${pkgdir}/usr/share/${_pkgname}/" -perm 600 -exec chmod 644 '{}' \; + find "${pkgdir}/usr/share/${_pkgname}/" -perm 700 -exec chmod 755 '{}' \; } -- cgit v1.2.3-70-g09d2 From 2bca99a4327fe051b31d5312787e5ed67bd6f3ec Mon Sep 17 00:00:00 2001 From: Bastien Traverse Date: Sat, 24 Mar 2018 00:38:27 +0100 Subject: Remove checksums for downloaded binaries since we are using CI builds --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5685087..76a04b8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sun Feb 4 23:49:44 UTC 2018 +# Fri Mar 23 23:31:58 UTC 2018 pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (continuous integration builds) pkgver = 0.3.10 - pkgrel = 2 + pkgrel = 3 url = https://popcorntime.sh arch = i686 arch = x86_64 @@ -23,9 +23,9 @@ pkgbase = popcorntime-bin source = popcorntime.desktop sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 source_i686 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux32.tar.xz - sha256sums_i686 = 6eb6a16cc40ed199c5e14b9a16f9dbb1bd45174b59a2a93271048ced21a2b618 + sha256sums_i686 = SKIP source_x86_64 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux64.tar.xz - sha256sums_x86_64 = 2509fe735b6517f9fec38f9c7f5652840a5ee5a7148e31f813b0946db4bca43e + sha256sums_x86_64 = SKIP pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 0de2302..caa39f5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -14,7 +14,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=2 +pkgrel=3 pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" arch=('i686' 'x86_64') url="https://popcorntime.sh" @@ -30,8 +30,8 @@ source=("${_pkgname}.desktop") source_i686=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux32.tar.xz") source_x86_64=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('6eb6a16cc40ed199c5e14b9a16f9dbb1bd45174b59a2a93271048ced21a2b618') -sha256sums_x86_64=('2509fe735b6517f9fec38f9c7f5652840a5ee5a7148e31f813b0946db4bca43e') +sha256sums_i686=('SKIP') +sha256sums_x86_64=('SKIP') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" -- cgit v1.2.3-70-g09d2 From 4d8b7a1f13f15555e79e48559dc719d9cc729ba0 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Sun, 16 Dec 2018 21:09:39 +0200 Subject: Make this explicitly a CI build * Rename with -ci- * Build # as pkgrel and in URL so that our source urls are valid forever * Include checksums --- PKGBUILD | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index caa39f5..699d3a1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> +# Maintainer: Kostis Karantias +# Contributor: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> # Contributor: Bastien Traverse # Contributor: Ricardo Funke # Contributor: Attila Bukor @@ -11,27 +12,24 @@ # Contributor: xantares # Contributor: petterk -pkgname=popcorntime-bin +pkgname=popcorntime-ci-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=3 +pkgrel=362 pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" arch=('i686' 'x86_64') url="https://popcorntime.sh" license=('GPL3') depends=('alsa-lib' 'gconf' 'gtk2' 'nss' 'ttf-font' 'libxtst' 'libnotify' 'desktop-file-utils') -provides=('popcorntime' 'popcorn-time-ce') +provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-bin') conflicts=('popcorntime') options=('!strip') source=("${_pkgname}.desktop") -## Official releases are lagging behind. Using CI builds instead -#source_i686=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-32.tar.xz") -#source_x86_64=("https://get.popcorntime.sh/repo/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") -source_i686=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux32.tar.xz") -source_x86_64=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") -sha256sums=('4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -sha256sums_i686=('SKIP') -sha256sums_x86_64=('SKIP') +source_i686=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux32.tar.xz") +source_x86_64=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") +sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb') +sha512sums_i686=('5b6b9ba1232e6bdd3d7b8a949115d0020cf0fed9e2ed3d9d657c9c1a4230ec43ab25a7030d3dbc25b069ab6758bcc73bc659b8a232ad17a70cba7cb801bb374e') +sha512sums_x86_64=('4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" -- cgit v1.2.3-70-g09d2 From 8aa392ba8a00bf6371c6826a4ebeed21cee692b4 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Sun, 16 Dec 2018 21:17:05 +0200 Subject: throw away 32bit version 32bits is not even supported by arch --- PKGBUILD | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 699d3a1..c77a350 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,19 +17,16 @@ _pkgname=popcorntime pkgver=0.3.10 pkgrel=362 pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" -arch=('i686' 'x86_64') +arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') depends=('alsa-lib' 'gconf' 'gtk2' 'nss' 'ttf-font' 'libxtst' 'libnotify' 'desktop-file-utils') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-bin') conflicts=('popcorntime') options=('!strip') -source=("${_pkgname}.desktop") -source_i686=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux32.tar.xz") -source_x86_64=("https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") -sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb') -sha512sums_i686=('5b6b9ba1232e6bdd3d7b8a949115d0020cf0fed9e2ed3d9d657c9c1a4230ec43ab25a7030d3dbc25b069ab6758bcc73bc659b8a232ad17a70cba7cb801bb374e') -sha512sums_x86_64=('4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a') +source=("${_pkgname}.desktop" "https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") +sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb' + '4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" -- cgit v1.2.3-70-g09d2 From 7469fc3c0aec680aee05fb1a91c2fa3c13dbab6e Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 14:56:43 +0200 Subject: update dependencies --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index c77a350..2aca7c4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -20,7 +20,7 @@ pkgdesc="Stream movies and TV shows from torrents (continuous integration builds arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -depends=('alsa-lib' 'gconf' 'gtk2' 'nss' 'ttf-font' 'libxtst' 'libnotify' 'desktop-file-utils') +depends=('nss' 'ttf-font' 'libxss' 'gtk3' 'nodejs') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-bin') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From cc246b00ad404348920cb99356b16fa241d4639f Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 14:59:19 +0200 Subject: update srcinfo --- .SRCINFO | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 76a04b8..61032f6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,31 +1,24 @@ -# Generated by mksrcinfo v8 -# Fri Mar 23 23:31:58 UTC 2018 -pkgbase = popcorntime-bin +pkgbase = popcorntime-ci-bin pkgdesc = Stream movies and TV shows from torrents (continuous integration builds) pkgver = 0.3.10 - pkgrel = 3 + pkgrel = 362 url = https://popcorntime.sh - arch = i686 arch = x86_64 license = GPL3 - depends = alsa-lib - depends = gconf - depends = gtk2 depends = nss depends = ttf-font - depends = libxtst - depends = libnotify - depends = desktop-file-utils + depends = libxss + depends = gtk3 + depends = nodejs provides = popcorntime provides = popcorn-time-ce + provides = popcorntime-bin conflicts = popcorntime options = !strip source = popcorntime.desktop - sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 - source_i686 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux32.tar.xz - sha256sums_i686 = SKIP - source_x86_64 = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/lastSuccessfulBuild/artifact/build/Popcorn-Time-0.3.10_linux64.tar.xz - sha256sums_x86_64 = SKIP + source = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/362/artifact/build/Popcorn-Time-0.3.10_linux64.tar.xz + sha512sums = 7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb + sha512sums = 4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a -pkgname = popcorntime-bin +pkgname = popcorntime-ci-bin -- cgit v1.2.3-70-g09d2 From 3242957eeac7522b73313f809e6462fb84c21a47 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 16:35:45 +0200 Subject: move library files to /usr/lib --- PKGBUILD | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PKGBUILD b/PKGBUILD index 2aca7c4..8abc2bd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -44,6 +44,13 @@ package() { # Remove makepkg-created symlinks before copying content rm *.tar.xz *.desktop + # Move library files to /usr/lib/popcorntime + install -d "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" + mv "${srcdir}"/lib/* "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" + rmdir "${srcdir}"/lib/ + install -d "${pkgdir}/etc/ld.so.conf.d" + echo "/usr/lib/${_pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${_pkgname}.conf" + # Copy complete content of source archive to /usr/share/${_pkgname}/ cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" -- cgit v1.2.3-70-g09d2 From 80b4c718906125bbaf102cdd4a40b55e04116503 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 16:36:00 +0200 Subject: switch to stable version --- .SRCINFO | 11 ++++++----- PKGBUILD | 10 +++++----- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 61032f6..88c823c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ -pkgbase = popcorntime-ci-bin +pkgbase = popcorntime-stable-bin pkgdesc = Stream movies and TV shows from torrents (continuous integration builds) pkgver = 0.3.10 - pkgrel = 362 + pkgrel = 1 url = https://popcorntime.sh arch = x86_64 license = GPL3 @@ -12,13 +12,14 @@ pkgbase = popcorntime-ci-bin depends = nodejs provides = popcorntime provides = popcorn-time-ce + provides = popcorntime-ci-bin provides = popcorntime-bin conflicts = popcorntime options = !strip source = popcorntime.desktop - source = https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/362/artifact/build/Popcorn-Time-0.3.10_linux64.tar.xz + source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.10-Linux-64.tar.xz sha512sums = 7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb - sha512sums = 4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a + sha512sums = 0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516 -pkgname = popcorntime-ci-bin +pkgname = popcorntime-stable-bin diff --git a/PKGBUILD b/PKGBUILD index 8abc2bd..12af19c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,21 +12,21 @@ # Contributor: xantares # Contributor: petterk -pkgname=popcorntime-ci-bin +pkgname=popcorntime-stable-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=362 +pkgrel=1 pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') depends=('nss' 'ttf-font' 'libxss' 'gtk3' 'nodejs') -provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-bin') +provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-bin') conflicts=('popcorntime') options=('!strip') -source=("${_pkgname}.desktop" "https://ci.popcorntime.sh/job/Popcorn-Time-Desktop/${pkgrel}/artifact/build/Popcorn-Time-${pkgver}_linux64.tar.xz") +source=("${_pkgname}.desktop" "https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb' - '4995da3263738fd9c99ad9158d13d768627a132253afe9f42d59c6ff6fc90d4ab1569b95b7c9f342b2a09145908af7baac0755d71542b1a5a98c0bbd80ff916a') + '0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" -- cgit v1.2.3-70-g09d2 From b8e4d369fe7130972a14a8e10192a2c26915a69c Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 16:38:00 +0200 Subject: fix description --- .SRCINFO | 2 +- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 88c823c..e86b549 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = popcorntime-stable-bin - pkgdesc = Stream movies and TV shows from torrents (continuous integration builds) + pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 pkgrel = 1 url = https://popcorntime.sh diff --git a/PKGBUILD b/PKGBUILD index 12af19c..d812b55 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,8 +15,8 @@ pkgname=popcorntime-stable-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=1 -pkgdesc="Stream movies and TV shows from torrents (continuous integration builds)" +pkgrel=2 +pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -- cgit v1.2.3-70-g09d2 From d66fed0866746f0e5161ebea5a9b84904ee410a5 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Wed, 19 Dec 2018 16:39:54 +0200 Subject: really update srcinfo --- .SRCINFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index e86b549..026660b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-stable-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 - pkgrel = 1 + pkgrel = 2 url = https://popcorntime.sh arch = x86_64 license = GPL3 -- cgit v1.2.3-70-g09d2 From 30ae4757c3ea48daba057c6a68900b0ef1e8dca8 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Mon, 24 Dec 2018 01:21:10 +0200 Subject: rename package --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 026660b..e9dc247 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ -pkgbase = popcorntime-stable-bin +pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 - pkgrel = 2 + pkgrel = 4 url = https://popcorntime.sh arch = x86_64 license = GPL3 @@ -13,7 +13,7 @@ pkgbase = popcorntime-stable-bin provides = popcorntime provides = popcorn-time-ce provides = popcorntime-ci-bin - provides = popcorntime-bin + provides = popcorntime-stable-bin conflicts = popcorntime options = !strip source = popcorntime.desktop @@ -21,5 +21,5 @@ pkgbase = popcorntime-stable-bin sha512sums = 7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb sha512sums = 0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516 -pkgname = popcorntime-stable-bin +pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index d812b55..87bd753 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,16 +12,16 @@ # Contributor: xantares # Contributor: petterk -pkgname=popcorntime-stable-bin +pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=2 +pkgrel=4 pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') depends=('nss' 'ttf-font' 'libxss' 'gtk3' 'nodejs') -provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-bin') +provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') source=("${_pkgname}.desktop" "https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") -- cgit v1.2.3-70-g09d2 From 35aed1c17c320bb5bcb20bc0128d66b2eb4583a8 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Mon, 24 Dec 2018 01:25:14 +0200 Subject: add missing dependencies --- .SRCINFO | 2 ++ PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index e9dc247..a518328 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -8,6 +8,8 @@ pkgbase = popcorntime-bin depends = nss depends = ttf-font depends = libxss + depends = gconf + depends = gtk2 depends = gtk3 depends = nodejs provides = popcorntime diff --git a/PKGBUILD b/PKGBUILD index 87bd753..6d9d5f2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -20,7 +20,7 @@ pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gtk3' 'nodejs') +depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3' 'nodejs') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From 8146af71b6ab2c7d1870b5049790d4e16abd01c6 Mon Sep 17 00:00:00 2001 From: Kostis Karantias Date: Tue, 29 Jan 2019 19:14:24 +0200 Subject: remove nodejs dependency --- .SRCINFO | 3 +-- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a518328..11be7cc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 - pkgrel = 4 + pkgrel = 5 url = https://popcorntime.sh arch = x86_64 license = GPL3 @@ -11,7 +11,6 @@ pkgbase = popcorntime-bin depends = gconf depends = gtk2 depends = gtk3 - depends = nodejs provides = popcorntime provides = popcorn-time-ce provides = popcorntime-ci-bin diff --git a/PKGBUILD b/PKGBUILD index 6d9d5f2..4d7bc29 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,12 +15,12 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=4 +pkgrel=5 pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3' 'nodejs') +depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From e5c729deb4f607dd3e307ccae6950ccc309db947 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Sun, 5 Jan 2020 13:54:38 +0100 Subject: remove dependencies to gconf and gtk2 --- .SRCINFO | 4 +--- PKGBUILD | 7 ++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 11be7cc..7e38b30 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,13 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 - pkgrel = 5 + pkgrel = 6 url = https://popcorntime.sh arch = x86_64 license = GPL3 depends = nss depends = ttf-font depends = libxss - depends = gconf - depends = gtk2 depends = gtk3 provides = popcorntime provides = popcorn-time-ce diff --git a/PKGBUILD b/PKGBUILD index 4d7bc29..7fcd79f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer: Kostis Karantias +# Maintainer: Stephan Springer +# Contributor: Kostis Karantias # Contributor: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> # Contributor: Bastien Traverse # Contributor: Ricardo Funke @@ -15,12 +16,12 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=5 +pkgrel=6 pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') +depends=('nss' 'ttf-font' 'libxss' 'gtk3') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From 1ade1eb97704512ee9ca15fc246495fb4d473b0a Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Mon, 6 Jan 2020 21:29:02 +0100 Subject: add gconf and gtk2 to dependencies again --- .SRCINFO | 4 +++- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7e38b30..0600507 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,15 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 - pkgrel = 6 + pkgrel = 7 url = https://popcorntime.sh arch = x86_64 license = GPL3 depends = nss depends = ttf-font depends = libxss + depends = gconf + depends = gtk2 depends = gtk3 provides = popcorntime provides = popcorn-time-ce diff --git a/PKGBUILD b/PKGBUILD index 7fcd79f..35c6fe7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,12 +16,12 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.3.10 -pkgrel=6 +pkgrel=7 pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') url="https://popcorntime.sh" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gtk3') +depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -- cgit v1.2.3-70-g09d2 From 46632d1f603650ce34369686dd30d93a762786bf Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Tue, 10 Mar 2020 09:35:32 +0100 Subject: add .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ed1761 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.log +Popcorn-Time-*-Linux-64.tar.xz +popcorntime-bin-*.pkg.tar.xz -- cgit v1.2.3-70-g09d2 From 2f837c066e65f94b310694e2e7fd514a01991167 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Tue, 10 Mar 2020 10:09:42 +0100 Subject: update URL --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0600507..fb33128 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -2,7 +2,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream movies and TV shows from torrents (stable builds) pkgver = 0.3.10 pkgrel = 7 - url = https://popcorntime.sh + url = https://popcorntime.app arch = x86_64 license = GPL3 depends = nss @@ -18,7 +18,7 @@ pkgbase = popcorntime-bin conflicts = popcorntime options = !strip source = popcorntime.desktop - source = https://get.popcorntime.sh/build/Popcorn-Time-0.3.10-Linux-64.tar.xz + source = https://get.popcorntime.app/build/Popcorn-Time-0.3.10-Linux-64.tar.xz sha512sums = 7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb sha512sums = 0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516 diff --git a/PKGBUILD b/PKGBUILD index 35c6fe7..5d9171c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -19,13 +19,13 @@ pkgver=0.3.10 pkgrel=7 pkgdesc="Stream movies and TV shows from torrents (stable builds)" arch=('x86_64') -url="https://popcorntime.sh" +url="https://popcorntime.app" license=('GPL3') depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -source=("${_pkgname}.desktop" "https://get.popcorntime.sh/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") +source=("${_pkgname}.desktop" "https://get.popcorntime.app/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb' '0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516') -- cgit v1.2.3-70-g09d2 From 5ab03b973ddbb0c2ef008c06d02f73c460e2feb5 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Thu, 26 Mar 2020 19:15:46 +0100 Subject: update to version 0.4.1 --- .SRCINFO | 15 ++++++++------- PKGBUILD | 24 ++++++++++++++---------- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fb33128..6902fe4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,10 +1,11 @@ pkgbase = popcorntime-bin - pkgdesc = Stream movies and TV shows from torrents (stable builds) - pkgver = 0.3.10 - pkgrel = 7 - url = https://popcorntime.app + pkgdesc = Stream free movies and TV shows from torrents + pkgver = 0.4.1 + pkgrel = 1 + url = https://popcorntime.app/ arch = x86_64 license = GPL3 + makedepends = unzip depends = nss depends = ttf-font depends = libxss @@ -17,10 +18,10 @@ pkgbase = popcorntime-bin provides = popcorntime-stable-bin conflicts = popcorntime options = !strip + source = https://get.popcorntime.app/build/Popcorn-Time-0.4.1-linux64.zip source = popcorntime.desktop - source = https://get.popcorntime.app/build/Popcorn-Time-0.3.10-Linux-64.tar.xz - sha512sums = 7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb - sha512sums = 0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516 + sha256sums = e167c42ffa49d5bf9f530ad998275dbcf38195bd0b10a121922d91dd528d546c + sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 5d9171c..21398be 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,26 +15,29 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.3.10 -pkgrel=7 -pkgdesc="Stream movies and TV shows from torrents (stable builds)" +pkgver=0.4.1 +pkgrel=1 +pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') -url="https://popcorntime.app" +url="https://popcorntime.app/" license=('GPL3') depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') +makedepends=('unzip') provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') conflicts=('popcorntime') options=('!strip') -source=("${_pkgname}.desktop" "https://get.popcorntime.app/build/Popcorn-Time-${pkgver}-Linux-64.tar.xz") -sha512sums=('7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb' - '0fe3c1be064231134eacfb0be74266361ba5d521f0cda2848cad5357fe03d6603284e80ed3bdacdf0a012b415949b9603ff3dcf95b03693e2f7704d500ee9516') +_zipfile="Popcorn-Time-${pkgver}-linux64.zip" +source=("https://get.popcorntime.app/build/$_zipfile" + "${_pkgname}.desktop" ) +sha256sums=('e167c42ffa49d5bf9f530ad998275dbcf38195bd0b10a121922d91dd528d546c' + '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { install -dm755 "${pkgdir}/usr/share/${_pkgname}" install -dm755 "${pkgdir}/usr/bin" # Link to program - ln -s "/usr/share/${_pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/${_pkgname}" + ln -s "../share/${_pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/${_pkgname}" # Desktop file install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" @@ -43,12 +46,13 @@ package() { install -Dm644 "${srcdir}/src/app/images/icon.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png" # Remove makepkg-created symlinks before copying content - rm *.tar.xz *.desktop + rm "$_zipfile" "${_pkgname}.desktop" # Move library files to /usr/lib/popcorntime install -d "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" mv "${srcdir}"/lib/* "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" - rmdir "${srcdir}"/lib/ + rmdir "${srcdir}"/lib + install -d "${pkgdir}/etc/ld.so.conf.d" echo "/usr/lib/${_pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${_pkgname}.conf" -- cgit v1.2.3-70-g09d2 From 2356a5e3d449b55358b11543df69098cce84c8e9 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Mon, 30 Mar 2020 19:55:04 +0200 Subject: clean up dependencies --- .SRCINFO | 8 +++----- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6902fe4..d5b446c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.1 - pkgrel = 1 + pkgrel = 2 url = https://popcorntime.app/ arch = x86_64 license = GPL3 @@ -9,14 +9,12 @@ pkgbase = popcorntime-bin depends = nss depends = ttf-font depends = libxss - depends = gconf depends = gtk2 depends = gtk3 provides = popcorntime - provides = popcorn-time-ce - provides = popcorntime-ci-bin - provides = popcorntime-stable-bin + provides = popcorntime-ce conflicts = popcorntime + conflicts = popcorntime-ce options = !strip source = https://get.popcorntime.app/build/Popcorn-Time-0.4.1-linux64.zip source = popcorntime.desktop diff --git a/PKGBUILD b/PKGBUILD index 21398be..0b9bff0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,15 +16,15 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://popcorntime.app/" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gconf' 'gtk2' 'gtk3') +depends=('nss' 'ttf-font' 'libxss' 'gtk2' 'gtk3') makedepends=('unzip') -provides=('popcorntime' 'popcorn-time-ce' 'popcorntime-ci-bin' 'popcorntime-stable-bin') -conflicts=('popcorntime') +provides=('popcorntime' 'popcorntime-ce') +conflicts=('popcorntime' 'popcorntime-ce') options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://get.popcorntime.app/build/$_zipfile" -- cgit v1.2.3-70-g09d2 From 54d7c4f57534019bd3d9475090b78b0271d9b010 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Fri, 3 Apr 2020 21:04:59 +0200 Subject: update to version 0.4.3 and download from Github --- .SRCINFO | 8 ++++---- PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d5b446c..ebf0d40 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.1 - pkgrel = 2 + pkgver = 0.4.3 + pkgrel = 1 url = https://popcorntime.app/ arch = x86_64 license = GPL3 @@ -16,9 +16,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://get.popcorntime.app/build/Popcorn-Time-0.4.1-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.3/Popcorn-Time-0.4.3-linux64.zip source = popcorntime.desktop - sha256sums = e167c42ffa49d5bf9f530ad998275dbcf38195bd0b10a121922d91dd528d546c + sha256sums = c05f78039b18ae28265e720cc9f04f313ed9626eff1ab894a4cf8c5832b5ad9e sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 0b9bff0..2fd44ff 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,8 +15,8 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.1 -pkgrel=2 +pkgver=0.4.3 +pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://popcorntime.app/" @@ -27,9 +27,9 @@ provides=('popcorntime' 'popcorntime-ce') conflicts=('popcorntime' 'popcorntime-ce') options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" -source=("https://get.popcorntime.app/build/$_zipfile" +source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v$pkgver/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('e167c42ffa49d5bf9f530ad998275dbcf38195bd0b10a121922d91dd528d546c' +sha256sums=('c05f78039b18ae28265e720cc9f04f313ed9626eff1ab894a4cf8c5832b5ad9e' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 833e53bdce674116dd8ba8c41bf86904748eeb82 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Tue, 14 Apr 2020 17:29:09 +0200 Subject: update to version 0.4.4 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ebf0d40..47496e2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.3 + pkgver = 0.4.4 pkgrel = 1 url = https://popcorntime.app/ arch = x86_64 @@ -16,9 +16,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.3/Popcorn-Time-0.4.3-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.4/Popcorn-Time-0.4.4-linux64.zip source = popcorntime.desktop - sha256sums = c05f78039b18ae28265e720cc9f04f313ed9626eff1ab894a4cf8c5832b5ad9e + sha256sums = fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 2fd44ff..86552de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,7 +15,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.3 +pkgver=0.4.4 pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') @@ -29,7 +29,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v$pkgver/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('c05f78039b18ae28265e720cc9f04f313ed9626eff1ab894a4cf8c5832b5ad9e' +sha256sums=('fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 8044eaf235e509dc0da26af2c5223f13700e8fd8 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Sun, 10 May 2020 22:05:45 +0200 Subject: switch source URL back to get.popcorntime.app --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 47496e2..82b056c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -16,7 +16,7 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.4/Popcorn-Time-0.4.4-linux64.zip + source = https://get.popcorntime.app/build/Popcorn-Time-0.4.4-linux64.zip source = popcorntime.desktop sha256sums = fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 diff --git a/PKGBUILD b/PKGBUILD index 86552de..79b10b8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -27,7 +27,7 @@ provides=('popcorntime' 'popcorntime-ce') conflicts=('popcorntime' 'popcorntime-ce') options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" -source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v$pkgver/$_zipfile" +source=("https://get.popcorntime.app/build/$_zipfile" "${_pkgname}.desktop" ) sha256sums=('fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -- cgit v1.2.3-70-g09d2 From 3900361c6d7f4642b2f3bd375d9990d822107478 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Fri, 22 May 2020 16:10:34 +0200 Subject: amend .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1ed1761..a954168 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.log -Popcorn-Time-*-Linux-64.tar.xz +Popcorn-Time-*-linux64.zip popcorntime-bin-*.pkg.tar.xz +popcorntime-bin-*.pkg.tar.zst -- cgit v1.2.3-70-g09d2 From f2745e4b2d87aee516231ff6529431429ae33078 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Fri, 22 May 2020 16:08:18 +0200 Subject: install libs in /usr/share/popcorntime/lib instead of /usr/lib/popcorntime --- .SRCINFO | 2 +- PKGBUILD | 14 +++----------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 82b056c..b5bbd93 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.4 - pkgrel = 1 + pkgrel = 2 url = https://popcorntime.app/ arch = x86_64 license = GPL3 diff --git a/PKGBUILD b/PKGBUILD index 79b10b8..ff878e4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,7 +16,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.4.4 -pkgrel=1 +pkgrel=2 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://popcorntime.app/" @@ -48,16 +48,8 @@ package() { # Remove makepkg-created symlinks before copying content rm "$_zipfile" "${_pkgname}.desktop" - # Move library files to /usr/lib/popcorntime - install -d "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" - mv "${srcdir}"/lib/* "${pkgdir}/usr/lib/${_pkgname}/${pkgver}" - rmdir "${srcdir}"/lib - - install -d "${pkgdir}/etc/ld.so.conf.d" - echo "/usr/lib/${_pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${_pkgname}.conf" - - # Copy complete content of source archive to /usr/share/${_pkgname}/ - cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}/" + # Copy complete content of source archive to /usr/share/${_pkgname} + cp -a "${srcdir}"/* "${pkgdir}/usr/share/${_pkgname}" # Fix permissions find "${pkgdir}/usr/share/${_pkgname}/" -perm 600 -exec chmod 644 '{}' \; -- cgit v1.2.3-70-g09d2 From 306b95f427efdf3f7802bd567cfeee91608ea07a Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Sun, 28 Feb 2021 20:55:04 +0100 Subject: remove dependency gtk2 --- .SRCINFO | 3 +-- PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b5bbd93..a2fd998 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.4 - pkgrel = 2 + pkgrel = 3 url = https://popcorntime.app/ arch = x86_64 license = GPL3 @@ -9,7 +9,6 @@ pkgbase = popcorntime-bin depends = nss depends = ttf-font depends = libxss - depends = gtk2 depends = gtk3 provides = popcorntime provides = popcorntime-ce diff --git a/PKGBUILD b/PKGBUILD index ff878e4..61ac03b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Stephan Springer +# Maintainer: Stephan Springer # Contributor: Kostis Karantias # Contributor: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> # Contributor: Bastien Traverse @@ -16,12 +16,12 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.4.4 -pkgrel=2 +pkgrel=3 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://popcorntime.app/" license=('GPL3') -depends=('nss' 'ttf-font' 'libxss' 'gtk2' 'gtk3') +depends=('nss' 'ttf-font' 'libxss' 'gtk3') makedepends=('unzip') provides=('popcorntime' 'popcorntime-ce') conflicts=('popcorntime' 'popcorntime-ce') -- cgit v1.2.3-70-g09d2 From 198b96ad734040881017b8c464db05bf5dc65329 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Fri, 9 Apr 2021 21:43:51 +0200 Subject: Download from web.archive.org since upstream has abandoned. --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a2fd998..6955fa9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -15,7 +15,7 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://get.popcorntime.app/build/Popcorn-Time-0.4.4-linux64.zip + source = https://web.archive.org/web/20200515084526if_/https://mirror02.popcorntime.app/build/Popcorn-Time-0.4.4-linux64.zip source = popcorntime.desktop sha256sums = fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 diff --git a/PKGBUILD b/PKGBUILD index 61ac03b..937f00e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -27,7 +27,7 @@ provides=('popcorntime' 'popcorntime-ce') conflicts=('popcorntime' 'popcorntime-ce') options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" -source=("https://get.popcorntime.app/build/$_zipfile" +source=("https://web.archive.org/web/20200515084526if_/https://mirror02.popcorntime.app/build/$_zipfile" "${_pkgname}.desktop" ) sha256sums=('fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -- cgit v1.2.3-70-g09d2 From 5a22d3011595b7bebc5cc2726c7f774fe8c4b264 Mon Sep 17 00:00:00 2001 From: Stephan Springer Date: Tue, 27 Apr 2021 19:05:27 +0200 Subject: update upstream URL and source location again --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6955fa9..693d36a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -2,7 +2,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.4 pkgrel = 3 - url = https://popcorntime.app/ + url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 license = GPL3 makedepends = unzip @@ -15,7 +15,7 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://web.archive.org/web/20200515084526if_/https://mirror02.popcorntime.app/build/Popcorn-Time-0.4.4-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.4/Popcorn-Time-0.4.4-linux64.zip source = popcorntime.desktop sha256sums = fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 diff --git a/PKGBUILD b/PKGBUILD index 937f00e..f2b1db2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -19,7 +19,7 @@ pkgver=0.4.4 pkgrel=3 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') -url="https://popcorntime.app/" +url="https://github.com/popcorn-official/popcorn-desktop" license=('GPL3') depends=('nss' 'ttf-font' 'libxss' 'gtk3') makedepends=('unzip') @@ -27,7 +27,7 @@ provides=('popcorntime' 'popcorntime-ce') conflicts=('popcorntime' 'popcorntime-ce') options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" -source=("https://web.archive.org/web/20200515084526if_/https://mirror02.popcorntime.app/build/$_zipfile" +source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) sha256sums=('fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -- cgit v1.2.3-70-g09d2 From a89077976937034af38041ac790b4ae2b1c322ff Mon Sep 17 00:00:00 2001 From: barfin Date: Tue, 18 May 2021 15:12:46 +0430 Subject: 0.4.5 update --- .SRCINFO | 9 ++++----- PKGBUILD | 9 +++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 693d36a..dd6b0b4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.4 - pkgrel = 3 + pkgver = 0.4.5 + pkgrel = 1 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 license = GPL3 @@ -15,10 +15,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.4/Popcorn-Time-0.4.4-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.5/Popcorn-Time-0.4.5-linux64.zip source = popcorntime.desktop - sha256sums = fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314 + sha256sums = 2c88cd9b9455f52d90bb4f1d868a7c9cfb8093ea0d3cd7b338f8ce5a8ede01fa sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin - diff --git a/PKGBUILD b/PKGBUILD index f2b1db2..3dca9bb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Stephan Springer +# Maintainer : Barfin # Contributor: Kostis Karantias # Contributor: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> # Contributor: Bastien Traverse @@ -12,11 +12,12 @@ # Contributor: Giulio Fidente # Contributor: xantares # Contributor: petterk +# Contributor: Stephan Springer pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.4 -pkgrel=3 +pkgver=0.4.5 +pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://github.com/popcorn-official/popcorn-desktop" @@ -29,7 +30,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('fdfabf8800c385bafec4bf162dd26f7df6d8c4c24671dce0aa23997716c5a314' +sha256sums=('2c88cd9b9455f52d90bb4f1d868a7c9cfb8093ea0d3cd7b338f8ce5a8ede01fa' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 9bc617fb6378bad53e07159c58b2d759d485e025 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Mon, 11 Oct 2021 20:54:29 +0300 Subject: Update to v0.4.6 --- .SRCINFO | 6 +++--- PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dd6b0b4..8fd733f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.5 + pkgver = 0.4.6 pkgrel = 1 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 @@ -15,9 +15,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.5/Popcorn-Time-0.4.5-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.6/Popcorn-Time-0.4.6-linux64.zip source = popcorntime.desktop - sha256sums = 2c88cd9b9455f52d90bb4f1d868a7c9cfb8093ea0d3cd7b338f8ce5a8ede01fa + sha256sums = 0fe15d2933b331a49b2da9a820e45a722b7d2d3224f92da0a31ce4a1296adad3 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 3dca9bb..2d4cb7e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer : Barfin +# Maintainer: Yigit Sever +# Contributor : Barfin # Contributor: Kostis Karantias # Contributor: Pieter Goetschalckx <3.14.e.ter [at] gmail [dot] com> # Contributor: Bastien Traverse @@ -16,7 +17,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.5 +pkgver=0.4.6 pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') @@ -30,7 +31,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('2c88cd9b9455f52d90bb4f1d868a7c9cfb8093ea0d3cd7b338f8ce5a8ede01fa' +sha256sums=('0fe15d2933b331a49b2da9a820e45a722b7d2d3224f92da0a31ce4a1296adad3' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From e39373322bfcb00cd701d0fb58f6d9a3d1c127b2 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Wed, 2 Mar 2022 22:29:36 +0300 Subject: Update to v0.4.7 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8fd733f..f7e71d1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.6 + pkgver = 0.4.7 pkgrel = 1 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 @@ -15,9 +15,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.6/Popcorn-Time-0.4.6-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.7/Popcorn-Time-0.4.7-linux64.zip source = popcorntime.desktop - sha256sums = 0fe15d2933b331a49b2da9a820e45a722b7d2d3224f92da0a31ce4a1296adad3 + sha256sums = b0a6398ac6e0d5c52ca4a2e0dae77b6588649867d7207bdeb7ca496e2c584b8a sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 2d4cb7e..83c110f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,7 +17,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.6 +pkgver=0.4.7 pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') @@ -31,7 +31,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('0fe15d2933b331a49b2da9a820e45a722b7d2d3224f92da0a31ce4a1296adad3' +sha256sums=('b0a6398ac6e0d5c52ca4a2e0dae77b6588649867d7207bdeb7ca496e2c584b8a' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 9039b908d4508e71bf6205d0f82e5f7de907201d Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Fri, 15 Jul 2022 15:50:16 +0300 Subject: Update to v0.4.8 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f7e71d1..b31e7e9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.7 + pkgver = 0.4.8 pkgrel = 1 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 @@ -15,9 +15,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.7/Popcorn-Time-0.4.7-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.8/Popcorn-Time-0.4.8-linux64.zip source = popcorntime.desktop - sha256sums = b0a6398ac6e0d5c52ca4a2e0dae77b6588649867d7207bdeb7ca496e2c584b8a + sha256sums = 252f337747f9b1e7195786112a5a6ab3713ce7fa7abd297ba76d393d1f4f225f sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 83c110f..2e7aa12 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,7 +17,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.7 +pkgver=0.4.8 pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') @@ -31,7 +31,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('b0a6398ac6e0d5c52ca4a2e0dae77b6588649867d7207bdeb7ca496e2c584b8a' +sha256sums=('252f337747f9b1e7195786112a5a6ab3713ce7fa7abd297ba76d393d1f4f225f' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 908cfab707032e21f666e7cf8e84203abd9ee555 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sat, 16 Jul 2022 16:39:48 +0300 Subject: Upstream released 0.4.8 again --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b31e7e9..d69848e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.8 - pkgrel = 1 + pkgrel = 2 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 license = GPL3 @@ -17,7 +17,7 @@ pkgbase = popcorntime-bin options = !strip source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.8/Popcorn-Time-0.4.8-linux64.zip source = popcorntime.desktop - sha256sums = 252f337747f9b1e7195786112a5a6ab3713ce7fa7abd297ba76d393d1f4f225f + sha256sums = a2f6cfa554b26a04b6db29d2b41f074c7c90d11a7d99a76211beac50bf540f78 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 2e7aa12..9fd95c1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -18,7 +18,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.4.8 -pkgrel=1 +pkgrel=2 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://github.com/popcorn-official/popcorn-desktop" @@ -31,7 +31,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('252f337747f9b1e7195786112a5a6ab3713ce7fa7abd297ba76d393d1f4f225f' +sha256sums=('a2f6cfa554b26a04b6db29d2b41f074c7c90d11a7d99a76211beac50bf540f78' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From bd8e8ffb6ea8bdedd7617c85d8ed500e07fbd410 Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sat, 16 Jul 2022 20:11:37 +0300 Subject: Upstream released 0.4.8 again --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d69848e..e55ac8a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents pkgver = 0.4.8 - pkgrel = 2 + pkgrel = 3 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 license = GPL3 @@ -17,7 +17,7 @@ pkgbase = popcorntime-bin options = !strip source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.8/Popcorn-Time-0.4.8-linux64.zip source = popcorntime.desktop - sha256sums = a2f6cfa554b26a04b6db29d2b41f074c7c90d11a7d99a76211beac50bf540f78 + sha256sums = fcf9c4d6ccd4fccaf7668707b16dcdd78d043b2d4f2a049f0edaf7afd8bb34f1 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 9fd95c1..345689d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -18,7 +18,7 @@ pkgname=popcorntime-bin _pkgname=popcorntime pkgver=0.4.8 -pkgrel=2 +pkgrel=3 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://github.com/popcorn-official/popcorn-desktop" @@ -31,7 +31,7 @@ options=('!strip') _zipfile="Popcorn-Time-${pkgver}-linux64.zip" source=("https://github.com/popcorn-official/popcorn-desktop/releases/download/v${pkgver}/$_zipfile" "${_pkgname}.desktop" ) -sha256sums=('a2f6cfa554b26a04b6db29d2b41f074c7c90d11a7d99a76211beac50bf540f78' +sha256sums=('fcf9c4d6ccd4fccaf7668707b16dcdd78d043b2d4f2a049f0edaf7afd8bb34f1' '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') package() { -- cgit v1.2.3-70-g09d2 From 91fbf00d9b09ca4857ac1d4b258b0aaec419a27e Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Sun, 4 Sep 2022 22:10:46 +0300 Subject: Update to v0.4.9 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e55ac8a..37710d8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = popcorntime-bin pkgdesc = Stream free movies and TV shows from torrents - pkgver = 0.4.8 - pkgrel = 3 + pkgver = 0.4.9 + pkgrel = 1 url = https://github.com/popcorn-official/popcorn-desktop arch = x86_64 license = GPL3 @@ -15,9 +15,9 @@ pkgbase = popcorntime-bin conflicts = popcorntime conflicts = popcorntime-ce options = !strip - source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.8/Popcorn-Time-0.4.8-linux64.zip + source = https://github.com/popcorn-official/popcorn-desktop/releases/download/v0.4.9/Popcorn-Time-0.4.9-linux64.zip source = popcorntime.desktop - sha256sums = fcf9c4d6ccd4fccaf7668707b16dcdd78d043b2d4f2a049f0edaf7afd8bb34f1 + sha256sums = 71b28be5b8307990ffc9f8bff0a4b42fb45a85af0f4c7a889b8a923c589d8d47 sha256sums = 4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334 pkgname = popcorntime-bin diff --git a/PKGBUILD b/PKGBUILD index 345689d..c59e8cc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -17,8 +17,8 @@ pkgname=popcorntime-bin _pkgname=popcorntime -pkgver=0.4.8 -pkgrel=3 +pkgver=0.4.9 +pkgrel=1 pkgdesc="Stream free movies and TV shows from torrents" arch=('x86_64') url="https://github.com/popcorn-official/popcorn-desktop" @@ -57,3 +57,5 @@ package() { find "${pkgdir}/usr/share/${_pkgname}/" -perm 600 -exec chmod 644 '{}' \; find "${pkgdir}/usr/share/${_pkgname}/" -perm 700 -exec chmod 755 '{}' \; } +sha256sums=('71b28be5b8307990ffc9f8bff0a4b42fb45a85af0f4c7a889b8a923c589d8d47' + '4422f21e16176fda697ed0c8a6d1fb6f9dd7c4bc3f3694f9bcc19cbe66630334') -- cgit v1.2.3-70-g09d2