[arch-commits] Commit in ruby-pg/repos (2 files)

2021-08-09 Thread George Rawlinson via arch-commits
Date: Tuesday, August 10, 2021 @ 03:30:41
  Author: grawlinson
Revision: 997306

archrelease: copy trunk to community-testing-x86_64

Added:
  ruby-pg/repos/community-testing-x86_64/
  ruby-pg/repos/community-testing-x86_64/PKGBUILD
(from rev 997305, ruby-pg/trunk/PKGBUILD)

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

Copied: ruby-pg/repos/community-testing-x86_64/PKGBUILD (from rev 997305, 
ruby-pg/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-10 03:30:41 UTC (rev 997306)
@@ -0,0 +1,60 @@
+# Maintainer: Levente Polyak 
+# Contributor: Niels Abspoel 
+
+_gemname=pg
+pkgname=ruby-$_gemname
+pkgver=1.2.3
+pkgrel=1
+pkgdesc='Ruby interface to the PostgreSQL RDBMS'
+url='https://github.com/ged/ruby-pg'
+arch=('x86_64')
+license=('custom:BSDL')
+depends=('ruby' 'ruby-rspec-core' 'postgresql-libs')
+options=('!emptydirs')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('27249d2916bdf3707d485a2ccebd582a6e8a9231501027b400bd9a4a540392e4428b4ec55e2e42d16be909ad80a8b45e5cef10973f2e95904160a9170314cb65')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed 's|"ChangeLog".freeze, ||' -i ${_gemname}.gemspec
+  sed 's|"lib/pg/deprecated_constants.rb".freeze, ||' -i ${_gemname}.gemspec
+  sed "s|^  s.version = .*$|  s.version = '${pkgver}'|" -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install \
+--verbose \
+--ignore-dependencies \
+--no-user-install \
+--install-dir "$pkgdir/$_gemdir" \
+--bindir "$pkgdir/usr/bin" \
+"$_gemname-$pkgver.gem"
+
+  # delete unnecessary files & folders
+  cd "$pkgdir/$_gemdir"
+  find . -type f \
+-name "page-Makefile.ri" -delete \
+-o -name 'gem_make.out' -delete \
+-o -name 'mkmf.log' -delete
+  rm -rf cache
+  cd "gems/$_gemname-$pkgver"
+  rm -vrf spec ext POSTGRES Manifest.txt Rakefile* Gemfile
+
+  # move documentation
+  install -vd "$pkgdir/usr/share/doc/$pkgname"
+  mv *.rdoc "$pkgdir/usr/share/doc/$pkgname"
+
+  # move license
+  install -vd "$pkgdir/usr/share/licenses/$pkgname"
+  mv LICENSE BSDL "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Tuesday, August 10, 2021 @ 03:30:03
  Author: grawlinson
Revision: 997305

upgpkg: ruby-pg 1.2.3-1

* New upstream release.
* Add more documentation.
* Delete more unnecessary cruft.
* Attempt to make package reproducible.

Modified:
  ruby-pg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-10 02:37:37 UTC (rev 997304)
+++ PKGBUILD2021-08-10 03:30:03 UTC (rev 997305)
@@ -2,18 +2,17 @@
 # Contributor: Niels Abspoel 
 
 _gemname=pg
-pkgname=ruby-pg
-pkgver=1.1.4
-pkgrel=3
-pkgdesc='Pg is the Ruby interface to the Postgresql RDBMS'
-url='https://bitbucket.org/ged/ruby-pg'
+pkgname=ruby-$_gemname
+pkgver=1.2.3
+pkgrel=1
+pkgdesc='Ruby interface to the PostgreSQL RDBMS'
+url='https://github.com/ged/ruby-pg'
 arch=('x86_64')
 license=('custom:BSDL')
 depends=('ruby' 'ruby-rspec-core' 'postgresql-libs')
 options=('!emptydirs')
-source=(https://github.com/ged/ruby-pg/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a8092df4ed85e99b4bb40d30164b34e08b134f3d3ee4b618a8bd7974db379e6a')
-sha512sums=('936696c47eb4761104a451335c73e0bc13c11b8098c62f62b7973ba51e4a1f4f692f32322cbd5044b442d7acced15eefed026fde24268c4f3bde662b49eadb3e')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+b2sums=('27249d2916bdf3707d485a2ccebd582a6e8a9231501027b400bd9a4a540392e4428b4ec55e2e42d16be909ad80a8b45e5cef10973f2e95904160a9170314cb65')
 
 prepare() {
   cd ${pkgname}-${pkgver}
@@ -28,17 +27,34 @@
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" \
--n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  cd "$pkgname-$pkgver"
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
 
-  install -Dm 644 README.rdoc -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  gem install \
+--verbose \
+--ignore-dependencies \
+--no-user-install \
+--install-dir "$pkgdir/$_gemdir" \
+--bindir "$pkgdir/usr/bin" \
+"$_gemname-$pkgver.gem"
 
-  cd "${pkgdir}/${_gemdir}"
-  rm -rf cache gems/${_gemname}-${pkgver}/{ext,lib/*/*.so} \
-extensions/*/*/${_gemname}-${pkgver}/{mkmf.log,gem_make.out}
+  # delete unnecessary files & folders
+  cd "$pkgdir/$_gemdir"
+  find . -type f \
+-name "page-Makefile.ri" -delete \
+-o -name 'gem_make.out' -delete \
+-o -name 'mkmf.log' -delete
+  rm -rf cache
+  cd "gems/$_gemname-$pkgver"
+  rm -vrf spec ext POSTGRES Manifest.txt Rakefile* Gemfile
+
+  # move documentation
+  install -vd "$pkgdir/usr/share/doc/$pkgname"
+  mv *.rdoc "$pkgdir/usr/share/doc/$pkgname"
+
+  # move license
+  install -vd "$pkgdir/usr/share/licenses/$pkgname"
+  mv LICENSE BSDL "$pkgdir/usr/share/licenses/$pkgname"
 }
 
 # vim: ts=2 sw=2 et:



[arch-commits] Commit in ruby-ffi/repos (2 files)

2021-08-09 Thread George Rawlinson via arch-commits
Date: Tuesday, August 10, 2021 @ 02:37:37
  Author: grawlinson
Revision: 997304

archrelease: copy trunk to community-testing-x86_64

Added:
  ruby-ffi/repos/community-testing-x86_64/
  ruby-ffi/repos/community-testing-x86_64/PKGBUILD
(from rev 997303, ruby-ffi/trunk/PKGBUILD)

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

Copied: ruby-ffi/repos/community-testing-x86_64/PKGBUILD (from rev 997303, 
ruby-ffi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-10 02:37:37 UTC (rev 997304)
@@ -0,0 +1,49 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+# Contributor: Mario Finelli 
+# Contributor: Artem Vorotnikov 
+
+_gemname=ffi
+pkgname=ruby-$_gemname
+pkgver=1.15.3
+pkgrel=1
+pkgdesc='Ruby FFI'
+arch=('x86_64')
+url='https://github.com/ffi/ffi'
+license=('BSD')
+depends=('ruby')
+makedepends=('ruby-rdoc')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('f7b8d6257d12a6572a847eb17b117ee61c547500c11b73c097f95471975360311174d9d0d42865e2b6c54ee05d595aa3c90ea63563972db71e4ac6bb5e4aae79')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install \
+--verbose \
+--ignore-dependencies \
+--no-user-install \
+--install-dir "$pkgdir/$_gemdir" \
+--bindir "$pkgdir/usr/bin" \
+"$_gemname-$pkgver.gem"
+
+  # delete unnecessary files & folders
+  cd "$pkgdir/$_gemdir"
+  find . -type f \
+-name "page-Makefile.ri" -delete \
+-o -name 'gem_make.out' -delete \
+-o -name 'mkmf.log' -delete
+  rm -vrf cache
+  cd "gems/$_gemname-$pkgver"
+  rm -vrf ext rakelib "$_gemname.gemspec" Gemfile Rakefile
+
+  # move documentation
+  install -vd "$pkgdir/usr/share/doc/$pkgname"
+  mv -v samples CHANGELOG.md README.md "$pkgdir/usr/share/doc/$pkgname"
+
+  # move licenses
+  install -vd "$pkgdir/usr/share/licenses/$pkgname"
+  mv -v LICENSE* COPYING "$pkgdir/usr/share/licenses/$pkgname"
+}



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Tuesday, August 10, 2021 @ 02:33:11
  Author: grawlinson
Revision: 997303

upgpkg: ruby-ffi 1.15.3-1

* New upstream release.
* Add documentation to package.
* Remove some unnecessary cruft in attempt to modernize
  Ruby packages and to make package reproducible.

Modified:
  ruby-ffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-10 00:36:23 UTC (rev 997302)
+++ PKGBUILD2021-08-10 02:33:11 UTC (rev 997303)
@@ -1,11 +1,12 @@
-# Maintainer: Felix Yan 
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
 # Contributor: Mario Finelli 
 # Contributor: Artem Vorotnikov 
 
 _gemname=ffi
 pkgname=ruby-$_gemname
-pkgver=1.15.0
-pkgrel=2
+pkgver=1.15.3
+pkgrel=1
 pkgdesc='Ruby FFI'
 arch=('x86_64')
 url='https://github.com/ffi/ffi'
@@ -14,13 +15,35 @@
 makedepends=('ruby-rdoc')
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
-noextract=($_gemname-$pkgver.gem)
-sha512sums=('cfcc629ad80f0c99fdadef1e766b42a60d2e71c822a9358a9c17edd35a665cca7ed145c36b961e9c6ed7634b95808985705c02c4436b0ce4a26f06f75f215b89')
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('f7b8d6257d12a6572a847eb17b117ee61c547500c11b73c097f95471975360311174d9d0d42865e2b6c54ee05d595aa3c90ea63563972db71e4ac6bb5e4aae79')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  gem install \
+--verbose \
+--ignore-dependencies \
+--no-user-install \
+--install-dir "$pkgdir/$_gemdir" \
+--bindir "$pkgdir/usr/bin" \
+"$_gemname-$pkgver.gem"
+
+  # delete unnecessary files & folders
+  cd "$pkgdir/$_gemdir"
+  find . -type f \
+-name "page-Makefile.ri" -delete \
+-o -name 'gem_make.out' -delete \
+-o -name 'mkmf.log' -delete
+  rm -vrf cache
+  cd "gems/$_gemname-$pkgver"
+  rm -vrf ext rakelib "$_gemname.gemspec" Gemfile Rakefile
+
+  # move documentation
+  install -vd "$pkgdir/usr/share/doc/$pkgname"
+  mv -v samples CHANGELOG.md README.md "$pkgdir/usr/share/doc/$pkgname"
+
+  # move licenses
+  install -vd "$pkgdir/usr/share/licenses/$pkgname"
+  mv -v LICENSE* COPYING "$pkgdir/usr/share/licenses/$pkgname"
 }



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

2021-08-09 Thread Frederik Schwan via arch-commits
Date: Tuesday, August 10, 2021 @ 00:36:23
  Author: freswa
Revision: 997302

archrelease: copy trunk to community-x86_64

Added:
  fetchmail/repos/community-x86_64/PKGBUILD
(from rev 997301, fetchmail/trunk/PKGBUILD)
  fetchmail/repos/community-x86_64/fetchmail.service
(from rev 997301, fetchmail/trunk/fetchmail.service)
  fetchmail/repos/community-x86_64/fetchmail.sysusers
(from rev 997301, fetchmail/trunk/fetchmail.sysusers)
  fetchmail/repos/community-x86_64/fetchmail.tmpfiles
(from rev 997301, fetchmail/trunk/fetchmail.tmpfiles)
Deleted:
  fetchmail/repos/community-x86_64/PKGBUILD
  fetchmail/repos/community-x86_64/fetchmail.service
  fetchmail/repos/community-x86_64/fetchmail.sysusers
  fetchmail/repos/community-x86_64/fetchmail.tmpfiles

+
 PKGBUILD   |   76 +--
 fetchmail.service  |   22 +++---
 fetchmail.sysusers |4 +-
 fetchmail.tmpfiles |4 +-
 4 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-10 00:36:21 UTC (rev 997301)
+++ PKGBUILD2021-08-10 00:36:23 UTC (rev 997302)
@@ -1,38 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Amish 
-# Contributor: Victor3D 
-
-pkgname=fetchmail
-pkgver=6.4.20
-pkgrel=1
-pkgdesc='A remote-mail retrieval utility'
-arch=('x86_64')
-url='https://www.fetchmail.info'
-license=('GPL')
-depends=('openssl')
-makedepends=('python')
-optdepends=('tk: for using fetchmailconf'
-'python-future: for using fetchmailconf')
-source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
-'fetchmail.tmpfiles'
-'fetchmail.sysusers'
-'fetchmail.service')
-b2sums=('85137bdae2fda05cba6e9bee9056bb9a1ef09b96199dc5f991da9aa5c2073f1c8cbf3fae43999a79de338a95e9d28e474035200758b65ffa9fa18b5a905c1279'
-
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
-
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
-
'fca5437bec78786b9624c774015b9e0e7175973d548dbdab406af797a8c4a53b474d73b897a0009faee4dafd62190f93514c6f1ce403312b6a51afb4996dbf21')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-ssl=/usr
-  make
-}
-
-package() {
-  install -D -m644 fetchmail.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/fetchmail.conf
-  install -D -m644 fetchmail.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/fetchmail.conf
-  install -D -m644 fetchmail.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail.service
-  
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: fetchmail/repos/community-x86_64/PKGBUILD (from rev 997301, 
fetchmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-10 00:36:23 UTC (rev 997302)
@@ -0,0 +1,38 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Victor3D 
+
+pkgname=fetchmail
+pkgver=6.4.21
+pkgrel=1
+pkgdesc='A remote-mail retrieval utility'
+arch=('x86_64')
+url='https://www.fetchmail.info'
+license=('GPL')
+depends=('openssl')
+makedepends=('python')
+optdepends=('tk: for using fetchmailconf'
+'python-future: for using fetchmailconf')
+source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'fetchmail.tmpfiles'
+'fetchmail.sysusers'
+'fetchmail.service')
+b2sums=('4c2befad2b7dfa6957889e029572c259be7a20e4b54b864e2cca827540d745a57ad227f8e1fce1336e8f3a1005c780d8fa7c1b10b9ee05ce68dbcfac75afa179'
+
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
+
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
+
'fca5437bec78786b9624c774015b9e0e7175973d548dbdab406af797a8c4a53b474d73b897a0009faee4dafd62190f93514c6f1ce403312b6a51afb4996dbf21')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-ssl=/usr
+  make
+}
+
+package() {
+  install -D -m644 fetchmail.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/fetchmail.conf
+  install -D -m644 fetchmail.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/fetchmail.conf
+  install -D -m644 fetchmail.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail.service
+  
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: fetchmail.service
===
--- fetchmail.service   2021-08-10 00:36:21 UTC (rev 997301)
+++ fetchmail.service   2021-08-10 00:36:23 UTC (rev 997302)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Fetchmail
-After=network.target
-
-[Service]

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

2021-08-09 Thread Frederik Schwan via arch-commits
Date: Tuesday, August 10, 2021 @ 00:36:21
  Author: freswa
Revision: 997301

upgpkg: fetchmail 6.4.21-1

Modified:
  fetchmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 21:57:12 UTC (rev 997300)
+++ PKGBUILD2021-08-10 00:36:21 UTC (rev 997301)
@@ -3,7 +3,7 @@
 # Contributor: Victor3D 
 
 pkgname=fetchmail
-pkgver=6.4.20
+pkgver=6.4.21
 pkgrel=1
 pkgdesc='A remote-mail retrieval utility'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 'fetchmail.tmpfiles'
 'fetchmail.sysusers'
 'fetchmail.service')
