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

2021-09-12 Thread Alexander Epaneshnikov via arch-commits
Date: Monday, September 13, 2021 @ 05:56:44
  Author: alex19ep
Revision: 1014653

archrelease: copy trunk to community-any

Added:
  rhvoice/repos/community-any/
  rhvoice/repos/community-any/PKGBUILD
(from rev 1014652, rhvoice/trunk/PKGBUILD)
  rhvoice/repos/community-any/rhvoice.install
(from rev 1014652, rhvoice/trunk/rhvoice.install)

-+
 PKGBUILD|  114 ++
 rhvoice.install |7 +++
 2 files changed, 121 insertions(+)

Copied: rhvoice/repos/community-any/PKGBUILD (from rev 1014652, 
rhvoice/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-09-13 05:56:44 UTC (rev 1014653)
@@ -0,0 +1,114 @@
+# Maintainer: Alexander Epaneshnikov 
+
+_langs=(Brazilian-Portuguese English Esperanto Georgian Kyrgyz Macedonian
+Russian Tatar Ukrainian)
+_voices=(alan aleksandr aleksandr-hq anatol anna arina artemiy azamat
+ bdl clb elena evgeniy-eng evgeniy-rus irina kiko Leticia-F123
+ natalia natia nazgul pavel slt spomenka talgat victoria volodymyr
+ yuriy)
+pkgbase=rhvoice
+pkgname=(rhvoice $(for l in "${_langs[@]}"; do echo rhvoice-language-${l,,}; 
done)
+ $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; done))
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Free and open source speech synthesizer for Russian and other 
languages"
+arch=('x86_64')
+url="https://github.com/RHVoice/RHVoice;
+license=('GPL3')
+depends=('speech-dispatcher' 'libpulse' 'portaudio')
+makedepends=('scons' 'libao')
+source=(https://github.com/RHVoice/RHVoice/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz{,.sig})
+validpgpkeys=(6C7F7F22E0152A6FD5728592DAD6F3056C897266)
+sha512sums=('edee8fa79fa0f3eecd2bca6a6c4846876cce2fc7b843a481357b536a42485f9524fc64e9e8a6766cbe46bcc2ef9ad0375cab16ad35722895db5697e14234a8de'
+'SKIP')
+b2sums=('0f5564dcb986eec49bead04b46afe7e5caf8a186cdd23f3c9727ee9e6bdeb4b326d6b9cec3f9cdde78d01286d16f05aad840f67aa44b22ce05b7db85d04f2144'
+'SKIP')
+
+build() {
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" 
CCFLAGS="$CFLAGS" \
+ LINKFLAGS="$LDFLAGS"
+}
+
+package_rhvoice() {
+   optdepends=('libao: for ao backend'
+   $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; 
done))
+   backup=('etc/RHVoice/RHVoice.conf')
+   groups=('rhvoice')
+   install=rhvoice.install
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \
+ CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
+   # remove split data
+   rm -r "${pkgdir}/usr/share/"
+}
+
+# package functions for languages
+for l in "${_langs[@]}"; do
+   eval "
+package_rhvoice-language-${l,,}() {
+   pkgdesc=\"Rhvoice ${l,,} language\"
+   arch=('any')
+   depends=('rhvoice')
+   groups=('rhvoice')
+
+   cd \"${pkgbase}-${pkgver}\"
+   if [[ -d data/languages/$l/userdict ]]; then
+   install -vDm644 data/languages/$l/userdict/src/*.txt -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l/userdict/src\"
+   fi
+   if [[ $l == Macedonian ]]; then
+   license=(AGPL3)
+   fi
+   install -vDm644 data/languages/$l/*.* -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l\"
+}
+"
+done
+
+# package functions for voices
+for v in "${_voices[@]}"; do
+   eval "
+package_rhvoice-voice-${v,,}() {
+   _voicelang=\$(grep \"language\" 
\$pkgbase-\$pkgver/data/voices/$v/voice.info | sed 's/^.*=//')
+   pkgdesc=\"Rhvoice ${v,,} voice for \${_voicelang,,} language\"
+   arch=('any')
+   depends=(rhvoice-language-\${_voicelang,,})
+   groups=('rhvoice')
+   if [[ $v == aleksandr-hq || $v == arina || $v == artemiy || $v == 
evgeniy-eng \
+ || $v == evgeniy-rus || $v == pavel || $v == victoria \
+ || $v == volodymyr || $v == yuriy ]]; then
+   license=('custom:CC-BY-NC-ND-4.0')
+   elif [[ $v == kiko ]]; then
+   license=('custom:CC-BY-NC-SA-4.0')
+   elif [[ $v == Leticia-F123 ]]; then
+   license=('custom:CC-BY-SA-4.0')
+   elif [[ $v == natia || $v == talgat ]]; then
+   license=('custom')
+   fi
+
+   cd \"${pkgbase}-${pkgver}\"
+   install -vDm644 data/voices/$v/16000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/16000\"
+   install -vDm644 data/voices/$v/24000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/24000\"
+   install -vDm644 data/voices/$v/{voice.info,voice.params} -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v\"
+   case \$license in
+   'custom:CC-BY-NC-ND-4.0')
+   install -vDm644 licenses/by-nc-nd-4.0.txt 

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

2021-09-12 Thread Alexander Epaneshnikov via arch-commits
Date: Monday, September 13, 2021 @ 05:30:37
  Author: alex19ep
Revision: 1014652

archrelease: copy trunk to community-x86_64

Added:
  rhvoice/repos/community-x86_64/
  rhvoice/repos/community-x86_64/PKGBUILD
(from rev 1014651, rhvoice/trunk/PKGBUILD)
  rhvoice/repos/community-x86_64/rhvoice.install
(from rev 1014651, rhvoice/trunk/rhvoice.install)

-+
 PKGBUILD|  114 ++
 rhvoice.install |7 +++
 2 files changed, 121 insertions(+)

Copied: rhvoice/repos/community-x86_64/PKGBUILD (from rev 1014651, 
rhvoice/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-09-13 05:30:37 UTC (rev 1014652)
@@ -0,0 +1,114 @@
+# Maintainer: Alexander Epaneshnikov 
+
+_langs=(Brazilian-Portuguese English Esperanto Georgian Kyrgyz Macedonian
+Russian Tatar Ukrainian)
+_voices=(alan aleksandr aleksandr-hq anatol anna arina artemiy azamat
+ bdl clb elena evgeniy-eng evgeniy-rus irina kiko Leticia-F123
+ natalia natia nazgul pavel slt spomenka talgat victoria volodymyr
+ yuriy)
+pkgbase=rhvoice
+pkgname=(rhvoice $(for l in "${_langs[@]}"; do echo rhvoice-language-${l,,}; 
done)
+ $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; done))
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Free and open source speech synthesizer for Russian and other 
languages"
+arch=('x86_64')
+url="https://github.com/RHVoice/RHVoice;
+license=('GPL3')
+depends=('speech-dispatcher' 'libpulse' 'portaudio')
+makedepends=('scons' 'libao')
+source=(https://github.com/RHVoice/RHVoice/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz{,.sig})
+validpgpkeys=(6C7F7F22E0152A6FD5728592DAD6F3056C897266)
+sha512sums=('edee8fa79fa0f3eecd2bca6a6c4846876cce2fc7b843a481357b536a42485f9524fc64e9e8a6766cbe46bcc2ef9ad0375cab16ad35722895db5697e14234a8de'
+'SKIP')
+b2sums=('0f5564dcb986eec49bead04b46afe7e5caf8a186cdd23f3c9727ee9e6bdeb4b326d6b9cec3f9cdde78d01286d16f05aad840f67aa44b22ce05b7db85d04f2144'
+'SKIP')
+
+build() {
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" 
CCFLAGS="$CFLAGS" \
+ LINKFLAGS="$LDFLAGS"
+}
+
+package_rhvoice() {
+   optdepends=('libao: for ao backend'
+   $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; 
done))
+   backup=('etc/RHVoice/RHVoice.conf')
+   groups=('rhvoice')
+   install=rhvoice.install
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \
+ CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
+   # remove split data
+   rm -r "${pkgdir}/usr/share/"
+}
+
+# package functions for languages
+for l in "${_langs[@]}"; do
+   eval "
+package_rhvoice-language-${l,,}() {
+   pkgdesc=\"Rhvoice ${l,,} language\"
+   arch=('any')
+   depends=('rhvoice')
+   groups=('rhvoice')
+
+   cd \"${pkgbase}-${pkgver}\"
+   if [[ -d data/languages/$l/userdict ]]; then
+   install -vDm644 data/languages/$l/userdict/src/*.txt -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l/userdict/src\"
+   fi
+   if [[ $l == Macedonian ]]; then
+   license=(AGPL3)
+   fi
+   install -vDm644 data/languages/$l/*.* -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l\"
+}
+"
+done
+
+# package functions for voices
+for v in "${_voices[@]}"; do
+   eval "
+package_rhvoice-voice-${v,,}() {
+   _voicelang=\$(grep \"language\" 
\$pkgbase-\$pkgver/data/voices/$v/voice.info | sed 's/^.*=//')
+   pkgdesc=\"Rhvoice ${v,,} voice for \${_voicelang,,} language\"
+   arch=('any')
+   depends=(rhvoice-language-\${_voicelang,,})
+   groups=('rhvoice')
+   if [[ $v == aleksandr-hq || $v == arina || $v == artemiy || $v == 
evgeniy-eng \
+ || $v == evgeniy-rus || $v == pavel || $v == victoria \
+ || $v == volodymyr || $v == yuriy ]]; then
+   license=('custom:CC-BY-NC-ND-4.0')
+   elif [[ $v == kiko ]]; then
+   license=('custom:CC-BY-NC-SA-4.0')
+   elif [[ $v == Leticia-F123 ]]; then
+   license=('custom:CC-BY-SA-4.0')
+   elif [[ $v == natia || $v == talgat ]]; then
+   license=('custom')
+   fi
+
+   cd \"${pkgbase}-${pkgver}\"
+   install -vDm644 data/voices/$v/16000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/16000\"
+   install -vDm644 data/voices/$v/24000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/24000\"
+   install -vDm644 data/voices/$v/{voice.info,voice.params} -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v\"
+   case \$license in
+   'custom:CC-BY-NC-ND-4.0')
+   install -vDm644 licenses/by-nc-nd-4.0.txt 

[arch-commits] Commit in (5 files)

2021-09-12 Thread Alexander Epaneshnikov via arch-commits
Date: Monday, September 13, 2021 @ 05:02:10
  Author: alex19ep
Revision: 1014648

add rhvoice

Added:
  rhvoice/
  rhvoice/repos/
  rhvoice/trunk/
  rhvoice/trunk/PKGBUILD
  rhvoice/trunk/rhvoice.install

-+
 PKGBUILD|  114 ++
 rhvoice.install |7 +++
 2 files changed, 121 insertions(+)

Added: rhvoice/trunk/PKGBUILD
===
--- rhvoice/trunk/PKGBUILD  (rev 0)
+++ rhvoice/trunk/PKGBUILD  2021-09-13 05:02:10 UTC (rev 1014648)
@@ -0,0 +1,114 @@
+# Maintainer: Alexander Epaneshnikov 
+
+_langs=(Brazilian-Portuguese English Esperanto Georgian Kyrgyz Macedonian
+Russian Tatar Ukrainian)
+_voices=(alan aleksandr aleksandr-hq anatol anna arina artemiy azamat
+ bdl clb elena evgeniy-eng evgeniy-rus irina kiko Leticia-F123
+ natalia natia nazgul pavel slt spomenka talgat victoria volodymyr
+ yuriy)
+pkgbase=rhvoice
+pkgname=(rhvoice $(for l in "${_langs[@]}"; do echo rhvoice-language-${l,,}; 
done)
+ $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; done))
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Free and open source speech synthesizer for Russian and other 
languages"
+arch=('x86_64')
+url="https://github.com/RHVoice/RHVoice;
+license=('GPL3')
+depends=('speech-dispatcher' 'libpulse' 'portaudio')
+makedepends=('scons' 'libao')
+source=(https://github.com/RHVoice/RHVoice/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz{,.sig})
+validpgpkeys=(6C7F7F22E0152A6FD5728592DAD6F3056C897266)
+sha512sums=('edee8fa79fa0f3eecd2bca6a6c4846876cce2fc7b843a481357b536a42485f9524fc64e9e8a6766cbe46bcc2ef9ad0375cab16ad35722895db5697e14234a8de'
+'SKIP')
+b2sums=('0f5564dcb986eec49bead04b46afe7e5caf8a186cdd23f3c9727ee9e6bdeb4b326d6b9cec3f9cdde78d01286d16f05aad840f67aa44b22ce05b7db85d04f2144'
+'SKIP')
+
+build() {
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" 
CCFLAGS="$CFLAGS" \
+ LINKFLAGS="$LDFLAGS"
+}
+
+package_rhvoice() {
+   optdepends=('libao: for ao backend'
+   $(for v in "${_voices[@]}"; do echo rhvoice-voice-${v,,}; 
done))
+   backup=('etc/RHVoice/RHVoice.conf')
+   groups=('rhvoice')
+   install=rhvoice.install
+   cd "${pkgbase}-${pkgver}"
+   export SCONSFLAGS="$MAKEFLAGS"
+   scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \
+ CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
+   # remove split data
+   rm -r "${pkgdir}/usr/share/"
+}
+
+# package functions for languages
+for l in "${_langs[@]}"; do
+   eval "
+package_rhvoice-language-${l,,}() {
+   pkgdesc=\"Rhvoice ${l,,} language\"
+   arch=('any')
+   depends=('rhvoice')
+   groups=('rhvoice')
+
+   cd \"${pkgbase}-${pkgver}\"
+   if [[ -d data/languages/$l/userdict ]]; then
+   install -vDm644 data/languages/$l/userdict/src/*.txt -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l/userdict/src\"
+   fi
+   if [[ $l == Macedonian ]]; then
+   license=(AGPL3)
+   fi
+   install -vDm644 data/languages/$l/*.* -t 
\"\${pkgdir}/usr/share/RHVoice/languages/$l\"
+}
+"
+done
+
+# package functions for voices
+for v in "${_voices[@]}"; do
+   eval "
+package_rhvoice-voice-${v,,}() {
+   _voicelang=\$(grep \"language\" 
\$pkgbase-\$pkgver/data/voices/$v/voice.info | sed 's/^.*=//')
+   pkgdesc=\"Rhvoice ${v,,} voice for \${_voicelang,,} language\"
+   arch=('any')
+   depends=(rhvoice-language-\${_voicelang,,})
+   groups=('rhvoice')
+   if [[ $v == aleksandr-hq || $v == arina || $v == artemiy || $v == 
evgeniy-eng \
+ || $v == evgeniy-rus || $v == pavel || $v == victoria \
+ || $v == volodymyr || $v == yuriy ]]; then
+   license=('custom:CC-BY-NC-ND-4.0')
+   elif [[ $v == kiko ]]; then
+   license=('custom:CC-BY-NC-SA-4.0')
+   elif [[ $v == Leticia-F123 ]]; then
+   license=('custom:CC-BY-SA-4.0')
+   elif [[ $v == natia || $v == talgat ]]; then
+   license=('custom')
+   fi
+
+   cd \"${pkgbase}-${pkgver}\"
+   install -vDm644 data/voices/$v/16000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/16000\"
+   install -vDm644 data/voices/$v/24000/* -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v/24000\"
+   install -vDm644 data/voices/$v/{voice.info,voice.params} -t 
\"\${pkgdir}/usr/share/RHVoice/voices/$v\"
+   case \$license in
+   'custom:CC-BY-NC-ND-4.0')
+   install -vDm644 licenses/by-nc-nd-4.0.txt 
\"\${pkgdir}/usr/share/licenses/\${pkgname}/license\"
+   ;;
+   'custom:CC-BY-NC-SA-4.0')
+   install -vDm644 licenses/by-nc-sa-4.0.txt 
\"\${pkgdir}/usr/share/licenses/\${pkgname}/license\"
+   ;;
+   

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

2021-09-12 Thread Daniel M. Capella via arch-commits
Date: Monday, September 13, 2021 @ 04:17:26
  Author: polyzen
Revision: 1014647

archrelease: copy trunk to community-any

Added:
  
python-sphinx/repos/community-any/0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch
(from rev 1014646, 
python-sphinx/trunk/0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch)
  python-sphinx/repos/community-any/PKGBUILD
(from rev 1014646, python-sphinx/trunk/PKGBUILD)
Deleted:
  
python-sphinx/repos/community-any/0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch
  python-sphinx/repos/community-any/PKGBUILD

-+
 0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch |  260 
+-
 PKGBUILD|  111 ++--
 2 files changed, 185 insertions(+), 186 deletions(-)

Deleted: 0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch
===
--- 0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch 
2021-09-13 04:17:01 UTC (rev 1014646)
+++ 0001-Revert-Close-7996-manpage-Make-a-section-directory-o.patch 
2021-09-13 04:17:26 UTC (rev 1014647)
@@ -1,130 +0,0 @@
-From 413d1008d96a44cba5bf82030f7e95450ae82554 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
-Date: Sat, 15 May 2021 12:25:10 +0200
-Subject: [PATCH] Revert "Close #7996: manpage: Make a section directory on
- build manpage by default"
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This reverts commit a843fd3db8b588be93b576049a8a291bc4b3ec9d.
-
-Signed-off-by: Johannes Löthberg 

- CHANGES |  2 --
- doc/usage/configuration.rst |  4 +---
- sphinx/builders/manpage.py  |  2 +-
- tests/test_build_manpage.py | 12 ++--
- tests/test_smartquotes.py   |  4 ++--
- 5 files changed, 10 insertions(+), 14 deletions(-)
-
-diff --git a/CHANGES b/CHANGES
-index b7e4c7f0e..7ca08a6ac 100644
 a/CHANGES
-+++ b/CHANGES
-@@ -50,8 +50,6 @@ Incompatible changes
- * #7784: i18n: The msgid for alt text of image is changed
- * #5560: napoleon: :confval:`napoleon_use_param` also affect "other 
parameters"
-   section
--* #7996: manpage: Make a section directory on build manpage by default (see
--  :confval:`man_make_section_directory`)
- * #7849: html: Change the default setting of
-   :confval:`html_codeblock_linenos_style` to ``'inline'``
- * #8380: html search: search results are wrapped with  instead of
-diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst
-index 7b7a0a1d4..3bc402c9a 100644
 a/doc/usage/configuration.rst
-+++ b/doc/usage/configuration.rst
-@@ -2332,12 +2332,10 @@ These options influence manual page output.
- 
- .. confval:: man_make_section_directory
- 
--   If true, make a section directory on build man page.  Default is True.
-+   If true, make a section directory on build man page.  Default is False.
- 
-.. versionadded:: 3.3
--   .. versionchanged:: 4.0
- 
--  The default is changed to ``False`` from ``True``.
- 
- .. _texinfo-options:
- 
-diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py
-index b993a2df4..532d2b8fe 100644
 a/sphinx/builders/manpage.py
-+++ b/sphinx/builders/manpage.py
-@@ -118,7 +118,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
- 
- app.add_config_value('man_pages', default_man_pages, None)
- app.add_config_value('man_show_urls', False, None)
--app.add_config_value('man_make_section_directory', True, None)
-+app.add_config_value('man_make_section_directory', False, None)
- 
- return {
- 'version': 'builtin',
-diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py
-index 2affb8ba3..a017abc69 100644
 a/tests/test_build_manpage.py
-+++ b/tests/test_build_manpage.py
-@@ -17,9 +17,9 @@ from sphinx.config import Config
- @pytest.mark.sphinx('man')
- def test_all(app, status, warning):
- app.builder.build_all()
--assert (app.outdir / '1' / 'sphinxtests.1').exists()
-+assert (app.outdir / 'sphinxtests.1').exists()
- 
--content = (app.outdir / '1' / 'sphinxtests.1').read_text()
-+content = (app.outdir / 'sphinxtests.1').read_text()
- assert r'\fBprint \fP\fIi\fP\fB\en\fP' in content
- assert r'\fBmanpage\en\fP' in content
- 
-@@ -31,16 +31,16 @@ def test_all(app, status, warning):
- 
- 
- @pytest.mark.sphinx('man', testroot='basic',
--confoverrides={'man_make_section_directory': False})
-+confoverrides={'man_make_section_directory': True})
- def test_man_make_section_directory(app, status, warning):
- app.build()
--assert (app.outdir / 'python.1').exists()
-+assert (app.outdir / '1' / 'python.1').exists()
- 
- 
- @pytest.mark.sphinx('man', testroot='directive-code')
- def test_captioned_code_block(app, status, warning):
- app.builder.build_all()
--content = 

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

2021-09-12 Thread Daniel M. Capella via arch-commits
Date: Monday, September 13, 2021 @ 04:17:01
  Author: polyzen
Revision: 1014646

upgpkg: python-sphinx 4.2.0-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 04:03:41 UTC (rev 1014645)
+++ PKGBUILD2021-09-13 04:17:01 UTC (rev 1014646)
@@ -5,7 +5,7 @@
 # Contributor: Fabio Volpe 
 
 pkgname=python-sphinx
-pkgver=4.1.2
+pkgver=4.2.0
 pkgrel=1
 pkgdesc='Python documentation generator'
 arch=('any')
@@ -29,9 +29,9 @@
 optdepends=('imagemagick: for ext.imgconverter'
 'texlive-latexextra: for generation of PDF documentation')
 
source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
-sha256sums=('3092d929cd807926d846018f2ace47ba2f3b671b309c7a89cd3306e80c826b13'
+sha256sums=('94078db9184491e15bce0a56d9186e0aec95f16ac20b12d00e06d4e36f1058a6'
 'SKIP')
-b2sums=('a78df4302520898c8708a75129baf28dd2dcde2dcbb4147d8246a2dd7907ae2af2ed8cf1d259ff1065dbe987fd918a7153831a9f5c16e79834c41f86b6031e41'
+b2sums=('a3cc73c215be6859f285b92d651f2fe60f731340e7c003d3b275247593d1e641a25618817f67e7f3d8767724d6e98a6d63493bea340c7171e4e3da384da776e2'
 'SKIP')
 validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA 

   'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa 



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

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 04:03:41
  Author: grawlinson
Revision: 1014645

archrelease: copy trunk to community-x86_64

Added:
  bottom/repos/community-x86_64/PKGBUILD
(from rev 1014644, bottom/trunk/PKGBUILD)
Deleted:
  bottom/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 04:02:51 UTC (rev 1014644)
+++ PKGBUILD2021-09-13 04:03:41 UTC (rev 1014645)
@@ -1,50 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Clement Tsang (xoronth) 
-
-pkgname=bottom
-pkgver=0.6.3
-pkgrel=2
-pkgdesc="A graphical process/system monitor"
-arch=('x86_64')
-url="https://github.com/ClementTsang/bottom;
-license=('MIT')
-makedepends=('cargo')
-optdepends=(
-  "bash-completion: for shell auto-completion"
-  "fish: for shell auto-completion"
-  "zsh-completions: for shell auto-completion"
-)
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('2f71722f1b8c100a82d7e684cbc001d493bafaa94319fac564551e34085a9c68c3d34b77147dddcb904013d9c823b1abc21826f828c090117babb47bd2054f37')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked --no-default-features
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  CARGO_HUSKY_DONT_INSTALL_HOOKS=true cargo test --release --locked 
--no-default-features
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" target/release/btm
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
-  cp -vr docs sample_configs "$pkgdir/usr/share/doc/$pkgname"
-
-  # completions
-  local target_dir=$(ls target/release/build/bottom-*/out/btm.bash | head -n1 
| xargs dirname)
-  install -Dm644 "$target_dir"/_btm "$pkgdir/usr/share/zsh/site-functions/_btm"
-  install -Dm644 "$target_dir"/btm.bash 
"$pkgdir/usr/share/bash-completion/completions/btm"
-  install -Dm644 "$target_dir"/btm.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/btm.fish"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bottom/repos/community-x86_64/PKGBUILD (from rev 1014644, 
bottom/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 04:03:41 UTC (rev 1014645)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Caleb Maclennan 
+# Contributor: Clement Tsang (xoronth) 
+
+pkgname=bottom
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="A graphical process/system monitor"
+arch=('x86_64')
+url="https://github.com/ClementTsang/bottom;
+license=('MIT')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('99162a0c28b1c45732acd02a95ccb9e0b21593d3889c707778ca26cd51eca6ec4725d26aa4e9a851403d75164560f475ae5cd34477ce85c5ce740868792479ed')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  CARGO_HUSKY_DONT_INSTALL_HOOKS=true cargo test --frozen --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/btm
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+  cp -vr docs sample_configs "$pkgdir/usr/share/doc/$pkgname"
+
+  # completions
+  local target_dir=$(ls target/release/build/bottom-*/out/btm.bash | head -n1 
| xargs dirname)
+  install -Dm644 "$target_dir"/_btm "$pkgdir/usr/share/zsh/site-functions/_btm"
+  install -Dm644 "$target_dir"/btm.bash 
"$pkgdir/usr/share/bash-completion/completions/btm"
+  install -Dm644 "$target_dir"/btm.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/btm.fish"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 04:02:51
  Author: grawlinson
