[arch-commits] Commit in (4 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Sunday, December 8, 2019 @ 22:18:21
  Author: kpcyrd
Revision: 536355

addpkg: cargo-audit 0.10.0-2

Added:
  cargo-audit/
  cargo-audit/repos/
  cargo-audit/trunk/
  cargo-audit/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Added: cargo-audit/trunk/PKGBUILD
===
--- cargo-audit/trunk/PKGBUILD  (rev 0)
+++ cargo-audit/trunk/PKGBUILD  2019-12-08 22:18:21 UTC (rev 536355)
@@ -0,0 +1,30 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-audit
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
+url="https://github.com/RustSec/cargo-audit;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('1f7b80d4748e71a8952fa8209c6384586a2e3b1a1065a3853da560a27a3f7991')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-audit/repos (2 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Sunday, December 8, 2019 @ 22:18:38
  Author: kpcyrd
Revision: 536356

archrelease: copy trunk to community-x86_64

Added:
  cargo-audit/repos/community-x86_64/
  cargo-audit/repos/community-x86_64/PKGBUILD
(from rev 536355, cargo-audit/trunk/PKGBUILD)

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Copied: cargo-audit/repos/community-x86_64/PKGBUILD (from rev 536355, 
cargo-audit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-08 22:18:38 UTC (rev 536356)
@@ -0,0 +1,30 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-audit
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
+url="https://github.com/RustSec/cargo-audit;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('1f7b80d4748e71a8952fa8209c6384586a2e3b1a1065a3853da560a27a3f7991')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-fuzz/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 02:46:10
  Author: kpcyrd
Revision: 536379

archrelease: copy trunk to community-x86_64

Added:
  cargo-fuzz/repos/community-x86_64/
  cargo-fuzz/repos/community-x86_64/PKGBUILD
(from rev 536378, cargo-fuzz/trunk/PKGBUILD)

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Copied: cargo-fuzz/repos/community-x86_64/PKGBUILD (from rev 536378, 
cargo-fuzz/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-09 02:46:10 UTC (rev 536379)
@@ -0,0 +1,32 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-fuzz
+pkgver=0.5.5
+pkgrel=1
+pkgdesc="Command line helpers for fuzzing rust"
+url="https://github.com/rust-fuzz/cargo-fuzz;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-fuzz/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('2b006306bc62524b892f64f9ac4da1b565655597aa46fea9c6247e996542243bebad0f9d797c6460202fecdc09ddbf5175ec20f0a9925f5411e107fe619c3c9b')
+b2sums=('327196d0017f6a85cc71adf58164973c82fba9b31423720eac753933c3f1ab3fa4c21f97c0f7819d95064dd889d6e4932294f5bf4766cc579888997efd6b4733')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 02:45:55
  Author: kpcyrd
Revision: 536378

addpkg: cargo-fuzz 0.5.5-1

Added:
  cargo-fuzz/
  cargo-fuzz/repos/
  cargo-fuzz/trunk/
  cargo-fuzz/trunk/PKGBUILD

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Added: cargo-fuzz/trunk/PKGBUILD
===
--- cargo-fuzz/trunk/PKGBUILD   (rev 0)
+++ cargo-fuzz/trunk/PKGBUILD   2019-12-09 02:45:55 UTC (rev 536378)
@@ -0,0 +1,32 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-fuzz
+pkgver=0.5.5
+pkgrel=1
+pkgdesc="Command line helpers for fuzzing rust"
+url="https://github.com/rust-fuzz/cargo-fuzz;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-fuzz/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('2b006306bc62524b892f64f9ac4da1b565655597aa46fea9c6247e996542243bebad0f9d797c6460202fecdc09ddbf5175ec20f0a9925f5411e107fe619c3c9b')
+b2sums=('327196d0017f6a85cc71adf58164973c82fba9b31423720eac753933c3f1ab3fa4c21f97c0f7819d95064dd889d6e4932294f5bf4766cc579888997efd6b4733')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-mt-940/repos (community-any community-any/PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 03:03:54
  Author: kpcyrd
Revision: 536383

archrelease: copy trunk to community-any

Added:
  python-mt-940/repos/community-any/
  python-mt-940/repos/community-any/PKGBUILD
(from rev 536382, python-mt-940/trunk/PKGBUILD)

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Copied: python-mt-940/repos/community-any/PKGBUILD (from rev 536382, 
python-mt-940/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-12-09 03:03:54 UTC (rev 536383)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+
+_pyname="mt940"
+pkgname="python-mt-940"
+pkgver="4.19.0"
+pkgrel=2
+pkgdesc="A library to parse MT940 files and returns smart Python collections 
for statistics and manipulation"
+arch=(any)
+url="https://github.com/WoLpH/mt940;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/WoLpH/mt940/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('6632bdf89b8acd44dab8861b88ec7b1976ca6a718acec28946385b7cc99147e7937d09e099c35383d1741c2fb05e2796e573327dbf06bd4b266da35a0cc00298')
+b2sums=('647f6e9f4469da8a52bfea1ecb7491e4972ffb6c4612a9f259a2bb717707b04e66f4096fbebe7d165d2eb60279ee3493078bd6499a3d07dbd05c1ddb7e0a0d3f')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 03:03:45
  Author: kpcyrd
Revision: 536382

addpkg: python-mt-940 4.19.0-2

Added:
  python-mt-940/
  python-mt-940/repos/
  python-mt-940/trunk/
  python-mt-940/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Added: python-mt-940/trunk/PKGBUILD
===
--- python-mt-940/trunk/PKGBUILD(rev 0)
+++ python-mt-940/trunk/PKGBUILD2019-12-09 03:03:45 UTC (rev 536382)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+
+_pyname="mt940"
+pkgname="python-mt-940"
+pkgver="4.19.0"
+pkgrel=2
+pkgdesc="A library to parse MT940 files and returns smart Python collections 
for statistics and manipulation"
+arch=(any)
+url="https://github.com/WoLpH/mt940;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://github.com/WoLpH/mt940/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('6632bdf89b8acd44dab8861b88ec7b1976ca6a718acec28946385b7cc99147e7937d09e099c35383d1741c2fb05e2796e573327dbf06bd4b266da35a0cc00298')
+b2sums=('647f6e9f4469da8a52bfea1ecb7491e4972ffb6c4612a9f259a2bb717707b04e66f4096fbebe7d165d2eb60279ee3493078bd6499a3d07dbd05c1ddb7e0a0d3f')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-sepaxml/repos (community-any community-any/PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 03:00:59
  Author: kpcyrd
Revision: 536381

archrelease: copy trunk to community-any

Added:
  python-sepaxml/repos/community-any/
  python-sepaxml/repos/community-any/PKGBUILD
(from rev 536380, python-sepaxml/trunk/PKGBUILD)

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Copied: python-sepaxml/repos/community-any/PKGBUILD (from rev 536380, 
python-sepaxml/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-12-09 03:00:59 UTC (rev 536381)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+
+pkgname="python-sepaxml"
+pkgver="2.2.0"
+pkgrel=2
+pkgdesc="SEPA Direct Debit XML generation in python"
+arch=(any)
+url="https://github.com/raphaelm/python-sepaxml;
+license=('MIT')
+depends=('python' 'python-lxml' 'python-text-unidecode' 'python-xmlschema')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/raphaelm/python-sepaxml/archive/${pkgver}.tar.gz)
+sha512sums=('d65e7845ef150e5c164d26fffa35c050629cb6337c493c84341c3208de0487a379f294f7bb8578438c641b4a81108bd8584051d90ead51ba4c443148ec4dd8e7')
+b2sums=('1010531edadbba9b1e95266984dd3e64527a8164d3eda5232bfbf028d76030d231cf2c92245f04f3b0defa599890ab28f4386640932ef679099b173edc22e1dc')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  PYTHONPATH=. pytest
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cargo-outdated/trunk (PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 02:40:14
  Author: kpcyrd
Revision: 536376

upgpkg: cargo-outdated 0.9.1-1

Modified:
  cargo-outdated/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-09 02:23:22 UTC (rev 536375)
+++ PKGBUILD2019-12-09 02:40:14 UTC (rev 536376)
@@ -4,20 +4,20 @@
 # Contributor: Vlad M. 
 
 pkgname=cargo-outdated
-pkgver=0.8.0
-pkgrel=2
+pkgver=0.9.1
+pkgrel=1
 pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
 url="https://github.com/kbknapp/cargo-outdated;
 arch=('x86_64')
 license=('MIT')
 depends=('cargo')
-source=("https://github.com/kbknapp/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('6e07552706cdebceaf5b03bcd022082cdafca70e8e095a74ace95c767e39d509')
+source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
+sha256sums=('83bebbd0985ed1edfbb18a6bf161d1f4e73e6a3ed2a8ca92a83a1756650877bd')
+b2sums=('1204413e21746e8119da81522fbcb99cf1d49487359e645696787fc76f0436044c040569fbdc9d961496f0a1e46f6520fb024352f8acc74b6c74ed9a814fe22b')
 
 build() {
   cd "${pkgname}-${pkgver}"
-  # --locked is broken https://github.com/kbknapp/cargo-outdated/issues/177
-  cargo build --release
+  cargo build --release --locked
 }
 
 package() {


[arch-commits] Commit in cargo-outdated/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 02:40:34
  Author: kpcyrd
Revision: 536377

archrelease: copy trunk to community-x86_64

Added:
  cargo-outdated/repos/community-x86_64/PKGBUILD
(from rev 536376, cargo-outdated/trunk/PKGBUILD)
Deleted:
  cargo-outdated/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-09 02:40:14 UTC (rev 536376)
+++ PKGBUILD2019-12-09 02:40:34 UTC (rev 536377)
@@ -1,29 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jian Zeng 
-# Contributor: Alexandre Bury 
-# Contributor: Vlad M. 
-
-pkgname=cargo-outdated
-pkgver=0.8.0
-pkgrel=2
-pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
-url="https://github.com/kbknapp/cargo-outdated;
-arch=('x86_64')
-license=('MIT')
-depends=('cargo')
-source=("https://github.com/kbknapp/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('6e07552706cdebceaf5b03bcd022082cdafca70e8e095a74ace95c767e39d509')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # --locked is broken https://github.com/kbknapp/cargo-outdated/issues/177
-  cargo build --release
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-outdated/repos/community-x86_64/PKGBUILD (from rev 536376, 
cargo-outdated/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-09 02:40:34 UTC (rev 536377)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Jian Zeng 
+# Contributor: Alexandre Bury 
+# Contributor: Vlad M. 
+
+pkgname=cargo-outdated
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
+url="https://github.com/kbknapp/cargo-outdated;
+arch=('x86_64')
+license=('MIT')
+depends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
+sha256sums=('83bebbd0985ed1edfbb18a6bf161d1f4e73e6a3ed2a8ca92a83a1756650877bd')
+b2sums=('1204413e21746e8119da81522fbcb99cf1d49487359e645696787fc76f0436044c040569fbdc9d961496f0a1e46f6520fb024352f8acc74b6c74ed9a814fe22b')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 03:00:48
  Author: kpcyrd
Revision: 536380

addpkg: python-sepaxml 2.2.0-2

Added:
  python-sepaxml/
  python-sepaxml/repos/
  python-sepaxml/trunk/
  python-sepaxml/trunk/PKGBUILD

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: python-sepaxml/trunk/PKGBUILD
===
--- python-sepaxml/trunk/PKGBUILD   (rev 0)
+++ python-sepaxml/trunk/PKGBUILD   2019-12-09 03:00:48 UTC (rev 536380)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+
+pkgname="python-sepaxml"
+pkgver="2.2.0"
+pkgrel=2
+pkgdesc="SEPA Direct Debit XML generation in python"
+arch=(any)
+url="https://github.com/raphaelm/python-sepaxml;
+license=('MIT')
+depends=('python' 'python-lxml' 'python-text-unidecode' 'python-xmlschema')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/raphaelm/python-sepaxml/archive/${pkgver}.tar.gz)
+sha512sums=('d65e7845ef150e5c164d26fffa35c050629cb6337c493c84341c3208de0487a379f294f7bb8578438c641b4a81108bd8584051d90ead51ba4c443148ec4dd8e7')
+b2sums=('1010531edadbba9b1e95266984dd3e64527a8164d3eda5232bfbf028d76030d231cf2c92245f04f3b0defa599890ab28f4386640932ef679099b173edc22e1dc')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  PYTHONPATH=. pytest
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in bitcoin/repos/community-x86_64 (8 files)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 00:07:26
  Author: kpcyrd
Revision: 536360

archrelease: copy trunk to community-x86_64

Added:
  bitcoin/repos/community-x86_64/Changelog
(from rev 536359, bitcoin/trunk/Changelog)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 536359, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin.sysusers
(from rev 536359, bitcoin/trunk/bitcoin.sysusers)
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles
(from rev 536359, bitcoin/trunk/bitcoin.tmpfiles)
Deleted:
  bitcoin/repos/community-x86_64/Changelog
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin.sysusers
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles

--+
 Changelog|2 
 PKGBUILD |  204 +++--
 bitcoin.sysusers |2 
 bitcoin.tmpfiles |4 -
 4 files changed, 108 insertions(+), 104 deletions(-)

Deleted: Changelog
===
--- Changelog   2019-12-09 00:06:36 UTC (rev 536359)
+++ Changelog   2019-12-09 00:07:26 UTC (rev 536360)
@@ -1 +0,0 @@
-https://bitcoincore.org/en/releases/0.18.1/

Copied: bitcoin/repos/community-x86_64/Changelog (from rev 536359, 
bitcoin/trunk/Changelog)
===
--- Changelog   (rev 0)
+++ Changelog   2019-12-09 00:07:26 UTC (rev 536360)
@@ -0,0 +1 @@
+https://bitcoincore.org/en/releases/0.19.0.1/

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-09 00:06:36 UTC (rev 536359)
+++ PKGBUILD2019-12-09 00:07:26 UTC (rev 536360)
@@ -1,100 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Timothy Redaelli 
-# Contributor: shahid 
-# Contributor: James Harvey
-
-#_dbver=4.8.30
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.19.0
-pkgrel=1
-arch=('x86_64')
-url="https://www.bitcoin.org/;
-makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')
-license=('MIT')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz;
-"bitcoin.sysusers"
-"bitcoin.tmpfiles")
-sha256sums=('79566e8f94347815a9f14200386db68702dba30a9526f85c664aac345c605ae1'
-'7a77112fb094b9b2e6dd873e24c9a6bacb1f1c453d811a024f271f4b78f2a704'
-'ba83570b4671b18c230f23d8d93cd8faa73179a546655448c14d1644d9b49f35')
-validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
-changelog=Changelog
-backup=('etc/bitcoin/bitcoin.conf')
-
-prepare() {
-  cd "$pkgbase-$pkgver"
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr --with-gui=qt5 --with-incompatible-bdb 
#LDFLAGS="-L$srcdir/db4/lib/ $LDFLAGS" CPPFLAGS="-I$srcdir/db4/include/ 
$CPPFLAGS"
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - Qt"
-  depends=(boost-libs libevent qt5-base miniupnpc libminiupnpc.so qrencode 
protobuf zeromq)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/qt/bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt
-  install -Dm644 doc/man/bitcoin-qt.1 \
-"$pkgdir"/usr/share/man/man1/bitcoin-qt.1
-  install -Dm644 share/pixmaps/bitcoin128.png \
-"$pkgdir"/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-daemon() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon"
-  depends=(boost-libs libevent miniupnpc libminiupnpc.so zeromq)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind
-  install -Dm644 contrib/bitcoind.bash-completion \
-"$pkgdir"/usr/share/bash-completion/completions/bitcoind
-  install -Dm644 doc/man/bitcoind.1 \
-"$pkgdir"/usr/share/man/man1/bitcoind.1
-  install -Dm644 contrib/init/bitcoind.service \
-"$pkgdir/usr/lib/systemd/system/bitcoind.service"
-  install -Dm644 "$srcdir/bitcoin.sysusers" \
-"$pkgdir/usr/lib/sysusers.d/bitcoin.conf"
-  install -Dm644 "$srcdir/bitcoin.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/bitcoin.conf"
-  install -Dm644 share/examples/bitcoin.conf \
-"$pkgdir/etc/bitcoin/bitcoin.conf"
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-cli() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - RPC 
client"
-  depends=(boost-libs libevent)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/bitcoin-cli "$pkgdir"/usr/bin/bitcoin-cli
-  install -Dm644 contrib/bitcoin-cli.bash-completion \
-"$pkgdir"/usr/share/bash-completion/completions/bitcoin-cli
-  install -Dm644 doc/man/bitcoin-cli.1 \
-"$pkgdir"/usr/share/man/man1/bitcoin-cli.1
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-tx() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital 

[arch-commits] Commit in bitcoin/trunk (Changelog PKGBUILD)

2019-12-08 Thread Kpcyrd via arch-commits
Date: Monday, December 9, 2019 @ 00:06:36
  Author: kpcyrd
Revision: 536359

upgpkg: bitcoin 0.19.0.1-1

Modified:
  bitcoin/trunk/Changelog
  bitcoin/trunk/PKGBUILD

---+
 Changelog |2 +-
 PKGBUILD  |   12 
 2 files changed, 9 insertions(+), 5 deletions(-)

Modified: Changelog
===
--- Changelog   2019-12-08 22:27:54 UTC (rev 536358)
+++ Changelog   2019-12-09 00:06:36 UTC (rev 536359)
@@ -1 +1 @@
-https://bitcoincore.org/en/releases/0.18.1/
+https://bitcoincore.org/en/releases/0.19.0.1/

Modified: PKGBUILD
===
--- PKGBUILD2019-12-08 22:27:54 UTC (rev 536358)
+++ PKGBUILD2019-12-09 00:06:36 UTC (rev 536359)
@@ -1,4 +1,5 @@
-# Maintainer : Christian Rebischke 
+# Maintainer: Christian Rebischke 
+# Maintainer: kpcyrd 
 # Contributor: Timothy Redaelli 
 # Contributor: shahid 
 # Contributor: James Harvey
@@ -6,7 +7,7 @@
 #_dbver=4.8.30
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.19.0
+pkgver=0.19.0.1
 pkgrel=1
 arch=('x86_64')
 url="https://www.bitcoin.org/;
@@ -15,12 +16,14 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz;
 "bitcoin.sysusers"
 "bitcoin.tmpfiles")
-sha256sums=('79566e8f94347815a9f14200386db68702dba30a9526f85c664aac345c605ae1'
+sha256sums=('1a72f583f7448b3808d84ed7f8d8eb224f44b51291fee774bb9cecbd4fcbaec7'
 '7a77112fb094b9b2e6dd873e24c9a6bacb1f1c453d811a024f271f4b78f2a704'
 'ba83570b4671b18c230f23d8d93cd8faa73179a546655448c14d1644d9b49f35')
+b2sums=('393b30ae9fe1acb62a0a45ad53cbd860b81972de21b85464e5651d828075e1bfeaafb96b190249124c9b73ab05ada318b4adf44db4a6701e2d3916676bc54e84'
+
'25166f5726b43c531b7ba5f58aaf1c0242d26b96d2057da156024a8f9fc53702ea9ef0c67290cf8d302b9fb473cb16435dc2fe4489ebc5d0eae516635fd81c0e'
+
'45d4703b78476cb1c5748f62863914e5397858c835e43cee2f4895608dbabf383993b840bb3ec2d4d2c64ca02152881ad4b495b28f94451f706687b83e99d2af')
 validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
 changelog=Changelog
-backup=('etc/bitcoin/bitcoin.conf')
 
 prepare() {
   cd "$pkgbase-$pkgver"
@@ -50,6 +53,7 @@
 package_bitcoin-daemon() {
   pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon"
   depends=(boost-libs libevent miniupnpc libminiupnpc.so zeromq)
+  backup=('etc/bitcoin/bitcoin.conf')
 
   cd $pkgbase-$pkgver
   install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind


[arch-commits] Commit in monero/trunk (PKGBUILD)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Saturday, December 14, 2019 @ 14:54:11
  Author: kpcyrd
Revision: 537656

Fix install directory typo

Modified:
  monero/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-14 13:45:28 UTC (rev 537655)
+++ PKGBUILD2019-12-14 14:54:11 UTC (rev 537656)
@@ -70,7 +70,7 @@
  "build/bin/monero-wallet-cli" \
  "build/bin/monero-wallet-rpc" \
  "build/bin/monerod" \
- -t "${pkgdir}/usrc/bin"
+ -t "${pkgdir}/usr/bin"
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in monero/repos/community-x86_64 (7 files)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Sunday, December 15, 2019 @ 05:27:38
  Author: kpcyrd
Revision: 537716

archrelease: copy trunk to community-x86_64

Added:
  monero/repos/community-x86_64/PKGBUILD
(from rev 537715, monero/trunk/PKGBUILD)
  monero/repos/community-x86_64/monero.sysusers
(from rev 537715, monero/trunk/monero.sysusers)
  monero/repos/community-x86_64/monero.tmpfiles
(from rev 537715, monero/trunk/monero.tmpfiles)
  monero/repos/community-x86_64/no-avx2.patch
(from rev 537715, monero/trunk/no-avx2.patch)
Deleted:
  monero/repos/community-x86_64/PKGBUILD
  monero/repos/community-x86_64/monero.sysusers
  monero/repos/community-x86_64/monero.tmpfiles

-+
 PKGBUILD|  155 +++---
 monero.sysusers |2 
 monero.tmpfiles |2 
 no-avx2.patch   |   25 
 4 files changed, 106 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-15 05:27:23 UTC (rev 537715)
+++ PKGBUILD2019-12-15 05:27:38 UTC (rev 537716)
@@ -1,76 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=monero
-pkgver=0.15.0.1
-pkgrel=2
-pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
-license=('custom:Cryptonote')
-arch=('x86_64')
-url="https://getmonero.org/;
-depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')
-makedepends=('git' 'cmake' 'boost')
-source=(
-"${pkgname}"::"git+https://github.com/monero-project/monero#tag=v${pkgver};
-"git+https://github.com/monero-project/unbound.git;
-"git+https://github.com/monero-project/miniupnp.git;
-"git+https://github.com/Tencent/rapidjson;
-"git+https://github.com/trezor/trezor-common.git;
-"git+https://github.com/tevador/randomx;
-"monero.sysusers"
-"monero.tmpfiles")
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
-
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
-
-prepare() {
-  cd "${pkgname}"
-  git submodule init
-  git config submodule.external/unbound.url "$srcdir/unbound"
-  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
-  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
-  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
-  git config submodule.external/randomx.url "$srcdir/randomx"
-  git submodule update
-}
-
-build() {
-  cd "${pkgname}"
-  mkdir -p build && cd build
-  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../
-  make
-}
-
-package() {
-  backup=('etc/monerod.conf')
-
-  cd "${pkgname}"
-  install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -Dm644 "utils/conf/monerod.conf" "${pkgdir}/etc/monerod.conf"
-  install -Dm644 "utils/systemd/monerod.service" 
"${pkgdir}/usr/lib/systemd/system/monerod.service"
-  install -Dm644 "../monero.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/monero.conf"
-  install -Dm644 "../monero.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/monero.conf"
-
-  install -Dm755 "build/bin/monero-blockchain-ancestry" \
- "build/bin/monero-blockchain-depth" \
- "build/bin/monero-blockchain-export" \
- "build/bin/monero-blockchain-import" \
- "build/bin/monero-blockchain-mark-spent-outputs" \
- "build/bin/monero-blockchain-prune" \
- "build/bin/monero-blockchain-prune-known-spent-data" \
- "build/bin/monero-blockchain-stats" \
- "build/bin/monero-blockchain-usage" \
- "build/bin/monero-gen-ssl-cert" \
- "build/bin/monero-gen-trusted-multisig" \
- "build/bin/monero-wallet-cli" \
- "build/bin/monero-wallet-rpc" \
- "build/bin/monerod" \
- -t "${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero/repos/community-x86_64/PKGBUILD (from rev 537715, 
monero/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-15 05:27:38 UTC (rev 537716)
@@ -0,0 +1,79 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero
+pkgver=0.15.0.1
+pkgrel=3
+pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')
+makedepends=('git' 'cmake' 'boost')
+source=(
+"${pkgname}"::"git+https://github.com/monero-project/monero#tag=v${pkgver};
+

[arch-commits] Commit in monero/trunk (PKGBUILD no-avx2.patch)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Sunday, December 15, 2019 @ 05:27:23
  Author: kpcyrd
Revision: 537715

Remove cpu detection from cmake file

Added:
  monero/trunk/no-avx2.patch
Modified:
  monero/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 no-avx2.patch |   25 +
 2 files changed, 31 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-15 05:19:14 UTC (rev 537714)
+++ PKGBUILD2019-12-15 05:27:23 UTC (rev 537715)
@@ -2,7 +2,7 @@
 
 pkgname=monero
 pkgver=0.15.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
 license=('custom:Cryptonote')
 arch=('x86_64')
@@ -17,7 +17,8 @@
 "git+https://github.com/trezor/trezor-common.git;
 "git+https://github.com/tevador/randomx;
 "monero.sysusers"
-"monero.tmpfiles")
+"monero.tmpfiles"
+"no-avx2.patch")
 sha512sums=('SKIP'
 'SKIP'
 'SKIP'
@@ -25,7 +26,8 @@
 'SKIP'
 'SKIP'
 
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
-
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
+
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357'
+
'a6ed21f23c8951e36200845421d395c1a56a064af64435ac3eef1e516678997fda4b452cd1da440e8fac7437971f81a901511dac27bbb1ff35ed631dcfe47c70')
 
 prepare() {
   cd "${pkgname}"
@@ -36,6 +38,7 @@
   git config submodule.external/trezor-common.url "$srcdir/trezor-common"
   git config submodule.external/randomx.url "$srcdir/randomx"
   git submodule update
+  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
 }
 
 build() {

Added: no-avx2.patch
===
--- no-avx2.patch   (rev 0)
+++ no-avx2.patch   2019-12-15 05:27:23 UTC (rev 537715)
@@ -0,0 +1,25 @@
+diff --git a/external/randomx/CMakeLists.txt b/external/randomx/CMakeLists.txt
+index 40f0354..3bacafa 100644
+--- a/external/randomx/CMakeLists.txt
 b/external/randomx/CMakeLists.txt
+@@ -102,20 +102,6 @@ if (ARCH_ID STREQUAL "x86_64" OR ARCH_ID STREQUAL 
"x86-64" OR ARCH_ID STREQUAL "
+   set_property(SOURCE src/jit_compiler_x86_static.S PROPERTY LANGUAGE C)
+   set_property(SOURCE src/jit_compiler_x86_static.S PROPERTY 
XCODE_EXPLICIT_FILE_TYPE sourcecode.asm)
+ 
+-  if(ARCH STREQUAL "native")
+-add_flag("-march=native")
+-  else()
+-# default build has hardware AES enabled (software AES can be selected at 
runtime)
+-add_flag("-maes")
+-check_c_compiler_flag(-mssse3 HAVE_SSSE3)
+-if(HAVE_SSSE3)
+-  set_source_files_properties(src/argon2_ssse3.c COMPILE_FLAGS -mssse3)
+-endif()
+-check_c_compiler_flag(-mavx2 HAVE_AVX2)
+-if(HAVE_AVX2)
+-  set_source_files_properties(src/argon2_avx2.c COMPILE_FLAGS -mavx2)
+-endif()
+-  endif()
+ endif()
+ 
+ # PowerPC


[arch-commits] Commit in monero/trunk (PKGBUILD no-avx2.patch)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Sunday, December 15, 2019 @ 07:15:14
  Author: kpcyrd
Revision: 537717

Correctly disable AVX2 instructions

Modified:
  monero/trunk/PKGBUILD
Deleted:
  monero/trunk/no-avx2.patch

---+
 PKGBUILD  |9 +++--
 no-avx2.patch |   25 -
 2 files changed, 3 insertions(+), 31 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-15 05:27:38 UTC (rev 537716)
+++ PKGBUILD2019-12-15 07:15:14 UTC (rev 537717)
@@ -17,8 +17,7 @@
 "git+https://github.com/trezor/trezor-common.git;
 "git+https://github.com/tevador/randomx;
 "monero.sysusers"
-"monero.tmpfiles"
-"no-avx2.patch")
+"monero.tmpfiles")
 sha512sums=('SKIP'
 'SKIP'
 'SKIP'
@@ -26,8 +25,7 @@
 'SKIP'
 'SKIP'
 
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
-
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357'
-
'a6ed21f23c8951e36200845421d395c1a56a064af64435ac3eef1e516678997fda4b452cd1da440e8fac7437971f81a901511dac27bbb1ff35ed631dcfe47c70')
+
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
 
 prepare() {
   cd "${pkgname}"
@@ -38,13 +36,12 @@
   git config submodule.external/trezor-common.url "$srcdir/trezor-common"
   git config submodule.external/randomx.url "$srcdir/randomx"
   git submodule update
-  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
 }
 
 build() {
   cd "${pkgname}"
   mkdir -p build && cd build
-  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../
+  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release -D ARCH=default ../
   make
 }
 

Deleted: no-avx2.patch
===
--- no-avx2.patch   2019-12-15 05:27:38 UTC (rev 537716)
+++ no-avx2.patch   2019-12-15 07:15:14 UTC (rev 537717)
@@ -1,25 +0,0 @@
-diff --git a/external/randomx/CMakeLists.txt b/external/randomx/CMakeLists.txt
-index 40f0354..3bacafa 100644
 a/external/randomx/CMakeLists.txt
-+++ b/external/randomx/CMakeLists.txt
-@@ -102,20 +102,6 @@ if (ARCH_ID STREQUAL "x86_64" OR ARCH_ID STREQUAL 
"x86-64" OR ARCH_ID STREQUAL "
-   set_property(SOURCE src/jit_compiler_x86_static.S PROPERTY LANGUAGE C)
-   set_property(SOURCE src/jit_compiler_x86_static.S PROPERTY 
XCODE_EXPLICIT_FILE_TYPE sourcecode.asm)
- 
--  if(ARCH STREQUAL "native")
--add_flag("-march=native")
--  else()
--# default build has hardware AES enabled (software AES can be selected at 
runtime)
--add_flag("-maes")
--check_c_compiler_flag(-mssse3 HAVE_SSSE3)
--if(HAVE_SSSE3)
--  set_source_files_properties(src/argon2_ssse3.c COMPILE_FLAGS -mssse3)
--endif()
--check_c_compiler_flag(-mavx2 HAVE_AVX2)
--if(HAVE_AVX2)
--  set_source_files_properties(src/argon2_avx2.c COMPILE_FLAGS -mavx2)
--endif()
--  endif()
- endif()
- 
- # PowerPC


[arch-commits] Commit in monero/repos/community-x86_64 (7 files)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Sunday, December 15, 2019 @ 07:15:42
  Author: kpcyrd
Revision: 537718

archrelease: copy trunk to community-x86_64

Added:
  monero/repos/community-x86_64/PKGBUILD
(from rev 537717, monero/trunk/PKGBUILD)
  monero/repos/community-x86_64/monero.sysusers
(from rev 537717, monero/trunk/monero.sysusers)
  monero/repos/community-x86_64/monero.tmpfiles
(from rev 537717, monero/trunk/monero.tmpfiles)
Deleted:
  monero/repos/community-x86_64/PKGBUILD
  monero/repos/community-x86_64/monero.sysusers
  monero/repos/community-x86_64/monero.tmpfiles
  monero/repos/community-x86_64/no-avx2.patch

-+
 PKGBUILD|  155 ++
 monero.sysusers |2 
 monero.tmpfiles |2 
 no-avx2.patch   |   25 
 4 files changed, 78 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-15 07:15:14 UTC (rev 537717)
+++ PKGBUILD2019-12-15 07:15:42 UTC (rev 537718)
@@ -1,79 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=monero
-pkgver=0.15.0.1
-pkgrel=3
-pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
-license=('custom:Cryptonote')
-arch=('x86_64')
-url="https://getmonero.org/;
-depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')
-makedepends=('git' 'cmake' 'boost')
-source=(
-"${pkgname}"::"git+https://github.com/monero-project/monero#tag=v${pkgver};
-"git+https://github.com/monero-project/unbound.git;
-"git+https://github.com/monero-project/miniupnp.git;
-"git+https://github.com/Tencent/rapidjson;
-"git+https://github.com/trezor/trezor-common.git;
-"git+https://github.com/tevador/randomx;
-"monero.sysusers"
-"monero.tmpfiles"
-"no-avx2.patch")
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
-
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357'
-
'a6ed21f23c8951e36200845421d395c1a56a064af64435ac3eef1e516678997fda4b452cd1da440e8fac7437971f81a901511dac27bbb1ff35ed631dcfe47c70')
-
-prepare() {
-  cd "${pkgname}"
-  git submodule init
-  git config submodule.external/unbound.url "$srcdir/unbound"
-  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
-  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
-  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
-  git config submodule.external/randomx.url "$srcdir/randomx"
-  git submodule update
-  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
-}
-
-build() {
-  cd "${pkgname}"
-  mkdir -p build && cd build
-  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../
-  make
-}
-
-package() {
-  backup=('etc/monerod.conf')
-
-  cd "${pkgname}"
-  install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -Dm644 "utils/conf/monerod.conf" "${pkgdir}/etc/monerod.conf"
-  install -Dm644 "utils/systemd/monerod.service" 
"${pkgdir}/usr/lib/systemd/system/monerod.service"
-  install -Dm644 "../monero.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/monero.conf"
-  install -Dm644 "../monero.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/monero.conf"
-
-  install -Dm755 "build/bin/monero-blockchain-ancestry" \
- "build/bin/monero-blockchain-depth" \
- "build/bin/monero-blockchain-export" \
- "build/bin/monero-blockchain-import" \
- "build/bin/monero-blockchain-mark-spent-outputs" \
- "build/bin/monero-blockchain-prune" \
- "build/bin/monero-blockchain-prune-known-spent-data" \
- "build/bin/monero-blockchain-stats" \
- "build/bin/monero-blockchain-usage" \
- "build/bin/monero-gen-ssl-cert" \
- "build/bin/monero-gen-trusted-multisig" \
- "build/bin/monero-wallet-cli" \
- "build/bin/monero-wallet-rpc" \
- "build/bin/monerod" \
- -t "${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero/repos/community-x86_64/PKGBUILD (from rev 537717, 
monero/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-15 07:15:42 UTC (rev 537718)
@@ -0,0 +1,76 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero
+pkgver=0.15.0.1
+pkgrel=3
+pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 

[arch-commits] Commit in monero/trunk (PKGBUILD)

2019-12-15 Thread Kpcyrd via arch-commits
Date: Sunday, December 15, 2019 @ 15:50:11
  Author: kpcyrd
Revision: 537746

Fix license info

Modified:
  monero/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-15 15:47:22 UTC (rev 537745)
+++ PKGBUILD2019-12-15 15:50:11 UTC (rev 537746)
@@ -4,7 +4,7 @@
 pkgver=0.15.0.1
 pkgrel=3
 pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
-license=('custom:Cryptonote')
+license=('BSD')
 arch=('x86_64')
 url="https://getmonero.org/;
 depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')


[arch-commits] Commit in monero-gui/trunk (PKGBUILD no-avx2.patch)

2019-12-15 Thread Kpcyrd via arch-commits
Date: Monday, December 16, 2019 @ 05:03:28
  Author: kpcyrd
Revision: 537827

Do not attempt to use AVX2 instructions

Added:
  monero-gui/trunk/no-avx2.patch
Modified:
  monero-gui/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 no-avx2.patch |   13 +
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-16 01:33:46 UTC (rev 537826)
+++ PKGBUILD2019-12-16 05:03:28 UTC (rev 537827)
@@ -2,9 +2,9 @@
 
 pkgname=monero-gui
 pkgver=0.15.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
-license=('custom:Cryptonote')
+license=('BSD')
 arch=('x86_64')
 url="https://getmonero.org/;
 depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'unbound'
@@ -13,9 +13,11 @@
 source=(
 
"${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver};
 "git+https://github.com/monero-project/monero.git;
+"no-avx2.patch"
 )
 sha512sums=('SKIP'
-'SKIP')
+'SKIP'
+
'dab89406ce77cd7e96adfe81156d262aa8457220b73dcfe86be50bf0322230319efb73517954e126ef77b8c90d68fb706d924ce432f9c6aabac3f94cd55ea553')
 
 prepare() {
   cd "${pkgname}"
@@ -22,6 +24,7 @@
   git submodule init
   git config submodule.monero.url "$srcdir/monero"
   git submodule update
+  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
 }
 
 build() {

Added: no-avx2.patch
===
--- no-avx2.patch   (rev 0)
+++ no-avx2.patch   2019-12-16 05:03:28 UTC (rev 537827)
@@ -0,0 +1,13 @@
+diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
+index 90d0408..4f5bb91 100755
+--- a/get_libwallet_api.sh
 b/get_libwallet_api.sh
+@@ -158,7 +158,7 @@ elif [ "$platform" == "linux64" ]; then
+ elif [ "$STATIC" == true ]; then
+ cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D 
ARCH="x86-64" -D BUILD_64=ON -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON -D 
INSTALL_VENDORED_LIBUNBOUND=ON $BUILD_TREZOR_FLAGS -D 
CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+ else
+-cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D BUILD_TAG="linux-x64" 
-D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  
../..
++cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D ARCH="default" -D 
BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D 
CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+ fi
+ 
+ ## LINUX 32


[arch-commits] Commit in monero-gui/repos/community-x86_64 (3 files)

2019-12-15 Thread Kpcyrd via arch-commits
Date: Monday, December 16, 2019 @ 05:03:44
  Author: kpcyrd
Revision: 537828

archrelease: copy trunk to community-x86_64

Added:
  monero-gui/repos/community-x86_64/PKGBUILD
(from rev 537827, monero-gui/trunk/PKGBUILD)
  monero-gui/repos/community-x86_64/no-avx2.patch
(from rev 537827, monero-gui/trunk/no-avx2.patch)
Deleted:
  monero-gui/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   79 +---
 no-avx2.patch |   13 +
 2 files changed, 54 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-16 05:03:28 UTC (rev 537827)
+++ PKGBUILD2019-12-16 05:03:44 UTC (rev 537828)
@@ -1,38 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=monero-gui
-pkgver=0.15.0.2
-pkgrel=2
-pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
-license=('custom:Cryptonote')
-arch=('x86_64')
-url="https://getmonero.org/;
-depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'unbound'
-'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg')
-makedepends=('git' 'cmake' 'boost' 'qt5-tools')
-source=(
-
"${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver};
-"git+https://github.com/monero-project/monero.git;
-)
-sha512sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  git submodule init
-  git config submodule.monero.url "$srcdir/monero"
-  git submodule update
-}
-
-build() {
-  cd "${pkgname}"
-  QT_SELECT=5 ./build.sh
-}
-
-package() {
-  cd "${pkgname}"
-  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero-gui/repos/community-x86_64/PKGBUILD (from rev 537827, 
monero-gui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-16 05:03:44 UTC (rev 537828)
@@ -0,0 +1,41 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero-gui
+pkgver=0.15.0.2
+pkgrel=3
+pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
+license=('BSD')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'unbound'
+'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg')
+makedepends=('git' 'cmake' 'boost' 'qt5-tools')
+source=(
+
"${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver};
+"git+https://github.com/monero-project/monero.git;
+"no-avx2.patch"
+)
+sha512sums=('SKIP'
+'SKIP'
+
'dab89406ce77cd7e96adfe81156d262aa8457220b73dcfe86be50bf0322230319efb73517954e126ef77b8c90d68fb706d924ce432f9c6aabac3f94cd55ea553')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.monero.url "$srcdir/monero"
+  git submodule update
+  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
+}
+
+build() {
+  cd "${pkgname}"
+  QT_SELECT=5 ./build.sh
+}
+
+package() {
+  cd "${pkgname}"
+  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: monero-gui/repos/community-x86_64/no-avx2.patch (from rev 537827, 
monero-gui/trunk/no-avx2.patch)
===
--- no-avx2.patch   (rev 0)
+++ no-avx2.patch   2019-12-16 05:03:44 UTC (rev 537828)
@@ -0,0 +1,13 @@
+diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
+index 90d0408..4f5bb91 100755
+--- a/get_libwallet_api.sh
 b/get_libwallet_api.sh
+@@ -158,7 +158,7 @@ elif [ "$platform" == "linux64" ]; then
+ elif [ "$STATIC" == true ]; then
+ cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D 
ARCH="x86-64" -D BUILD_64=ON -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON -D 
INSTALL_VENDORED_LIBUNBOUND=ON $BUILD_TREZOR_FLAGS -D 
CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+ else
+-cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D BUILD_TAG="linux-x64" 
-D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  
../..
++cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D ARCH="default" -D 
BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D 
CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+ fi
+ 
+ ## LINUX 32


[arch-commits] Commit in monero-gui/trunk (PKGBUILD)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Saturday, December 14, 2019 @ 16:58:44
  Author: kpcyrd
Revision: 537665

Install binary into /usr/bin with -t

Modified:
  monero-gui/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-14 16:58:21 UTC (rev 537664)
+++ PKGBUILD2019-12-14 16:58:44 UTC (rev 537665)
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=monero-gui
-pkgver=0.15.0.1
+pkgver=0.15.0.2
 pkgrel=2
 pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
 license=('custom:Cryptonote')
@@ -31,7 +31,7 @@
 
 package() {
   cd "${pkgname}"
-  install -Dm755 build/release/bin/monero-wallet-gui 
"${pkgdir}/usr/bin/monero-gui"
+  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
   install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 


[arch-commits] Commit in monero-gui/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Saturday, December 14, 2019 @ 16:58:51
  Author: kpcyrd
Revision: 537666

archrelease: copy trunk to community-x86_64

Added:
  monero-gui/repos/community-x86_64/
  monero-gui/repos/community-x86_64/PKGBUILD
(from rev 537665, monero-gui/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: monero-gui/repos/community-x86_64/PKGBUILD (from rev 537665, 
monero-gui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-14 16:58:51 UTC (rev 537666)
@@ -0,0 +1,38 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero-gui
+pkgver=0.15.0.2
+pkgrel=2
+pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'unbound'
+'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg')
+makedepends=('git' 'cmake' 'boost' 'qt5-tools')
+source=(
+
"${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver};
+"git+https://github.com/monero-project/monero.git;
+)
+sha512sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.monero.url "$srcdir/monero"
+  git submodule update
+}
+
+build() {
+  cd "${pkgname}"
+  QT_SELECT=5 ./build.sh
+}
+
+package() {
+  cd "${pkgname}"
+  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in monero/repos (4 files)

2019-12-14 Thread Kpcyrd via arch-commits
Date: Saturday, December 14, 2019 @ 16:58:21
  Author: kpcyrd
Revision: 537664

archrelease: copy trunk to community-x86_64

Added:
  monero/repos/community-x86_64/
  monero/repos/community-x86_64/PKGBUILD
(from rev 537663, monero/trunk/PKGBUILD)
  monero/repos/community-x86_64/monero.sysusers
(from rev 537663, monero/trunk/monero.sysusers)
  monero/repos/community-x86_64/monero.tmpfiles
(from rev 537663, monero/trunk/monero.tmpfiles)

-+
 PKGBUILD|   76 ++
 monero.sysusers |1 
 monero.tmpfiles |1 
 3 files changed, 78 insertions(+)

Copied: monero/repos/community-x86_64/PKGBUILD (from rev 537663, 
monero/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-14 16:58:21 UTC (rev 537664)
@@ -0,0 +1,76 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero
+pkgver=0.15.0.1
+pkgrel=2
+pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')
+makedepends=('git' 'cmake' 'boost')
+source=(
+"${pkgname}"::"git+https://github.com/monero-project/monero#tag=v${pkgver};
+"git+https://github.com/monero-project/unbound.git;
+"git+https://github.com/monero-project/miniupnp.git;
+"git+https://github.com/Tencent/rapidjson;
+"git+https://github.com/trezor/trezor-common.git;
+"git+https://github.com/tevador/randomx;
+"monero.sysusers"
+"monero.tmpfiles")
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
+
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.external/unbound.url "$srcdir/unbound"
+  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
+  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
+  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
+  git config submodule.external/randomx.url "$srcdir/randomx"
+  git submodule update
+}
+
+build() {
+  cd "${pkgname}"
+  mkdir -p build && cd build
+  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../
+  make
+}
+
+package() {
+  backup=('etc/monerod.conf')
+
+  cd "${pkgname}"
+  install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -Dm644 "utils/conf/monerod.conf" "${pkgdir}/etc/monerod.conf"
+  install -Dm644 "utils/systemd/monerod.service" 
"${pkgdir}/usr/lib/systemd/system/monerod.service"
+  install -Dm644 "../monero.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/monero.conf"
+  install -Dm644 "../monero.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/monero.conf"
+
+  install -Dm755 "build/bin/monero-blockchain-ancestry" \
+ "build/bin/monero-blockchain-depth" \
+ "build/bin/monero-blockchain-export" \
+ "build/bin/monero-blockchain-import" \
+ "build/bin/monero-blockchain-mark-spent-outputs" \
+ "build/bin/monero-blockchain-prune" \
+ "build/bin/monero-blockchain-prune-known-spent-data" \
+ "build/bin/monero-blockchain-stats" \
+ "build/bin/monero-blockchain-usage" \
+ "build/bin/monero-gen-ssl-cert" \
+ "build/bin/monero-gen-trusted-multisig" \
+ "build/bin/monero-wallet-cli" \
+ "build/bin/monero-wallet-rpc" \
+ "build/bin/monerod" \
+ -t "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:

Copied: monero/repos/community-x86_64/monero.sysusers (from rev 537663, 
monero/trunk/monero.sysusers)
===
--- community-x86_64/monero.sysusers(rev 0)
+++ community-x86_64/monero.sysusers2019-12-14 16:58:21 UTC (rev 537664)
@@ -0,0 +1 @@
+u monero - - /var/lib/monero

Copied: monero/repos/community-x86_64/monero.tmpfiles (from rev 537663, 
monero/trunk/monero.tmpfiles)
===
--- community-x86_64/monero.tmpfiles(rev 0)
+++ community-x86_64/monero.tmpfiles2019-12-14 16:58:21 UTC (rev 537664)
@@ -0,0 +1 @@
+d /var/lib/monero 0770 monero monero - -


[arch-commits] Commit in cjdns/trunk (2 files)

2019-11-24 Thread Kpcyrd via arch-commits
Date: Monday, November 25, 2019 @ 00:03:31
  Author: kpcyrd
Revision: 533116

upgpkg: cjdns 20.4-1

Added:
  cjdns/trunk/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch
Modified:
  cjdns/trunk/PKGBUILD

+
 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch |   22 ++
 PKGBUILD   |   15 +++
 2 files changed, 33 insertions(+), 4 deletions(-)

Added: 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch
===
--- 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch  
(rev 0)
+++ 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch  2019-11-25 00:03:31 UTC 
(rev 533116)
@@ -0,0 +1,22 @@
+From 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3 Mon Sep 17 00:00:00 2001
+From: Caleb James DeLisle 
+Date: Sun, 24 Nov 2019 23:47:30 +0100
+Subject: [PATCH] New GCC wants strncpy limit to be less than the output size
+
+---
+ util/platform/netdev/NetPlatform_linux.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/util/platform/netdev/NetPlatform_linux.c 
b/util/platform/netdev/NetPlatform_linux.c
+index 8206ebad5..967ee261e 100644
+--- a/util/platform/netdev/NetPlatform_linux.c
 b/util/platform/netdev/NetPlatform_linux.c
+@@ -78,7 +78,7 @@ static int socketForIfName(const char* interfaceName,
+ }
+ 
+ memset(ifRequestOut, 0, sizeof(struct ifreq));
+-strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ);
++strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ-1);
+ 
+ if (ioctl(s, SIOCGIFINDEX, ifRequestOut) < 0) {
+ int err = errno;

Modified: PKGBUILD
===
--- PKGBUILD2019-11-25 00:01:15 UTC (rev 533115)
+++ PKGBUILD2019-11-25 00:03:31 UTC (rev 533116)
@@ -1,4 +1,5 @@
 # Maintainer: Levente Polyak 
+# Maintainer: kpcyrd 
 # Contributor: Kevin MacMartin 
 # Contributor: openfbt
 # Contributor: Werecat
@@ -5,7 +6,7 @@
 # Contributor: Xyne
 
 pkgname=cjdns
-pkgver=20.3
+pkgver=20.4
 pkgrel=1
 pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
 url='https://github.com/cjdelisle/cjdns'
@@ -15,10 +16,16 @@
 optdepends=('nodejs: optional utilities support')
 makedepends=('nodejs' 'python2')
 install=cjdns.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha256sums=('e8ca2cc5d5ba71e39a702299106dd2a965005703284cec91b3e94691cdce6f65')
-sha512sums=('ae38b33b47a567893e63bc925c91d07b5554f0c7147f90429cac41cfe35a429f507e3adc9463175a1714140169eaae370ab8c8255e82ddd9b2b32f09adae1cea')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz
+1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch)
+sha512sums=('5a6bd36b2edd07fa883efa4b14dd8a7ba0189bf43404e27ab6ae3b0c2f1e63ce738c52b34416f51f93c9752f6654ea95eac2c71897d2a1e19f4a6d1ca3bad46d'
+
'c7bb9d1550661221f5fb08f31384a5d06b9c2c8531c1f5bbc14624a99adc21f19873c01a553b20198790e8bf72ea763de4e486e13b02df5356f397549692ba9c')
 
+prepare() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  patch --forward --strip=1 
--input="${srcdir}/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch"
+}
+
 build() {
   cd ${pkgname}-${pkgname}-v${pkgver}
   # Pretend to be cross compiling so -march=native is not set.


[arch-commits] Commit in cjdns/repos/community-x86_64 (5 files)

2019-11-24 Thread Kpcyrd via arch-commits
Date: Monday, November 25, 2019 @ 00:09:39
  Author: kpcyrd
Revision: 533117

archrelease: copy trunk to community-x86_64

Added:
  cjdns/repos/community-x86_64/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch
(from rev 533116, 
cjdns/trunk/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch)
  cjdns/repos/community-x86_64/PKGBUILD
(from rev 533116, cjdns/trunk/PKGBUILD)
  cjdns/repos/community-x86_64/cjdns.install
(from rev 533116, cjdns/trunk/cjdns.install)
Deleted:
  cjdns/repos/community-x86_64/PKGBUILD
  cjdns/repos/community-x86_64/cjdns.install

+
 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch |   22 
 PKGBUILD   |  107 ---
 cjdns.install  |   52 +--
 3 files changed, 105 insertions(+), 76 deletions(-)

Copied: 
cjdns/repos/community-x86_64/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch 
(from rev 533116, cjdns/trunk/1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch)
===
--- 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch  
(rev 0)
+++ 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3.patch  2019-11-25 00:09:39 UTC 
(rev 533117)
@@ -0,0 +1,22 @@
+From 1b7f09b9492fd9ccbacc4a16f6cc9a623653aba3 Mon Sep 17 00:00:00 2001
+From: Caleb James DeLisle 
+Date: Sun, 24 Nov 2019 23:47:30 +0100
+Subject: [PATCH] New GCC wants strncpy limit to be less than the output size
+
+---
+ util/platform/netdev/NetPlatform_linux.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/util/platform/netdev/NetPlatform_linux.c 
b/util/platform/netdev/NetPlatform_linux.c
+index 8206ebad5..967ee261e 100644
+--- a/util/platform/netdev/NetPlatform_linux.c
 b/util/platform/netdev/NetPlatform_linux.c
+@@ -78,7 +78,7 @@ static int socketForIfName(const char* interfaceName,
+ }
+ 
+ memset(ifRequestOut, 0, sizeof(struct ifreq));
+-strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ);
++strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ-1);
+ 
+ if (ioctl(s, SIOCGIFINDEX, ifRequestOut) < 0) {
+ int err = errno;

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-25 00:03:31 UTC (rev 533116)
+++ PKGBUILD2019-11-25 00:09:39 UTC (rev 533117)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Kevin MacMartin 
-# Contributor: openfbt
-# Contributor: Werecat
-# Contributor: Xyne
-
-pkgname=cjdns
-pkgver=20.3
-pkgrel=1
-pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
-url='https://github.com/cjdelisle/cjdns'
-arch=('x86_64')
-license=('GPL3')
-depends=('glibc' 'sh')
-optdepends=('nodejs: optional utilities support')
-makedepends=('nodejs' 'python2')
-install=cjdns.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha256sums=('e8ca2cc5d5ba71e39a702299106dd2a965005703284cec91b3e94691cdce6f65')
-sha512sums=('ae38b33b47a567893e63bc925c91d07b5554f0c7147f90429cac41cfe35a429f507e3adc9463175a1714140169eaae370ab8c8255e82ddd9b2b32f09adae1cea')
-
-build() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  # Pretend to be cross compiling so -march=native is not set.
-  CROSS="true" CJDNS_RELEASE_VERSION="${pkgver}" \
-node ./node_build/make.js
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  install -Dm 755 cjdroute -t "${pkgdir}/usr/bin"
-  install -Dm 644 contrib/systemd/{cjdns,cjdns-resume}.service \
--t "${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 doc/man/cjdroute.conf.5 -t "${pkgdir}/usr/share/man/man5"
-  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
-README.md \
-doc/admin-api.md \
-doc/configure.md \
-doc/djc_layer_model.md \
-doc/nat-gateway.md \
-doc/network-services.md \
-doc/non-root-user.md \
-doc/security_specification.md \
-doc/shorewall_and_vpn_gateway_howto.md \
-doc/tunnel.md
-  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
-  cp -a node_modules "${pkgdir}/usr/lib/${pkgname}/node_modules"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cjdns/repos/community-x86_64/PKGBUILD (from rev 533116, 
cjdns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-25 00:09:39 UTC (rev 533117)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak 
+# Maintainer: kpcyrd 
+# Contributor: Kevin MacMartin 
+# Contributor: openfbt
+# Contributor: Werecat
+# Contributor: Xyne
+
+pkgname=cjdns
+pkgver=20.4
+pkgrel=1
+pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
+url='https://github.com/cjdelisle/cjdns'
+arch=('x86_64')
+license=('GPL3')
+depends=('glibc' 'sh')
+optdepends=('nodejs: optional utilities support')
+makedepends=('nodejs' 'python2')
+install=cjdns.install

[arch-commits] Commit in (4 files)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Saturday, November 30, 2019 @ 20:36:02
  Author: kpcyrd
Revision: 534605

addpkg: cargo-tree 0.26.0-2

Added:
  cargo-tree/
  cargo-tree/repos/
  cargo-tree/trunk/
  cargo-tree/trunk/PKGBUILD

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Added: cargo-tree/trunk/PKGBUILD
===
--- cargo-tree/trunk/PKGBUILD   (rev 0)
+++ cargo-tree/trunk/PKGBUILD   2019-11-30 20:36:02 UTC (rev 534605)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+# Contributor: Vlad M. 
+# Contributor: Andrea Scarpino 
+
+pkgname=cargo-tree
+pkgver=0.26.0
+pkgrel=2
+pkgdesc="Cargo subcommand that visualizes a crate's dependency graph in a 
tree-like format"
+url="https://github.com/sfackler/cargo-tree;
+depends=('curl')
+makedepends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sfackler/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('dd250caddbef0162d7efd5edde3f265aa5fd9a761800aa2af4b1ff68261c')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+# upstream doesn't have tests
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cargo-tree/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Saturday, November 30, 2019 @ 20:36:33
  Author: kpcyrd
Revision: 534606

archrelease: copy trunk to community-x86_64

Added:
  cargo-tree/repos/community-x86_64/
  cargo-tree/repos/community-x86_64/PKGBUILD
(from rev 534605, cargo-tree/trunk/PKGBUILD)

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Copied: cargo-tree/repos/community-x86_64/PKGBUILD (from rev 534605, 
cargo-tree/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-11-30 20:36:33 UTC (rev 534606)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+# Contributor: Vlad M. 
+# Contributor: Andrea Scarpino 
+
+pkgname=cargo-tree
+pkgver=0.26.0
+pkgrel=2
+pkgdesc="Cargo subcommand that visualizes a crate's dependency graph in a 
tree-like format"
+url="https://github.com/sfackler/cargo-tree;
+depends=('curl')
+makedepends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sfackler/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('dd250caddbef0162d7efd5edde3f265aa5fd9a761800aa2af4b1ff68261c')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+# upstream doesn't have tests
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cargo-crev/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Sunday, December 1, 2019 @ 04:09:16
  Author: kpcyrd
Revision: 534620

archrelease: copy trunk to community-x86_64

Added:
  cargo-crev/repos/community-x86_64/
  cargo-crev/repos/community-x86_64/PKGBUILD
(from rev 534619, cargo-crev/trunk/PKGBUILD)

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Copied: cargo-crev/repos/community-x86_64/PKGBUILD (from rev 534619, 
cargo-crev/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-01 04:09:16 UTC (rev 534620)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-crev
+pkgver=0.13.0
+pkgrel=1
+pkgdesc="Scalable, social, Code REView and recommendation system that we 
desperately need"
+url="https://github.com/dpc/crev;
+depends=('openssl' 'curl')
+makedepends=('cargo' 'clang')
+arch=('x86_64')
+license=('MPL' 'Apache' 'MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dpc/crev/archive/v${pkgver}.tar.gz;)
+sha512sums=('69a187adbb60d8ecf4e3ab37454c874895a6ed375b11573be9277821cbc3a8cf76e2a470e96633e8a9f787437923b78587a38dbdc204c095d7422e5fb2a18bbc')
+b2sums=('1542e37bf6ea0620d2559ec9e709c7ded7d03c742801ab814cad408df3b3941ac9d1ae685e801dddc0b820366d93694cc85ba1ade3c3bd4f5b78dbfa089d10bd')
+
+build() {
+  cd "${pkgname}-${pkgver}/cargo-crev"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Sunday, December 1, 2019 @ 03:42:54
  Author: kpcyrd
Revision: 534619

addpkg: cargo-crev 0.13.0-1

Added:
  cargo-crev/
  cargo-crev/repos/
  cargo-crev/trunk/
  cargo-crev/trunk/PKGBUILD

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: cargo-crev/trunk/PKGBUILD
===
--- cargo-crev/trunk/PKGBUILD   (rev 0)
+++ cargo-crev/trunk/PKGBUILD   2019-12-01 03:42:54 UTC (rev 534619)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-crev
+pkgver=0.13.0
+pkgrel=1
+pkgdesc="Scalable, social, Code REView and recommendation system that we 
desperately need"
+url="https://github.com/dpc/crev;
+depends=('openssl' 'curl')
+makedepends=('cargo' 'clang')
+arch=('x86_64')
+license=('MPL' 'Apache' 'MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dpc/crev/archive/v${pkgver}.tar.gz;)
+sha512sums=('69a187adbb60d8ecf4e3ab37454c874895a6ed375b11573be9277821cbc3a8cf76e2a470e96633e8a9f787437923b78587a38dbdc204c095d7422e5fb2a18bbc')
+b2sums=('1542e37bf6ea0620d2559ec9e709c7ded7d03c742801ab814cad408df3b3941ac9d1ae685e801dddc0b820366d93694cc85ba1ade3c3bd4f5b78dbfa089d10bd')
+
+build() {
+  cd "${pkgname}-${pkgver}/cargo-crev"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in diesel-cli/repos (community-x86_64 community-x86_64/PKGBUILD)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Sunday, December 1, 2019 @ 01:16:57
  Author: kpcyrd
Revision: 534616

archrelease: copy trunk to community-x86_64

Added:
  diesel-cli/repos/community-x86_64/
  diesel-cli/repos/community-x86_64/PKGBUILD
(from rev 534615, diesel-cli/trunk/PKGBUILD)

--+
 PKGBUILD |   43 +++
 1 file changed, 43 insertions(+)

Copied: diesel-cli/repos/community-x86_64/PKGBUILD (from rev 534615, 
diesel-cli/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-12-01 01:16:57 UTC (rev 534616)
@@ -0,0 +1,43 @@
+# Maintainer: kpcyrd 
+
+pkgname=diesel-cli
+pkgver=1.4.3
+pkgrel=2
+pkgdesc="CLI for the Diesel crate"
+arch=('x86_64')
+url="http://diesel.rs/;
+license=('MIT' 'Apache')
+replaces=('diesel_cli')
+depends=('sqlite' 'postgresql-libs' 'libmariadbclient')
+makedepends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/diesel-rs/diesel/archive/v${pkgver}.tar.gz;)
+sha512sums=('afc348b362b3cfea88b161f17897ef0d7ca06c9e9624e09a5210428a95f351fe774a9bd98a1009b1d334abecd1800d9a266b9ddbab42ff77fbfba1e66ad501fc')
+b2sums=('3357d9b0ade8142e6d0529aa128a38ddd255c1fdf7fb8567f7391122ba8157c40ce90dc94ae939997160dcdbe72c41fc9aa5b38f55ebddd4caba4ee76770be23')
+
+build() {
+  cd "diesel-${pkgver}/diesel_cli"
+  # --locked is broken
+  cargo build --release
+}
+
+check() {
+  cd "diesel-${pkgver}/diesel_cli"
+  # tests require a debug build to be present
+  cargo test --no-default-features --features sqlite
+}
+
+package() {
+  cd "diesel-${pkgver}"
+  install -Dm755 "target/release/diesel" "${pkgdir}/usr/bin/diesel"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/diesel" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/diesel"
+  "${pkgdir}/usr/bin/diesel" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_diesel"
+  "${pkgdir}/usr/bin/diesel" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/diesel.fish"
+
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-11-30 Thread Kpcyrd via arch-commits
Date: Sunday, December 1, 2019 @ 01:05:44
  Author: kpcyrd
Revision: 534615

addpkg: diesel-cli 1.4.3-2

Added:
  diesel-cli/
  diesel-cli/repos/
  diesel-cli/trunk/
  diesel-cli/trunk/PKGBUILD

--+
 PKGBUILD |   43 +++
 1 file changed, 43 insertions(+)

Added: diesel-cli/trunk/PKGBUILD
===
--- diesel-cli/trunk/PKGBUILD   (rev 0)
+++ diesel-cli/trunk/PKGBUILD   2019-12-01 01:05:44 UTC (rev 534615)
@@ -0,0 +1,43 @@
+# Maintainer: kpcyrd 
+
+pkgname=diesel-cli
+pkgver=1.4.3
+pkgrel=2
+pkgdesc="CLI for the Diesel crate"
+arch=('x86_64')
+url="http://diesel.rs/;
+license=('MIT' 'Apache')
+replaces=('diesel_cli')
+depends=('sqlite' 'postgresql-libs' 'libmariadbclient')
+makedepends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/diesel-rs/diesel/archive/v${pkgver}.tar.gz;)
+sha512sums=('afc348b362b3cfea88b161f17897ef0d7ca06c9e9624e09a5210428a95f351fe774a9bd98a1009b1d334abecd1800d9a266b9ddbab42ff77fbfba1e66ad501fc')
+b2sums=('3357d9b0ade8142e6d0529aa128a38ddd255c1fdf7fb8567f7391122ba8157c40ce90dc94ae939997160dcdbe72c41fc9aa5b38f55ebddd4caba4ee76770be23')
+
+build() {
+  cd "diesel-${pkgver}/diesel_cli"
+  # --locked is broken
+  cargo build --release
+}
+
+check() {
+  cd "diesel-${pkgver}/diesel_cli"
+  # tests require a debug build to be present
+  cargo test --no-default-features --features sqlite
+}
+
+package() {
+  cd "diesel-${pkgver}"
+  install -Dm755 "target/release/diesel" "${pkgdir}/usr/bin/diesel"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/diesel" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/diesel"
+  "${pkgdir}/usr/bin/diesel" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_diesel"
+  "${pkgdir}/usr/bin/diesel" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/diesel.fish"
+
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in sn0int/repos/community-x86_64 (4 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 21:29:19
  Author: kpcyrd
Revision: 532383

archrelease: copy trunk to community-x86_64

Added:
  sn0int/repos/community-x86_64/PKGBUILD
(from rev 532382, sn0int/trunk/PKGBUILD)
  sn0int/repos/community-x86_64/sn0int.install
(from rev 532382, sn0int/trunk/sn0int.install)
Deleted:
  sn0int/repos/community-x86_64/PKGBUILD
  sn0int/repos/community-x86_64/sn0int.install

+
 PKGBUILD   |  100 +++
 sn0int.install |   18 -
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-23 21:29:04 UTC (rev 532382)
+++ PKGBUILD2019-11-23 21:29:19 UTC (rev 532383)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Santiago Torres-Arias 
-# Contributor: kpcyrd 
-
-pkgname=sn0int
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='Semi-automatic OSINT framework and package manager'
-url='https://github.com/kpcyrd/sn0int'
-arch=('x86_64')
-license=('GPL3')
-depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
-makedepends=('cargo' 'python-sphinx')
-install=sn0int.install
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
-sha512sums=('dc838c89625d73f3b9df0f78cc066b96929f8309f10e011ad2a5330ed61bf69a438bc24f5964f80a393ed2f38bbcb847f2e5b6fe61e4cb817b3eabe1c288cc92'
-'SKIP')
-
-validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
-
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-  make -C docs man
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
-
-  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/PKGBUILD (from rev 532382, 
sn0int/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-23 21:29:19 UTC (rev 532383)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: kpcyrd 
+
+pkgname=sn0int
+pkgver=0.14.0
+pkgrel=1
+pkgdesc='Semi-automatic OSINT framework and package manager'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('GPL3')
+depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
+makedepends=('cargo' 'python-sphinx')
+install=sn0int.install
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
+sha512sums=('8771b636f47603c6786bd2d309e03d8f629cbe8176b9595ee8562a6de7c2fd146f6cf9d0b2e4cdae9cc8c7eaf8798056b3cb15e5c399692aeef9fc8d52c0677b'
+'SKIP')
+
+validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
+
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+  make -C docs man
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
+
+  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: sn0int.install
===

[arch-commits] Commit in sn0int/trunk (PKGBUILD)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 21:29:04
  Author: kpcyrd
Revision: 532382

upgpkg: sn0int 0.14.0-1

Modified:
  sn0int/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-23 21:13:52 UTC (rev 532381)
+++ PKGBUILD2019-11-23 21:29:04 UTC (rev 532382)
@@ -1,9 +1,9 @@
 # Maintainer: Levente Polyak 
 # Maintainer: Santiago Torres-Arias 
-# Contributor: kpcyrd 
+# Maintainer: kpcyrd 
 
 pkgname=sn0int
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc='Semi-automatic OSINT framework and package manager'
 url='https://github.com/kpcyrd/sn0int'
@@ -14,7 +14,7 @@
 install=sn0int.install
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
-sha512sums=('dc838c89625d73f3b9df0f78cc066b96929f8309f10e011ad2a5330ed61bf69a438bc24f5964f80a393ed2f38bbcb847f2e5b6fe61e4cb817b3eabe1c288cc92'
+sha512sums=('8771b636f47603c6786bd2d309e03d8f629cbe8176b9595ee8562a6de7c2fd146f6cf9d0b2e4cdae9cc8c7eaf8798056b3cb15e5c399692aeef9fc8d52c0677b'
 'SKIP')
 
 validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")


[arch-commits] Commit in python-potr/repos (2 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 22:33:51
  Author: kpcyrd
Revision: 532399

archrelease: copy trunk to community-testing-any

Added:
  python-potr/repos/community-testing-any/
  python-potr/repos/community-testing-any/PKGBUILD
(from rev 532398, python-potr/trunk/PKGBUILD)

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Copied: python-potr/repos/community-testing-any/PKGBUILD (from rev 532398, 
python-potr/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-11-23 22:33:51 UTC (rev 532399)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+# Contributor: Eliot Whalan 
+
+_pyname="pure-python-otr"
+pkgname=python-potr
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Pure python OTR implementation without libotr"
+arch=(any)
+url="https://github.com/afflux/pure-python-otr;
+license=('LGPL')
+depends=('python' 'python-crypto')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-rednose')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/afflux/pure-python-otr/archive/${pkgver}.tar.gz;)
+sha512sums=('e35f6ea7db64af92a966b22857a1a670a1c930aa01a1bc88d5ba7e4ba62100808c193fbccbbde4d29039610a383b374c95a090fd98b208890c721e01bba87fb8')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${_pyname}-${pkgver}"
+  # tests are currently broken 
(https://github.com/python-otr/pure-python-otr/issues/75)
+  #./run_tests.sh
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 22:33:33
  Author: kpcyrd
Revision: 532398

addpkg: python-potr 1.0.2-2

Added:
  python-potr/
  python-potr/repos/
  python-potr/trunk/
  python-potr/trunk/PKGBUILD

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: python-potr/trunk/PKGBUILD
===
--- python-potr/trunk/PKGBUILD  (rev 0)
+++ python-potr/trunk/PKGBUILD  2019-11-23 22:33:33 UTC (rev 532398)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+# Contributor: Eliot Whalan 
+
+_pyname="pure-python-otr"
+pkgname=python-potr
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Pure python OTR implementation without libotr"
+arch=(any)
+url="https://github.com/afflux/pure-python-otr;
+license=('LGPL')
+depends=('python' 'python-crypto')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-rednose')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/afflux/pure-python-otr/archive/${pkgver}.tar.gz;)
+sha512sums=('e35f6ea7db64af92a966b22857a1a670a1c930aa01a1bc88d5ba7e4ba62100808c193fbccbbde4d29039610a383b374c95a090fd98b208890c721e01bba87fb8')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${_pyname}-${pkgver}"
+  # tests are currently broken 
(https://github.com/python-otr/pure-python-otr/issues/75)
+  #./run_tests.sh
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in badtouch/repos/community-x86_64 (4 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 23:40:31
  Author: kpcyrd
Revision: 532405

archrelease: copy trunk to community-x86_64

Added:
  badtouch/repos/community-x86_64/PKGBUILD
(from rev 532404, badtouch/trunk/PKGBUILD)
  badtouch/repos/community-x86_64/badtouch.install
(from rev 532404, badtouch/trunk/badtouch.install)
Deleted:
  badtouch/repos/community-x86_64/PKGBUILD
  badtouch/repos/community-x86_64/badtouch.install

--+
 PKGBUILD |   80 ++---
 badtouch.install |   18 +--
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-23 23:40:17 UTC (rev 532404)
+++ PKGBUILD2019-11-23 23:40:31 UTC (rev 532405)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
-
-pkgname=badtouch
-pkgver=0.7.0
-pkgrel=1
-pkgdesc='Scriptable network authentication cracker'
-url='https://github.com/kpcyrd/badtouch'
-depends=('openssl' 'libcap')
-makedepends=('cargo')
-arch=('x86_64')
-license=('GPL3')
-install=badtouch.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}.tar.gz
 
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
-sha256sums=('d49eb11825ab56245f82f0958a89ea69edf558c1bd142afba2d4408dc9d20fbb'
-'SKIP')
-sha512sums=('4660e8346ff33398f2bc1a95b37a0a3948f68e5a0456fc119910453785d80cec34bdb309b28c767dcd572ef7f85acb122fb20bde0826141c0703cd6ed2dda2cd'
-'SKIP')
-validpgpkeys=('64B13F7117D6E07D661BBCE0FE763A64F5E54FD6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 docs/badtouch.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 scripts/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: badtouch/repos/community-x86_64/PKGBUILD (from rev 532404, 
badtouch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-23 23:40:31 UTC (rev 532405)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: kpcyrd 
+
+pkgname=badtouch
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='Scriptable network authentication cracker'
+url='https://github.com/kpcyrd/badtouch'
+depends=('openssl' 'libcap' 'zlib')
+makedepends=('cargo')
+arch=('x86_64')
+license=('GPL3')
+install=badtouch.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}.tar.gz
 
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
+sha256sums=('c188bb1df106761a436fd25d3530323a47633c4c937d186e82c00981ffc94b5f'
+'SKIP')
+sha512sums=('3bfc58d50b366a1d3d6f6474b1446639e3e6144873228a1e153465977ffc66be060baa00c919e8accbd66eaf226a12f1a81d45160bbba75c702c8564e34ba0b5'
+'SKIP')
+validpgpkeys=('64B13F7117D6E07D661BBCE0FE763A64F5E54FD6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 docs/badtouch.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 scripts/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: badtouch.install
===
--- badtouch.install2019-11-23 23:40:17 UTC (rev 532404)
+++ badtouch.install2019-11-23 23:40:31 UTC (rev 532405)
@@ -1,9 +0,0 @@
-# vim: ft=sh ts=4 et
-
-post_install() {
-setcap cap_sys_resource=+ep /usr/bin/badtouch
-}
-
-post_upgrade() {
-post_install
-}

Copied: badtouch/repos/community-x86_64/badtouch.install (from rev 532404, 
badtouch/trunk/badtouch.install)
===
--- badtouch.install(rev 0)
+++ badtouch.install2019-11-23 23:40:31 UTC (rev 532405)
@@ -0,0 +1,9 @@
+# vim: ft=sh ts=4 et
+
+post_install() {
+setcap cap_sys_resource=+ep /usr/bin/badtouch
+}
+
+post_upgrade() {
+post_install
+}


[arch-commits] Commit in (6 files)

2019-11-25 Thread Kpcyrd via arch-commits
Date: Monday, November 25, 2019 @ 20:43:12
  Author: kpcyrd
Revision: 533296

addpkg: monero

Added:
  monero/
  monero/repos/
  monero/trunk/
  monero/trunk/PKGBUILD
  monero/trunk/monero.sysusers
  monero/trunk/monero.tmpfiles

-+
 PKGBUILD|   76 ++
 monero.sysusers |1 
 monero.tmpfiles |1 
 3 files changed, 78 insertions(+)

Added: monero/trunk/PKGBUILD
===
--- monero/trunk/PKGBUILD   (rev 0)
+++ monero/trunk/PKGBUILD   2019-11-25 20:43:12 UTC (rev 533296)
@@ -0,0 +1,76 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero
+pkgver=0.15.0.1
+pkgrel=2
+pkgdesc="Monero: the secure, private, untraceable currency - release version 
(includes daemon, wallet and miner)"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi')
+makedepends=('git' 'cmake' 'boost')
+source=(
+"${pkgname}"::"git+https://github.com/monero-project/monero#tag=v${pkgver};
+"git+https://github.com/monero-project/unbound.git;
+"git+https://github.com/monero-project/miniupnp.git;
+"git+https://github.com/Tencent/rapidjson;
+"git+https://github.com/trezor/trezor-common.git;
+"git+https://github.com/tevador/randomx;
+"monero.sysusers"
+"monero.tmpfiles")
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
+
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.external/unbound.url "$srcdir/unbound"
+  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
+  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
+  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
+  git config submodule.external/randomx.url "$srcdir/randomx"
+  git submodule update
+}
+
+build() {
+  cd "${pkgname}"
+  mkdir -p build && cd build
+  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../
+  make
+}
+
+package() {
+  backup=('etc/monerod.conf')
+
+  cd "${pkgname}"
+  install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -Dm644 "utils/conf/monerod.conf" "${pkgdir}/etc/monerod.conf"
+  install -Dm644 "utils/systemd/monerod.service" 
"${pkgdir}/usr/lib/systemd/system/monerod.service"
+  install -Dm644 "../monero.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/monero.conf"
+  install -Dm644 "../monero.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/monero.conf"
+
+  install -Dm755 "build/bin/monero-blockchain-ancestry" \
+ "build/bin/monero-blockchain-depth" \
+ "build/bin/monero-blockchain-export" \
+ "build/bin/monero-blockchain-import" \
+ "build/bin/monero-blockchain-mark-spent-outputs" \
+ "build/bin/monero-blockchain-prune" \
+ "build/bin/monero-blockchain-prune-known-spent-data" \
+ "build/bin/monero-blockchain-stats" \
+ "build/bin/monero-blockchain-usage" \
+ "build/bin/monero-gen-ssl-cert" \
+ "build/bin/monero-gen-trusted-multisig" \
+ "build/bin/monero-wallet-cli" \
+ "build/bin/monero-wallet-rpc" \
+ "build/bin/monerod" \
+ -t "${pkgdir}/usrc/bin"
+}
+
+# vim: ts=2 sw=2 et:

Added: monero/trunk/monero.sysusers
===
--- monero/trunk/monero.sysusers(rev 0)
+++ monero/trunk/monero.sysusers2019-11-25 20:43:12 UTC (rev 533296)
@@ -0,0 +1 @@
+u monero - - /var/lib/monero

Added: monero/trunk/monero.tmpfiles
===
--- monero/trunk/monero.tmpfiles(rev 0)
+++ monero/trunk/monero.tmpfiles2019-11-25 20:43:12 UTC (rev 533296)
@@ -0,0 +1 @@
+d /var/lib/monero 0770 monero monero - -


[arch-commits] Commit in (4 files)

2019-11-25 Thread Kpcyrd via arch-commits
Date: Monday, November 25, 2019 @ 20:43:44
  Author: kpcyrd
Revision: 533297

addpkg: monero-gui

Added:
  monero-gui/
  monero-gui/repos/
  monero-gui/trunk/
  monero-gui/trunk/PKGBUILD

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: monero-gui/trunk/PKGBUILD
===
--- monero-gui/trunk/PKGBUILD   (rev 0)
+++ monero-gui/trunk/PKGBUILD   2019-11-25 20:43:44 UTC (rev 533297)
@@ -0,0 +1,38 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero-gui
+pkgver=0.15.0.1
+pkgrel=2
+pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable 
peer-to-peer currency"
+license=('custom:Cryptonote')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'unbound'
+'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg')
+makedepends=('git' 'cmake' 'boost' 'qt5-tools')
+source=(
+
"${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver};
+"git+https://github.com/monero-project/monero.git;
+)
+sha512sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.monero.url "$srcdir/monero"
+  git submodule update
+}
+
+build() {
+  cd "${pkgname}"
+  QT_SELECT=5 ./build.sh
+}
+
+package() {
+  cd "${pkgname}"
+  install -Dm755 build/release/bin/monero-wallet-gui 
"${pkgdir}/usr/bin/monero-gui"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Sunday, November 24, 2019 @ 00:08:00
  Author: kpcyrd
Revision: 532408

addpkg: cargo-outdated 0.8.0-2

Added:
  cargo-outdated/
  cargo-outdated/repos/
  cargo-outdated/trunk/
  cargo-outdated/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Added: cargo-outdated/trunk/PKGBUILD
===
--- cargo-outdated/trunk/PKGBUILD   (rev 0)
+++ cargo-outdated/trunk/PKGBUILD   2019-11-24 00:08:00 UTC (rev 532408)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Jian Zeng 
+# Contributor: Alexandre Bury 
+# Contributor: Vlad M. 
+
+pkgname=cargo-outdated
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
+url="https://github.com/kbknapp/cargo-outdated;
+arch=('x86_64')
+license=('MIT')
+depends=('cargo')
+source=("https://github.com/kbknapp/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e07552706cdebceaf5b03bcd022082cdafca70e8e095a74ace95c767e39d509')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # --locked is broken https://github.com/kbknapp/cargo-outdated/issues/177
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-outdated/repos (2 files)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Sunday, November 24, 2019 @ 00:08:21
  Author: kpcyrd
Revision: 532409

archrelease: copy trunk to community-x86_64

Added:
  cargo-outdated/repos/community-x86_64/
  cargo-outdated/repos/community-x86_64/PKGBUILD
(from rev 532408, cargo-outdated/trunk/PKGBUILD)

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Copied: cargo-outdated/repos/community-x86_64/PKGBUILD (from rev 532408, 
cargo-outdated/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-11-24 00:08:21 UTC (rev 532409)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Jian Zeng 
+# Contributor: Alexandre Bury 
+# Contributor: Vlad M. 
+
+pkgname=cargo-outdated
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
+url="https://github.com/kbknapp/cargo-outdated;
+arch=('x86_64')
+license=('MIT')
+depends=('cargo')
+source=("https://github.com/kbknapp/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e07552706cdebceaf5b03bcd022082cdafca70e8e095a74ace95c767e39d509')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # --locked is broken https://github.com/kbknapp/cargo-outdated/issues/177
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in badtouch/trunk (PKGBUILD)

2019-11-23 Thread Kpcyrd via arch-commits
Date: Saturday, November 23, 2019 @ 23:40:17
  Author: kpcyrd
Revision: 532404

upgpkg: badtouch 0.7.1-1

Modified:
  badtouch/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-23 23:37:22 UTC (rev 532403)
+++ PKGBUILD2019-11-23 23:40:17 UTC (rev 532404)
@@ -2,19 +2,19 @@
 # Contributor: kpcyrd 
 
 pkgname=badtouch
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc='Scriptable network authentication cracker'
 url='https://github.com/kpcyrd/badtouch'
-depends=('openssl' 'libcap')
+depends=('openssl' 'libcap' 'zlib')
 makedepends=('cargo')
 arch=('x86_64')
 license=('GPL3')
 install=badtouch.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}.tar.gz
 
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
-sha256sums=('d49eb11825ab56245f82f0958a89ea69edf558c1bd142afba2d4408dc9d20fbb'
+sha256sums=('c188bb1df106761a436fd25d3530323a47633c4c937d186e82c00981ffc94b5f'
 'SKIP')
-sha512sums=('4660e8346ff33398f2bc1a95b37a0a3948f68e5a0456fc119910453785d80cec34bdb309b28c767dcd572ef7f85acb122fb20bde0826141c0703cd6ed2dda2cd'
+sha512sums=('3bfc58d50b366a1d3d6f6474b1446639e3e6144873228a1e153465977ffc66be060baa00c919e8accbd66eaf226a12f1a81d45160bbba75c702c8564e34ba0b5'
 'SKIP')
 validpgpkeys=('64B13F7117D6E07D661BBCE0FE763A64F5E54FD6')
 


[arch-commits] Commit in sniffglue/trunk (PKGBUILD)

2019-12-21 Thread Kpcyrd via arch-commits
Date: Saturday, December 21, 2019 @ 20:39:52
  Author: kpcyrd
Revision: 538657

upgpkg: sniffglue 0.10.0-1

Modified:
  sniffglue/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 20:22:45 UTC (rev 538656)
+++ PKGBUILD2019-12-21 20:39:52 UTC (rev 538657)
@@ -1,8 +1,8 @@
 # Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
+# Maintainer: kpcyrd 
 
 pkgname=sniffglue
-pkgver=0.9.0
+pkgver=0.10.0
 pkgrel=1
 pkgdesc='Secure multithreaded packet sniffer'
 url='https://github.com/kpcyrd/sniffglue'
@@ -12,15 +12,20 @@
 makedepends=('cargo')
 backup=('etc/sniffglue.conf')
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc
 sniffglue-sysuser.conf
 sniffglue.conf)
-sha256sums=('47f800615b6c316d23e43ff9056fa808160c35aea29cf5f57c2629f0cb267e50'
-'531e051488e57ed2f5bf5d8289fa5562aa0ca73783838c11ec13c043dc268d02'
-'a2e6cfa918a4e354b5c4c4c84867f3bb142833fde4acab545e13c8e89864004c')
-sha512sums=('915652edd2a9a8f21acae6e378f8e86ccfe2a4996d8c54d98790d96b717d7baf4c7c506a30f38ffcd52302273cb9a1ac203bd8f4ddc07b666103ac6f8de96113'
+sha512sums=('9338fd09d603934eb6e01c3046467c9de41a4f1c9a6d031dbc4a4c991c50abbf431cb8b8bca2b2616f0d7b39f2e19e1b363c79eab85f818500f0b7966b632326'
+'SKIP'
 
'2595eb4856bc7a59c078255bf2aeeaa44a4f6a69b37cc8982e5d70a8ef14cb29b83b4d191ab3baabfbcf209f3effd232c10ec5baabc6ce52990969526d6fda98'
 
'66e6b87e832ba8424334d24e3457a214e60e67c731471098329d0ca54c574518f7856ba780bb6bffde53bdefe2c8f789a242138ae67e2fef3e562fa083b362b1')
+b2sums=('f2bf1c0b1f67208d42661be26d40207bbf93f5a972f6e536033892eef822c62bcf5bf2b83f13f0dbe3bff2db0eba86e401db1337ad20d3143df52e32cd448e4b'
+'SKIP'
+
'69f5ba2cddca6878b776714c5015c1573df31fc4958432291baa4537349e5bdd1ab4307fd1c00bc20484213c118ecfc2ccfab88b942c0311e4d72872bf4eeeda'
+
'ad68689ed08e882f734a613300c14ddfb6d84656dec8dbbed818302b0fe69907f7fc76306f49c0bac019acf4dcb46fec984e7194b16a481f7cc4636ca9aaf303')
 
+validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
+
 build() {
   cd ${pkgname}-${pkgver}
   cargo build --release --locked


[arch-commits] Commit in sniffglue/repos/community-x86_64 (6 files)

2019-12-21 Thread Kpcyrd via arch-commits
Date: Saturday, December 21, 2019 @ 20:40:09
  Author: kpcyrd
Revision: 538660

archrelease: copy trunk to community-x86_64

Added:
  sniffglue/repos/community-x86_64/PKGBUILD
(from rev 538658, sniffglue/trunk/PKGBUILD)
  sniffglue/repos/community-x86_64/sniffglue-sysuser.conf
(from rev 538658, sniffglue/trunk/sniffglue-sysuser.conf)
  sniffglue/repos/community-x86_64/sniffglue.conf
(from rev 538658, sniffglue/trunk/sniffglue.conf)
Deleted:
  sniffglue/repos/community-x86_64/PKGBUILD
  sniffglue/repos/community-x86_64/sniffglue-sysuser.conf
  sniffglue/repos/community-x86_64/sniffglue.conf

+
 PKGBUILD   |   91 ---
 sniffglue-sysuser.conf |2 -
 sniffglue.conf |6 +--
 3 files changed, 52 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 20:40:07 UTC (rev 538659)
+++ PKGBUILD2019-12-21 20:40:09 UTC (rev 538660)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
-
-pkgname=sniffglue
-pkgver=0.9.0
-pkgrel=1
-pkgdesc='Secure multithreaded packet sniffer'
-url='https://github.com/kpcyrd/sniffglue'
-arch=('x86_64')
-license=('GPL3')
-depends=('libpcap' 'libseccomp')
-makedepends=('cargo')
-backup=('etc/sniffglue.conf')
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-sniffglue-sysuser.conf
-sniffglue.conf)
-sha256sums=('47f800615b6c316d23e43ff9056fa808160c35aea29cf5f57c2629f0cb267e50'
-'531e051488e57ed2f5bf5d8289fa5562aa0ca73783838c11ec13c043dc268d02'
-'a2e6cfa918a4e354b5c4c4c84867f3bb142833fde4acab545e13c8e89864004c')
-sha512sums=('915652edd2a9a8f21acae6e378f8e86ccfe2a4996d8c54d98790d96b717d7baf4c7c506a30f38ffcd52302273cb9a1ac203bd8f4ddc07b666103ac6f8de96113'
-
'2595eb4856bc7a59c078255bf2aeeaa44a4f6a69b37cc8982e5d70a8ef14cb29b83b4d191ab3baabfbcf209f3effd232c10ec5baabc6ce52990969526d6fda98'
-
'66e6b87e832ba8424334d24e3457a214e60e67c731471098329d0ca54c574518f7856ba780bb6bffde53bdefe2c8f789a242138ae67e2fef3e562fa083b362b1')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 "${srcdir}/sniffglue-sysuser.conf" 
"${pkgdir}/usr/lib/sysusers.d/sniffglue.conf"
-  install -Dm 644 "${srcdir}/sniffglue.conf" -t "${pkgdir}/etc"
-  install -Dm 644 docs/sniffglue.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sniffglue/repos/community-x86_64/PKGBUILD (from rev 538658, 
sniffglue/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 20:40:09 UTC (rev 538660)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Maintainer: kpcyrd 
+
+pkgname=sniffglue
+pkgver=0.10.0
+pkgrel=1
+pkgdesc='Secure multithreaded packet sniffer'
+url='https://github.com/kpcyrd/sniffglue'
+arch=('x86_64')
+license=('GPL3')
+depends=('libpcap' 'libseccomp')
+makedepends=('cargo')
+backup=('etc/sniffglue.conf')
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc
+sniffglue-sysuser.conf
+sniffglue.conf)
+sha512sums=('9338fd09d603934eb6e01c3046467c9de41a4f1c9a6d031dbc4a4c991c50abbf431cb8b8bca2b2616f0d7b39f2e19e1b363c79eab85f818500f0b7966b632326'
+'SKIP'
+
'2595eb4856bc7a59c078255bf2aeeaa44a4f6a69b37cc8982e5d70a8ef14cb29b83b4d191ab3baabfbcf209f3effd232c10ec5baabc6ce52990969526d6fda98'
+
'66e6b87e832ba8424334d24e3457a214e60e67c731471098329d0ca54c574518f7856ba780bb6bffde53bdefe2c8f789a242138ae67e2fef3e562fa083b362b1')
+b2sums=('f2bf1c0b1f67208d42661be26d40207bbf93f5a972f6e536033892eef822c62bcf5bf2b83f13f0dbe3bff2db0eba86e401db1337ad20d3143df52e32cd448e4b'
+'SKIP'
+
'69f5ba2cddca6878b776714c5015c1573df31fc4958432291baa4537349e5bdd1ab4307fd1c00bc20484213c118ecfc2ccfab88b942c0311e4d72872bf4eeeda'
+
'ad68689ed08e882f734a613300c14ddfb6d84656dec8dbbed818302b0fe69907f7fc76306f49c0bac019acf4dcb46fec984e7194b16a481f7cc4636ca9aaf303')
+
+validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 "${srcdir}/sniffglue-sysuser.conf" 
"${pkgdir}/usr/lib/sysusers.d/sniffglue.conf"
+  install -Dm 644 

[arch-commits] Commit in python-intervaltree/repos (2 files)

2019-12-19 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 05:24:07
  Author: kpcyrd
Revision: 538463

archrelease: copy trunk to community-any

Added:
  python-intervaltree/repos/community-any/
  python-intervaltree/repos/community-any/PKGBUILD
(from rev 538462, python-intervaltree/trunk/PKGBUILD)

--+
 PKGBUILD |   27 +++
 1 file changed, 27 insertions(+)

Copied: python-intervaltree/repos/community-any/PKGBUILD (from rev 538462, 
python-intervaltree/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2019-12-20 05:24:07 UTC (rev 538463)
@@ -0,0 +1,27 @@
+# Maintainer: kpcyrd 
+# Contributor: Dobroslaw Kijowski [dobo] 
+
+pkgname=python-intervaltree
+_pyname=intervaltree
+pkgver=3.0.2
+pkgrel=2
+pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
+url="https://github.com/chaimleib/intervaltree;
+arch=('any')
+license=('Apache')
+depends=('python-sortedcontainers')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chaimleib/${_pyname}/archive/${pkgver}.tar.gz;)
+sha256sums=('e8ab75b66077f2e5fb85ac56cb6df834689edb048d38601d53d8867cce3b77d1')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2019-12-19 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 05:23:51
  Author: kpcyrd
Revision: 538462

addpkg: python-intervaltree 3.0.2-2

Added:
  python-intervaltree/
  python-intervaltree/repos/
  python-intervaltree/trunk/
  python-intervaltree/trunk/PKGBUILD

--+
 PKGBUILD |   27 +++
 1 file changed, 27 insertions(+)

Added: python-intervaltree/trunk/PKGBUILD
===
--- python-intervaltree/trunk/PKGBUILD  (rev 0)
+++ python-intervaltree/trunk/PKGBUILD  2019-12-20 05:23:51 UTC (rev 538462)
@@ -0,0 +1,27 @@
+# Maintainer: kpcyrd 
+# Contributor: Dobroslaw Kijowski [dobo] 
+
+pkgname=python-intervaltree
+_pyname=intervaltree
+pkgver=3.0.2
+pkgrel=2
+pkgdesc='Library providing a mutable, self-balancing interval tree for Python'
+url="https://github.com/chaimleib/intervaltree;
+arch=('any')
+license=('Apache')
+depends=('python-sortedcontainers')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chaimleib/${_pyname}/archive/${pkgver}.tar.gz;)
+sha256sums=('e8ab75b66077f2e5fb85ac56cb6df834689edb048d38601d53d8867cce3b77d1')
+
+build() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${_pyname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-fuzz/trunk (PKGBUILD)

2019-12-20 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 13:32:08
  Author: kpcyrd
Revision: 538480

upgpkg: cargo-fuzz 0.6.0-1

Modified:
  cargo-fuzz/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-20 13:28:33 UTC (rev 538479)
+++ PKGBUILD2019-12-20 13:32:08 UTC (rev 538480)
@@ -1,7 +1,7 @@
-# Maintainer: kpcyrd 
+# Maintainer: kpcyrd 
 
 pkgname=cargo-fuzz
-pkgver=0.5.5
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="Command line helpers for fuzzing rust"
 url="https://github.com/rust-fuzz/cargo-fuzz;
@@ -9,8 +9,8 @@
 arch=('x86_64')
 license=('MIT' 'APACHE')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-fuzz/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('2b006306bc62524b892f64f9ac4da1b565655597aa46fea9c6247e996542243bebad0f9d797c6460202fecdc09ddbf5175ec20f0a9925f5411e107fe619c3c9b')
-b2sums=('327196d0017f6a85cc71adf58164973c82fba9b31423720eac753933c3f1ab3fa4c21f97c0f7819d95064dd889d6e4932294f5bf4766cc579888997efd6b4733')
+sha512sums=('b647e8d68a93eaa099dc1bf5e5e5e57ee8bd0e03f023c1664e6535e2938acfa5b884bc938cccd22d1071021170104fa48177ff6eab86d11cd0d1ecf1835d6aa0')
+b2sums=('a9a778545ea7d9707fb24534684366e71ddcd08fde07626d8f7b3b67d4189eed09abc47c7a7eeaae3919904c6c534005a8d3e6f77b5de592c72a35937eb628da')
 
 build() {
   cd "${pkgname}-${pkgver}"
@@ -19,7 +19,8 @@
 
 check() {
   cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
+  # this is broken on linux-hardened
+  #RUSTC_BOOTSTRAP=1 cargo test --release --locked
 }
 
 package() {


[arch-commits] Commit in cargo-fuzz/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-12-20 Thread Kpcyrd via arch-commits
Date: Friday, December 20, 2019 @ 13:32:29
  Author: kpcyrd
Revision: 538481

archrelease: copy trunk to community-x86_64

Added:
  cargo-fuzz/repos/community-x86_64/PKGBUILD
(from rev 538480, cargo-fuzz/trunk/PKGBUILD)
Deleted:
  cargo-fuzz/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   65 ++---
 1 file changed, 33 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 13:32:08 UTC (rev 538480)
+++ PKGBUILD2019-12-20 13:32:29 UTC (rev 538481)
@@ -1,32 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=cargo-fuzz
-pkgver=0.5.5
-pkgrel=1
-pkgdesc="Command line helpers for fuzzing rust"
-url="https://github.com/rust-fuzz/cargo-fuzz;
-depends=('cargo')
-arch=('x86_64')
-license=('MIT' 'APACHE')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-fuzz/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('2b006306bc62524b892f64f9ac4da1b565655597aa46fea9c6247e996542243bebad0f9d797c6460202fecdc09ddbf5175ec20f0a9925f5411e107fe619c3c9b')
-b2sums=('327196d0017f6a85cc71adf58164973c82fba9b31423720eac753933c3f1ab3fa4c21f97c0f7819d95064dd889d6e4932294f5bf4766cc579888997efd6b4733')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cargo-fuzz/repos/community-x86_64/PKGBUILD (from rev 538480, 
cargo-fuzz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 13:32:29 UTC (rev 538481)
@@ -0,0 +1,33 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-fuzz
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Command line helpers for fuzzing rust"
+url="https://github.com/rust-fuzz/cargo-fuzz;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-fuzz/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('b647e8d68a93eaa099dc1bf5e5e5e57ee8bd0e03f023c1664e6535e2938acfa5b884bc938cccd22d1071021170104fa48177ff6eab86d11cd0d1ecf1835d6aa0')
+b2sums=('a9a778545ea7d9707fb24534684366e71ddcd08fde07626d8f7b3b67d4189eed09abc47c7a7eeaae3919904c6c534005a8d3e6f77b5de592c72a35937eb628da')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # this is broken on linux-hardened
+  #RUSTC_BOOTSTRAP=1 cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in signal-desktop/trunk (PKGBUILD)

2020-02-10 Thread Kpcyrd via arch-commits
Date: Monday, February 10, 2020 @ 23:39:51
  Author: kpcyrd
Revision: 566448

upgpkg: signal-desktop 1.31.0-1

Modified:
  signal-desktop/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-10 23:39:28 UTC (rev 566447)
+++ PKGBUILD2020-02-10 23:39:51 UTC (rev 566448)
@@ -3,7 +3,7 @@
 
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
-pkgver=1.30.1
+pkgver=1.31.0
 pkgrel=1
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
@@ -21,12 +21,12 @@
   # See https://github.com/atom/node-spellchecker/issues/127
   
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
 )
-sha512sums=('612a968e30571d4d3bf9d965a673ecc02bdd0a6def90b8f61a27e25160359862eb6f8fba854f82184e8cb707b04860a6c182951ab6b37f60d05fc374805ef639'
+sha512sums=('198c05c77629bfb8a61a344305302f98120c32fdbffeb1a681b88be721acd34be5ddce5885312d49a7af9c78064cbe177e100742e54191fa68fee040f3f2f785'
 
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
 
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
 
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
 
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('92fd1c182f23db91bf9127fd4b0d0ef075c12d85cb885154b3888a82f3ef224a0a895fe472fb82cceb69a482d64be35c82c4546ca6a1d03a62eb2eef9617c5ac'
+b2sums=('ae79adf74b93ffb8f6f11be9ae94c8bbd1c16d59567b4e5138e617105a4825fda70f3d4d5849c7e4ab485c1b157721f3c70e7f1da248bdaa36ac86f0833c3f12'
 
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
 
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
 
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'


[arch-commits] Commit in signal-desktop/repos/community-x86_64 (10 files)

2020-02-10 Thread Kpcyrd via arch-commits
Date: Monday, February 10, 2020 @ 23:40:28
  Author: kpcyrd
Revision: 566451

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 566449, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 566449, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 566450, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/openssl-linking.patch
(from rev 566450, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 566450, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/openssl-linking.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  186 +-
 expire-from-source-date-epoch.patch |   26 ++--
 openssl-linking.patch   |   38 +++---
 signal-desktop.desktop  |   18 +--
 4 files changed, 134 insertions(+), 134 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-10 23:40:21 UTC (rev 566450)
+++ PKGBUILD2020-02-10 23:40:28 UTC (rev 566451)
@@ -1,93 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.30.1
-pkgrel=1
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-replaces=('signal-desktop-bin')
-arch=('x86_64')
-url="https://signal.org;
-depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
-)
-sha512sums=('612a968e30571d4d3bf9d965a673ecc02bdd0a6def90b8f61a27e25160359862eb6f8fba854f82184e8cb707b04860a6c182951ab6b37f60d05fc374805ef639'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('92fd1c182f23db91bf9127fd4b0d0ef075c12d85cb885154b3888a82f3ef224a0a895fe472fb82cceb69a482d64be35c82c4546ca6a1d03a62eb2eef9617c5ac'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  # Select node-gyp versions with python3 support
-  sed 's#"node-gyp": "5.0.3"#"node-gyp": "6.1.0"#' -i package.json
-  # https://github.com/sass/node-sass/pull/2841
-  # https://github.com/sass/node-sass/issues/2716
-  sed 's#"resolutions": {#"resolutions": {"node-sass/node-gyp": "^6.0.0",#' -i 
package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch 

[arch-commits] Commit in findomain/trunk (PKGBUILD)

2020-02-08 Thread Kpcyrd via arch-commits
Date: Sunday, February 9, 2020 @ 03:51:03
  Author: kpcyrd
Revision: 565054

upgpkg: findomain 1.4.0-1

Modified:
  findomain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-08 23:17:37 UTC (rev 565053)
+++ PKGBUILD2020-02-09 03:51:03 UTC (rev 565054)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=1.3.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3b01e630f69584722283eb49bd4f7af948f1e354987ea4977401322154875e55d2c1b4cc64d17e3f451b64fdffb1517ddfca6658d78c30daecf1ffbe05f4c4c1')
-b2sums=('7354852ee8493ca4ff1af3eaf000350b1c38433d0258ec1a8fb3c1718f3bd6f159fc8a0c2d91794e0a2a4d52159bd69ace7533d725fb33e0e9a63f12f788fe9e')
+sha512sums=('96acff4ef4b0ad7be62f894f8b446987aa9afb101be4e9031381be0ad986180494010a7545bc5034853a8e5a4f271bd00fdc28e7935f5a05bf8ee2de82044cb5')
+b2sums=('3db649b58bcf344cb23d4b0d4a559fb7dff882f42a916dcd0abdebd1474649c07d9998048d3197c10ed91440dc6fb36d9c9586711fac99f461fd616005c6fc94')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in findomain/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-02-08 Thread Kpcyrd via arch-commits
Date: Sunday, February 9, 2020 @ 03:51:20
  Author: kpcyrd
Revision: 565055

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 565054, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-09 03:51:03 UTC (rev 565054)
+++ PKGBUILD2020-02-09 03:51:20 UTC (rev 565055)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3b01e630f69584722283eb49bd4f7af948f1e354987ea4977401322154875e55d2c1b4cc64d17e3f451b64fdffb1517ddfca6658d78c30daecf1ffbe05f4c4c1')
-b2sums=('7354852ee8493ca4ff1af3eaf000350b1c38433d0258ec1a8fb3c1718f3bd6f159fc8a0c2d91794e0a2a4d52159bd69ace7533d725fb33e0e9a63f12f788fe9e')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 565054, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-09 03:51:20 UTC (rev 565055)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('96acff4ef4b0ad7be62f894f8b446987aa9afb101be4e9031381be0ad986180494010a7545bc5034853a8e5a4f271bd00fdc28e7935f5a05bf8ee2de82044cb5')
+b2sums=('3db649b58bcf344cb23d4b0d4a559fb7dff882f42a916dcd0abdebd1474649c07d9998048d3197c10ed91440dc6fb36d9c9586711fac99f461fd616005c6fc94')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in findomain/trunk (PKGBUILD)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 13:26:32
  Author: kpcyrd
Revision: 587468

upgpkg: findomain 1.4.2-1

Modified:
  findomain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-01 13:26:20 UTC (rev 587467)
+++ PKGBUILD2020-03-01 13:26:32 UTC (rev 587468)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('0b81de06e1db0191343cc44965a5fe395fa8583f66ccf7a205bcd09d71a3d8ace3854dc9e69feb037815ad19afe898b1068ac4d530efd613d341514783b56453')
-b2sums=('126a1b271d092b4497209f4dde110a1fe01b7a896563523730cda2421d62b317dffbe7db16d5a66f998ec9570e615906e0cb3b78560b9f0633a68389452a76ef')
+sha512sums=('189f520e92e7c86146789ab66c39cf51308341691b6967a24c9dfab208cc5e1ba869aa538f26ca18f5e6cbefe612e4838fcdfc8744123368554e572c43b84e67')
+b2sums=('392d521cd00a52481dc50e421c2989d7062a5a9198d321c220de34accfb3379f3050275bb4ba2bf2cd438342ae9e766d37cdb072944d36fcf0ef10e4a26a6125')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in findomain/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 13:26:50
  Author: kpcyrd
Revision: 587470

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 587469, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-01 13:26:35 UTC (rev 587469)
+++ PKGBUILD2020-03-01 13:26:50 UTC (rev 587470)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('0b81de06e1db0191343cc44965a5fe395fa8583f66ccf7a205bcd09d71a3d8ace3854dc9e69feb037815ad19afe898b1068ac4d530efd613d341514783b56453')
-b2sums=('126a1b271d092b4497209f4dde110a1fe01b7a896563523730cda2421d62b317dffbe7db16d5a66f998ec9570e615906e0cb3b78560b9f0633a68389452a76ef')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 587469, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-01 13:26:50 UTC (rev 587470)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.4.2
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('189f520e92e7c86146789ab66c39cf51308341691b6967a24c9dfab208cc5e1ba869aa538f26ca18f5e6cbefe612e4838fcdfc8744123368554e572c43b84e67')
+b2sums=('392d521cd00a52481dc50e421c2989d7062a5a9198d321c220de34accfb3379f3050275bb4ba2bf2cd438342ae9e766d37cdb072944d36fcf0ef10e4a26a6125')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in bandwhich/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 13:26:35
  Author: kpcyrd
Revision: 587469

archrelease: copy trunk to community-x86_64

Added:
  bandwhich/repos/community-x86_64/PKGBUILD
(from rev 587468, bandwhich/trunk/PKGBUILD)
Deleted:
  bandwhich/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-01 13:26:32 UTC (rev 587468)
+++ PKGBUILD2020-03-01 13:26:35 UTC (rev 587469)
@@ -1,34 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Aram Drevekenin 
-
-pkgname=bandwhich
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='Terminal bandwidth utilization tool'
-url='https://github.com/imsnif/bandwhich'
-arch=('x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('590308361e131f0675babc7080225bb6a0f75847ce90d7db12fc3d46ed5fc70bc25809668164ab5e2f0f3d60453433b4f551c672aa92e0dad014ed2ecc8e45cd')
-b2sums=('1ccc22e5aaea2838d3dc9fcda07bda4806bb95ed8ee83c5513bbc16cbc18fa94360c090099a3378f3878d3afaa1bd2c5d6de469b69dc1b883ad227976e0c656d')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm 644 "docs/bandwhich.1" -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: bandwhich/repos/community-x86_64/PKGBUILD (from rev 587468, 
bandwhich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-01 13:26:35 UTC (rev 587469)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+# Contributor: Aram Drevekenin 
+
+pkgname=bandwhich
+pkgver=0.12.0
+pkgrel=1
+pkgdesc='Terminal bandwidth utilization tool'
+url='https://github.com/imsnif/bandwhich'
+arch=('x86_64')
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('88024e7021af9cdbb500d74f7864b08a13ff35afd1bf83aeb6487c59ec3c1ff81270d8e32473e0716ae5aa24f6db0f2a92cdcbf04dafdd35b3e03f466b7cbfc0')
+b2sums=('f4c1c920d415b1fb8fa9d448f567418658d2ef936f044dc4971c4e8bca8110724b367a2807c9c1fb45409d7035a2b6852ac2fa0289ed35d305a474c689bde6e4')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm 644 "docs/bandwhich.1" -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in bandwhich/trunk (PKGBUILD)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 13:26:20
  Author: kpcyrd
Revision: 587467

upgpkg: bandwhich 0.12.0-1

Modified:
  bandwhich/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-01 12:12:14 UTC (rev 587466)
+++ PKGBUILD2020-03-01 13:26:20 UTC (rev 587467)
@@ -2,7 +2,7 @@
 # Contributor: Aram Drevekenin 
 
 pkgname=bandwhich
-pkgver=0.11.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc='Terminal bandwidth utilization tool'
 url='https://github.com/imsnif/bandwhich'
@@ -11,8 +11,8 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 
source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('590308361e131f0675babc7080225bb6a0f75847ce90d7db12fc3d46ed5fc70bc25809668164ab5e2f0f3d60453433b4f551c672aa92e0dad014ed2ecc8e45cd')
-b2sums=('1ccc22e5aaea2838d3dc9fcda07bda4806bb95ed8ee83c5513bbc16cbc18fa94360c090099a3378f3878d3afaa1bd2c5d6de469b69dc1b883ad227976e0c656d')
+sha512sums=('88024e7021af9cdbb500d74f7864b08a13ff35afd1bf83aeb6487c59ec3c1ff81270d8e32473e0716ae5aa24f6db0f2a92cdcbf04dafdd35b3e03f466b7cbfc0')
+b2sums=('f4c1c920d415b1fb8fa9d448f567418658d2ef936f044dc4971c4e8bca8110724b367a2807c9c1fb45409d7035a2b6852ac2fa0289ed35d305a474c689bde6e4')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in yggdrasil/trunk (PKGBUILD)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 12:12:01
  Author: kpcyrd
Revision: 587465

go 1.14 rebuild

Modified:
  yggdrasil/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-01 11:58:13 UTC (rev 587464)
+++ PKGBUILD2020-03-01 12:12:01 UTC (rev 587465)
@@ -3,7 +3,7 @@
 
 pkgname=yggdrasil
 pkgver=0.3.13
-pkgrel=1
+pkgrel=2
 pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
 arch=('x86_64')
 url="https://github.com/yggdrasil-network/yggdrasil-go;


[arch-commits] Commit in yggdrasil/repos/community-x86_64 (4 files)

2020-03-01 Thread Kpcyrd via arch-commits
Date: Sunday, March 1, 2020 @ 12:12:14
  Author: kpcyrd
Revision: 587466

archrelease: copy trunk to community-x86_64

Added:
  yggdrasil/repos/community-x86_64/PKGBUILD
(from rev 587465, yggdrasil/trunk/PKGBUILD)
  yggdrasil/repos/community-x86_64/yggdrasil.sysusers
(from rev 587465, yggdrasil/trunk/yggdrasil.sysusers)
Deleted:
  yggdrasil/repos/community-x86_64/PKGBUILD
  yggdrasil/repos/community-x86_64/yggdrasil.sysusers

+
 PKGBUILD   |   74 +--
 yggdrasil.sysusers |4 +-
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-01 12:12:01 UTC (rev 587465)
+++ PKGBUILD2020-03-01 12:12:14 UTC (rev 587466)
@@ -1,37 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Knut Ahlers 
-
-pkgname=yggdrasil
-pkgver=0.3.13
-pkgrel=1
-pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
-arch=('x86_64')
-url="https://github.com/yggdrasil-network/yggdrasil-go;
-license=('LGPL3')
-depends=('glibc')
-makedepends=('go-pie')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/yggdrasil-network/yggdrasil-go/archive/v${pkgver}.tar.gz;
-'yggdrasil.sysusers')
-sha512sums=('d3a4d4de62bbcb910a4de179e571b1ce11345560728e2b9b1fe30df12aee04703de832b5d6065d52c247fd5e2e79a2a9a5696d948622ffb2cd8bd861825c7dd5'
-
'b78d1f5efeeba184588ba7bdb2249d976aec160daa59742e032983da1aedad062d15c7c97cba3eba69412a0f7904ee123d98b58f859892d71188c25624295c32')
-b2sums=('93cf134cdf5ef1467ab897b5c85f38bef1de3e5759ad9d66fa139f708a3139c3dabca52f6d0bac58635015cc4618016cb6ed20ad49c4ce56b7df27511834b520'
-
'3cf5bfb3c09908f841b39f7206bb472e50e60f10d1b87ab6def97a7212e27627f1e795bbaffd964d2d27a80fbbd1a3be63d63c59793ec1967c02f48b8462c08b')
-
-build() {
-  cd "${pkgname}-go-${pkgver}"
-  PKGNAME="${pkgname}" PKGVER="${pkgver}" \
-CGO_LDFLAGS="${LDFLAGS}" \
-GOFLAGS="-trimpath" \
-./build
-}
-
-package() {
-  cd "${pkgname}-go-${pkgver}"
-  install -Dm755 "yggdrasil" "${pkgdir}/usr/bin/yggdrasil"
-  install -Dm755 "yggdrasilctl" "${pkgdir}/usr/bin/yggdrasilctl"
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm644 contrib/systemd/yggdrasil.service -t 
"${pkgdir}/usr/lib/systemd/system"
-  install -Dm644 "${srcdir}/yggdrasil.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/yggdrasil.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yggdrasil/repos/community-x86_64/PKGBUILD (from rev 587465, 
yggdrasil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-01 12:12:14 UTC (rev 587466)
@@ -0,0 +1,37 @@
+# Maintainer: kpcyrd 
+# Contributor: Knut Ahlers 
+
+pkgname=yggdrasil
+pkgver=0.3.13
+pkgrel=2
+pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
+arch=('x86_64')
+url="https://github.com/yggdrasil-network/yggdrasil-go;
+license=('LGPL3')
+depends=('glibc')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/yggdrasil-network/yggdrasil-go/archive/v${pkgver}.tar.gz;
+'yggdrasil.sysusers')
+sha512sums=('d3a4d4de62bbcb910a4de179e571b1ce11345560728e2b9b1fe30df12aee04703de832b5d6065d52c247fd5e2e79a2a9a5696d948622ffb2cd8bd861825c7dd5'
+
'b78d1f5efeeba184588ba7bdb2249d976aec160daa59742e032983da1aedad062d15c7c97cba3eba69412a0f7904ee123d98b58f859892d71188c25624295c32')
+b2sums=('93cf134cdf5ef1467ab897b5c85f38bef1de3e5759ad9d66fa139f708a3139c3dabca52f6d0bac58635015cc4618016cb6ed20ad49c4ce56b7df27511834b520'
+
'3cf5bfb3c09908f841b39f7206bb472e50e60f10d1b87ab6def97a7212e27627f1e795bbaffd964d2d27a80fbbd1a3be63d63c59793ec1967c02f48b8462c08b')
+
+build() {
+  cd "${pkgname}-go-${pkgver}"
+  PKGNAME="${pkgname}" PKGVER="${pkgver}" \
+CGO_LDFLAGS="${LDFLAGS}" \
+GOFLAGS="-trimpath" \
+./build
+}
+
+package() {
+  cd "${pkgname}-go-${pkgver}"
+  install -Dm755 "yggdrasil" "${pkgdir}/usr/bin/yggdrasil"
+  install -Dm755 "yggdrasilctl" "${pkgdir}/usr/bin/yggdrasilctl"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm644 contrib/systemd/yggdrasil.service -t 
"${pkgdir}/usr/lib/systemd/system"
+  install -Dm644 "${srcdir}/yggdrasil.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/yggdrasil.conf"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: yggdrasil.sysusers
===
--- yggdrasil.sysusers  2020-03-01 12:12:01 UTC (rev 587465)
+++ yggdrasil.sysusers  2020-03-01 12:12:14 UTC (rev 587466)
@@ -1,2 +0,0 @@
-#Type Name  ID  GECOS Home directory Shell
-g yggdrasil -   -

Copied: yggdrasil/repos/community-x86_64/yggdrasil.sysusers (from rev 587465, 
yggdrasil/trunk/yggdrasil.sysusers)
===
--- yggdrasil.sysusers

[arch-commits] Commit in bitcoin/trunk (PKGBUILD)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 11:40:21
  Author: kpcyrd
Revision: 590706

upgpkg: bitcoin 0.19.1-1

Modified:
  bitcoin/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 4 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-05 11:12:11 UTC (rev 590705)
+++ PKGBUILD2020-03-05 11:40:21 UTC (rev 590706)
@@ -7,22 +7,19 @@
 #_dbver=4.8.30
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.19.0.1
-pkgrel=2
+pkgver=0.19.1
+pkgrel=1
 arch=('x86_64')
 url="https://www.bitcoin.org/;
 makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')
 license=('MIT')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz;
-
"$pkgname-boost-1.72.patch::https://github.com/bitcoin/bitcoin/commit/a64e97dd476b.patch;
 "bitcoin.sysusers"
 "bitcoin.tmpfiles")
-sha256sums=('1a72f583f7448b3808d84ed7f8d8eb224f44b51291fee774bb9cecbd4fcbaec7'
-'7881fce02696f64f03796ce3d09433e4dd029b32204d7f6c290a62fcce6b018d'
+sha256sums=('3b9d582ba36b50955f6dfad12cdf139462d19ad30604b49766dc2ca21a1a322c'
 '7a77112fb094b9b2e6dd873e24c9a6bacb1f1c453d811a024f271f4b78f2a704'
 'ba83570b4671b18c230f23d8d93cd8faa73179a546655448c14d1644d9b49f35')
-b2sums=('393b30ae9fe1acb62a0a45ad53cbd860b81972de21b85464e5651d828075e1bfeaafb96b190249124c9b73ab05ada318b4adf44db4a6701e2d3916676bc54e84'
-
'4d0b347cdf3b6e647f2dac727e22fcda2828d3828805af4547f13260f840dfed70cdecc2a1a99fbd8381901d36878e81426abb8f590de6c3536bcc7719ff2854'
+b2sums=('a5d256fa3454ecbf8363d47cf768f6a4b3803336b020ffed57bd018afce1b8d614ceb6ffaa4e3cd735ba3c0e992cc0de6970d67bec46d140e9f73c7a00480220'
 
'25166f5726b43c531b7ba5f58aaf1c0242d26b96d2057da156024a8f9fc53702ea9ef0c67290cf8d302b9fb473cb16435dc2fe4489ebc5d0eae516635fd81c0e'
 
'45d4703b78476cb1c5748f62863914e5397858c835e43cee2f4895608dbabf383993b840bb3ec2d4d2c64ca02152881ad4b495b28f94451f706687b83e99d2af')
 validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
@@ -31,9 +28,6 @@
 prepare() {
   cd "$pkgbase-$pkgver"
   autoreconf -fi
-
-  # https://github.com/bitcoin/bitcoin/issues/17856
-  patch -Np1 -i ../$pkgname-boost-1.72.patch
 }
 
 build() {


[arch-commits] Commit in bitcoin/repos/community-x86_64 (8 files)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 11:40:35
  Author: kpcyrd
Revision: 590707

archrelease: copy trunk to community-x86_64

Added:
  bitcoin/repos/community-x86_64/Changelog
(from rev 590706, bitcoin/trunk/Changelog)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 590706, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin.sysusers
(from rev 590706, bitcoin/trunk/bitcoin.sysusers)
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles
(from rev 590706, bitcoin/trunk/bitcoin.tmpfiles)
Deleted:
  bitcoin/repos/community-x86_64/Changelog
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin.sysusers
  bitcoin/repos/community-x86_64/bitcoin.tmpfiles

--+
 Changelog|2 
 PKGBUILD |  214 +
 bitcoin.sysusers |2 
 bitcoin.tmpfiles |4 
 4 files changed, 108 insertions(+), 114 deletions(-)

Deleted: Changelog
===
--- Changelog   2020-03-05 11:40:21 UTC (rev 590706)
+++ Changelog   2020-03-05 11:40:35 UTC (rev 590707)
@@ -1 +0,0 @@
-https://bitcoincore.org/en/releases/0.19.0.1/

Copied: bitcoin/repos/community-x86_64/Changelog (from rev 590706, 
bitcoin/trunk/Changelog)
===
--- Changelog   (rev 0)
+++ Changelog   2020-03-05 11:40:35 UTC (rev 590707)
@@ -0,0 +1 @@
+https://bitcoincore.org/en/releases/0.19.0.1/

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-05 11:40:21 UTC (rev 590706)
+++ PKGBUILD2020-03-05 11:40:35 UTC (rev 590707)
@@ -1,110 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: kpcyrd 
-# Contributor: Timothy Redaelli 
-# Contributor: shahid 
-# Contributor: James Harvey
-
-#_dbver=4.8.30
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.19.0.1
-pkgrel=2
-arch=('x86_64')
-url="https://www.bitcoin.org/;
-makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')
-license=('MIT')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz;
-
"$pkgname-boost-1.72.patch::https://github.com/bitcoin/bitcoin/commit/a64e97dd476b.patch;
-"bitcoin.sysusers"
-"bitcoin.tmpfiles")
-sha256sums=('1a72f583f7448b3808d84ed7f8d8eb224f44b51291fee774bb9cecbd4fcbaec7'
-'7881fce02696f64f03796ce3d09433e4dd029b32204d7f6c290a62fcce6b018d'
-'7a77112fb094b9b2e6dd873e24c9a6bacb1f1c453d811a024f271f4b78f2a704'
-'ba83570b4671b18c230f23d8d93cd8faa73179a546655448c14d1644d9b49f35')
-b2sums=('393b30ae9fe1acb62a0a45ad53cbd860b81972de21b85464e5651d828075e1bfeaafb96b190249124c9b73ab05ada318b4adf44db4a6701e2d3916676bc54e84'
-
'4d0b347cdf3b6e647f2dac727e22fcda2828d3828805af4547f13260f840dfed70cdecc2a1a99fbd8381901d36878e81426abb8f590de6c3536bcc7719ff2854'
-
'25166f5726b43c531b7ba5f58aaf1c0242d26b96d2057da156024a8f9fc53702ea9ef0c67290cf8d302b9fb473cb16435dc2fe4489ebc5d0eae516635fd81c0e'
-
'45d4703b78476cb1c5748f62863914e5397858c835e43cee2f4895608dbabf383993b840bb3ec2d4d2c64ca02152881ad4b495b28f94451f706687b83e99d2af')
-validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
-changelog=Changelog
-
-prepare() {
-  cd "$pkgbase-$pkgver"
-  autoreconf -fi
-
-  # https://github.com/bitcoin/bitcoin/issues/17856
-  patch -Np1 -i ../$pkgname-boost-1.72.patch
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr --with-gui=qt5 --with-incompatible-bdb 
#LDFLAGS="-L$srcdir/db4/lib/ $LDFLAGS" CPPFLAGS="-I$srcdir/db4/include/ 
$CPPFLAGS"
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - Qt"
-  depends=(boost-libs libevent qt5-base miniupnpc libminiupnpc.so qrencode 
protobuf zeromq)
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/qt/bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt
-  install -Dm644 doc/man/bitcoin-qt.1 \
-"$pkgdir"/usr/share/man/man1/bitcoin-qt.1
-  install -Dm644 share/pixmaps/bitcoin128.png \
-"$pkgdir"/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-daemon() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon"
-  depends=(boost-libs libevent miniupnpc libminiupnpc.so zeromq)
-  backup=('etc/bitcoin/bitcoin.conf')
-
-  cd $pkgbase-$pkgver
-  install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind
-  install -Dm644 contrib/bitcoind.bash-completion \
-"$pkgdir"/usr/share/bash-completion/completions/bitcoind
-  install -Dm644 doc/man/bitcoind.1 \
-"$pkgdir"/usr/share/man/man1/bitcoind.1
-  install -Dm644 contrib/init/bitcoind.service \
-"$pkgdir/usr/lib/systemd/system/bitcoind.service"
-  install -Dm644 "$srcdir/bitcoin.sysusers" \
-"$pkgdir/usr/lib/sysusers.d/bitcoin.conf"
-  

[arch-commits] Commit in signal-desktop/trunk (PKGBUILD)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 11:11:55
  Author: kpcyrd
Revision: 590704

upgpkg: signal-desktop 1.32.0-1

Modified:
  signal-desktop/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-05 11:00:22 UTC (rev 590703)
+++ PKGBUILD2020-03-05 11:11:55 UTC (rev 590704)
@@ -3,8 +3,8 @@
 
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
-pkgver=1.31.0
-pkgrel=2
+pkgver=1.32.0
+pkgrel=1
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
 replaces=('signal-desktop-bin')
@@ -21,12 +21,12 @@
   # See https://github.com/atom/node-spellchecker/issues/127
   
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
 )
-sha512sums=('198c05c77629bfb8a61a344305302f98120c32fdbffeb1a681b88be721acd34be5ddce5885312d49a7af9c78064cbe177e100742e54191fa68fee040f3f2f785'
+sha512sums=('b872eb3480b2faf6a2fbb6bd91154405ed9daa52ccf3a48a030cdf35ffaa1948b74c35e59249352776a4fd553e95e63d20088055fbd4f133bfb7b4ab161b1491'
 
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
 
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
 
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
 
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('ae79adf74b93ffb8f6f11be9ae94c8bbd1c16d59567b4e5138e617105a4825fda70f3d4d5849c7e4ab485c1b157721f3c70e7f1da248bdaa36ac86f0833c3f12'
+b2sums=('cbfe95fe6317a012bcb3600f67ac9b92f5fdf1906b5e426b0ac89e808f1a2328ea8d7679bf9c5732ecc19b3e30429308e0acb1f9fd9b2018279126838d87684b'
 
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
 
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
 
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'


[arch-commits] Commit in signal-desktop/repos/community-x86_64 (10 files)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 11:12:11
  Author: kpcyrd
Revision: 590705

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 590704, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 590704, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 590704, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/openssl-linking.patch
(from rev 590704, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 590704, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/openssl-linking.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  186 +-
 expire-from-source-date-epoch.patch |   26 ++--
 openssl-linking.patch   |   38 +++---
 signal-desktop.desktop  |   18 +--
 4 files changed, 134 insertions(+), 134 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-05 11:11:55 UTC (rev 590704)
+++ PKGBUILD2020-03-05 11:12:11 UTC (rev 590705)
@@ -1,93 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.31.0
-pkgrel=2
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-replaces=('signal-desktop-bin')
-arch=('x86_64')
-url="https://signal.org;
-depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
-)
-sha512sums=('198c05c77629bfb8a61a344305302f98120c32fdbffeb1a681b88be721acd34be5ddce5885312d49a7af9c78064cbe177e100742e54191fa68fee040f3f2f785'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('ae79adf74b93ffb8f6f11be9ae94c8bbd1c16d59567b4e5138e617105a4825fda70f3d4d5849c7e4ab485c1b157721f3c70e7f1da248bdaa36ac86f0833c3f12'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  # Select node-gyp versions with python3 support
-  sed 's#"node-gyp": "5.0.3"#"node-gyp": "6.1.0"#' -i package.json
-  # https://github.com/sass/node-sass/pull/2841
-  # https://github.com/sass/node-sass/issues/2716
-  sed 's#"resolutions": {#"resolutions": {"node-sass/node-gyp": "^6.0.0",#' -i 
package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch 

[arch-commits] Commit in cargo-outdated/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 15:27:46
  Author: kpcyrd
Revision: 590757

archrelease: copy trunk to community-x86_64

Added:
  cargo-outdated/repos/community-x86_64/PKGBUILD
(from rev 590756, cargo-outdated/trunk/PKGBUILD)
Deleted:
  cargo-outdated/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-05 15:27:33 UTC (rev 590756)
+++ PKGBUILD2020-03-05 15:27:46 UTC (rev 590757)
@@ -1,29 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jian Zeng 
-# Contributor: Alexandre Bury 
-# Contributor: Vlad M. 
-
-pkgname=cargo-outdated
-pkgver=0.9.5
-pkgrel=1
-pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
-url="https://github.com/kbknapp/cargo-outdated;
-arch=('x86_64')
-license=('MIT')
-depends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
-sha256sums=('49cfd916c210a82c7345f7aa52c498a4dbc4065c393b4e2988b65117046ae677')
-b2sums=('480d755a8bd6fce27bfa2cc46512280cd74bf3181d3c040036af2cb96da8a36ff5ac4dfc1d69a75172657deba3ca454ae300c364e00e3d163751eb6f2251b237')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-outdated/repos/community-x86_64/PKGBUILD (from rev 590756, 
cargo-outdated/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-05 15:27:46 UTC (rev 590757)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Jian Zeng 
+# Contributor: Alexandre Bury 
+# Contributor: Vlad M. 
+
+pkgname=cargo-outdated
+pkgver=0.9.7
+pkgrel=1
+pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
+url="https://github.com/kbknapp/cargo-outdated;
+arch=('x86_64')
+license=('MIT')
+depends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
+sha256sums=('47e858867ceef1aa393a3e68bf4d8aad862eafee563b854237e838cdce55da1d')
+b2sums=('de284880960f0d34a1f31239cbafb6e03b9acf6d27f36f0c8f769ac53053a47a88eaaae8fd1de17336d38fa59dd6d181ab113c540129bccfcf51c6421f24a082')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-outdated/trunk (PKGBUILD)

2020-03-05 Thread Kpcyrd via arch-commits
Date: Thursday, March 5, 2020 @ 15:27:33
  Author: kpcyrd
Revision: 590756

upgpkg: cargo-outdated 0.9.7-1

Modified:
  cargo-outdated/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-05 15:25:23 UTC (rev 590755)
+++ PKGBUILD2020-03-05 15:27:33 UTC (rev 590756)
@@ -4,7 +4,7 @@
 # Contributor: Vlad M. 
 
 pkgname=cargo-outdated
-pkgver=0.9.5
+pkgver=0.9.7
 pkgrel=1
 pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
 url="https://github.com/kbknapp/cargo-outdated;
@@ -12,8 +12,8 @@
 license=('MIT')
 depends=('cargo')
 
source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
-sha256sums=('49cfd916c210a82c7345f7aa52c498a4dbc4065c393b4e2988b65117046ae677')
-b2sums=('480d755a8bd6fce27bfa2cc46512280cd74bf3181d3c040036af2cb96da8a36ff5ac4dfc1d69a75172657deba3ca454ae300c364e00e3d163751eb6f2251b237')
+sha256sums=('47e858867ceef1aa393a3e68bf4d8aad862eafee563b854237e838cdce55da1d')
+b2sums=('de284880960f0d34a1f31239cbafb6e03b9acf6d27f36f0c8f769ac53053a47a88eaaae8fd1de17336d38fa59dd6d181ab113c540129bccfcf51c6421f24a082')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in (4 files)

2020-03-03 Thread Kpcyrd via arch-commits
Date: Tuesday, March 3, 2020 @ 22:58:45
  Author: kpcyrd
Revision: 589861

addpkg: torbrowser-launcher 0.3.2-2

Added:
  torbrowser-launcher/
  torbrowser-launcher/repos/
  torbrowser-launcher/trunk/
  torbrowser-launcher/trunk/PKGBUILD

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: torbrowser-launcher/trunk/PKGBUILD
===
--- torbrowser-launcher/trunk/PKGBUILD  (rev 0)
+++ torbrowser-launcher/trunk/PKGBUILD  2020-03-03 22:58:45 UTC (rev 589861)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+
+pkgname=torbrowser-launcher
+pkgver=0.3.2
+pkgrel=2
+pkgdesc="Securely and easily download, verify, install, and launch Tor Browser 
in Linux"
+url="https://github.com/micahflee/torbrowser-launcher;
+depends=('python' 'python-pyqt5' 'python-requests' 'python-pysocks' 
'python-gpgme' 'gnupg' 'tor')
+makedepends=('python-setuptools' 'python-distro')
+optdepends=('apparmor: support for apparmor profiles')
+arch=('any')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/micahflee/torbrowser-launcher/archive/v${pkgver}.tar.gz;
+
"https://github.com/micahflee/torbrowser-launcher/pull/444/commits/66781d299d9dfd812c7aca9a04de7ea37f4d57e2.patch;)
+sha512sums=('26c5517723c730591ea5c4b81e30728e9db7323afcafc99d17a178d4300bad3df8731ffb063cc53fe189a3b5e2872395c913b9eea6595acac7f31ff4a1c5f105'
+
'af8110da76a2d5763a158c436e712e1929b7524de129b4b3d09d7175df3ba45731a3924480415902cb5b27d1885bbc64c09fb4416367e2aa461e7c0ba3443b3e')
+b2sums=('b3e35f546ef84aec02a3b75068b08a6d60f9f41f6194d1bf25862c48780f77d72e4443e594add04c5a0d44cf01bcfc8c04d6d7d67c767c2cc75cc8b4a9c42f9c'
+
'198da65696d6586f8fe279c8161f18e335ee8677c3a1026fda47933046313955648567d24fdfb01cbf533bab31a6526da0adb8861782079e151705011d9afd94')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch --forward --strip=1 
--input="${srcdir}/66781d299d9dfd812c7aca9a04de7ea37f4d57e2.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in torbrowser-launcher/repos (2 files)

2020-03-03 Thread Kpcyrd via arch-commits
Date: Tuesday, March 3, 2020 @ 22:59:05
  Author: kpcyrd
Revision: 589862

archrelease: copy trunk to community-any

Added:
  torbrowser-launcher/repos/community-any/
  torbrowser-launcher/repos/community-any/PKGBUILD
(from rev 589861, torbrowser-launcher/trunk/PKGBUILD)

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Copied: torbrowser-launcher/repos/community-any/PKGBUILD (from rev 589861, 
torbrowser-launcher/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-03-03 22:59:05 UTC (rev 589862)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+
+pkgname=torbrowser-launcher
+pkgver=0.3.2
+pkgrel=2
+pkgdesc="Securely and easily download, verify, install, and launch Tor Browser 
in Linux"
+url="https://github.com/micahflee/torbrowser-launcher;
+depends=('python' 'python-pyqt5' 'python-requests' 'python-pysocks' 
'python-gpgme' 'gnupg' 'tor')
+makedepends=('python-setuptools' 'python-distro')
+optdepends=('apparmor: support for apparmor profiles')
+arch=('any')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/micahflee/torbrowser-launcher/archive/v${pkgver}.tar.gz;
+
"https://github.com/micahflee/torbrowser-launcher/pull/444/commits/66781d299d9dfd812c7aca9a04de7ea37f4d57e2.patch;)
+sha512sums=('26c5517723c730591ea5c4b81e30728e9db7323afcafc99d17a178d4300bad3df8731ffb063cc53fe189a3b5e2872395c913b9eea6595acac7f31ff4a1c5f105'
+
'af8110da76a2d5763a158c436e712e1929b7524de129b4b3d09d7175df3ba45731a3924480415902cb5b27d1885bbc64c09fb4416367e2aa461e7c0ba3443b3e')
+b2sums=('b3e35f546ef84aec02a3b75068b08a6d60f9f41f6194d1bf25862c48780f77d72e4443e594add04c5a0d44cf01bcfc8c04d6d7d67c767c2cc75cc8b4a9c42f9c'
+
'198da65696d6586f8fe279c8161f18e335ee8677c3a1026fda47933046313955648567d24fdfb01cbf533bab31a6526da0adb8861782079e151705011d9afd94')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch --forward --strip=1 
--input="${srcdir}/66781d299d9dfd812c7aca9a04de7ea37f4d57e2.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in signal-desktop/trunk (PKGBUILD)

2020-01-23 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 01:23:50
  Author: kpcyrd
Revision: 555275

Add missing libvips dependency

Modified:
  signal-desktop/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-24 00:59:57 UTC (rev 555274)
+++ PKGBUILD2020-01-24 01:23:50 UTC (rev 555275)
@@ -9,7 +9,7 @@
 license=('GPL3')
 arch=('x86_64')
 url="https://signal.org;
-depends=('electron')
+depends=('electron' 'libvips')
 makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
 source=(
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;


[arch-commits] Commit in signal-desktop/repos/community-testing-x86_64 (10 files)

2020-01-23 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 01:24:06
  Author: kpcyrd
Revision: 555276

archrelease: copy trunk to community-testing-x86_64

Added:
  signal-desktop/repos/community-testing-x86_64/PKGBUILD
(from rev 555275, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-testing-x86_64/TRADEMARK_CONSENT.txt
(from rev 555275, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  
signal-desktop/repos/community-testing-x86_64/expire-from-source-date-epoch.patch
(from rev 555275, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-testing-x86_64/openssl-linking.patch
(from rev 555275, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-testing-x86_64/signal-desktop.desktop
(from rev 555275, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-testing-x86_64/PKGBUILD
  signal-desktop/repos/community-testing-x86_64/TRADEMARK_CONSENT.txt
  
signal-desktop/repos/community-testing-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-testing-x86_64/openssl-linking.patch
  signal-desktop/repos/community-testing-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  172 +-
 expire-from-source-date-epoch.patch |   26 ++---
 openssl-linking.patch   |   38 +++
 signal-desktop.desktop  |   18 +--
 4 files changed, 127 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-24 01:23:50 UTC (rev 555275)
+++ PKGBUILD2020-01-24 01:24:06 UTC (rev 555276)
@@ -1,86 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.30.0
-pkgrel=1
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-arch=('x86_64')
-url="https://signal.org;
-depends=('electron')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
-)
-sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
-}
-
-build() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Gruntfile expects Git commit information which we don't have in a tarball 
download
-  # See 

[arch-commits] Commit in cargo-audit/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-25 Thread Kpcyrd via arch-commits
Date: Saturday, January 25, 2020 @ 21:16:07
  Author: kpcyrd
Revision: 66

archrelease: copy trunk to community-x86_64

Added:
  cargo-audit/repos/community-x86_64/PKGBUILD
(from rev 65, cargo-audit/trunk/PKGBUILD)
Deleted:
  cargo-audit/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   61 +++--
 1 file changed, 31 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-25 21:15:56 UTC (rev 65)
+++ PKGBUILD2020-01-25 21:16:07 UTC (rev 66)
@@ -1,30 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=cargo-audit
-pkgver=0.10.0
-pkgrel=2
-pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
-url="https://github.com/RustSec/cargo-audit;
-depends=('cargo')
-arch=('x86_64')
-license=('MIT' 'APACHE')
-source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('1f7b80d4748e71a8952fa8209c6384586a2e3b1a1065a3853da560a27a3f7991')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-audit/repos/community-x86_64/PKGBUILD (from rev 65, 
cargo-audit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-25 21:16:07 UTC (rev 66)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-audit
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
+url="https://github.com/RustSec/cargo-audit;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('a6aafef957e8585ce03c3bd147a78a2044591dffac9e2ae3d9a5305238248ab5')
+b2sums=('75790dc81b94a3a67a8291d3f5006ac9fd5c868cc74708086c7bcc821017d7ee6002dcbf574a72eb4def5e00c8163263c4e6fc227ff732cc59303f6a8367b84a')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-audit/trunk (PKGBUILD)

2020-01-25 Thread Kpcyrd via arch-commits
Date: Saturday, January 25, 2020 @ 21:15:56
  Author: kpcyrd
Revision: 65

upgpkg: cargo-audit 0.11.0-1

Modified:
  cargo-audit/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-25 21:11:27 UTC (rev 64)
+++ PKGBUILD2020-01-25 21:15:56 UTC (rev 65)
@@ -1,8 +1,8 @@
 # Maintainer: kpcyrd 
 
 pkgname=cargo-audit
-pkgver=0.10.0
-pkgrel=2
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
 url="https://github.com/RustSec/cargo-audit;
 depends=('cargo')
@@ -9,7 +9,8 @@
 arch=('x86_64')
 license=('MIT' 'APACHE')
 
source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('1f7b80d4748e71a8952fa8209c6384586a2e3b1a1065a3853da560a27a3f7991')
+sha256sums=('a6aafef957e8585ce03c3bd147a78a2044591dffac9e2ae3d9a5305238248ab5')
+b2sums=('75790dc81b94a3a67a8291d3f5006ac9fd5c868cc74708086c7bcc821017d7ee6002dcbf574a72eb4def5e00c8163263c4e6fc227ff732cc59303f6a8367b84a')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in bandwhich/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-25 Thread Kpcyrd via arch-commits
Date: Saturday, January 25, 2020 @ 22:06:27
  Author: kpcyrd
Revision: 76

archrelease: copy trunk to community-x86_64

Added:
  bandwhich/repos/community-x86_64/PKGBUILD
(from rev 75, bandwhich/trunk/PKGBUILD)
Deleted:
  bandwhich/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-25 22:06:16 UTC (rev 75)
+++ PKGBUILD2020-01-25 22:06:27 UTC (rev 76)
@@ -1,34 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Aram Drevekenin 
-
-pkgname=bandwhich
-pkgver=0.10.0
-pkgrel=1
-pkgdesc='Terminal bandwidth utilization tool'
-url='https://github.com/imsnif/bandwhich'
-arch=('x86_64')
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a0145983bd3579d2df6880649748005096f9c7531e6da9e6f10c712f160ed9a4fb02878afa0bc44afbcd60ec1bff3880d4dd26a99d59332c443ece6e5790ac03')
-b2sums=('ec5b072caae6a7215a0fb141ebadc303ff1a555c3493870d4e9492c823c4f878813922be89ce338b44699855dc5c6f0c654098c6677d5c91c0148caced1e8702')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm 644 "docs/bandwhich.1" -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: bandwhich/repos/community-x86_64/PKGBUILD (from rev 75, 
bandwhich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-25 22:06:27 UTC (rev 76)
@@ -0,0 +1,34 @@
+# Maintainer: kpcyrd 
+# Contributor: Aram Drevekenin 
+
+pkgname=bandwhich
+pkgver=0.11.0
+pkgrel=1
+pkgdesc='Terminal bandwidth utilization tool'
+url='https://github.com/imsnif/bandwhich'
+arch=('x86_64')
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('590308361e131f0675babc7080225bb6a0f75847ce90d7db12fc3d46ed5fc70bc25809668164ab5e2f0f3d60453433b4f551c672aa92e0dad014ed2ecc8e45cd')
+b2sums=('1ccc22e5aaea2838d3dc9fcda07bda4806bb95ed8ee83c5513bbc16cbc18fa94360c090099a3378f3878d3afaa1bd2c5d6de469b69dc1b883ad227976e0c656d')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm 644 "docs/bandwhich.1" -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in bandwhich/trunk (PKGBUILD)

2020-01-25 Thread Kpcyrd via arch-commits
Date: Saturday, January 25, 2020 @ 22:06:16
  Author: kpcyrd
Revision: 75

upgpkg: bandwhich 0.11.0-1

Modified:
  bandwhich/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-25 22:01:25 UTC (rev 74)
+++ PKGBUILD2020-01-25 22:06:16 UTC (rev 75)
@@ -2,7 +2,7 @@
 # Contributor: Aram Drevekenin 
 
 pkgname=bandwhich
-pkgver=0.10.0
+pkgver=0.11.0
 pkgrel=1
 pkgdesc='Terminal bandwidth utilization tool'
 url='https://github.com/imsnif/bandwhich'
@@ -11,8 +11,8 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 
source=(https://github.com/imsnif/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a0145983bd3579d2df6880649748005096f9c7531e6da9e6f10c712f160ed9a4fb02878afa0bc44afbcd60ec1bff3880d4dd26a99d59332c443ece6e5790ac03')
-b2sums=('ec5b072caae6a7215a0fb141ebadc303ff1a555c3493870d4e9492c823c4f878813922be89ce338b44699855dc5c6f0c654098c6677d5c91c0148caced1e8702')
+sha512sums=('590308361e131f0675babc7080225bb6a0f75847ce90d7db12fc3d46ed5fc70bc25809668164ab5e2f0f3d60453433b4f551c672aa92e0dad014ed2ecc8e45cd')
+b2sums=('1ccc22e5aaea2838d3dc9fcda07bda4806bb95ed8ee83c5513bbc16cbc18fa94360c090099a3378f3878d3afaa1bd2c5d6de469b69dc1b883ad227976e0c656d')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in findomain/trunk (PKGBUILD)

2020-01-24 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 14:27:53
  Author: kpcyrd
Revision: 555335

upgpkg: findomain 1.0.0-1

Modified:
  findomain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-24 13:35:20 UTC (rev 555334)
+++ PKGBUILD2020-01-24 14:27:53 UTC (rev 555335)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=0.9.9
+pkgver=1.0.0
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3ac83c8a2aba530c4be378f2d09ab0730ddaab8fb0d23ad4e9417cc9b3c8c32661d798476928fafc5173767480268fe867abc7d772c44daca93d8181042e')
-b2sums=('efb348b3982504b33ffccbcef143b3b88aae1e6e8e8b06f2cad2c1e83c6231b2f8f39937fe20f8c5c5d289c747e2e917310cb87bb9308a53451b3eb6d51de7c0')
+sha512sums=('f056d26be20ed312fa7c7713c656c34915b4bf87888e878bb9b0de379fee81fcc797994077f4de45fdab0b382151de04448fe078447179fb59115d2d9ff6785e')
+b2sums=('a71ca70430d85106afd195d2c2e3ee945cd0c3d322e59a9f597b56b444ce726b1bf67fac8997cc60dd8e52d2cf51a1bcb8e2b3b59af2cec306d93784fe8f9f42')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in findomain/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-24 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 14:28:04
  Author: kpcyrd
Revision: 555336

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 555335, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-24 14:27:53 UTC (rev 555335)
+++ PKGBUILD2020-01-24 14:28:04 UTC (rev 555336)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=0.9.9
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3ac83c8a2aba530c4be378f2d09ab0730ddaab8fb0d23ad4e9417cc9b3c8c32661d798476928fafc5173767480268fe867abc7d772c44daca93d8181042e')
-b2sums=('efb348b3982504b33ffccbcef143b3b88aae1e6e8e8b06f2cad2c1e83c6231b2f8f39937fe20f8c5c5d289c747e2e917310cb87bb9308a53451b3eb6d51de7c0')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 555335, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-24 14:28:04 UTC (rev 555336)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f056d26be20ed312fa7c7713c656c34915b4bf87888e878bb9b0de379fee81fcc797994077f4de45fdab0b382151de04448fe078447179fb59115d2d9ff6785e')
+b2sums=('a71ca70430d85106afd195d2c2e3ee945cd0c3d322e59a9f597b56b444ce726b1bf67fac8997cc60dd8e52d2cf51a1bcb8e2b3b59af2cec306d93784fe8f9f42')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in signal-desktop/trunk (PKGBUILD)

2020-01-26 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 01:37:23
  Author: kpcyrd
Revision: 555774

Add a replace= due to the number of remaining signal-desktop-bin users

Modified:
  signal-desktop/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-26 22:32:40 UTC (rev 555773)
+++ PKGBUILD2020-01-27 01:37:23 UTC (rev 555774)
@@ -4,9 +4,10 @@
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
 pkgver=1.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
+replaces=('signal-desktop-bin')
 arch=('x86_64')
 url="https://signal.org;
 depends=('electron' 'libvips')


[arch-commits] Commit in signal-desktop/repos/community-x86_64 (10 files)

2020-01-26 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 01:37:39
  Author: kpcyrd
Revision: 555775

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 555774, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 555774, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 555774, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/openssl-linking.patch
(from rev 555774, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 555774, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/openssl-linking.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  173 +-
 expire-from-source-date-epoch.patch |   26 ++---
 openssl-linking.patch   |   38 +++
 signal-desktop.desktop  |   18 +--
 4 files changed, 128 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-27 01:37:23 UTC (rev 555774)
+++ PKGBUILD2020-01-27 01:37:39 UTC (rev 555775)
@@ -1,86 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.30.0
-pkgrel=1
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-arch=('x86_64')
-url="https://signal.org;
-depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
-)
-sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
-}
-
-build() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Gruntfile expects Git commit information which we don't have in a tarball 
download
-  # See https://github.com/signalapp/Signal-Desktop/issues/2376
-  yarn generate exec:build-protobuf exec:transpile concat 

[arch-commits] Commit in onionshare/repos (community-any community-any/PKGBUILD)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 19:47:35
  Author: kpcyrd
Revision: 556509

archrelease: copy trunk to community-any

Added:
  onionshare/repos/community-any/
  onionshare/repos/community-any/PKGBUILD
(from rev 556508, onionshare/trunk/PKGBUILD)

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Copied: onionshare/repos/community-any/PKGBUILD (from rev 556508, 
onionshare/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-01-27 19:47:35 UTC (rev 556509)
@@ -0,0 +1,42 @@
+# Maintainer: kpcyrd 
+# Contributor: Kevin Azzam 
+# Contributor: Ye Shu 
+
+pkgname=onionshare
+pkgver=2.2
+pkgrel=3
+pkgdesc='Share a file over Tor Hidden Services anonymously and securely'
+url='https://github.com/micahflee/onionshare'
+arch=('any')
+license=('GPL3')
+depends=('python' 'python-setuptools' 'hicolor-icon-theme' 'tor' 'stem' 
'python-requests' 'python-pysocks' 'python-flask' 'python-flask-httpauth' 
'python-pycryptodome' 'python-pyqt5')
+optdepends=(
+  'python-nautilus: enable Nautilus right-click extension'
+  'obfs4proxy: tor bridge support'
+)
+checkdepends=('python-pytest')
+source=(https://github.com/micahflee/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/micahflee/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('fbb457971213b49c535c471e87ca4e5f9493da06a22a457b016517a3094ac594f4b059ec8ea8ce557234ba59960718c489ed42c587f008f92b85e44b74ce6b07'
+'SKIP')
+b2sums=('91fa39c116d0eae0b22e1efcfbe636a97b4059553af39a3723f323e89d4080b2da9798bbc3cc6ad2849875806920bc4fb84e6784cec2102aca8bdbb9235499ea'
+'SKIP')
+
+validpgpkeys=('927F419D7EC82C2F149C1BD1403C2657CD994F73')
+
+build() {
+  cd ${pkgname}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}
+  pytest tests/
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (mat2 mat2/repos mat2/trunk mat2/trunk/PKGBUILD)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 18:44:38
  Author: kpcyrd
Revision: 556271

addpkg: mat2 0.10.0-2

Added:
  mat2/
  mat2/repos/
  mat2/trunk/
  mat2/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: mat2/trunk/PKGBUILD
===
--- mat2/trunk/PKGBUILD (rev 0)
+++ mat2/trunk/PKGBUILD 2020-01-27 18:44:38 UTC (rev 556271)
@@ -0,0 +1,35 @@
+# Maintainer: kpcyrd 
+
+pkgname=mat2
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='Metadata removal tool, supporting a wide range of commonly used file 
formats'
+url='https://0xacab.org/jvoisin/mat2'
+arch=('any')
+license=('LGPL3')
+depends=('python' 'python-setuptools' 'python-mutagen' 'python-cairo' 
'python-gobject' 'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 
'mailcap')
+optdepends=(
+  'ffmpeg: video support'
+  'bubblewrap: sandboxing support'
+)
+checkdepends=('ffmpeg')
+source=('https://0xacab.org/jvoisin/mat2/-/archive/0.10.0/mat2-0.10.0.tar.bz2')
+sha512sums=('ae09d2fd2c53cdf7f4c8011c01b469ffdc01c586177c2b2a3e1bfb6d8be5f1a8832e1c0094eea66390941011fc45b57876fa26761cbc08f56d015c0dfac34b7b')
+b2sums=('72806939fde41e9195b85d2e8c714efb4fe975212a972f5a22b783c29367c188b246cd57ffbe9b2a233c49f423c540c28a17bf412e4e7b7f704ce94d3fb9eaea')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  python -m unittest discover -v
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in mat2/repos (community-any community-any/PKGBUILD)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 18:44:55
  Author: kpcyrd
Revision: 556272

archrelease: copy trunk to community-any

Added:
  mat2/repos/community-any/
  mat2/repos/community-any/PKGBUILD
(from rev 556271, mat2/trunk/PKGBUILD)

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Copied: mat2/repos/community-any/PKGBUILD (from rev 556271, mat2/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-01-27 18:44:55 UTC (rev 556272)
@@ -0,0 +1,35 @@
+# Maintainer: kpcyrd 
+
+pkgname=mat2
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='Metadata removal tool, supporting a wide range of commonly used file 
formats'
+url='https://0xacab.org/jvoisin/mat2'
+arch=('any')
+license=('LGPL3')
+depends=('python' 'python-setuptools' 'python-mutagen' 'python-cairo' 
'python-gobject' 'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 
'mailcap')
+optdepends=(
+  'ffmpeg: video support'
+  'bubblewrap: sandboxing support'
+)
+checkdepends=('ffmpeg')
+source=('https://0xacab.org/jvoisin/mat2/-/archive/0.10.0/mat2-0.10.0.tar.bz2')
+sha512sums=('ae09d2fd2c53cdf7f4c8011c01b469ffdc01c586177c2b2a3e1bfb6d8be5f1a8832e1c0094eea66390941011fc45b57876fa26761cbc08f56d015c0dfac34b7b')
+b2sums=('72806939fde41e9195b85d2e8c714efb4fe975212a972f5a22b783c29367c188b246cd57ffbe9b2a233c49f423c540c28a17bf412e4e7b7f704ce94d3fb9eaea')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  python -m unittest discover -v
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 19:47:11
  Author: kpcyrd
Revision: 556508

addpkg: onionshare 2.2-3

Added:
  onionshare/
  onionshare/repos/
  onionshare/trunk/
  onionshare/trunk/PKGBUILD

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Added: onionshare/trunk/PKGBUILD
===
--- onionshare/trunk/PKGBUILD   (rev 0)
+++ onionshare/trunk/PKGBUILD   2020-01-27 19:47:11 UTC (rev 556508)
@@ -0,0 +1,42 @@
+# Maintainer: kpcyrd 
+# Contributor: Kevin Azzam 
+# Contributor: Ye Shu 
+
+pkgname=onionshare
+pkgver=2.2
+pkgrel=3
+pkgdesc='Share a file over Tor Hidden Services anonymously and securely'
+url='https://github.com/micahflee/onionshare'
+arch=('any')
+license=('GPL3')
+depends=('python' 'python-setuptools' 'hicolor-icon-theme' 'tor' 'stem' 
'python-requests' 'python-pysocks' 'python-flask' 'python-flask-httpauth' 
'python-pycryptodome' 'python-pyqt5')
+optdepends=(
+  'python-nautilus: enable Nautilus right-click extension'
+  'obfs4proxy: tor bridge support'
+)
+checkdepends=('python-pytest')
+source=(https://github.com/micahflee/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/micahflee/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('fbb457971213b49c535c471e87ca4e5f9493da06a22a457b016517a3094ac594f4b059ec8ea8ce557234ba59960718c489ed42c587f008f92b85e44b74ce6b07'
+'SKIP')
+b2sums=('91fa39c116d0eae0b22e1efcfbe636a97b4059553af39a3723f323e89d4080b2da9798bbc3cc6ad2849875806920bc4fb84e6784cec2102aca8bdbb9235499ea'
+'SKIP')
+
+validpgpkeys=('927F419D7EC82C2F149C1BD1403C2657CD994F73')
+
+build() {
+  cd ${pkgname}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}
+  pytest tests/
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 19:25:34
  Author: kpcyrd
Revision: 556506

addpkg: python-flask-httpauth 3.3.0-2

Added:
  python-flask-httpauth/
  python-flask-httpauth/repos/
  python-flask-httpauth/trunk/
  python-flask-httpauth/trunk/PKGBUILD

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Added: python-flask-httpauth/trunk/PKGBUILD
===
--- python-flask-httpauth/trunk/PKGBUILD(rev 0)
+++ python-flask-httpauth/trunk/PKGBUILD2020-01-27 19:25:34 UTC (rev 
556506)
@@ -0,0 +1,33 @@
+# Maintainer: kpcyrd 
+
+pkgname=python-flask-httpauth
+_pkgname=Flask-HTTPAuth
+pkgver=3.3.0
+pkgrel=2
+pkgdesc='Basic, Digest and Token HTTP authentication for Flask routes'
+url='https://github.com/miguelgrinberg/Flask-HTTPAuth'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-flask')
+checkdepends=('python-pytest')
+source=(https://github.com/miguelgrinberg/${_pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('1303351a278799eb885afc9160d4569f73d13212cab2defbc818df6c39ad9284703da703f52c63fb032096a9773f429216e47cc26513730389585761b8f9953b')
+b2sums=('d6e259fcc06a92e2a8f065118f32fd72a11ca2d3a12ebb641a461cdd8554cd954799e2e4ddcd9f7ac904accbc226f5a19374e150e50ca30d65e3f5f3009182d6')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  pytest tests/
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in python-flask-httpauth/repos (2 files)

2020-01-27 Thread Kpcyrd via arch-commits
Date: Monday, January 27, 2020 @ 19:25:52
  Author: kpcyrd
Revision: 556507

archrelease: copy trunk to community-any

Added:
  python-flask-httpauth/repos/community-any/
  python-flask-httpauth/repos/community-any/PKGBUILD
(from rev 556506, python-flask-httpauth/trunk/PKGBUILD)

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Copied: python-flask-httpauth/repos/community-any/PKGBUILD (from rev 556506, 
python-flask-httpauth/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-01-27 19:25:52 UTC (rev 556507)
@@ -0,0 +1,33 @@
+# Maintainer: kpcyrd 
+
+pkgname=python-flask-httpauth
+_pkgname=Flask-HTTPAuth
+pkgver=3.3.0
+pkgrel=2
+pkgdesc='Basic, Digest and Token HTTP authentication for Flask routes'
+url='https://github.com/miguelgrinberg/Flask-HTTPAuth'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-flask')
+checkdepends=('python-pytest')
+source=(https://github.com/miguelgrinberg/${_pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('1303351a278799eb885afc9160d4569f73d13212cab2defbc818df6c39ad9284703da703f52c63fb032096a9773f429216e47cc26513730389585761b8f9953b')
+b2sums=('d6e259fcc06a92e2a8f065118f32fd72a11ca2d3a12ebb641a461cdd8554cd954799e2e4ddcd9f7ac904accbc226f5a19374e150e50ca30d65e3f5f3009182d6')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  pytest tests/
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in findomain/trunk (PKGBUILD)

2020-01-29 Thread Kpcyrd via arch-commits
Date: Wednesday, January 29, 2020 @ 16:32:54
  Author: kpcyrd
Revision: 559131

upgpkg: findomain 1.2.0-1

Modified:
  findomain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-29 16:23:12 UTC (rev 559130)
+++ PKGBUILD2020-01-29 16:32:54 UTC (rev 559131)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=1.0.0
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f056d26be20ed312fa7c7713c656c34915b4bf87888e878bb9b0de379fee81fcc797994077f4de45fdab0b382151de04448fe078447179fb59115d2d9ff6785e')
-b2sums=('a71ca70430d85106afd195d2c2e3ee945cd0c3d322e59a9f597b56b444ce726b1bf67fac8997cc60dd8e52d2cf51a1bcb8e2b3b59af2cec306d93784fe8f9f42')
+sha512sums=('88e66d13cefd027e158b118cc1c9d96d47376fc21621fbc60b3fa83c739541f21aa051ef42d709222c6ce4829e094fd4806a7dd08bae5e79ce459b7a6a941c08')
+b2sums=('c8273975091b492047e9e8b989ed75746aad551c23763c5a76c137d5c0de10bb9b1b05d98220a8e681c1cb38aad8e3d0e32f6803c0c86d26cb100ced5a29c60b')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in findomain/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-29 Thread Kpcyrd via arch-commits
Date: Wednesday, January 29, 2020 @ 16:33:07
  Author: kpcyrd
Revision: 559132

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 559131, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-29 16:32:54 UTC (rev 559131)
+++ PKGBUILD2020-01-29 16:33:07 UTC (rev 559132)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f056d26be20ed312fa7c7713c656c34915b4bf87888e878bb9b0de379fee81fcc797994077f4de45fdab0b382151de04448fe078447179fb59115d2d9ff6785e')
-b2sums=('a71ca70430d85106afd195d2c2e3ee945cd0c3d322e59a9f597b56b444ce726b1bf67fac8997cc60dd8e52d2cf51a1bcb8e2b3b59af2cec306d93784fe8f9f42')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 559131, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-29 16:33:07 UTC (rev 559132)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('88e66d13cefd027e158b118cc1c9d96d47376fc21621fbc60b3fa83c739541f21aa051ef42d709222c6ce4829e094fd4806a7dd08bae5e79ce459b7a6a941c08')
+b2sums=('c8273975091b492047e9e8b989ed75746aad551c23763c5a76c137d5c0de10bb9b1b05d98220a8e681c1cb38aad8e3d0e32f6803c0c86d26cb100ced5a29c60b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in sn0int/repos/community-x86_64 (4 files)

2020-01-29 Thread Kpcyrd via arch-commits
Date: Thursday, January 30, 2020 @ 03:34:58
  Author: kpcyrd
Revision: 559478

archrelease: copy trunk to community-x86_64

Added:
  sn0int/repos/community-x86_64/PKGBUILD
(from rev 559477, sn0int/trunk/PKGBUILD)
  sn0int/repos/community-x86_64/sn0int.install
(from rev 559477, sn0int/trunk/sn0int.install)
Deleted:
  sn0int/repos/community-x86_64/PKGBUILD
  sn0int/repos/community-x86_64/sn0int.install

+
 PKGBUILD   |  104 +++
 sn0int.install |   18 -
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-30 03:34:49 UTC (rev 559477)
+++ PKGBUILD2020-01-30 03:34:58 UTC (rev 559478)
@@ -1,52 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Santiago Torres-Arias 
-# Maintainer: kpcyrd 
-
-pkgname=sn0int
-pkgver=0.15.0
-pkgrel=1
-pkgdesc='Semi-automatic OSINT framework and package manager'
-url='https://github.com/kpcyrd/sn0int'
-arch=('x86_64')
-license=('GPL3')
-depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
-makedepends=('cargo' 'python-sphinx')
-install=sn0int.install
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('2002d105bb0b1d05b7c5ca39554a343d2d4fa490cecf52ef108dd226ab5aff4e4efc155c3087ef8cf997e35c9d92c6a599503fcf9ead96d0946661c1a38f880c'
-'SKIP')
-b2sums=('d212149c0bac9a8a2f8798e568bcdfd6000d081bf6b0e7a5f364a7d6fb88da4187af388b893a58ab80edb5a48dd506cdecd227ec5c50bcb65ffb86bac84e9432'
-'SKIP')
-
-validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
-
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-  make -C docs man
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
-
-  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/PKGBUILD (from rev 559477, 
sn0int/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-30 03:34:58 UTC (rev 559478)
@@ -0,0 +1,52 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: kpcyrd 
+
+pkgname=sn0int
+pkgver=0.16.0
+pkgrel=1
+pkgdesc='Semi-automatic OSINT framework and package manager'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('GPL3')
+depends=('libcap' 'sqlite' 'libseccomp' 'geoip2-database' 'publicsuffix-list')
+makedepends=('cargo' 'python-sphinx')
+install=sn0int.install
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('85dfa6a79e4707883a2849137d93f98edbb29cbcc508a9481817184200426aae57993feaf2a7c6fd219bebec2e752cd6e8638e16c6f36eb873a225463ede858d'
+'SKIP')
+b2sums=('168304c4a5bc05425d0e40ddcb6bc219ac22fb3796c12c39baddcf18bca5624dddc76bfb6f18a1ddb071ba2be7201d492caeede5d865f10ff70ee188aa9fb527'
+'SKIP')
+
+validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
+
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+  make -C docs man
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
+  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
+
+  install -Dm 644 docs/_build/man/sn0int.1 -t 

[arch-commits] Commit in sn0int/trunk (PKGBUILD)

2020-01-29 Thread Kpcyrd via arch-commits
Date: Thursday, January 30, 2020 @ 03:34:49
  Author: kpcyrd
Revision: 559477

upgpkg: sn0int 0.16.0-1

Modified:
  sn0int/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-30 02:32:47 UTC (rev 559476)
+++ PKGBUILD2020-01-30 03:34:49 UTC (rev 559477)
@@ -3,7 +3,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=sn0int
-pkgver=0.15.0
+pkgver=0.16.0
 pkgrel=1
 pkgdesc='Semi-automatic OSINT framework and package manager'
 url='https://github.com/kpcyrd/sn0int'
@@ -14,9 +14,9 @@
 install=sn0int.install
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('2002d105bb0b1d05b7c5ca39554a343d2d4fa490cecf52ef108dd226ab5aff4e4efc155c3087ef8cf997e35c9d92c6a599503fcf9ead96d0946661c1a38f880c'
+sha512sums=('85dfa6a79e4707883a2849137d93f98edbb29cbcc508a9481817184200426aae57993feaf2a7c6fd219bebec2e752cd6e8638e16c6f36eb873a225463ede858d'
 'SKIP')
-b2sums=('d212149c0bac9a8a2f8798e568bcdfd6000d081bf6b0e7a5f364a7d6fb88da4187af388b893a58ab80edb5a48dd506cdecd227ec5c50bcb65ffb86bac84e9432'
+b2sums=('168304c4a5bc05425d0e40ddcb6bc219ac22fb3796c12c39baddcf18bca5624dddc76bfb6f18a1ddb071ba2be7201d492caeede5d865f10ff70ee188aa9fb527'
 'SKIP')
 
 validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")


[arch-commits] Commit in cargo-tree/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-30 Thread Kpcyrd via arch-commits
Date: Thursday, January 30, 2020 @ 23:58:49
  Author: kpcyrd
Revision: 560460

archrelease: copy trunk to community-x86_64

Added:
  cargo-tree/repos/community-x86_64/PKGBUILD
(from rev 560459, cargo-tree/trunk/PKGBUILD)
Deleted:
  cargo-tree/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-30 23:58:35 UTC (rev 560459)
+++ PKGBUILD2020-01-30 23:58:49 UTC (rev 560460)
@@ -1,31 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Vlad M. 
-# Contributor: Andrea Scarpino 
-
-pkgname=cargo-tree
-pkgver=0.28.0
-pkgrel=1
-pkgdesc="Cargo subcommand that visualizes a crate's dependency graph in a 
tree-like format"
-url="https://github.com/sfackler/cargo-tree;
-depends=('curl')
-makedepends=('cargo')
-arch=('x86_64')
-license=('MIT' 'APACHE')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sfackler/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('0dda579eac80afbd6d50b145f2b4a009cf781b571bafb30b4ce04b7728a84337')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-# upstream doesn't have tests
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cargo-tree/repos/community-x86_64/PKGBUILD (from rev 560459, 
cargo-tree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-30 23:58:49 UTC (rev 560460)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+# Contributor: Vlad M. 
+# Contributor: Andrea Scarpino 
+
+pkgname=cargo-tree
+pkgver=0.29.0
+pkgrel=1
+pkgdesc="Cargo subcommand that visualizes a crate's dependency graph in a 
tree-like format"
+url="https://github.com/sfackler/cargo-tree;
+depends=('curl')
+makedepends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("https://github.com/sfackler/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43ca97189f5ce5e527eefaa25219ac18d42f46270fd376a9c7b7b33aa0db634f')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+# upstream doesn't have tests
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cargo-tree/trunk (PKGBUILD)

2020-01-30 Thread Kpcyrd via arch-commits
Date: Thursday, January 30, 2020 @ 23:58:35
  Author: kpcyrd
Revision: 560459

upgpkg: cargo-tree 0.29.0-1

Modified:
  cargo-tree/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-30 23:56:51 UTC (rev 560458)
+++ PKGBUILD2020-01-30 23:58:35 UTC (rev 560459)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=cargo-tree
-pkgver=0.28.0
+pkgver=0.29.0
 pkgrel=1
 pkgdesc="Cargo subcommand that visualizes a crate's dependency graph in a 
tree-like format"
 url="https://github.com/sfackler/cargo-tree;
@@ -11,8 +11,8 @@
 makedepends=('cargo')
 arch=('x86_64')
 license=('MIT' 'APACHE')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/sfackler/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('0dda579eac80afbd6d50b145f2b4a009cf781b571bafb30b4ce04b7728a84337')
+source=("https://github.com/sfackler/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43ca97189f5ce5e527eefaa25219ac18d42f46270fd376a9c7b7b33aa0db634f')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in (4 files)

2020-02-01 Thread Kpcyrd via arch-commits
Date: Saturday, February 1, 2020 @ 17:14:43
  Author: kpcyrd
Revision: 561046

addpkg: cargo-edit 0.5.0-1

Added:
  cargo-edit/
  cargo-edit/repos/
  cargo-edit/trunk/
  cargo-edit/trunk/PKGBUILD

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: cargo-edit/trunk/PKGBUILD
===
--- cargo-edit/trunk/PKGBUILD   (rev 0)
+++ cargo-edit/trunk/PKGBUILD   2020-02-01 17:14:43 UTC (rev 561046)
@@ -0,0 +1,38 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-edit
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Managing cargo dependencies from the command line'
+url='https://github.com/killercup/cargo-edit/releases'
+arch=('x86_64')
+license=('MIT' 'APACHE')
+depends=('cargo')
+source=(https://github.com/killercup/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('39c216f6e51f6d497ae3895d063b68476471c880d94603b6e0712891bb7c2229af93c9181bf06d98040ddabc71e052051457e4d8075c8dfe8aa5f17d1797d140')
+b2sums=('3d4383eb87f25630fbcece3b5494694de089254c7b716527382f521af25a8152f12f3dea3196acd00f56450571413cfce323d7cd334e79bad323236738e4ff02')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # tests depend on target/debug/
+  cargo test --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 \
+target/release/cargo-add \
+target/release/cargo-rm \
+target/release/cargo-upgrade \
+-t "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-edit/repos (community-x86_64 community-x86_64/PKGBUILD)

2020-02-01 Thread Kpcyrd via arch-commits
Date: Saturday, February 1, 2020 @ 17:15:00
  Author: kpcyrd
Revision: 561047

archrelease: copy trunk to community-x86_64

Added:
  cargo-edit/repos/community-x86_64/
  cargo-edit/repos/community-x86_64/PKGBUILD
(from rev 561046, cargo-edit/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: cargo-edit/repos/community-x86_64/PKGBUILD (from rev 561046, 
cargo-edit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-02-01 17:15:00 UTC (rev 561047)
@@ -0,0 +1,38 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-edit
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Managing cargo dependencies from the command line'
+url='https://github.com/killercup/cargo-edit/releases'
+arch=('x86_64')
+license=('MIT' 'APACHE')
+depends=('cargo')
+source=(https://github.com/killercup/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('39c216f6e51f6d497ae3895d063b68476471c880d94603b6e0712891bb7c2229af93c9181bf06d98040ddabc71e052051457e4d8075c8dfe8aa5f17d1797d140')
+b2sums=('3d4383eb87f25630fbcece3b5494694de089254c7b716527382f521af25a8152f12f3dea3196acd00f56450571413cfce323d7cd334e79bad323236738e4ff02')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # tests depend on target/debug/
+  cargo test --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 \
+target/release/cargo-add \
+target/release/cargo-rm \
+target/release/cargo-upgrade \
+-t "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in signal-desktop/repos/community-x86_64 (10 files)

2020-02-03 Thread Kpcyrd via arch-commits
Date: Tuesday, February 4, 2020 @ 00:29:11
  Author: kpcyrd
Revision: 562004

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 562003, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 562003, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 562003, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/openssl-linking.patch
(from rev 562003, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 562003, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/openssl-linking.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  180 +-
 expire-from-source-date-epoch.patch |   26 ++--
 openssl-linking.patch   |   38 +++
 signal-desktop.desktop  |   18 +--
 4 files changed, 134 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-04 00:28:46 UTC (rev 562003)
+++ PKGBUILD2020-02-04 00:29:11 UTC (rev 562004)
@@ -1,87 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.30.0
-pkgrel=2
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-replaces=('signal-desktop-bin')
-arch=('x86_64')
-url="https://signal.org;
-depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
-)
-sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
-}
-
-build() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Gruntfile expects Git commit information which we don't have in a tarball 
download
-  # See https://github.com/signalapp/Signal-Desktop/issues/2376
-  yarn generate 

[arch-commits] Commit in signal-desktop/trunk (PKGBUILD)

2020-02-03 Thread Kpcyrd via arch-commits
Date: Tuesday, February 4, 2020 @ 00:28:46
  Author: kpcyrd
Revision: 562003

upgpkg: signal-desktop 1.30.1-1

Modified:
  signal-desktop/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-03 22:15:56 UTC (rev 562002)
+++ PKGBUILD2020-02-04 00:28:46 UTC (rev 562003)
@@ -3,8 +3,8 @@
 
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
-pkgver=1.30.0
-pkgrel=2
+pkgver=1.30.1
+pkgrel=1
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
 replaces=('signal-desktop-bin')
@@ -11,7 +11,7 @@
 arch=('x86_64')
 url="https://signal.org;
 depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
+makedepends=('yarn' 'git' 'nodejs' 'npm' 'python')
 source=(
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
   "${pkgname}.desktop"
@@ -21,12 +21,12 @@
   # See https://github.com/atom/node-spellchecker/issues/127
   
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
 )
-sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
+sha512sums=('612a968e30571d4d3bf9d965a673ecc02bdd0a6def90b8f61a27e25160359862eb6f8fba854f82184e8cb707b04860a6c182951ab6b37f60d05fc374805ef639'
 
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
 
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
 
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
 
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
+b2sums=('92fd1c182f23db91bf9127fd4b0d0ef075c12d85cb885154b3888a82f3ef224a0a895fe472fb82cceb69a482d64be35c82c4546ca6a1d03a62eb2eef9617c5ac'
 
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
 
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
 
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
@@ -45,6 +45,12 @@
   # Allow higher Node versions
   sed 's#"node": "#&>=#' -i package.json
 
+  # Select node-gyp versions with python3 support
+  sed 's#"node-gyp": "5.0.3"#"node-gyp": "6.1.0"#' -i package.json
+  # https://github.com/sass/node-sass/pull/2841
+  # https://github.com/sass/node-sass/issues/2716
+  sed 's#"resolutions": {#"resolutions": {"node-sass/node-gyp": "^6.0.0",#' -i 
package.json
+
   yarn install
 
   # Have SQLCipher dynamically link from OpenSSL


[arch-commits] Commit in findomain/trunk (PKGBUILD)

2020-02-02 Thread Kpcyrd via arch-commits
Date: Sunday, February 2, 2020 @ 21:24:49
  Author: kpcyrd
Revision: 561791

upgpkg: findomain 1.3.0-1

Modified:
  findomain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-02 21:18:42 UTC (rev 561790)
+++ PKGBUILD2020-02-02 21:24:49 UTC (rev 561791)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=1.2.0
+pkgver=1.3.0
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('88e66d13cefd027e158b118cc1c9d96d47376fc21621fbc60b3fa83c739541f21aa051ef42d709222c6ce4829e094fd4806a7dd08bae5e79ce459b7a6a941c08')
-b2sums=('c8273975091b492047e9e8b989ed75746aad551c23763c5a76c137d5c0de10bb9b1b05d98220a8e681c1cb38aad8e3d0e32f6803c0c86d26cb100ced5a29c60b')
+sha512sums=('3b01e630f69584722283eb49bd4f7af948f1e354987ea4977401322154875e55d2c1b4cc64d17e3f451b64fdffb1517ddfca6658d78c30daecf1ffbe05f4c4c1')
+b2sums=('7354852ee8493ca4ff1af3eaf000350b1c38433d0258ec1a8fb3c1718f3bd6f159fc8a0c2d91794e0a2a4d52159bd69ace7533d725fb33e0e9a63f12f788fe9e')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in findomain/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-02-02 Thread Kpcyrd via arch-commits
Date: Sunday, February 2, 2020 @ 21:25:04
  Author: kpcyrd
Revision: 561792

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 561791, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-02 21:24:49 UTC (rev 561791)
+++ PKGBUILD2020-02-02 21:25:04 UTC (rev 561792)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=1.2.0
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('88e66d13cefd027e158b118cc1c9d96d47376fc21621fbc60b3fa83c739541f21aa051ef42d709222c6ce4829e094fd4806a7dd08bae5e79ce459b7a6a941c08')
-b2sums=('c8273975091b492047e9e8b989ed75746aad551c23763c5a76c137d5c0de10bb9b1b05d98220a8e681c1cb38aad8e3d0e32f6803c0c86d26cb100ced5a29c60b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 561791, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-02 21:25:04 UTC (rev 561792)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3b01e630f69584722283eb49bd4f7af948f1e354987ea4977401322154875e55d2c1b4cc64d17e3f451b64fdffb1517ddfca6658d78c30daecf1ffbe05f4c4c1')
+b2sums=('7354852ee8493ca4ff1af3eaf000350b1c38433d0258ec1a8fb3c1718f3bd6f159fc8a0c2d91794e0a2a4d52159bd69ace7533d725fb33e0e9a63f12f788fe9e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in cargo-edit/trunk (PKGBUILD)

2020-02-02 Thread Kpcyrd via arch-commits
Date: Sunday, February 2, 2020 @ 21:36:03
  Author: kpcyrd
Revision: 561793

Fix binary path

Modified:
  cargo-edit/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-02 21:25:04 UTC (rev 561792)
+++ PKGBUILD2020-02-02 21:36:03 UTC (rev 561793)
@@ -2,7 +2,7 @@
 
 pkgname=cargo-edit
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Managing cargo dependencies from the command line'
 url='https://github.com/killercup/cargo-edit/releases'
 arch=('x86_64')
@@ -29,7 +29,7 @@
 target/release/cargo-add \
 target/release/cargo-rm \
 target/release/cargo-upgrade \
--t "${pkgdir}/usr/bin/${pkgname}"
+-t "${pkgdir}/usr/bin"
 
   install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"


[arch-commits] Commit in cargo-edit/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-02-02 Thread Kpcyrd via arch-commits
Date: Sunday, February 2, 2020 @ 21:36:14
  Author: kpcyrd
Revision: 561794

archrelease: copy trunk to community-x86_64

Added:
  cargo-edit/repos/community-x86_64/PKGBUILD
(from rev 561793, cargo-edit/trunk/PKGBUILD)
Deleted:
  cargo-edit/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-02 21:36:03 UTC (rev 561793)
+++ PKGBUILD2020-02-02 21:36:14 UTC (rev 561794)
@@ -1,38 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=cargo-edit
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='Managing cargo dependencies from the command line'
-url='https://github.com/killercup/cargo-edit/releases'
-arch=('x86_64')
-license=('MIT' 'APACHE')
-depends=('cargo')
-source=(https://github.com/killercup/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('39c216f6e51f6d497ae3895d063b68476471c880d94603b6e0712891bb7c2229af93c9181bf06d98040ddabc71e052051457e4d8075c8dfe8aa5f17d1797d140')
-b2sums=('3d4383eb87f25630fbcece3b5494694de089254c7b716527382f521af25a8152f12f3dea3196acd00f56450571413cfce323d7cd334e79bad323236738e4ff02')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  # tests depend on target/debug/
-  cargo test --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 \
-target/release/cargo-add \
-target/release/cargo-rm \
-target/release/cargo-upgrade \
--t "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-edit/repos/community-x86_64/PKGBUILD (from rev 561793, 
cargo-edit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-02 21:36:14 UTC (rev 561794)
@@ -0,0 +1,38 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-edit
+pkgver=0.5.0
+pkgrel=2
+pkgdesc='Managing cargo dependencies from the command line'
+url='https://github.com/killercup/cargo-edit/releases'
+arch=('x86_64')
+license=('MIT' 'APACHE')
+depends=('cargo')
+source=(https://github.com/killercup/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('39c216f6e51f6d497ae3895d063b68476471c880d94603b6e0712891bb7c2229af93c9181bf06d98040ddabc71e052051457e4d8075c8dfe8aa5f17d1797d140')
+b2sums=('3d4383eb87f25630fbcece3b5494694de089254c7b716527382f521af25a8152f12f3dea3196acd00f56450571413cfce323d7cd334e79bad323236738e4ff02')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # tests depend on target/debug/
+  cargo test --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 \
+target/release/cargo-add \
+target/release/cargo-rm \
+target/release/cargo-upgrade \
+-t "${pkgdir}/usr/bin"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in mat2/trunk (PKGBUILD)

2020-01-28 Thread Kpcyrd via arch-commits
Date: Tuesday, January 28, 2020 @ 17:30:14
  Author: kpcyrd
Revision: 558257

Don't hardcode version in source=

Modified:
  mat2/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-28 16:46:44 UTC (rev 558256)
+++ PKGBUILD2020-01-28 17:30:14 UTC (rev 558257)
@@ -1,4 +1,5 @@
 # Maintainer: kpcyrd 
+# Contributor: Francois Boulogne 
 
 pkgname=mat2
 pkgver=0.10.0
@@ -13,7 +14,7 @@
   'bubblewrap: sandboxing support'
 )
 checkdepends=('ffmpeg')
-source=('https://0xacab.org/jvoisin/mat2/-/archive/0.10.0/mat2-0.10.0.tar.bz2')
+source=(https://0xacab.org/jvoisin/mat2/-/archive/${pkgver}/mat2-${pkgver}.tar.bz2)
 
sha512sums=('ae09d2fd2c53cdf7f4c8011c01b469ffdc01c586177c2b2a3e1bfb6d8be5f1a8832e1c0094eea66390941011fc45b57876fa26761cbc08f56d015c0dfac34b7b')
 
b2sums=('72806939fde41e9195b85d2e8c714efb4fe975212a972f5a22b783c29367c188b246cd57ffbe9b2a233c49f423c540c28a17bf412e4e7b7f704ce94d3fb9eaea')
 


[arch-commits] Commit in mat2/repos/community-any (3 files)

2020-01-28 Thread Kpcyrd via arch-commits
Date: Wednesday, January 29, 2020 @ 01:36:24
  Author: kpcyrd
Revision: 558377

archrelease: copy trunk to community-any

Added:
  mat2/repos/community-any/PKGBUILD
(from rev 558376, mat2/trunk/PKGBUILD)
  mat2/repos/community-any/fix-test-perl-exiftool.patch
(from rev 558376, mat2/trunk/fix-test-perl-exiftool.patch)
Deleted:
  mat2/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 -
 fix-test-perl-exiftool.patch |   14 ++
 2 files changed, 67 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-29 01:36:06 UTC (rev 558376)
+++ PKGBUILD2020-01-29 01:36:24 UTC (rev 558377)
@@ -1,35 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=mat2
-pkgver=0.10.0
-pkgrel=2
-pkgdesc='Metadata removal tool, supporting a wide range of commonly used file 
formats'
-url='https://0xacab.org/jvoisin/mat2'
-arch=('any')
-license=('LGPL3')
-depends=('python' 'python-setuptools' 'python-mutagen' 'python-cairo' 
'python-gobject' 'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 
'mailcap')
-optdepends=(
-  'ffmpeg: video support'
-  'bubblewrap: sandboxing support'
-)
-checkdepends=('ffmpeg')
-source=('https://0xacab.org/jvoisin/mat2/-/archive/0.10.0/mat2-0.10.0.tar.bz2')
-sha512sums=('ae09d2fd2c53cdf7f4c8011c01b469ffdc01c586177c2b2a3e1bfb6d8be5f1a8832e1c0094eea66390941011fc45b57876fa26761cbc08f56d015c0dfac34b7b')
-b2sums=('72806939fde41e9195b85d2e8c714efb4fe975212a972f5a22b783c29367c188b246cd57ffbe9b2a233c49f423c540c28a17bf412e4e7b7f704ce94d3fb9eaea')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  python -m unittest discover -v
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: mat2/repos/community-any/PKGBUILD (from rev 558376, mat2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-29 01:36:24 UTC (rev 558377)
@@ -0,0 +1,53 @@
+# Maintainer: kpcyrd 
+# Contributor: Francois Boulogne 
+
+pkgname=mat2
+pkgver=0.10.0
+pkgrel=3
+pkgdesc='Metadata removal tool, supporting a wide range of commonly used file 
formats'
+url='https://0xacab.org/jvoisin/mat2'
+arch=('any')
+license=('LGPL3')
+depends=('python' 'python-mutagen' 'python-cairo' 'python-gobject' 
'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 'mailcap')
+makedepends=('python-setuptools')
+optdepends=(
+  'ffmpeg: video support'
+  'bubblewrap: sandboxing support'
+)
+checkdepends=('ffmpeg')
+source=(https://0xacab.org/jvoisin/mat2/-/archive/${pkgver}/mat2-${pkgver}.tar.gz
+
https://0xacab.org/jvoisin/mat2/uploads/8c62aff50acf08820d5e2bbc30aca64e/mat2-${pkgver}.tar.gz.asc
+fix-test-perl-exiftool.patch)
+sha512sums=('7434365766f5ba893b5b51e852d73af6b1dd562f3804e46b2aa5bf2097694d5465f0ddb5e401b157ed899a86caca2dd405424c5a7c86d66190cefd30eee3ba65'
+'SKIP'
+
'7d6419815e8801df2b153d0d5711f74329e0cf1717be4c1f83d1a63e450680d2f41329611f6c6b3aae28c2df529cdd16a502ccd6b8634a7ea4a3ef14369a45c9')
+b2sums=('3aeb1b5fb1e5b39d5a59e84de48a1fefed8afff31d7ae2827324b9d54eab8a95f28f0e1de94d6c96ba250249531782f4a2cff4a82fdccc85da7382d00294fdaf'
+'SKIP'
+
'35f48327677b4f9dbbc55aa84ff10743b8ca5cffe1f8ce7a193bb20658673cf7c25d0bc47963854a7e42fce14715a36ca22dcbf302302367308b196409bed7b1')
+
+validpgpkeys=('9FCDEE9E1A381F311EA62A7404D041E8171901CC') # Julien (jvoisin) 
Voisin
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch --forward --strip=1 --input="${srcdir}/fix-test-perl-exiftool.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  python -m unittest discover -v
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 dolphin/mat2.desktop -t 
"${pkgdir}/usr/share/kservices5/ServiceMenus"
+  install -Dm 644 doc/mat2.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 doc/*.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: mat2/repos/community-any/fix-test-perl-exiftool.patch (from rev 558376, 
mat2/trunk/fix-test-perl-exiftool.patch)
===
--- fix-test-perl-exiftool.patch(rev 0)
+++ fix-test-perl-exiftool.patch2020-01-29 01:36:24 UTC (rev 558377)
@@ -0,0 +1,14 @@
+--- a/tests/test_libmat2.py
 b/tests/test_libmat2.py
+@@ -449,9 +449,10 @@ class TestCleaning(unittest.TestCase):
+ 'HandlerType': 'Metadata',
+ 'HandlerVendorID': 'Apple',
+ 'MajorBrand': 'MP4  Base Media v1 [IS0 14496-12:2003]',
++'MediaDataOffset': 48,
++

[arch-commits] Commit in mat2/trunk (PKGBUILD fix-test-perl-exiftool.patch)

2020-01-28 Thread Kpcyrd via arch-commits
Date: Wednesday, January 29, 2020 @ 01:36:06
  Author: kpcyrd
Revision: 558376

Check tarball signature, patch failing test, add dolphin integration, install 
man page, make python-setuptools makedepends= only

Added:
  mat2/trunk/fix-test-perl-exiftool.patch
Modified:
  mat2/trunk/PKGBUILD

--+
 PKGBUILD |   27 ++-
 fix-test-perl-exiftool.patch |   14 ++
 2 files changed, 36 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-29 00:42:16 UTC (rev 558375)
+++ PKGBUILD2020-01-29 01:36:06 UTC (rev 558376)
@@ -3,21 +3,35 @@
 
 pkgname=mat2
 pkgver=0.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Metadata removal tool, supporting a wide range of commonly used file 
formats'
 url='https://0xacab.org/jvoisin/mat2'
 arch=('any')
 license=('LGPL3')
-depends=('python' 'python-setuptools' 'python-mutagen' 'python-cairo' 
'python-gobject' 'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 
'mailcap')
+depends=('python' 'python-mutagen' 'python-cairo' 'python-gobject' 
'gdk-pixbuf2' 'poppler-glib' 'librsvg' 'perl-image-exiftool' 'mailcap')
+makedepends=('python-setuptools')
 optdepends=(
   'ffmpeg: video support'
   'bubblewrap: sandboxing support'
 )
 checkdepends=('ffmpeg')
-source=(https://0xacab.org/jvoisin/mat2/-/archive/${pkgver}/mat2-${pkgver}.tar.bz2)
-sha512sums=('ae09d2fd2c53cdf7f4c8011c01b469ffdc01c586177c2b2a3e1bfb6d8be5f1a8832e1c0094eea66390941011fc45b57876fa26761cbc08f56d015c0dfac34b7b')
-b2sums=('72806939fde41e9195b85d2e8c714efb4fe975212a972f5a22b783c29367c188b246cd57ffbe9b2a233c49f423c540c28a17bf412e4e7b7f704ce94d3fb9eaea')
+source=(https://0xacab.org/jvoisin/mat2/-/archive/${pkgver}/mat2-${pkgver}.tar.gz
+
https://0xacab.org/jvoisin/mat2/uploads/8c62aff50acf08820d5e2bbc30aca64e/mat2-${pkgver}.tar.gz.asc
+fix-test-perl-exiftool.patch)
+sha512sums=('7434365766f5ba893b5b51e852d73af6b1dd562f3804e46b2aa5bf2097694d5465f0ddb5e401b157ed899a86caca2dd405424c5a7c86d66190cefd30eee3ba65'
+'SKIP'
+
'7d6419815e8801df2b153d0d5711f74329e0cf1717be4c1f83d1a63e450680d2f41329611f6c6b3aae28c2df529cdd16a502ccd6b8634a7ea4a3ef14369a45c9')
+b2sums=('3aeb1b5fb1e5b39d5a59e84de48a1fefed8afff31d7ae2827324b9d54eab8a95f28f0e1de94d6c96ba250249531782f4a2cff4a82fdccc85da7382d00294fdaf'
+'SKIP'
+
'35f48327677b4f9dbbc55aa84ff10743b8ca5cffe1f8ce7a193bb20658673cf7c25d0bc47963854a7e42fce14715a36ca22dcbf302302367308b196409bed7b1')
 
+validpgpkeys=('9FCDEE9E1A381F311EA62A7404D041E8171901CC') # Julien (jvoisin) 
Voisin
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch --forward --strip=1 --input="${srcdir}/fix-test-perl-exiftool.patch"
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   python setup.py build
@@ -31,6 +45,9 @@
 package() {
   cd ${pkgname}-${pkgver}
   python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 dolphin/mat2.desktop -t 
"${pkgdir}/usr/share/kservices5/ServiceMenus"
+  install -Dm 644 doc/mat2.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 doc/*.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 
 # vim: ts=2 sw=2 et:

Added: fix-test-perl-exiftool.patch
===
--- fix-test-perl-exiftool.patch(rev 0)
+++ fix-test-perl-exiftool.patch2020-01-29 01:36:06 UTC (rev 558376)
@@ -0,0 +1,14 @@
+--- a/tests/test_libmat2.py
 b/tests/test_libmat2.py
+@@ -449,9 +449,10 @@ class TestCleaning(unittest.TestCase):
+ 'HandlerType': 'Metadata',
+ 'HandlerVendorID': 'Apple',
+ 'MajorBrand': 'MP4  Base Media v1 [IS0 14496-12:2003]',
++'MediaDataOffset': 48,
++'MediaDataSize': 379872,
+ 'MediaHeaderVersion': 0,
+ 'MinorVersion': '0.2.0',
+-'MovieDataOffset': 48,
+ 'MovieHeaderVersion': 0,
+ 'NextTrackID': 3,
+ 'PreferredRate': 1,


[arch-commits] Commit in signal-desktop/repos (6 files)

2020-01-23 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 00:59:57
  Author: kpcyrd
Revision: 555274

archrelease: copy trunk to community-testing-x86_64

Added:
  signal-desktop/repos/community-testing-x86_64/
  signal-desktop/repos/community-testing-x86_64/PKGBUILD
(from rev 555273, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-testing-x86_64/TRADEMARK_CONSENT.txt
(from rev 555273, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  
signal-desktop/repos/community-testing-x86_64/expire-from-source-date-epoch.patch
(from rev 555273, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-testing-x86_64/openssl-linking.patch
(from rev 555273, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-testing-x86_64/signal-desktop.desktop
(from rev 555273, signal-desktop/trunk/signal-desktop.desktop)

-+
 PKGBUILD|   86 ++
 expire-from-source-date-epoch.patch |   13 +
 openssl-linking.patch   |   19 +++
 signal-desktop.desktop  |9 +++
 4 files changed, 127 insertions(+)

Copied: signal-desktop/repos/community-testing-x86_64/PKGBUILD (from rev 
555273, signal-desktop/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-01-24 00:59:57 UTC (rev 555274)
@@ -0,0 +1,86 @@
+# Maintainer: kpcyrd 
+# Contributor: Jean Lucas 
+
+pkgname=signal-desktop
+_pkgname=Signal-Desktop
+pkgver=1.30.0
+pkgrel=1
+pkgdesc="Electron application that links with Signal on mobile"
+license=('GPL3')
+arch=('x86_64')
+url="https://signal.org;
+depends=('electron')
+makedepends=('yarn' 'git' 'nodejs' 'npm' 'python' 'python2')
+source=(
+  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
+  "${pkgname}.desktop"
+  "openssl-linking.patch"
+  "expire-from-source-date-epoch.patch"
+  # Cherry-pick a specific commit for the node-spellchecker dependency
+  # See https://github.com/atom/node-spellchecker/issues/127
+  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
+)
+sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
+
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
+
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
+
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
+
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
+b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
+
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
+
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
+
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
+
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
+
+prepare() {
+  cd "${_pkgname}-${pkgver}"
+
+  # Fix SpellChecker build with imminent Node 13
+  # See https://github.com/atom/node-spellchecker/issues/127
+  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
+
+  # Set system Electron version for ABI compatibility
+  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
+
+  # Allow higher Node versions
+  sed 's#"node": "#&>=#' -i package.json
+
+  yarn install
+
+  # Have SQLCipher dynamically link from OpenSSL
+  # See https://github.com/signalapp/Signal-Desktop/issues/2634
+  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
+
+  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
+  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
+}
+
+build() {
+  cd "${_pkgname}-${pkgver}"
+
+  # Gruntfile expects Git commit information which we don't have in a tarball 
download
+  # See https://github.com/signalapp/Signal-Desktop/issues/2376
+  yarn generate exec:build-protobuf exec:transpile concat copy:deps sass
+
+  yarn build-release
+}
+
+package() {
+  cd "${_pkgname}-${pkgver}"
+
+  install -d 

[arch-commits] Commit in signal-desktop/trunk (2 files)

2020-01-23 Thread Kpcyrd via arch-commits
Date: Friday, January 24, 2020 @ 00:59:42
  Author: kpcyrd
Revision: 555273

upgpkg: signal-desktop 1.30.0-1

Added:
  signal-desktop/trunk/expire-from-source-date-epoch.patch
Modified:
  signal-desktop/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 expire-from-source-date-epoch.patch |   13 +
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-24 00:29:08 UTC (rev 555272)
+++ PKGBUILD2020-01-24 00:59:42 UTC (rev 555273)
@@ -3,7 +3,7 @@
 
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
-pkgver=1.29.6
+pkgver=1.30.0
 pkgrel=1
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
@@ -15,17 +15,20 @@
   
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
   "${pkgname}.desktop"
   "openssl-linking.patch"
+  "expire-from-source-date-epoch.patch"
   # Cherry-pick a specific commit for the node-spellchecker dependency
   # See https://github.com/atom/node-spellchecker/issues/127
   
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz;
 )
-sha512sums=('3b04224c8bc105b14366fc585daff2a6210a0442e48c6ee5e4ffa964dcea5ab302b186eca8287d66d0d71fa7d41b7ba66ad886b23d86b35832744d88ad639f86'
+sha512sums=('bc804a1fe3135418cc0b4e8a5db87f86a6f246f97fc0599911816c581cb129239c46f3be036be31cb90e2eea9d64276887a845329e474e443d119071b56606c9'
 
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
 
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
+
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
 
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('0842342d02c2860e28a57178e6d9a36965e7444acea1f78fb91003f7c59e7041a44276e2d76bff684cb7a7d3445735565458e8861dfe599a037fdb505389c9af'
+b2sums=('39b94317f440e133d755956e2ebe4705653e13d9c7f0e66c0df676645d90ccd490ca584c14e532fc491a35da436b1b592a5cef819ae0b2715a51fb9947bdd9d4'
 
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
 
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
+
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
 
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
 
 prepare() {
@@ -46,6 +49,9 @@
   # Have SQLCipher dynamically link from OpenSSL
   # See https://github.com/signalapp/Signal-Desktop/issues/2634
   patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
+
+  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
+  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
 }
 
 build() {

Added: expire-from-source-date-epoch.patch
===
--- expire-from-source-date-epoch.patch (rev 0)
+++ expire-from-source-date-epoch.patch 2020-01-24 00:59:42 UTC (rev 555273)
@@ -0,0 +1,13 @@
+--- a/Gruntfile.js
 b/Gruntfile.js
+@@ -203,9 +203,7 @@ module.exports = grunt => {
+   });
+ 
+   grunt.registerTask('getExpireTime', () => {
+-grunt.task.requires('gitinfo');
+-const gitinfo = grunt.config.get('gitinfo');
+-const committed = gitinfo.local.branch.current.lastCommitTime;
++const committed = parseInt(process.env.SOURCE_DATE_EPOCH, 10) * 1000;
+ const time = Date.parse(committed) + 1000 * 60 * 60 * 24 * 90;
+ grunt.file.write(
+   'config/local-production.json',


  1   2   3   4   5   6   >