-b2sums=('85137bdae2fda05cba6e9bee9056bb9a1ef09b96199dc5f991da9aa5c2073f1c8cbf3fae43999a79de338a95e9d28e474035200758b65ffa9fa18b5a905c1279'
+b2sums=('4c2befad2b7dfa6957889e029572c259be7a20e4b54b864e2cca827540d745a57ad227f8e1fce1336e8f3a1005c780d8fa7c1b10b9ee05ce68dbcfac75afa179'
 
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
 
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
 
'fca5437bec78786b9624c774015b9e0e7175973d548dbdab406af797a8c4a53b474d73b897a0009faee4dafd62190f93514c6f1ce403312b6a51afb4996dbf21')



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Monday, August 9, 2021 @ 21:57:12
  Author: grawlinson
Revision: 997300

archrelease: copy trunk to community-x86_64

Added:
  distrobuilder/repos/community-x86_64/PKGBUILD
(from rev 997299, distrobuilder/trunk/PKGBUILD)
Deleted:
  distrobuilder/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  101 ++---
 1 file changed, 51 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 21:56:25 UTC (rev 997299)
+++ PKGBUILD2021-08-09 21:57:12 UTC (rev 997300)
@@ -1,50 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: graysky 
-# Contributor: Stéphane Graber 
-
-pkgname=distrobuilder
-pkgver=1.2
-pkgrel=2
-pkgdesc="System container image builder for LXC and LXD"
-arch=('x86_64')
-url="https://github.com/lxc/distrobuilder;
-license=('Apache')
-depends=('rsync' 'squashfs-tools' 'gnupg' 'debootstrap')
-makedepends=('go' 'git')
-conflicts=('distrobuilder-git')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgname-$pkgver.tar.gz")
-b2sums=('e6d0bf355818020ebe304adb71c35a67698441eaf3baf62abcddb334337388d06fb1bc49910be0c716038a41f18bcf0573a484e7bbd1fc4fb46ccabd15830376')
-
-prepare() {
-  mv "$pkgname-$pkgname-$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-
-  # create build folder
-  mkdir build
-
-  # download dependencies
-  go mod vendor
-}
-
-build() {
-  # export various Go flags
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-
-  # build binary
-  cd "$pkgname-$pkgver"
-  go build -v -o build ./...
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  go test -v ./...
-  go vet -v ./...
-}
-
-package() {
-  install -Dm755 -t "$pkgdir/usr/bin" "$pkgname-$pkgver/build/$pkgname"
-}

Copied: distrobuilder/repos/community-x86_64/PKGBUILD (from rev 997299, 
distrobuilder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 21:57:12 UTC (rev 997300)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson 
+# Contributor: graysky 
+# Contributor: Stéphane Graber 
+
+pkgname=distrobuilder
+pkgver=1.3
+pkgrel=1
+pkgdesc="System container image builder for LXC and LXD"
+arch=('x86_64')
+url="https://github.com/lxc/distrobuilder;
+license=('Apache')
+depends=('rsync' 'squashfs-tools' 'gnupg' 'debootstrap')
+makedepends=('go' 'git')
+conflicts=('distrobuilder-git')
+source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
+b2sums=('fa3b9ee784fb84f349e0646389ee4cb11811cde15da11ce7cdc2f983f39e2ced51612d734ea2093865dc4f141951287be772e414907fe09d4b364f7a70acd7f0'
+'SKIP')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67') # Stéphane Graber 

+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # create build folder
+  mkdir build
+
+  # download dependencies
+  go mod vendor
+}
+
+build() {
+  # export various Go flags
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+
+  # build binary
+  cd "$pkgname-$pkgver"
+  go build -v -o build ./...
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  go test -v ./...
+  go vet -v ./...
+}
+
+package() {
+  install -Dm755 -t "$pkgdir/usr/bin" "$pkgname-$pkgver/build/$pkgname"
+}



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Monday, August 9, 2021 @ 21:56:25
  Author: grawlinson
Revision: 997299

upgpkg: distrobuilder 1.3-1

* New upstream release.
* Add PGP key (Stephane Graber).

Modified:
  distrobuilder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 21:47:51 UTC (rev 997298)
+++ PKGBUILD2021-08-09 21:56:25 UTC (rev 997299)
@@ -3,8 +3,8 @@
 # Contributor: Stéphane Graber 
 
 pkgname=distrobuilder
-pkgver=1.2
-pkgrel=2
+pkgver=1.3
+pkgrel=1
 pkgdesc="System container image builder for LXC and LXD"
 arch=('x86_64')
 url="https://github.com/lxc/distrobuilder;
@@ -12,11 +12,12 @@
 depends=('rsync' 'squashfs-tools' 'gnupg' 'debootstrap')
 makedepends=('go' 'git')
 conflicts=('distrobuilder-git')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgname-$pkgver.tar.gz")
-b2sums=('e6d0bf355818020ebe304adb71c35a67698441eaf3baf62abcddb334337388d06fb1bc49910be0c716038a41f18bcf0573a484e7bbd1fc4fb46ccabd15830376')
+source=("$url/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
+b2sums=('fa3b9ee784fb84f349e0646389ee4cb11811cde15da11ce7cdc2f983f39e2ced51612d734ea2093865dc4f141951287be772e414907fe09d4b364f7a70acd7f0'
+'SKIP')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67') # Stéphane Graber 

 
 prepare() {
-  mv "$pkgname-$pkgname-$pkgver" "$pkgname-$pkgver"
   cd "$pkgname-$pkgver"
 
   # create build folder



[arch-commits] Commit in arch-release-promotion/repos/community-any (2 files)

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:47:51
  Author: dvzrv
Revision: 997298

archrelease: copy trunk to community-any

Added:
  arch-release-promotion/repos/community-any/PKGBUILD
(from rev 997297, arch-release-promotion/trunk/PKGBUILD)
Deleted:
  arch-release-promotion/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 21:47:44 UTC (rev 997297)
+++ PKGBUILD2021-08-09 21:47:51 UTC (rev 997298)
@@ -1,40 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=arch-release-promotion
-pkgver=0.1.0
-pkgrel=1
-pkgdesc="Promote official releases with signatures and additional artifacts"
-arch=('any')
-url="https://gitlab.archlinux.org/archlinux/arch-release-promotion;
-license=('GPL3')
-depends=('python-dotenv' 'python-email-validator' 'python-gitlab'
-'python-orjson' 'python-prometheus_client' 'python-pydantic' 'python-pyxdg'
-'python-toml' 'python-torrentool')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('7151e06de280abe87398c5c376683fabfde1777a12649b411bb13848bb6e526b')
-b2sums=('ce4060605aa3beab009c155c0533aeb80de861a76fb8704c81d0f6922f51c86d95614b051ea9ea0a19d4fac2a6bd283140704413ee90fe5a859ab637620e')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: arch-release-promotion/repos/community-any/PKGBUILD (from rev 997297, 
arch-release-promotion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 21:47:51 UTC (rev 997298)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+
+pkgname=arch-release-promotion
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="Promote official releases with signatures and additional artifacts"
+arch=('any')
+url="https://gitlab.archlinux.org/archlinux/arch-release-promotion;
+license=('GPL3')
+depends=('python-dotenv' 'python-email-validator' 'python-gitlab'
+'python-orjson' 'python-prometheus_client' 'python-pydantic' 'python-pyxdg'
+'python-toml' 'python-torrentool')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+backup=("etc/${pkgname}/projects.toml")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('56cf61e4b9dfcae82653402f129b226598cbca9aebf5d13a27326031767a264e')
+b2sums=('3796df10b60625f3a26e677a7065e9c38dae217eef32cbf35ef9f6661667906936c12804294a511e348f350d1f7675a90e52fcdcd5f2605c42e7d7c9b1bc')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 {examples/example.toml,README.rst} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 examples/projects.toml -t "${pkgdir}/etc/${pkgname}"
+}



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

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:47:44
  Author: dvzrv
Revision: 997297

upgpkg: arch-release-promotion 0.1.1-1: Upgrade to 0.1.1.

Add default configuration for Arch Linux and an example configuration for 
anyone.

Modified:
  arch-release-promotion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 21:43:22 UTC (rev 997296)
+++ PKGBUILD2021-08-09 21:47:44 UTC (rev 997297)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=arch-release-promotion
-pkgver=0.1.0
+pkgver=0.1.1
 pkgrel=1
 pkgdesc="Promote official releases with signatures and additional artifacts"
 arch=('any')
@@ -12,9 +12,10 @@
 'python-toml' 'python-torrentool')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
+backup=("etc/${pkgname}/projects.toml")
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('7151e06de280abe87398c5c376683fabfde1777a12649b411bb13848bb6e526b')
-b2sums=('ce4060605aa3beab009c155c0533aeb80de861a76fb8704c81d0f6922f51c86d95614b051ea9ea0a19d4fac2a6bd283140704413ee90fe5a859ab637620e')
+sha256sums=('56cf61e4b9dfcae82653402f129b226598cbca9aebf5d13a27326031767a264e')
+b2sums=('3796df10b60625f3a26e677a7065e9c38dae217eef32cbf35ef9f6661667906936c12804294a511e348f350d1f7675a90e52fcdcd5f2605c42e7d7c9b1bc')
 
 prepare() {
   cd "$pkgname-$pkgver"
@@ -36,5 +37,6 @@
   python setup.py install --skip-build \
   --optimize=1 \
   --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 {examples/example.toml,README.rst} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 examples/projects.toml -t "${pkgdir}/etc/${pkgname}"
 }



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Monday, August 9, 2021 @ 21:43:22
  Author: grawlinson
Revision: 997296

archrelease: copy trunk to community-any

Added:
  python-xlsxwriter/repos/community-any/PKGBUILD
(from rev 997295, python-xlsxwriter/trunk/PKGBUILD)
Deleted:
  python-xlsxwriter/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 21:42:10 UTC (rev 997295)
+++ PKGBUILD2021-08-09 21:43:22 UTC (rev 997296)
@@ -1,30 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: George Rawlinson 
-
-pkgname=python-xlsxwriter
-pkgver=1.4.5
-pkgrel=1
-pkgdesc="A Python module for creating Excel XLSX files"
-arch=('any')
-url="https://github.com/jmcnamara/XlsxWriter;
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/RELEASE_${pkgver}.tar.gz")
-sha256sums=('6d58fab6143bec4a24657ea99e83628e5a94d9952f87790bf9c1d8b0115705a2')
-
-build() {
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-  python -m unittest discover
-}
-
-package() {
-  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-xlsxwriter/repos/community-any/PKGBUILD (from rev 997295, 
python-xlsxwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 21:43:22 UTC (rev 997296)
@@ -0,0 +1,30 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: George Rawlinson 
+
+pkgname=python-xlsxwriter
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="A Python module for creating Excel XLSX files"
+arch=('any')
+url="https://github.com/jmcnamara/XlsxWriter;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/RELEASE_${pkgver}.tar.gz")
+sha256sums=('e7939898b52f2bdde11955ebb82f1f3a033aa5e6c9d4834bf85758e3b416ad35')
+
+build() {
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python -m unittest discover
+}
+
+package() {
+  cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -D -m644 "LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-08-09 Thread George Rawlinson via arch-commits
Date: Monday, August 9, 2021 @ 21:42:10
  Author: grawlinson
Revision: 997295

upgpkg: python-xlsxwriter 2.0.0-1

New upstream release.

Modified:
  python-xlsxwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 21:35:43 UTC (rev 997294)
+++ PKGBUILD2021-08-09 21:42:10 UTC (rev 997295)
@@ -2,7 +2,7 @@
 # Contributor: George Rawlinson 
 
 pkgname=python-xlsxwriter
-pkgver=1.4.5
+pkgver=2.0.0
 pkgrel=1
 pkgdesc="A Python module for creating Excel XLSX files"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python')
 makedepends=('python-setuptools')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/RELEASE_${pkgver}.tar.gz")
-sha256sums=('6d58fab6143bec4a24657ea99e83628e5a94d9952f87790bf9c1d8b0115705a2')
+sha256sums=('e7939898b52f2bdde11955ebb82f1f3a033aa5e6c9d4834bf85758e3b416ad35')
 
 build() {
   cd "$srcdir"/XlsxWriter-RELEASE_${pkgver}



[arch-commits] Commit in arch-release-promotion/repos (2 files)

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:35:43
  Author: dvzrv
Revision: 997294

archrelease: copy trunk to community-any

Added:
  arch-release-promotion/repos/community-any/
  arch-release-promotion/repos/community-any/PKGBUILD
(from rev 997293, arch-release-promotion/trunk/PKGBUILD)

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

Copied: arch-release-promotion/repos/community-any/PKGBUILD (from rev 997293, 
arch-release-promotion/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-08-09 21:35:43 UTC (rev 997294)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+
+pkgname=arch-release-promotion
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Promote official releases with signatures and additional artifacts"
+arch=('any')
+url="https://gitlab.archlinux.org/archlinux/arch-release-promotion;
+license=('GPL3')
+depends=('python-dotenv' 'python-email-validator' 'python-gitlab'
+'python-orjson' 'python-prometheus_client' 'python-pydantic' 'python-pyxdg'
+'python-toml' 'python-torrentool')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7151e06de280abe87398c5c376683fabfde1777a12649b411bb13848bb6e526b')
+b2sums=('ce4060605aa3beab009c155c0533aeb80de861a76fb8704c81d0f6922f51c86d95614b051ea9ea0a19d4fac2a6bd283140704413ee90fe5a859ab637620e')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



[arch-commits] Commit in (4 files)

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:31:16
  Author: dvzrv
Revision: 997293

Add arch-release-promotion 0.1.0.

Added:
  arch-release-promotion/
  arch-release-promotion/repos/
  arch-release-promotion/trunk/
  arch-release-promotion/trunk/PKGBUILD

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

Added: arch-release-promotion/trunk/PKGBUILD
===
--- arch-release-promotion/trunk/PKGBUILD   (rev 0)
+++ arch-release-promotion/trunk/PKGBUILD   2021-08-09 21:31:16 UTC (rev 
997293)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+
+pkgname=arch-release-promotion
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Promote official releases with signatures and additional artifacts"
+arch=('any')
+url="https://gitlab.archlinux.org/archlinux/arch-release-promotion;
+license=('GPL3')
+depends=('python-dotenv' 'python-email-validator' 'python-gitlab'
+'python-orjson' 'python-prometheus_client' 'python-pydantic' 'python-pyxdg'
+'python-toml' 'python-torrentool')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7151e06de280abe87398c5c376683fabfde1777a12649b411bb13848bb6e526b')
+b2sums=('ce4060605aa3beab009c155c0533aeb80de861a76fb8704c81d0f6922f51c86d95614b051ea9ea0a19d4fac2a6bd283140704413ee90fe5a859ab637620e')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:13:08
  Author: dvzrv
Revision: 997292

archrelease: copy trunk to community-staging-x86_64

Added:
  libiio/repos/community-staging-x86_64/
  libiio/repos/community-staging-x86_64/PKGBUILD
(from rev 997291, libiio/trunk/PKGBUILD)

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

Copied: libiio/repos/community-staging-x86_64/PKGBUILD (from rev 997291, 
libiio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 21:13:08 UTC (rev 997292)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+
+# needs rebuild on minor soname bumps
+
+pkgname=libiio
+pkgver=0.22
+pkgrel=1
+pkgdesc="Interface to the Linux Industrial Input/Output (IIO) Subsystem"
+arch=('x86_64')
+url="https://github.com/analogdevicesinc/libiio;
+license=('LGPL2.1')
+depends=('gcc-libs' 'glibc' 'libaio' 'libserialport' 'libxml2')
+makedepends=('avahi' 'cmake' 'libusb' 'python' 'python-setuptools')
+optdepends=('python: Python bindings')
+provides=('libiio.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/analogdevicesinc/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('82826c3f4974b279d8f22de4eaa415bc61da242c1474c59c6e744a1083f015ab42cdf0573816bd02b7aee6fee6ed86a0504c9f28de35f925fa8e5c9811dd8648')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_SBINDIR='bin' \
+-DCMAKE_INSTALL_LIBDIR='lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-DPYTHON_BINDINGS=ON \
+-DSYSTEMD_UNIT_INSTALL_DIR='/usr/lib/systemd/system' \
+-DUDEV_RULES_INSTALL_DIR='/usr/lib/udev/rules.d' \
+-DWITH_MAN=ON \
+-DWITH_SYSTEMD=ON \
+-Wno-dev \
+-B build \
+-S .
+  make -C build VERBOSE=1
+}
+
+package() {
+  depends+=('libavahi-client.so' 'libavahi-common.so' 'libusb-1.0.so')
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" -C build install
+  install -vDm 644 {CONTRIBUTING,Contributors,README}.md \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 21:13:02
  Author: dvzrv
Revision: 997291

upgpkg: libiio 0.22-1: Upgrade to 0.22.

Add avahi to makedepends and its used sonames in package().

Modified:
  libiio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 21:09:34 UTC (rev 997290)
+++ PKGBUILD2021-08-09 21:13:02 UTC (rev 997291)
@@ -3,18 +3,18 @@
 # needs rebuild on minor soname bumps
 
 pkgname=libiio
-pkgver=0.21
-pkgrel=4
+pkgver=0.22
+pkgrel=1
 pkgdesc="Interface to the Linux Industrial Input/Output (IIO) Subsystem"
 arch=('x86_64')
 url="https://github.com/analogdevicesinc/libiio;
 license=('LGPL2.1')
 depends=('gcc-libs' 'glibc' 'libaio' 'libserialport' 'libxml2')
-makedepends=('cmake' 'libusb' 'python' 'python-setuptools')
+makedepends=('avahi' 'cmake' 'libusb' 'python' 'python-setuptools')
 optdepends=('python: Python bindings')
 provides=('libiio.so')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/analogdevicesinc/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('5bbacd6a1141654f4825f00c1c2b27223e6cc324c80d7bcbb49e29997a83d585e45c0c52331ca10ee881c2f340b535984c3d667b61d8377a77e5c0f5cb1d2dc0')
+sha512sums=('82826c3f4974b279d8f22de4eaa415bc61da242c1474c59c6e744a1083f015ab42cdf0573816bd02b7aee6fee6ed86a0504c9f28de35f925fa8e5c9811dd8648')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -34,7 +34,7 @@
 }
 
 package() {
-  depends+=('libusb-1.0.so')
+  depends+=('libavahi-client.so' 'libavahi-common.so' 'libusb-1.0.so')
   cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" -C build install
   install -vDm 644 {CONTRIBUTING,Contributors,README}.md \



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

2021-08-09 Thread Daniel M. Capella via arch-commits
Date: Monday, August 9, 2021 @ 21:09:34
  Author: polyzen
Revision: 997290

archrelease: copy trunk to community-x86_64

Added:
  rust-analyzer/repos/community-x86_64/PKGBUILD
(from rev 997289, rust-analyzer/trunk/PKGBUILD)
Deleted:
  rust-analyzer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 21:09:13 UTC (rev 997289)
+++ PKGBUILD2021-08-09 21:09:34 UTC (rev 997290)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2021-08-02
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc='Experimental Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://rust-analyzer.github.io/
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust')
-makedepends=('git')
-source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked
-}
-
-build() {
-  cd $pkgname
-  cargo build --release --locked --offline
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 997289, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 21:09:34 UTC (rev 997290)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2021-08-09
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc='Experimental Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://rust-analyzer.github.io/
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust')
+makedepends=('git')
+source=("git+https://github.com/rust-analyzer/rust-analyzer.git#tag=$_pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked
+}
+
+build() {
+  cd $pkgname
+  cargo build --release --locked --offline
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/bin target/release/rust-analyzer
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-09 Thread Daniel M. Capella via arch-commits
Date: Monday, August 9, 2021 @ 21:09:13
  Author: polyzen
Revision: 997289

upgpkg: rust-analyzer 20210809-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 20:54:35 UTC (rev 997288)
+++ PKGBUILD2021-08-09 21:09:13 UTC (rev 997289)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2021-08-02
+_pkgver=2021-08-09
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Experimental Rust compiler front-end for IDEs'



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

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 20:54:35
  Author: jelle
Revision: 997288

archrelease: copy trunk to community-x86_64

Added:
  python-apsw/repos/community-x86_64/LICENSE
(from rev 997287, python-apsw/trunk/LICENSE)
  python-apsw/repos/community-x86_64/PKGBUILD
(from rev 997287, python-apsw/trunk/PKGBUILD)
Deleted:
  python-apsw/repos/community-x86_64/LICENSE
  python-apsw/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   54 +--
 PKGBUILD |   76 ++---
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2021-08-09 20:54:25 UTC (rev 997287)
+++ LICENSE 2021-08-09 20:54:35 UTC (rev 997288)
@@ -1,27 +0,0 @@
-Copyright (c) 2004-2014 Roger Binns 
-See src/traceback.c for code by Greg Ewing.
-
-All code and documentation is provided under this license:
-
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented; you must not
-claim that you wrote the original software. If you use this software
-in a product, an acknowledgment in the product documentation would be
-appreciated but is not required.
-
-2. Altered source versions must be plainly marked as such, and must not be
-misrepresented as being the original software.
-
-3. This notice may not be removed or altered from any source
-distribution.
-
-Alternatively you may strike the license above and use it under any
-OSI approved open source license such as those listed at
-http://opensource.org/licenses/alphabetical

Copied: python-apsw/repos/community-x86_64/LICENSE (from rev 997287, 
python-apsw/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2021-08-09 20:54:35 UTC (rev 997288)
@@ -0,0 +1,27 @@
+Copyright (c) 2004-2014 Roger Binns 
+See src/traceback.c for code by Greg Ewing.
+
+All code and documentation is provided under this license:
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+claim that you wrote the original software. If you use this software
+in a product, an acknowledgment in the product documentation would be
+appreciated but is not required.
+
+2. Altered source versions must be plainly marked as such, and must not be
+misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source
+distribution.
+
+Alternatively you may strike the license above and use it under any
+OSI approved open source license such as those listed at
+http://opensource.org/licenses/alphabetical

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 20:54:25 UTC (rev 997287)
+++ PKGBUILD2021-08-09 20:54:35 UTC (rev 997288)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Brendan MacDonell 
-# Contributor: Linmiao Xu 
-# Contributor: Juan Miguel Cejuela 
-
-pkgname=python-apsw
-pkgver=3.35.4
-pkgrel=1
-pkgdesc="Python wrapper for SQLite"
-arch=('x86_64')
-url="https://github.com/rogerbinns/apsw;
-license=('MIT')
-depends=('python' 'sqlite')
-source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz;)
-sha512sums=('4a566e90b7faf6a42b95fc496f76535a92a872e58e395d299cf8f0e3498d5659ba9f0a27970562f61fafa1ffae349201edd0fd1daa06d793a715b7eb5f561ecb')
-b2sums=('44f41546949c4e53e28d9ffbd5d31848594748b1fe159f96b02162a44e36aa16b359251b2311bb610ba736080ee241bc758b3268c17aa81a8dea210f6aae64b3')
-
-build() {
-  cd apsw-${pkgver}-r1
-
-  python setup.py build --enable=load_extension
-}
-
-check() {
-  cd "$srcdir"/apsw-${pkgver}-r1
-
-  gcc ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -fPIC -shared -o testextension.sqlext 
src/testextension.c
-  # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
-  PYTHONPATH="${pythonpaths[0]}" python setup.py test
-}
-
-package() {
-  cd "$srcdir"/apsw-${pkgver}-r1
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: 

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

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 20:54:25
  Author: jelle
Revision: 997287

upgpkg: python-apsw 3.36.0-1

Modified:
  python-apsw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 20:43:53 UTC (rev 997286)
+++ PKGBUILD2021-08-09 20:54:25 UTC (rev 997287)
@@ -4,7 +4,7 @@
 # Contributor: Juan Miguel Cejuela 
 
 pkgname=python-apsw
-pkgver=3.35.4
+pkgver=3.36.0
 pkgrel=1
 pkgdesc="Python wrapper for SQLite"
 arch=('x86_64')
@@ -12,8 +12,8 @@
 license=('MIT')
 depends=('python' 'sqlite')
 
source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz;)
-sha512sums=('4a566e90b7faf6a42b95fc496f76535a92a872e58e395d299cf8f0e3498d5659ba9f0a27970562f61fafa1ffae349201edd0fd1daa06d793a715b7eb5f561ecb')
-b2sums=('44f41546949c4e53e28d9ffbd5d31848594748b1fe159f96b02162a44e36aa16b359251b2311bb610ba736080ee241bc758b3268c17aa81a8dea210f6aae64b3')
+sha512sums=('22848effb6d4d69e486750b1706316551b593c055b40b32e897161d6d78642a36ccf72cf86ff5e7e1a2520b33fcdcf50116338aaa689630b00e1b6b3362744c0')
+b2sums=('fc942e9402488352b344e8e3a749194f84657d929b6e0258fe065aa3a9698e7e9744f61c328e0873f7c6bc1233cfbca0b019c4c801121c2d35d94c06f4766e37')
 
 build() {
   cd apsw-${pkgver}-r1



[arch-commits] Commit in apparmor/repos/extra-x86_64 (3 files)

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 20:47:12
  Author: dvzrv
Revision: 421277

archrelease: copy trunk to extra-x86_64

Added:
  apparmor/repos/extra-x86_64/PKGBUILD
(from rev 421276, apparmor/trunk/PKGBUILD)
Deleted:
  apparmor/repos/extra-x86_64/PKGBUILD
  apparmor/repos/extra-x86_64/apparmor-3.0.1-python_ldflags.patch

-+
 PKGBUILD|  292 +-
 apparmor-3.0.1-python_ldflags.patch |   12 -
 2 files changed, 148 insertions(+), 156 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 20:47:04 UTC (rev 421276)
+++ PKGBUILD2021-08-09 20:47:12 UTC (rev 421277)
@@ -1,144 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=apparmor
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="Mandatory Access Control (MAC) using Linux Security Module (LSM)"
-arch=('x86_64')
-url="https://gitlab.com/apparmor/apparmor;
-license=('GPL2' 'LGPL2.1')
-depends=('audit' 'glibc' 'pam' 'python')
-makedepends=('apache' 'libxcrypt' 'ruby' 'swig')
-checkdepends=('dejagnu' 'perl-locale-gettext' 'python-notify2' 'python-psutil')
-optdepends=('perl: for perl bindings'
-'python-notify2: for aa-notify'
-'python-psutil: for aa-notify'
-'ruby: for ruby bindings')
-provides=('libapparmor.so')
-backup=('etc/apparmor/easyprof.conf'
-'etc/apparmor/logprof.conf'
-'etc/apparmor/notify.conf'
-'etc/apparmor/parser.conf'
-'etc/apparmor/severity.db')
-source=("https://launchpad.net/${pkgname}/${pkgver%.[0-9]}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.asc}
-"${pkgname}-3.0.1-python_ldflags.patch"
-)
-sha512sums=('e1073e7b2cde7cc4cefcfddce8fa5069845b5873c260b9fbd4bea2ff801708101d813ff30e23a64da36f3c6394cd9339e01a170e9add69deef2d70ecd9ed9687'
-'SKIP'
-
'04d313c5fd95e975e1df9313869166d7318560fc83218d8b0ae7c17fed31883d4a5f3334b3ad28d22864a1ac41a3ac846a38fbc6c59fec3bc6b111ddb0015890')
-b2sums=('c530d159a4139de8e59d9d975af866259b56d555e3abe2d1e2a6bfd2db57d8371d643bb93f1cd6ca96172960c09a74cc05c82d34a2e253c4c1f6ecce747f4129'
-'SKIP'
-
'0ba81da585d4aca8cf88c08e8350e35d84b2675d53d0f435bb309fc875ddcfd3245740494da24502d5ef77be13e63863d35c04461c4e6dd8ce3ef48e69b4536b')
-validpgpkeys=('3ECDCBA5FB34D254961CC53F6689E64E3D3664BB') # AppArmor 
Development Team (AppArmor signing key) 
-_core_perl="/usr/bin/core_perl"
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-
-  # add missing LDFLAGS for python library
-  # https://gitlab.com/apparmor/apparmor/-/issues/129
-  patch -Np1 -i ../"${pkgname}-3.0.1-python_ldflags.patch"
-
-  # fix PYTHONPATH and add LD_LIBRARY_PATH for aa-logprof based check:
-  # https://gitlab.com/apparmor/apparmor/issues/39
-  local _py3_ver=$(python --version | cut -d " " -f2)
-  local 
path="${PWD}/libraries/libapparmor/swig/python/build/lib.linux-${CARCH}-${_py3_ver%"."*}/LibAppArmor"
-  local libs="${PWD}/libraries/libapparmor/src/.libs"
-  sed -e "/PYTHONPATH/ s|utils\ |utils:$path\ LD_LIBRARY_PATH=$libs\ |" \
-  -i profiles/Makefile
-  (
-cd libraries/libapparmor/
-autoreconf -vfi
-  )
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # export required perl executable locations
-  export MAKEFLAGS+=" POD2MAN=${_core_perl}/pod2man"
-  export MAKEFLAGS+=" POD2HTML=${_core_perl}/pod2html"
-  export MAKEFLAGS+=" PODCHECKER=${_core_perl}/podchecker"
-  export MAKEFLAGS+=" PROVE=${_core_perl}/prove"
-  (
-cd "libraries/libapparmor/"
-./configure --prefix=/usr \
---sbindir=/usr/bin \
---with-perl \
---with-python \
---with-ruby
-make
-  )
-  make -C binutils
-  make -C parser
-  make -C profiles
-  make -C utils
-  make -C changehat/pam_apparmor
-  make -C changehat/mod_apparmor
-  make -C utils/vim
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  echo "INFO: Running check: libraries/libapparmor"
-  make -C libraries/libapparmor check
-  echo "INFO: Running check binutils"
-  make -C binutils check
-  echo "INFO: Running check parser"
-  make -C parser check
-  # NOTE: the profiles checks are notoriously broken, so run each separately
-  echo "INFO: Running check-abstractions.d profiles"
-  make -C profiles check-abstractions.d
-#  # many hardcoded paths are not accounted for:
-#  # https://gitlab.com/apparmor/apparmor/-/issues/137
-#  echo "INFO: Running check-logprof profiles"
-#  make -C profiles check-logprof
-  echo "INFO: Running check-parser profiles"
-  make -C profiles check-parser
-  echo "INFO: Running check utils"
-  # we do not care about linting when running tests
-  # https://gitlab.com/apparmor/apparmor/-/issues/121
-  make PYFLAKES='/usr/bin/true' -C utils check
-}
-
-package() {
-  depends+=('libcrypt.so')
-  cd "$pkgname-$pkgver"
-  make -C libraries/libapparmor DESTDIR="${pkgdir}" install
-  make -C changehat/pam_apparmor DESTDIR="${pkgdir}/usr" install
-  make -C 

[arch-commits] Commit in apparmor/trunk (PKGBUILD apparmor-3.0.1-python_ldflags.patch)

2021-08-09 Thread David Runge via arch-commits
Date: Monday, August 9, 2021 @ 20:47:04
  Author: dvzrv
Revision: 421276

upgpkg: apparmor 3.0.3-1: Upgrade to 3.0.3.

Remove now included patch for python LDFLAGS.
Fix the reproducibility of the package by setting PYTHONHASHSEED=0,
running the tests against a copy of the build files and
sorting the additions to the backup array.

Modified:
  apparmor/trunk/PKGBUILD
Deleted:
  apparmor/trunk/apparmor-3.0.1-python_ldflags.patch

-+
 PKGBUILD|   38 ++
 apparmor-3.0.1-python_ldflags.patch |   12 --
 2 files changed, 21 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 15:57:49 UTC (rev 421275)
+++ PKGBUILD2021-08-09 20:47:04 UTC (rev 421276)
@@ -1,8 +1,8 @@
 # Maintainer: David Runge 
 
 pkgname=apparmor
-pkgver=3.0.1
-pkgrel=3
+pkgver=3.0.3
+pkgrel=1
 pkgdesc="Mandatory Access Control (MAC) using Linux Security Module (LSM)"
 arch=('x86_64')
 url="https://gitlab.com/apparmor/apparmor;
@@ -20,25 +20,18 @@
 'etc/apparmor/notify.conf'
 'etc/apparmor/parser.conf'
 'etc/apparmor/severity.db')
-source=("https://launchpad.net/${pkgname}/${pkgver%.[0-9]}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.asc}
-"${pkgname}-3.0.1-python_ldflags.patch"
+source=(
+  
"https://launchpad.net/${pkgname}/${pkgver%.[0-9]}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.asc}
 )
-sha512sums=('e1073e7b2cde7cc4cefcfddce8fa5069845b5873c260b9fbd4bea2ff801708101d813ff30e23a64da36f3c6394cd9339e01a170e9add69deef2d70ecd9ed9687'
-'SKIP'
-
'04d313c5fd95e975e1df9313869166d7318560fc83218d8b0ae7c17fed31883d4a5f3334b3ad28d22864a1ac41a3ac846a38fbc6c59fec3bc6b111ddb0015890')
-b2sums=('c530d159a4139de8e59d9d975af866259b56d555e3abe2d1e2a6bfd2db57d8371d643bb93f1cd6ca96172960c09a74cc05c82d34a2e253c4c1f6ecce747f4129'
-'SKIP'
-
'0ba81da585d4aca8cf88c08e8350e35d84b2675d53d0f435bb309fc875ddcfd3245740494da24502d5ef77be13e63863d35c04461c4e6dd8ce3ef48e69b4536b')
+sha512sums=('bbf26377e60da60dab56473ee5af15aa0f3fdf2f2a61dbfcdeba12a925afda3bc6a0f6cc31e07927400425b8c3b3649833f448d8674044c7274ef06923ab48b5'
+'SKIP')
+b2sums=('aada9c32c2cde4a110cbd1d626ec00b08e29e76182185752e5c23e2ec0c2668a732ffdf1eb1660bd8bc294188ccf0da42b4282939f5969a6aed39084be00769c'
+'SKIP')
 validpgpkeys=('3ECDCBA5FB34D254961CC53F6689E64E3D3664BB') # AppArmor 
Development Team (AppArmor signing key) 
 _core_perl="/usr/bin/core_perl"
 
 prepare() {
   cd "${pkgname}-${pkgver}"
-
-  # add missing LDFLAGS for python library
-  # https://gitlab.com/apparmor/apparmor/-/issues/129
-  patch -Np1 -i ../"${pkgname}-3.0.1-python_ldflags.patch"
-
   # fix PYTHONPATH and add LD_LIBRARY_PATH for aa-logprof based check:
   # https://gitlab.com/apparmor/apparmor/issues/39
   local _py3_ver=$(python --version | cut -d " " -f2)
@@ -54,6 +47,11 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
+
+  # make some python bytecode reproducible
+  # https://gitlab.com/apparmor/apparmor/-/issues/185
+  export PYTHONHASHSEED=0
+
   # export required perl executable locations
   export MAKEFLAGS+=" POD2MAN=${_core_perl}/pod2man"
   export MAKEFLAGS+=" POD2HTML=${_core_perl}/pod2html"
@@ -75,10 +73,16 @@
   make -C changehat/pam_apparmor
   make -C changehat/mod_apparmor
   make -C utils/vim
+
+  # copy to test location as some tests render the resulting python bytecode
+  # unreproducible even when exporting PYTHONHASHSEED=0:
+  # https://gitlab.com/apparmor/apparmor/-/issues/184
+  cd ..
+  cp -av "${pkgname}-${pkgver}" "${pkgname}-${pkgver}-test"
 }
 
 check() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver-test"
   echo "INFO: Running check: libraries/libapparmor"
   make -C libraries/libapparmor check
   echo "INFO: Running check binutils"
@@ -140,5 +144,5 @@
   cd "${pkgdir}"
   # trick extract_function_variable() in makepkg into not detecting the
   # backup array modification and adding remaining configuration files
-  [[ /usr/bin/true ]] && backup=( ${backup[@]} $(find "etc/${pkgname}.d/" 
-type f) )
+  [[ /usr/bin/true ]] && backup=( ${backup[@]} $(find "etc/${pkgname}.d/" 
-type f | LC_ALL=C sort) )
 }

Deleted: apparmor-3.0.1-python_ldflags.patch
===
--- apparmor-3.0.1-python_ldflags.patch 2021-08-09 15:57:49 UTC (rev 421275)
+++ apparmor-3.0.1-python_ldflags.patch 2021-08-09 20:47:04 UTC (rev 421276)
@@ -1,12 +0,0 @@
-diff -ruN a/libraries/libapparmor/swig/python/Makefile.am 
b/libraries/libapparmor/swig/python/Makefile.am
 a/libraries/libapparmor/swig/python/Makefile.am2020-12-02 
12:01:37.0 +0100
-+++ b/libraries/libapparmor/swig/python/Makefile.am2020-12-08 
10:11:44.473385992 +0100
-@@ -14,7 +14,7 @@
- 
- all-local: libapparmor_wrap.c setup.py
-   if test ! -f libapparmor_wrap.c; then cp 

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

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 20:43:53
  Author: jelle
Revision: 997286

archrelease: copy trunk to community-any

Added:
  python-trimesh/repos/community-any/PKGBUILD
(from rev 997285, python-trimesh/trunk/PKGBUILD)
Deleted:
  python-trimesh/repos/community-any/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 20:43:43 UTC (rev 997285)
+++ PKGBUILD2021-08-09 20:43:53 UTC (rev 997286)
@@ -1,47 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=python-trimesh
-pkgver=3.9.23
-pkgrel=1
-pkgdesc='Trimesh is a pure Python library for loading and using triangular 
meshes with an emphasis on watertight surfaces'
-arch=('any')
-url="https://github.com/mikedh/trimesh;
-license=('MIT')
-depends=(python python-numpy)
-checkdepends=(python-scipy python-networkx python-rtree python-lxml
-  python-shapely python-pillow python-sympy python-requests
-  python-msgpack python-pyglet python-jsonschema
-  python-svg.path python-collada)
-optdepends=('python-networkx: graph operations'
-'python-pyglet: preview windows'
-'python-rtree: vector path handling'
-'python-scipy: convex hulls'
-'python-shapely: vector path handling'
-'python-pillow: load images'
-'python-jsonschema: validate JSON schemas like GLTF'
-'python-requests: network requests'
-'python-msgpack: serialize into msgpack'
-'python-lxml: handle XML better and faster than built- in XML'
-'python-sympy: do analytical math'
-'python-svg.path: handle SVG format path strings'
-'python-xxhash: hash ndarrays faster than built-in MD5/CRC'
-'python-collada: parse collada/dae/zae files')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
-sha512sums=('e96b8666794e404af5a311fda493f92e1f1085f502dc512ffc37c7a68e19452216d4f057ddba36ace586e9f693cf863397bcd5ad25657dede2ff69c582911d7d')
-
-build() {
-  cd trimesh-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd trimesh-${pkgver}
-  python -m unittest discover tests
-}
-
-package() {
-  cd trimesh-${pkgver}
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1 
--skip-build
-
-  install -D -m644 LICENSE.md "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-trimesh/repos/community-any/PKGBUILD (from rev 997285, 
python-trimesh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 20:43:53 UTC (rev 997286)
@@ -0,0 +1,47 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-trimesh
+pkgver=3.9.26
+pkgrel=1
+pkgdesc='Trimesh is a pure Python library for loading and using triangular 
meshes with an emphasis on watertight surfaces'
+arch=('any')
+url="https://github.com/mikedh/trimesh;
+license=('MIT')
+depends=(python python-numpy)
+checkdepends=(python-scipy python-networkx python-rtree python-lxml
+  python-shapely python-pillow python-sympy python-requests
+  python-msgpack python-pyglet python-jsonschema
+  python-svg.path python-collada)
+optdepends=('python-networkx: graph operations'
+'python-pyglet: preview windows'
+'python-rtree: vector path handling'
+'python-scipy: convex hulls'
+'python-shapely: vector path handling'
+'python-pillow: load images'
+'python-jsonschema: validate JSON schemas like GLTF'
+'python-requests: network requests'
+'python-msgpack: serialize into msgpack'
+'python-lxml: handle XML better and faster than built- in XML'
+'python-sympy: do analytical math'
+'python-svg.path: handle SVG format path strings'
+'python-xxhash: hash ndarrays faster than built-in MD5/CRC'
+'python-collada: parse collada/dae/zae files')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
+sha512sums=('d3e950e6530880fb612eeecb4fb6eeb63442be1bc5203c5bbec4fac169c05a953fba5d510e50032fce75eadd70fb7fe3667eb96b01197ebbf87396995c8c18f2')
+
+build() {
+  cd trimesh-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd trimesh-${pkgver}
+  python -m unittest discover tests
+}
+
+package() {
+  cd trimesh-${pkgver}
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -D -m644 LICENSE.md "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 20:43:43
  Author: jelle
Revision: 997285

upgpkg: python-trimesh 3.9.26-1

Modified:
  python-trimesh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 20:34:37 UTC (rev 997284)
+++ PKGBUILD2021-08-09 20:43:43 UTC (rev 997285)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=python-trimesh
-pkgver=3.9.23
+pkgver=3.9.26
 pkgrel=1
 pkgdesc='Trimesh is a pure Python library for loading and using triangular 
meshes with an emphasis on watertight surfaces'
 arch=('any')
@@ -27,7 +27,7 @@
 'python-xxhash: hash ndarrays faster than built-in MD5/CRC'
 'python-collada: parse collada/dae/zae files')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
-sha512sums=('e96b8666794e404af5a311fda493f92e1f1085f502dc512ffc37c7a68e19452216d4f057ddba36ace586e9f693cf863397bcd5ad25657dede2ff69c582911d7d')
+sha512sums=('d3e950e6530880fb612eeecb4fb6eeb63442be1bc5203c5bbec4fac169c05a953fba5d510e50032fce75eadd70fb7fe3667eb96b01197ebbf87396995c8c18f2')
 
 build() {
   cd trimesh-${pkgver}



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

2021-08-09 Thread Kpcyrd via arch-commits
Date: Monday, August 9, 2021 @ 20:34:37
  Author: kpcyrd
Revision: 997284

archrelease: copy trunk to community-x86_64

Added:
  libredefender/repos/community-x86_64/PKGBUILD
(from rev 997283, libredefender/trunk/PKGBUILD)
Deleted:
  libredefender/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   92 ++---
 1 file changed, 46 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 20:34:22 UTC (rev 997283)
+++ PKGBUILD2021-08-09 20:34:37 UTC (rev 997284)
@@ -1,46 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=libredefender
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='Light-weight antivirus scanner for Linux'
-url='https://github.com/kpcyrd/libredefender'
-arch=('x86_64')
-license=('GPL2')
-depends=('clamav')
-makedepends=('cargo' 'clang')
-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)
-b2sums=('012f9d68731fbd65b42c998f4b00bdd018883f742c17e1ded5843f5e388c93ba108861f77fbef165ad83043a8d97cbf948dc1257bc073147648078c60015e482'
-'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 -t "${pkgdir}/usr/bin" \
-target/release/libredefender
-
-  # install completions
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/libredefender" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/libredefender"
-  "${pkgdir}/usr/bin/libredefender" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_libredefender"
-  "${pkgdir}/usr/bin/libredefender" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/libredefender.fish"
-
-  install -Dm 644 contrib/libredefender.desktop -t 
"${pkgdir}/etc/xdg/autostart"
-  install -Dm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libredefender/repos/community-x86_64/PKGBUILD (from rev 997283, 
libredefender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 20:34:37 UTC (rev 997284)
@@ -0,0 +1,46 @@
+# Maintainer: kpcyrd 
+
+pkgname=libredefender
+pkgver=0.3.1
+pkgrel=1
+pkgdesc='Light-weight antivirus scanner for Linux'
+url='https://github.com/kpcyrd/libredefender'
+arch=('x86_64')
+license=('GPL2')
+depends=('clamav')
+makedepends=('cargo' 'clang')
+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)
+b2sums=('d230acb3b69c3bcea8c4cab993c32007a300749f4e2210d330caee7ff833931e92ac0b74ad859472cb203378d23c26a14462fc4e4bd323e76e07eb4e0fbcc6cc'
+'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 -t "${pkgdir}/usr/bin" \
+target/release/libredefender
+
+  # install completions
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/libredefender" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/libredefender"
+  "${pkgdir}/usr/bin/libredefender" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_libredefender"
+  "${pkgdir}/usr/bin/libredefender" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/libredefender.fish"
+
+  install -Dm 644 contrib/libredefender.desktop -t 
"${pkgdir}/etc/xdg/autostart"
+  install -Dm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Kpcyrd via arch-commits
Date: Monday, August 9, 2021 @ 20:34:22
  Author: kpcyrd
Revision: 997283

upgpkg: libredefender 0.3.1-1

Modified:
  libredefender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 20:13:53 UTC (rev 997282)
+++ PKGBUILD2021-08-09 20:34:22 UTC (rev 997283)
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=libredefender
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc='Light-weight antivirus scanner for Linux'
 url='https://github.com/kpcyrd/libredefender'
@@ -11,7 +11,7 @@
 makedepends=('cargo' 'clang')
 
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)
-b2sums=('012f9d68731fbd65b42c998f4b00bdd018883f742c17e1ded5843f5e388c93ba108861f77fbef165ad83043a8d97cbf948dc1257bc073147648078c60015e482'
+b2sums=('d230acb3b69c3bcea8c4cab993c32007a300749f4e2210d330caee7ff833931e92ac0b74ad859472cb203378d23c26a14462fc4e4bd323e76e07eb4e0fbcc6cc'
 'SKIP')
 
 validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")



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

2021-08-09 Thread Kpcyrd via arch-commits
Date: Monday, August 9, 2021 @ 20:13:53
  Author: kpcyrd
Revision: 997282

archrelease: copy trunk to community-x86_64

Added:
  doctl/repos/community-x86_64/PKGBUILD
(from rev 997281, doctl/trunk/PKGBUILD)
Deleted:
  doctl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 20:13:40 UTC (rev 997281)
+++ PKGBUILD2021-08-09 20:13:53 UTC (rev 997282)
@@ -1,41 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: NOGISAKA Sadata 
-# Contributor: Bennett Piater 
-
-pkgname=doctl
-pkgver=1.62.0
-pkgrel=1
-pkgdesc='The official command line interface for the DigitalOcean API'
-url='https://github.com/digitalocean/doctl'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go')
-source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a298fbc7afee9868ce0c5a417c500059321b80a31255058f3de2c06f3b5859b04d233ce9fd732ba47e7c26f9ef165697a23a45c4033102346f3c5ff56a5e2827')
-b2sums=('1fe9e50c08255f258742e9408bf01a0721385acad7df91bdb74336757d6281ba799c0851de4c4d605d3ab71342732b96075665a774294a85118d11f28b4db4aa')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
-./cmd/...
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
-
-  # setup completions
-  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
-  "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: doctl/repos/community-x86_64/PKGBUILD (from rev 997281, 
doctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 20:13:53 UTC (rev 997282)
@@ -0,0 +1,41 @@
+# Maintainer: kpcyrd 
+# Contributor: NOGISAKA Sadata 
+# Contributor: Bennett Piater 
+
+pkgname=doctl
+pkgver=1.63.1
+pkgrel=1
+pkgdesc='The official command line interface for the DigitalOcean API'
+url='https://github.com/digitalocean/doctl'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go')
+source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('476d0381b3811bb835cd36e9b52941e2b2656c9cdc9536f71fddc1f3d952e43a08aa5b668631b89a687430a78f5bb438842b517385c582b6ea3da6ad053d79d0')
+b2sums=('abf5b8ff449eb2ff761eec21830d601276025948b1122f5588e34aecd5368819c9b8f4c4245dc9ff5071f9f06ae3c80c1ab149bd0752adc7be1a3fa28b7c3a22')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+./cmd/...
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
+
+  # setup completions
+  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
+  "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Kpcyrd via arch-commits
Date: Monday, August 9, 2021 @ 20:13:40
  Author: kpcyrd
Revision: 997281

upgpkg: doctl 1.63.1-1

Modified:
  doctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:55:47 UTC (rev 997280)
+++ PKGBUILD2021-08-09 20:13:40 UTC (rev 997281)
@@ -3,7 +3,7 @@
 # Contributor: Bennett Piater 
 
 pkgname=doctl
-pkgver=1.62.0
+pkgver=1.63.1
 pkgrel=1
 pkgdesc='The official command line interface for the DigitalOcean API'
 url='https://github.com/digitalocean/doctl'
@@ -12,8 +12,8 @@
 depends=('glibc')
 makedepends=('go')
 
source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a298fbc7afee9868ce0c5a417c500059321b80a31255058f3de2c06f3b5859b04d233ce9fd732ba47e7c26f9ef165697a23a45c4033102346f3c5ff56a5e2827')
-b2sums=('1fe9e50c08255f258742e9408bf01a0721385acad7df91bdb74336757d6281ba799c0851de4c4d605d3ab71342732b96075665a774294a85118d11f28b4db4aa')
+sha512sums=('476d0381b3811bb835cd36e9b52941e2b2656c9cdc9536f71fddc1f3d952e43a08aa5b668631b89a687430a78f5bb438842b517385c582b6ea3da6ad053d79d0')
+b2sums=('abf5b8ff449eb2ff761eec21830d601276025948b1122f5588e34aecd5368819c9b8f4c4245dc9ff5071f9f06ae3c80c1ab149bd0752adc7be1a3fa28b7c3a22')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in hledger-ui/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:51:46
  Author: felixonmars
Revision: 997275

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 997274, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 997274, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 19:51:46 UTC (rev 997275)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.22.2
+pkgrel=1
+pkgdesc="Curses-style terminal interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-extra'
+ 'haskell-fsnotify' 'haskell-microlens' 'haskell-microlens-platform' 
'haskell-megaparsec'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper'
+ 'haskell-vector' 'haskell-brick' 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('53ca171ed87eae4a3a244fe1e8858f6c24e41d8740232375022ccb78b9fffe797aff43cd783d7a994d98fd3705c4d84f8f5a32857ff4f0d69aad5a84ee97b357')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-ui.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:51:39
  Author: felixonmars
Revision: 997274

upgpkg: hledger-ui 1.22.2-1: rebuild with hledger 1.22.2, hledger-lib 1.22.2, 
hledger-ui 1.22.2, hledger-web 1.22.2

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:50:32 UTC (rev 997273)
+++ PKGBUILD2021-08-09 19:51:39 UTC (rev 997274)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hledger-ui
-pkgver=1.22.1
-pkgrel=3
+pkgver=1.22.2
+pkgrel=1
 pkgdesc="Curses-style terminal interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")
@@ -15,7 +15,7 @@
  'haskell-vector' 'haskell-brick' 'haskell-vty')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('1c7753e58430c3533b34203b4649dac2d87d85df819c89c8571d6f9e6a44dabcb02e7dcc9ad1221c43cff77679920f17cc8b71a01b802bf07fc51ef8ff787b40')
+sha512sums=('53ca171ed87eae4a3a244fe1e8858f6c24e41d8740232375022ccb78b9fffe797aff43cd783d7a994d98fd3705c4d84f8f5a32857ff4f0d69aad5a84ee97b357')
 
 build() {
 cd $pkgname-$pkgver



[arch-commits] Commit in hledger-web/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:50:32
  Author: felixonmars
Revision: 997273

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 997272, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 997272, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 19:50:32 UTC (rev 997273)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.22.2
+pkgrel=1
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 'haskell-hspec' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-wai' 'haskell-wai-cors' 
'haskell-wai-extra'
+ 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' 
'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static' 'haskell-yesod-test')
+makedepends=('ghc')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('48fed07556b4756c12ff303362e3ad042da00b34b59835d447f8a97dc6d63996a823613ccff0059fea33f58d3fed43546b0e6c13345e5c9936a48305e64369ca')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-web.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:50:25
  Author: felixonmars
Revision: 997272

upgpkg: hledger-web 1.22.2-1: rebuild with hledger 1.22.2, hledger-lib 1.22.2, 
hledger-ui 1.22.2, hledger-web 1.22.2

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:48:57 UTC (rev 997271)
+++ PKGBUILD2021-08-09 19:50:25 UTC (rev 997272)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hledger-web
-pkgver=1.22.1
-pkgrel=3
+pkgver=1.22.2
+pkgrel=1
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")
@@ -20,7 +20,7 @@
 makedepends=('ghc')
 replaces=('hledger-api')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('54f119a591a69a07c5260e3e4d730a554241858236019a9302097f4b96d7a925284b288013872d5c2403f7be0312877621f22b241231180d5ef6dac8f19b0103')
+sha512sums=('48fed07556b4756c12ff303362e3ad042da00b34b59835d447f8a97dc6d63996a823613ccff0059fea33f58d3fed43546b0e6c13345e5c9936a48305e64369ca')
 
 build() {
 cd $pkgname-$pkgver



[arch-commits] Commit in hledger-iadd/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:48:57
  Author: felixonmars
Revision: 997271

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-iadd/repos/community-staging-x86_64/
  hledger-iadd/repos/community-staging-x86_64/PKGBUILD
(from rev 997270, hledger-iadd/trunk/PKGBUILD)

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

Copied: hledger-iadd/repos/community-staging-x86_64/PKGBUILD (from rev 997270, 
hledger-iadd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 19:48:57 UTC (rev 997271)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hledger-iadd
+pkgname=hledger-iadd
+pkgver=1.3.15
+pkgrel=18
+pkgdesc="A terminal UI as drop-in replacement for hledger add"
+url="https://github.com/hpdeifel/hledger-iadd#readme;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-brick' 'haskell-free' 'haskell-hledger-lib' 
'haskell-megaparsec'
+ 'haskell-microlens' 'haskell-microlens-th' 
'haskell-optparse-applicative'
+ 'haskell-text-zipper' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-vty'
+ 'haskell-xdg-basedir')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-hspec-discover')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('c1c6b60b0563664e6c02ac2757442f6486434e2c36651c35a9217930cd8c0ec4eb5ad87fe87734673c60bc3de4a01545512194d6b772ddf5031652788a0dc69e')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  uusi -u megaparsec $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:48:50
  Author: felixonmars
Revision: 997270

upgpkg: hledger-iadd 1.3.15-18: rebuild with hledger 1.22.2, hledger-lib 
1.22.2, hledger-ui 1.22.2, hledger-web 1.22.2

Modified:
  hledger-iadd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:47:30 UTC (rev 997269)
+++ PKGBUILD2021-08-09 19:48:50 UTC (rev 997270)
@@ -3,7 +3,7 @@
 _hkgname=hledger-iadd
 pkgname=hledger-iadd
 pkgver=1.3.15
-pkgrel=17
+pkgrel=18
 pkgdesc="A terminal UI as drop-in replacement for hledger add"
 url="https://github.com/hpdeifel/hledger-iadd#readme;
 license=("BSD")



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:47:30
  Author: felixonmars
Revision: 997269

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger/repos/community-staging-x86_64/
  hledger/repos/community-staging-x86_64/PKGBUILD
(from rev 997268, hledger/trunk/PKGBUILD)

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 997268, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 19:47:30 UTC (rev 997269)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.22.2
+pkgrel=1
+pkgdesc="Command-line interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base-compat-batteries'
+ 'haskell-cmdargs' 'haskell-data-default' 'haskell-decimal' 
'haskell-diff' 'haskell-githash'
+ 'haskell-hashable' 'haskell-hledger-lib' 'haskell-lucid' 
'haskell-math-functions'
+ 'haskell-megaparsec' 'haskell-old-time' 'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-shakespeare' 'haskell-split' 
'haskell-tabular' 'haskell-tasty'
+ 'haskell-temporary' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-utility-ht' 'haskell-wizards')
+makedepends=('ghc' 'haskell-extra' 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('dc60c6f4ac7e9934ccb09293c447cb7af0f91f8ebae32233046d07e2e1358da5b6c7e8281d34e2a093e7ed2ad937d816ae731bfdde0c40b8a23cbdae0a0e9a52')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded --ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger.1 -t "$pkgdir"/usr/share/man/man1/
+install -Dm644 shell-completion/hledger-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/hledger
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:47:23
  Author: felixonmars
Revision: 997268

upgpkg: hledger 1.22.2-1: rebuild with hledger 1.22.2, hledger-lib 1.22.2, 
hledger-ui 1.22.2, hledger-web 1.22.2

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:46:51 UTC (rev 997267)
+++ PKGBUILD2021-08-09 19:47:23 UTC (rev 997268)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hledger
-pkgver=1.22.1
-pkgrel=3
+pkgver=1.22.2
+pkgrel=1
 pkgdesc="Command-line interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")
@@ -17,7 +17,7 @@
  'haskell-utility-ht' 'haskell-wizards')
 makedepends=('ghc' 'haskell-extra' 'haskell-timeit')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('812186460cf8bf6ad6a0eb9f3f84cbc9cd1383ea0f1d1937abde04d959f792485e5c6ff11f8fbeed47c43f622f307c9d6836ec02827942f357548ea88375e928')
+sha512sums=('dc60c6f4ac7e9934ccb09293c447cb7af0f91f8ebae32233046d07e2e1358da5b6c7e8281d34e2a093e7ed2ad937d816ae731bfdde0c40b8a23cbdae0a0e9a52')
 
 build() {
 cd $pkgname-$pkgver



[arch-commits] Commit in python-responses/repos/community-any (4 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:46:51
  Author: felixonmars
Revision: 997267

archrelease: copy trunk to community-any

Added:
  python-responses/repos/community-any/PKGBUILD
(from rev 997266, python-responses/trunk/PKGBUILD)
  python-responses/repos/community-any/pytest5.patch
(from rev 997266, python-responses/trunk/pytest5.patch)
Deleted:
  python-responses/repos/community-any/PKGBUILD
  python-responses/repos/community-any/pytest5.patch

---+
 PKGBUILD  |   63 +++-
 pytest5.patch |   56 -
 2 files changed, 59 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 19:46:40 UTC (rev 997266)
+++ PKGBUILD2021-08-09 19:46:51 UTC (rev 997267)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-responses
-pkgver=0.13.3
-pkgrel=1
-pkgdesc='A utility library for mocking out the `requests` Python library.'
-arch=('any')
-license=('Apache')
-url='https://github.com/getsentry/responses'
-depends=('python-requests' 'python-biscuits' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('mypy' 'python-pytest-runner' 'python-pytest-cov' 'flake8'
-  'python-pytest-localserver')
-source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('533aba5e4ce840d4442d62ce3129444b357eef8e1b988f62f0fbf0ca5780b236ad040262811a13afc1b73f258f0e5638226aa4484869aabe1714959a0fe0195c')
-
-build() {
-  cd responses-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd responses-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd responses-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-responses/repos/community-any/PKGBUILD (from rev 997266, 
python-responses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 19:46:51 UTC (rev 997267)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-responses
+pkgver=0.13.4
+pkgrel=1
+pkgdesc='A utility library for mocking out the `requests` Python library.'
+arch=('any')
+license=('Apache')
+url='https://github.com/getsentry/responses'
+depends=('python-requests' 'python-biscuits' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-localserver')
+source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('420a34da0f126ad38ed060505004a2019f665ea7ca4d5ce47dfee02a959a4e333e6e55dae9bfe4c1720b710adbc988e8988410765dc7a20fa875784b0b81c7cb')
+
+build() {
+  cd responses-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd responses-$pkgver
+  pytest
+}
+
+package() {
+  cd responses-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: pytest5.patch
===
--- pytest5.patch   2021-08-09 19:46:40 UTC (rev 997266)
+++ pytest5.patch   2021-08-09 19:46:51 UTC (rev 997267)
@@ -1,28 +0,0 @@
-From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
-From: Brandon Hong 
-Date: Wed, 9 Oct 2019 15:18:56 +0800
-Subject: [PATCH] Fix testcase test_assert_all_requests_are_fired failure
-
-Pytest 5.0.0 changed ExceptionInfo object's str() to returns the same as 
repr().
-(See, item #5412 of 
https://docs.pytest.org/en/latest/changelog.html#pytest-5-0-0-2019-06-28)
-This patch fixes the test failure by comparing expectation with str() result of
-ExceptionInfo's value member instaed of object itself.
-
-Signed-off-by: Brandon Hong 

- test_responses.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test_responses.py b/test_responses.py
-index 4740dfb..c2a4f01 100644
 a/test_responses.py
-+++ b/test_responses.py
-@@ -701,7 +701,7 @@ def run():
- with responses.RequestsMock(assert_all_requests_are_fired=True) 
as m:
- m.add(responses.GET, "http://example.com;, body=b"test")
- assert "http://example.com; in str(excinfo.value)
--assert responses.GET in str(excinfo)
-+assert responses.GET in str(excinfo.value)
- 
- # check that assert_all_requests_are_fired default to True
- with pytest.raises(AssertionError):

Copied: python-responses/repos/community-any/pytest5.patch (from rev 997266, 
python-responses/trunk/pytest5.patch)
===
--- pytest5.patch   (rev 0)
+++ pytest5.patch   2021-08-09 19:46:51 UTC (rev 997267)
@@ -0,0 +1,28 @@
+From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
+From: Brandon Hong 
+Date: Wed, 9 Oct 2019 15:18:56 +0800
+Subject: [PATCH] Fix testcase test_assert_all_requests_are_fired failure
+
+Pytest 

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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:46:40
  Author: felixonmars
Revision: 997266

upgpkg: python-responses 0.13.4-1

Modified:
  python-responses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:45:50 UTC (rev 997265)
+++ PKGBUILD2021-08-09 19:46:40 UTC (rev 997266)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-responses
-pkgver=0.13.3
+pkgver=0.13.4
 pkgrel=1
 pkgdesc='A utility library for mocking out the `requests` Python library.'
 arch=('any')
@@ -9,10 +9,9 @@
 url='https://github.com/getsentry/responses'
 depends=('python-requests' 'python-biscuits' 'python-six')
 makedepends=('python-setuptools')
-checkdepends=('mypy' 'python-pytest-runner' 'python-pytest-cov' 'flake8'
-  'python-pytest-localserver')
+checkdepends=('python-pytest' 'python-pytest-localserver')
 
source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('533aba5e4ce840d4442d62ce3129444b357eef8e1b988f62f0fbf0ca5780b236ad040262811a13afc1b73f258f0e5638226aa4484869aabe1714959a0fe0195c')
+sha512sums=('420a34da0f126ad38ed060505004a2019f665ea7ca4d5ce47dfee02a959a4e333e6e55dae9bfe4c1720b710adbc988e8988410765dc7a20fa875784b0b81c7cb')
 
 build() {
   cd responses-$pkgver
@@ -21,7 +20,7 @@
 
 check() {
   cd responses-$pkgver
-  python setup.py pytest
+  pytest
 }
 
 package() {



[arch-commits] Commit in haskell-hledger-lib/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:45:50
  Author: felixonmars
Revision: 997265

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hledger-lib/repos/community-staging-x86_64/
  haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 997264, haskell-hledger-lib/trunk/PKGBUILD)

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

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
997264, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 19:45:50 UTC (rev 997265)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.22.2
+pkgrel=1
+pkgdesc="A reusable library providing the core functionality of hledger"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-ansi-terminal'
+ 'haskell-base-compat-batteries' 'haskell-blaze-markup' 
'haskell-call-stack'
+ 'haskell-cassava' 'haskell-cassava-megaparsec' 'haskell-cmdargs' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-file-embed' 'haskell-glob'
+ 'haskell-hashtables' 'haskell-megaparsec' 'haskell-old-time' 
'haskell-parser-combinators'
+ 'haskell-pretty-simple' 'haskell-regex-tdfa' 'haskell-safe' 
'haskell-tabular'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-timeit' 
'haskell-uglymemo'
+ 'haskell-unordered-containers' 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5536f118c5dfbcae1e5da2ae8f9bc80f7425b4f8ad4ebfd70d1b52a9fd5486e810f5bfd8b89fe741b5fddc79216dcf9cb4923cbd1db0d986490bea0cc662dc67')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hledger-lib/trunk (PKGBUILD)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:45:42
  Author: felixonmars
Revision: 997264

upgpkg: haskell-hledger-lib 1.22.2-1: rebuild with hledger 1.22.2, hledger-lib 
1.22.2, hledger-ui 1.22.2, hledger-web 1.22.2

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 19:18:40 UTC (rev 997263)
+++ PKGBUILD2021-08-09 19:45:42 UTC (rev 997264)
@@ -3,8 +3,8 @@
 
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
-pkgver=1.22.1
-pkgrel=2
+pkgver=1.22.2
+pkgrel=1
 pkgdesc="A reusable library providing the core functionality of hledger"
 url="http://hledger.org;
 license=("GPL")
@@ -19,7 +19,7 @@
  'haskell-unordered-containers' 'haskell-utf8-string')
 makedepends=('ghc' 'haskell-doctest')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('fd7765276c1ae758ec78fd5af4494fdfd6bbf1ddfa11dfcf0a6b7803eaaf62780fb1df56d57d6f572b8eb50f9bfaebe890858e1024e4aaedf871dbcd507dffb0')
+sha512sums=('5536f118c5dfbcae1e5da2ae8f9bc80f7425b4f8ad4ebfd70d1b52a9fd5486e810f5bfd8b89fe741b5fddc79216dcf9cb4923cbd1db0d986490bea0cc662dc67')
 
 build() {
 cd $_hkgname-$pkgver



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:18:40
  Author: felixonmars
Revision: 997263

archrelease: copy trunk to community-x86_64

Added:
  brook/repos/community-x86_64/PKGBUILD
(from rev 997262, brook/trunk/PKGBUILD)
Deleted:
  brook/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 19:18:31 UTC (rev 997262)
+++ PKGBUILD2021-08-09 19:18:40 UTC (rev 997263)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Kasei Wang 
-
-pkgname=brook
-pkgver=20210401
-pkgrel=1
-pkgdesc="A cross-platform proxy/vpn software"
-arch=('x86_64')
-url="https://github.com/txthinking/brook;
-license=('GPL')
-depends=('glibc')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
-sha512sums=('25e63ddbcb47b419838d51dcc117a91a56cb2a6f5cff112e295851e3779fa599502c2d35b71e2446e87d56a10cf88b0206b8c3b52967908428761cb39eb3a754')
-
-build() {
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  cd brook-$pkgver/cli/brook
-  go build -o brook
-}
-
-package() {
-  cd brook-$pkgver/cli/brook
-  install -Dm755 brook -t "$pkgdir"/usr/bin/
-}

Copied: brook/repos/community-x86_64/PKGBUILD (from rev 997262, 
brook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 19:18:40 UTC (rev 997263)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Kasei Wang 
+
+pkgname=brook
+pkgver=20210601
+pkgrel=1
+pkgdesc="A cross-platform proxy/vpn software"
+arch=('x86_64')
+url="https://github.com/txthinking/brook;
+license=('GPL')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
+sha512sums=('7990735f08d917bc18c13eb918205ea4643e4d8c563aeed4547cf7df7cb51e09085717c5b26b1e254133bda4db35d7bd7fbf75bcf75b3b6ef4cbb62e86d4a473')
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  cd brook-$pkgver/cli/brook
+  go build -o brook
+}
+
+package() {
+  cd brook-$pkgver/cli/brook
+  install -Dm755 brook -t "$pkgdir"/usr/bin/
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 19:18:31
  Author: felixonmars
Revision: 997262

upgpkg: brook 20210601-1

Modified:
  brook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 16:19:43 UTC (rev 997261)
+++ PKGBUILD2021-08-09 19:18:31 UTC (rev 997262)
@@ -2,7 +2,7 @@
 # Contributor: Kasei Wang 
 
 pkgname=brook
-pkgver=20210401
+pkgver=20210601
 pkgrel=1
 pkgdesc="A cross-platform proxy/vpn software"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/txthinking/brook/archive/v$pkgver.tar.gz;)
-sha512sums=('25e63ddbcb47b419838d51dcc117a91a56cb2a6f5cff112e295851e3779fa599502c2d35b71e2446e87d56a10cf88b0206b8c3b52967908428761cb39eb3a754')
+sha512sums=('7990735f08d917bc18c13eb918205ea4643e4d8c563aeed4547cf7df7cb51e09085717c5b26b1e254133bda4db35d7bd7fbf75bcf75b3b6ef4cbb62e86d4a473')
 
 build() {
   export CGO_CPPFLAGS="${CPPFLAGS}"



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

2021-08-09 Thread Jonas Witschel via arch-commits
Date: Monday, August 9, 2021 @ 16:19:43
  Author: diabonas
Revision: 997261

archrelease: copy trunk to community-testing-any

Added:
  fail2ban/repos/community-testing-any/
  fail2ban/repos/community-testing-any/PKGBUILD
(from rev 997260, fail2ban/trunk/PKGBUILD)

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

Copied: fail2ban/repos/community-testing-any/PKGBUILD (from rev 997260, 
fail2ban/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-08-09 16:19:43 UTC (rev 997261)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Geoffroy Carrier 
+# Contributor: michalzxc
+# Contributor: nbags 
+
+pkgname=fail2ban
+pkgver=0.11.2
+pkgrel=2
+pkgdesc='Bans IPs after too many failed authentication attempts'
+url='https://www.fail2ban.org/'
+license=('GPL')
+arch=('any')
+depends=('iptables' 'python-pyinotify' 'whois' 'sqlite' 'python-systemd')
+makedepends=('python-setuptools')
+checkdepends=('python-coverage')
+backup=(etc/fail2ban/fail2ban.conf
+etc/fail2ban/jail.conf
+etc/logrotate.d/fail2ban)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/fail2ban/$pkgname/archive/$pkgver.tar.gz;
+
"$pkgname-$pkgver_fix-test-suite.patch::https://github.com/fail2ban/fail2ban/commit/747d4683221b5584f9663695fb48145689b42ceb.patch;
+
"$pkgname-$pkgver_CVE-2021-32749.patch::https://github.com/fail2ban/fail2ban/commit/410a6ce5c80dd981c22752da034f2529b5eee844.patch;)
+sha512sums=('46b27abd947b00ea64106dbac563ef8afef38eec86684024d47d9a0e8c1969ff864ad6df7f4f8de2aa3eb1af6d769fb6796592d9f0e35521d5f95f17b8cade97'
+
'5c0748c048031d88bc8fd2519bf99a35437b78a08fa942dbccdd2c0e4e9125560a847a8f1dc4414691c922dff558acff988492250be6a1f443a139b0e3762898'
+
'994de8a4fdd4535607cd1b21553266de015b57bdb7f84f931973cb4b3cadd93fb2fda2d402a4ecccf505dffabf146cd9eae2cd0b635c3cb3dfa2d312539d41be')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|self.install_dir|"/usr/bin"|' setup.py
+  sed -i 's/^before = paths-debian.conf/before = paths-arch.conf/' 
config/jail.conf
+
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver_fix-test-suite.patch"
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver_CVE-2021-32749.patch"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./fail2ban-2to3
+  python setup.py build
+}
+
+check() {
+  # make temp copy to run coverage since it messes with file permissions
+  cp -r $pkgname-$pkgver{,-coverage}
+  cd $pkgname-$pkgver-coverage
+  coverage run bin/fail2ban-testcases
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root "$pkgdir" --optimize=1
+
+  install -Dm644 build/fail2ban.service \
+"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+  install -Dm644 files/fail2ban-tmpfiles.conf \
+"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+  install -Dm644 files/fail2ban-logrotate \
+"$pkgdir"/etc/logrotate.d/fail2ban
+  install -Dm644 files/bash-completion \
+"$pkgdir"/usr/share/bash-completion/completions/fail2ban
+
+  # fix sendmail location
+  sed -i 's/sbin/bin/g' "$pkgdir"/etc/fail2ban/action.d/sendmail*.conf
+
+  install -Dm644 man/fail2ban.1 "$pkgdir"/usr/share/man/man1/fail2ban.1
+  install -Dm644 man/fail2ban-client.1 \
+"$pkgdir"/usr/share/man/man1/fail2ban-client.1
+  install -Dm644 man/fail2ban-regex.1 \
+"$pkgdir"/usr/share/man/man1/fail2ban-regex.1
+  install -Dm644 man/fail2ban-server.1 \
+"$pkgdir"/usr/share/man/man1/fail2ban-server.1
+  install -Dm644 man/jail.conf.5 "$pkgdir"/usr/share/man/man5/jail.conf.5
+
+  rm -r "$pkgdir/run"
+}



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

2021-08-09 Thread Jonas Witschel via arch-commits
Date: Monday, August 9, 2021 @ 16:19:38
  Author: diabonas
Revision: 997260

upgpkg: fail2ban 0.11.2-2: fix CVE-2021-32749 (FS#71524)

Apart from the actual fix (upstream commit
410a6ce5c80dd981c22752da034f2529b5eee844), another patch (upstream commit
747d4683221b5584f9663695fb48145689b42ceb) needs to be backported as well to
make the test suite pass.

Modified:
  fail2ban/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 12:15:17 UTC (rev 997259)
+++ PKGBUILD2021-08-09 16:19:38 UTC (rev 997260)
@@ -6,7 +6,7 @@
 
 pkgname=fail2ban
 pkgver=0.11.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Bans IPs after too many failed authentication attempts'
 url='https://www.fail2ban.org/'
 license=('GPL')
@@ -17,13 +17,20 @@
 backup=(etc/fail2ban/fail2ban.conf
 etc/fail2ban/jail.conf
 etc/logrotate.d/fail2ban)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/fail2ban/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('46b27abd947b00ea64106dbac563ef8afef38eec86684024d47d9a0e8c1969ff864ad6df7f4f8de2aa3eb1af6d769fb6796592d9f0e35521d5f95f17b8cade97')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/fail2ban/$pkgname/archive/$pkgver.tar.gz;
+
"$pkgname-$pkgver_fix-test-suite.patch::https://github.com/fail2ban/fail2ban/commit/747d4683221b5584f9663695fb48145689b42ceb.patch;
+
"$pkgname-$pkgver_CVE-2021-32749.patch::https://github.com/fail2ban/fail2ban/commit/410a6ce5c80dd981c22752da034f2529b5eee844.patch;)
+sha512sums=('46b27abd947b00ea64106dbac563ef8afef38eec86684024d47d9a0e8c1969ff864ad6df7f4f8de2aa3eb1af6d769fb6796592d9f0e35521d5f95f17b8cade97'
+
'5c0748c048031d88bc8fd2519bf99a35437b78a08fa942dbccdd2c0e4e9125560a847a8f1dc4414691c922dff558acff988492250be6a1f443a139b0e3762898'
+
'994de8a4fdd4535607cd1b21553266de015b57bdb7f84f931973cb4b3cadd93fb2fda2d402a4ecccf505dffabf146cd9eae2cd0b635c3cb3dfa2d312539d41be')
 
 prepare() {
   cd $pkgname-$pkgver
   sed -i 's|self.install_dir|"/usr/bin"|' setup.py
   sed -i 's/^before = paths-debian.conf/before = paths-arch.conf/' 
config/jail.conf
+
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver_fix-test-suite.patch"
+  patch -Np1 -i "$srcdir/$pkgname-$pkgver_CVE-2021-32749.patch"
 }
 
 build() {



[arch-commits] Commit in lynx/repos/extra-x86_64 (3 files)

2021-08-09 Thread Jonas Witschel via arch-commits
Date: Monday, August 9, 2021 @ 15:57:49
  Author: diabonas
Revision: 421275

archrelease: copy trunk to extra-x86_64

Added:
  lynx/repos/extra-x86_64/CVE-2021-38165.diff
(from rev 421274, lynx/trunk/CVE-2021-38165.diff)
  lynx/repos/extra-x86_64/PKGBUILD
(from rev 421274, lynx/trunk/PKGBUILD)
Deleted:
  lynx/repos/extra-x86_64/PKGBUILD

-+
 CVE-2021-38165.diff |   34 +++
 PKGBUILD|   87 +++---
 2 files changed, 81 insertions(+), 40 deletions(-)

Copied: lynx/repos/extra-x86_64/CVE-2021-38165.diff (from rev 421274, 
lynx/trunk/CVE-2021-38165.diff)
===
--- CVE-2021-38165.diff (rev 0)
+++ CVE-2021-38165.diff 2021-08-09 15:57:49 UTC (rev 421275)
@@ -0,0 +1,34 @@
+--- a/WWW/Library/Implementation/HTTP.c
 b/WWW/Library/Implementation/HTTP.c
+@@ -764,6 +764,23 @@ static char *StripIpv6Brackets(char *host)
+ }
+ #endif
+ 
++/*
++ * Remove user/password, if any, from the given host-string.
++ */
++#ifdef USE_SSL
++static char *StripUserAuthents(char *host)
++{
++char *p = strchr(host, '@');
++
++if (p != NULL) {
++  char *q = host;
++
++  while ((*q++ = *++p) != '\0') ;
++}
++return host;
++}
++#endif
++
+ /*Load Document from HTTP Server  HTLoadHTTP()
+  *==
+  *
+@@ -959,6 +976,7 @@ static int HTLoadHTTP(const char *arg,
+   /* get host we're connecting to */
+   ssl_host = HTParse(url, "", PARSE_HOST);
+   ssl_host = StripIpv6Brackets(ssl_host);
++  ssl_host = StripUserAuthents(ssl_host);
+ #if defined(USE_GNUTLS_FUNCS)
+   ret = gnutls_server_name_set(handle->gnutls_state,
+GNUTLS_NAME_DNS,

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 15:57:42 UTC (rev 421274)
+++ PKGBUILD2021-08-09 15:57:49 UTC (rev 421275)
@@ -1,40 +0,0 @@
-# Maintainer: Pierre Schmitz 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Tom Newsom 
-
-pkgname=lynx
-pkgver=2.8.9
-_relver=${pkgver}rel.1
-pkgrel=3
-pkgdesc="A text browser for the World Wide Web"
-url="https://lynx.browser.org/;
-arch=('x86_64')
-license=('GPL')
-depends=('openssl' 'libidn')
-backup=('etc/lynx.cfg')
-source=(https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2{,.asc})
-sha256sums=('387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595'
-'SKIP')
-validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')
-  
-build() {
-  cd ${srcdir}/${pkgname}${_relver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-ssl=/usr \
---enable-nls \
---enable-ipv6 \
---mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}${_relver}
-  make DESTDIR=${pkgdir} install
-
-  # FS#20404 - points to local help
-  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 ${pkgdir}/etc/lynx.cfg
-
-  install -d ${pkgdir}/usr/share/doc/lynx
-  cp -rf lynx_help ${pkgdir}/usr/share/doc/lynx
-}

Copied: lynx/repos/extra-x86_64/PKGBUILD (from rev 421274, lynx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 15:57:49 UTC (rev 421275)
@@ -0,0 +1,47 @@
+# Maintainer: Pierre Schmitz 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Tom Newsom 
+
+pkgname=lynx
+pkgver=2.8.9
+_relver=${pkgver}rel.1
+pkgrel=4
+pkgdesc="A text browser for the World Wide Web"
+url="https://lynx.browser.org/;
+arch=('x86_64')
+license=('GPL')
+depends=('openssl' 'libidn')
+backup=('etc/lynx.cfg')
+source=("https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2"{,.asc}
+'CVE-2021-38165.diff')
+sha256sums=('387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595'
+'SKIP'
+'693f025a6886b555cc8d7b655de8e62bd8af870a74909e6a4b6cec6e3736dd0d')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')
+
+prepare() {
+  cd "${srcdir}/${pkgname}${_relver}"
+  patch --forward --strip=1 --input="${srcdir}/CVE-2021-38165.diff"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}${_relver}"
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-ssl=/usr \
+--enable-nls \
+--enable-ipv6 \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}${_relver}"
+  make DESTDIR="${pkgdir}" install
+
+  # FS#20404 - points to local help
+  sed -i -e 
"s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|"
 "${pkgdir}/etc/lynx.cfg"
+
+  install -d "${pkgdir}/usr/share/doc/lynx"
+  cp -rf lynx_help "${pkgdir}/usr/share/doc/lynx"
+}



[arch-commits] Commit in lynx/trunk (CVE-2021-38165.diff PKGBUILD)

2021-08-09 Thread Jonas Witschel via arch-commits
Date: Monday, August 9, 2021 @ 15:57:42
  Author: diabonas
Revision: 421274

upgpkg: lynx 2.8.9-4: add fix for CVE-2021-38165 (FS#71764)

There is no new stable upstream release yet, so the patch is extracted from the
diff between the development versions 2.9.0dev.8 and 2.9.0dev.9.

Added:
  lynx/trunk/CVE-2021-38165.diff
Modified:
  lynx/trunk/PKGBUILD

-+
 CVE-2021-38165.diff |   34 ++
 PKGBUILD|   15 +++
 2 files changed, 45 insertions(+), 4 deletions(-)

Added: CVE-2021-38165.diff
===
--- CVE-2021-38165.diff (rev 0)
+++ CVE-2021-38165.diff 2021-08-09 15:57:42 UTC (rev 421274)
@@ -0,0 +1,34 @@
+--- a/WWW/Library/Implementation/HTTP.c
 b/WWW/Library/Implementation/HTTP.c
+@@ -764,6 +764,23 @@ static char *StripIpv6Brackets(char *host)
+ }
+ #endif
+ 
++/*
++ * Remove user/password, if any, from the given host-string.
++ */
++#ifdef USE_SSL
++static char *StripUserAuthents(char *host)
++{
++char *p = strchr(host, '@');
++
++if (p != NULL) {
++  char *q = host;
++
++  while ((*q++ = *++p) != '\0') ;
++}
++return host;
++}
++#endif
++
+ /*Load Document from HTTP Server  HTLoadHTTP()
+  *==
+  *
+@@ -959,6 +976,7 @@ static int HTLoadHTTP(const char *arg,
+   /* get host we're connecting to */
+   ssl_host = HTParse(url, "", PARSE_HOST);
+   ssl_host = StripIpv6Brackets(ssl_host);
++  ssl_host = StripUserAuthents(ssl_host);
+ #if defined(USE_GNUTLS_FUNCS)
+   ret = gnutls_server_name_set(handle->gnutls_state,
+GNUTLS_NAME_DNS,

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 12:23:56 UTC (rev 421273)
+++ PKGBUILD2021-08-09 15:57:42 UTC (rev 421274)
@@ -5,7 +5,7 @@
 pkgname=lynx
 pkgver=2.8.9
 _relver=${pkgver}rel.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A text browser for the World Wide Web"
 url="https://lynx.browser.org/;
 arch=('x86_64')
@@ -12,11 +12,18 @@
 license=('GPL')
 depends=('openssl' 'libidn')
 backup=('etc/lynx.cfg')
-source=("https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2"{,.asc})
+source=("https://invisible-mirror.net/archives/lynx/tarballs/${pkgname}${_relver}.tar.bz2"{,.asc}
+'CVE-2021-38165.diff')
 sha256sums=('387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595'
-'SKIP')
+'SKIP'
+'693f025a6886b555cc8d7b655de8e62bd8af870a74909e6a4b6cec6e3736dd0d')
 validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')
-  
+
+prepare() {
+  cd "${srcdir}/${pkgname}${_relver}"
+  patch --forward --strip=1 --input="${srcdir}/CVE-2021-38165.diff"
+}
+
 build() {
   cd "${srcdir}/${pkgname}${_relver}"
   ./configure --prefix=/usr \



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

2021-08-09 Thread Antonio Rojas via arch-commits
Date: Monday, August 9, 2021 @ 12:15:17
  Author: arojas
Revision: 997259

archrelease: copy trunk to community-x86_64

Added:
  blueman/repos/community-x86_64/PKGBUILD
(from rev 997258, blueman/trunk/PKGBUILD)
Deleted:
  blueman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 12:15:08 UTC (rev 997258)
+++ PKGBUILD2021-08-09 12:15:17 UTC (rev 997259)
@@ -1,43 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Arthur Zamarin 
-# Contributor: Martin Wimpress 
-
-pkgname=blueman
-pkgver=2.2.1
-pkgrel=1
-pkgdesc="GTK+ Bluetooth Manager"
-arch=('x86_64')
-url="https://github.com/blueman-project/blueman;
-license=('GPL')
-depends=('bluez' 'bluez-libs' 'gtk3' 'libnm' 'python-cairo' 'python-gobject')
-makedepends=('cython' 'intltool' 'iproute2')
-optdepends=('dnsmasq: Network Access Point (NAP) support'
-'iproute2: Network Access Point (NAP) support'
-'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
-'pulseaudio-bluetooth: audio devices support')
-source=(https://github.com/blueman-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('fcc10a2259bef2c5ac63f577010d76caed460d68810b7f70fecf056bf10a1a72')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Use correct D-Bus config location
-  sed -i '/^dbusdir =/ s/sysconfdir/datadir/' data/configs/Makefile.{am,in}
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
---disable-schemas-compile \
---with-dhcp-config='/etc/dhcpd.conf'
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: blueman/repos/community-x86_64/PKGBUILD (from rev 997258, 
blueman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 12:15:17 UTC (rev 997259)
@@ -0,0 +1,43 @@
+# Maintainer: Balló György 
+# Contributor: Arthur Zamarin 
+# Contributor: Martin Wimpress 
+
+pkgname=blueman
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="GTK+ Bluetooth Manager"
+arch=('x86_64')
+url="https://github.com/blueman-project/blueman;
+license=('GPL')
+depends=('bluez' 'bluez-libs' 'gtk3' 'libnm' 'python-cairo' 'python-gobject')
+makedepends=('cython' 'intltool' 'iproute2')
+optdepends=('dnsmasq: Network Access Point (NAP) support'
+'iproute2: Network Access Point (NAP) support'
+'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
+'pulseaudio-bluetooth: audio devices support')
+source=(https://github.com/blueman-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('19ed59b1a134f584fc005f47295fef640a9709fd9b9b2307388e112a32ecd0f6')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Use correct D-Bus config location
+  sed -i '/^dbusdir =/ s/sysconfdir/datadir/' data/configs/Makefile.{am,in}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-schemas-compile \
+--with-dhcp-config='/etc/dhcpd.conf'
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}



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

2021-08-09 Thread Antonio Rojas via arch-commits
Date: Monday, August 9, 2021 @ 12:15:08
  Author: arojas
Revision: 997258

Update to 2.2.2

Modified:
  blueman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 11:16:39 UTC (rev 997257)
+++ PKGBUILD2021-08-09 12:15:08 UTC (rev 997258)
@@ -3,7 +3,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=blueman
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc="GTK+ Bluetooth Manager"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 'networkmanager: Dial Up Networking (DUN) and Personal Area 
Networking (PAN) support'
 'pulseaudio-bluetooth: audio devices support')
 
source=(https://github.com/blueman-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('fcc10a2259bef2c5ac63f577010d76caed460d68810b7f70fecf056bf10a1a72')
+sha256sums=('19ed59b1a134f584fc005f47295fef640a9709fd9b9b2307388e112a32ecd0f6')
 
 prepare() {
   cd $pkgname-$pkgver



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

2021-08-09 Thread Antonio Rojas via arch-commits
Date: Monday, August 9, 2021 @ 11:16:39
  Author: arojas
Revision: 997257

archrelease: copy trunk to community-x86_64

Added:
  xsettingsd/repos/community-x86_64/PKGBUILD
(from rev 997256, xsettingsd/trunk/PKGBUILD)
Deleted:
  xsettingsd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 11:16:31 UTC (rev 997256)
+++ PKGBUILD2021-08-09 11:16:39 UTC (rev 997257)
@@ -1,25 +0,0 @@
-# Maintainer: Alad Wenter 
-pkgname=xsettingsd
-pkgver=1.0.0
-pkgrel=3
-pkgdesc="Provides settings to X11 applications via the XSETTINGS specification"
-arch=('x86_64')
-url="https://github.com/derat/xsettingsd;
-license=('custom:BSD')
-depends=('libx11' 'gcc-libs')
-makedepends=('git' 'scons')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-md5sums=('7a1747dd1716cfa697f515e36308e8d4')
-
-build() {
-cd "$pkgname-$pkgver"
-env CPPFLAGS="$CXXFLAGS" scons xsettingsd dump_xsettings
-}
-
-package() {
-cd "$pkgname-$pkgver"
-
-install -Dm755 xsettingsd dump_xsettings -t "$pkgdir/usr/bin/"
-install -Dm644 xsettingsd.1 dump_xsettings.1 -t 
"$pkgdir/usr/share/man/man1/"
-install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: xsettingsd/repos/community-x86_64/PKGBUILD (from rev 997256, 
xsettingsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 11:16:39 UTC (rev 997257)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter 
+
+pkgname=xsettingsd
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="Provides settings to X11 applications via the XSETTINGS specification"
+arch=('x86_64')
+url="https://github.com/derat/xsettingsd;
+license=('custom:BSD')
+depends=('libx11' 'gcc-libs')
+makedepends=('cmake')
+source=(https://github.com/derat/xsettingsd/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('69b5d1987608d1b5f2a0085f2f88cc55936a99b92279118e655d665ebb5e50d3')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/COPYING -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}



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

2021-08-09 Thread Antonio Rojas via arch-commits
Date: Monday, August 9, 2021 @ 11:16:31
  Author: arojas
Revision: 997256

Update to 1.0.2

Modified:
  xsettingsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 10:49:02 UTC (rev 997255)
+++ PKGBUILD2021-08-09 11:16:31 UTC (rev 997256)
@@ -1,25 +1,24 @@
 # Maintainer: Alad Wenter 
+
 pkgname=xsettingsd
-pkgver=1.0.0
-pkgrel=3
+pkgver=1.0.2
+pkgrel=1
 pkgdesc="Provides settings to X11 applications via the XSETTINGS specification"
 arch=('x86_64')
 url="https://github.com/derat/xsettingsd;
 license=('custom:BSD')
 depends=('libx11' 'gcc-libs')
-makedepends=('git' 'scons')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-md5sums=('7a1747dd1716cfa697f515e36308e8d4')
+makedepends=('cmake')
+source=(https://github.com/derat/xsettingsd/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('69b5d1987608d1b5f2a0085f2f88cc55936a99b92279118e655d665ebb5e50d3')
 
 build() {
-cd "$pkgname-$pkgver"
-env CPPFLAGS="$CXXFLAGS" scons xsettingsd dump_xsettings
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
 }
 
 package() {
-cd "$pkgname-$pkgver"
-
-install -Dm755 xsettingsd dump_xsettings -t "$pkgdir/usr/bin/"
-install -Dm644 xsettingsd.1 dump_xsettings.1 -t 
"$pkgdir/usr/share/man/man1/"
-install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/COPYING -t 
"$pkgdir"/usr/share/licenses/$pkgname
 }



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

2021-08-09 Thread Maxim Baz via arch-commits
Date: Monday, August 9, 2021 @ 10:49:02
  Author: maximbaz
Revision: 997255

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 997254, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 10:48:59 UTC (rev 997254)
+++ PKGBUILD2021-08-09 10:49:02 UTC (rev 997255)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=9.2.0
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('d3439cd17e1e0eaceef2598e85a7f48d47ae2c428a31b5cd13bd15faf4c43634')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 997254, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 10:49:02 UTC (rev 997255)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.2.1
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('606f67db1b5f085e77bb36e4b4037f93c23d30f88d823867000c526e7e01885d')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}



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

2021-08-09 Thread Maxim Baz via arch-commits
Date: Monday, August 9, 2021 @ 10:48:59
  Author: maximbaz
Revision: 997254

upgpkg: croc 9.2.1-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 10:00:08 UTC (rev 997253)
+++ PKGBUILD2021-08-09 10:48:59 UTC (rev 997254)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=9.2.0
+pkgver=9.2.1
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('d3439cd17e1e0eaceef2598e85a7f48d47ae2c428a31b5cd13bd15faf4c43634')
+sha256sums=('606f67db1b5f085e77bb36e4b4037f93c23d30f88d823867000c526e7e01885d')
 
 build() {
 cd "${pkgname}-${pkgver}"



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

2021-08-09 Thread Kyle Keen via arch-commits
Date: Monday, August 9, 2021 @ 10:00:08
  Author: kkeen
Revision: 997253

archrelease: copy trunk to community-any

Added:
  python-ipykernel/repos/community-any/PKGBUILD
(from rev 997252, python-ipykernel/trunk/PKGBUILD)
Deleted:
  python-ipykernel/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 09:59:55 UTC (rev 997252)
+++ PKGBUILD2021-08-09 10:00:08 UTC (rev 997253)
@@ -1,33 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-ipykernel
-pkgver=5.5.3
-pkgrel=1
-pkgdesc="The ipython kernel for Jupyter"
-arch=('any')
-url="https://pypi.org/project/ipykernel/;
-license=('BSD')
-  depends=('python-traitlets' 'python-tornado' 'ipython' 
'python-jupyter_client')
-makedepends=('python-setuptools' 'ipython' 'python-jupyter_client')
-checkdepends=('python-pytest' 'python-mock' 'python-nose')
-source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz;)
-md5sums=('3982088cba1169b604170b6164a2dabb')
-
-# dep cycle with python-jupyter_client
-
-build() {
-  cd "$srcdir/ipykernel-$pkgver"
-  python3 setup.py build
-}
-
-check() {
-  cd "$srcdir/ipykernel-$pkgver"
-  #python3 -m pytest
-  # tests fail both locally and in a chroot, for different reasons
-}
-
-package() {
-  cd "$srcdir/ipykernel-$pkgver"
-  python3 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-ipykernel/repos/community-any/PKGBUILD (from rev 997252, 
python-ipykernel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 10:00:08 UTC (rev 997253)
@@ -0,0 +1,33 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-ipykernel
+pkgver=6.0.3
+pkgrel=1
+pkgdesc="The ipython kernel for Jupyter"
+arch=('any')
+url="https://pypi.org/project/ipykernel/;
+license=('BSD')
+depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client')
+makedepends=('python-setuptools' 'ipython' 'python-jupyter_client')
+checkdepends=('python-pytest' 'python-mock' 'python-nose')
+source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz;)
+md5sums=('8d5ab492112fdb82e798af06cb9932f3')
+
+# dep cycle with python-jupyter_client
+
+build() {
+  cd "$srcdir/ipykernel-$pkgver"
+  python3 setup.py build
+}
+
+check() {
+  cd "$srcdir/ipykernel-$pkgver"
+  #python3 -m pytest
+  # tests fail both locally and in a chroot, for different reasons
+}
+
+package() {
+  cd "$srcdir/ipykernel-$pkgver"
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-08-09 Thread Kyle Keen via arch-commits
Date: Monday, August 9, 2021 @ 09:59:55
  Author: kkeen
Revision: 997252

upgpkg: python-ipykernel 6.0.3-1

Modified:
  python-ipykernel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 09:53:01 UTC (rev 997251)
+++ PKGBUILD2021-08-09 09:59:55 UTC (rev 997252)
@@ -1,17 +1,17 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-ipykernel
-pkgver=5.5.3
+pkgver=6.0.3
 pkgrel=1
 pkgdesc="The ipython kernel for Jupyter"
 arch=('any')
 url="https://pypi.org/project/ipykernel/;
 license=('BSD')
-  depends=('python-traitlets' 'python-tornado' 'ipython' 
'python-jupyter_client')
+depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client')
 makedepends=('python-setuptools' 'ipython' 'python-jupyter_client')
 checkdepends=('python-pytest' 'python-mock' 'python-nose')
 
source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz;)
-md5sums=('3982088cba1169b604170b6164a2dabb')
+md5sums=('8d5ab492112fdb82e798af06cb9932f3')
 
 # dep cycle with python-jupyter_client
 



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

2021-08-09 Thread Kyle Keen via arch-commits
Date: Monday, August 9, 2021 @ 09:53:01
  Author: kkeen
Revision: 997251

archrelease: copy trunk to community-x86_64

Added:
  python-pyzmq/repos/community-x86_64/PKGBUILD
(from rev 997250, python-pyzmq/trunk/PKGBUILD)
Deleted:
  python-pyzmq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 09:52:50 UTC (rev 997250)
+++ PKGBUILD2021-08-09 09:53:01 UTC (rev 997251)
@@ -1,27 +0,0 @@
-# Maintainer: Kyle Keen 
-pkgname=python-pyzmq
-pkgver=22.1.0
-pkgrel=1
-pkgdesc="Python3 bindings for zeromq, written in Cython"
-arch=('x86_64')
-url="http://www.zeromq.org/bindings:python;
-license=('LGPL')
-depends=('zeromq' 'python')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'python-tornado' 'python-pytest' 'cython')
-#source=("https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz;)
-#source=("https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
-source=("https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
-md5sums=('5111fe3c089ba64ba8798922bab28280')
-
-check() {
-  cd "$srcdir/pyzmq-$pkgver"
-  python3 setup.py build_ext --inplace
-  python3 setup.py test
-}
-
-package() {
-  cd "$srcdir/pyzmq-$pkgver"
-  python3 setup.py install --root="$pkgdir" --optimize=0
-}
-

Copied: python-pyzmq/repos/community-x86_64/PKGBUILD (from rev 997250, 
python-pyzmq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 09:53:01 UTC (rev 997251)
@@ -0,0 +1,27 @@
+# Maintainer: Kyle Keen 
+pkgname=python-pyzmq
+pkgver=22.2.1
+pkgrel=1
+pkgdesc="Python3 bindings for zeromq, written in Cython"
+arch=('x86_64')
+url="http://www.zeromq.org/bindings:python;
+license=('LGPL')
+depends=('zeromq' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-tornado' 'python-pytest' 'cython')
+#source=("https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz;)
+#source=("https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
+source=("https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
+md5sums=('f261acf884460e93d30f7113c8e9242e')
+
+check() {
+  cd "$srcdir/pyzmq-$pkgver"
+  python3 setup.py build_ext --inplace
+  python3 setup.py test
+}
+
+package() {
+  cd "$srcdir/pyzmq-$pkgver"
+  python3 setup.py install --root="$pkgdir" --optimize=0
+}
+



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

2021-08-09 Thread Kyle Keen via arch-commits
Date: Monday, August 9, 2021 @ 09:52:50
  Author: kkeen
Revision: 997250

upgpkg: python-pyzmq 22.2.1-1

Modified:
  python-pyzmq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 09:02:50 UTC (rev 997249)
+++ PKGBUILD2021-08-09 09:52:50 UTC (rev 997250)
@@ -1,6 +1,6 @@
 # Maintainer: Kyle Keen 
 pkgname=python-pyzmq
-pkgver=22.1.0
+pkgver=22.2.1
 pkgrel=1
 pkgdesc="Python3 bindings for zeromq, written in Cython"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 #source=("https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz;)
 
#source=("https://pypi.python.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
 
source=("https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-$pkgver.tar.gz;)
-md5sums=('5111fe3c089ba64ba8798922bab28280')
+md5sums=('f261acf884460e93d30f7113c8e9242e')
 
 check() {
   cd "$srcdir/pyzmq-$pkgver"



[arch-commits] Commit in arch-rebuild-order/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 09:48:07
  Author: jelle
Revision: 421272

archrelease: copy trunk to extra-x86_64

Added:
  arch-rebuild-order/repos/extra-x86_64/PKGBUILD
(from rev 421271, arch-rebuild-order/trunk/PKGBUILD)
Deleted:
  arch-rebuild-order/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 09:47:57 UTC (rev 421271)
+++ PKGBUILD2021-08-09 09:48:07 UTC (rev 421272)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=arch-rebuild-order
-pkgver=0.2
-pkgrel=2
-pkgdesc='CLI tool to determine the rebuild order of provided package(s)'
-url='https://gitlab.archlinux.org/archlinux/arch-rebuild-order'
-arch=('x86_64')
-license=('MIT')
-depends=('glibc' 'libalpm.so')
-makedepends=('cargo' 'mandown' 'git')
-groups=('archlinux-tools')
-source=(git+https://gitlab.archlinux.org/archlinux/arch-rebuild-order.git#tag=v$pkgver?signed)
-sha512sums=('SKIP')
-validpgpkeys=("E499C79F53C96A54E572FEE1C06086337C50773E")
-
-prepare() {
-  cd ${pkgname}
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd ${pkgname}
-  cargo build --frozen --release --all-features
-}
-
-check() {
-  cd ${pkgname}
-  cargo test --frozen --all-features
-}
-
-package() {
-  cd ${pkgname}
-  make install DESTDIR="$pkgdir" PREFIX=/usr
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: arch-rebuild-order/repos/extra-x86_64/PKGBUILD (from rev 421271, 
arch-rebuild-order/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 09:48:07 UTC (rev 421272)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=arch-rebuild-order
+pkgver=0.2.1
+pkgrel=1
+pkgdesc='CLI tool to determine the rebuild order of provided package(s)'
+url='https://gitlab.archlinux.org/archlinux/arch-rebuild-order'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc' 'libalpm.so')
+makedepends=('cargo' 'mandown' 'git')
+groups=('archlinux-tools')
+source=(git+https://gitlab.archlinux.org/archlinux/arch-rebuild-order.git#tag=v$pkgver?signed)
+sha512sums=('SKIP')
+validpgpkeys=("E499C79F53C96A54E572FEE1C06086337C50773E")
+
+prepare() {
+  cd ${pkgname}
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd ${pkgname}
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd ${pkgname}
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd ${pkgname}
+  make install DESTDIR="$pkgdir" PREFIX=/usr
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-08-09 Thread Jelle van der Waa via arch-commits
Date: Monday, August 9, 2021 @ 09:47:57
  Author: jelle
Revision: 421271

upgpkg: arch-rebuild-order 0.2.1-1

Modified:
  arch-rebuild-order/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 09:43:55 UTC (rev 421270)
+++ PKGBUILD2021-08-09 09:47:57 UTC (rev 421271)
@@ -1,8 +1,8 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=arch-rebuild-order
-pkgver=0.2
-pkgrel=2
+pkgver=0.2.1
+pkgrel=1
 pkgdesc='CLI tool to determine the rebuild order of provided package(s)'
 url='https://gitlab.archlinux.org/archlinux/arch-rebuild-order'
 arch=('x86_64')



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2021-08-09 Thread Tobias Powalowski via arch-commits
Date: Monday, August 9, 2021 @ 09:43:55
  Author: tpowa
Revision: 421270

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 421269, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 421269, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |  132 ++---
 archboot.install |   48 +--
 2 files changed, 91 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 09:43:50 UTC (rev 421269)
+++ PKGBUILD2021-08-09 09:43:55 UTC (rev 421270)
@@ -1,65 +0,0 @@
-# $Id: PKGBUILD,v 1.30 2006/12/19 01:28:39 thomas Exp $
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.08
-pkgrel=1
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://gitlab.archlinux.org/tpowa/archboot;
-depends=('mkinitcpio>=0.8.5-1' 'mksyslinux>=2010.08-2' 'mkpxelinux>=2010.08-2' 
'mkisolinux>=2010.08-2'
- 'subversion>=1.7.4-1' 'wget>=1.13.4-1' 'bash>=4.2.024-2' 
'coreutils>=8.15-1'
- 'cryptsetup>=1.4.1-1' 'dialog>=1.1_20120215-1' 'e2fsprogs>=1.42.1-1' 
'findutils>=4.4.2-4' 'gawk>=4.0.0-2'
- 'grep>=2.11-2' 'iputils>=20101006-2' 'jfsutils>=1.1.15-3' 
'less>=444-3' 'lvm2>=2.02.95-1' 'mdadm>=3.2.3-1'
- 'kmod>=7-1' 'nano>=2.2.6-2' 'ncurses>=5.9-3' 
'net-tools>=1.60.20110819cvs-3' 'gnu-netcat>=0.7.1-4'
- 'procps-ng>=3.3.2-1' 'psmisc>=22.16-1' 'reiserfsprogs>=3.6.21-4'
- 'sed>=4.2.1-4' 'snarf>=7.0-5' 'tar>=1.26-2' 'util-linux>=2.21-6' 
'bind>=9.9.2.P1-1'
- 'which>=2.20-5' 'kbd>=1.15.3-2' 'wireless_tools>=29-6' 
'xfsprogs>=3.1.7-1' 'hdparm>=9.39-1'
- 'memtest86+>=4.20-2' 'inetutils>=1.9.1-1' 'openssh>=5.9p1-8' 
'hwdetect>=2012.01-1' 'shadow>=4.1.5-4' 
-'bridge-utils>=1.5-1' 'ifenslave>=1.1.0-7' 'links>=2.5-1' 
'dosfstools>=3.0.12-1'
- 'glibc>=2.15-7' 'linux-api-headers>=3.1.6-1' 'linux>=3.2.13-1'
- 'kexec-tools>=2.0.2-4' 'ppp>=2.4.5-3' 'rp-pppoe>=3.10-7' 
'iptables>=1.4.12.2-1' 
- 'ntfs-3g>=2012.1.15-1' 'pciutils>=3.1.9-1' 'usbutils>=005-1' 
'vpnc>=0.5.3.svn516-1' 'openvpn>=2.2.2-1'
-'b43-fwcutter>=015-1' 'wpa_supplicant>=0.7.3-5' 'rsync>=3.0.9-2' 
'gzip>=1.4-4' 'libarchive>=3.0.3-5'
-'device-mapper>=2.02.95-1' 'screen>=4.0.3-13' 'elfutils>=0.152-2' 
'pam>=1.1.5-2' 'cracklib>=2.8.18-2'
-'nfs-utils>=1.3.4-1' 'nfsidmap>=0.24-3' 'readline>=6.2.002-1' 
'acl>=2.2.51-1' 'attr>=2.4.46-1' 'pcre>=8.30-1'
-'cpio>=2.11-3' 'fuse>=2.8.7-1' 'libusb>=1.0.18-1' 'vim>=7.4.0-1' 
'lzo>=2.06-1' 'libsasl>=2.1.23-9' 'libldap>=2.4.30-1'
-'gpm>=1.20.6-7' 'libevent>=2.0.17-1' 'gcc-libs>=4.6.3-1' 
'sdparm>=1.07-1' 'licenses>=2.9-1' 'pptpclient>=1.7.2-4'
-   'ipw2100-fw>=1.3-6' 'ipw2200-fw>=3.1-4' 'smbclient>=3.6.3-4'  
'dhcpcd>=5.5.4-1' 'openssl>=1.0.1-1'
-'git>=1.7.9.5-1' 'dmraid>=1.0.0.rc16.3-2' 'linux-atm>=2.5.2-1' 
'netctl>=0.6-1' 'parted>=3.1-1' 'tzdata>=2012b-1'
-'ntp>=4.2.6.p5-6' 'libgcrypt>=1.5.0-1' 'iw>=3.3-2' 'crda>=1.1.2-2' 
'libnl>=3.2.7-1' 'iproute2>=3.2.0-3'
-'wireless-regdb>=2011.04.28-1' 'dhclient>=4.2.3.2-2' 
'syslinux>=4.05-3' 'mtools>=4.0.17-2'
-'fsarchiver>=0.6.13-1' 'xz>=5.0.3-1' 'libtirpc>=0.2.2-2' 
'rpcbind>=0.2.0-6' 'testdisk>=6.13-2'
-'wipe>=2.3.1-2' 'ddrescue>=1.15-1' 'ifplugd>=0.28-8' 
-'libgssglue>=0.3-1' 'mkinitcpio-nfs-utils>=0.2-2' 'gptfdisk>=0.8.4-1' 
'nilfs-utils>=2.1.1-1' 'btrfs-progs>=0.19.20120110-2'
-'linux-firmware>=20120227-1' 'iana-etc>=2.30-2' 
'libusb-compat>=0.1.3-2' 'keyutils>=1.5.5-1'
-'libisoburn>=1.2.0-1' 'squashfs-tools>=4.2-2' 'file>=5.11-1' 
'curl>=7.25.0-1'  'smartmontools>=5.42-3'
-'dnsmasq>=2.60-2' 'lftp>=4.3.5-1' 'openconnect>=1:3.15-1' 
'libxml2>=2.7.8-2' 'libproxy>=0.4.7-1' 
-'tcpdump>=4.2.1-2' 'nmap>=5.51-3' 'lua>=5.1.5-1' 'weechat>=0.3.7-1' 
'gnutls>=3.0.17-1' 'nettle>=2.4-1' 'libtasn1>=2.12-1'
-'expat>=2.0.1-7' 'progsreiserfs>=0.3.0.5-7' 'glib2>=2.30.2-2' 
'freetype2>=2.4.9-1'
-'libssh2>=1.4.0-1' 'libedit>=20120311_3.0-1' 'talloc>=2.0.7-1' 
'libjpeg-turbo>=1.2.0-1'
-'dmidecode>=2.11-2' 'pth>=2.0.7-4' 'gnupg>=2.0.19-1' 
'libksba>=1.2.0-1' 'libassuan>=2.0.3-1' 'pinentry>=0.8.1-3'
-'gpgme>=1.3.1-4' 'ldns>=1.6.12-2' 'dnssec-anchors>=20120422-1' 
'hwids>=20120512-1'
-'systemd>=185' 'archlinux-keyring>=20120529-1' 'haveged>=1.4-3' 
-'pambase>=20120602-1' 'chntpw>=110511-2' 'traceroute>=2.0.18' 
'arch-wiki-lite>=20120619-1' 'grub>=2.00-1' 
-'systemd-sysvcompat>=188-2' 'arch-wiki-lite>=20120619-1'
- 'intel-ucode>=20120606-1' 'arch-install-scripts>=5-1' 'zsh>=5.0.0-2' 
'gdbm>=1.10-1'
- 'grml-zsh-config>=0.6.2-1' 'cpupower>=3.5-4' 

[arch-commits] Commit in archboot/trunk (PKGBUILD archboot.install)

2021-08-09 Thread Tobias Powalowski via arch-commits
Date: Monday, August 9, 2021 @ 09:43:50
  Author: tpowa
Revision: 421269

upgpkg: archboot 2021.08-2: bump to latest version

Modified:
  archboot/trunk/PKGBUILD
  archboot/trunk/archboot.install

--+
 PKGBUILD |8 +---
 archboot.install |2 +-
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 08:36:57 UTC (rev 421268)
+++ PKGBUILD2021-08-09 09:43:50 UTC (rev 421269)
@@ -3,7 +3,7 @@
 
 pkgname=archboot
 pkgver=2021.08
-pkgrel=1
+pkgrel=2
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')
@@ -49,12 +49,14 @@
  'refind' 'efibootmgr>=0.6.0-3' 'f2fs-tools>=1.1.0-2' 
'efitools>=1.7.0' 
  'lockdown-ms>=20130326-1' 'efivar>=0.4_18_gb8c524c-1' 
'ethtool>=1:3.13-1' 'exfat-utils>=1.2.4-1' 'broadcom-wl' 'fuse3' 'flex' 'expac' 
'amd-ucode') 
 makedepends=('git')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel};)
+source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
 backup=('etc/archboot/x86_64.conf'
 'etc/archboot/presets/x86_64'
 )
 install=archboot.install
 sha256sums=('SKIP')
+validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

+ )
 ### to bump the depends list use this:
 #for i in $(grep ^depends= PKGBUILD | sed  -e 's/depends=(//g' -e 's/)//g'); 
do sed -i -e "s/$(echo $i)/$(echo $i | sed -e "s/>=.*/>=$(pacman -Qi $(echo $i 
| sed -e "s/'//g" -e 's/>=.*//g') | grep ^Version | sed -e 's/.*: //g')'/g")/g" 
PKGBUILD; done
 
@@ -61,5 +63,5 @@
 package()
 {
   cd "$srcdir/archboot"
-  mv * "$pkgdir/"
+  mv etc/ usr/ "$pkgdir/"
 }

Modified: archboot.install
===
--- archboot.install2021-08-09 08:36:57 UTC (rev 421268)
+++ archboot.install2021-08-09 09:43:50 UTC (rev 421269)
@@ -11,7 +11,7 @@
 Modify them to your needs.
 --> Use the preset files as config file of your build tool:
 mkisolinux, mksyslinux or mkpxelinux
---> For Allinone ISOs use archboot-allinone.sh
+--> For x86_64 ISOs use archboot-x86_64.sh
 EOF
 }
 



[arch-commits] Commit in ruby-faraday/repos/community-any (4 files)

2021-08-09 Thread Tim Meusel via arch-commits
Date: Monday, August 9, 2021 @ 09:02:50
  Author: bastelfreak
Revision: 997249

archrelease: copy trunk to community-any

Added:
  ruby-faraday/repos/community-any/PKGBUILD
(from rev 997248, ruby-faraday/trunk/PKGBUILD)
  ruby-faraday/repos/community-any/disable-simplecov-and-coveralls.patch
(from rev 997248, ruby-faraday/trunk/disable-simplecov-and-coveralls.patch)
Deleted:
  ruby-faraday/repos/community-any/PKGBUILD
  ruby-faraday/repos/community-any/disable-simplecov-and-coveralls.patch

---+
 PKGBUILD  |  130 
 disable-simplecov-and-coveralls.patch |   48 +--
 2 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 09:02:43 UTC (rev 997248)
+++ PKGBUILD2021-08-09 09:02:50 UTC (rev 997249)
@@ -1,65 +0,0 @@
-# Maintainer: Tim Meusel 
-# Contributor: Felix Yan 
-# Contributor: Anatol Pomozov 
-# Contributor: Alfredo Palhares 
-# Contributor: Jochen Schalanda 
-
-_gemname='faraday'
-pkgname="ruby-${_gemname}"
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='HTTP/REST API client library.'
-arch=('any')
-url="https://github.com/lostisland/${_gemname};
-license=('MIT')
-depends=('ruby' 'ruby-multipart-post' 'ruby-ruby2_keywords' 
'ruby-faraday-net_http' 'ruby-faraday-em_http' 'ruby-faraday-em_synchrony' 
'ruby-faraday-excon' 'ruby-faraday-httpclient' 'ruby-faraday-net_http' 
'ruby-faraday-net_http_persistent' 'ruby-faraday-patron' 'ruby-faraday-rack')
-makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-rspec')
-checkdepends=('ruby-rack' 'ruby-webmock' 'ruby-rspec-expectations' 
'ruby-multipart-parser' 'ruby-rack-test')
-options=('!emptydirs')
-source=("${url}/archive/v${pkgver}/${_gemname}-v${pkgver}.tar.gz" 
'disable-simplecov-and-coveralls.patch')
-sha512sums=('67d47d4548d35532cc93b74c736b64ce952af4084f5c6c5357fe719f27309f64db35d939f53f51da6283f2fc324600976d5b0aff8413147d958099d1d515f6e2'
-
'8ab1687d1c0e7d217b20df673acc8038507dd8a24e2f833e32de8da4e0034b73f7140df750c74733b8c9260e190f271620171aeeb600cc04c056d4a77ccf4480')
-
-prepare() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  # allow latest dependencies
-  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
-
-  # drop coverage reporting. We don't have simplecov in our repos
-  patch -p1 -N -i "${srcdir}/disable-simplecov-and-coveralls.patch"
-  # don't load pry during tests. that's only required for interactive debugging
-  sed --in-place '/pry/d' spec/spec_helper.rb
-  # disable testing/support for faraday with em-http. We don't have em-http in 
our repos
-  rm spec/faraday/adapter/em_http_spec.rb
-  # disable testing for em-synchrony. We don't have the gem in our repos
-  rm spec/faraday/adapter/em_synchrony_spec.rb
-  # We don't have exon in the repos
-  rm spec/faraday/adapter/excon_spec.rb
-  # we don't have typheus in the repos
-  rm spec/faraday/adapter/typhoeus_spec.rb
-  # we don't have patron in our repos
-  rm spec/faraday/adapter/patron_spec.rb
-}
-
-build() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  gem build "${_gemname}.gemspec"
-}
-
-check() {
-  cd "${srcdir}/${_gemname}-${pkgver}"
-  # tests don't yet pass because some deps are missing in the repos
-  rake spec
-}
-
-package() {
-cd "${srcdir}/${_gemname}-${pkgver}"
-  local _gemdir="$(gem env gemdir)"
-  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  install -Dm 644 README.md UPGRADING.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-
-  rm -rf "${pkgdir}/${_gemdir}/cache"
-}

Copied: ruby-faraday/repos/community-any/PKGBUILD (from rev 997248, 
ruby-faraday/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 09:02:50 UTC (rev 997249)
@@ -0,0 +1,65 @@
+# Maintainer: Tim Meusel 
+# Contributor: Felix Yan 
+# Contributor: Anatol Pomozov 
+# Contributor: Alfredo Palhares 
+# Contributor: Jochen Schalanda 
+
+_gemname='faraday'
+pkgname="ruby-${_gemname}"
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='HTTP/REST API client library.'
+arch=('any')
+url="https://github.com/lostisland/${_gemname};
+license=('MIT')
+depends=('ruby' 'ruby-multipart-post' 'ruby-ruby2_keywords' 
'ruby-faraday-net_http' 'ruby-faraday-em_http' 'ruby-faraday-em_synchrony' 
'ruby-faraday-excon' 'ruby-faraday-httpclient' 'ruby-faraday-net_http' 
'ruby-faraday-net_http_persistent' 'ruby-faraday-patron' 'ruby-faraday-rack')
+makedepends=('ruby-rdoc' 'ruby-rake' 'ruby-rspec')
+checkdepends=('ruby-rack' 'ruby-webmock' 'ruby-rspec-expectations' 
'ruby-multipart-parser' 'ruby-rack-test')
+options=('!emptydirs')
+source=("${url}/archive/v${pkgver}/${_gemname}-v${pkgver}.tar.gz" 
'disable-simplecov-and-coveralls.patch')

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

2021-08-09 Thread Tim Meusel via arch-commits
Date: Monday, August 9, 2021 @ 09:02:43
  Author: bastelfreak
Revision: 997248

update 1.6.0->1.7.0

Modified:
  ruby-faraday/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 08:37:08 UTC (rev 997247)
+++ PKGBUILD2021-08-09 09:02:43 UTC (rev 997248)
@@ -6,7 +6,7 @@
 
 _gemname='faraday'
 pkgname="ruby-${_gemname}"
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='HTTP/REST API client library.'
 arch=('any')
@@ -17,7 +17,7 @@
 checkdepends=('ruby-rack' 'ruby-webmock' 'ruby-rspec-expectations' 
'ruby-multipart-parser' 'ruby-rack-test')
 options=('!emptydirs')
 source=("${url}/archive/v${pkgver}/${_gemname}-v${pkgver}.tar.gz" 
'disable-simplecov-and-coveralls.patch')
-sha512sums=('67d47d4548d35532cc93b74c736b64ce952af4084f5c6c5357fe719f27309f64db35d939f53f51da6283f2fc324600976d5b0aff8413147d958099d1d515f6e2'
+sha512sums=('8a6354de90a4f3a6f3e049b1e8ee51c4a4bdf962fd6777d6941710611c743cef884ad34d694cc965b2f3a2eba9b4a7405e6658ff9dcd5d1e8c563abc69ff5b8d'
 
'8ab1687d1c0e7d217b20df673acc8038507dd8a24e2f833e32de8da4e0034b73f7140df750c74733b8c9260e190f271620171aeeb600cc04c056d4a77ccf4480')
 
 prepare() {



[arch-commits] Commit in lib32-libxcrypt/repos (2 files)

2021-08-09 Thread Christian Hesse via arch-commits
Date: Monday, August 9, 2021 @ 08:37:08
  Author: eworm
Revision: 997247

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libxcrypt/repos/multilib-testing-x86_64/
  lib32-libxcrypt/repos/multilib-testing-x86_64/PKGBUILD
(from rev 997246, lib32-libxcrypt/trunk/PKGBUILD)

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

Copied: lib32-libxcrypt/repos/multilib-testing-x86_64/PKGBUILD (from rev 
997246, lib32-libxcrypt/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2021-08-09 08:37:08 UTC (rev 997247)
@@ -0,0 +1,47 @@
+# Maintainer: Christian Hesse 
+
+pkgname=lib32-libxcrypt
+# Neither tarballs nor tags are signed, but commits are.
+_commit='b9116ef2245abb128a22a975d187b1272312a80c' # git rev-parse v${pkgver}
+pkgver=4.4.25
+pkgrel=1
+pkgdesc='Modern library for one-way hashing of passwords (32-bit)'
+arch=('x86_64')
+url='https://github.com/besser82/libxcrypt/'
+license=('GPL')
+depends=('lib32-glibc' 'libxcrypt')
+makedepends=('git' 'gcc-multilib')
+validpgpkeys=('678CE3FEE430311596DB8C16F52E98007594C21D') # Björn 'besser82' 
Esser
+source=("git+https://github.com/besser82/libxcrypt.git#commit=${_commit}?signed;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}/libxcrypt"
+
+  autoreconf -fi
+}
+
+build() {
+  cd "${srcdir}/libxcrypt"
+
+  export CC="gcc -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--libexecdir=/usr/lib32 \
+--disable-static \
+--enable-hashes=strong,glibc \
+--enable-obsolete-api=no \
+--disable-failure-tokens
+  make 
+}
+
+package() {
+  cd "${srcdir}/libxcrypt"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}



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

2021-08-09 Thread Christian Hesse via arch-commits
Date: Monday, August 9, 2021 @ 08:37:06
  Author: eworm
Revision: 997246

upgpkg: lib32-libxcrypt 4.4.25-1: new upstream release

Modified:
  lib32-libxcrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:41:42 UTC (rev 997245)
+++ PKGBUILD2021-08-09 08:37:06 UTC (rev 997246)
@@ -2,8 +2,8 @@
 
 pkgname=lib32-libxcrypt
 # Neither tarballs nor tags are signed, but commits are.
-_commit='e120e553ebeabf01ffc5a2d6d9fa0dd58dfe0803' # git rev-parse v${pkgver}
-pkgver=4.4.24
+_commit='b9116ef2245abb128a22a975d187b1272312a80c' # git rev-parse v${pkgver}
+pkgver=4.4.25
 pkgrel=1
 pkgdesc='Modern library for one-way hashing of passwords (32-bit)'
 arch=('x86_64')



[arch-commits] Commit in libxcrypt/repos (3 files)

2021-08-09 Thread Christian Hesse via arch-commits
Date: Monday, August 9, 2021 @ 08:36:57
  Author: eworm
Revision: 421268

archrelease: copy trunk to testing-x86_64

Added:
  libxcrypt/repos/testing-x86_64/
  libxcrypt/repos/testing-x86_64/PKGBUILD
(from rev 421267, libxcrypt/trunk/PKGBUILD)
  libxcrypt/repos/testing-x86_64/libxcrypt.install
(from rev 421267, libxcrypt/trunk/libxcrypt.install)

---+
 PKGBUILD  |   44 
 libxcrypt.install |   15 +++
 2 files changed, 59 insertions(+)

Copied: libxcrypt/repos/testing-x86_64/PKGBUILD (from rev 421267, 
libxcrypt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-09 08:36:57 UTC (rev 421268)
@@ -0,0 +1,44 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=libxcrypt
+# Neither tarballs nor tags are signed, but commits are.
+_commit='b9116ef2245abb128a22a975d187b1272312a80c' # git rev-parse v${pkgver}
+pkgver=4.4.25
+pkgrel=1
+pkgdesc='Modern library for one-way hashing of passwords'
+arch=('x86_64')
+url='https://github.com/besser82/libxcrypt/'
+license=('GPL')
+depends=('glibc')
+makedepends=('git')
+provides=('libcrypt.so')
+install=libxcrypt.install
+validpgpkeys=('678CE3FEE430311596DB8C16F52E98007594C21D') # Björn 'besser82' 
Esser
+source=("git+https://github.com/besser82/libxcrypt.git#commit=${_commit}?signed;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-hashes=strong,glibc \
+--enable-obsolete-api=no \
+--disable-failure-tokens
+  make
+}
+
+check() {
+  cd $pkgname
+  make check 
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: libxcrypt/repos/testing-x86_64/libxcrypt.install (from rev 421267, 
libxcrypt/trunk/libxcrypt.install)
===
--- testing-x86_64/libxcrypt.install(rev 0)
+++ testing-x86_64/libxcrypt.install2021-08-09 08:36:57 UTC (rev 421268)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+post_upgrade() {
+  # return if old package version greater 4.4.21...
+  (( $(vercmp $2 '4.4.21') > 0 )) && return
+
+  cat < Starting with 'libxcrypt' 4.4.21, weak password hashes (such as MD5 and 
SHA1)
+ > are no longer accepted for new passwords. Users that still have their
+ > passwords stored with a weak hash will be asked to update their password on
+ > their next login.
+ > If the login just fails (for example from display manager) switch to a
+ > virtual terminal ('Ctrl-Alt-F2') and log in there once.
+EOM
+}



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

2021-08-09 Thread Christian Hesse via arch-commits
Date: Monday, August 9, 2021 @ 08:36:37
  Author: eworm
Revision: 421267

upgpkg: libxcrypt 4.4.25-1: new upstream release

Modified:
  libxcrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:34:37 UTC (rev 421266)
+++ PKGBUILD2021-08-09 08:36:37 UTC (rev 421267)
@@ -2,8 +2,8 @@
 
 pkgname=libxcrypt
 # Neither tarballs nor tags are signed, but commits are.
-_commit='e120e553ebeabf01ffc5a2d6d9fa0dd58dfe0803' # git rev-parse v${pkgver}
-pkgver=4.4.24
+_commit='b9116ef2245abb128a22a975d187b1272312a80c' # git rev-parse v${pkgver}
+pkgver=4.4.25
 pkgrel=1
 pkgdesc='Modern library for one-way hashing of passwords'
 arch=('x86_64')



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:41:42
  Author: alucryd
Revision: 997245

archrelease: copy trunk to community-x86_64

Added:
  gala/repos/community-x86_64/PKGBUILD
(from rev 997244, gala/trunk/PKGBUILD)
Deleted:
  gala/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 07:41:37 UTC (rev 997244)
+++ PKGBUILD2021-08-09 07:41:42 UTC (rev 997245)
@@ -1,71 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=gala
-pkgver=6.0.0
-pkgrel=3
-pkgdesc='The Pantheon Window Manager'
-arch=(x86_64)
-url=https://github.com/elementary/gala
-license=(GPL3)
-groups=(pantheon-unstable)
-depends=(
-  atk
-  bamf
-  cairo
-  gdk-pixbuf2
-  glib2
-  gnome-desktop
-  gtk3
-  json-glib
-  libdrm
-  libgee
-  libgexiv2
-  libgl
-  libgranite.so
-  libx11
-  libxcomposite
-  libxdamage
-  libxext
-  libxfixes
-  libxi
-  libxrandr
-  libxtst
-  mesa
-  mutter
-  pango
-  plank
-  wayland
-)
-makedepends=(
-  cmake
-  git
-  gnome-common
-  intltool
-  meson
-  vala
-)
-provides=(libgala.so)
-_tag=70408457186a03d61d975386ce7a25beb86191af
-source=(git+https://github.com/elementary/gala.git#tag=${_tag})
-sha256sums=(SKIP)
-
-prepare() {
-  cd gala
-  git cherry-pick -n 22e85fe1c8909906e726eafcc3ad4f69b23ee15d
-}
-
-pkgver() {
-  cd gala
-  git describe --tags
-}
-
-build() {
-  arch-meson gala build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: gala/repos/community-x86_64/PKGBUILD (from rev 997244, 
gala/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 07:41:42 UTC (rev 997245)
@@ -0,0 +1,71 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=gala
+pkgver=6.0.0
+pkgrel=4
+pkgdesc='The Pantheon Window Manager'
+arch=(x86_64)
+url=https://github.com/elementary/gala
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  atk
+  bamf
+  cairo
+  gdk-pixbuf2
+  glib2
+  gnome-desktop
+  gtk3
+  json-glib
+  libdrm
+  libgee
+  libgexiv2
+  libgl
+  libgranite.so
+  libx11
+  libxcomposite
+  libxdamage
+  libxext
+  libxfixes
+  libxi
+  libxrandr
+  libxtst
+  mesa
+  mutter
+  pango
+  plank
+  wayland
+)
+makedepends=(
+  cmake
+  git
+  gnome-common
+  intltool
+  meson
+  vala
+)
+provides=(libgala.so)
+_tag=70408457186a03d61d975386ce7a25beb86191af
+source=(git+https://github.com/elementary/gala.git#tag=${_tag})
+sha256sums=(SKIP)
+
+prepare() {
+  cd gala
+  git cherry-pick -n 22e85fe1c8909906e726eafcc3ad4f69b23ee15d
+}
+
+pkgver() {
+  cd gala
+  git describe --tags
+}
+
+build() {
+  arch-meson gala build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:41:37
  Author: alucryd
Revision: 997244

gala 6.0.0-4: fix group

Modified:
  gala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:31:13 UTC (rev 997243)
+++ PKGBUILD2021-08-09 07:41:37 UTC (rev 997244)
@@ -2,12 +2,12 @@
 
 pkgname=gala
 pkgver=6.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='The Pantheon Window Manager'
 arch=(x86_64)
 url=https://github.com/elementary/gala
 license=(GPL3)
-groups=(pantheon-unstable)
+groups=(pantheon)
 depends=(
   atk
   bamf



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:31:13
  Author: felixonmars
Revision: 997243

archrelease: copy trunk to community-any

Added:
  python-phonenumbers/repos/community-any/PKGBUILD
(from rev 997242, python-phonenumbers/trunk/PKGBUILD)
Deleted:
  python-phonenumbers/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 07:31:05 UTC (rev 997242)
+++ PKGBUILD2021-08-09 07:31:13 UTC (rev 997243)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-phonenumbers
-pkgver=8.12.28
-pkgrel=1
-pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
-arch=('any')
-url="https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-depends=('python')
-makedepends=("python-setuptools")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver.tar.gz;)
-sha512sums=('cbae9ee650975a82d7feedfa91e6122205984e0a3cbb0fcdbafa92a8b735cb832dd34006e862f09cc1391dbc8f6eb8e8a9a0a831d708dd9a6bdac7c7686ca638')
-
-build() {
-  cd python-phonenumbers-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-phonenumbers-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd python-phonenumbers-$pkgver
-  python setup.py install -O1 --root "$pkgdir"
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 997242, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 07:31:13 UTC (rev 997243)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-phonenumbers
+pkgver=8.12.29
+pkgrel=1
+pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
+arch=('any')
+url="https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+depends=('python')
+makedepends=("python-setuptools")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver.tar.gz;)
+sha512sums=('311956c9b1952ce980ca75841c76994cf0e1f29ef4315198ba98ef73d601da7ef89be7c5bb0156ac581b23df646dafb45b7e874322be8afca0be44f6a5e33c56')
+
+build() {
+  cd python-phonenumbers-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-phonenumbers-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd python-phonenumbers-$pkgver
+  python setup.py install -O1 --root "$pkgdir"
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:31:05
  Author: felixonmars
Revision: 997242

upgpkg: python-phonenumbers 8.12.29-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:28:15 UTC (rev 997241)
+++ PKGBUILD2021-08-09 07:31:05 UTC (rev 997242)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-phonenumbers
-pkgver=8.12.28
+pkgver=8.12.29
 pkgrel=1
 pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python')
 makedepends=("python-setuptools")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/daviddrysdale/python-phonenumbers/archive/v$pkgver.tar.gz;)
-sha512sums=('cbae9ee650975a82d7feedfa91e6122205984e0a3cbb0fcdbafa92a8b735cb832dd34006e862f09cc1391dbc8f6eb8e8a9a0a831d708dd9a6bdac7c7686ca638')
+sha512sums=('311956c9b1952ce980ca75841c76994cf0e1f29ef4315198ba98ef73d601da7ef89be7c5bb0156ac581b23df646dafb45b7e874322be8afca0be44f6a5e33c56')
 
 build() {
   cd python-phonenumbers-$pkgver



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:28:15
  Author: felixonmars
Revision: 997241

archrelease: copy trunk to community-any

Added:
  catfish/repos/community-any/PKGBUILD
(from rev 997240, catfish/trunk/PKGBUILD)
Deleted:
  catfish/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 07:28:07 UTC (rev 997240)
+++ PKGBUILD2021-08-09 07:28:15 UTC (rev 997241)
@@ -1,31 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Alexander F. Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Alexander Fehr 
-# Contributor: Pantelis Panayiotou 
-# Contributor: loqs 
-
-pkgname=catfish
-pkgver=4.16.1
-pkgrel=1
-pkgdesc='Versatile file searching tool'
-arch=('any')
-url='https://docs.xfce.org/apps/catfish/start'
-license=('GPL')
-depends=('dbus-python' 'gtk3' 'python-cairo' 'python-gobject' 'python-pexpect' 
'xdg-utils'
- 'xfconf')
-makedepends=('intltool' 'python-distutils-extra')
-optdepends=('mlocate: search in locate index'
-'zeitgeist: search in zeitgeist index')
-source=("https://archive.xfce.org/src/apps/catfish/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('10317e2ca3a24290e46f62ed884cfbdf48fe7bfc3c528cfa81eca49ce3f5a655')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package () {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: catfish/repos/community-any/PKGBUILD (from rev 997240, 
catfish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 07:28:15 UTC (rev 997241)
@@ -0,0 +1,31 @@
+# Maintainer: Balló György 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Alexander Fehr 
+# Contributor: Pantelis Panayiotou 
+# Contributor: loqs 
+
+pkgname=catfish
+pkgver=4.16.2
+pkgrel=1
+pkgdesc='Versatile file searching tool'
+arch=('any')
+url='https://docs.xfce.org/apps/catfish/start'
+license=('GPL')
+depends=('dbus-python' 'gtk3' 'python-cairo' 'python-gobject' 'python-pexpect' 
'xdg-utils'
+ 'xfconf')
+makedepends=('intltool' 'python-distutils-extra')
+optdepends=('mlocate: search in locate index'
+'zeitgeist: search in zeitgeist index')
+source=("https://archive.xfce.org/src/apps/catfish/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('b21a2e151943f0b194d38b17feaaf382187947ed12a02c3d6492afb748012a6b')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package () {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:28:07
  Author: felixonmars
Revision: 997240

upgpkg: catfish 4.16.2-1

Modified:
  catfish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:27:07 UTC (rev 997239)
+++ PKGBUILD2021-08-09 07:28:07 UTC (rev 997240)
@@ -6,7 +6,7 @@
 # Contributor: loqs 
 
 pkgname=catfish
-pkgver=4.16.1
+pkgver=4.16.2
 pkgrel=1
 pkgdesc='Versatile file searching tool'
 arch=('any')
@@ -18,7 +18,7 @@
 optdepends=('mlocate: search in locate index'
 'zeitgeist: search in zeitgeist index')
 
source=("https://archive.xfce.org/src/apps/catfish/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('10317e2ca3a24290e46f62ed884cfbdf48fe7bfc3c528cfa81eca49ce3f5a655')
+sha256sums=('b21a2e151943f0b194d38b17feaaf382187947ed12a02c3d6492afb748012a6b')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in pantheon-settings-daemon (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:26:48
  Author: alucryd
Revision: 997238

archrelease: copy trunk to community-any

Added:
  pantheon-settings-daemon/repos/
  pantheon-settings-daemon/repos/community-any/
  pantheon-settings-daemon/repos/community-any/PKGBUILD
(from rev 997237, pantheon-settings-daemon/trunk/PKGBUILD)

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

Copied: pantheon-settings-daemon/repos/community-any/PKGBUILD (from rev 997237, 
pantheon-settings-daemon/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-08-09 07:26:48 UTC (rev 997238)
@@ -0,0 +1,42 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-settings-daemon
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Default settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/settings-daemon.git
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  accountsservice
+  dbus
+  dconf
+  geoclue
+  glib2
+  libgranite.so
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+_tag=37d090797975e1c5d1827ce220cd6737c035ce42
+source=(pantheon-settings-daemon::git+https://github.com/elementary/settings-daemon.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-settings-daemon
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-settings-daemon build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:26:40
  Author: alucryd
Revision: 997237

add pantheon-settings-daemon

Added:
  pantheon-settings-daemon/
  pantheon-settings-daemon/trunk/
  pantheon-settings-daemon/trunk/PKGBUILD

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

Added: pantheon-settings-daemon/trunk/PKGBUILD
===
--- pantheon-settings-daemon/trunk/PKGBUILD (rev 0)
+++ pantheon-settings-daemon/trunk/PKGBUILD 2021-08-09 07:26:40 UTC (rev 
997237)
@@ -0,0 +1,42 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-settings-daemon
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Default settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/settings-daemon.git
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  accountsservice
+  dbus
+  dconf
+  geoclue
+  glib2
+  libgranite.so
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+_tag=37d090797975e1c5d1827ce220cd6737c035ce42
+source=(pantheon-settings-daemon::git+https://github.com/elementary/settings-daemon.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-settings-daemon
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-settings-daemon build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:22:00
  Author: alucryd
Revision: 997236

archrelease: copy trunk to community-any

Added:
  pantheon-session/repos/community-any/PKGBUILD
(from rev 997235, pantheon-session/trunk/PKGBUILD)
Deleted:
  pantheon-session/repos/community-any/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 07:21:55 UTC (rev 997235)
+++ PKGBUILD2021-08-09 07:22:00 UTC (rev 997236)
@@ -1,50 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Helder Bertoldo 
-
-pkgname=pantheon-session
-pkgver=6.0.0
-pkgrel=1
-pkgdesc='Session settings for Pantheon'
-arch=(any)
-url=https://github.com/elementary/session-settings
-license=(GPL3)
-groups=(pantheon-stable)
-depends=(
-  cerbere
-  dconf
-  gnome-keyring
-  gnome-session
-  gnome-settings-daemon
-  pantheon-applications-menu
-  libgala.so
-  libwingpanel-2.0.so
-  onboard
-  orca
-  plank
-  xdg-user-dirs-gtk
-)
-makedepends=(
-  git
-  meson
-)
-optdepends=(pantheon-default-settings)
-_tag=48b482e4ad967522391a01391a1bb6ec66aff90d
-source=(pantheon-session-settings::git+https://github.com/elementary/session-settings.git#tag=${_tag})
-b2sums=(SKIP)
-
-pkgver() {
-  cd pantheon-session-settings
-  git describe --tags
-}
-
-build() {
-  arch-meson pantheon-session-settings build \
--Dfallback-session=gnome
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-session/repos/community-any/PKGBUILD (from rev 997235, 
pantheon-session/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 07:22:00 UTC (rev 997236)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Helder Bertoldo 
+
+pkgname=pantheon-session
+pkgver=6.0.0
+pkgrel=2
+pkgdesc='Session settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/session-settings
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  cerbere
+  dconf
+  gnome-keyring
+  gnome-session
+  gnome-settings-daemon
+  pantheon-applications-menu
+  libgala.so
+  libwingpanel-2.0.so
+  onboard
+  orca
+  plank
+  xdg-user-dirs-gtk
+)
+makedepends=(
+  git
+  meson
+)
+optdepends=(pantheon-default-settings)
+_tag=48b482e4ad967522391a01391a1bb6ec66aff90d
+source=(pantheon-session-settings::git+https://github.com/elementary/session-settings.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-session-settings
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-session-settings build \
+-Dfallback-session=gnome
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:21:55
  Author: alucryd
Revision: 997235

pantheon-session 6.0.0-2: fix group

Modified:
  pantheon-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:20:01 UTC (rev 997234)
+++ PKGBUILD2021-08-09 07:21:55 UTC (rev 997235)
@@ -3,12 +3,12 @@
 
 pkgname=pantheon-session
 pkgver=6.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Session settings for Pantheon'
 arch=(any)
 url=https://github.com/elementary/session-settings
 license=(GPL3)
-groups=(pantheon-stable)
+groups=(pantheon)
 depends=(
   cerbere
   dconf



[arch-commits] Commit in pantheon-default-settings (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:20:01
  Author: alucryd
Revision: 997234

archrelease: copy trunk to community-any

Added:
  pantheon-default-settings/repos/
  pantheon-default-settings/repos/community-any/
  pantheon-default-settings/repos/community-any/PKGBUILD
(from rev 997233, pantheon-default-settings/trunk/PKGBUILD)

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

Copied: pantheon-default-settings/repos/community-any/PKGBUILD (from rev 
997233, pantheon-default-settings/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-08-09 07:20:01 UTC (rev 997234)
@@ -0,0 +1,39 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-default-settings
+pkgver=6.0.0
+pkgrel=1
+pkgdesc='Default settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/default-settings.git
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  accountsservice
+  dbus
+  dconf
+  polkit
+)
+makedepends=(
+  git
+  meson
+)
+_tag=cd843651b3ca56114e34ef7d9b38d5bf4291cf87
+source=(pantheon-default-settings::git+https://github.com/elementary/default-settings.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-default-settings
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-default-settings build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:19:50
  Author: alucryd
Revision: 997233

add pantheon-default-settings

Added:
  pantheon-default-settings/
  pantheon-default-settings/trunk/
  pantheon-default-settings/trunk/PKGBUILD

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

Added: pantheon-default-settings/trunk/PKGBUILD
===
--- pantheon-default-settings/trunk/PKGBUILD(rev 0)
+++ pantheon-default-settings/trunk/PKGBUILD2021-08-09 07:19:50 UTC (rev 
997233)
@@ -0,0 +1,39 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-default-settings
+pkgver=6.0.0
+pkgrel=1
+pkgdesc='Default settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/default-settings.git
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  accountsservice
+  dbus
+  dconf
+  polkit
+)
+makedepends=(
+  git
+  meson
+)
+_tag=cd843651b3ca56114e34ef7d9b38d5bf4291cf87
+source=(pantheon-default-settings::git+https://github.com/elementary/default-settings.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-default-settings
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-default-settings build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in switchboard-plug-wacom (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:12:49
  Author: alucryd
Revision: 997132

archrelease: copy trunk to community-x86_64

Added:
  switchboard-plug-wacom/repos/
  switchboard-plug-wacom/repos/community-x86_64/
  switchboard-plug-wacom/repos/community-x86_64/PKGBUILD
(from rev 997129, switchboard-plug-wacom/trunk/PKGBUILD)

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

Copied: switchboard-plug-wacom/repos/community-x86_64/PKGBUILD (from rev 
997129, switchboard-plug-wacom/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2021-08-09 07:12:49 UTC (rev 997132)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=switchboard-plug-wacom
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Switchboard wacom Plug'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard-plug-wacom
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  glib2
+  gtk3
+  libgranite.so
+  libgudev-1.0.so
+  libswitchboard-2.0.so
+  libwacom
+  libx11
+  libxi
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+_tag=5e5f27c6181a24bd51301a5686c122a0503ab494
+source=(git+https://github.com/elementary/switchboard-plug-wacom.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd switchboard-plug-wacom
+  git describe --tags
+}
+
+build() {
+  arch-meson switchboard-plug-wacom build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:12:41
  Author: alucryd
Revision: 997123

add switchboard-plug-wacom

Added:
  switchboard-plug-wacom/
  switchboard-plug-wacom/trunk/
  switchboard-plug-wacom/trunk/PKGBUILD

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

Added: switchboard-plug-wacom/trunk/PKGBUILD
===
--- switchboard-plug-wacom/trunk/PKGBUILD   (rev 0)
+++ switchboard-plug-wacom/trunk/PKGBUILD   2021-08-09 07:12:41 UTC (rev 
997123)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=switchboard-plug-wacom
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Switchboard wacom Plug'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard-plug-wacom
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  glib2
+  gtk3
+  libgranite.so
+  libgudev-1.0.so
+  libswitchboard-2.0.so
+  libwacom
+  libx11
+  libxi
+)
+makedepends=(
+  git
+  meson
+  vala
+)
+_tag=5e5f27c6181a24bd51301a5686c122a0503ab494
+source=(git+https://github.com/elementary/switchboard-plug-wacom.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd switchboard-plug-wacom
+  git describe --tags
+}
+
+build() {
+  arch-meson switchboard-plug-wacom build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in pantheon-session (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:06:40
  Author: alucryd
Revision: 996608

archrelease: copy trunk to community-any

Added:
  pantheon-session/repos/
  pantheon-session/repos/community-any/
  pantheon-session/repos/community-any/PKGBUILD
(from rev 996605, pantheon-session/trunk/PKGBUILD)

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

Copied: pantheon-session/repos/community-any/PKGBUILD (from rev 996605, 
pantheon-session/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2021-08-09 07:06:40 UTC (rev 996608)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Helder Bertoldo 
+
+pkgname=pantheon-session
+pkgver=6.0.0
+pkgrel=1
+pkgdesc='Session settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/session-settings
+license=(GPL3)
+groups=(pantheon-stable)
+depends=(
+  cerbere
+  dconf
+  gnome-keyring
+  gnome-session
+  gnome-settings-daemon
+  pantheon-applications-menu
+  libgala.so
+  libwingpanel-2.0.so
+  onboard
+  orca
+  plank
+  xdg-user-dirs-gtk
+)
+makedepends=(
+  git
+  meson
+)
+optdepends=(pantheon-default-settings)
+_tag=48b482e4ad967522391a01391a1bb6ec66aff90d
+source=(pantheon-session-settings::git+https://github.com/elementary/session-settings.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-session-settings
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-session-settings build \
+-Dfallback-session=gnome
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 07:06:34
  Author: alucryd
Revision: 996597

add pantheon-session

Added:
  pantheon-session/
  pantheon-session/trunk/
  pantheon-session/trunk/PKGBUILD

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

Added: pantheon-session/trunk/PKGBUILD
===
--- pantheon-session/trunk/PKGBUILD (rev 0)
+++ pantheon-session/trunk/PKGBUILD 2021-08-09 07:06:34 UTC (rev 996597)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Helder Bertoldo 
+
+pkgname=pantheon-session
+pkgver=6.0.0
+pkgrel=1
+pkgdesc='Session settings for Pantheon'
+arch=(any)
+url=https://github.com/elementary/session-settings
+license=(GPL3)
+groups=(pantheon-stable)
+depends=(
+  cerbere
+  dconf
+  gnome-keyring
+  gnome-session
+  gnome-settings-daemon
+  pantheon-applications-menu
+  libgala.so
+  libwingpanel-2.0.so
+  onboard
+  orca
+  plank
+  xdg-user-dirs-gtk
+)
+makedepends=(
+  git
+  meson
+)
+optdepends=(pantheon-default-settings)
+_tag=48b482e4ad967522391a01391a1bb6ec66aff90d
+source=(pantheon-session-settings::git+https://github.com/elementary/session-settings.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+  cd pantheon-session-settings
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-session-settings build \
+-Dfallback-session=gnome
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:06:17
  Author: felixonmars
Revision: 996566

archrelease: copy trunk to community-any

Added:
  ts-node/repos/community-any/PKGBUILD
(from rev 996561, ts-node/trunk/PKGBUILD)
Deleted:
  ts-node/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 07:06:16 UTC (rev 996565)
+++ PKGBUILD2021-08-09 07:06:17 UTC (rev 996566)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Bruno Galeotti 
-
-pkgname=ts-node
-pkgver=10.1.0
-pkgrel=1
-pkgdesc="TypeScript execution and REPL for node.js, with source map support"
-arch=('any')
-url="https://github.com/TypeStrong/ts-node;
-license=('MIT')
-depends=('nodejs' 'typescript')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('eacce7dfe27d5b21b6844fb95bc7b4aee66bcf2935b852d8c9ee8818c05a7673b30e1f1a3fbb7c09b169b1f0a2131dbec0c8b10218c5b7b94e642e3e97e59b10')
-
-package() {
-  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  # Dedup typescript
-  rm -r "$pkgdir"/usr/bin/{tsc,tsserver} 
"$pkgdir"/usr/lib/node_modules/typescript
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ts-node/repos/community-any/PKGBUILD (from rev 996561, 
ts-node/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 07:06:17 UTC (rev 996566)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Bruno Galeotti 
+
+pkgname=ts-node
+pkgver=10.2.0
+pkgrel=1
+pkgdesc="TypeScript execution and REPL for node.js, with source map support"
+arch=('any')
+url="https://github.com/TypeStrong/ts-node;
+license=('MIT')
+depends=('nodejs' 'typescript')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('16cb581ed433ea2b23f2b06d60c3786d97675cdd6fab81c26ea9fdbdd3507089d1aad07ce8f78f25023113a7acd0f871296863d8f1eec1b1b8d07f9bc6464f9a')
+
+package() {
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Dedup typescript
+  rm -r "$pkgdir"/usr/bin/{tsc,tsserver} 
"$pkgdir"/usr/lib/node_modules/typescript
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 07:06:08
  Author: felixonmars
Revision: 996553

upgpkg: ts-node 10.2.0-1

Modified:
  ts-node/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 07:06:07 UTC (rev 996552)
+++ PKGBUILD2021-08-09 07:06:08 UTC (rev 996553)
@@ -2,7 +2,7 @@
 # Contributor: Bruno Galeotti 
 
 pkgname=ts-node
-pkgver=10.1.0
+pkgver=10.2.0
 pkgrel=1
 pkgdesc="TypeScript execution and REPL for node.js, with source map support"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('eacce7dfe27d5b21b6844fb95bc7b4aee66bcf2935b852d8c9ee8818c05a7673b30e1f1a3fbb7c09b169b1f0a2131dbec0c8b10218c5b7b94e642e3e97e59b10')
+sha512sums=('16cb581ed433ea2b23f2b06d60c3786d97675cdd6fab81c26ea9fdbdd3507089d1aad07ce8f78f25023113a7acd0f871296863d8f1eec1b1b8d07f9bc6464f9a')
 
 package() {
   npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz



[arch-commits] Commit in wingpanel-indicator-a11y (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:44:27
  Author: alucryd
Revision: 996494

archrelease: copy trunk to community-x86_64

Added:
  wingpanel-indicator-a11y/repos/
  wingpanel-indicator-a11y/repos/community-x86_64/
  wingpanel-indicator-a11y/repos/community-x86_64/PKGBUILD
(from rev 996493, wingpanel-indicator-a11y/trunk/PKGBUILD)

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

Copied: wingpanel-indicator-a11y/repos/community-x86_64/PKGBUILD (from rev 
996493, wingpanel-indicator-a11y/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2021-08-09 06:44:27 UTC (rev 996494)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=wingpanel-indicator-a11y
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Wingpanel Universal Access Indicator'
+arch=(x86_64)
+url=https://github.com/elementary/wingpanel-indicator-a11y
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  glib2
+  gtk3
+  libgranite.so
+  libwingpanel-2.0.so
+)
+makedepends=(
+  git
+  meson
+  vala
+  wingpanel
+)
+_tag=951885a75c32f3c7e9e174f52ff0845ed51e027b
+source=(git+https://github.com/elementary/wingpanel-indicator-a11y.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd wingpanel-indicator-a11y
+  git describe --tags
+}
+
+build() {
+  arch-meson wingpanel-indicator-a11y build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:44:17
  Author: alucryd
Revision: 996493

add wingpanel-indicator-a11y

Added:
  wingpanel-indicator-a11y/
  wingpanel-indicator-a11y/trunk/
  wingpanel-indicator-a11y/trunk/PKGBUILD

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

Added: wingpanel-indicator-a11y/trunk/PKGBUILD
===
--- wingpanel-indicator-a11y/trunk/PKGBUILD (rev 0)
+++ wingpanel-indicator-a11y/trunk/PKGBUILD 2021-08-09 06:44:17 UTC (rev 
996493)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=wingpanel-indicator-a11y
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Wingpanel Universal Access Indicator'
+arch=(x86_64)
+url=https://github.com/elementary/wingpanel-indicator-a11y
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  glib2
+  gtk3
+  libgranite.so
+  libwingpanel-2.0.so
+)
+makedepends=(
+  git
+  meson
+  vala
+  wingpanel
+)
+_tag=951885a75c32f3c7e9e174f52ff0845ed51e027b
+source=(git+https://github.com/elementary/wingpanel-indicator-a11y.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd wingpanel-indicator-a11y
+  git describe --tags
+}
+
+build() {
+  arch-meson wingpanel-indicator-a11y build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:36:03
  Author: alucryd
Revision: 996492

archrelease: copy trunk to community-x86_64

Added:
  pcsx2/repos/community-x86_64/PKGBUILD
(from rev 996491, pcsx2/trunk/PKGBUILD)
Deleted:
  pcsx2/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  206 ++---
 1 file changed, 103 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 06:35:58 UTC (rev 996491)
+++ PKGBUILD2021-08-09 06:36:03 UTC (rev 996492)
@@ -1,103 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: josephgbr 
-# Contributor: vEX 
-
-pkgname=pcsx2
-pkgver=1.7.0.r1555.3eda42075
-pkgrel=1
-pkgdesc='A Sony PlayStation 2 emulator'
-arch=(x86_64)
-url=https://www.pcsx2.net
-license=(
-  GPL2
-  GPL3
-  LGPL2.1
-  LGPL3
-)
-depends=(
-  gdk-pixbuf2
-  glibc
-  libaio
-  libasound.so
-  libfmt.so
-  libfreetype.so
-  libgdk-3.so
-  libgio-2.0.so
-  libgl
-  libGLEW.so
-  libglib-2.0.so
-  libgobject-2.0.so
-  libgtk-3.so
-  libpcap
-  libpng
-  libportaudio.so
-  libpulse.so
-  libudev.so
-  libx11
-  libxcb
-  libxml2
-  sdl2
-  soundtouch
-  wxgtk3
-  wxgtk-common
-  xz
-  zlib
-)
-makedepends=(
-  cmake
-  git
-  ninja
-  png++
-)
-_commit=3eda42075af58bec8dc832c190f238cfe4f8d38b
-source=(
-  git+https://github.com/PCSX2/pcsx2.git#commit=${_commit}
-  git+https://github.com/rtissera/libchdr.git
-  git+https://github.com/jbeder/yaml-cpp.git
-)
-b2sums=(
-  SKIP
-  SKIP
-  SKIP
-)
-
-prepare() {
-  cd pcsx2/3rdparty
-  for submodule in libchdr/libchdr yaml-cpp/yaml-cpp; do
-git submodule init ${submodule}
-git config submodule.${submodule}.url ../../${submodule#*/}
-git submodule update ${submodule}
-  done
-}
-
-pkgver() {
-  cd pcsx2
-
-  git describe --tags | sed 's/^v//; s/-dev//; s/-/.r/; s/-g/./'
-}
-
-build() {
-  cmake -S pcsx2 -B build -G Ninja \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDISABLE_ADVANCE_SIMD=ON \
--DDISABLE_BUILD_DATE=ON \
--DDISABLE_PCSX2_WRAPPER=ON \
--DENABLE_TESTS=OFF \
--DSDL2_API=ON \
--DPACKAGE_MODE=ON \
--DREBUILD_SHADER=ON \
--DUSE_LTO=OFF \
--DUSE_SYSTEM_YAML=OFF \
--DUSE_VTUNE=OFF \
--DXDG_STD=ON \
--DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 \
--Wno-dev
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pcsx2/repos/community-x86_64/PKGBUILD (from rev 996491, 
pcsx2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 06:36:03 UTC (rev 996492)
@@ -0,0 +1,103 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: vEX 
+
+pkgname=pcsx2
+pkgver=1.7.0.r1592.47bdc58c1
+pkgrel=1
+pkgdesc='A Sony PlayStation 2 emulator'
+arch=(x86_64)
+url=https://www.pcsx2.net
+license=(
+  GPL2
+  GPL3
+  LGPL2.1
+  LGPL3
+)
+depends=(
+  gdk-pixbuf2
+  glibc
+  libaio
+  libasound.so
+  libfmt.so
+  libfreetype.so
+  libgdk-3.so
+  libgio-2.0.so
+  libgl
+  libGLEW.so
+  libglib-2.0.so
+  libgobject-2.0.so
+  libgtk-3.so
+  libpcap
+  libpng
+  libportaudio.so
+  libpulse.so
+  libudev.so
+  libx11
+  libxcb
+  libxml2
+  sdl2
+  soundtouch
+  wxgtk3
+  wxgtk-common
+  xz
+  zlib
+)
+makedepends=(
+  cmake
+  git
+  ninja
+  png++
+)
+_commit=47bdc58c1a30c22cf322b42e68fcf71687dd54ec
+source=(
+  git+https://github.com/PCSX2/pcsx2.git#commit=${_commit}
+  git+https://github.com/rtissera/libchdr.git
+  git+https://github.com/jbeder/yaml-cpp.git
+)
+b2sums=(
+  SKIP
+  SKIP
+  SKIP
+)
+
+prepare() {
+  cd pcsx2/3rdparty
+  for submodule in libchdr/libchdr yaml-cpp/yaml-cpp; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../../${submodule#*/}
+git submodule update ${submodule}
+  done
+}
+
+pkgver() {
+  cd pcsx2
+
+  git describe --tags | sed 's/^v//; s/-dev//; s/-/.r/; s/-g/./'
+}
+
+build() {
+  cmake -S pcsx2 -B build -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDISABLE_ADVANCE_SIMD=ON \
+-DDISABLE_BUILD_DATE=ON \
+-DDISABLE_PCSX2_WRAPPER=ON \
+-DENABLE_TESTS=OFF \
+-DSDL2_API=ON \
+-DPACKAGE_MODE=ON \
+-DREBUILD_SHADER=ON \
+-DUSE_LTO=OFF \
+-DUSE_SYSTEM_YAML=OFF \
+-DUSE_VTUNE=OFF \
+-DXDG_STD=ON \
+-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 \
+-Wno-dev
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:35:58
  Author: alucryd
Revision: 996491

upgpkg: pcsx2 1.7.0.r1592.47bdc58c1-1

Modified:
  pcsx2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:35:01 UTC (rev 996490)
+++ PKGBUILD2021-08-09 06:35:58 UTC (rev 996491)
@@ -3,7 +3,7 @@
 # Contributor: vEX 
 
 pkgname=pcsx2
-pkgver=1.7.0.r1555.3eda42075
+pkgver=1.7.0.r1592.47bdc58c1
 pkgrel=1
 pkgdesc='A Sony PlayStation 2 emulator'
 arch=(x86_64)
@@ -49,7 +49,7 @@
   ninja
   png++
 )
-_commit=3eda42075af58bec8dc832c190f238cfe4f8d38b
+_commit=47bdc58c1a30c22cf322b42e68fcf71687dd54ec
 source=(
   git+https://github.com/PCSX2/pcsx2.git#commit=${_commit}
   git+https://github.com/rtissera/libchdr.git



[arch-commits] Commit in home-assistant/repos/community-any (4 files)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:35:01
  Author: alucryd
Revision: 996490

archrelease: copy trunk to community-any

Added:
  home-assistant/repos/community-any/PKGBUILD
(from rev 996489, home-assistant/trunk/PKGBUILD)
  home-assistant/repos/community-any/home-assistant.service
(from rev 996489, home-assistant/trunk/home-assistant.service)
Deleted:
  home-assistant/repos/community-any/PKGBUILD
  home-assistant/repos/community-any/home-assistant.service

+
 PKGBUILD   |  174 +++
 home-assistant.service |   60 
 2 files changed, 117 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 06:34:54 UTC (rev 996489)
+++ PKGBUILD2021-08-09 06:35:01 UTC (rev 996490)
@@ -1,87 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ethan Skinner 
-# Contributor: Grégoire Seux 
-# Contributor: Dean Galvin 
-# Contributor: NicoHood 
-
-pkgname=home-assistant
-pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=2021.8.1
-pkgrel=1
-arch=(any)
-url=https://home-assistant.io/
-license=(APACHE)
-depends=(
-  gcc
-  python-aiohttp
-  python-aiohttp-cors
-  python-astral
-  python-async-timeout
-  python-attrs
-  python-awesomeversion
-  python-bcrypt
-  python-certifi
-  python-ciso8601
-  python-cryptography
-  python-defusedxml
-  python-httpx
-  python-jinja
-  python-mutagen
-  python-pillow
-  python-pip
-  python-pyjwt
-  python-pytz
-  python-requests
-  python-ruamel-yaml
-  python-slugify
-  python-sqlalchemy
-  python-voluptuous
-  python-voluptuous-serialize
-  python-yaml
-  python-yarl
-  python-zeroconf
-)
-makedepends=(
-  git
-  python-setuptools
-)
-optdepends=(
-  'net-tools: Nmap host discovery'
-  'openzwave: Z-Wave integration'
-  'python-dtlssocket: Ikea Tradfri integration'
-  'python-lxml: Meteo France integration'
-)
-_tag=5e9081e3236affc6a541799b6f668fabcf02662e
-source=(
-  git+https://github.com/home-assistant/home-assistant.git#tag=${_tag}
-  home-assistant.service
-)
-b2sums=('SKIP'
-
'c56b88e4d8d6d10ea132d22916468109ffaa83c1176a75e0c0ead16b261c34fe4c279cec6dca415b1addfcd873ad35b294f60a3e1ba62cc917a9dbb73cce47d4')
-
-pkgver() {
-  cd home-assistant
-  git describe --tags
-}
-
-prepare() {
-  cd home-assistant
-  # lift hard dep constraints, we'll deal with breaking changes ourselves
-  sed 's/==/>=/g' -i requirements.txt setup.py 
homeassistant/package_constraints.txt
-  # allow pip >= 20.3 to be used
-  sed 's/,<20.3//g' -i requirements.txt setup.py 
homeassistant/package_constraints.txt
-}
-
-build() {
-  cd home-assistant
-  export PYTHONHASHSEED=0
-  python setup.py build
-}
-
-package() {
-  cd home-assistant
-  python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-  install -Dm 644 ../home-assistant.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-}
-
-# vim: ts=2 sw=2 et:

Copied: home-assistant/repos/community-any/PKGBUILD (from rev 996489, 
home-assistant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 06:35:01 UTC (rev 996490)
@@ -0,0 +1,87 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ethan Skinner 
+# Contributor: Grégoire Seux 
+# Contributor: Dean Galvin 
+# Contributor: NicoHood 
+
+pkgname=home-assistant
+pkgdesc='Open source home automation that puts local control and privacy first'
+pkgver=2021.8.4
+pkgrel=1
+arch=(any)
+url=https://home-assistant.io/
+license=(APACHE)
+depends=(
+  gcc
+  python-aiohttp
+  python-aiohttp-cors
+  python-astral
+  python-async-timeout
+  python-attrs
+  python-awesomeversion
+  python-bcrypt
+  python-certifi
+  python-ciso8601
+  python-cryptography
+  python-defusedxml
+  python-httpx
+  python-jinja
+  python-mutagen
+  python-pillow
+  python-pip
+  python-pyjwt
+  python-pytz
+  python-requests
+  python-ruamel-yaml
+  python-slugify
+  python-sqlalchemy
+  python-voluptuous
+  python-voluptuous-serialize
+  python-yaml
+  python-yarl
+  python-zeroconf
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'net-tools: Nmap host discovery'
+  'openzwave: Z-Wave integration'
+  'python-dtlssocket: Ikea Tradfri integration'
+  'python-lxml: Meteo France integration'
+)
+_tag=f3de8b9f28de01abf72c0f5bb0b457eb1841f201
+source=(
+  git+https://github.com/home-assistant/home-assistant.git#tag=${_tag}
+  home-assistant.service
+)
+b2sums=('SKIP'
+
'c56b88e4d8d6d10ea132d22916468109ffaa83c1176a75e0c0ead16b261c34fe4c279cec6dca415b1addfcd873ad35b294f60a3e1ba62cc917a9dbb73cce47d4')
+
+pkgver() {
+  cd home-assistant
+  git describe --tags
+}
+
+prepare() {
+  cd home-assistant
+  # lift hard dep constraints, we'll deal with breaking changes ourselves
+  sed 's/==/>=/g' -i requirements.txt setup.py 
homeassistant/package_constraints.txt
+  # allow 

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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:34:54
  Author: alucryd
Revision: 996489

upgpkg: home-assistant 2021.8.4-1

Modified:
  home-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:23:19 UTC (rev 996488)
+++ PKGBUILD2021-08-09 06:34:54 UTC (rev 996489)
@@ -6,7 +6,7 @@
 
 pkgname=home-assistant
 pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=2021.8.1
+pkgver=2021.8.4
 pkgrel=1
 arch=(any)
 url=https://home-assistant.io/
@@ -51,7 +51,7 @@
   'python-dtlssocket: Ikea Tradfri integration'
   'python-lxml: Meteo France integration'
 )
-_tag=5e9081e3236affc6a541799b6f668fabcf02662e
+_tag=f3de8b9f28de01abf72c0f5bb0b457eb1841f201
 source=(
   git+https://github.com/home-assistant/home-assistant.git#tag=${_tag}
   home-assistant.service



[arch-commits] Commit in ffnvcodec-headers/repos/extra-any (PKGBUILD PKGBUILD)

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:34:37
  Author: alucryd
Revision: 421266

archrelease: copy trunk to extra-any

Added:
  ffnvcodec-headers/repos/extra-any/PKGBUILD
(from rev 421265, ffnvcodec-headers/trunk/PKGBUILD)
Deleted:
  ffnvcodec-headers/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-09 06:34:31 UTC (rev 421265)
+++ PKGBUILD2021-08-09 06:34:37 UTC (rev 421266)
@@ -1,33 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Bermond 
-
-pkgname=ffnvcodec-headers
-pkgver=11.0.10.1
-pkgrel=1
-pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
-arch=(any)
-url=https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
-license=(MIT)
-makedepends=(git)
-_tag=315ad740ac77282c7cea67ba31f2e4b373132919
-source=(git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
-  cd nv-codec-headers
-
-  git describe --tags | sed 's/^n//'
-}
-
-build() {
-  make PREFIX=/usr -C nv-codec-headers
-  sed -n '4,25p' nv-codec-headers/include/ffnvcodec/nvEncodeAPI.h > LICENSE # 
Extract license
-  sed -i '1,22s/^.\{,3\}//' LICENSE # Delete C comments
-}
-
-package() {
-  make PREFIX=/usr DESTDIR="${pkgdir}" -C nv-codec-headers install
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/ffnvcodec-headers/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffnvcodec-headers/repos/extra-any/PKGBUILD (from rev 421265, 
ffnvcodec-headers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-09 06:34:37 UTC (rev 421266)
@@ -0,0 +1,33 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Daniel Bermond 
+
+pkgname=ffnvcodec-headers
+pkgver=11.1.5.0
+pkgrel=1
+pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
+arch=(any)
+url=https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
+license=(MIT)
+makedepends=(git)
+_tag=b641a195edbe3ac9788e681e22c2e2fad8aacddb
+source=(git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd nv-codec-headers
+
+  git describe --tags | sed 's/^n//'
+}
+
+build() {
+  make PREFIX=/usr -C nv-codec-headers
+  sed -n '4,25p' nv-codec-headers/include/ffnvcodec/nvEncodeAPI.h > LICENSE # 
Extract license
+  sed -i '1,22s/^.\{,3\}//' LICENSE # Delete C comments
+}
+
+package() {
+  make PREFIX=/usr DESTDIR="${pkgdir}" -C nv-codec-headers install
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/ffnvcodec-headers/
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-09 Thread Maxime Gauduin via arch-commits
Date: Monday, August 9, 2021 @ 06:34:31
  Author: alucryd
Revision: 421265

upgpkg: ffnvcodec-headers 11.1.5.0-1

Modified:
  ffnvcodec-headers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-08 19:55:31 UTC (rev 421264)
+++ PKGBUILD2021-08-09 06:34:31 UTC (rev 421265)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Bermond 
 
 pkgname=ffnvcodec-headers
-pkgver=11.0.10.1
+pkgver=11.1.5.0
 pkgrel=1
 pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
 arch=(any)
@@ -9,7 +9,7 @@
 url=https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
 license=(MIT)
 makedepends=(git)
-_tag=315ad740ac77282c7cea67ba31f2e4b373132919
+_tag=b641a195edbe3ac9788e681e22c2e2fad8aacddb
 
source=(git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=${_tag})
 sha256sums=(SKIP)
 



[arch-commits] Commit in haskell-language-server/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:23:19
  Author: felixonmars
Revision: 996488

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-language-server/repos/community-staging-x86_64/
  haskell-language-server/repos/community-staging-x86_64/PKGBUILD
(from rev 996487, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 996487, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 06:23:19 UTC (rev 996488)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.2.0.0
+pkgrel=42
+pkgdesc="LSP server for GHC"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-async'
+ 'haskell-base16-bytestring' 'haskell-cryptohash-sha1' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-gitrev'
+ 'haskell-hashable' 'haskell-hie-bios' 'haskell-hiedb' 
'haskell-hls-brittany-plugin'
+ 'haskell-hls-explicit-imports-plugin'
+ 'haskell-hls-floskell-plugin' 'haskell-hls-fourmolu-plugin' 
'haskell-hls-ormolu-plugin'
+ 'haskell-hls-graph'
+ 'haskell-hls-haddock-comments-plugin' 'haskell-hls-hlint-plugin'
+ 'haskell-hls-module-name-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-plugin-api'
+ 'haskell-hls-pragmas-plugin'
+ 'haskell-hls-retrie-plugin' 'haskell-hls-stylish-haskell-plugin' 
'haskell-hslogger'
+ 'haskell-lens' 'haskell-lsp' 'haskell-optparse-applicative' 
'haskell-optparse-simple'
+ 'haskell-regex-tdfa' 'haskell-safe-exceptions' 
'haskell-sqlite-simple' 'haskell-temporary'
+ 'haskell-unordered-containers')
+# Disabled due to not compatible with GHC 9:
+# 'haskell-hls-brittany-plugin' 'haskell-hls-class-plugin' 
'haskell-hls-eval-plugin'
+# 'haskell-hls-refine-imports-plugin' 'haskell-hls-splice-plugin' 
'haskell-hls-tactics-plugin'
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 
'haskell-hspec-expectations' 'haskell-lsp-test'
+ 'haskell-lsp-types')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c8ca57796be15796e7334e20ef3a983b4a77335d41084add87d102746e893fc80c43ee6c761d04d52afad846d4744007a0aec8d70a7e12e4576f847a684726ab')
+
+prepare() {
+  cd $pkgname-$pkgver
+  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -f-brittany -f-class -f-eval -f-refineImports 
-f-splice -f-tactic
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  
PATH="$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper:$PATH"
 LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-language-server/trunk (PKGBUILD)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:23:12
  Author: felixonmars
Revision: 996487

upgpkg: haskell-language-server 1.2.0.0-42: rebuild with primitive 0.7.2.0

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:20:50 UTC (rev 996486)
+++ PKGBUILD2021-08-09 06:23:12 UTC (rev 996487)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.2.0.0
-pkgrel=41
+pkgrel=42
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



[arch-commits] Commit in haskell-hls-haddock-comments-plugin/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:20:50
  Author: felixonmars
Revision: 996486

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/
  haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 996485, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 996485, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 06:20:50 UTC (rev 996486)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.2
+pkgrel=37
+pkgdesc="Haddock comments plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-exactprint' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('f50c9fc595e8cebcff38d4fb7c3f6f8df59d0df5e8924718812c3ee38da38db5d25ab082e1347d8fdd6a01a779e2c03e029fb6b74bcfd6ebeb55ac1a21642fb6')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-haddock-comments-plugin/trunk (PKGBUILD)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:20:43
  Author: felixonmars
Revision: 996485

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.2-37: rebuild with primitive 
0.7.2.0

Modified:
  haskell-hls-haddock-comments-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:19:42 UTC (rev 996484)
+++ PKGBUILD2021-08-09 06:20:43 UTC (rev 996485)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.2
-pkgrel=36
+pkgrel=37
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



[arch-commits] Commit in haskell-hls-module-name-plugin/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:19:42
  Author: felixonmars
Revision: 996484

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 996483, haskell-hls-module-name-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 996483, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 06:19:42 UTC (rev 996484)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.0
+pkgrel=37
+pkgdesc="Module name plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-module-name-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghcide' 'haskell-hls-plugin-api' 
'haskell-lsp'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('abcf1d52aa552b97e459c0e8c70af03f8428e292c253dcd14eea753283fd81a8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-module-name-plugin/trunk (PKGBUILD)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:19:34
  Author: felixonmars
Revision: 996483

upgpkg: haskell-hls-module-name-plugin 1.0.0.0-37: rebuild with primitive 
0.7.2.0

Modified:
  haskell-hls-module-name-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:18:31 UTC (rev 996482)
+++ PKGBUILD2021-08-09 06:19:34 UTC (rev 996483)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.0
-pkgrel=36
+pkgrel=37
 pkgdesc="Module name plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-module-name-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-ormolu-plugin/repos (2 files)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:18:31
  Author: felixonmars
Revision: 996482

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-ormolu-plugin/repos/community-staging-x86_64/
  haskell-hls-ormolu-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 996481, haskell-hls-ormolu-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-ormolu-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 996481, haskell-hls-ormolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-09 06:18:31 UTC (rev 996482)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-ormolu-plugin
+pkgname=haskell-hls-ormolu-plugin
+pkgver=1.0.0.0
+pkgrel=27
+pkgdesc="Integration with the Ormolu code formatter"
+url="https://hackage.haskell.org/package/hls-ormolu-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghcide' 'haskell-hls-plugin-api' 
'haskell-lens'
+ 'haskell-lsp' 'haskell-ormolu' 'haskell-ghc-api-compat')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-types')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('d965b7fcc78b36362de872a69da87e41c48dc191e966f62d123b63994c0d38c6')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ormolu -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-ormolu-plugin/trunk (PKGBUILD)

2021-08-09 Thread Felix Yan via arch-commits
Date: Monday, August 9, 2021 @ 06:18:24
  Author: felixonmars
Revision: 996481

upgpkg: haskell-hls-ormolu-plugin 1.0.0.0-27: rebuild with primitive 0.7.2.0

Modified:
  haskell-hls-ormolu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-09 06:17:19 UTC (rev 996480)
+++ PKGBUILD2021-08-09 06:18:24 UTC (rev 996481)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.0.0
-pkgrel=26
+pkgrel=27
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



  1   2   >