Revision: 1014644

upgpkg: bottom 0.6.4-1

Ensure all tests pass.

Modified:
  bottom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 04:00:17 UTC (rev 1014643)
+++ PKGBUILD2021-09-13 04:02:51 UTC (rev 1014644)
@@ -20,12 +20,12 @@
 
 build() {
   cd "$pkgname-$pkgver"
-  cargo build --frozen --release --no-default-features
+  cargo build --frozen --release --all-features
 }
 
 check() {
   cd "$pkgname-$pkgver"
-  CARGO_HUSKY_DONT_INSTALL_HOOKS=true cargo test --frozen --no-default-features
+  CARGO_HUSKY_DONT_INSTALL_HOOKS=true cargo test --frozen --all-features
 }
 
 package() {



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

2021-09-12 Thread Daniel M. Capella via arch-commits
Date: Monday, September 13, 2021 @ 04:00:17
  Author: polyzen
Revision: 1014643

archrelease: copy trunk to community-any

Added:
  python-setuptools-scm/repos/community-any/PKGBUILD
(from rev 1014642, python-setuptools-scm/trunk/PKGBUILD)
Deleted:
  python-setuptools-scm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:59:55 UTC (rev 1014642)
+++ PKGBUILD2021-09-13 04:00:17 UTC (rev 1014643)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Daniel M. Capella 
-# Contributor: Hugo Osvaldo Barrera 
-
-_name=setuptools_scm
-pkgname=python-setuptools-scm
-pkgver=6.3.1
-pkgrel=1
-pkgdesc="Handles managing your python package versions in scm metadata"
-arch=('any')
-url="https://github.com/pypa/setuptools_scm;
-license=('MIT')
-depends=('python-packaging' 'python-setuptools' 'python-tomli')
-checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
-  'python-virtualenv')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('0f6a263912b13798c028b9a271d91af3bde0e42784091c797deccc3ad3a7f596')
-b2sums=('e447eacc91ed293c0dbc652b6fe6eebf8962812ea06fb80dcf0da641818a84482f180ea1c2a325a26428d01b53e73ffcc076c3c04411191589e5c7fc4bcdc651')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-  python setup.py egg_info
-}
-
-check() {
-  cd $_name-$pkgver
-  mkdir -p temp
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --root=temp --optimize=1 --skip-build
-  PYTHONPATH="$PWD/temp/$site_packages" pytest
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root "$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}

Copied: python-setuptools-scm/repos/community-any/PKGBUILD (from rev 1014642, 
python-setuptools-scm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 04:00:17 UTC (rev 1014643)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daniel M. Capella 
+# Contributor: Hugo Osvaldo Barrera 
+
+_name=setuptools_scm
+pkgname=python-setuptools-scm
+pkgver=6.3.2
+pkgrel=1
+pkgdesc="Handles managing your python package versions in scm metadata"
+arch=('any')
+url="https://github.com/pypa/setuptools_scm;
+license=('MIT')
+depends=('python-packaging' 'python-setuptools' 'python-tomli')
+checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
+  'python-virtualenv')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('a49aa8081eeb3514eb9728fa5040f2eaa962d6c6f4ec9c32f6c1fba88f88a0f2')
+b2sums=('4291f3810dc5ea111a6bad1bf37c8704a7eb6cdd112ea476d629d6175c43cc7d8f78d450181c0e588a5f3fc0fc092fedb41fcb6e198a42f730f9fc6b8d96e343')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+  python setup.py egg_info
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --root=temp --optimize=1 --skip-build
+  PYTHONPATH="$PWD/temp/$site_packages" pytest
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}



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

2021-09-12 Thread Daniel M. Capella via arch-commits
Date: Monday, September 13, 2021 @ 03:59:55
  Author: polyzen
Revision: 1014642

upgpkg: python-setuptools-scm 6.3.2-1

Modified:
  python-setuptools-scm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:46:15 UTC (rev 1014641)
+++ PKGBUILD2021-09-13 03:59:55 UTC (rev 1014642)
@@ -4,7 +4,7 @@
 
 _name=setuptools_scm
 pkgname=python-setuptools-scm
-pkgver=6.3.1
+pkgver=6.3.2
 pkgrel=1
 pkgdesc="Handles managing your python package versions in scm metadata"
 arch=('any')
@@ -14,8 +14,8 @@
 checkdepends=('git' 'mercurial' 'python-pip' 'python-pytest'
   'python-virtualenv')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('0f6a263912b13798c028b9a271d91af3bde0e42784091c797deccc3ad3a7f596')
-b2sums=('e447eacc91ed293c0dbc652b6fe6eebf8962812ea06fb80dcf0da641818a84482f180ea1c2a325a26428d01b53e73ffcc076c3c04411191589e5c7fc4bcdc651')
+sha256sums=('a49aa8081eeb3514eb9728fa5040f2eaa962d6c6f4ec9c32f6c1fba88f88a0f2')
+b2sums=('4291f3810dc5ea111a6bad1bf37c8704a7eb6cdd112ea476d629d6175c43cc7d8f78d450181c0e588a5f3fc0fc092fedb41fcb6e198a42f730f9fc6b8d96e343')
 
 build() {
   cd $_name-$pkgver



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

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 03:46:15
  Author: grawlinson
Revision: 1014641

upgpkg: bottom 0.6.4-1

Forgot the checksums.

Modified:
  bottom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:45:17 UTC (rev 1014640)
+++ PKGBUILD2021-09-13 03:46:15 UTC (rev 1014641)
@@ -11,7 +11,7 @@
 license=('MIT')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('2f71722f1b8c100a82d7e684cbc001d493bafaa94319fac564551e34085a9c68c3d34b77147dddcb904013d9c823b1abc21826f828c090117babb47bd2054f37')
+b2sums=('99162a0c28b1c45732acd02a95ccb9e0b21593d3889c707778ca26cd51eca6ec4725d26aa4e9a851403d75164560f475ae5cd34477ce85c5ce740868792479ed')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 03:45:17
  Author: grawlinson
Revision: 1014640

upgpkg: bottom 0.6.4-1

* New upstream release.
* Delete unnecessary optdepends.

Modified:
  bottom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:42:48 UTC (rev 1014639)
+++ PKGBUILD2021-09-13 03:45:17 UTC (rev 1014640)
@@ -3,18 +3,13 @@
 # Contributor: Clement Tsang (xoronth) 
 
 pkgname=bottom
-pkgver=0.6.3
-pkgrel=3
+pkgver=0.6.4
+pkgrel=1
 pkgdesc="A graphical process/system monitor"
 arch=('x86_64')
 url="https://github.com/ClementTsang/bottom;
 license=('MIT')
 makedepends=('rust')
-optdepends=(
-  "bash-completion: for shell auto-completion"
-  "fish: for shell auto-completion"
-  "zsh-completions: for shell auto-completion"
-)
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
 
b2sums=('2f71722f1b8c100a82d7e684cbc001d493bafaa94319fac564551e34085a9c68c3d34b77147dddcb904013d9c823b1abc21826f828c090117babb47bd2054f37')
 



[arch-commits] Commit in dovecot-fts-xapian/repos/community-x86_64 (4 files)

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 03:42:48
  Author: grawlinson
Revision: 1014639

archrelease: copy trunk to community-x86_64

Added:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
(from rev 1014638, dovecot-fts-xapian/trunk/PKGBUILD)
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install
(from rev 1014638, dovecot-fts-xapian/trunk/dovecot-fts-xapian.install)
Deleted:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install

+
 PKGBUILD   |  102 +--
 dovecot-fts-xapian.install |   24 +-
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:39:58 UTC (rev 1014638)
+++ PKGBUILD2021-09-13 03:42:48 UTC (rev 1014639)
@@ -1,51 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Thore Bödecker 
-
-# This must be built against the version of dovecot being used,
-# otherwise it will fail to load and thus work.
-# Specify the version of dovecot to be used here:
-_dcpkgver=2.3.16
-# Make sure to bump pkgrel if changing this.
-
-pkgname=dovecot-fts-xapian
-_pkgname="${pkgname#dovecot-}"
-pkgver=1.4.12
-pkgrel=2
-pkgdesc="Dovecot FTS plugin based on Xapian"
-arch=('x86_64')
-url="https://github.com/grosjo/fts-xapian;
-license=('LGPL2.1')
-depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('c4ff7ec9ba6ec6b8dc07701a5dccc05b4aeb284f3944dc15236658d88d4a7b416b92e880fcbfd8a0b95ff17788d01393d7aa04e8d93ac73cf2eadc4556dafeda')
-
-build() {
-  cd "$_pkgname-$pkgver"
-  autoreconf -vi
-  ./configure \
---prefix=/usr \
---with-dovecot=/usr/lib/dovecot
-
-  make
-
-  # generate systemd unit files
-  mkdir build
-  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in 
\
-> build/dovecot-fts-optimize.service
-  sed "s:@@index_frequency@@:daily:" 
contrib/systemd/dovecot-fts-optimize.timer.in \
-> build/dovecot-fts-optimize.timer
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # systemd integration
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
-build/dovecot-fts-optimize.{service,timer}
-}

Copied: dovecot-fts-xapian/repos/community-x86_64/PKGBUILD (from rev 1014638, 
dovecot-fts-xapian/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 03:42:48 UTC (rev 1014639)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Thore Bödecker 
+
+# This must be built against the version of dovecot being used,
+# otherwise it will fail to load and thus work.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.16
+# Make sure to bump pkgrel if changing this.
+
+pkgname=dovecot-fts-xapian
+_pkgname="${pkgname#dovecot-}"
+pkgver=1.4.13
+pkgrel=1
+pkgdesc="Dovecot FTS plugin based on Xapian"
+arch=('x86_64')
+url="https://github.com/grosjo/fts-xapian;
+license=('LGPL2.1')
+depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('37c6ba70a7f41206169b515602b5f22f8ae02a1bb7b3b24019604d31e60688d33dbd5244c183f0e6ddafc05e7891fa039ce1c57790dd0e0fc4d03a670703f8ac')
+
+build() {
+  cd "$_pkgname-$pkgver"
+  autoreconf -vi
+  ./configure \
+--prefix=/usr \
+--with-dovecot=/usr/lib/dovecot
+
+  make
+
+  # generate systemd unit files
+  mkdir build
+  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in 
\
+> build/dovecot-fts-optimize.service
+  sed "s:@@index_frequency@@:daily:" 
contrib/systemd/dovecot-fts-optimize.timer.in \
+> build/dovecot-fts-optimize.timer
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # systemd integration
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
+build/dovecot-fts-optimize.{service,timer}
+}

Deleted: dovecot-fts-xapian.install
===
--- dovecot-fts-xapian.install  2021-09-13 03:39:58 UTC (rev 1014638)
+++ dovecot-fts-xapian.install  2021-09-13 03:42:48 UTC (rev 1014639)
@@ -1,12 +0,0 @@
-post_install() {
-   cat <<-EOF
-
-   Documentation is included in /usr/share/doc/dovecot-fts-xapian
-
-   For more documentation, see:
- * https://github.com/grosjo/fts-xapian
- * https://doc.dovecot.org/configuration_manual/fts
- * https://doc.dovecot.org/settings/plugin/fts-plugin
-
-   EOF
-}

Copied: 

[arch-commits] Commit in dovecot-fts-xapian/trunk (PKGBUILD)

2021-09-12 Thread George Rawlinson via arch-commits
Date: Monday, September 13, 2021 @ 03:39:58
  Author: grawlinson
Revision: 1014638

upgpkg: dovecot-fts-xapian 1.4.13-1

New upstream release.

Modified:
  dovecot-fts-xapian/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:36:10 UTC (rev 1014637)
+++ PKGBUILD2021-09-13 03:39:58 UTC (rev 1014638)
@@ -9,8 +9,8 @@
 
 pkgname=dovecot-fts-xapian
 _pkgname="${pkgname#dovecot-}"
-pkgver=1.4.12
-pkgrel=2
+pkgver=1.4.13
+pkgrel=1
 pkgdesc="Dovecot FTS plugin based on Xapian"
 arch=('x86_64')
 url="https://github.com/grosjo/fts-xapian;
@@ -18,7 +18,7 @@
 depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
 install="$pkgname.install"
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('c4ff7ec9ba6ec6b8dc07701a5dccc05b4aeb284f3944dc15236658d88d4a7b416b92e880fcbfd8a0b95ff17788d01393d7aa04e8d93ac73cf2eadc4556dafeda')
+b2sums=('37c6ba70a7f41206169b515602b5f22f8ae02a1bb7b3b24019604d31e60688d33dbd5244c183f0e6ddafc05e7891fa039ce1c57790dd0e0fc4d03a670703f8ac')
 
 build() {
   cd "$_pkgname-$pkgver"



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:36:10
  Author: svenstaro
Revision: 1014637

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  125 ++---
 ogre.install |6 +-
 2 files changed, 62 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:35:59 UTC (rev 1014636)
+++ PKGBUILD2021-09-13 03:36:10 UTC (rev 1014637)
@@ -1,66 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=ogre
-pkgver=13.0.0
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
- 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
-install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
-optdepends=('python: python bindings')
-sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
-
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
-
-prepare() {
-  cd ogre-${pkgver}
-  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
-}
-
-build() {
-  cd ogre-${pkgver}
-
-  cmake \
--Bbuild \
--GNinja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_CONFIG_ENABLE_JSON=ON \
--DOGRE_CONFIG_THREADS=1 \
--DOGRE_CONFIG_THREAD_PROVIDER="std" \
--DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
--DOGRE_BUILD_COMPONENT_TERRAIN=ON \
--DOGRE_BUILD_COMPONENT_VOLUME=ON \
--DOGRE_BUILD_COMPONENT_PAGING=ON \
--DOGRE_BUILD_COMPONENT_PROPERTY=ON \
--DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
--DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
--DOGRE_USE_BOOST=ON \
--DOGRE_BUILD_TESTS=ON \
--DOGRE_INSTALL_SAMPLES_SOURCE=ON
-
-  ninja -C build
-  ninja -C build OgreDoc
-}
-
-check() {
-  cd ogre-${pkgver}
-
-  ninja -C build test
-}
-
-package() {
-  cd ogre-${pkgver}
-
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  mkdir -p "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
-  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 1014636, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 03:36:10 UTC (rev 1014637)
@@ -0,0 +1,59 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ogre
+pkgver=13.0.1
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'rapidjson'
+ 'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
+install=ogre.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+optdepends=('python: python bindings')
+sha512sums=('72d8621ab9a9f9ae8561237fdeb23c9887984f2aed1ee72e62199fa7f26c259c75bca88c7f0f3472c0715b6e8295b7d76a96d434100413f7ece6f2db218f6278')
+
+build() {
+  cd ogre-${pkgver}
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_CONFIG_ENABLE_JSON=ON \
+-DOGRE_CONFIG_THREADS=1 \
+-DOGRE_CONFIG_THREAD_PROVIDER="std" \
+-DOGRE_BUILD_COMPONENT_PLANAR_REFLECTIONS=ON \
+-DOGRE_BUILD_COMPONENT_TERRAIN=ON \
+-DOGRE_BUILD_COMPONENT_VOLUME=ON \
+-DOGRE_BUILD_COMPONENT_PAGING=ON \
+-DOGRE_BUILD_COMPONENT_PROPERTY=ON \
+-DOGRE_BUILD_COMPONENT_RTSHADERSYSTEM=ON \
+-DOGRE_BUILD_COMPONENT_SCENE_FORMAT=ON \
+-DOGRE_USE_BOOST=ON \
+-DOGRE_BUILD_TESTS=ON \
+-DOGRE_INSTALL_SAMPLES_SOURCE=ON
+
+  ninja -C build
+  ninja -C build OgreDoc
+}
+
+check() {
+  cd ogre-${pkgver}
+
+  ninja -C build test
+}
+
+package() {
+  cd ogre-${pkgver}
+
+  DESTDIR="${pkgdir}" ninja -C build install
+
+  mkdir -p "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
+  mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
+  install -Dm644 LICENSE 

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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:35:59
  Author: svenstaro
Revision: 1014636

upgpkg: ogre 13.0.1-1

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:30:59 UTC (rev 1014635)
+++ PKGBUILD2021-09-13 03:35:59 UTC (rev 1014636)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=ogre
-pkgver=13.0.0
-pkgrel=2
+pkgver=13.0.1
+pkgrel=1
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
 url='http://www.ogre3d.org'
@@ -10,17 +10,10 @@
  'zziplib' 'sdl2' 'glu' 'tinyxml' 'zlib')
 makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 
'cppunit')
 install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;
-
https://github.com/OGRECave/ogre/commit/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
 optdepends=('python: python bindings')
-sha512sums=('b137322251b6d4798b3b2bef8f2a1e81bbe7839fd085425f66ce55dea52f93562dab8ed32ea9f19a431c65783a00a202acea75c1ef207d30d0101ae05166c605'
-
'8b0b3edd71a9322ef62fa34b5d1362e3a5fa58dd2db4233ae26b299d2ddad2b872d59ba0f900fb8f43f757260988826b7ea9eb04f4fd50f603272e6aa89a768b')
+sha512sums=('72d8621ab9a9f9ae8561237fdeb23c9887984f2aed1ee72e62199fa7f26c259c75bca88c7f0f3472c0715b6e8295b7d76a96d434100413f7ece6f2db218f6278')
 
-prepare() {
-  cd ogre-${pkgver}
-  patch -Np1 -i "${srcdir}"/74c5ce3da1054b88a19f8e9f79d4492ec271ea1f.patch
-}
-
 build() {
   cd ogre-${pkgver}
 



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:30:59
  Author: svenstaro
Revision: 1014635

archrelease: copy trunk to community-x86_64

Added:
  sqlx-cli/repos/community-x86_64/PKGBUILD
(from rev 1014634, sqlx-cli/trunk/PKGBUILD)
Deleted:
  sqlx-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:30:49 UTC (rev 1014634)
+++ PKGBUILD2021-09-13 03:30:59 UTC (rev 1014635)
@@ -1,33 +0,0 @@
-# -*- mode: Shell-script; eval: (setq indent-tabs-mode 't); eval: (setq 
tab-width 4) -*-
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Dominic Meiser [git at msrd0 dot de]
-
-pkgname=sqlx-cli
-pkgver=0.5.5
-pkgrel=2
-pkgdesc='Command-line utility for SQLx, the Rust SQL toolkit'
-license=('Apache' 'MIT')
-arch=('x86_64')
-url="https://github.com/launchbadge/sqlx;
-depends=('gcc-libs' 'openssl')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/launchbadge/sqlx/archive/refs/tags/v${pkgver}.tar.gz;)
-sha512sums=('1e480bd05bfe41cbf88995f122b150c98c86306b9359a9bb88ad2a8848b2b7d2d84f161525cb46a94f6ffc3a721042531f482430aae88e1b3ed1c8c698eb1613')
-
-build() {
-cd "sqlx-$pkgver/sqlx-cli"
-cargo build --locked --release
-}
-
-check() {
-cd "sqlx-$pkgver/sqlx-cli"
-cargo test --locked
-}
-
-package() {
-cd "sqlx-$pkgver"
-install -Dm755 "target/release/cargo-sqlx" "$pkgdir/usr/bin/cargo-sqlx"
-install -Dm755 "target/release/sqlx" "$pkgdir/usr/bin/sqlx"
-install -Dm644 LICENSE-APACHE 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-install -Dm644 LICENSE-MIT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-}

Copied: sqlx-cli/repos/community-x86_64/PKGBUILD (from rev 1014634, 
sqlx-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 03:30:59 UTC (rev 1014635)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dominic Meiser [git at msrd0 dot de]
+
+pkgname=sqlx-cli
+pkgver=0.5.7
+pkgrel=1
+pkgdesc='Command-line utility for SQLx, the Rust SQL toolkit'
+license=('Apache' 'MIT')
+arch=('x86_64')
+url="https://github.com/launchbadge/sqlx;
+depends=('gcc-libs' 'openssl')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/launchbadge/sqlx/archive/refs/tags/v${pkgver}.tar.gz;)
+sha512sums=('98f255a92a9031de2b41788d65e5673eedbc06e99b8f7afb4565e073c351c37c65ad0a15f4983210ada5637cd486b27d9c365545137d918bf8831673720ee93f')
+
+build() {
+cd "sqlx-$pkgver/sqlx-cli"
+cargo build --locked --release
+}
+
+check() {
+cd "sqlx-$pkgver/sqlx-cli"
+cargo test --locked
+}
+
+package() {
+cd "sqlx-$pkgver"
+install -Dm755 "target/release/cargo-sqlx" "$pkgdir/usr/bin/cargo-sqlx"
+install -Dm755 "target/release/sqlx" "$pkgdir/usr/bin/sqlx"
+install -Dm644 LICENSE-APACHE 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+install -Dm644 LICENSE-MIT 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+}



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:30:49
  Author: svenstaro
Revision: 1014634

upgpkg: sqlx-cli 0.5.7-1

Modified:
  sqlx-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 03:26:55 UTC (rev 1014633)
+++ PKGBUILD2021-09-13 03:30:49 UTC (rev 1014634)
@@ -2,8 +2,8 @@
 # Contributor: Dominic Meiser [git at msrd0 dot de]
 
 pkgname=sqlx-cli
-pkgver=0.5.5
-pkgrel=2
+pkgver=0.5.7
+pkgrel=1
 pkgdesc='Command-line utility for SQLx, the Rust SQL toolkit'
 license=('Apache' 'MIT')
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'openssl')
 makedepends=('rust')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/launchbadge/sqlx/archive/refs/tags/v${pkgver}.tar.gz;)
-sha512sums=('1e480bd05bfe41cbf88995f122b150c98c86306b9359a9bb88ad2a8848b2b7d2d84f161525cb46a94f6ffc3a721042531f482430aae88e1b3ed1c8c698eb1613')
+sha512sums=('98f255a92a9031de2b41788d65e5673eedbc06e99b8f7afb4565e073c351c37c65ad0a15f4983210ada5637cd486b27d9c365545137d918bf8831673720ee93f')
 
 build() {
 cd "sqlx-$pkgver/sqlx-cli"



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:26:55
  Author: svenstaro
Revision: 1014633

archrelease: copy trunk to community-any

Added:
  acme-tiny/repos/community-any/PKGBUILD
(from rev 1014632, acme-tiny/trunk/PKGBUILD)
Deleted:
  acme-tiny/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:26:45 UTC (rev 1014632)
+++ PKGBUILD2021-09-13 03:26:55 UTC (rev 1014633)
@@ -1,20 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Tom Hacohen 
-pkgname=acme-tiny
-pkgver=4.1.0
-pkgrel=2
-pkgdesc="A tiny script to issue and renew TLS certs from Let's Encrypt"
-url="https://github.com/diafygi/acme-tiny;
-depends=('python' 'openssl')
-license=('MIT')
-arch=('any')
-source=(https://github.com/diafygi/acme-tiny/archive/${pkgver}.tar.gz)
-sha256sums=('135e2f64083063f9ec9eaf5884e12f77f753489b9ae7d1189c24228cbf3a337b')
-
-package() {
-cd "$srcdir"/acme-tiny-${pkgver}
-
-install -Dm 755 acme_tiny.py "$pkgdir/usr/bin/acme-tiny"
-install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: acme-tiny/repos/community-any/PKGBUILD (from rev 1014632, 
acme-tiny/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 03:26:55 UTC (rev 1014633)
@@ -0,0 +1,20 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Tom Hacohen 
+pkgname=acme-tiny
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="A tiny script to issue and renew TLS certs from Let's Encrypt"
+url="https://github.com/diafygi/acme-tiny;
+depends=('python' 'openssl')
+license=('MIT')
+arch=('any')
+source=($pkgname-$pkgver.tar.gz::https://github.com/diafygi/acme-tiny/archive/${pkgver}.tar.gz)
+sha256sums=('8205736d0de258283e337f6fbc35892cb54fac19e10b770f4dc8b0941b1a08a5')
+
+package() {
+cd "$srcdir"/acme-tiny-${pkgver}
+
+install -Dm 755 acme_tiny.py "$pkgdir/usr/bin/acme-tiny"
+install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:26:45
  Author: svenstaro
Revision: 1014632

upgpkg: acme-tiny 5.0.1-1

Modified:
  acme-tiny/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 00:58:22 UTC (rev 1014631)
+++ PKGBUILD2021-09-13 03:26:45 UTC (rev 1014632)
@@ -1,15 +1,15 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Tom Hacohen 
 pkgname=acme-tiny
-pkgver=4.1.0
-pkgrel=2
+pkgver=5.0.1
+pkgrel=1
 pkgdesc="A tiny script to issue and renew TLS certs from Let's Encrypt"
 url="https://github.com/diafygi/acme-tiny;
 depends=('python' 'openssl')
 license=('MIT')
 arch=('any')
-source=(https://github.com/diafygi/acme-tiny/archive/${pkgver}.tar.gz)
-sha256sums=('135e2f64083063f9ec9eaf5884e12f77f753489b9ae7d1189c24228cbf3a337b')
+source=($pkgname-$pkgver.tar.gz::https://github.com/diafygi/acme-tiny/archive/${pkgver}.tar.gz)
+sha256sums=('8205736d0de258283e337f6fbc35892cb54fac19e10b770f4dc8b0941b1a08a5')
 
 package() {
 cd "$srcdir"/acme-tiny-${pkgver}



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:22:54
  Author: svenstaro
Revision: 423983

archrelease: copy trunk to extra-x86_64

Added:
  sdl2_mixer/repos/extra-x86_64/PKGBUILD
(from rev 423982, sdl2_mixer/trunk/PKGBUILD)
Deleted:
  sdl2_mixer/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 03:22:41 UTC (rev 423982)
+++ PKGBUILD2021-09-13 03:22:54 UTC (rev 423983)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=sdl2_mixer
-pkgver=2.0.4
-pkgrel=6
-pkgdesc="A simple multi-channel audio mixer (Version 2)"
-arch=('x86_64')
-url="http://www.libsdl.org/projects/SDL_mixer;
-license=('MIT')
-depends=('sdl2' 'libvorbis' 'libmodplug' 'mpg123' 'flac' 'opusfile')
-makedepends=('fluidsynth')
-optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
-source=("https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-${pkgver}.tar.gz;
-
fix-fluidsynth-2.1.6.patch::https://hg.libsdl.org/SDL_mixer/raw-rev/b0afe341a91d)
-sha512sums=('98c56069640668aaececa63748de21fc8f243c7d06386c45c43d0ee472bbb2595ccda644d9886ce5b95c3a3dee3c0a96903cf9a89ddc18d38f041133470699a3'
-
'21e130a5116115f3cfa00ba6f3b0f2b816ed3abf071340d4b218a3e8dc79bb74b042faf15daa2f06c47f6bdc3737a2542708f070d0f48c53acd888e0436161fd')
-
-prepare() {
-  cd "${srcdir}/SDL2_mixer-${pkgver}/"
-
-  sed -i "s|/etc/timidity|/etc/timidity++|g" timidity/options.h
-  sed -i "s|/etc/timidity++.cfg|/etc/timidity++/timidity.cfg|g" 
timidity/options.h
-
-  patch -Np3 -i "${srcdir}/fix-fluidsynth-2.1.6.patch"
-}
-
-build() {
-  cd "${srcdir}/SDL2_mixer-${pkgver}/"
-
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/SDL2_mixer-${pkgver}/"
-
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: sdl2_mixer/repos/extra-x86_64/PKGBUILD (from rev 423982, 
sdl2_mixer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 03:22:54 UTC (rev 423983)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=sdl2_mixer
+pkgver=2.0.4
+pkgrel=7
+pkgdesc="A simple multi-channel audio mixer (Version 2)"
+arch=('x86_64')
+url="http://www.libsdl.org/projects/SDL_mixer;
+license=('MIT')
+depends=('sdl2' 'libvorbis' 'libmodplug' 'mpg123' 'flac' 'opusfile')
+makedepends=('fluidsynth')
+optdepends=('fluidsynth: MIDI software synth, replaces built-in timidity')
+source=("https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-${pkgver}.tar.gz;
+
fix-fluidsynth-2.1.6.patch::https://hg.libsdl.org/SDL_mixer/raw-rev/b0afe341a91d)
+sha512sums=('98c56069640668aaececa63748de21fc8f243c7d06386c45c43d0ee472bbb2595ccda644d9886ce5b95c3a3dee3c0a96903cf9a89ddc18d38f041133470699a3'
+
'21e130a5116115f3cfa00ba6f3b0f2b816ed3abf071340d4b218a3e8dc79bb74b042faf15daa2f06c47f6bdc3737a2542708f070d0f48c53acd888e0436161fd')
+
+prepare() {
+  cd "${srcdir}/SDL2_mixer-${pkgver}/"
+
+  sed -i "s|/etc/timidity|/etc/timidity++|g" timidity/options.h
+  sed -i "s|/etc/timidity++.cfg|/etc/timidity++/timidity.cfg|g" 
timidity/options.h
+
+  patch -Np3 -i "${srcdir}/fix-fluidsynth-2.1.6.patch"
+}
+
+build() {
+  cd "${srcdir}/SDL2_mixer-${pkgver}/"
+
+  ./configure --disable-static --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/SDL2_mixer-${pkgver}/"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2021-09-12 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 13, 2021 @ 03:22:41
  Author: svenstaro
Revision: 423982

upgpkg: sdl2_mixer 2.0.4-7

Modified:
  sdl2_mixer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 02:36:59 UTC (rev 423981)
+++ PKGBUILD2021-09-13 03:22:41 UTC (rev 423982)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=sdl2_mixer
 pkgver=2.0.4
-pkgrel=6
+pkgrel=7
 pkgdesc="A simple multi-channel audio mixer (Version 2)"
 arch=('x86_64')
 url="http://www.libsdl.org/projects/SDL_mixer;



[arch-commits] Commit in dkms/repos/extra-any (16 files)

2021-09-12 Thread Sébastien Luttringer via arch-commits
Date: Monday, September 13, 2021 @ 02:36:59
  Author: seblu
Revision: 423981

archrelease: copy trunk to extra-any

Added:
  
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
(from rev 423980, 
dkms/trunk/0001-Revert-Make-newly-installed-modules-available-immedi.patch)
  dkms/repos/extra-any/PKGBUILD
(from rev 423980, dkms/trunk/PKGBUILD)
  dkms/repos/extra-any/PKGBUILD.26
(from rev 423980, dkms/trunk/PKGBUILD.26)
  dkms/repos/extra-any/dkms.install
(from rev 423980, dkms/trunk/dkms.install)
  dkms/repos/extra-any/hook.install
(from rev 423980, dkms/trunk/hook.install)
  dkms/repos/extra-any/hook.remove
(from rev 423980, dkms/trunk/hook.remove)
  dkms/repos/extra-any/hook.sh
(from rev 423980, dkms/trunk/hook.sh)
  dkms/repos/extra-any/hook.upgrade
(from rev 423980, dkms/trunk/hook.upgrade)
Deleted:
  
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
  dkms/repos/extra-any/PKGBUILD
  dkms/repos/extra-any/PKGBUILD.26
  dkms/repos/extra-any/dkms.install
  dkms/repos/extra-any/hook.install
  dkms/repos/extra-any/hook.remove
  dkms/repos/extra-any/hook.sh
  dkms/repos/extra-any/hook.upgrade

-+
 0001-Revert-Make-newly-installed-modules-available-immedi.patch |   62 -
 PKGBUILD|  146 +-
 PKGBUILD.26 |  138 +-
 dkms.install|   26 
 hook.install|   28 
 hook.remove |   26 
 hook.sh |  502 
+-
 hook.upgrade|   26 
 8 files changed, 477 insertions(+), 477 deletions(-)

Deleted: 0001-Revert-Make-newly-installed-modules-available-immedi.patch
===
--- 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2021-09-13 02:36:51 UTC (rev 423980)
+++ 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2021-09-13 02:36:59 UTC (rev 423981)
@@ -1,31 +0,0 @@
-From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= 
-Date: Sat, 8 Jul 2017 15:50:55 +0200
-Subject: [PATCH] Revert "Make newly installed modules available immediately"
-To: dkms-de...@dell.com
-
-This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8.

- dkms | 6 --
- 1 file changed, 6 deletions(-)
-
-diff --git a/dkms b/dkms
-index a6cedc8..3ff71d5 100644
 a/dkms
-+++ b/dkms
-@@ -1522,12 +1522,6 @@ install_module()
- exit 6
- }
- 
--# Make the newly installed modules available immediately
--find /sys/devices -name modalias -print0 | xargs -0 cat | xargs modprobe 
-a -b -q
--if [ -f /lib/systemd/system/systemd-modules-load.service ]; then
--systemctl restart systemd-modules-load.service
--fi
--
- # Do remake_initrd things (save old initrd)
- [[ $remake_initrd ]] && ! make_initrd "$kernelver" "$arch" && {
- do_uninstall "$kernelver" "$arch"
--- 
-Sébastien "Seblu" Luttringer
-

Copied: 
dkms/repos/extra-any/0001-Revert-Make-newly-installed-modules-available-immedi.patch
 (from rev 423980, 
dkms/trunk/0001-Revert-Make-newly-installed-modules-available-immedi.patch)
===
--- 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
(rev 0)
+++ 0001-Revert-Make-newly-installed-modules-available-immedi.patch 
2021-09-13 02:36:59 UTC (rev 423981)
@@ -0,0 +1,31 @@
+From ca38ccd38c69a096dafa51c426ee3548980d5e2a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= 
+Date: Sat, 8 Jul 2017 15:50:55 +0200
+Subject: [PATCH] Revert "Make newly installed modules available immediately"
+To: dkms-de...@dell.com
+
+This reverts commit f5bfb12fef1fc06e56355cdba500eaa98d4e6aa8.
+---
+ dkms | 6 --
+ 1 file changed, 6 deletions(-)
+
+diff --git a/dkms b/dkms
+index a6cedc8..3ff71d5 100644
+--- a/dkms
 b/dkms
+@@ -1522,12 +1522,6 @@ install_module()
+ exit 6
+ }
+ 
+-# Make the newly installed modules available immediately
+-find /sys/devices -name modalias -print0 | xargs -0 cat | xargs modprobe 
-a -b -q
+-if [ -f /lib/systemd/system/systemd-modules-load.service ]; then
+-systemctl restart systemd-modules-load.service
+-fi
+-
+ # Do remake_initrd things (save old initrd)
+ [[ $remake_initrd ]] && ! make_initrd "$kernelver" "$arch" && {
+ do_uninstall "$kernelver" "$arch"
+-- 
+Sébastien "Seblu" Luttringer
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 02:36:51 UTC (rev 

[arch-commits] Commit in dkms/trunk (PKGBUILD hook.sh)

2021-09-12 Thread Sébastien Luttringer via arch-commits
Date: Monday, September 13, 2021 @ 02:36:51
  Author: seblu
Revision: 423980

upgpkg: dkms 2.8.6-2

- See FS#72046

Modified:
  dkms/trunk/PKGBUILD
  dkms/trunk/hook.sh

--+
 PKGBUILD |4 ++--
 hook.sh  |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 23:30:35 UTC (rev 423979)
+++ PKGBUILD2021-09-13 02:36:51 UTC (rev 423980)
@@ -3,7 +3,7 @@
 
 pkgname=dkms
 pkgver=2.8.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Dynamic Kernel Modules System'
 arch=('any')
 url='https://github.com/dell/dkms'
@@ -26,7 +26,7 @@
 '047e0e46967e98fbf3ff8860a80f259c28693d5989373d5a5395714495b59844'
 'ae5483980db914d52bff981ed83356c85679dd7e6e8f73bdd94265f065014c73'
 'd61d94532789928085a8494ba039c59244cfb3bfd47deaf21bcbe54a2243dc45'
-'6bc3931865afce6ee17a56099cf551ab2827db99b609de78e1bf9a1962e6ef56'
+'55209947f6266dc7f29b82f3d2635a6b92f6e175d59571dca4d2fd435dffab4a'
 '124b821b1b44ba365d915945825bcf32c1077655c3a98eb1644de56b6abfcd09')
 
 prepare() {

Modified: hook.sh
===
--- hook.sh 2021-09-12 23:30:35 UTC (rev 423979)
+++ hook.sh 2021-09-13 02:36:51 UTC (rev 423980)
@@ -36,7 +36,7 @@
   for mod in "${BUILD_DEPENDS[@]}"; do
 mapfile lines < <(dkms status -m "$mod" -k "$3")
 for line in "${lines[@]}"; do
-  [[ "$line" =~ "$mod, "[^,]+", $3, "[^:]+': installed' ]] && break 2
+  [[ "$line" =~ "$mod/"[^,]+", $3, "[^:]+': installed' ]] && break 2
 done
 exit 1
   done
@@ -145,7 +145,7 @@
   continue
 fi
 state=$(dkms status -m "$mod" -v "$mver" -k "$kver")
-if [[ "$state" =~ "$mod, $mver, $kver, "[^:]+": "(added|built|installed) 
]]; then
+if [[ "$state" =~ "$mod/$mver, $kver, "[^:]+": "(added|built|installed) 
]]; then
   dmods[$kver]=''
   run dkms remove --no-depmod -m "$mod" -v "$mver" -k "$kver"
   if (( $? == 0 )); then



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

2021-09-12 Thread Nicola Squartini via arch-commits
Date: Monday, September 13, 2021 @ 00:58:22
  Author: tensor5
Revision: 1014631

archrelease: copy trunk to community-any

Added:
  asar/repos/community-any/PKGBUILD
(from rev 1014630, asar/trunk/PKGBUILD)
Deleted:
  asar/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-13 00:57:52 UTC (rev 1014630)
+++ PKGBUILD2021-09-13 00:58:22 UTC (rev 1014631)
@@ -1,27 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=asar
-pkgver=3.0.3
-pkgrel=1
-pkgdesc='Creating Electron app packages'
-arch=('any')
-url='https://github.com/electron/asar'
-license=('MIT')
-depends=('nodejs')
-makedepends=('modclean' 'npm')
-options=(!emptydirs)
-
-package() {
-npm install -g --prefix="${srcdir}/usr" ${pkgname}@${pkgver}
-cp -r "${srcdir}/usr" "${pkgdir}"
-
-cd "${pkgdir}/usr/lib/node_modules/${pkgname}"
-install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-ln -s \
-$(realpath --relative-to="${pkgdir}"/usr/share/licenses/${pkgname} 
LICENSE.md) \
-"${pkgdir}/usr/share/licenses/${pkgname}"
-
-sed -e "s|${srcdir}|/|" -i package.json
-find node_modules -name 'package.json' -exec sed -e "s|${srcdir}||" -i {} 
\;
-modclean -r -a "*.ts,.bin,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
-}

Copied: asar/repos/community-any/PKGBUILD (from rev 1014630, 
asar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-13 00:58:22 UTC (rev 1014631)
@@ -0,0 +1,27 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=asar
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='Creating Electron app packages'
+arch=('any')
+url='https://github.com/electron/asar'
+license=('MIT')
+depends=('nodejs')
+makedepends=('modclean' 'npm')
+options=(!emptydirs)
+
+package() {
+npm install -g --prefix="${srcdir}/usr" ${pkgname}@${pkgver}
+cp -r "${srcdir}/usr" "${pkgdir}"
+
+cd "${pkgdir}/usr/lib/node_modules/${pkgname}"
+install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+ln -s \
+$(realpath --relative-to="${pkgdir}"/usr/share/licenses/${pkgname} 
LICENSE.md) \
+"${pkgdir}/usr/share/licenses/${pkgname}"
+
+sed -e "s|${srcdir}|/|" -i package.json
+find node_modules -name 'package.json' -exec sed -e "s|${srcdir}||" -i {} 
\;
+modclean -r -a "*.ts,.bin,.github,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
+}



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

2021-09-12 Thread Nicola Squartini via arch-commits
Date: Monday, September 13, 2021 @ 00:57:52
  Author: tensor5
Revision: 1014630

upgpkg: asar 3.1.0-1

Modified:
  asar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 00:05:12 UTC (rev 1014629)
+++ PKGBUILD2021-09-13 00:57:52 UTC (rev 1014630)
@@ -1,7 +1,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=asar
-pkgver=3.0.3
+pkgver=3.1.0
 pkgrel=1
 pkgdesc='Creating Electron app packages'
 arch=('any')
@@ -23,5 +23,5 @@
 
 sed -e "s|${srcdir}|/|" -i package.json
 find node_modules -name 'package.json' -exec sed -e "s|${srcdir}||" -i {} 
\;
-modclean -r -a "*.ts,.bin,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
+modclean -r -a "*.ts,.bin,.github,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
 }



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

2021-09-12 Thread Felix Yan via arch-commits
Date: Monday, September 13, 2021 @ 00:05:12
  Author: felixonmars
Revision: 1014629

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-bash/repos/community-staging-x86_64/
  dhall-bash/repos/community-staging-x86_64/PKGBUILD
(from rev 1014628, dhall-bash/trunk/PKGBUILD)

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

Copied: dhall-bash/repos/community-staging-x86_64/PKGBUILD (from rev 1014628, 
dhall-bash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-09-13 00:05:12 UTC (rev 1014629)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-bash
+pkgver=1.0.38
+pkgrel=8
+pkgdesc='Compile Dhall to Bash'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'dhall' 'haskell-neat-interpolation' 'haskell-shell-escape'
+ 'haskell-optparse-generic')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('8a18c7058c22a530d155fd630fe249f08adafa05d657e10ac9789762c9b1b5b2b29e176972042bf5eee9c18b4a2d2a7a6c90d896563fa60d48f611cf019d3610')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$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 $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}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-09-12 Thread Felix Yan via arch-commits
Date: Monday, September 13, 2021 @ 00:05:01
  Author: felixonmars
Revision: 1014628

upgpkg: dhall-bash 1.0.38-8: rebuild with optparse-generic 1.4.5

Modified:
  dhall-bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-13 00:02:48 UTC (rev 1014627)
+++ PKGBUILD2021-09-13 00:05:01 UTC (rev 1014628)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-bash
 pkgver=1.0.38
-pkgrel=7
+pkgrel=8
 pkgdesc='Compile Dhall to Bash'
 url='https://dhall-lang.org'
 license=('BSD')



[arch-commits] Commit in haskell-optparse-generic/repos (2 files)

2021-09-12 Thread Felix Yan via arch-commits
Date: Monday, September 13, 2021 @ 00:02:48
  Author: felixonmars
Revision: 1014627

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optparse-generic/repos/community-staging-x86_64/
  haskell-optparse-generic/repos/community-staging-x86_64/PKGBUILD
(from rev 1014626, haskell-optparse-generic/trunk/PKGBUILD)

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

Copied: haskell-optparse-generic/repos/community-staging-x86_64/PKGBUILD (from 
rev 1014626, haskell-optparse-generic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-09-13 00:02:48 UTC (rev 1014627)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=optparse-generic
+pkgname=haskell-optparse-generic
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="Auto-generate a command-line parser for your datatype"
+url="https://github.com/Gabriel439/Haskell-Optparse-Generic-Library;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-system-filepath' 'haskell-only' 
'haskell-optparse-applicative'
+ 'haskell-void')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('06f6477a91164b18fa6cc7859563bc17c886b5417d38d767b6c5e2cf9377a7e7bbbfdcaec21c628f95b99244ffd5ed3fb5c06ad921f6dae89a5bd780b9239d55')
+
+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"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-optparse-generic/trunk (PKGBUILD)

2021-09-12 Thread Felix Yan via arch-commits
Date: Monday, September 13, 2021 @ 00:02:41
  Author: felixonmars
Revision: 1014626

upgpkg: haskell-optparse-generic 1.4.5-1: rebuild with optparse-generic 1.4.5

Modified:
  haskell-optparse-generic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 23:54:14 UTC (rev 1014625)
+++ PKGBUILD2021-09-13 00:02:41 UTC (rev 1014626)
@@ -2,8 +2,8 @@
 
 _hkgname=optparse-generic
 pkgname=haskell-optparse-generic
-pkgver=1.4.4
-pkgrel=72
+pkgver=1.4.5
+pkgrel=1
 pkgdesc="Auto-generate a command-line parser for your datatype"
 url="https://github.com/Gabriel439/Haskell-Optparse-Generic-Library;
 license=('BSD')
@@ -12,7 +12,7 @@
  'haskell-void')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('63ab96690e42ed4aeb16103174a569320c39f6813c59ca2613137cf634922fced9790f6c15a1ebe5f6c7e3c2e5578565efdc6deaa445887bdd849b3cc7941243')
+sha512sums=('06f6477a91164b18fa6cc7859563bc17c886b5417d38d767b6c5e2cf9377a7e7bbbfdcaec21c628f95b99244ffd5ed3fb5c06ad921f6dae89a5bd780b9239d55')
 
 build() {
 cd $_hkgname-$pkgver



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

2021-09-12 Thread Felix Yan via arch-commits
Date: Sunday, September 12, 2021 @ 23:53:43
  Author: felixonmars
Revision: 1014623

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 1014622, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
1014622, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-09-12 23:53:43 UTC (rev 1014623)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.23.6
+pkgrel=131
+pkgdesc="hOpenPGP-based command-line tools"
+url="https://salsa.debian.org/clint/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base16-bytestring' 
'haskell-binary-conduit'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-errors'
+ 'haskell-fgl' 'haskell-graphviz' 'haskell-hopenpgp' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('73c83f939492c66b4ad5782e01acd0af97011a0ae797bce82d9431eb3e9c155ce1b4af1c4b3a5922f10e0e468c1c009cb270b8f15c7ba3236d9d8bf9e0265018')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}



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

2021-09-12 Thread Felix Yan via arch-commits
Date: Sunday, September 12, 2021 @ 23:53:36
  Author: felixonmars
Revision: 1014622

upgpkg: hopenpgp-tools 0.23.6-131: rebuild with 
prettyprinter-convert-ansi-wl-pprint 1.1.2

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 23:43:33 UTC (rev 1014621)
+++ PKGBUILD2021-09-12 23:53:36 UTC (rev 1014622)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.23.6
-pkgrel=130
+pkgrel=131
 pkgdesc="hOpenPGP-based command-line tools"
 url="https://salsa.debian.org/clint/hopenpgp-tools;
 license=("AGPL3")



[arch-commits] Commit in haskell-prettyprinter-convert-ansi-wl-pprint/repos (2 files)

2021-09-12 Thread Felix Yan via arch-commits
Date: Sunday, September 12, 2021 @ 23:43:33
  Author: felixonmars
Revision: 1014621

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/
  
haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD
(from rev 1014620, 
haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD)

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

Copied: 
haskell-prettyprinter-convert-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD
 (from rev 1014620, haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-09-12 23:43:33 UTC (rev 1014621)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=prettyprinter-convert-ansi-wl-pprint
+pkgname=haskell-prettyprinter-convert-ansi-wl-pprint
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Converter from ansi-wl-pprint documents to prettyprinter-based ones."
+url="https://github.com/quchen/prettyprinter;
+license=('custom:BSD2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-ansi-wl-pprint' 
'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal')
+makedepends=('ghc' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a90396034b440b3b18d37cbe785d00e757a69fec56cc7ea59a297b32c129b62fa54f80c707dd899dceed35c53c696ced15f11df83d89fb72fa974be8f023e050')
+
+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"
+install -D -m644 LICENSE.md 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}



[arch-commits] Commit in haskell-prettyprinter-convert-ansi-wl-pprint/trunk (PKGBUILD)

2021-09-12 Thread Felix Yan via arch-commits
Date: Sunday, September 12, 2021 @ 23:43:25
  Author: felixonmars
Revision: 1014620

upgpkg: haskell-prettyprinter-convert-ansi-wl-pprint 1.1.2-1: rebuild with 
prettyprinter-convert-ansi-wl-pprint 1.1.2

Modified:
  haskell-prettyprinter-convert-ansi-wl-pprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 23:05:04 UTC (rev 1014619)
+++ PKGBUILD2021-09-12 23:43:25 UTC (rev 1014620)
@@ -2,8 +2,8 @@
 
 _hkgname=prettyprinter-convert-ansi-wl-pprint
 pkgname=haskell-prettyprinter-convert-ansi-wl-pprint
-pkgver=1.1.1
-pkgrel=123
+pkgver=1.1.2
+pkgrel=1
 pkgdesc="Converter from ansi-wl-pprint documents to prettyprinter-based ones."
 url="https://github.com/quchen/prettyprinter;
 license=('custom:BSD2')
@@ -12,7 +12,7 @@
  'haskell-prettyprinter-ansi-terminal')
 makedepends=('ghc' 'haskell-doctest')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('12582ba31dc7401047a8e98c8059aee687c9b420825f6887567dbab1181602e97ad973f883592e3f035840e7abec61daa3718dba90a3cf8cac4f543674a31142')
+sha512sums=('a90396034b440b3b18d37cbe785d00e757a69fec56cc7ea59a297b32c129b62fa54f80c707dd899dceed35c53c696ced15f11df83d89fb72fa974be8f023e050')
 
 build() {
 cd $_hkgname-$pkgver



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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 23:05:04
  Author: shibumi
Revision: 1014619

archrelease: copy trunk to community-x86_64

Added:
  pulumi/repos/community-x86_64/PKGBUILD
(from rev 1014618, pulumi/trunk/PKGBUILD)
Deleted:
  pulumi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 23:04:57 UTC (rev 1014618)
+++ PKGBUILD2021-09-12 23:05:04 UTC (rev 1014619)
@@ -1,75 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Christoph Gysin 
-
-pkgname=pulumi
-pkgver=3.11.0
-pkgrel=1
-pkgdesc='Modern Infrastructure as Code'
-arch=('x86_64')
-url="https://github.com/$pkgname/$pkgname;
-license=('GPL')
-depends=('glibc')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('7b36e5e4329fd0196d3d40aeb5cec6b7f7d3edc25a97af98ba253273c587e182')
-b2sums=('ed58aa86609d15b55ae879d1f44596b8499707b34ef398faaf70f9ec8b8c6571615c92af0961e70d2b398b69071f08f1bc4029cb28b019a5b2c2bb16135da367')
-
-_plugins=(
-  "nodejs/cmd/pulumi-language-nodejs"
-  "python/cmd/pulumi-language-python"
-  "dotnet/cmd/pulumi-language-dotnet"
-  "go/pulumi-language-go"
-)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  # Build the `pulumi` executable
-  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
-  go build \
--ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
--o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
-"./cmd/${pkgname}" \
-
-  # Build the plugins
-  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
-  for plugin in "${_plugins[@]}"; do
-plugin_name=${plugin##*/}
-go build \
-  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
-  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
-  "./${plugin}"
-
-# Add possible executor
-if [ -f "${plugin}-exec" ]; then
-  cp "${plugin}-exec" "${srcdir}/${pkgname}-${pkgver}/bin/"
-fi
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Install all executables
-  for f in ./bin/*; do
-install -D -m 755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
-  done
-
-  # Generate Bash completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion bash) \
-"${pkgdir}/etc/bash_completion.d/${pkgname}"
-
-  # Generate ZSH completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion zsh) \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pulumi/repos/community-x86_64/PKGBUILD (from rev 1014618, 
pulumi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 23:05:04 UTC (rev 1014619)
@@ -0,0 +1,75 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Christoph Gysin 
+
+pkgname=pulumi
+pkgver=3.12.0
+pkgrel=1
+pkgdesc='Modern Infrastructure as Code'
+arch=('x86_64')
+url="https://github.com/$pkgname/$pkgname;
+license=('GPL')
+depends=('glibc')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('bbd7d5730946f370c413915b14389ca03b0b180222078400f5bb7cae1a85ea9f')
+b2sums=('11d3018b4c5b819048b6445199766909344da8bc80c2d6dbf93e77fcad6c305ab6a33ac4046700514a0541a8bb30924b6c8a1c3a7a12ec30cd9dc859c127de9c')
+
+_plugins=(
+  "nodejs/cmd/pulumi-language-nodejs"
+  "python/cmd/pulumi-language-python"
+  "dotnet/cmd/pulumi-language-dotnet"
+  "go/pulumi-language-go"
+)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  # Build the `pulumi` executable
+  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
+  go build \
+-ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+-o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
+"./cmd/${pkgname}" \
+
+  # Build the plugins
+  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
+  for plugin in "${_plugins[@]}"; do
+plugin_name=${plugin##*/}
+go build \
+  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
+  "./${plugin}"
+
+# Add possible executor
+if [ -f "${plugin}-exec" ]; then
+  cp "${plugin}-exec" 

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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 23:04:57
  Author: shibumi
Revision: 1014618

upgpkg: pulumi 3.12.0-1

Modified:
  pulumi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 22:58:17 UTC (rev 1014617)
+++ PKGBUILD2021-09-12 23:04:57 UTC (rev 1014618)
@@ -2,7 +2,7 @@
 # Contributor: Christoph Gysin 
 
 pkgname=pulumi
-pkgver=3.11.0
+pkgver=3.12.0
 pkgrel=1
 pkgdesc='Modern Infrastructure as Code'
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('glibc')
 makedepends=('go')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('7b36e5e4329fd0196d3d40aeb5cec6b7f7d3edc25a97af98ba253273c587e182')
-b2sums=('ed58aa86609d15b55ae879d1f44596b8499707b34ef398faaf70f9ec8b8c6571615c92af0961e70d2b398b69071f08f1bc4029cb28b019a5b2c2bb16135da367')
+sha256sums=('bbd7d5730946f370c413915b14389ca03b0b180222078400f5bb7cae1a85ea9f')
+b2sums=('11d3018b4c5b819048b6445199766909344da8bc80c2d6dbf93e77fcad6c305ab6a33ac4046700514a0541a8bb30924b6c8a1c3a7a12ec30cd9dc859c127de9c')
 
 _plugins=(
   "nodejs/cmd/pulumi-language-nodejs"



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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 22:58:17
  Author: shibumi
Revision: 1014617

archrelease: copy trunk to community-x86_64

Added:
  operator-sdk/repos/community-x86_64/PKGBUILD
(from rev 1014616, operator-sdk/trunk/PKGBUILD)
Deleted:
  operator-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 22:58:10 UTC (rev 1014616)
+++ PKGBUILD2021-09-12 22:58:17 UTC (rev 1014617)
@@ -1,44 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=operator-sdk
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="SDK for building Kubernetes applications"
-arch=('x86_64')
-url="https://github.com/operator-framework/operator-sdk;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('1a2287bdc23f68a572f501f8f408e6aa83d1968fd1b871d08ff80d9b6df3ca193e6a789c8ba51b41d90e3fa38dc8b9f3e7a621d68361c34852ddc70f1e207c8f')
-b2sums=('81be537f82268dddabd3b3c9863abb63cd135a08ed5708afb3d8cbca2dbca712b395150b7a1b55ac027c9cf1a2ffb361edca33400905014173831ad248e06592')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
-}
-
-build() {
-  cd "${PACKAGE_ROOT}"
-  export CGO_ENABLED=1
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
-}
-
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
-  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
-  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
-}

Copied: operator-sdk/repos/community-x86_64/PKGBUILD (from rev 1014616, 
operator-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 22:58:17 UTC (rev 1014617)
@@ -0,0 +1,44 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=operator-sdk
+pkgver=1.12.0
+pkgrel=1
+pkgdesc="SDK for building Kubernetes applications"
+arch=('x86_64')
+url="https://github.com/operator-framework/operator-sdk;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
+sha512sums=('6a3d4de4b2042f5dcb24b651e796f45bed1c5000f4641253e536efcffbc4f64bd73383786d1018aa5fc0e0e48bd8e527a15a0c2ed455abbbdd3c860aae3c4894')
+b2sums=('197a4207dd98cfb22ee3f0409afb83a7f0eaa21daddc4124c55a38bd97a03a6ae517ef7c67f031b026d41745b9091a216d3d38585fef9a99a59d63149d3c1e5d')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
+}
+
+build() {
+  cd "${PACKAGE_ROOT}"
+  export CGO_ENABLED=1
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
+}
+
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
+  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
+}



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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 22:58:10
  Author: shibumi
Revision: 1014616

upgpkg: operator-sdk 1.12.0-1

Modified:
  operator-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 22:53:11 UTC (rev 1014615)
+++ PKGBUILD2021-09-12 22:58:10 UTC (rev 1014616)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=operator-sdk
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc="SDK for building Kubernetes applications"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz;)
-sha512sums=('1a2287bdc23f68a572f501f8f408e6aa83d1968fd1b871d08ff80d9b6df3ca193e6a789c8ba51b41d90e3fa38dc8b9f3e7a621d68361c34852ddc70f1e207c8f')
-b2sums=('81be537f82268dddabd3b3c9863abb63cd135a08ed5708afb3d8cbca2dbca712b395150b7a1b55ac027c9cf1a2ffb361edca33400905014173831ad248e06592')
+sha512sums=('6a3d4de4b2042f5dcb24b651e796f45bed1c5000f4641253e536efcffbc4f64bd73383786d1018aa5fc0e0e48bd8e527a15a0c2ed455abbbdd3c860aae3c4894')
+b2sums=('197a4207dd98cfb22ee3f0409afb83a7f0eaa21daddc4124c55a38bd97a03a6ae517ef7c67f031b026d41745b9091a216d3d38585fef9a99a59d63149d3c1e5d')
 
 prepare() {
   export GOPATH="${srcdir}"



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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 22:53:11
  Author: shibumi
Revision: 1014615

archrelease: copy trunk to community-x86_64

Added:
  fluxctl/repos/community-x86_64/PKGBUILD
(from rev 1014614, fluxctl/trunk/PKGBUILD)
Deleted:
  fluxctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 22:53:01 UTC (rev 1014614)
+++ PKGBUILD2021-09-12 22:53:11 UTC (rev 1014615)
@@ -1,36 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=fluxctl
-_pkgname=flux
-pkgver=1.24.0
-pkgrel=1
-pkgdesc="Controller for the GitOps Kubernetes operator flux"
-arch=('x86_64')
-url="https://github.com/fluxcd/flux;
-license=('Apache')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
-sha512sums=('3fa23d87e040a59cd82c24a43c1443836b8a6b4454495bab1054d6ab1aac7410dc31fc84957dd9fe978563413dd99537abe5cec7afa5a77030f80f9f97ca089d')
-b2sums=('f7507e5c8a70f474f460d4a1cfb9ee6b024be58bb956b21eb793f4aada9fb11ab92b4285c55127c5467449b76722d75be0dded5725c5a4c0173f73b783c315d8')
-
-build() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-w -X main.version="${pkgver}" -linkmode=external" .
-  chmod +x ./fluxctl
-}
-
-check() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  go test ./...
-}
-
-package() {
-  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
-  install -Dsm755 ./fluxctl "${pkgdir}/usr/bin/fluxctl"
-}

Copied: fluxctl/repos/community-x86_64/PKGBUILD (from rev 1014614, 
fluxctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 22:53:11 UTC (rev 1014615)
@@ -0,0 +1,36 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=fluxctl
+_pkgname=flux
+pkgver=1.24.1
+pkgrel=1
+pkgdesc="Controller for the GitOps Kubernetes operator flux"
+arch=('x86_64')
+url="https://github.com/fluxcd/flux;
+license=('Apache')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
+sha512sums=('a4fb1b8904800ecbcbf48da710386e646cfab7e799fc502bdc03fbf9415847ab0411cdcd17ee036e86cc38c48b1feb167a0e8686923228d915317b85fdafa6aa')
+b2sums=('02d4e530ce84e91a69418959368243109cd6e4ec1d93ce09cb3af1f1966863a69bdea25bc149d65c007a5b9eff7fb43e5a22431a6e422d72e8e7150337c43a52')
+
+build() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-w -X main.version="${pkgver}" -linkmode=external" .
+  chmod +x ./fluxctl
+}
+
+check() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  go test ./...
+}
+
+package() {
+  cd "${_pkgname}-${pkgver}/cmd/fluxctl"
+  install -Dsm755 ./fluxctl "${pkgdir}/usr/bin/fluxctl"
+}



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

2021-09-12 Thread Christian Rebischke via arch-commits
Date: Sunday, September 12, 2021 @ 22:53:01
  Author: shibumi
Revision: 1014614

upgpkg: fluxctl 1.24.1-1

Modified:
  fluxctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:45 UTC (rev 1014613)
+++ PKGBUILD2021-09-12 22:53:01 UTC (rev 1014614)
@@ -2,7 +2,7 @@
 
 pkgname=fluxctl
 _pkgname=flux
-pkgver=1.24.0
+pkgver=1.24.1
 pkgrel=1
 pkgdesc="Controller for the GitOps Kubernetes operator flux"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 makedepends=('go' 'git')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/fluxcd/flux/archive/${pkgver}.tar.gz;)
-sha512sums=('3fa23d87e040a59cd82c24a43c1443836b8a6b4454495bab1054d6ab1aac7410dc31fc84957dd9fe978563413dd99537abe5cec7afa5a77030f80f9f97ca089d')
-b2sums=('f7507e5c8a70f474f460d4a1cfb9ee6b024be58bb956b21eb793f4aada9fb11ab92b4285c55127c5467449b76722d75be0dded5725c5a4c0173f73b783c315d8')
+sha512sums=('a4fb1b8904800ecbcbf48da710386e646cfab7e799fc502bdc03fbf9415847ab0411cdcd17ee036e86cc38c48b1feb167a0e8686923228d915317b85fdafa6aa')
+b2sums=('02d4e530ce84e91a69418959368243109cd6e4ec1d93ce09cb3af1f1966863a69bdea25bc149d65c007a5b9eff7fb43e5a22431a6e422d72e8e7150337c43a52')
 
 build() {
   cd "${_pkgname}-${pkgver}/cmd/fluxctl"



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:47
  Author: heftig
Revision: 423978

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 423976, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 423976, linux/trunk/config)

--+
 PKGBUILD |  202 +
 config   |10624 +
 2 files changed, 10826 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 423977:423978 to see the changes.


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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:47
  Author: heftig
Revision: 423977

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 423976, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 423976, linux-zen/trunk/config)

--+
 PKGBUILD |  202 +
 config   |10685 +
 2 files changed, 10887 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 423976:423977 to see the changes.


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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:45
  Author: heftig
Revision: 1014613

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 1014610, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 1014610, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 1014610, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 1014610, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2021-09-12 21:34:45 UTC 
(rev 1014613)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = _pm_handler

Copied: bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch (from rev 
1014610, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2021-09-12 21:34:45 UTC 
(rev 1014613)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 1014610, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:45 UTC (rev 1014613)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=445
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

[arch-commits] Commit in nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:45
  Author: heftig
Revision: 423976

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 423975, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 423975, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-12 21:34:45 UTC (rev 423976)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=470.63.01
+pkgrel=8
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:44
  Author: heftig
Revision: 1014611

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 1014609, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 1014609, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:44 UTC (rev 1014611)
@@ -0,0 +1,48 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=332
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:45
  Author: heftig
Revision: 1014612

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-anything-arch/repos/community-testing-x86_64/
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 1014610, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
1014610, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:45 UTC (rev 1014612)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.9
+pkgrel=24
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("https://github.com/linuxdeepin/deepin-anything/archive/$pkgver/deepin-anything-$pkgver.tar.gz;)
+sha512sums=('d7038f900c7f6cf2af156ced0fab6bcd46bff347011acc34b5d355ae8f09efe3f323724b728fbfe9c8b961e238ceb7c81aaf45f2e446b5d9ce908e8c0a658c5b')
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:42
  Author: heftig
Revision: 1014608

archrelease: copy trunk to community-testing-x86_64

Added:
  broadcom-wl/repos/community-testing-x86_64/
  broadcom-wl/repos/community-testing-x86_64/PKGBUILD
(from rev 1014604, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 1014604, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:42 UTC (rev 1014608)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=324
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:43
  Author: heftig
Revision: 1014609

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 1014605, acpi_call/trunk/PKGBUILD)

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 1014605, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:43 UTC (rev 1014609)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.1
+pkgrel=86
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:43
  Author: heftig
Revision: 1014610

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 1014604, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 1014604, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 1014604, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   56 
 dkms.conf |9 +
 3 files changed, 66 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
1014604, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2021-09-12 21:34:43 UTC (rev 
1014610)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 1014604, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:43 UTC (rev 1014610)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20210418
+pkgrel=38
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.xz;
+60-vhba.rules dkms.conf)
+sha256sums=('18bd82ae27721ad1612b3c31accd81898ae326370964385ca52a2a66b67a3f85'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:41
  Author: heftig
Revision: 1014605

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 1014604, netfilter-fullconenat/trunk/PKGBUILD)

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
1014604, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:41 UTC (rev 1014605)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=144
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+_commit=0cf3b48fd7d2fa81d0297d1fff12bbd0580fc435  # master
+source=("${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+prepare() {
+  cd ${pkgname}
+  echo "obj-m = xt_FULLCONENAT.o" > Kbuild
+}
+
+build() {
+  cd ${pkgname}
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  local extradir=/usr/lib/modules/$(

[arch-commits] Commit in virtualbox-host-modules-arch/repos (2 files)

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:42
  Author: heftig
Revision: 1014606

archrelease: copy trunk to community-testing-x86_64

Added:
  virtualbox-host-modules-arch/repos/community-testing-x86_64/
  virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 1014604, virtualbox-host-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 1014604, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:42 UTC (rev 1014606)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.26
+pkgrel=12
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers' "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:42
  Author: heftig
Revision: 1014607

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 1014604, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 1014604, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-12 21:34:42 UTC (rev 1014607)
@@ -0,0 +1,46 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.049.02
+pkgrel=17
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc)
+sha256sums=('2b12d932e976f8f74b8d9545744c04beb4676dd7bc1d032dde51347ed1d8be24'
+'SKIP')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF') # Massimiliano 
Torromeo 
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:26
  Author: heftig
Revision: 1014603

1.2.1-86: linux 5.14.3.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:25 UTC (rev 1014602)
+++ PKGBUILD2021-09-12 21:34:26 UTC (rev 1014603)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.1
-pkgrel=85
+pkgrel=86
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:28
  Author: heftig
Revision: 1014604

5.0.9-24: linux 5.14.3.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:26 UTC (rev 1014603)
+++ PKGBUILD2021-09-12 21:34:28 UTC (rev 1014604)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.9
-pkgrel=23
+pkgrel=24
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:27
  Author: heftig
Revision: 423975

470.63.01-8: linux 5.14.3.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:33:52 UTC (rev 423974)
+++ PKGBUILD2021-09-12 21:34:27 UTC (rev 423975)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=470.63.01
-pkgrel=7
+pkgrel=8
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:25
  Author: heftig
Revision: 1014602

20210418-38: linux 5.14.3.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:24 UTC (rev 1014601)
+++ PKGBUILD2021-09-12 21:34:25 UTC (rev 1014602)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20210418
-pkgrel=37
+pkgrel=38
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:23
  Author: heftig
Revision: 1014600

0.8-445: linux 5.14.3.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:21 UTC (rev 1014599)
+++ PKGBUILD2021-09-12 21:34:23 UTC (rev 1014600)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=444
+pkgrel=445
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:21
  Author: heftig
Revision: 1014599

6.30.223.271-324: linux 5.14.3.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:19 UTC (rev 1014598)
+++ PKGBUILD2021-09-12 21:34:21 UTC (rev 1014599)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=323
+pkgrel=324
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:19
  Author: heftig
Revision: 1014598

0.43-332: linux 5.14.3.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:18 UTC (rev 1014597)
+++ PKGBUILD2021-09-12 21:34:19 UTC (rev 1014598)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=331
+pkgrel=332
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:24
  Author: heftig
Revision: 1014601

8.049.02-17: linux 5.14.3.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:23 UTC (rev 1014600)
+++ PKGBUILD2021-09-12 21:34:24 UTC (rev 1014601)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.049.02
-pkgrel=16
+pkgrel=17
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")



[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:18
  Author: heftig
Revision: 1014597

6.1.26-12: linux 5.14.3.arch1-1

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:34:17 UTC (rev 1014596)
+++ PKGBUILD2021-09-12 21:34:18 UTC (rev 1014597)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.26
-pkgrel=11
+pkgrel=12
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:34:17
  Author: heftig
Revision: 1014596

r73.0cf3b48-144: linux 5.14.3.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:23:21 UTC (rev 1014595)
+++ PKGBUILD2021-09-12 21:34:17 UTC (rev 1014596)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=143
+pkgrel=144
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:33:52
  Author: heftig
Revision: 423974

5.14.3.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:33:52 UTC (rev 423973)
+++ PKGBUILD2021-09-12 21:33:52 UTC (rev 423974)
@@ -1,8 +1,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.14.2.zen1
-pkgrel=2
+pkgver=5.14.3.zen1
+pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
 url="https://github.com/zen-kernel/zen-kernel/commits/$_srctag;



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

2021-09-12 Thread Jan Steffens via arch-commits
Date: Sunday, September 12, 2021 @ 21:33:52
  Author: heftig
Revision: 423973

5.14.3.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 21:15:58 UTC (rev 423972)
+++ PKGBUILD2021-09-12 21:33:52 UTC (rev 423973)
@@ -1,8 +1,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.14.2.arch1
-pkgrel=2
+pkgver=5.14.3.arch1
+pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
 url="https://github.com/archlinux/linux/commits/$_srctag;



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 21:23:21
  Author: dvzrv
Revision: 1014595

archrelease: copy trunk to community-x86_64

Added:
  python-cbor2/repos/community-x86_64/
  python-cbor2/repos/community-x86_64/PKGBUILD
(from rev 1014594, python-cbor2/trunk/PKGBUILD)

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

Copied: python-cbor2/repos/community-x86_64/PKGBUILD (from rev 1014594, 
python-cbor2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-09-12 21:23:21 UTC (rev 1014595)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+_name=cbor2
+pkgname=python-cbor2
+pkgver=5.4.1
+pkgrel=2
+pkgdesc="Pure Python CBOR (de)serializer with extensive tag support"
+arch=('x86_64')
+url="https://github.com/agronholm/cbor2;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools-scm' 'python-toml')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('a8bf432f6cb595f50aeb8fed2a4aa3b3f7caa7f135fb57e4378eaa39242feac9')
+b2sums=('7e81436c066dc245038fea6c5c8fb25ad87aae4c8b0a4d3e8ffa1a262dd4b08c6b0d8a79214dc13c87dc4ab6902b7762847b75f217a83769ef97783e2a25a6f4')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # we do not care about coverage
+  sed -e '/addopts/d' -i setup.cfg
+}
+
+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 --optimize=1 --root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



[arch-commits] Commit in (4 files)

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 21:22:17
  Author: dvzrv
Revision: 1014594

Add python-cbor2 as checkdepends for python-falcon.

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

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

Added: python-cbor2/trunk/PKGBUILD
===
--- python-cbor2/trunk/PKGBUILD (rev 0)
+++ python-cbor2/trunk/PKGBUILD 2021-09-12 21:22:17 UTC (rev 1014594)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+_name=cbor2
+pkgname=python-cbor2
+pkgver=5.4.1
+pkgrel=2
+pkgdesc="Pure Python CBOR (de)serializer with extensive tag support"
+arch=('x86_64')
+url="https://github.com/agronholm/cbor2;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools-scm' 'python-toml')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('a8bf432f6cb595f50aeb8fed2a4aa3b3f7caa7f135fb57e4378eaa39242feac9')
+b2sums=('7e81436c066dc245038fea6c5c8fb25ad87aae4c8b0a4d3e8ffa1a262dd4b08c6b0d8a79214dc13c87dc4ab6902b7762847b75f217a83769ef97783e2a25a6f4')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # we do not care about coverage
+  sed -e '/addopts/d' -i setup.cfg
+}
+
+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 --optimize=1 --root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



[arch-commits] Commit in xkeyboard-config/repos/extra-any (PKGBUILD PKGBUILD)

2021-09-12 Thread Andreas Radke via arch-commits
Date: Sunday, September 12, 2021 @ 21:15:58
  Author: andyrtr
Revision: 423972

archrelease: copy trunk to extra-any

Added:
  xkeyboard-config/repos/extra-any/PKGBUILD
(from rev 423971, xkeyboard-config/trunk/PKGBUILD)
Deleted:
  xkeyboard-config/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 21:15:48 UTC (rev 423971)
+++ PKGBUILD2021-09-12 21:15:58 UTC (rev 423972)
@@ -1,39 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xkeyboard-config
-pkgver=2.33
-pkgrel=1
-pkgdesc="X keyboard configuration files"
-arch=(any)
-license=('custom')
-url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config;
-makedepends=('intltool' 'xorg-xkbcomp' 'libxslt' 'python')
-provides=('xkbdata')
-replaces=('xkbdata')
-conflicts=('xkbdata')
-source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145')
-validpgpkeys+=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov 
(For GNOME-related tasks) "
-sha512sums=('084f79350d5dc7f9ebd5b5333d386459b0ab587f6cec27ee2d8d5c3a56b08993f9fafb9d893307f4d43cfeaf2e225c5295ad6297ae8287c68efc48a82638feb1'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --with-xkb-base=/usr/share/X11/xkb \
-  --with-xkb-rules-symlink=xorg \
-  --enable-compat-rules=yes
-  make
- }
- 
- package() { 
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -f "${pkgdir}/usr/share/X11/xkb/compiled"
-
-  install -m755 -d "${pkgdir}/var/lib/xkb"
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xkeyboard-config/repos/extra-any/PKGBUILD (from rev 423971, 
xkeyboard-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 21:15:58 UTC (rev 423972)
@@ -0,0 +1,41 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xkeyboard-config
+pkgver=2.33
+pkgrel=2
+pkgdesc="X keyboard configuration files"
+arch=(any)
+license=('custom')
+url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config;
+makedepends=('xorg-xkbcomp' 'libxslt' 'python' 'meson')
+provides=('xkbdata')
+replaces=('xkbdata')
+conflicts=('xkbdata')
+source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145')
+validpgpkeys+=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov 
(For GNOME-related tasks) "
+sha512sums=('084f79350d5dc7f9ebd5b5333d386459b0ab587f6cec27ee2d8d5c3a56b08993f9fafb9d893307f4d43cfeaf2e225c5295ad6297ae8287c68efc48a82638feb1'
+'SKIP')
+
+build() {
+  arch-meson ${pkgname}-${pkgver} build \
+   -D xkb-base="/usr/share/X11/xkb" \
+   -D compat-rules=true \
+   -D xorg-rules-symlinks=true
+
+  # Print config
+  meson configure build
+
+  ninja -C build
+
+ }
+ 
+ package() { 
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  install -m755 -d "${pkgdir}/var/lib/xkb"
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 ${pkgname}-${pkgver}/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2021-09-12 Thread Andreas Radke via arch-commits
Date: Sunday, September 12, 2021 @ 21:15:48
  Author: andyrtr
Revision: 423971

upgpkg: xkeyboard-config 2.33-2: build using meson

Modified:
  xkeyboard-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:52:33 UTC (rev 423970)
+++ PKGBUILD2021-09-12 21:15:48 UTC (rev 423971)
@@ -3,12 +3,12 @@
 
 pkgname=xkeyboard-config
 pkgver=2.33
-pkgrel=1
+pkgrel=2
 pkgdesc="X keyboard configuration files"
 arch=(any)
 license=('custom')
 url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config;
-makedepends=('intltool' 'xorg-xkbcomp' 'libxslt' 'python')
+makedepends=('xorg-xkbcomp' 'libxslt' 'python' 'meson')
 provides=('xkbdata')
 replaces=('xkbdata')
 conflicts=('xkbdata')
@@ -19,21 +19,23 @@
 'SKIP')
 
 build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --with-xkb-base=/usr/share/X11/xkb \
-  --with-xkb-rules-symlink=xorg \
-  --enable-compat-rules=yes
-  make
+  arch-meson ${pkgname}-${pkgver} build \
+   -D xkb-base="/usr/share/X11/xkb" \
+   -D compat-rules=true \
+   -D xorg-rules-symlinks=true
+
+  # Print config
+  meson configure build
+
+  ninja -C build
+
  }
  
  package() { 
-  cd ${pkgname}-${pkgver}
 
-  make DESTDIR="${pkgdir}" install
-  rm -f "${pkgdir}/usr/share/X11/xkb/compiled"
+  DESTDIR="$pkgdir" ninja -C build install
 
   install -m755 -d "${pkgdir}/var/lib/xkb"
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -m644 ${pkgname}-${pkgver}/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/"
 }



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 21:07:42
  Author: anthraxx
Revision: 1014593

archrelease: copy trunk to community-any

Added:
  python-eventlet/repos/community-any/
  python-eventlet/repos/community-any/PKGBUILD
(from rev 1014592, python-eventlet/trunk/PKGBUILD)

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

Copied: python-eventlet/repos/community-any/PKGBUILD (from rev 1014592, 
python-eventlet/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-09-12 21:07:42 UTC (rev 1014593)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+
+pkgname=python-eventlet
+_pyname=eventlet
+pkgver=0.32.0
+pkgrel=1
+pkgdesc='Highly concurrent networking library'
+url='https://eventlet.net'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-greenlet' 'python-monotonic' 'python-dnspython')
+makedepends=('python-setuptools' 'python-sphinx')
+checkdepends=('python-psycopg2' 'python-nose' 'python-pyopenssl' 
'python-httplib2' 'python-mock' 'python-pyzmq')
+optdepends=(
+  'python-psycopg2: non-blocking PostgreSQL support'
+  'python-pyopenssl: non-blocking SSL support'
+  'python-httplib2: non-blocking HTTP support'
+  'python-pyzmq: non-blocking ZeroMQ support'
+  'python-dnspython: non-blocking DNS support'
+)
+options=('!makeflags')
+source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz)
+sha512sums=('43055b55d6018a167dde8e38169629f82aa68414bf380ecafa1952b130fd67130d9f921e89d612195269ecf781fb70e30c0cebd1b3a501be95f75960b1a92778')
+b2sums=('64effed11bd4d1973338125e0378b27dc660db31577519187e69eccc2f8ffd0b89980740d48ba1b5b3313cfb0fa2dd3a225b7e41b92039ae306090ba8f36f296')
+
+prepare() {
+  cd ${_pyname}-${pkgver}
+  sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+  make -C doc text
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+  nosetests -sv tests
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:52:33
  Author: anthraxx
Revision: 423970

archrelease: copy trunk to extra-x86_64

Added:
  libexif/repos/extra-x86_64/PKGBUILD
(from rev 423969, libexif/trunk/PKGBUILD)
Deleted:
  libexif/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:52:29 UTC (rev 423969)
+++ PKGBUILD2021-09-12 20:52:33 UTC (rev 423970)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=libexif
-pkgver=0.6.22
-pkgrel=1
-pkgdesc='Library to parse an EXIF file and read the data from those tags'
-url='https://github.com/libexif/libexif'
-arch=(x86_64)
-license=('LGPL')
-depends=('glibc')
-provides=('libexif.so')
-source=(${url}/archive/${pkgname}-${pkgver//./_}-release.tar.gz)
-sha512sums=('6c63abe2734c9e83fb04adb00bdd77f687165007c0efd0279df26c101363b990604050c430c7dd73dfa8735dd2fd196334d321bdb114d4869998f21e7bed5b43')
-b2sums=('db424f537984c95cad73a69c7812009caa336b22ca69135cef9760a03f9a8f10dc727f8900edd58a7f3211f44e7ca2fa115575e33cb0c980bfc10f84d7e169fe')
-
-prepare() {
-  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
-  make DESTDIR="${pkgdir}" install
-}

Copied: libexif/repos/extra-x86_64/PKGBUILD (from rev 423969, 
libexif/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:52:33 UTC (rev 423970)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgname=libexif
+pkgver=0.6.23
+pkgrel=1
+pkgdesc='Library to parse an EXIF file and read the data from those tags'
+url='https://github.com/libexif/libexif'
+arch=(x86_64)
+license=('LGPL')
+depends=('glibc')
+provides=('libexif.so')
+source=(${url}/archive/${pkgname}-${pkgver//./_}-release.tar.gz)
+sha512sums=('9fa2e124d6a5787fd1c6101be9c345e699bc074026f7c0e1d0c8dc202b922e749a76d7a9d4dd7afe880a7e2ff8ac029590b9957743962dbc0e17320c21afd22d')
+b2sums=('e2e9c8ea15a0fce684e9a23b9f7bd8aa12c235bdd2c2dc0ebaee738e6ca82cf28ffb72e0d3ceef778b0f44fd1c1ac72bc79a428e09e850ae4b57bbc4672f404e')
+
+prepare() {
+  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-${pkgver//./_}-release
+  make DESTDIR="${pkgdir}" install
+}



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:52:29
  Author: anthraxx
Revision: 423969

upgpkg: libexif 0.6.23-1

Modified:
  libexif/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:52:19 UTC (rev 423968)
+++ PKGBUILD2021-09-12 20:52:29 UTC (rev 423969)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=libexif
-pkgver=0.6.22
+pkgver=0.6.23
 pkgrel=1
 pkgdesc='Library to parse an EXIF file and read the data from those tags'
 url='https://github.com/libexif/libexif'
@@ -12,8 +12,8 @@
 depends=('glibc')
 provides=('libexif.so')
 source=(${url}/archive/${pkgname}-${pkgver//./_}-release.tar.gz)
-sha512sums=('6c63abe2734c9e83fb04adb00bdd77f687165007c0efd0279df26c101363b990604050c430c7dd73dfa8735dd2fd196334d321bdb114d4869998f21e7bed5b43')
-b2sums=('db424f537984c95cad73a69c7812009caa336b22ca69135cef9760a03f9a8f10dc727f8900edd58a7f3211f44e7ca2fa115575e33cb0c980bfc10f84d7e169fe')
+sha512sums=('9fa2e124d6a5787fd1c6101be9c345e699bc074026f7c0e1d0c8dc202b922e749a76d7a9d4dd7afe880a7e2ff8ac029590b9957743962dbc0e17320c21afd22d')
+b2sums=('e2e9c8ea15a0fce684e9a23b9f7bd8aa12c235bdd2c2dc0ebaee738e6ca82cf28ffb72e0d3ceef778b0f44fd1c1ac72bc79a428e09e850ae4b57bbc4672f404e')
 
 prepare() {
   cd ${pkgname}-${pkgname}-${pkgver//./_}-release



[arch-commits] Commit in libedit/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:52:19
  Author: anthraxx
Revision: 423968

archrelease: copy trunk to testing-x86_64

Added:
  libedit/repos/testing-x86_64/
  libedit/repos/testing-x86_64/PKGBUILD
(from rev 423967, libedit/trunk/PKGBUILD)

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

Copied: libedit/repos/testing-x86_64/PKGBUILD (from rev 423967, 
libedit/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-12 20:52:19 UTC (rev 423968)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: Gaetan Bisson 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Roman Cheplyaka 
+
+pkgname=libedit
+_pkgver=20210910-3.1
+pkgver=${_pkgver/-/_}
+pkgrel=1
+pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
+url='https://thrysoee.dk/editline/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'ncurses' 'libncursesw.so')
+provides=('libedit.so')
+source=(${url}/${pkgname}-${_pkgver}.tar.gz)
+sha256sums=('6792a6a992050762edcca28ff3318cdb7de37dccf7bc30db59fcd7017eed13c5')
+b2sums=('325dc756fc6c6244e336cd6faeed2ab37817bdab8c0684586c44d551074fd2ec84bfcd3f4d5897db3196e783653a042699e5b9a8a3351d653992bb256956b652')
+
+build() {
+  cd ${pkgname}-${_pkgver}
+  ./configure --prefix=/usr
+  make V=1
+}
+
+package() {
+  cd ${pkgname}-${_pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  rm "${pkgdir}"/usr/share/man/man3/history.3 # conflicts with readline
+  install -Dm 644 "${pkgdir}"/usr/share/man/man3/editline.3 
"${pkgdir}"/usr/share/man/man3/el.3
+
+  install -Dm 644 ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:52:16
  Author: anthraxx
Revision: 423967

upgpkg: libedit 20210910_3.1-1

Modified:
  libedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:51:46 UTC (rev 423966)
+++ PKGBUILD2021-09-12 20:52:16 UTC (rev 423967)
@@ -4,7 +4,7 @@
 # Contributor: Roman Cheplyaka 
 
 pkgname=libedit
-_pkgver=20210714-3.1
+_pkgver=20210910-3.1
 pkgver=${_pkgver/-/_}
 pkgrel=1
 pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
@@ -14,8 +14,8 @@
 depends=('glibc' 'ncurses' 'libncursesw.so')
 provides=('libedit.so')
 source=(${url}/${pkgname}-${_pkgver}.tar.gz)
-sha256sums=('3023b498ad593fd7745ae3b20abad546de506b67b8fbb5579637ca69ab82dbc9')
-b2sums=('e2559e85151ce21e97caf008b96d07a6432d3b1b243cd9b08636bb3a44db68b2aa406f33c165d279bd07745d1e69531f6daa4ac362f3299c035b0dbe4724be8a')
+sha256sums=('6792a6a992050762edcca28ff3318cdb7de37dccf7bc30db59fcd7017eed13c5')
+b2sums=('325dc756fc6c6244e336cd6faeed2ab37817bdab8c0684586c44d551074fd2ec84bfcd3f4d5897db3196e783653a042699e5b9a8a3351d653992bb256956b652')
 
 build() {
   cd ${pkgname}-${_pkgver}



[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config)

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:51:41
  Author: anthraxx
Revision: 423965

upgpkg: linux-hardened 5.13.16.hardened1-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:17:53 UTC (rev 423964)
+++ PKGBUILD2021-09-12 20:51:41 UTC (rev 423965)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.13.15.hardened1
+pkgver=5.13.16.hardened1
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -27,11 +27,11 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('330b4c395f858e75ce26a34cc008c121ef8d975736b3ea975ca65081ff93621b'
+sha256sums=('495989174c16ae15817798f9e0722dfd782d7d2c78283b519ecc60f2d87e51d2'
 'SKIP'
-'c722b5988fec48f6593e24aa429068f489285062960b1f172770e1240b94e5bc'
+'40b73aa242a5627fde575052de390929bb09ad797407858012155043fa5b6862'
 'SKIP'
-'371a953bca4ce2996c6cbe79039f40ef906b63d9e4f31c0364382d5f9ee354dd')
+'b1a60f72ae3bfd71ae848fc0cbaaff326ebc88d0b200c7906c953cf5a2418e91')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-09-12 20:17:53 UTC (rev 423964)
+++ config  2021-09-12 20:51:41 UTC (rev 423965)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.13.14-hardened1 Kernel Configuration
+# Linux/x86 5.13.16-hardened1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y



[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (4 files)

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:51:46
  Author: anthraxx
Revision: 423966

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 423965, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 423965, linux-hardened/trunk/config)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config

--+
 PKGBUILD |  412 -
 config   |20686 ++---
 2 files changed, 10549 insertions(+), 10549 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 423965:423966 to see the changes.


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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:24:53
  Author: anthraxx
Revision: 1014590

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:24:49 UTC (rev 1014589)
+++ PKGBUILD2021-09-12 20:24:53 UTC (rev 1014590)
@@ -1,52 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=python-eventlet
-_pyname=eventlet
-pkgver=0.31.1
-pkgrel=1
-pkgdesc='Highly concurrent networking library'
-url='https://eventlet.net'
-arch=('any')
-license=('MIT')
-depends=('python' 'python-greenlet' 'python-monotonic' 'python-dnspython')
-makedepends=('python-setuptools' 'python-sphinx')
-checkdepends=('python-psycopg2' 'python-nose' 'python-pyopenssl' 
'python-httplib2' 'python-mock' 'python-pyzmq')
-optdepends=(
-  'python-psycopg2: non-blocking PostgreSQL support'
-  'python-pyopenssl: non-blocking SSL support'
-  'python-httplib2: non-blocking HTTP support'
-  'python-pyzmq: non-blocking ZeroMQ support'
-  'python-dnspython: non-blocking DNS support'
-)
-options=('!makeflags')
-source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz)
-sha512sums=('ec284e9184d1901fa4b179af685df7559d699e827b7e5da869a7ee419a36c190163c0fdfe8f72254b308662d3ce3c6c0e128f338d5147bf8daa2b5f21ebce960')
-b2sums=('20ed00f4e7b07fd51218125058ed045ae3730c882f1c957127d29f0006e63b8998e65863ee33c36912cddf4efde3fa91b7797a2da63ac36009c4f7165155e854')
-
-prepare() {
-  cd ${_pyname}-${pkgver}
-  sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
-}
-
-build() {
-  cd ${_pyname}-${pkgver}
-  export PYTHONHASHSEED=0
-  python setup.py build
-  make -C doc text
-}
-
-check() {
-  cd ${_pyname}-${pkgver}
-  nosetests -sv tests
-}
-
-package() {
-  cd ${_pyname}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-eventlet/repos/community-any/PKGBUILD (from rev 1014589, 
python-eventlet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:24:53 UTC (rev 1014590)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+
+pkgname=python-eventlet
+_pyname=eventlet
+pkgver=0.32.0
+pkgrel=1
+pkgdesc='Highly concurrent networking library'
+url='https://eventlet.net'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-greenlet' 'python-monotonic' 'python-dnspython')
+makedepends=('python-setuptools' 'python-sphinx')
+checkdepends=('python-psycopg2' 'python-nose' 'python-pyopenssl' 
'python-httplib2' 'python-mock' 'python-pyzmq')
+optdepends=(
+  'python-psycopg2: non-blocking PostgreSQL support'
+  'python-pyopenssl: non-blocking SSL support'
+  'python-httplib2: non-blocking HTTP support'
+  'python-pyzmq: non-blocking ZeroMQ support'
+  'python-dnspython: non-blocking DNS support'
+)
+options=('!makeflags')
+source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz)
+sha512sums=('43055b55d6018a167dde8e38169629f82aa68414bf380ecafa1952b130fd67130d9f921e89d612195269ecf781fb70e30c0cebd1b3a501be95f75960b1a92778')
+b2sums=('64effed11bd4d1973338125e0378b27dc660db31577519187e69eccc2f8ffd0b89980740d48ba1b5b3313cfb0fa2dd3a225b7e41b92039ae306090ba8f36f296')
+
+prepare() {
+  cd ${_pyname}-${pkgver}
+  sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+  make -C doc text
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+  nosetests -sv tests
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:24:49
  Author: anthraxx
Revision: 1014589

upgpkg: python-eventlet 0.32.0-1

Modified:
  python-eventlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:18:45 UTC (rev 1014588)
+++ PKGBUILD2021-09-12 20:24:49 UTC (rev 1014589)
@@ -2,8 +2,8 @@
 
 pkgname=python-eventlet
 _pyname=eventlet
-pkgver=0.31.1
-pkgrel=2
+pkgver=0.32.0
+pkgrel=1
 pkgdesc='Highly concurrent networking library'
 url='https://eventlet.net'
 arch=('any')
@@ -19,19 +19,13 @@
   'python-dnspython: non-blocking DNS support'
 )
 options=('!makeflags')
-source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz
-dnspython.patch::https://github.com/eventlet/eventlet/pull/722.patch)
-sha512sums=('ec284e9184d1901fa4b179af685df7559d699e827b7e5da869a7ee419a36c190163c0fdfe8f72254b308662d3ce3c6c0e128f338d5147bf8daa2b5f21ebce960'
-
'e5c8aad3bc4074867e9c854f182c414d5a49f48a667ef619472cd0f8e6eabff483a908d325f6822f2cc612fd4ddff5bf5a068640d7074ce264abfc1f9838aedf')
-b2sums=('20ed00f4e7b07fd51218125058ed045ae3730c882f1c957127d29f0006e63b8998e65863ee33c36912cddf4efde3fa91b7797a2da63ac36009c4f7165155e854'
-
'0384edd8bed3b7f772765002dfe0b2d36d4871579753c0ac47644c9f0478c6a091b961b41374f015b94c0ad88a035ff4707bb1f73cd813684915fcb9d071efcc')
+source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz)
+sha512sums=('43055b55d6018a167dde8e38169629f82aa68414bf380ecafa1952b130fd67130d9f921e89d612195269ecf781fb70e30c0cebd1b3a501be95f75960b1a92778')
+b2sums=('64effed11bd4d1973338125e0378b27dc660db31577519187e69eccc2f8ffd0b89980740d48ba1b5b3313cfb0fa2dd3a225b7e41b92039ae306090ba8f36f296')
 
 prepare() {
   cd ${_pyname}-${pkgver}
   sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
-
-  # dns python 2.1.0 compatibility 
https://github.com/eventlet/eventlet/pull/722/files
-  patch -Np1 -i ${srcdir}/dnspython.patch
 }
 
 build() {



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:18:45
  Author: anthraxx
Revision: 1014588

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:18:40 UTC (rev 1014587)
+++ PKGBUILD2021-09-12 20:18:45 UTC (rev 1014588)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Omar Pakker 
-
-pkgname=python-bidict
-_name=${pkgname#python-}
-pkgver=0.21.2
-pkgrel=2
-pkgdesc='Bidirectional mapping library for Python'
-url='https://bidict.readthedocs.org/'
-arch=('any')
-license=('MPL2')
-depends=('python')
-makedepends=('python-setuptools' 'python-pip' 'python-wheel')
-checkdepends=('python-pytest' 'python-sphinx' 
'python-sphinx-autodoc-typehints' 'python-pytest-benchmark'
- 'python-hypothesis' 'python-py-cpuinfo')
-source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
-sha256sums=('4fa46f7ff96dc244abfc437383d987404ae861df797e2fd5b190e233c302be09')
-b2sums=('6bc154cd49d33f9f144c0122175355327f16fbf3f701f751ecc0b65d335c78e5cb66126ef055545ec35a0b56a18efc4446a471477f9c2984f7c9a60cb80e2120')
-
-build() {
-  cd "bidict-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "bidict-${pkgver}"
-  python setup.py test
-}
-
-package() {
-  cd "bidict-${pkgver}"
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-bidict/repos/community-any/PKGBUILD (from rev 1014587, 
python-bidict/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:18:45 UTC (rev 1014588)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: Omar Pakker 
+
+pkgname=python-bidict
+_name=${pkgname#python-}
+pkgver=0.21.3
+pkgrel=1
+pkgdesc='Bidirectional mapping library for Python'
+url='https://bidict.readthedocs.org/'
+arch=('any')
+license=('MPL2')
+depends=('python')
+makedepends=('python-setuptools' 'python-pip' 'python-wheel')
+checkdepends=('python-pytest' 'python-sphinx' 
'python-sphinx-autodoc-typehints' 'python-pytest-benchmark'
+ 'python-hypothesis' 'python-py-cpuinfo')
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
+sha256sums=('d50bd81fae75e34198ffc94979a0eb0939ff9adb3ef32bcc93a913d8b3e3ed1d')
+b2sums=('d6fe581d3114e03fda76a0dcc47a65a5d0a840f17e5eb492341a6498f79b0f57f1d342220016001da4342baecdc1e5b575268d73a21fc01a0520fc11f31ff5ab')
+
+build() {
+  cd "bidict-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "bidict-${pkgver}"
+  python setup.py test
+}
+
+package() {
+  cd "bidict-${pkgver}"
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:18:40
  Author: anthraxx
Revision: 1014587

upgpkg: python-bidict 0.21.3-1

Modified:
  python-bidict/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:18:11 UTC (rev 1014586)
+++ PKGBUILD2021-09-12 20:18:40 UTC (rev 1014587)
@@ -3,8 +3,8 @@
 
 pkgname=python-bidict
 _name=${pkgname#python-}
-pkgver=0.21.2
-pkgrel=2
+pkgver=0.21.3
+pkgrel=1
 pkgdesc='Bidirectional mapping library for Python'
 url='https://bidict.readthedocs.org/'
 arch=('any')
@@ -14,8 +14,8 @@
 checkdepends=('python-pytest' 'python-sphinx' 
'python-sphinx-autodoc-typehints' 'python-pytest-benchmark'
  'python-hypothesis' 'python-py-cpuinfo')
 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
-sha256sums=('4fa46f7ff96dc244abfc437383d987404ae861df797e2fd5b190e233c302be09')
-b2sums=('6bc154cd49d33f9f144c0122175355327f16fbf3f701f751ecc0b65d335c78e5cb66126ef055545ec35a0b56a18efc4446a471477f9c2984f7c9a60cb80e2120')
+sha256sums=('d50bd81fae75e34198ffc94979a0eb0939ff9adb3ef32bcc93a913d8b3e3ed1d')
+b2sums=('d6fe581d3114e03fda76a0dcc47a65a5d0a840f17e5eb492341a6498f79b0f57f1d342220016001da4342baecdc1e5b575268d73a21fc01a0520fc11f31ff5ab')
 
 build() {
   cd "bidict-${pkgver}"



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:18:11
  Author: anthraxx
Revision: 1014586

archrelease: copy trunk to community-any

Added:
  flawfinder/repos/community-any/PKGBUILD
(from rev 1014585, flawfinder/trunk/PKGBUILD)
Deleted:
  flawfinder/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:18:07 UTC (rev 1014585)
+++ PKGBUILD2021-09-12 20:18:11 UTC (rev 1014586)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Python Shell 
-# Contributor: paraxor 
-# Contributor: Pranay Kanwar 
-
-pkgname=flawfinder
-pkgver=2.0.18
-pkgrel=1
-pkgdesc='Searches through source code for potential security flaws'
-url='https://dwheeler.com/flawfinder/'
-arch=('any')
-license=('GPL2')
-depends=('python')
-makedepends=('python-setuptools')
-source=(https://dwheeler.com/flawfinder/flawfinder-${pkgver}.tar.gz)
-sha512sums=('630be03190f1a8900c001143a9cbb98d2bbd4cc1134097070b39b34a51ff8ee98ff060f082dd7fb5c6773ce1e751926a1b95faac6c307facdba445d919547940')
-b2sums=('8ddc04d7cef5946d574db499c9d3bd61f9bf8c556d58d649b50544d8c70e76c7dab15391464f5dac3dc229602a6988ddbfaa194dab579cc1b56112af519d6102')
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" prefix=/usr install
-  install -Dm 644 README.md ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: flawfinder/repos/community-any/PKGBUILD (from rev 1014585, 
flawfinder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:18:11 UTC (rev 1014586)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor: Python Shell 
+# Contributor: paraxor 
+# Contributor: Pranay Kanwar 
+
+pkgname=flawfinder
+pkgver=2.0.19
+pkgrel=1
+pkgdesc='Searches through source code for potential security flaws'
+url='https://dwheeler.com/flawfinder/'
+arch=('any')
+license=('GPL2')
+depends=('python')
+makedepends=('python-setuptools')
+source=(https://dwheeler.com/flawfinder/flawfinder-${pkgver}.tar.gz)
+sha512sums=('7ac8684f157f30cb7cc0e2d9c270f92bb26e9207d9879530c499cc93af10070c2558f3794cc8b1a0a51b52ae771a4aa47157b467d0e6578cab96360cb0c6d90b')
+b2sums=('d9b74d1882a363fa37aabd4ea6c53a5c18e15d27ee755ce2a2ea7421cb052505ef45290b5dfe7df0c3f92de1f561d274624986291d297dad8d8bf0b3550d5cdd')
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" prefix=/usr install
+  install -Dm 644 README.md ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:18:07
  Author: anthraxx
Revision: 1014585

upgpkg: flawfinder 2.0.19-1

Modified:
  flawfinder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 20:17:33 UTC (rev 1014584)
+++ PKGBUILD2021-09-12 20:18:07 UTC (rev 1014585)
@@ -4,7 +4,7 @@
 # Contributor: Pranay Kanwar 
 
 pkgname=flawfinder
-pkgver=2.0.18
+pkgver=2.0.19
 pkgrel=1
 pkgdesc='Searches through source code for potential security flaws'
 url='https://dwheeler.com/flawfinder/'
@@ -13,8 +13,8 @@
 depends=('python')
 makedepends=('python-setuptools')
 source=(https://dwheeler.com/flawfinder/flawfinder-${pkgver}.tar.gz)
-sha512sums=('630be03190f1a8900c001143a9cbb98d2bbd4cc1134097070b39b34a51ff8ee98ff060f082dd7fb5c6773ce1e751926a1b95faac6c307facdba445d919547940')
-b2sums=('8ddc04d7cef5946d574db499c9d3bd61f9bf8c556d58d649b50544d8c70e76c7dab15391464f5dac3dc229602a6988ddbfaa194dab579cc1b56112af519d6102')
+sha512sums=('7ac8684f157f30cb7cc0e2d9c270f92bb26e9207d9879530c499cc93af10070c2558f3794cc8b1a0a51b52ae771a4aa47157b467d0e6578cab96360cb0c6d90b')
+b2sums=('d9b74d1882a363fa37aabd4ea6c53a5c18e15d27ee755ce2a2ea7421cb052505ef45290b5dfe7df0c3f92de1f561d274624986291d297dad8d8bf0b3550d5cdd')
 
 check() {
   cd ${pkgname}-${pkgver}



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:17:53
  Author: anthraxx
Revision: 423964

archrelease: copy trunk to extra-x86_64

Added:
  libbpf/repos/extra-x86_64/PKGBUILD
(from rev 423963, libbpf/trunk/PKGBUILD)
Deleted:
  libbpf/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:17:49 UTC (rev 423963)
+++ PKGBUILD2021-09-12 20:17:53 UTC (rev 423964)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor:  Adrian Bacircea 
-
-pkgname=libbpf
-pkgver=0.4.0
-pkgrel=1
-pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
-url='https://github.com/libbpf/libbpf'
-arch=('x86_64')
-license=('LGPL2.1')
-depends=('glibc' 'libelf' 'linux-api-headers')
-makedepends=('rsync')
-provides=('libbpf.so')
-source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('5d247f724f0dd3b2dadcc1ac10026ac57d3029b9dd7eb2831e282c58a4143042ef024170781139d89d85c4e9a3849b9ec0d3604a00bb3433be7622682b6dabc1')
-b2sums=('f3bb1a5b1808d30612d9d3852400b71cb5d2ba4c31a177dd72b1f6060bc1d97f8d4ea7bb071a1ae2c5e94e3a4745593a0cc6b8ab6e56288e6cfb046d6de43717')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make -C src
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C src DESTDIR="${pkgdir}" LIBSUBDIR=lib install install_headers
-  install -Dm 644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md src/README.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbpf/repos/extra-x86_64/PKGBUILD (from rev 423963, 
libbpf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:17:53 UTC (rev 423964)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor:  Adrian Bacircea 
+
+pkgname=libbpf
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
+url='https://github.com/libbpf/libbpf'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('glibc' 'libelf' 'linux-api-headers')
+makedepends=('rsync')
+provides=('libbpf.so')
+source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3c578d3e6e93a306a1f182978e54f35fec8acfa51fad5d7de72c5003f10c266d7474e82d6dd045311fcaf8c18aa8cebe64a3336a458a9ea477e5a58e5111dd85')
+b2sums=('9097d808f03cbbe61cd59b24347075e2937603f51350f83f8897123900c911392d7545af8135f39f749132c6518296f1a4d22d37c0c7b4371631f5c63a0dd9ac')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make -C src
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C src DESTDIR="${pkgdir}" LIBSUBDIR=lib install install_headers
+  install -Dm 644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:17:49
  Author: anthraxx
Revision: 423963

upgpkg: libbpf 0.5.0-1

Modified:
  libbpf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:20:49 UTC (rev 423962)
+++ PKGBUILD2021-09-12 20:17:49 UTC (rev 423963)
@@ -2,7 +2,7 @@
 # Contributor:  Adrian Bacircea 
 
 pkgname=libbpf
-pkgver=0.4.0
+pkgver=0.5.0
 pkgrel=1
 pkgdesc='Library for loading eBPF programs and reading and manipulating eBPF 
objects from user-space'
 url='https://github.com/libbpf/libbpf'
@@ -12,8 +12,8 @@
 makedepends=('rsync')
 provides=('libbpf.so')
 
source=(https://github.com/libbpf/libbpf/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('5d247f724f0dd3b2dadcc1ac10026ac57d3029b9dd7eb2831e282c58a4143042ef024170781139d89d85c4e9a3849b9ec0d3604a00bb3433be7622682b6dabc1')
-b2sums=('f3bb1a5b1808d30612d9d3852400b71cb5d2ba4c31a177dd72b1f6060bc1d97f8d4ea7bb071a1ae2c5e94e3a4745593a0cc6b8ab6e56288e6cfb046d6de43717')
+sha512sums=('3c578d3e6e93a306a1f182978e54f35fec8acfa51fad5d7de72c5003f10c266d7474e82d6dd045311fcaf8c18aa8cebe64a3336a458a9ea477e5a58e5111dd85')
+b2sums=('9097d808f03cbbe61cd59b24347075e2937603f51350f83f8897123900c911392d7545af8135f39f749132c6518296f1a4d22d37c0c7b4371631f5c63a0dd9ac')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -24,7 +24,7 @@
   cd ${pkgname}-${pkgver}
   make -C src DESTDIR="${pkgdir}" LIBSUBDIR=lib install install_headers
   install -Dm 644 LICENSE* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md src/README.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 
 # vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:17:33
  Author: anthraxx
Revision: 1014584

archrelease: copy trunk to community-x86_64

Added:
  eksctl/repos/community-x86_64/PKGBUILD
(from rev 1014583, eksctl/trunk/PKGBUILD)
Deleted:
  eksctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 20:17:29 UTC (rev 1014583)
+++ PKGBUILD2021-09-12 20:17:33 UTC (rev 1014584)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Birks 
-# Contributor: Mike Williamson 
-
-pkgname=eksctl
-pkgver=0.64.0
-pkgrel=1
-pkgdesc='Command line tool for creating clusters on Amazon EKS'
-url='https://github.com/weaveworks/eksctl'
-arch=('x86_64')
-license=('Apache')
-depends=('kubectl' 'glibc')
-makedepends=('go')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f790a08f5a701948c7a7a63fdcf01183f09526e5033276e766ab22a76445c3e3')
-b2sums=('025ccd472cd01b0d36aa6d903f59d1ca872c8d1acad8d9cc43fd4c8ad893d24de75abec84c6a602906722a59178176a8a394c4fb2b70707ca43978af429af123')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
-./cmd/eksctl
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # completions
-  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: eksctl/repos/community-x86_64/PKGBUILD (from rev 1014583, 
eksctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 20:17:33 UTC (rev 1014584)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Birks 
+# Contributor: Mike Williamson 
+
+pkgname=eksctl
+pkgver=0.66.0
+pkgrel=1
+pkgdesc='Command line tool for creating clusters on Amazon EKS'
+url='https://github.com/weaveworks/eksctl'
+arch=('x86_64')
+license=('Apache')
+depends=('kubectl' 'glibc')
+makedepends=('go')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('ad323e4682b0bc7fcc208fa9724cb25596a9cc9c3c46cee037208819fb080ece')
+b2sums=('ccb645ad54e151304a9a67fd8796eef0926a0ca5b0bd38bf3ca42d472a3b78844cd5198106983acd8214cf035f902ed1612479c74bc7d689be3da24597751ced')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
+./cmd/eksctl
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # completions
+  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread Levente Polyak via arch-commits
Date: Sunday, September 12, 2021 @ 20:17:29
  Author: anthraxx
Revision: 1014583

upgpkg: eksctl 0.66.0-1

Modified:
  eksctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:27:54 UTC (rev 1014582)
+++ PKGBUILD2021-09-12 20:17:29 UTC (rev 1014583)
@@ -3,7 +3,7 @@
 # Contributor: Mike Williamson 
 
 pkgname=eksctl
-pkgver=0.64.0
+pkgver=0.66.0
 pkgrel=1
 pkgdesc='Command line tool for creating clusters on Amazon EKS'
 url='https://github.com/weaveworks/eksctl'
@@ -12,8 +12,8 @@
 depends=('kubectl' 'glibc')
 makedepends=('go')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f790a08f5a701948c7a7a63fdcf01183f09526e5033276e766ab22a76445c3e3')
-b2sums=('025ccd472cd01b0d36aa6d903f59d1ca872c8d1acad8d9cc43fd4c8ad893d24de75abec84c6a602906722a59178176a8a394c4fb2b70707ca43978af429af123')
+sha256sums=('ad323e4682b0bc7fcc208fa9724cb25596a9cc9c3c46cee037208819fb080ece')
+b2sums=('ccb645ad54e151304a9a67fd8796eef0926a0ca5b0bd38bf3ca42d472a3b78844cd5198106983acd8214cf035f902ed1612479c74bc7d689be3da24597751ced')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in python-django-haystack/repos/community-any (2 files)

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:27:54
  Author: dvzrv
Revision: 1014582

archrelease: copy trunk to community-any

Added:
  python-django-haystack/repos/community-any/PKGBUILD
(from rev 1014581, python-django-haystack/trunk/PKGBUILD)
Deleted:
  python-django-haystack/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 19:27:47 UTC (rev 1014581)
+++ PKGBUILD2021-09-12 19:27:54 UTC (rev 1014582)
@@ -1,50 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-haystack
-pkgname=python-django-haystack
-pkgver=3.0
-pkgrel=4
-pkgdesc="Modular search for Django"
-arch=('any')
-url="https://github.com/django-haystack/django-haystack;
-license=('BSD')
-depends=('python-django' 'python-six')
-makedepends=('git' 'python-setuptools-scm')
-checkdepends=('gdal' 'python-coverage' 'python-dateutil' 'python-elasticsearch'
-'python-geopy' 'python-mock' 'python-nose' 'python-pysolr' 'python-requests'
-'python-pytest' 'python-whoosh')
-optdepends=('python-elasticsearch: interface with an elasticsearch instance as 
search backend'
-'python-pysolr: interface with a solr instance as search backend'
-'python-whoosh: use whoosh as search backend'
-'python-xapian-haystack: use python-xapian as search backend')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('466ac18bbb6d6add1482d9debdffd195a2049c6c287cc4620e4db2ce4a702c97ca8ffb3ce048dc6c278dc50be701daab4f32b05a71c94ac67645890afb9f49bf')
-b2sums=('0766711b127dfa1515583998058f588bea1619a792d6eef353da569a212b94c36683c0a743bdabee563c473f19f3197800bd585faf0b4eb39663b5ffbac6d6b8')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  # remove useless version pinning
-  sed -e 's/==/>=/g' -i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-haystack/repos/community-any/PKGBUILD (from rev 1014581, 
python-django-haystack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 19:27:54 UTC (rev 1014582)
@@ -0,0 +1,48 @@
+# Maintainer: David Runge 
+
+_name=django-haystack
+pkgname=python-django-haystack
+pkgver=3.1.1
+pkgrel=1
+pkgdesc="Modular search for Django"
+arch=('any')
+url="https://github.com/django-haystack/django-haystack;
+license=('BSD')
+depends=('python-django' 'python-six')
+makedepends=('git' 'python-setuptools-scm')
+checkdepends=('gdal' 'python-coverage' 'python-dateutil' 'python-elasticsearch'
+'python-geopy' 'python-mock' 'python-nose' 'python-pysolr' 'python-requests'
+'python-pytest' 'python-whoosh')
+optdepends=('python-elasticsearch: interface with an elasticsearch instance as 
search backend'
+'python-pysolr: interface with a solr instance as search backend'
+'python-whoosh: use whoosh as search backend'
+'python-xapian-haystack: use python-xapian as search backend')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('509c2c922b6c6c5a2961b2d10b640cf82e8bc2536203c865c2c7a6fdebd2c7173616ce22d620bfd5ef14b61e11a9c88f64cc941195ff2adc2d62604d2c13717c')
+b2sums=('2e30f428de9e3c8eea4160821e5e409d53226523e6849c1f4412e895176c136f3332d93644e0c0397c0c67bef2779dd394082ae2bd89626b19ebb1e95174a290')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # remove useless version pinning
+  sed -e 's/==/>=/g' -i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --optimize=1 --root="${pkgdir}"
+  install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:27:47
  Author: dvzrv
Revision: 1014581

upgpkg: python-django-haystack 3.1.1-1: Upgrade to 3.1.1.

Modified:
  python-django-haystack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:22:24 UTC (rev 1014580)
+++ PKGBUILD2021-09-12 19:27:47 UTC (rev 1014581)
@@ -2,8 +2,8 @@
 
 _name=django-haystack
 pkgname=python-django-haystack
-pkgver=3.0
-pkgrel=4
+pkgver=3.1.1
+pkgrel=1
 pkgdesc="Modular search for Django"
 arch=('any')
 url="https://github.com/django-haystack/django-haystack;
@@ -18,8 +18,8 @@
 'python-whoosh: use whoosh as search backend'
 'python-xapian-haystack: use python-xapian as search backend')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('466ac18bbb6d6add1482d9debdffd195a2049c6c287cc4620e4db2ce4a702c97ca8ffb3ce048dc6c278dc50be701daab4f32b05a71c94ac67645890afb9f49bf')
-b2sums=('0766711b127dfa1515583998058f588bea1619a792d6eef353da569a212b94c36683c0a743bdabee563c473f19f3197800bd585faf0b4eb39663b5ffbac6d6b8')
+sha512sums=('509c2c922b6c6c5a2961b2d10b640cf82e8bc2536203c865c2c7a6fdebd2c7173616ce22d620bfd5ef14b61e11a9c88f64cc941195ff2adc2d62604d2c13717c')
+b2sums=('2e30f428de9e3c8eea4160821e5e409d53226523e6849c1f4412e895176c136f3332d93644e0c0397c0c67bef2779dd394082ae2bd89626b19ebb1e95174a290')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -41,9 +41,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
+  python setup.py install --optimize=1 --root="${pkgdir}"
   install -vDm 644 {AUTHORS,CONTRIBUTING.md,README.rst} \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:22:24
  Author: dvzrv
Revision: 1014580

archrelease: copy trunk to community-any

Added:
  python-django-environ/repos/community-any/PKGBUILD
(from rev 1014579, python-django-environ/trunk/PKGBUILD)
Deleted:
  python-django-environ/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 19:22:16 UTC (rev 1014579)
+++ PKGBUILD2021-09-12 19:22:24 UTC (rev 1014580)
@@ -1,40 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-environ
-pkgname=python-django-environ
-pkgver=0.4.5
-pkgrel=5
-pkgdesc="Utilize 12factor inspired environment variables to configure your 
Django application"
-arch=('any')
-url="https://github.com/joke2k/django-environ;
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('99dc88974194d17528b9b92d0fef2f87c331146879e0e25d4f64e1c87db76d85f5d902d2977bb2f55bf9208d120814a1afa15cb857f2228dfa3c5a03aa6db7c1')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="${PWD}/build:${PYTHONPATH}"
-  python setup.py test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {AUTHORS,CHANGELOG,README}.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-environ/repos/community-any/PKGBUILD (from rev 1014579, 
python-django-environ/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 19:22:24 UTC (rev 1014580)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+
+_name=django-environ
+pkgname=python-django-environ
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Utilize 12factor inspired environment variables to configure your 
Django application"
+arch=('any')
+url="https://github.com/joke2k/django-environ;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('b2e3fe9bfbcd7b37a5fa72e1a850488cbeb606a86cb05699c2a6422e9b1ba9918548d2dcd2f89c1eb90b6f8d27e0a835d5e02f86d07cd71646f7f8d98c4c28a0')
+b2sums=('f701e0d2d43899e6e4e0c0360d5a15727918d873eca890b8849536fe7e9f5b7f67538c75a3083758440bf9d2e4bc4e7bbec6e0e71498a9d31608c9354324a9df')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="${PWD}/build:${PYTHONPATH}"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --optimize=1 --root="${pkgdir}"
+  install -vDm 644 {AUTHORS,CHANGELOG,README}.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:22:16
  Author: dvzrv
Revision: 1014579

upgpkg: python-django-environ 0.7.0-1: Upgrade to 0.7.0.

Modified:
  python-django-environ/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:20:50 UTC (rev 1014578)
+++ PKGBUILD2021-09-12 19:22:16 UTC (rev 1014579)
@@ -2,8 +2,8 @@
 
 _name=django-environ
 pkgname=python-django-environ
-pkgver=0.4.5
-pkgrel=5
+pkgver=0.7.0
+pkgrel=1
 pkgdesc="Utilize 12factor inspired environment variables to configure your 
Django application"
 arch=('any')
 url="https://github.com/joke2k/django-environ;
@@ -12,7 +12,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('99dc88974194d17528b9b92d0fef2f87c331146879e0e25d4f64e1c87db76d85f5d902d2977bb2f55bf9208d120814a1afa15cb857f2228dfa3c5a03aa6db7c1')
+sha512sums=('b2e3fe9bfbcd7b37a5fa72e1a850488cbeb606a86cb05699c2a6422e9b1ba9918548d2dcd2f89c1eb90b6f8d27e0a835d5e02f86d07cd71646f7f8d98c4c28a0')
+b2sums=('f701e0d2d43899e6e4e0c0360d5a15727918d873eca890b8849536fe7e9f5b7f67538c75a3083758440bf9d2e4bc4e7bbec6e0e71498a9d31608c9354324a9df')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -31,10 +32,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
+  python setup.py install --optimize=1 --root="${pkgdir}"
   install -vDm 644 {AUTHORS,CHANGELOG,README}.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
   install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:18:07
  Author: dvzrv
Revision: 1014577

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-fluidsynth/repos/multilib-staging-x86_64/
  lib32-fluidsynth/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1014576, lib32-fluidsynth/trunk/PKGBUILD)

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

Copied: lib32-fluidsynth/repos/multilib-staging-x86_64/PKGBUILD (from rev 
1014576, lib32-fluidsynth/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2021-09-12 19:18:07 UTC (rev 1014577)
@@ -0,0 +1,70 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: David Runge 
+# Contributor: carstene1ns 
+# Contributor: Giuseppe Calà  
+# Contributor: Ray Rashif 
+# Contributor: damir 
+
+pkgname=lib32-fluidsynth
+_name=fluidsynth
+pkgver=2.2.3
+pkgrel=1
+pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
+arch=('x86_64')
+url="https://www.fluidsynth.org/;
+license=('LGPL2.1')
+depends=(
+  fluidsynth=${pkgver}
+  lib32-glibc
+  lib32-libpulse
+  lib32-readline
+  lib32-sdl2
+)
+makedepends=(
+  cmake
+  lib32-alsa-lib
+  lib32-dbus
+  lib32-glib2
+  lib32-jack
+  lib32-ladspa
+  lib32-libinstpatch
+  lib32-libsndfile
+  lib32-portaudio
+)
+optdepends=('pulseaudio: PulseAudio sound support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e')
+b2sums=('0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e')
+
+build() {
+  cd "${_name}-${pkgver}"
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-DLIB_SUFFIX=32 \
+-Denable-ladspa=ON \
+-Denable-portaudio=ON \
+-Wno-dev \
+-B build \
+-S .
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "${_name}-${pkgver}"
+  make -C build -k check
+}
+
+package() {
+  depends+=('libasound.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
+  'libgobject-2.0.so' 'libinstpatch-1.0.so' 'libjack.so' 'libportaudio.so'
+  'libsndfile.so')
+  cd "${_name}-${pkgver}"
+
+  make -C build DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}
+# vim: ts=2 sw=2 et:



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:17:59
  Author: dvzrv
Revision: 1014576

upgpkg: lib32-fluidsynth 2.2.3-1: Upgrade to 2.2.3.

Modified:
  lib32-fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 17:53:53 UTC (rev 1014575)
+++ PKGBUILD2021-09-12 19:17:59 UTC (rev 1014576)
@@ -7,7 +7,7 @@
 
 pkgname=lib32-fluidsynth
 _name=fluidsynth
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 pkgdesc='A real-time software synthesizer based on the SoundFont 2 
specifications'
 arch=('x86_64')
@@ -33,8 +33,8 @@
 )
 optdepends=('pulseaudio: PulseAudio sound support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('208956e367725de4b1faeba7d4125a6a85bb4191ef0354a7087809e93d93b8986cdc30b78c135a743104851d15f3bb09776855fa02a686de0810dd14c97851c3')
-b2sums=('78fe02ae37db70e7aa92071aa609ff6f3dc6217827f89091ded1a8e2d30e84f3d7a095e101fcccfe720e9c3445f58e15da588cfcd7063388ab642649536b8fa0')
+sha512sums=('67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e')
+b2sums=('0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e')
 
 build() {
   cd "${_name}-${pkgver}"



[arch-commits] Commit in fluidsynth/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:14:46
  Author: dvzrv
Revision: 423961

archrelease: copy trunk to staging-x86_64

Added:
  fluidsynth/repos/staging-x86_64/
  fluidsynth/repos/staging-x86_64/PKGBUILD
(from rev 423960, fluidsynth/trunk/PKGBUILD)

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

Copied: fluidsynth/repos/staging-x86_64/PKGBUILD (from rev 423960, 
fluidsynth/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-09-12 19:14:46 UTC (rev 423961)
@@ -0,0 +1,55 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: damir 
+
+pkgname=fluidsynth
+pkgver=2.2.3
+pkgrel=1
+pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
+arch=('x86_64')
+url="https://www.fluidsynth.org/;
+license=('LGPL2.1')
+groups=('pro-audio')
+depends=('glibc' 'sdl2')
+makedepends=('alsa-lib' 'cmake' 'dbus' 'doxygen' 'glib2' 'jack' 'ladspa'
+'libinstpatch' 'libpulse' 'libsndfile' 'portaudio' 'readline' 'systemd-libs')
+provides=('libfluidsynth.so' 'soundfont-synthesizer')
+backup=("etc/conf.d/$pkgname")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
+sha512sums=('67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e')
+b2sums=('0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-Denable-ladspa=ON \
+-Denable-portaudio=ON \
+-DLIB_SUFFIX="" \
+-Wno-dev \
+-B build \
+-S .
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -C build -k check
+}
+
+package() {
+  depends+=('libasound.so' 'libdbus-1.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
+  'libgobject-2.0.so' 'libinstpatch-1.0.so' 'libjack.so' 'libportaudio.so'
+  'libpulse-simple.so' 'libreadline.so' 'libsndfile.so' 'libsystemd.so')
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="$pkgdir" install
+  # systemd user unit
+  install -vDm 644 "build/${pkgname}.service" \
+-t "$pkgdir/usr/lib/systemd/user/"
+  # system-wide configuration file
+  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
+  # docs
+  install -vDm 644 {AUTHORS,ChangeLog,{CONTRIBUTING,README}.md,THANKS,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:14:39
  Author: dvzrv
Revision: 423960

upgpkg: fluidsynth 2.2.3-1: Upgrade to 2.2.3.

Modified:
  fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:14:09 UTC (rev 423959)
+++ PKGBUILD2021-09-12 19:14:39 UTC (rev 423960)
@@ -3,7 +3,7 @@
 # Contributor: damir 
 
 pkgname=fluidsynth
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
 arch=('x86_64')
@@ -16,8 +16,8 @@
 provides=('libfluidsynth.so' 'soundfont-synthesizer')
 backup=("etc/conf.d/$pkgname")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
-sha512sums=('208956e367725de4b1faeba7d4125a6a85bb4191ef0354a7087809e93d93b8986cdc30b78c135a743104851d15f3bb09776855fa02a686de0810dd14c97851c3')
-b2sums=('78fe02ae37db70e7aa92071aa609ff6f3dc6217827f89091ded1a8e2d30e84f3d7a095e101fcccfe720e9c3445f58e15da588cfcd7063388ab642649536b8fa0')
+sha512sums=('67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e')
+b2sums=('0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2021-09-12 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 12, 2021 @ 19:14:09
  Author: tpowa
Revision: 423959

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 19:14:05 UTC (rev 423958)
+++ PKGBUILD2021-09-12 19:14:09 UTC (rev 423959)
@@ -1,67 +0,0 @@
-# $Id: PKGBUILD,v 1.30 2006/12/19 01:28:39 thomas Exp $
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.09
-pkgrel=11
-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-nft>=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' 

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

2021-09-12 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 12, 2021 @ 19:14:05
  Author: tpowa
Revision: 423958

upgpkg: archboot 2021.09-12: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:12:34 UTC (rev 423957)
+++ PKGBUILD2021-09-12 19:14:05 UTC (rev 423958)
@@ -3,7 +3,7 @@
 
 pkgname=archboot
 pkgver=2021.09
-pkgrel=11
+pkgrel=12
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:12:34
  Author: dvzrv
Revision: 423957

archrelease: copy trunk to extra-x86_64

Added:
  mutt/repos/extra-x86_64/PKGBUILD
(from rev 423956, mutt/trunk/PKGBUILD)
Deleted:
  mutt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 19:12:26 UTC (rev 423956)
+++ PKGBUILD2021-09-12 19:12:34 UTC (rev 423957)
@@ -1,60 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Gaetan Bisson 
-# Contributor: tobias [tobias [at] archlinux.org]
-
-pkgname=mutt
-pkgver=2.1.2
-pkgrel=1
-pkgdesc="Small but very powerful text-based mail client"
-url="http://www.mutt.org/;
-license=('GPL2')
-arch=('x86_64')
-depends=('gdbm' 'glibc' 'libgpg-error' 'openssl' 'libsasl' 'mime-types'
-'sqlite' 'zlib')
-makedepends=('docbook-xml' 'docbook-xsl' 'elinks' 'git' 'gpgme' 'krb5'
-'libidn2' 'lynx' 'ncurses' 'libxslt')
-optdepends=('perl: for smime_keys'
-'python: for experimental mutt_oath2.py'
-'smtp-forwarder: to send mail')
-backup=('etc/Muttrc')
-source=("git+https://gitlab.com/muttmua/${pkgname}.git#tag=${pkgname}-${pkgver//./-}-rel?signed;)
-sha512sums=('SKIP')
-b2sums=('SKIP')
-validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') # Kevin J. McCarthy 

-
-prepare() {
-  cd "${pkgname}"
-  autoreconf -fiv
-}
-
-build() {
-  cd "${pkgname}"
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --enable-debug \
-  --enable-gpgme \
-  --enable-pop \
-  --enable-imap \
-  --enable-smtp \
-  --enable-hcache \
-  --enable-sidebar \
-  --enable-autocrypt \
-  --with-curses=/usr \
-  --with-gss=/usr \
-  --with-ssl=/usr \
-  --with-sqlite3 \
-  --with-sasl \
-  --with-idn2
-  make
-}
-
-package() {
-  depends+=('libgpgme.so' 'libgssapi_krb5.so' 'libidn2.so' 'libncursesw.so')
-
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-  install -vDm 644 contrib/gpg.rc "${pkgdir}/etc/Muttrc.gpg.dist"
-
-  # /etc/mime.types is provided by mailcap
-  rm "${pkgdir}"/etc/mime.types{,.dist}
-}

Copied: mutt/repos/extra-x86_64/PKGBUILD (from rev 423956, mutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 19:12:34 UTC (rev 423957)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge 
+# Contributor: Gaetan Bisson 
+# Contributor: tobias [tobias [at] archlinux.org]
+
+pkgname=mutt
+pkgver=2.1.3
+pkgrel=1
+pkgdesc="Small but very powerful text-based mail client"
+url="http://www.mutt.org/;
+license=('GPL2')
+arch=('x86_64')
+depends=('gdbm' 'glibc' 'libgpg-error' 'openssl' 'libsasl' 'mime-types'
+'sqlite' 'zlib')
+makedepends=('docbook-xml' 'docbook-xsl' 'elinks' 'git' 'gpgme' 'krb5'
+'libidn2' 'lynx' 'ncurses' 'libxslt')
+optdepends=('perl: for smime_keys'
+'python: for experimental mutt_oath2.py'
+'smtp-forwarder: to send mail')
+backup=('etc/Muttrc')
+source=("git+https://gitlab.com/muttmua/${pkgname}.git#tag=${pkgname}-${pkgver//./-}-rel?signed;)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') # Kevin J. McCarthy 

+
+prepare() {
+  cd "${pkgname}"
+  autoreconf -fiv
+}
+
+build() {
+  cd "${pkgname}"
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --enable-debug \
+  --enable-gpgme \
+  --enable-pop \
+  --enable-imap \
+  --enable-smtp \
+  --enable-hcache \
+  --enable-sidebar \
+  --enable-autocrypt \
+  --with-curses=/usr \
+  --with-gss=/usr \
+  --with-ssl=/usr \
+  --with-sqlite3 \
+  --with-sasl \
+  --with-idn2
+  make
+}
+
+package() {
+  depends+=('libgpgme.so' 'libgssapi_krb5.so' 'libidn2.so' 'libncursesw.so')
+
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+  install -vDm 644 contrib/gpg.rc "${pkgdir}/etc/Muttrc.gpg.dist"
+
+  # /etc/mime.types is provided by mailcap
+  rm "${pkgdir}"/etc/mime.types{,.dist}
+}



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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:12:26
  Author: dvzrv
Revision: 423956

upgpkg: mutt 2.1.3-1: Upgrade to 2.1.3.

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 19:11:42 UTC (rev 423955)
+++ PKGBUILD2021-09-12 19:12:26 UTC (rev 423956)
@@ -3,7 +3,7 @@
 # Contributor: tobias [tobias [at] archlinux.org]
 
 pkgname=mutt
-pkgver=2.1.2
+pkgver=2.1.3
 pkgrel=1
 pkgdesc="Small but very powerful text-based mail client"
 url="http://www.mutt.org/;



[arch-commits] Commit in ladspa/repos/extra-x86_64 (4 files)

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:11:42
  Author: dvzrv
Revision: 423955

archrelease: copy trunk to extra-x86_64

Added:
  ladspa/repos/extra-x86_64/PKGBUILD
(from rev 423954, ladspa/trunk/PKGBUILD)
  ladspa/repos/extra-x86_64/fix-memleak-in-plugin-scanning.patch
(from rev 423954, ladspa/trunk/fix-memleak-in-plugin-scanning.patch)
Deleted:
  ladspa/repos/extra-x86_64/PKGBUILD
  ladspa/repos/extra-x86_64/fix-memleak-in-plugin-scanning.patch

--+
 PKGBUILD |   82 -
 fix-memleak-in-plugin-scanning.patch |   22 
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 19:11:25 UTC (rev 423954)
+++ PKGBUILD2021-09-12 19:11:42 UTC (rev 423955)
@@ -1,41 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: damir 
-
-pkgname=ladspa
-pkgver=1.16
-pkgrel=1
-pkgdesc="Linux Audio Developer's Simple Plugin API (LADSPA)"
-arch=('x86_64')
-license=('LGPL2.1')
-url="https://www.ladspa.org/;
-depends=('gcc-libs' 'glibc')
-makedepends=('libsndfile')
-optdepends=('libsndfile: for applyplugin')
-source=("https://ladspa.org/download/ladspa_sdk_${pkgver}.tgz;
-'fix-memleak-in-plugin-scanning.patch')
-sha512sums=('861178f309d6c25a67841ea3097535f52fcd55f5d5fab897897c95e7cda8e973cf7c1ea7cc30fcfa29a320f2b5f13c2e6e3b42a7d1c55062b3c71abbb6239505'
-
'e80a575e6afe42f9d0ac1234a7832a29fb9362c7ab7b2d6b14cc3e6da6a9ba67af886cf09f1c0b78c161205084f705049fb4dc22fe2795efaeb7d94da90dc93e')
-b2sums=('42af7cca21891a667d84441b1f03ce1e250eda4555c6330f66566e633bb32002f72b4f2ef68a9638d761871932f212060e931025182c28147be02d780e15d32b'
-
'b2235b41d9638cceb93a41452f1f0b710bc3f9264fe735972099244dfc8d98d354c7d15084d79b0bdfc4fa3f437f9368f81aa0ebdb7e39df5900fbbf172927c2')
-
-prepare() {
-  mv -v ${pkgname}_sdk_${pkgver} ${pkgname}-${pkgver}
-  cd "${pkgname}-${pkgver}"
-  patch -Np0 -i "../fix-memleak-in-plugin-scanning.patch"
-  # add LDFLAGS for full RELRO
-  sed -e "s#-O2#${CFLAGS} ${LDFLAGS}#" -i src/Makefile
-}
-
-build() {
-  cd "${pkgname}-${pkgver}/src"
-  make targets
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/src"
-  make INSTALL_PLUGINS_DIR="${pkgdir}/usr/lib/ladspa/" \
-   INSTALL_INCLUDE_DIR="${pkgdir}/usr/include/" \
-   INSTALL_BINARY_DIR="${pkgdir}/usr/bin/" install
-  install -vDm 644 ../doc/*.{html,txt} -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-

Copied: ladspa/repos/extra-x86_64/PKGBUILD (from rev 423954, 
ladspa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 19:11:42 UTC (rev 423955)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+# Contributor: damir 
+
+pkgname=ladspa
+pkgver=1.17
+pkgrel=1
+pkgdesc="Linux Audio Developer's Simple Plugin API (LADSPA)"
+arch=('x86_64')
+license=('LGPL2.1')
+url="https://www.ladspa.org/;
+depends=('gcc-libs' 'glibc')
+makedepends=('libsndfile')
+optdepends=('libsndfile: for applyplugin')
+source=("https://ladspa.org/download/ladspa_sdk_${pkgver}.tgz;
+'fix-memleak-in-plugin-scanning.patch')
+sha512sums=('37f94aa52b5a2f8709528989dea289eb01342f3bcb9e85d0f4829ddd9d90b2934a113db11100f09375a50f6612122b78156fec916f2c78a22406253d5cb394c7'
+
'e80a575e6afe42f9d0ac1234a7832a29fb9362c7ab7b2d6b14cc3e6da6a9ba67af886cf09f1c0b78c161205084f705049fb4dc22fe2795efaeb7d94da90dc93e')
+b2sums=('cfb80e8ced314d5cc62fcb7f0b82e58f572503f2a732b2bb8a58343e8f69e417c0b0a2919bbb40629567fb331bf60a7f0c6f186db47e5b2651725b039526cdbb'
+
'b2235b41d9638cceb93a41452f1f0b710bc3f9264fe735972099244dfc8d98d354c7d15084d79b0bdfc4fa3f437f9368f81aa0ebdb7e39df5900fbbf172927c2')
+
+prepare() {
+  mv -v ${pkgname}_sdk_${pkgver} ${pkgname}-${pkgver}
+  cd "${pkgname}-${pkgver}"
+  patch -Np0 -i "../fix-memleak-in-plugin-scanning.patch"
+  # add LDFLAGS for full RELRO
+  sed -e "s#-O2#${CFLAGS} ${LDFLAGS}#" -i src/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/src"
+  make targets
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/src"
+  make INSTALL_PLUGINS_DIR="${pkgdir}/usr/lib/ladspa/" \
+   INSTALL_INCLUDE_DIR="${pkgdir}/usr/include/" \
+   INSTALL_BINARY_DIR="${pkgdir}/usr/bin/" install
+  install -vDm 644 ../doc/*.{html,txt} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+

Deleted: fix-memleak-in-plugin-scanning.patch
===
--- fix-memleak-in-plugin-scanning.patch2021-09-12 19:11:25 UTC (rev 
423954)
+++ fix-memleak-in-plugin-scanning.patch2021-09-12 19:11:42 UTC (rev 
423955)
@@ -1,11 +0,0 @@
 src/search.c.orig  2008-11-07 00:38:18.0 +0100
-+++ src/search.c   2008-11-07 00:50:51.0 +0100
-@@ -83,6 +83,8 @@
-   dlclose(pcFilename);
-   free(pcFilename);
-   }
-+} else {
-+  free(pcFilename);
- }
-   }
- }

Copied: 

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

2021-09-12 Thread David Runge via arch-commits
Date: Sunday, September 12, 2021 @ 19:11:25
  Author: dvzrv
Revision: 423954

upgpkg: ladspa 1.17-1: Upgrade to 1.17.

Modified:
  ladspa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-12 18:57:08 UTC (rev 423953)
+++ PKGBUILD2021-09-12 19:11:25 UTC (rev 423954)
@@ -2,7 +2,7 @@
 # Contributor: damir 
 
 pkgname=ladspa
-pkgver=1.16
+pkgver=1.17
 pkgrel=1
 pkgdesc="Linux Audio Developer's Simple Plugin API (LADSPA)"
 arch=('x86_64')
@@ -13,9 +13,9 @@
 optdepends=('libsndfile: for applyplugin')
 source=("https://ladspa.org/download/ladspa_sdk_${pkgver}.tgz;
 'fix-memleak-in-plugin-scanning.patch')
-sha512sums=('861178f309d6c25a67841ea3097535f52fcd55f5d5fab897897c95e7cda8e973cf7c1ea7cc30fcfa29a320f2b5f13c2e6e3b42a7d1c55062b3c71abbb6239505'
+sha512sums=('37f94aa52b5a2f8709528989dea289eb01342f3bcb9e85d0f4829ddd9d90b2934a113db11100f09375a50f6612122b78156fec916f2c78a22406253d5cb394c7'
 
'e80a575e6afe42f9d0ac1234a7832a29fb9362c7ab7b2d6b14cc3e6da6a9ba67af886cf09f1c0b78c161205084f705049fb4dc22fe2795efaeb7d94da90dc93e')
-b2sums=('42af7cca21891a667d84441b1f03ce1e250eda4555c6330f66566e633bb32002f72b4f2ef68a9638d761871932f212060e931025182c28147be02d780e15d32b'
+b2sums=('cfb80e8ced314d5cc62fcb7f0b82e58f572503f2a732b2bb8a58343e8f69e417c0b0a2919bbb40629567fb331bf60a7f0c6f186db47e5b2651725b039526cdbb'
 
'b2235b41d9638cceb93a41452f1f0b710bc3f9264fe735972099244dfc8d98d354c7d15084d79b0bdfc4fa3f437f9368f81aa0ebdb7e39df5900fbbf172927c2')
 
 prepare() {



[arch-commits] Commit in qt5-base/repos/extra-x86_64 (6 files)

2021-09-12 Thread Antonio Rojas via arch-commits
Date: Sunday, September 12, 2021 @ 18:57:08
  Author: arojas
Revision: 423953

archrelease: copy trunk to extra-x86_64

Added:
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 423952, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
(from rev 423952, qt5-base/trunk/qt5-base-cflags.patch)
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch
(from rev 423952, qt5-base/trunk/qt5-base-nostrip.patch)
Deleted:
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch

+
 PKGBUILD   |  222 +++
 qt5-base-cflags.patch  |   92 +--
 qt5-base-nostrip.patch |   26 ++---
 3 files changed, 170 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 18:47:00 UTC (rev 423952)
+++ PKGBUILD2021-09-12 18:57:08 UTC (rev 423953)
@@ -1,111 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-pkgver=5.15.2+kde+r222
-pkgrel=2
-_commit=d2bd04d9fe03912097d3246b7d03ef14f425256b
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
- 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
- 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion' 'md4c')
-makedepends=('libfbclient' 'mariadb-libs' 'unixodbc' 'postgresql-libs' 
'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers' 'git')
-optdepends=('qt5-svg: to use SVG icon themes'
-'qt5-wayland: to run Qt applications in a Wayland session'
-'qt5-translations: for some native UI translations'
-'postgresql-libs: PostgreSQL driver'
-'mariadb-libs: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin'
-'perl: for fixqt4headers and syncqt')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn=qtbase
-source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
-qt5-base-cflags.patch
-qt5-base-nostrip.patch)
-sha256sums=('SKIP'
-'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c'
-'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094')
-
-pkgver() {
-  cd $_pkgfqn
-  echo "5.15.2+kde+r"`git rev-list --count origin/5.15.2..$_commit`
-}
-
-prepare() {
-  cd ${_pkgfqn}
-
-  git revert -n 6344955d17e17e2398720fe60c34cfc2a4a95208 # Revert version bump
-
-  patch -p1 < ../qt5-base-cflags.patch # Use system CFLAGS in qmake
-  patch -p1 < ../qt5-base-nostrip.patch # Don't strip binaries with qmake
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-mimetype-database \
--no-use-gold-linker \
--reduce-relocations \
--no-strip
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}
-
-package_qt5-xcb-private-headers() {
-  pkgdesc='Private headers for Qt5 Xcb'
-
-  depends=("qt5-base=$pkgver")
-  optdepends=()
-  groups=()
-  conflicts=()
-
-  cd ${_pkgfqn}
-  install -d -m755 "$pkgdir"/usr/include/qtxcb-private
-  cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
-}

Copied: qt5-base/repos/extra-x86_64/PKGBUILD (from rev 423952, 
qt5-base/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-12 18:57:08 UTC (rev 423953)
@@ 

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

2021-09-12 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 12, 2021 @ 18:47:00
  Author: tpowa
Revision: 423952

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-12 18:46:55 UTC (rev 423951)
+++ PKGBUILD2021-09-12 18:47:00 UTC (rev 423952)
@@ -1,67 +0,0 @@
-# $Id: PKGBUILD,v 1.30 2006/12/19 01:28:39 thomas Exp $
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.09
-pkgrel=10
-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-nft>=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' 

  1   2   >