[arch-commits] Commit in ipmitool/repos/community-x86_64 (6 files)
Date: Sunday, September 4, 2022 @ 08:34:35 Author: bluewind Revision: 1292806 archrelease: copy trunk to community-x86_64 Added: ipmitool/repos/community-x86_64/9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch (from rev 1292805, ipmitool/trunk/9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch) ipmitool/repos/community-x86_64/PKGBUILD (from rev 1292805, ipmitool/trunk/PKGBUILD) ipmitool/repos/community-x86_64/ipmitool-openssl-1.1.patch (from rev 1292805, ipmitool/trunk/ipmitool-openssl-1.1.patch) Deleted: ipmitool/repos/community-x86_64/9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch ipmitool/repos/community-x86_64/PKGBUILD ipmitool/repos/community-x86_64/ipmitool-openssl-1.1.patch ---+ 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch | 74 +++--- PKGBUILD | 103 +++-- ipmitool-openssl-1.1.patch| 178 3 files changed, 160 insertions(+), 195 deletions(-) Deleted: 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch === --- 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch 2022-09-04 08:34:29 UTC (rev 1292805) +++ 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch 2022-09-04 08:34:35 UTC (rev 1292806) @@ -1,37 +0,0 @@ -NOTE: This diff has been adjusted to apply to 1.8.18. - - -From 9452be87181a6e83cfcc768b3ed8321763db50e4 Mon Sep 17 00:00:00 2001 -From: Chrostoper Ertl -Date: Thu, 28 Nov 2019 16:56:38 + -Subject: [PATCH] channel: Fix buffer overflow -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Partial fix for CVE-2020-5208, see -https://github.com/ipmitool/ipmitool/security/advisories/GHSA-g659-9qxw-p7cp - -The `ipmi_get_channel_cipher_suites` function does not properly check -the final response’s `data_len`, which can lead to stack buffer overflow -on the final copy. - lib/ipmi_channel.c | 5 - - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/lib/ipmi_channel.c b/lib/ipmi_channel.c -index a6a6a424..433c4d36 100644 a/lib/ipmi_channel.c -+++ b/lib/ipmi_channel.c -@@ -498,7 +498,10 @@ ipmi_get_channel_cipher_suites(struct ipmi_intf *intf, - lprintf(LOG_ERR, "Unable to Get Channel Cipher Suites"); - return -1; - } -- if (rsp->ccode > 0) { -+ if (rsp->ccode -+ || rsp->data_len < 1 -+ || rsp->data_len > sizeof(uint8_t) + MAX_CIPHER_SUITE_DATA_LEN) -+ { - lprintf(LOG_ERR, "Get Channel Cipher Suites failed: %s", - val2str(rsp->ccode, completion_code_vals)); - return -1; Copied: ipmitool/repos/community-x86_64/9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch (from rev 1292805, ipmitool/trunk/9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch) === --- 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch (rev 0) +++ 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch 2022-09-04 08:34:35 UTC (rev 1292806) @@ -0,0 +1,37 @@ +NOTE: This diff has been adjusted to apply to 1.8.18. + + +From 9452be87181a6e83cfcc768b3ed8321763db50e4 Mon Sep 17 00:00:00 2001 +From: Chrostoper Ertl +Date: Thu, 28 Nov 2019 16:56:38 + +Subject: [PATCH] channel: Fix buffer overflow +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Partial fix for CVE-2020-5208, see +https://github.com/ipmitool/ipmitool/security/advisories/GHSA-g659-9qxw-p7cp + +The `ipmi_get_channel_cipher_suites` function does not properly check +the final response’s `data_len`, which can lead to stack buffer overflow +on the final copy. +--- + lib/ipmi_channel.c | 5 - + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/lib/ipmi_channel.c b/lib/ipmi_channel.c +index a6a6a424..433c4d36 100644 +--- a/lib/ipmi_channel.c b/lib/ipmi_channel.c +@@ -498,7 +498,10 @@ ipmi_get_channel_cipher_suites(struct ipmi_intf *intf, + lprintf(LOG_ERR, "Unable to Get Channel Cipher Suites"); + return -1; + } +- if (rsp->ccode > 0) { ++ if (rsp->ccode ++ || rsp->data_len < 1 ++ || rsp->data_len > sizeof(uint8_t) + MAX_CIPHER_SUITE_DATA_LEN) ++ { + lprintf(LOG_ERR, "Get Channel Cipher Suites failed: %s", + val2str(rsp->ccode, completion_code_vals)); + return -1; Deleted: PKGBUILD === --- PKGBUILD2022-09-04 08:34:29 UTC (rev 1292805) +++ PKGBUILD2022-09
[arch-commits] Commit in ipmitool/trunk (PKGBUILD)
Date: Sunday, September 4, 2022 @ 08:34:29 Author: bluewind Revision: 1292805 upgpkg: ipmitool 1.8.19-1: upstream update Modified: ipmitool/trunk/PKGBUILD --+ PKGBUILD | 53 + 1 file changed, 9 insertions(+), 44 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-09-04 08:14:41 UTC (rev 1292804) +++ PKGBUILD2022-09-04 08:34:29 UTC (rev 1292805) @@ -3,64 +3,29 @@ # Contributor: gori pkgname=ipmitool -pkgver=1.8.18 -pkgrel=7 +pkgver=1.8.19 +pkgrel=1 pkgdesc="Command-line interface to IPMI-enabled devices" arch=('x86_64') -url="http://ipmitool.sourceforge.net"; +url="https://github.com/ipmitool/ipmitool"; depends=('openssl') license=('BSD') -source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2"; - ipmitool-openssl-1.1.patch - https://github.com/ipmitool/ipmitool/commit/e824c23316ae50beb7f7488f2055ac65e8b341f2.patch - https://github.com/ipmitool/ipmitool/commit/840fb1cbb4fb365cb9797300e3374d4faefcdb10.patch - https://github.com/ipmitool/ipmitool/commit/41d7026946fafbd4d1ec0bcaca3ea30a6e8eed22.patch - #https://github.com/ipmitool/ipmitool/commit/9452be87181a6e83cfcc768b3ed8321763db50e4.patch - 9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch - https://github.com/ipmitool/ipmitool/commit/d45572d71e70840e0d4c50bf48218492b79c1a10.patch - https://github.com/ipmitool/ipmitool/commit/7ccea283dd62a05a320c1921e3d8d71a87772637.patch +source=("https://github.com/ipmitool/ipmitool/archive/refs/tags/IPMITOOL_${pkgver//./_}.tar.gz"; ) -sha256sums=('0c1ba3b1555edefb7c32ae8cd6a3e04322056bc087918f07189eeedfc8b81e01' -'7da20584541279045b4a4743600925b70fe162e1437a8da6647414926e12b58f' -'fcf8a1fce7f902adcb6500143ec04f6541474a2e0e78acfdf52276d3e421e84f' -'9774148893ed44f5d85bec26cd54f31ef6f7491232eb3f44f65d391547d83cda' -'42ce1143b05e160cee9cc6fb6ed13938ffc62dc11eec0343caccf463d49b76b8' -'d51c1f481d4fc1d3fd5617ceeda16327fb6a6916103cf7334f6e44cd325ea0e0' -'0b6535b7b54485a9ba107ae09fccdff9f816ae1c4d8a8fe334df6fb48d2ec63a' -'146316f1b4001e3929c794d25ee2dacc7602676060da80b9c1655ec01a0032e3') +sha256sums=('48b010e7bcdf93e4e4b6e43c53c7f60aa6873d574cbd45a8d86fa7aaeebaff9c') -prepare() { -cd ${pkgname}-${pkgver} -# openssl 1.1 support (Fedora) -patch -p1 -i ../ipmitool-openssl-1.1.patch +_srcdir_name="ipmitool-IPMITOOL_${pkgver//./_}" -# FS#69708 - [ipmitool] [Security] arbitrary code execution (CVE-2020-5208) -patch -p1 -i ../e824c23316ae50beb7f7488f2055ac65e8b341f2.patch -patch -p1 -i ../840fb1cbb4fb365cb9797300e3374d4faefcdb10.patch -patch -p1 -i ../41d7026946fafbd4d1ec0bcaca3ea30a6e8eed22.patch -patch -p1 -i ../9452be87181a6e83cfcc768b3ed8321763db50e4-edited.patch -patch -p1 -i ../d45572d71e70840e0d4c50bf48218492b79c1a10.patch -patch -p1 -i ../7ccea283dd62a05a320c1921e3d8d71a87772637.patch -} - build(){ - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_srcdir_name}" - CFLAGS+=' -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common - - # Fix warning in ipmi_fru.c - CFLAGS+=' -Wno-maybe-uninitialized' - - if [[ $pkgver = '1.8.18' ]]; then - CFLAGS+=' -DMAX_CIPHER_SUITE_DATA_LEN=0x10' - fi - + ./bootstrap ./configure --prefix=/usr --sbindir=/usr/bin --with-kerneldir make } package(){ - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_srcdir_name}" make DESTDIR="${pkgdir}" install
[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)
Date: Sunday, August 28, 2022 @ 11:11:43 Author: bluewind Revision: 454663 archrelease: copy trunk to core-any Added: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 454662, pacman-mirrorlist/trunk/PKGBUILD) pacman-mirrorlist/repos/core-any/mirrorlist (from rev 454662, pacman-mirrorlist/trunk/mirrorlist) pacman-mirrorlist/repos/core-any/upgpkg (from rev 454662, pacman-mirrorlist/trunk/upgpkg) Deleted: pacman-mirrorlist/repos/core-any/PKGBUILD pacman-mirrorlist/repos/core-any/mirrorlist pacman-mirrorlist/repos/core-any/upgpkg + PKGBUILD | 62 +- mirrorlist | 1768 +-- upgpkg |8 3 files changed, 921 insertions(+), 917 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-08-28 11:11:40 UTC (rev 454662) +++ PKGBUILD2022-08-28 11:11:43 UTC (rev 454663) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Dan McGee - -pkgname=pacman-mirrorlist -pkgver=20220724 -pkgrel=1 -pkgdesc="Arch Linux mirror list for use by pacman" -arch=('any') -url="https://www.archlinux.org/mirrorlist/"; -license=('GPL') -backup=(etc/pacman.d/mirrorlist) -source=(mirrorlist) - -# NOTE on building this package: -# * Go to the trunk/ directory -# * Run bash -c ". PKGBUILD; updatelist" -# * Update the checksums, update pkgver -# * Build the package - -updatelist() { - rm -f mirrorlist - curl -o mirrorlist https://archlinux.org/mirrorlist/all/ -} - -package() { - mkdir -p "$pkgdir/etc/pacman.d" - install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" -} - -md5sums=('414ac013b01bb6aa49a66f8eb51971b6') -sha256sums=('3bb6bea7409d92edee2854014bf1a467fddb744075dd18b05bf233ec5772367c') Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 454662, pacman-mirrorlist/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-08-28 11:11:43 UTC (rev 454663) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Dan McGee + +pkgname=pacman-mirrorlist +pkgver=20220828 +pkgrel=1 +pkgdesc="Arch Linux mirror list for use by pacman" +arch=('any') +url="https://www.archlinux.org/mirrorlist/"; +license=('GPL') +backup=(etc/pacman.d/mirrorlist) +source=(mirrorlist) + +# NOTE on building this package: +# * Go to the trunk/ directory +# * Run bash -c ". PKGBUILD; updatelist" +# * Update the checksums, update pkgver +# * Build the package + +updatelist() { + rm -f mirrorlist + curl -o mirrorlist https://archlinux.org/mirrorlist/all/ +} + +package() { + mkdir -p "$pkgdir/etc/pacman.d" + install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" +} + +md5sums=('763a8a7d72ead582769aefb9797d7f1b') +sha256sums=('586425be2572b3a06abe579bd4d091f551f28b6ef1b0e4a6b98fd2d18763150d') Deleted: mirrorlist === --- mirrorlist 2022-08-28 11:11:40 UTC (rev 454662) +++ mirrorlist 2022-08-28 11:11:43 UTC (rev 454663) @@ -1,882 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2022-07-24 -## - -## Worldwide -#Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://sydney.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch -#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch -#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlin
[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)
Date: Sunday, August 28, 2022 @ 11:11:40 Author: bluewind Revision: 454662 upgpkg: pacman-mirrorlist 20220828-1: upstream update Modified: pacman-mirrorlist/trunk/PKGBUILD pacman-mirrorlist/trunk/mirrorlist + PKGBUILD |6 +++--- mirrorlist | 14 +- 2 files changed, 12 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-08-28 09:59:07 UTC (rev 454661) +++ PKGBUILD2022-08-28 11:11:40 UTC (rev 454662) @@ -2,7 +2,7 @@ # Contributor: Dan McGee pkgname=pacman-mirrorlist -pkgver=20220724 +pkgver=20220828 pkgrel=1 pkgdesc="Arch Linux mirror list for use by pacman" arch=('any') @@ -27,5 +27,5 @@ install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" } -md5sums=('414ac013b01bb6aa49a66f8eb51971b6') -sha256sums=('3bb6bea7409d92edee2854014bf1a467fddb744075dd18b05bf233ec5772367c') +md5sums=('763a8a7d72ead582769aefb9797d7f1b') +sha256sums=('586425be2572b3a06abe579bd4d091f551f28b6ef1b0e4a6b98fd2d18763150d') Modified: mirrorlist === --- mirrorlist 2022-08-28 09:59:07 UTC (rev 454661) +++ mirrorlist 2022-08-28 11:11:40 UTC (rev 454662) @@ -1,6 +1,6 @@ ## ## Arch Linux repository mirrorlist -## Generated on 2022-07-24 +## Generated on 2022-08-28 ## ## Worldwide @@ -150,6 +150,7 @@ #Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch #Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch #Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch +#Server = https://mirrors.nic.cz/archlinux/$repo/os/$arch #Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch #Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch #Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch @@ -366,6 +367,7 @@ #Server = https://mirror.system.is/arch/$repo/os/$arch ## India +#Server = https://mirrors.abhy.me/archlinux/$repo/os/$arch #Server = https://mirror.albony.xyz/archlinux/$repo/os/$arch #Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch #Server = http://in-mirror.garudalinux.org/archlinux/$repo/os/$arch @@ -634,8 +636,8 @@ ## Slovenia #Server = http://archimonde.ts.si/archlinux/$repo/os/$arch #Server = https://archimonde.ts.si/archlinux/$repo/os/$arch -#Server = http://arch.tux.si/mirror/$repo/os/$arch -#Server = https://arch.tux.si/mirror/$repo/os/$arch +#Server = http://mirror.tux.si/arch/$repo/os/$arch +#Server = https://mirror.tux.si/arch/$repo/os/$arch ## South Africa #Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch @@ -778,11 +780,13 @@ #Server = https://mirror.ette.biz/archlinux/$repo/os/$arch #Server = http://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch #Server = http://coresite.mm.fcix.net/archlinux/$repo/os/$arch +#Server = http://forksystems.mm.fcix.net/archlinux/$repo/os/$arch #Server = http://mirror.fcix.net/archlinux/$repo/os/$arch #Server = http://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch #Server = http://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch #Server = https://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch #Server = https://coresite.mm.fcix.net/archlinux/$repo/os/$arch +#Server = https://forksystems.mm.fcix.net/archlinux/$repo/os/$arch #Server = https://mirror.fcix.net/archlinux/$repo/os/$arch #Server = https://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch #Server = https://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch @@ -828,9 +832,8 @@ #Server = http://archmirror1.octyl.net/$repo/os/$arch #Server = https://archmirror1.octyl.net/$repo/os/$arch #Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch +#Server = https://ftp.osuosl.org/pub/archlinux/$repo/os/$arch #Server = http://arch.mirrors.pair.com/$repo/os/$arch -#Server = http://archlinux.qern-industries.pw/$repo/os/$arch -#Server = https://archlinux.qern-industries.pw/$repo/os/$arch #Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch #Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch #Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch @@ -869,6 +872,7 @@ #Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch #Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch #Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch +#Server = https://mirror.zackmyers.io/archlinux/$repo/os/$arch #Server = https://zxcvfdsa.com/arch/$repo/os/$arch ## Uzbekistan
[arch-commits] Commit in python-internetarchive/repos/community-any (2 files)
Date: Sunday, August 28, 2022 @ 11:11:13 Author: bluewind Revision: 1285073 archrelease: copy trunk to community-any Added: python-internetarchive/repos/community-any/PKGBUILD (from rev 1285072, python-internetarchive/trunk/PKGBUILD) Deleted: python-internetarchive/repos/community-any/PKGBUILD --+ PKGBUILD | 106 +++-- 1 file changed, 54 insertions(+), 52 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-08-28 11:11:09 UTC (rev 1285072) +++ PKGBUILD2022-08-28 11:11:13 UTC (rev 1285073) @@ -1,52 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: David McInnis -# Contributor: jyantis - -pkgname=python-internetarchive -pkgver=3.0.1 -pkgrel=1 -pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' -arch=('any') -url='https://github.com/jjjake/ia-wrapper' -license=('AGPL3') -depends=('python' - 'python-six' - 'python-yaml' - 'python-requests' - 'python-jsonpatch' - 'python-docopt' - 'python-jsonpointer' - 'python-args' - 'python-tqdm' - 'python-schema' -) -makedepends=('python-setuptools') -optdepends=('python-ujson: faster json parsing' -'python-gevent: concurrent downloads' -'cython: speedups') -checkdepends=(python-responses - python-pytest - ) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839') - -build() { - cd internetarchive-${pkgver} - python setup.py build -} - -check() { - cd internetarchive-${pkgver} - - python setup.py test -} - -package() { - cd internetarchive-${pkgver} - python setup.py install --root="${pkgdir}" --optimize=1 - - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" -} - -# vim:set ts=2 sw=2 et: Copied: python-internetarchive/repos/community-any/PKGBUILD (from rev 1285072, python-internetarchive/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-08-28 11:11:13 UTC (rev 1285073) @@ -0,0 +1,54 @@ +# Maintainer: Florian Pritz +# Contributor: David McInnis +# Contributor: jyantis + +pkgname=python-internetarchive +pkgver=3.0.2 +pkgrel=1 +pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' +arch=('any') +url='https://github.com/jjjake/ia-wrapper' +license=('AGPL3') +depends=('python' + 'python-six' + 'python-yaml' + 'python-requests' + 'python-jsonpatch' + 'python-docopt' + 'python-jsonpointer' + 'python-args' + 'python-tqdm' + 'python-schema' +) +makedepends=('python-setuptools') +optdepends=('python-ujson: faster json parsing' +'python-gevent: concurrent downloads' +'cython: speedups') +checkdepends=(python-responses + python-pytest + ) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) +sha256sums=('3ed072df55211ebedac00f226c88f27313a74e32d54b1af882e664ace083f3ac') + +build() { + cd internetarchive-${pkgver} + python setup.py build +} + +check() { + cd internetarchive-${pkgver} + + # FIXME: tests/cli/test_ia_download.py tries to run `ia`, but the binary is not + # installed and installing + changing $PATH does not seem to work. deselect the test for now + pytest --deselect 'tests/cli/test_ia_download.py' +} + +package() { + cd internetarchive-${pkgver} + python setup.py install --root="${pkgdir}" --optimize=1 + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-internetarchive/trunk (PKGBUILD)
Date: Sunday, August 28, 2022 @ 11:11:09 Author: bluewind Revision: 1285072 upgpkg: python-internetarchive 3.0.2-1: upstream update Modified: python-internetarchive/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-08-28 10:55:16 UTC (rev 1285071) +++ PKGBUILD2022-08-28 11:11:09 UTC (rev 1285072) @@ -3,7 +3,7 @@ # Contributor: jyantis pkgname=python-internetarchive -pkgver=3.0.1 +pkgver=3.0.2 pkgrel=1 pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' arch=('any') @@ -28,7 +28,7 @@ python-pytest ) source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839') +sha256sums=('3ed072df55211ebedac00f226c88f27313a74e32d54b1af882e664ace083f3ac') build() { cd internetarchive-${pkgver} @@ -38,7 +38,9 @@ check() { cd internetarchive-${pkgver} - python setup.py test + # FIXME: tests/cli/test_ia_download.py tries to run `ia`, but the binary is not + # installed and installing + changing $PATH does not seem to work. deselect the test for now + pytest --deselect 'tests/cli/test_ia_download.py' } package() {
[arch-commits] Commit in ack/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, August 28, 2022 @ 10:32:15 Author: bluewind Revision: 1285069 archrelease: copy trunk to community-any Added: ack/repos/community-any/PKGBUILD (from rev 1285068, ack/trunk/PKGBUILD) Deleted: ack/repos/community-any/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-08-28 10:32:12 UTC (rev 1285068) +++ PKGBUILD2022-08-28 10:32:15 UTC (rev 1285069) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: TDY -# Contributor: Michael S. Walker - -pkgname=ack -pkgver=3.5.0 -pkgrel=3 -pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees of heterogeneous source code" -arch=('any') -url="http://betterthangrep.com/"; -license=('GPL' 'PerlArtistic') -depends=('perl-file-next') -options=('!emptydirs') -source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";) -md5sums=('7d0ed07ac0f546b5c4641ce4d2b46b99') - -build() { - cd "$srcdir/$pkgname-v$pkgver" - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor - make -} - -check() { - cd "$srcdir/$pkgname-v$pkgver" - make test -} - -package() { - cd "$srcdir/$pkgname-v$pkgver" - make DESTDIR="$pkgdir" install -} Copied: ack/repos/community-any/PKGBUILD (from rev 1285068, ack/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-08-28 10:32:15 UTC (rev 1285069) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: TDY +# Contributor: Michael S. Walker + +pkgname=ack +pkgver=3.6.0 +pkgrel=1 +pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees of heterogeneous source code" +arch=('any') +url="http://betterthangrep.com/"; +license=('GPL' 'PerlArtistic') +depends=('perl-file-next') +options=('!emptydirs') +source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";) +md5sums=('f601a803b45974bf6f0b72207b5e883e') + +build() { + cd "$srcdir/$pkgname-v$pkgver" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "$srcdir/$pkgname-v$pkgver" + make test +} + +package() { + cd "$srcdir/$pkgname-v$pkgver" + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in ack/trunk (PKGBUILD)
Date: Sunday, August 28, 2022 @ 10:32:12 Author: bluewind Revision: 1285068 upgpkg: ack 3.6.0-1: upstream update Modified: ack/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-08-28 10:23:19 UTC (rev 1285067) +++ PKGBUILD2022-08-28 10:32:12 UTC (rev 1285068) @@ -3,8 +3,8 @@ # Contributor: Michael S. Walker pkgname=ack -pkgver=3.5.0 -pkgrel=3 +pkgver=3.6.0 +pkgrel=1 pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees of heterogeneous source code" arch=('any') url="http://betterthangrep.com/"; @@ -12,7 +12,7 @@ depends=('perl-file-next') options=('!emptydirs') source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";) -md5sums=('7d0ed07ac0f546b5c4641ce4d2b46b99') +md5sums=('f601a803b45974bf6f0b72207b5e883e') build() { cd "$srcdir/$pkgname-v$pkgver"
[arch-commits] Commit in siege/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Sunday, August 7, 2022 @ 09:02:25 Author: bluewind Revision: 1260507 archrelease: copy trunk to community-x86_64 Added: siege/repos/community-x86_64/PKGBUILD (from rev 1260506, siege/trunk/PKGBUILD) Deleted: siege/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-08-07 09:02:23 UTC (rev 1260506) +++ PKGBUILD2022-08-07 09:02:25 UTC (rev 1260507) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Sven Kauber - -pkgname=siege -pkgver=4.1.2 -pkgrel=1 -arch=('x86_64') -license=('GPL') -pkgdesc="An http regression testing and benchmarking utility" -url="https://www.joedog.org/siege-home/"; -depends=('openssl') -optdepends=('perl: siege2csv.pl') -source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz";) -backup=(etc/siegerc etc/urls.txt) - -build() { - cd "${srcdir}/$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/$pkgname-$pkgver" - - install -d -m755 "$pkgdir/etc" - install -d -m755 "$pkgdir/usr/share" - make DESTDIR="$pkgdir" install - sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" -} - -md5sums=('c5dce6048a17b502f837de77a3ef79a9') Copied: siege/repos/community-x86_64/PKGBUILD (from rev 1260506, siege/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-08-07 09:02:25 UTC (rev 1260507) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Sven Kauber + +pkgname=siege +pkgver=4.1.5 +pkgrel=1 +arch=('x86_64') +license=('GPL') +pkgdesc="An http regression testing and benchmarking utility" +url="https://www.joedog.org/siege-home/"; +depends=('openssl') +optdepends=('perl: siege2csv.pl') +source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz";) +backup=(etc/siegerc etc/urls.txt) + +build() { + cd "${srcdir}/$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/$pkgname-$pkgver" + + install -d -m755 "$pkgdir/etc" + install -d -m755 "$pkgdir/usr/share" + make DESTDIR="$pkgdir" install + sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" +} + +md5sums=('84504c5107480ea4b4d952c910e1e32d')
[arch-commits] Commit in siege/trunk (PKGBUILD)
Date: Sunday, August 7, 2022 @ 09:02:23 Author: bluewind Revision: 1260506 upgpkg: siege 4.1.5-1: upstream update Modified: siege/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-08-07 09:00:07 UTC (rev 1260505) +++ PKGBUILD2022-08-07 09:02:23 UTC (rev 1260506) @@ -2,7 +2,7 @@ # Contributor: Sven Kauber pkgname=siege -pkgver=4.1.2 +pkgver=4.1.5 pkgrel=1 arch=('x86_64') license=('GPL') @@ -28,4 +28,4 @@ sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" } -md5sums=('c5dce6048a17b502f837de77a3ef79a9') +md5sums=('84504c5107480ea4b4d952c910e1e32d')
[arch-commits] Commit in zabbix/repos/extra-x86_64 (30 files)
Date: Sunday, July 31, 2022 @ 12:17:48 Author: bluewind Revision: 451778 archrelease: copy trunk to extra-x86_64 Added: zabbix/repos/extra-x86_64/PKGBUILD (from rev 451777, zabbix/trunk/PKGBUILD) zabbix/repos/extra-x86_64/zabbix-agent.service (from rev 451777, zabbix/trunk/zabbix-agent.service) zabbix/repos/extra-x86_64/zabbix-agent.sysusers (from rev 451777, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles (from rev 451777, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/extra-x86_64/zabbix-agent2.service (from rev 451777, zabbix/trunk/zabbix-agent2.service) zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service (from rev 451777, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service (from rev 451777, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service (from rev 451777, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/extra-x86_64/zabbix-proxy.sysusers (from rev 451777, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles (from rev 451777, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/extra-x86_64/zabbix-server-mysql.service (from rev 451777, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/extra-x86_64/zabbix-server-pgsql.service (from rev 451777, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/extra-x86_64/zabbix-server.install (from rev 451777, zabbix/trunk/zabbix-server.install) zabbix/repos/extra-x86_64/zabbix-server.sysusers (from rev 451777, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/extra-x86_64/zabbix-server.tmpfiles (from rev 451777, zabbix/trunk/zabbix-server.tmpfiles) Deleted: zabbix/repos/extra-x86_64/PKGBUILD zabbix/repos/extra-x86_64/zabbix-agent.service zabbix/repos/extra-x86_64/zabbix-agent.sysusers zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles zabbix/repos/extra-x86_64/zabbix-agent2.service zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service zabbix/repos/extra-x86_64/zabbix-proxy.sysusers zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles zabbix/repos/extra-x86_64/zabbix-server-mysql.service zabbix/repos/extra-x86_64/zabbix-server-pgsql.service zabbix/repos/extra-x86_64/zabbix-server.install zabbix/repos/extra-x86_64/zabbix-server.sysusers zabbix/repos/extra-x86_64/zabbix-server.tmpfiles -+ PKGBUILD| 444 +- zabbix-agent.service| 22 +- zabbix-agent.sysusers |2 zabbix-agent.tmpfiles |2 zabbix-agent2.service | 22 +- zabbix-proxy-mysql.service | 36 +-- zabbix-proxy-pgsql.service | 36 +-- zabbix-proxy-sqlite.service | 36 +-- zabbix-proxy.sysusers |2 zabbix-proxy.tmpfiles |2 zabbix-server-mysql.service | 36 +-- zabbix-server-pgsql.service | 36 +-- zabbix-server.install | 24 +- zabbix-server.sysusers |2 zabbix-server.tmpfiles |2 15 files changed, 352 insertions(+), 352 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-31 12:17:38 UTC (rev 451777) +++ PKGBUILD2022-07-31 12:17:48 UTC (rev 451778) @@ -1,222 +0,0 @@ -# Maintainer: Bartłomiej Piotrowski -# Maintainer: Florian Pritz - -pkgbase=zabbix -pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.2.1 -pkgrel=1 -arch=(x86_64) -url='https://www.zabbix.com/' -license=(GPL) -makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) -source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; -zabbix-agent.{service,sysusers,tmpfiles} -zabbix-agent2.service -zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} -zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) - -sha512sums=('cfdca2a34fecd31ff6f58257abc695e9aba3eaeefebd66f8653b5999e3b650e5ba94d036fc5b9d8e03a1cf532d5f76b1d36a3a9759831707d88ebbe37dc20fc5' - '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' - '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' - 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' - 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' - 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, July 31, 2022 @ 12:17:38 Author: bluewind Revision: 451777 upgpkg: zabbix 6.2.1-2: depend on php8. supported since zabbix 6.2.1 Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-31 12:10:56 UTC (rev 451776) +++ PKGBUILD2022-07-31 12:17:38 UTC (rev 451777) @@ -4,7 +4,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) pkgver=6.2.1 -pkgrel=1 +pkgrel=2 arch=(x86_64) url='https://www.zabbix.com/' license=(GPL) @@ -213,7 +213,7 @@ package_zabbix-frontend-php() { pkgdesc='PHP frontend for Zabbix' - depends=(zabbix-server php7 php7-gd) + depends=(zabbix-server php php-gd) cd $pkgbase-$pkgver install -d "$pkgdir/usr/share/webapps/zabbix"
[arch-commits] Commit in zabbix/repos/extra-x86_64 (30 files)
Date: Sunday, July 31, 2022 @ 12:10:56 Author: bluewind Revision: 451776 archrelease: copy trunk to extra-x86_64 Added: zabbix/repos/extra-x86_64/PKGBUILD (from rev 451775, zabbix/trunk/PKGBUILD) zabbix/repos/extra-x86_64/zabbix-agent.service (from rev 451775, zabbix/trunk/zabbix-agent.service) zabbix/repos/extra-x86_64/zabbix-agent.sysusers (from rev 451775, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles (from rev 451775, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/extra-x86_64/zabbix-agent2.service (from rev 451775, zabbix/trunk/zabbix-agent2.service) zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service (from rev 451775, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service (from rev 451775, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service (from rev 451775, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/extra-x86_64/zabbix-proxy.sysusers (from rev 451775, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles (from rev 451775, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/extra-x86_64/zabbix-server-mysql.service (from rev 451775, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/extra-x86_64/zabbix-server-pgsql.service (from rev 451775, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/extra-x86_64/zabbix-server.install (from rev 451775, zabbix/trunk/zabbix-server.install) zabbix/repos/extra-x86_64/zabbix-server.sysusers (from rev 451775, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/extra-x86_64/zabbix-server.tmpfiles (from rev 451775, zabbix/trunk/zabbix-server.tmpfiles) Deleted: zabbix/repos/extra-x86_64/PKGBUILD zabbix/repos/extra-x86_64/zabbix-agent.service zabbix/repos/extra-x86_64/zabbix-agent.sysusers zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles zabbix/repos/extra-x86_64/zabbix-agent2.service zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service zabbix/repos/extra-x86_64/zabbix-proxy.sysusers zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles zabbix/repos/extra-x86_64/zabbix-server-mysql.service zabbix/repos/extra-x86_64/zabbix-server-pgsql.service zabbix/repos/extra-x86_64/zabbix-server.install zabbix/repos/extra-x86_64/zabbix-server.sysusers zabbix/repos/extra-x86_64/zabbix-server.tmpfiles -+ PKGBUILD| 444 +- zabbix-agent.service| 22 +- zabbix-agent.sysusers |2 zabbix-agent.tmpfiles |2 zabbix-agent2.service | 22 +- zabbix-proxy-mysql.service | 36 +-- zabbix-proxy-pgsql.service | 36 +-- zabbix-proxy-sqlite.service | 36 +-- zabbix-proxy.sysusers |2 zabbix-proxy.tmpfiles |2 zabbix-server-mysql.service | 36 +-- zabbix-server-pgsql.service | 36 +-- zabbix-server.install | 24 +- zabbix-server.sysusers |2 zabbix-server.tmpfiles |2 15 files changed, 352 insertions(+), 352 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-31 12:10:50 UTC (rev 451775) +++ PKGBUILD2022-07-31 12:10:56 UTC (rev 451776) @@ -1,222 +0,0 @@ -# Maintainer: Bartłomiej Piotrowski -# Maintainer: Florian Pritz - -pkgbase=zabbix -pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.2.0 -pkgrel=1 -arch=(x86_64) -url='https://www.zabbix.com/' -license=(GPL) -makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) -source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; -zabbix-agent.{service,sysusers,tmpfiles} -zabbix-agent2.service -zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} -zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) - -sha512sums=('4492dbd7c7acb55827ee17e7eee579d1cfdcf5fd499505c6e24f50ea361641a0813672149a87f076b2287896d56d8d0215d8c5e78b32b684386414024624d322' - '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' - '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' - 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' - 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' - 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, July 31, 2022 @ 12:10:50 Author: bluewind Revision: 451775 upgpkg: zabbix 6.2.1-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-31 11:32:37 UTC (rev 451774) +++ PKGBUILD2022-07-31 12:10:50 UTC (rev 451775) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.2.0 +pkgver=6.2.1 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('4492dbd7c7acb55827ee17e7eee579d1cfdcf5fd499505c6e24f50ea361641a0813672149a87f076b2287896d56d8d0215d8c5e78b32b684386414024624d322' +sha512sums=('cfdca2a34fecd31ff6f58257abc695e9aba3eaeefebd66f8653b5999e3b650e5ba94d036fc5b9d8e03a1cf532d5f76b1d36a3a9759831707d88ebbe37dc20fc5' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)
Date: Sunday, July 24, 2022 @ 11:47:35 Author: bluewind Revision: 451613 archrelease: copy trunk to core-any Added: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 451612, pacman-mirrorlist/trunk/PKGBUILD) pacman-mirrorlist/repos/core-any/mirrorlist (from rev 451612, pacman-mirrorlist/trunk/mirrorlist) pacman-mirrorlist/repos/core-any/upgpkg (from rev 451612, pacman-mirrorlist/trunk/upgpkg) Deleted: pacman-mirrorlist/repos/core-any/PKGBUILD pacman-mirrorlist/repos/core-any/mirrorlist pacman-mirrorlist/repos/core-any/upgpkg + PKGBUILD | 62 +- mirrorlist | 1753 +-- upgpkg |8 3 files changed, 917 insertions(+), 906 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-24 11:47:31 UTC (rev 451612) +++ PKGBUILD2022-07-24 11:47:35 UTC (rev 451613) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Dan McGee - -pkgname=pacman-mirrorlist -pkgver=20220605 -pkgrel=1 -pkgdesc="Arch Linux mirror list for use by pacman" -arch=('any') -url="https://www.archlinux.org/mirrorlist/"; -license=('GPL') -backup=(etc/pacman.d/mirrorlist) -source=(mirrorlist) - -# NOTE on building this package: -# * Go to the trunk/ directory -# * Run bash -c ". PKGBUILD; updatelist" -# * Update the checksums, update pkgver -# * Build the package - -updatelist() { - rm -f mirrorlist - curl -o mirrorlist https://archlinux.org/mirrorlist/all/ -} - -package() { - mkdir -p "$pkgdir/etc/pacman.d" - install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" -} - -md5sums=('36acb97b145e3b04af627330785183d2') -sha256sums=('c2b04786f88e3266a16db97c808eb79b73c9d1223fec72825e2ac8bf79d138a6') Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 451612, pacman-mirrorlist/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-24 11:47:35 UTC (rev 451613) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Dan McGee + +pkgname=pacman-mirrorlist +pkgver=20220724 +pkgrel=1 +pkgdesc="Arch Linux mirror list for use by pacman" +arch=('any') +url="https://www.archlinux.org/mirrorlist/"; +license=('GPL') +backup=(etc/pacman.d/mirrorlist) +source=(mirrorlist) + +# NOTE on building this package: +# * Go to the trunk/ directory +# * Run bash -c ". PKGBUILD; updatelist" +# * Update the checksums, update pkgver +# * Build the package + +updatelist() { + rm -f mirrorlist + curl -o mirrorlist https://archlinux.org/mirrorlist/all/ +} + +package() { + mkdir -p "$pkgdir/etc/pacman.d" + install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" +} + +md5sums=('414ac013b01bb6aa49a66f8eb51971b6') +sha256sums=('3bb6bea7409d92edee2854014bf1a467fddb744075dd18b05bf233ec5772367c') Deleted: mirrorlist === --- mirrorlist 2022-07-24 11:47:31 UTC (rev 451612) +++ mirrorlist 2022-07-24 11:47:35 UTC (rev 451613) @@ -1,871 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2022-06-05 -## - -## Worldwide -#Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch -#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch -#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch -#Server = http://mirror
[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)
Date: Sunday, July 24, 2022 @ 11:47:31 Author: bluewind Revision: 451612 upgpkg: pacman-mirrorlist 20220724-1: upstream update Modified: pacman-mirrorlist/trunk/PKGBUILD pacman-mirrorlist/trunk/mirrorlist + PKGBUILD |6 +++--- mirrorlist | 35 +++ 2 files changed, 26 insertions(+), 15 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-23 23:10:01 UTC (rev 451611) +++ PKGBUILD2022-07-24 11:47:31 UTC (rev 451612) @@ -2,7 +2,7 @@ # Contributor: Dan McGee pkgname=pacman-mirrorlist -pkgver=20220605 +pkgver=20220724 pkgrel=1 pkgdesc="Arch Linux mirror list for use by pacman" arch=('any') @@ -27,5 +27,5 @@ install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" } -md5sums=('36acb97b145e3b04af627330785183d2') -sha256sums=('c2b04786f88e3266a16db97c808eb79b73c9d1223fec72825e2ac8bf79d138a6') +md5sums=('414ac013b01bb6aa49a66f8eb51971b6') +sha256sums=('3bb6bea7409d92edee2854014bf1a467fddb744075dd18b05bf233ec5772367c') Modified: mirrorlist === --- mirrorlist 2022-07-23 23:10:01 UTC (rev 451611) +++ mirrorlist 2022-07-24 11:47:31 UTC (rev 451612) @@ -1,6 +1,6 @@ ## ## Arch Linux repository mirrorlist -## Generated on 2022-06-05 +## Generated on 2022-07-24 ## ## Worldwide @@ -12,6 +12,7 @@ #Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch #Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch #Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch +#Server = https://sydney.mirror.pkgbuild.com/$repo/os/$arch #Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch #Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch #Server = http://arch.lucassymons.net/$repo/os/$arch @@ -143,9 +144,9 @@ ## Czechia #Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch #Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch -#Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch #Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch #Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch +#Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch #Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch #Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch #Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch @@ -177,6 +178,8 @@ #Server = https://mirror.arctic.lol/ArchMirror/$repo/os/$arch #Server = http://arch.mirror.far.fi/$repo/os/$arch #Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch +#Server = http://arch.kyberorg.fi/$repo/os/$arch +#Server = https://arch.kyberorg.fi/$repo/os/$arch #Server = https://mirror.srv.fail/archlinux/$repo/os/$arch #Server = http://mirror.wuki.li/archlinux/$repo/os/$arch #Server = https://mirror.wuki.li/archlinux/$repo/os/$arch @@ -255,7 +258,6 @@ #Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch #Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch #Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch -#Server = https://archive.gamerparty.eu/arch/$repo/os/$arch #Server = https://mirror.gnomus.de/$repo/os/$arch #Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch #Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch @@ -364,8 +366,7 @@ #Server = https://mirror.system.is/arch/$repo/os/$arch ## India -#Server = https://archmirror.akhl.in/$repo/os/$arch -#Server = https://repo.albony.xyz/$repo/os/$arch +#Server = https://mirror.albony.xyz/archlinux/$repo/os/$arch #Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch #Server = http://in-mirror.garudalinux.org/archlinux/$repo/os/$arch #Server = https://in-mirror.garudalinux.org/archlinux/$repo/os/$arch @@ -375,8 +376,8 @@ #Server = https://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch #Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch #Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch -#Server = http://mirror.sahil.world/$repo/os/$arch -#Server = https://mirror.sahil.world/$repo/os/$arch +#Server = http://mirror.sahil.world/archlinux/$repo/os/$arch +#Server = https://mirror.sahil.world/archlinux/$repo/os/$arch ## Indonesia #Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch @@ -460,6 +461,8 @@ ## Moldova #Server = http://mirror.ihost.md/archlinux/$repo/os/$arch #Server = https://mirror.ihost.md/archlinux/$repo/os/$arch +#Server = http://mirror.mangohost.net/archlinux/$repo/os/$arch +#Server = https://mirror.mangohost.net/archlinux/$repo/os/$arch ## Monaco #Server = http://archlinux.qontinuum.space/archlinux/$repo/os/$arch @@ -469,6 +472,7 @@ #Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch #Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch #Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch +#Server = h
[arch-commits] Commit in perl-software-license/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, July 17, 2022 @ 08:36:36 Author: bluewind Revision: 1254285 archrelease: copy trunk to community-any Added: perl-software-license/repos/community-any/PKGBUILD (from rev 1254284, perl-software-license/trunk/PKGBUILD) Deleted: perl-software-license/repos/community-any/PKGBUILD --+ PKGBUILD | 91 ++--- 1 file changed, 46 insertions(+), 45 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-17 08:36:33 UTC (rev 1254284) +++ PKGBUILD2022-07-17 08:36:36 UTC (rev 1254285) @@ -1,45 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-software-license -pkgver=0.104001 -pkgrel=2 -pkgdesc='packages that provide templated software licenses' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=('perl>=5.6' perl-data-section perl-text-template) -checkdepends=(perl-try-tiny) -url=https://metacpan.org/release/Software-License -source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Software-License-$pkgver.tar.gz";) -md5sums=(6d50e36d8084d5c946fab4bf921b) -sha512sums=(4ba5e11e8aa34a4f59ad4028e8e4547e22d5d56e04836cf280a0fb52a2fb64c8cf5347f6f6e2c368506c35eeb7e189527e4339d11541aac34c2c28737717e34e) -_ddir="Software-License-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-software-license/repos/community-any/PKGBUILD (from rev 1254284, perl-software-license/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-17 08:36:36 UTC (rev 1254285) @@ -0,0 +1,46 @@ +# Maintainer: Florian Pritz + +pkgname=perl-software-license +pkgver=0.104002 +pkgrel=1 +pkgdesc='packages that provide templated software licenses' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.6' perl-data-section perl-text-template) +makedepends=('perl-extutils-makemaker>=6.78') +checkdepends=(perl-try-tiny) +url=https://metacpan.org/release/Software-License +source=("https://cpan.metacpan.org/authors/id/L/LE/LEONT/Software-License-$pkgver.tar.gz";) +md5sums=(80b99d810ccaede171bcad323471b2a2) +sha512sums=(80303349f1d1febfb61322d106587880e0191500229110eebf1b8fb6653dc212720a29c60d9575bd4bb077b83755592303dc4205df276193d8fa0252f21e01aa) +_ddir="Software-License-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-software-license/trunk (PKGBUILD)
Date: Sunday, July 17, 2022 @ 08:36:33 Author: bluewind Revision: 1254284 upgpkg: perl-software-license 0.104002-1: upstream update Modified: perl-software-license/trunk/PKGBUILD --+ PKGBUILD | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-17 08:34:02 UTC (rev 1254283) +++ PKGBUILD2022-07-17 08:36:33 UTC (rev 1254284) @@ -1,18 +1,19 @@ # Maintainer: Florian Pritz pkgname=perl-software-license -pkgver=0.104001 -pkgrel=2 +pkgver=0.104002 +pkgrel=1 pkgdesc='packages that provide templated software licenses' arch=(any) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.6' perl-data-section perl-text-template) +makedepends=('perl-extutils-makemaker>=6.78') checkdepends=(perl-try-tiny) url=https://metacpan.org/release/Software-License -source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Software-License-$pkgver.tar.gz";) -md5sums=(6d50e36d8084d5c946fab4bf921b) -sha512sums=(4ba5e11e8aa34a4f59ad4028e8e4547e22d5d56e04836cf280a0fb52a2fb64c8cf5347f6f6e2c368506c35eeb7e189527e4339d11541aac34c2c28737717e34e) +source=("https://cpan.metacpan.org/authors/id/L/LE/LEONT/Software-License-$pkgver.tar.gz";) +md5sums=(80b99d810ccaede171bcad323471b2a2) +sha512sums=(80303349f1d1febfb61322d106587880e0191500229110eebf1b8fb6653dc212720a29c60d9575bd4bb077b83755592303dc4205df276193d8fa0252f21e01aa) _ddir="Software-License-$pkgver" build()
[arch-commits] Commit in perl-crypt-openssl-rsa/repos/extra-x86_64 (4 files)
Date: Sunday, July 17, 2022 @ 08:36:01 Author: bluewind Revision: 451161 archrelease: copy trunk to extra-x86_64 Added: perl-crypt-openssl-rsa/repos/extra-x86_64/0001-Adapt-to-OpenSSL-1.1.0.patch (from rev 451160, perl-crypt-openssl-rsa/trunk/0001-Adapt-to-OpenSSL-1.1.0.patch) perl-crypt-openssl-rsa/repos/extra-x86_64/PKGBUILD (from rev 451160, perl-crypt-openssl-rsa/trunk/PKGBUILD) Deleted: perl-crypt-openssl-rsa/repos/extra-x86_64/0001-Adapt-to-OpenSSL-1.1.0.patch perl-crypt-openssl-rsa/repos/extra-x86_64/PKGBUILD ---+ 0001-Adapt-to-OpenSSL-1.1.0.patch | 370 ++-- PKGBUILD | 92 2 files changed, 231 insertions(+), 231 deletions(-) Deleted: 0001-Adapt-to-OpenSSL-1.1.0.patch === --- 0001-Adapt-to-OpenSSL-1.1.0.patch 2022-07-17 08:35:58 UTC (rev 451160) +++ 0001-Adapt-to-OpenSSL-1.1.0.patch 2022-07-17 08:36:01 UTC (rev 451161) @@ -1,185 +0,0 @@ -From b3747e625780be90dcff11c2d9e91048016bb4d0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= -Date: Thu, 13 Oct 2016 18:14:17 +0200 -Subject: [PATCH] Adapt to OpenSSL 1.1.0 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -OpenSSL 1.1.0 hid structure internals and provided methods for getting -and settting the internal values. This patch modifes the code so that -it can be built with OpenSSL 1.1.0 as well as with the older one. - -CPAN RT#117481 - -Signed-off-by: Petr Písař - RSA.xs | 89 ++ - 1 file changed, 73 insertions(+), 16 deletions(-) - -diff --git a/RSA.xs b/RSA.xs -index de512e7..9bf6f01 100644 a/RSA.xs -+++ b/RSA.xs -@@ -49,7 +49,13 @@ void croakSsl(char* p_file, int p_line) - - char _is_private(rsaData* p_rsa) - { --return(p_rsa->rsa->d != NULL); -+const BIGNUM *d; -+#if OPENSSL_VERSION_NUMBER < 0x1010L -+d = p_rsa->rsa->d; -+#else -+RSA_get0_key(p_rsa->rsa, NULL, NULL, &d); -+#endif -+return(d != NULL); - } - - SV* make_rsa_obj(SV* p_proto, RSA* p_rsa) -@@ -136,7 +142,7 @@ unsigned char* get_message_digest(SV* text_SV, int hash_method) - } - } - --SV* bn2sv(BIGNUM* p_bn) -+SV* bn2sv(const BIGNUM* p_bn) - { - return p_bn != NULL - ? sv_2mortal(newSViv((IV) BN_dup(p_bn))) -@@ -317,6 +323,9 @@ _new_key_from_parameters(proto, n, e, d, p, q) - BN_CTX* ctx; - BIGNUM* p_minus_1 = NULL; - BIGNUM* q_minus_1 = NULL; -+BIGNUM* dmp1 = NULL; -+BIGNUM* dmq1 = NULL; -+BIGNUM* iqmp = NULL; - int error; - CODE: - { -@@ -325,8 +334,10 @@ _new_key_from_parameters(proto, n, e, d, p, q) - croak("At least a modulous and public key must be provided"); - } - CHECK_OPEN_SSL(rsa = RSA_new()); -+#if OPENSSL_VERSION_NUMBER < 0x1010L - rsa->n = n; - rsa->e = e; -+#endif - if (p || q) - { - error = 0; -@@ -341,8 +352,12 @@ _new_key_from_parameters(proto, n, e, d, p, q) - q = BN_new(); - THROW(BN_div(q, NULL, n, p, ctx)); - } -+#if OPENSSL_VERSION_NUMBER < 0x1010L - rsa->p = p; - rsa->q = q; -+#else -+THROW(RSA_set0_factors(rsa, p, q)); -+#endif - THROW(p_minus_1 = BN_new()); - THROW(BN_sub(p_minus_1, p, BN_value_one())); - THROW(q_minus_1 = BN_new()); -@@ -353,17 +368,32 @@ _new_key_from_parameters(proto, n, e, d, p, q) - THROW(BN_mul(d, p_minus_1, q_minus_1, ctx)); - THROW(BN_mod_inverse(d, e, d, ctx)); - } -+#if OPENSSL_VERSION_NUMBER < 0x1010L - rsa->d = d; --THROW(rsa->dmp1 = BN_new()); --THROW(BN_mod(rsa->dmp1, d, p_minus_1, ctx)); --THROW(rsa->dmq1 = BN_new()); --THROW(BN_mod(rsa->dmq1, d, q_minus_1, ctx)); --THROW(rsa->iqmp = BN_new()); --THROW(BN_mod_inverse(rsa->iqmp, q, p, ctx)); -+#else -+THROW(RSA_set0_key(rsa, n, e, d)); -+#endif -+THROW(dmp1 = BN_new()); -+THROW(BN_mod(dmp1, d, p_minus_1, ctx)); -+THROW(dmq1 = BN_new()); -+THROW(BN_mod(dmq1, d, q_minus_1, ctx)); -+THROW(iqmp = BN_new()); -+THROW(BN_mod_inverse(iqmp, q, p, ctx)); -+#if OPENSSL_VERSION_NUMBER < 0x1010L -+rsa->dmp1 = dmp1; -+rsa->dmq1 = dmq1; -+rsa->iqmp = iqmp; -+#else -+THROW(RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp)); -+#endif -+dmp1 = dmq1 = iqmp = NULL; - THROW(RSA_check_key(rsa) == 1); - err: - if (p_minus_1) BN_clear_free(p_minus_1); - if (q_minus_1) BN_clear_free(q_minus_1); -+if (dmp1) BN_clear_free(dmp1); -+if (dmq1) BN_clear_free(dmq1); -+if (iqmp) BN_clear_free(iqmp); - if (ctx) BN_CTX_free(ctx); - if (error) - { -@@ -373,7 +403,11 @@ _new_key_from_parameters(proto, n, e, d, p, q) - } - else
[arch-commits] Commit in perl-crypt-openssl-rsa/trunk (PKGBUILD)
Date: Sunday, July 17, 2022 @ 08:35:58 Author: bluewind Revision: 451160 upgpkg: perl-crypt-openssl-rsa 0.33-1: upstream update Modified: perl-crypt-openssl-rsa/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-17 08:34:43 UTC (rev 451159) +++ PKGBUILD2022-07-17 08:35:58 UTC (rev 451160) @@ -2,8 +2,8 @@ # Contributor: Sergej Pupykin pkgname=perl-crypt-openssl-rsa -pkgver=0.32 -pkgrel=2 +pkgver=0.33 +pkgrel=1 pkgdesc='RSA encoding and decoding, using the openSSL libraries' arch=(x86_64) license=(PerlArtistic GPL) @@ -10,10 +10,10 @@ options=(!emptydirs) depends=('perl>=5.6' perl-crypt-openssl-random) makedepends=('perl-crypt-openssl-guess>=0.11') -url='https://metacpan.org/release/Crypt-OpenSSL-RSA' -source=("https://search.cpan.org/CPAN/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-$pkgver.tar.gz";) -md5sums=('41ee1df9ce505ffb85ce26a18c494841') -sha512sums=('2972611a8fa4e9c44fd09c9e7fa32f0abd377230f14dcdfa99edab87bba2199c6a0cab4d1e08bdf3057959c0efd3343eb989e46f4befd572b15540e59f1e3c64') +url=https://metacpan.org/release/Crypt-OpenSSL-RSA +source=("https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-$pkgver.tar.gz";) +md5sums=(402994cca9f4502741cf9514719b9bdf) +sha512sums=(7bfa802ec41925ec9fa6937c5eea0d21f6f554a1d1d57ed679ed03b260cf08c0a397df11880de6d67abacfd843ad2c4f28b20ac58d80e183c2a83c91deb926bf) _ddir="Crypt-OpenSSL-RSA-$pkgver" build()
[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, July 17, 2022 @ 08:34:02 Author: bluewind Revision: 1254283 archrelease: copy trunk to community-any Added: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1254282, grafana-zabbix/trunk/PKGBUILD) Deleted: grafana-zabbix/repos/community-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-17 08:33:59 UTC (rev 1254282) +++ PKGBUILD2022-07-17 08:34:02 UTC (rev 1254283) @@ -1,32 +0,0 @@ -# Maintainer: Florian Pritz -pkgname=grafana-zabbix -pkgver=4.2.8 -pkgrel=1 -pkgdesc="Zabbix plugin for Grafana dashboard" -arch=('any') -url="https://github.com/alexanderzobnin/grafana-zabbix"; -license=('APACHE') -depends=('grafana') -makedepends=(yarn libfaketime go git nodejs-lts-gallium) -source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('052ef487b01861b59ea8171282b774f0fae13c3cc1e6232fda773be59fb9e754') - -build() { - cd "$pkgname-$pkgver" - make install - make build - make dist -} - -check() { - cd "$pkgname-$pkgver" - # Force UTC timezone so that tests pass, even after a DST change - PATH="$PATH:/build/go/bin" TZ=UTC make test lint -} - -package() { - cd "$pkgname-$pkgver" - install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" -} Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1254282, grafana-zabbix/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-17 08:34:02 UTC (rev 1254283) @@ -0,0 +1,32 @@ +# Maintainer: Florian Pritz +pkgname=grafana-zabbix +pkgver=4.2.9 +pkgrel=1 +pkgdesc="Zabbix plugin for Grafana dashboard" +arch=('any') +url="https://github.com/alexanderzobnin/grafana-zabbix"; +license=('APACHE') +depends=('grafana') +makedepends=(yarn libfaketime go git nodejs-lts-gallium) +source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) +sha256sums=('79d5a637711d5aa92295494c79f6ec14b6f32f2834d0b30e62fe84beea5b0d94') + +build() { + cd "$pkgname-$pkgver" + make install + make build + make dist +} + +check() { + cd "$pkgname-$pkgver" + # Force UTC timezone so that tests pass, even after a DST change + PATH="$PATH:/build/go/bin" TZ=UTC make test lint +} + +package() { + cd "$pkgname-$pkgver" + install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" +}
[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)
Date: Sunday, July 17, 2022 @ 08:33:59 Author: bluewind Revision: 1254282 upgpkg: grafana-zabbix 4.2.9-1: upstream update Modified: grafana-zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-17 08:09:44 UTC (rev 1254281) +++ PKGBUILD2022-07-17 08:33:59 UTC (rev 1254282) @@ -1,6 +1,6 @@ # Maintainer: Florian Pritz pkgname=grafana-zabbix -pkgver=4.2.8 +pkgver=4.2.9 pkgrel=1 pkgdesc="Zabbix plugin for Grafana dashboard" arch=('any') @@ -9,7 +9,7 @@ depends=('grafana') makedepends=(yarn libfaketime go git nodejs-lts-gallium) source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('052ef487b01861b59ea8171282b774f0fae13c3cc1e6232fda773be59fb9e754') +sha256sums=('79d5a637711d5aa92295494c79f6ec14b6f32f2834d0b30e62fe84beea5b0d94') build() { cd "$pkgname-$pkgver"
[arch-commits] Commit in perl-crypt-ssleay/repos (2 files)
Date: Sunday, July 10, 2022 @ 12:54:48 Author: bluewind Revision: 450760 archrelease: copy trunk to testing-x86_64 Added: perl-crypt-ssleay/repos/testing-x86_64/ perl-crypt-ssleay/repos/testing-x86_64/PKGBUILD (from rev 450759, perl-crypt-ssleay/trunk/PKGBUILD) --+ PKGBUILD | 37 + 1 file changed, 37 insertions(+) Copied: perl-crypt-ssleay/repos/testing-x86_64/PKGBUILD (from rev 450759, perl-crypt-ssleay/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-07-10 12:54:48 UTC (rev 450760) @@ -0,0 +1,37 @@ +# Maintainer: Giovanni Scafora +# Contributor: François Charette + +pkgname=perl-crypt-ssleay +pkgver=0.73_06 +pkgrel=1 +pkgdesc="OpenSSL glue that provides LWP https support" +arch=('x86_64') +url="https://search.cpan.org/dist/Crypt-SSLeay"; +license=('GPL' 'PerlArtistic') +depends=('perl-lwp-protocol-https' 'perl-try-tiny' 'perl-path-class' 'perl-bytes-random-secure') +options=('!emptydirs') +source=("https://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz";) +md5sums=('b00758ea402963ed78bcc7d7172fc335') + +build() { + cd "${srcdir}/Crypt-SSLeay-${pkgver}" + + PERL_USE_UNSAFE_INC=1 \ + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "${srcdir}/Crypt-SSLeay-${pkgver}" + +# make test +} + +package() { + cd "${srcdir}/Crypt-SSLeay-${pkgver}" + + make install DESTDIR="${pkgdir}" + + find "${pkgdir}" -name '.packlist' -delete + find "${pkgdir}" -name '*.pod' -delete +}
[arch-commits] Commit in perl-crypt-ssleay/trunk (PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:54:45 Author: bluewind Revision: 450759 upgpkg: perl-crypt-ssleay 0.73_06-1: upstream update Modified: perl-crypt-ssleay/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-10 12:14:01 UTC (rev 450758) +++ PKGBUILD2022-07-10 12:54:45 UTC (rev 450759) @@ -2,8 +2,8 @@ # Contributor: François Charette pkgname=perl-crypt-ssleay -pkgver=0.73_04 -pkgrel=16 +pkgver=0.73_06 +pkgrel=1 pkgdesc="OpenSSL glue that provides LWP https support" arch=('x86_64') url="https://search.cpan.org/dist/Crypt-SSLeay"; @@ -11,7 +11,7 @@ depends=('perl-lwp-protocol-https' 'perl-try-tiny' 'perl-path-class' 'perl-bytes-random-secure') options=('!emptydirs') source=("https://www.cpan.org/CPAN/authors/id/N/NA/NANIS/Crypt-SSLeay-$pkgver.tar.gz";) -md5sums=('7508b2a34da2202cc0c78deb59e36526') +md5sums=('b00758ea402963ed78bcc7d7172fc335') build() { cd "${srcdir}/Crypt-SSLeay-${pkgver}"
[arch-commits] Commit in python-mysqlclient/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:52:22 Author: bluewind Revision: 1249286 archrelease: copy trunk to community-x86_64 Added: python-mysqlclient/repos/community-x86_64/PKGBUILD (from rev 1249285, python-mysqlclient/trunk/PKGBUILD) Deleted: python-mysqlclient/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-10 12:52:19 UTC (rev 1249285) +++ PKGBUILD2022-07-10 12:52:22 UTC (rev 1249286) @@ -1,26 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Massimiliano Torromeo - -pkgname=python-mysqlclient -_libname=${pkgname/python-/} -pkgver=2.1.0 -pkgrel=1 -pkgdesc="Fork of MySQL-python with support for Python 3" -arch=('x86_64') -url="https://github.com/PyMySQL/mysqlclient-python"; -license=('GPL') -depends=('python' 'mariadb-libs') -makedepends=('mariadb' 'python-setuptools') -source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz";) - -build() { -cd "$srcdir"/$_libname-$pkgver -python setup.py build -} - -package() { -cd "$srcdir"/$_libname-$pkgver -python setup.py install -O1 --skip-build --root="$pkgdir" -} - -sha256sums=('973235686f1b720536d417bf0a0d39b4ab3d5086b2b6ad5e6752393428c02b12') Copied: python-mysqlclient/repos/community-x86_64/PKGBUILD (from rev 1249285, python-mysqlclient/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-10 12:52:22 UTC (rev 1249286) @@ -0,0 +1,26 @@ +# Maintainer: Florian Pritz +# Contributor: Massimiliano Torromeo + +pkgname=python-mysqlclient +_libname=${pkgname/python-/} +pkgver=2.1.1 +pkgrel=1 +pkgdesc="Fork of MySQL-python with support for Python 3" +arch=('x86_64') +url="https://github.com/PyMySQL/mysqlclient-python"; +license=('GPL') +depends=('python' 'mariadb-libs') +makedepends=('mariadb' 'python-setuptools') +source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz";) + +build() { +cd "$srcdir"/$_libname-$pkgver +python setup.py build +} + +package() { +cd "$srcdir"/$_libname-$pkgver +python setup.py install -O1 --skip-build --root="$pkgdir" +} + +sha256sums=('828757e419fb11dd6c5ed2576ec92c3efaa93a0f7c39e263586d1ee779c3d782')
[arch-commits] Commit in python-mysqlclient/trunk (PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:52:19 Author: bluewind Revision: 1249285 upgpkg: python-mysqlclient 2.1.1-1: upstream update Modified: python-mysqlclient/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-10 12:50:56 UTC (rev 1249284) +++ PKGBUILD2022-07-10 12:52:19 UTC (rev 1249285) @@ -3,7 +3,7 @@ pkgname=python-mysqlclient _libname=${pkgname/python-/} -pkgver=2.1.0 +pkgver=2.1.1 pkgrel=1 pkgdesc="Fork of MySQL-python with support for Python 3" arch=('x86_64') @@ -23,4 +23,4 @@ python setup.py install -O1 --skip-build --root="$pkgdir" } -sha256sums=('973235686f1b720536d417bf0a0d39b4ab3d5086b2b6ad5e6752393428c02b12') +sha256sums=('828757e419fb11dd6c5ed2576ec92c3efaa93a0f7c39e263586d1ee779c3d782')
[arch-commits] Commit in python-ansi2html/repos/community-any (PKGBUILD PKGBUILD keys)
Date: Sunday, July 10, 2022 @ 12:50:56 Author: bluewind Revision: 1249284 archrelease: copy trunk to community-any Added: python-ansi2html/repos/community-any/PKGBUILD (from rev 1249283, python-ansi2html/trunk/PKGBUILD) python-ansi2html/repos/community-any/keys/ Deleted: python-ansi2html/repos/community-any/PKGBUILD --+ PKGBUILD | 47 ++- 1 file changed, 26 insertions(+), 21 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-10 12:50:53 UTC (rev 1249283) +++ PKGBUILD2022-07-10 12:50:56 UTC (rev 1249284) @@ -1,21 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=python-ansi2html -_libname=${pkgname/python-/} -pkgver=1.6.0 -pkgrel=3 -pkgdesc="Convert text with ANSI color codes to HTML" -arch=('any') -url="https://pypi.python.org/pypi/ansi2html"; -license=('GPL') -depends=('python-six' 'python-setuptools' 'python-wheel' 'python-pip') -source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz";) -md5sums=('52279d05a63449caf698f2d4a250ff72') -sha256sums=('0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596') -validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF) - -package() { - cd ansi2html-$pkgver - - python setup.py install --root="$pkgdir" --optimize=1 -} Copied: python-ansi2html/repos/community-any/PKGBUILD (from rev 1249283, python-ansi2html/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-10 12:50:56 UTC (rev 1249284) @@ -0,0 +1,26 @@ +# Maintainer: Florian Pritz + +pkgname=python-ansi2html +_libname=${pkgname/python-/} +pkgver=1.8.0 +pkgrel=1 +pkgdesc="Convert text with ANSI color codes to HTML" +arch=('any') +url="https://pypi.python.org/pypi/ansi2html"; +license=('GPL') +depends=('python-six' 'python-setuptools' 'python-wheel' 'python-pip') +makedepends=(python-build python-installer python-wheel python-setuptools-scm python-setuptools-scm-git-archive) +source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz";) +md5sums=('21a2e083e288dfe73538bbef1f4291ef') +sha256sums=('38b82a298482a1fa2613f0f9c9beb3db72a8f832eeac58eb2e47bf32cd37f6d5') +validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF) + +build() { +cd "$_libname-$pkgver" +python -m build --wheel --no-isolation +} + +package() { +cd "$_libname-$pkgver" +python -m installer --destdir="$pkgdir" dist/*.whl +}
[arch-commits] Commit in python-ansi2html/trunk (4 files)
Date: Sunday, July 10, 2022 @ 12:50:53 Author: bluewind Revision: 1249283 upgpkg: python-ansi2html 1.8.0-1: upstream update Added: python-ansi2html/trunk/keys/ python-ansi2html/trunk/keys/pgp/ python-ansi2html/trunk/keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc Modified: python-ansi2html/trunk/PKGBUILD ---+ PKGBUILD | 19 ++-- keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc |1 2 files changed, 13 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-10 12:38:21 UTC (rev 1249282) +++ PKGBUILD2022-07-10 12:50:53 UTC (rev 1249283) @@ -2,20 +2,25 @@ pkgname=python-ansi2html _libname=${pkgname/python-/} -pkgver=1.6.0 -pkgrel=3 +pkgver=1.8.0 +pkgrel=1 pkgdesc="Convert text with ANSI color codes to HTML" arch=('any') url="https://pypi.python.org/pypi/ansi2html"; license=('GPL') depends=('python-six' 'python-setuptools' 'python-wheel' 'python-pip') +makedepends=(python-build python-installer python-wheel python-setuptools-scm python-setuptools-scm-git-archive) source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz";) -md5sums=('52279d05a63449caf698f2d4a250ff72') -sha256sums=('0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596') +md5sums=('21a2e083e288dfe73538bbef1f4291ef') +sha256sums=('38b82a298482a1fa2613f0f9c9beb3db72a8f832eeac58eb2e47bf32cd37f6d5') validpgpkeys=(94504C3AE11DD197920058ABA90ED7DE971095FF) +build() { +cd "$_libname-$pkgver" +python -m build --wheel --no-isolation +} + package() { - cd ansi2html-$pkgver - - python setup.py install --root="$pkgdir" --optimize=1 +cd "$_libname-$pkgver" +python -m installer --destdir="$pkgdir" dist/*.whl } Added: keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc === (Binary files differ) Index: python-ansi2html/trunk/keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc === --- keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc 2022-07-10 12:38:21 UTC (rev 1249282) +++ keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc 2022-07-10 12:50:53 UTC (rev 1249283) Property changes on: python-ansi2html/trunk/keys/pgp/94504C3AE11DD197920058ABA90ED7DE971095FF.asc ___ Added: svn:mime-type ## -0,0 +1 ## +application/pgp-keys \ No newline at end of property
[arch-commits] Commit in gmrun/trunk (PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:38:17 Author: bluewind Revision: 1249281 upgpkg: gmrun 1.4w-1: upstream update Modified: gmrun/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-10 11:16:29 UTC (rev 1249280) +++ PKGBUILD2022-07-10 12:38:17 UTC (rev 1249281) @@ -3,7 +3,7 @@ # Maintainer: Daniel J Griffiths pkgname=gmrun -pkgver=1.3w +pkgver=1.4w pkgrel=1 pkgdesc="A simple program which provides a run program window" arch=('x86_64') @@ -11,7 +11,7 @@ license=('GPL') depends=('gtk3' 'popt') source=($pkgname-$pkgver.tar.gz::https://github.com/wdlkmpx/gmrun/archive/$pkgver.tar.gz) -md5sums=('3a04878697e7c5969e555d0939fe8c68') +md5sums=('45b7a88c0dbf2ec4c15f469537eda106') backup=('etc/gmrunrc') build() {
[arch-commits] Commit in gmrun/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:38:21 Author: bluewind Revision: 1249282 archrelease: copy trunk to community-x86_64 Added: gmrun/repos/community-x86_64/PKGBUILD (from rev 1249281, gmrun/trunk/PKGBUILD) Deleted: gmrun/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 56 1 file changed, 28 insertions(+), 28 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-10 12:38:17 UTC (rev 1249281) +++ PKGBUILD2022-07-10 12:38:21 UTC (rev 1249282) @@ -1,28 +0,0 @@ -# Contributor: Jeff Mickey -# Contributor: Woody Gilk aka Shadowhand -# Maintainer: Daniel J Griffiths - -pkgname=gmrun -pkgver=1.3w -pkgrel=1 -pkgdesc="A simple program which provides a run program window" -arch=('x86_64') -url="https://github.com/wdlkmpx/gmrun"; -license=('GPL') -depends=('gtk3' 'popt') -source=($pkgname-$pkgver.tar.gz::https://github.com/wdlkmpx/gmrun/archive/$pkgver.tar.gz) -md5sums=('3a04878697e7c5969e555d0939fe8c68') -backup=('etc/gmrunrc') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install -} Copied: gmrun/repos/community-x86_64/PKGBUILD (from rev 1249281, gmrun/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-10 12:38:21 UTC (rev 1249282) @@ -0,0 +1,28 @@ +# Contributor: Jeff Mickey +# Contributor: Woody Gilk aka Shadowhand +# Maintainer: Daniel J Griffiths + +pkgname=gmrun +pkgver=1.4w +pkgrel=1 +pkgdesc="A simple program which provides a run program window" +arch=('x86_64') +url="https://github.com/wdlkmpx/gmrun"; +license=('GPL') +depends=('gtk3' 'popt') +source=($pkgname-$pkgver.tar.gz::https://github.com/wdlkmpx/gmrun/archive/$pkgver.tar.gz) +md5sums=('45b7a88c0dbf2ec4c15f469537eda106') +backup=('etc/gmrunrc') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, July 10, 2022 @ 12:13:54 Author: bluewind Revision: 450757 upgpkg: zabbix 6.2.0-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-10 10:17:27 UTC (rev 450756) +++ PKGBUILD2022-07-10 12:13:54 UTC (rev 450757) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.5 +pkgver=6.2.0 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('c4a431ba9c22ccb59c6eaac4147e40390e5e9a1f7a13638f2daa3dab3a75145104e711585b374eed0e663a3dc495d4b3b74c78b7676baafbfcca983f645054e8' +sha512sums=('4492dbd7c7acb55827ee17e7eee579d1cfdcf5fd499505c6e24f50ea361641a0813672149a87f076b2287896d56d8d0215d8c5e78b32b684386414024624d322' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' @@ -64,6 +64,12 @@ cd $pkgbase-$pkgver + # Make copies since `make clean` removes the files and they cannot be rebuilt easily + for db in postgresql mysql sqlite3; do + mkdir -p ../copies/database/$db + cp database/$db/*.sql ../copies/database/$db/ + done + for db in postgresql mysql; do ./configure ${_configure_flags[@]} --enable-server --with-$db make clean @@ -94,7 +100,7 @@ "$pkgdir/usr/bin/zabbix_server_$db" install -d "$pkgdir/usr/share/$pkgname/$db" -install -m644 database/$db/*.sql -t "$pkgdir/usr/share/$pkgname/$db" +install -m644 ../copies/database/$db/*.sql -t "$pkgdir/usr/share/$pkgname/$db" done install -Dm755 src/zabbix_get/zabbix_get "$pkgdir/usr/bin/zabbix_get" @@ -181,7 +187,7 @@ "$pkgdir/usr/bin/zabbix_proxy_$db" install -d "$pkgdir/usr/share/$pkgname/$db" -install -m644 database/$db/schema.sql -t "$pkgdir/usr/share/$pkgname/$db" +install -m644 ../copies/database/$db/schema.sql -t "$pkgdir/usr/share/$pkgname/$db" done install -Dm644 conf/zabbix_proxy.conf "$pkgdir/etc/zabbix/zabbix_proxy.conf" chown 171:171 "$pkgdir/etc/zabbix/zabbix_proxy.conf"
[arch-commits] Commit in zabbix/repos (16 files)
Date: Sunday, July 10, 2022 @ 12:14:01 Author: bluewind Revision: 450758 archrelease: copy trunk to testing-x86_64 Added: zabbix/repos/testing-x86_64/ zabbix/repos/testing-x86_64/PKGBUILD (from rev 450757, zabbix/trunk/PKGBUILD) zabbix/repos/testing-x86_64/zabbix-agent.service (from rev 450757, zabbix/trunk/zabbix-agent.service) zabbix/repos/testing-x86_64/zabbix-agent.sysusers (from rev 450757, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles (from rev 450757, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/testing-x86_64/zabbix-agent2.service (from rev 450757, zabbix/trunk/zabbix-agent2.service) zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service (from rev 450757, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service (from rev 450757, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service (from rev 450757, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/testing-x86_64/zabbix-proxy.sysusers (from rev 450757, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles (from rev 450757, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/testing-x86_64/zabbix-server-mysql.service (from rev 450757, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/testing-x86_64/zabbix-server-pgsql.service (from rev 450757, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/testing-x86_64/zabbix-server.install (from rev 450757, zabbix/trunk/zabbix-server.install) zabbix/repos/testing-x86_64/zabbix-server.sysusers (from rev 450757, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/testing-x86_64/zabbix-server.tmpfiles (from rev 450757, zabbix/trunk/zabbix-server.tmpfiles) -+ PKGBUILD| 222 ++ zabbix-agent.service| 11 ++ zabbix-agent.sysusers |1 zabbix-agent.tmpfiles |1 zabbix-agent2.service | 11 ++ zabbix-proxy-mysql.service | 18 +++ zabbix-proxy-pgsql.service | 18 +++ zabbix-proxy-sqlite.service | 18 +++ zabbix-proxy.sysusers |1 zabbix-proxy.tmpfiles |1 zabbix-server-mysql.service | 18 +++ zabbix-server-pgsql.service | 18 +++ zabbix-server.install | 12 ++ zabbix-server.sysusers |1 zabbix-server.tmpfiles |1 15 files changed, 352 insertions(+) Copied: zabbix/repos/testing-x86_64/PKGBUILD (from rev 450757, zabbix/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-07-10 12:14:01 UTC (rev 450758) @@ -0,0 +1,222 @@ +# Maintainer: Bartłomiej Piotrowski +# Maintainer: Florian Pritz + +pkgbase=zabbix +pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) +pkgver=6.2.0 +pkgrel=1 +arch=(x86_64) +url='https://www.zabbix.com/' +license=(GPL) +makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) +source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; +zabbix-agent.{service,sysusers,tmpfiles} +zabbix-agent2.service +zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} +zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) + +sha512sums=('4492dbd7c7acb55827ee17e7eee579d1cfdcf5fd499505c6e24f50ea361641a0813672149a87f076b2287896d56d8d0215d8c5e78b32b684386414024624d322' + '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' + '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' + 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' + 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' + 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f' + 'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475' + '4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e' + 'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f86d377a26dfec6e3e129404cfda77632cad2f5cd6bab4a33f70a26c8c67b0d0b2abb3678ad2d83' + '7b5829caa77c6b5da8c2195ab840f0020f722a94f01a437324afdbe2a4372a594dcca6d63d2fdda5cfad81353ab4e4e0b2c6b67436203266dd44740a5e03b58e' + '94701f
[arch-commits] Commit in fb-client/repos/community-any (PKGBUILD PKGBUILD)
Date: Friday, July 1, 2022 @ 15:27:31 Author: bluewind Revision: 1243205 archrelease: copy trunk to community-any Added: fb-client/repos/community-any/PKGBUILD (from rev 1243204, fb-client/trunk/PKGBUILD) Deleted: fb-client/repos/community-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-07-01 15:27:28 UTC (rev 1243204) +++ PKGBUILD2022-07-01 15:27:31 UTC (rev 1243205) @@ -1,32 +0,0 @@ -# Maintainer: Florian "Bluewind" Pritz - -pkgname=fb-client -pkgver=2.2.0 -pkgrel=3 -pkgdesc="Client for paste.xinu.at" -arch=("any") -url="https://github.com/Bluewind/fb"; -license=('GPL3') -depends=('python' 'python-pycurl' 'python-xdg') -optdepends=( - 'xclip: automatically copy the URL into the clipboard on X11' - 'wl-clipboard: automatically copy the URL into the clipboard on wayland' -) -source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('ee0c7a677f62744b47b852a971927b4b' - 'SKIP') -validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") - -build() { - cd "$srcdir/fb-$pkgver" - - make -} - -package() { - cd "$srcdir/fb-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: fb-client/repos/community-any/PKGBUILD (from rev 1243204, fb-client/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-07-01 15:27:31 UTC (rev 1243205) @@ -0,0 +1,32 @@ +# Maintainer: Florian "Bluewind" Pritz + +pkgname=fb-client +pkgver=2.3.0 +pkgrel=1 +pkgdesc="Client for paste.xinu.at" +arch=("any") +url="https://github.com/Bluewind/fb"; +license=('GPL3') +depends=('python' 'python-pycurl' 'python-xdg') +optdepends=( + 'xclip: automatically copy the URL into the clipboard on X11' + 'wl-clipboard: automatically copy the URL into the clipboard on wayland' +) +source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) +md5sums=('81bb394a9a8df02808b266f0f34e3c7d' + 'SKIP') +validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") + +build() { + cd "$srcdir/fb-$pkgver" + + make +} + +package() { + cd "$srcdir/fb-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in fb-client/trunk (PKGBUILD)
Date: Friday, July 1, 2022 @ 15:27:28 Author: bluewind Revision: 1243204 upgpkg: fb-client 2.3.0-1: upstream update Modified: fb-client/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-07-01 15:21:41 UTC (rev 1243203) +++ PKGBUILD2022-07-01 15:27:28 UTC (rev 1243204) @@ -1,8 +1,8 @@ # Maintainer: Florian "Bluewind" Pritz pkgname=fb-client -pkgver=2.2.0 -pkgrel=3 +pkgver=2.3.0 +pkgrel=1 pkgdesc="Client for paste.xinu.at" arch=("any") url="https://github.com/Bluewind/fb"; @@ -13,7 +13,7 @@ 'wl-clipboard: automatically copy the URL into the clipboard on wayland' ) source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('ee0c7a677f62744b47b852a971927b4b' +md5sums=('81bb394a9a8df02808b266f0f34e3c7d' 'SKIP') validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
[arch-commits] Commit in fb-client/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:56:08 Author: bluewind Revision: 1239522 archrelease: copy trunk to community-any Added: fb-client/repos/community-any/PKGBUILD (from rev 1239521, fb-client/trunk/PKGBUILD) Deleted: fb-client/repos/community-any/PKGBUILD --+ PKGBUILD | 61 - 1 file changed, 32 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-26 09:55:49 UTC (rev 1239521) +++ PKGBUILD2022-06-26 09:56:08 UTC (rev 1239522) @@ -1,29 +0,0 @@ -# Maintainer: Florian "Bluewind" Pritz - -pkgname=fb-client -pkgver=2.2.0 -pkgrel=2 -pkgdesc="Client for paste.xinu.at" -arch=("any") -url="https://paste.xinu.at"; -license=('GPL3') -depends=('python' 'python-pycurl' 'python-xdg') -optdepends=('xclip: for automatically copying the URL into the clipboard') -source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('ee0c7a677f62744b47b852a971927b4b' - 'SKIP') -validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") - -build() { - cd "$srcdir/fb-$pkgver" - - make -} - -package() { - cd "$srcdir/fb-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239521, fb-client/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-26 09:56:08 UTC (rev 1239522) @@ -0,0 +1,32 @@ +# Maintainer: Florian "Bluewind" Pritz + +pkgname=fb-client +pkgver=2.2.0 +pkgrel=3 +pkgdesc="Client for paste.xinu.at" +arch=("any") +url="https://github.com/Bluewind/fb"; +license=('GPL3') +depends=('python' 'python-pycurl' 'python-xdg') +optdepends=( + 'xclip: automatically copy the URL into the clipboard on X11' + 'wl-clipboard: automatically copy the URL into the clipboard on wayland' +) +source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) +md5sums=('ee0c7a677f62744b47b852a971927b4b' + 'SKIP') +validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") + +build() { + cd "$srcdir/fb-$pkgver" + + make +} + +package() { + cd "$srcdir/fb-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in fb-client/trunk (PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:55:49 Author: bluewind Revision: 1239521 upgpkg: fb-client 2.2.0-3: add optdep Modified: fb-client/trunk/PKGBUILD --+ PKGBUILD |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520) +++ PKGBUILD2022-06-26 09:55:49 UTC (rev 1239521) @@ -2,13 +2,16 @@ pkgname=fb-client pkgver=2.2.0 -pkgrel=2 +pkgrel=3 pkgdesc="Client for paste.xinu.at" arch=("any") -url="https://paste.xinu.at"; +url="https://github.com/Bluewind/fb"; license=('GPL3') depends=('python' 'python-pycurl' 'python-xdg') -optdepends=('xclip: for automatically copying the URL into the clipboard') +optdepends=( + 'xclip: automatically copy the URL into the clipboard on X11' + 'wl-clipboard: automatically copy the URL into the clipboard on wayland' +) source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) md5sums=('ee0c7a677f62744b47b852a971927b4b' 'SKIP')
[arch-commits] Commit in fb-client/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:48:31 Author: bluewind Revision: 1239520 archrelease: copy trunk to community-any Added: fb-client/repos/community-any/PKGBUILD (from rev 1239519, fb-client/trunk/PKGBUILD) Deleted: fb-client/repos/community-any/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-26 09:48:29 UTC (rev 1239519) +++ PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520) @@ -1,29 +0,0 @@ -# Maintainer: Florian "Bluewind" Pritz - -pkgname=fb-client -pkgver=2.2.0 -pkgrel=1 -pkgdesc="Client for paste.xinu.at" -arch=("any") -url="https://paste.xinu.at"; -license=('GPL3') -depends=('python' 'python-pycurl' 'python-xdg') -optdepends=('xclip: for automatically copying the URL into the clipboard') -source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('ee0c7a677f62744b47b852a971927b4b' - 'SKIP') -validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") - -build() { - cd "$srcdir/fb-$pkgver" - - make -} - -package() { - cd "$srcdir/fb-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239519, fb-client/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520) @@ -0,0 +1,29 @@ +# Maintainer: Florian "Bluewind" Pritz + +pkgname=fb-client +pkgver=2.2.0 +pkgrel=2 +pkgdesc="Client for paste.xinu.at" +arch=("any") +url="https://paste.xinu.at"; +license=('GPL3') +depends=('python' 'python-pycurl' 'python-xdg') +optdepends=('xclip: for automatically copying the URL into the clipboard') +source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) +md5sums=('ee0c7a677f62744b47b852a971927b4b' + 'SKIP') +validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") + +build() { + cd "$srcdir/fb-$pkgver" + + make +} + +package() { + cd "$srcdir/fb-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in fb-client/trunk (PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:48:29 Author: bluewind Revision: 1239519 upgpkg: fb-client 2.2.0-2: add optdep Modified: fb-client/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518) +++ PKGBUILD2022-06-26 09:48:29 UTC (rev 1239519) @@ -2,7 +2,7 @@ pkgname=fb-client pkgver=2.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Client for paste.xinu.at" arch=("any") url="https://paste.xinu.at";
[arch-commits] Commit in fb-client/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:46:52 Author: bluewind Revision: 1239518 archrelease: copy trunk to community-any Added: fb-client/repos/community-any/PKGBUILD (from rev 1239517, fb-client/trunk/PKGBUILD) Deleted: fb-client/repos/community-any/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-26 09:46:49 UTC (rev 1239517) +++ PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518) @@ -1,29 +0,0 @@ -# Maintainer: Florian "Bluewind" Pritz - -pkgname=fb-client -pkgver=2.1.1 -pkgrel=1 -pkgdesc="Client for paste.xinu.at" -arch=("any") -url="https://paste.xinu.at"; -license=('GPL3') -depends=('python' 'python-pycurl' 'python-xdg') -optdepends=('xclip: for automatically copying the URL into the clipboard') -source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('89b8cbe0675bbacaebb4386df7f2958c' - 'SKIP') -validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") - -build() { - cd "$srcdir/fb-$pkgver" - - make -} - -package() { - cd "$srcdir/fb-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239517, fb-client/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518) @@ -0,0 +1,29 @@ +# Maintainer: Florian "Bluewind" Pritz + +pkgname=fb-client +pkgver=2.2.0 +pkgrel=1 +pkgdesc="Client for paste.xinu.at" +arch=("any") +url="https://paste.xinu.at"; +license=('GPL3') +depends=('python' 'python-pycurl' 'python-xdg') +optdepends=('xclip: for automatically copying the URL into the clipboard') +source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) +md5sums=('ee0c7a677f62744b47b852a971927b4b' + 'SKIP') +validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E") + +build() { + cd "$srcdir/fb-$pkgver" + + make +} + +package() { + cd "$srcdir/fb-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in fb-client/trunk (PKGBUILD)
Date: Sunday, June 26, 2022 @ 09:46:49 Author: bluewind Revision: 1239517 upgpkg: fb-client 2.2.0-1: upstream update Modified: fb-client/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-26 08:25:47 UTC (rev 1239516) +++ PKGBUILD2022-06-26 09:46:49 UTC (rev 1239517) @@ -1,7 +1,7 @@ # Maintainer: Florian "Bluewind" Pritz pkgname=fb-client -pkgver=2.1.1 +pkgver=2.2.0 pkgrel=1 pkgdesc="Client for paste.xinu.at" arch=("any") @@ -10,7 +10,7 @@ depends=('python' 'python-pycurl' 'python-xdg') optdepends=('xclip: for automatically copying the URL into the clipboard') source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig}) -md5sums=('89b8cbe0675bbacaebb4386df7f2958c' +md5sums=('ee0c7a677f62744b47b852a971927b4b' 'SKIP') validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
[arch-commits] Commit in python-internetarchive/repos/community-any (2 files)
Date: Monday, June 13, 2022 @ 20:18:38 Author: bluewind Revision: 1237822 archrelease: copy trunk to community-any Added: python-internetarchive/repos/community-any/PKGBUILD (from rev 1237821, python-internetarchive/trunk/PKGBUILD) Deleted: python-internetarchive/repos/community-any/PKGBUILD --+ PKGBUILD | 104 ++--- 1 file changed, 52 insertions(+), 52 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-13 20:18:35 UTC (rev 1237821) +++ PKGBUILD2022-06-13 20:18:38 UTC (rev 1237822) @@ -1,52 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: David McInnis -# Contributor: jyantis - -pkgname=python-internetarchive -pkgver=3.0.0 -pkgrel=1 -pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' -arch=('any') -url='https://github.com/jjjake/ia-wrapper' -license=('AGPL3') -depends=('python' - 'python-six' - 'python-yaml' - 'python-requests' - 'python-jsonpatch' - 'python-docopt' - 'python-jsonpointer' - 'python-args' - 'python-tqdm' - 'python-schema' -) -makedepends=('python-setuptools') -optdepends=('python-ujson: faster json parsing' -'python-gevent: concurrent downloads' -'cython: speedups') -checkdepends=(python-responses - python-pytest - ) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5') - -build() { - cd internetarchive-${pkgver} - python setup.py build -} - -check() { - cd internetarchive-${pkgver} - - python setup.py test -} - -package() { - cd internetarchive-${pkgver} - python setup.py install --root="${pkgdir}" --optimize=1 - - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" -} - -# vim:set ts=2 sw=2 et: Copied: python-internetarchive/repos/community-any/PKGBUILD (from rev 1237821, python-internetarchive/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-13 20:18:38 UTC (rev 1237822) @@ -0,0 +1,52 @@ +# Maintainer: Florian Pritz +# Contributor: David McInnis +# Contributor: jyantis + +pkgname=python-internetarchive +pkgver=3.0.1 +pkgrel=1 +pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' +arch=('any') +url='https://github.com/jjjake/ia-wrapper' +license=('AGPL3') +depends=('python' + 'python-six' + 'python-yaml' + 'python-requests' + 'python-jsonpatch' + 'python-docopt' + 'python-jsonpointer' + 'python-args' + 'python-tqdm' + 'python-schema' +) +makedepends=('python-setuptools') +optdepends=('python-ujson: faster json parsing' +'python-gevent: concurrent downloads' +'cython: speedups') +checkdepends=(python-responses + python-pytest + ) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) +sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839') + +build() { + cd internetarchive-${pkgver} + python setup.py build +} + +check() { + cd internetarchive-${pkgver} + + python setup.py test +} + +package() { + cd internetarchive-${pkgver} + python setup.py install --root="${pkgdir}" --optimize=1 + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-internetarchive/trunk (PKGBUILD)
Date: Monday, June 13, 2022 @ 20:18:35 Author: bluewind Revision: 1237821 upgpkg: python-internetarchive 3.0.1-1: upstream update Modified: python-internetarchive/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-13 20:12:08 UTC (rev 1237820) +++ PKGBUILD2022-06-13 20:18:35 UTC (rev 1237821) @@ -3,7 +3,7 @@ # Contributor: jyantis pkgname=python-internetarchive -pkgver=3.0.0 +pkgver=3.0.1 pkgrel=1 pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' arch=('any') @@ -28,7 +28,7 @@ python-pytest ) source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5') +sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839') build() { cd internetarchive-${pkgver}
[arch-commits] Commit in syslog-ng/repos (4 files)
Date: Monday, June 13, 2022 @ 19:36:03 Author: bluewind Revision: 448442 archrelease: copy trunk to testing-x86_64 Added: syslog-ng/repos/testing-x86_64/ syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 448441, syslog-ng/trunk/PKGBUILD) syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 448441, syslog-ng/trunk/syslog-ng.conf) syslog-ng/repos/testing-x86_64/syslog-ng.logrotate (from rev 448441, syslog-ng/trunk/syslog-ng.logrotate) -+ PKGBUILD| 72 ++ syslog-ng.conf | 93 ++ syslog-ng.logrotate |7 +++ 3 files changed, 172 insertions(+) Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 448441, syslog-ng/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-06-13 19:36:03 UTC (rev 448442) @@ -0,0 +1,72 @@ +# Maintainer: Florian Pritz +# Contributor: Eric Bélanger + +pkgname=syslog-ng +pkgver=3.37.1 +pkgrel=1 +pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" +arch=('x86_64') +url="https://www.syslog-ng.com/products/open-source-log-management/"; +license=('GPL2' 'LGPL2.1') +depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet' 'openssl') +makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 'hiredis' + 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap' 'systemd') +checkdepends=('python-nose' 'python-ply') +optdepends=('logrotate: for rotating log files' +'libdbi: for the SQL plugin' +'librabbitmq-c: for the AMQP plugin' +'mongo-c-driver: for the MongoDB plugin' +'libesmtp: for the SMTP plugin' +'hiredis: for the Redis plugin' +'libmaxminddb: for the GeoIP2 plugin' +'net-snmp: for the SNMP plugin' +'librdkafka: for the Kafka C plugin' +'python: for Python-based plugins') +conflicts=('eventlog') +replaces=('eventlog') +backup=('etc/syslog-ng/scl.conf' +'etc/syslog-ng/syslog-ng.conf' +'etc/logrotate.d/syslog-ng' +'etc/default/syslog-ng@default') +source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz +syslog-ng.conf syslog-ng.logrotate) +sha512sums=('beebd89c54a415469dc58630ac1900d632ef351f6a13fad4a95ce7bb1760b16d6cfdcede02225a35e97ebce7dae151c6aa228f3d378463e8b873c4f71ed86ab7' + '36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded' + 'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc') + +prepare() { + cd $pkgname-$pkgver + sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' contrib/systemd/syslog-ng@.service + sed -i -e 's|/var/run|/run|g' contrib/systemd/syslog-ng@default +} + +build() { + cd $pkgname-$pkgver + + # https://archlinux.org/todo/lto-fat-objects/ + export CFLAGS+=" -ffat-lto-objects" + export CXXFLAGS+=" -ffat-lto-objects" + + + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \ +--sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share \ +--with-pidfile-dir=/run --enable-spoof-source --enable-ipv6 \ +--enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \ +--enable-manpages --enable-all-modules --disable-java --disable-java-modules \ +--disable-mqtt --disable-riemann --with-python=3 --with-jsonc=system + make +} + +check() { + cd $pkgname-$pkgver + make check || /usr/bin/true # unit test requires criterion +} + +package() { + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install + install -dm755 "$pkgdir/var/lib/syslog-ng" "$pkgdir/etc/syslog-ng/patterndb.d" + install -Dm644 "$srcdir/syslog-ng.conf" "$pkgdir/etc/syslog-ng/syslog-ng.conf" + install -Dm644 "$srcdir/syslog-ng.logrotate" "$pkgdir/etc/logrotate.d/syslog-ng" + install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default -t "$pkgdir"/etc/default +} Copied: syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 448441, syslog-ng/trunk/syslog-ng.conf) === --- testing-x86_64/syslog-ng.conf (rev 0) +++ testing-x86_64/syslog-ng.conf 2022-06-13 19:36:03 UTC (rev 448442) @@ -0,0 +1,93 @@ +@version: 3.35 +@include "scl.conf" +# +# /etc/syslog-ng/syslog-ng.conf +# + +options { + stats_freq (0); + flush_lines (0); + time_reopen (10); + log_fifo_size (1); + chain_hostnames (off); + dns_cache (no); + use_dns (no); + use_fqdn (no); + create_dirs (no); + keep_hostname (yes); + perm(0640); + group("log"); +}; + +source src { + system(); + inte
[arch-commits] Commit in syslog-ng/trunk (PKGBUILD)
Date: Monday, June 13, 2022 @ 19:35:59 Author: bluewind Revision: 448441 upgpkg: syslog-ng 3.37.1-1: upstream update Modified: syslog-ng/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-13 19:25:28 UTC (rev 448440) +++ PKGBUILD2022-06-13 19:35:59 UTC (rev 448441) @@ -2,7 +2,7 @@ # Contributor: Eric Bélanger pkgname=syslog-ng -pkgver=3.36.1 +pkgver=3.37.1 pkgrel=1 pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" arch=('x86_64') @@ -30,7 +30,7 @@ 'etc/default/syslog-ng@default') source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz syslog-ng.conf syslog-ng.logrotate) -sha512sums=('b74c10e708616f7f5f5d529de5c1a3ce8ac888c05aa4b0fcf390d70082e9bc3432f3752998a5a258663fd47b8e4d0c2735240a3e4eda28178579b18308ebb376' +sha512sums=('beebd89c54a415469dc58630ac1900d632ef351f6a13fad4a95ce7bb1760b16d6cfdcede02225a35e97ebce7dae151c6aa228f3d378463e8b873c4f71ed86ab7' '36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded' 'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc')
[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)
Date: Sunday, June 5, 2022 @ 13:17:39 Author: bluewind Revision: 447579 archrelease: copy trunk to core-any Added: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 447578, pacman-mirrorlist/trunk/PKGBUILD) pacman-mirrorlist/repos/core-any/mirrorlist (from rev 447578, pacman-mirrorlist/trunk/mirrorlist) pacman-mirrorlist/repos/core-any/upgpkg (from rev 447578, pacman-mirrorlist/trunk/upgpkg) Deleted: pacman-mirrorlist/repos/core-any/PKGBUILD pacman-mirrorlist/repos/core-any/mirrorlist pacman-mirrorlist/repos/core-any/upgpkg + PKGBUILD | 62 +- mirrorlist | 1723 +-- upgpkg |8 3 files changed, 906 insertions(+), 887 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 13:17:36 UTC (rev 447578) +++ PKGBUILD2022-06-05 13:17:39 UTC (rev 447579) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Dan McGee - -pkgname=pacman-mirrorlist -pkgver=20220501 -pkgrel=1 -pkgdesc="Arch Linux mirror list for use by pacman" -arch=('any') -url="https://www.archlinux.org/mirrorlist/"; -license=('GPL') -backup=(etc/pacman.d/mirrorlist) -source=(mirrorlist) - -# NOTE on building this package: -# * Go to the trunk/ directory -# * Run bash -c ". PKGBUILD; updatelist" -# * Update the checksums, update pkgver -# * Build the package - -updatelist() { - rm -f mirrorlist - curl -o mirrorlist https://archlinux.org/mirrorlist/all/ -} - -package() { - mkdir -p "$pkgdir/etc/pacman.d" - install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" -} - -md5sums=('e66d0f9a492639ab343fd534b1aba534') -sha256sums=('26b9e7f40cc77020e71f70ac64878ff71bb707d4c0ed30d1a362961f837a5dda') Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 447578, pacman-mirrorlist/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 13:17:39 UTC (rev 447579) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Dan McGee + +pkgname=pacman-mirrorlist +pkgver=20220605 +pkgrel=1 +pkgdesc="Arch Linux mirror list for use by pacman" +arch=('any') +url="https://www.archlinux.org/mirrorlist/"; +license=('GPL') +backup=(etc/pacman.d/mirrorlist) +source=(mirrorlist) + +# NOTE on building this package: +# * Go to the trunk/ directory +# * Run bash -c ". PKGBUILD; updatelist" +# * Update the checksums, update pkgver +# * Build the package + +updatelist() { + rm -f mirrorlist + curl -o mirrorlist https://archlinux.org/mirrorlist/all/ +} + +package() { + mkdir -p "$pkgdir/etc/pacman.d" + install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" +} + +md5sums=('36acb97b145e3b04af627330785183d2') +sha256sums=('c2b04786f88e3266a16db97c808eb79b73c9d1223fec72825e2ac8bf79d138a6') Deleted: mirrorlist === --- mirrorlist 2022-06-05 13:17:36 UTC (rev 447578) +++ mirrorlist 2022-06-05 13:17:39 UTC (rev 447579) @@ -1,852 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2022-05-01 -## - -## Worldwide -#Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch -#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch -#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch -#Server = http://mirror.
[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)
Date: Sunday, June 5, 2022 @ 13:17:36 Author: bluewind Revision: 447578 upgpkg: pacman-mirrorlist 20220605-1: upstream update Modified: pacman-mirrorlist/trunk/PKGBUILD pacman-mirrorlist/trunk/mirrorlist + PKGBUILD |6 +++--- mirrorlist | 25 ++--- 2 files changed, 25 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 13:07:40 UTC (rev 447577) +++ PKGBUILD2022-06-05 13:17:36 UTC (rev 447578) @@ -2,7 +2,7 @@ # Contributor: Dan McGee pkgname=pacman-mirrorlist -pkgver=20220501 +pkgver=20220605 pkgrel=1 pkgdesc="Arch Linux mirror list for use by pacman" arch=('any') @@ -27,5 +27,5 @@ install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" } -md5sums=('e66d0f9a492639ab343fd534b1aba534') -sha256sums=('26b9e7f40cc77020e71f70ac64878ff71bb707d4c0ed30d1a362961f837a5dda') +md5sums=('36acb97b145e3b04af627330785183d2') +sha256sums=('c2b04786f88e3266a16db97c808eb79b73c9d1223fec72825e2ac8bf79d138a6') Modified: mirrorlist === --- mirrorlist 2022-06-05 13:07:40 UTC (rev 447577) +++ mirrorlist 2022-06-05 13:17:36 UTC (rev 447578) @@ -1,6 +1,6 @@ ## ## Arch Linux repository mirrorlist -## Generated on 2022-05-01 +## Generated on 2022-06-05 ## ## Worldwide @@ -90,6 +90,8 @@ #Server = https://mirror.scd31.com/arch/$repo/os/$arch #Server = http://mirror.sergal.org/archlinux/$repo/os/$arch #Server = https://mirror.sergal.org/archlinux/$repo/os/$arch +#Server = http://mirror.xenyth.net/archlinux/$repo/os/$arch +#Server = https://mirror.xenyth.net/archlinux/$repo/os/$arch ## Chile #Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch @@ -120,6 +122,8 @@ #Server = https://mirrors.njupt.edu.cn/archlinux/$repo/os/$arch #Server = http://mirror.redrock.team/archlinux/$repo/os/$arch #Server = https://mirror.redrock.team/archlinux/$repo/os/$arch +#Server = http://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch +#Server = https://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch #Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch #Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch #Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch @@ -274,8 +278,8 @@ #Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch #Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch #Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch -#Server = http://mirror.luzea.de/archlinux/$repo/os/$arch -#Server = https://mirror.luzea.de/archlinux/$repo/os/$arch +#Server = http://archlinux.mirror.luzea.de/$repo/os/$arch +#Server = https://archlinux.mirror.luzea.de/$repo/os/$arch #Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch #Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch #Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch @@ -367,8 +371,12 @@ #Server = https://in-mirror.garudalinux.org/archlinux/$repo/os/$arch #Server = http://archlinux.mirror.net.in/archlinux/$repo/os/$arch #Server = https://archlinux.mirror.net.in/archlinux/$repo/os/$arch +#Server = http://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch +#Server = https://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch #Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch #Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch +#Server = http://mirror.sahil.world/$repo/os/$arch +#Server = https://mirror.sahil.world/$repo/os/$arch ## Indonesia #Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch @@ -578,6 +586,8 @@ #Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch ## Russia +#Server = http://mirror.kamtv.ru/archlinux/$repo/os/$arch +#Server = https://mirror.kamtv.ru/archlinux/$repo/os/$arch #Server = http://mirror.surf/archlinux/$repo/os/$arch #Server = https://mirror.surf/archlinux/$repo/os/$arch #Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch @@ -642,6 +652,8 @@ #Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch #Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch #Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch +#Server = http://mirror.misakamikoto.network/archlinux/$repo/os/$arch +#Server = https://mirror.misakamikoto.network/archlinux/$repo/os/$arch #Server = http://mirror.premi.st/archlinux/$repo/os/$arch #Server = https://mirror.premi.st/archlinux/$repo/os/$arch @@ -775,6 +787,7 @@ #Server = https://arch.hu.fo/archlinux/$repo/os/$arch #Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch #Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch +#Server = https://arch.mirror.ivo.st/$repo/os/$arch #Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch #Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch #Server = http://mirror.dal10.us.
[arch-commits] Commit in cpanminus/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 5, 2022 @ 13:16:31 Author: bluewind Revision: 1222863 archrelease: copy trunk to community-any Added: cpanminus/repos/community-any/PKGBUILD (from rev 1222862, cpanminus/trunk/PKGBUILD) Deleted: cpanminus/repos/community-any/PKGBUILD --+ PKGBUILD | 91 ++--- 1 file changed, 45 insertions(+), 46 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 13:16:28 UTC (rev 1222862) +++ PKGBUILD2022-06-05 13:16:31 UTC (rev 1222863) @@ -1,46 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=cpanminus -pkgver=1.7044 -pkgrel=6 -pkgdesc='get, unpack, build and install modules from CPAN' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=('perl>=5.8.1') -provides=("perl-app-cpanminus=$pkgver") -url=https://metacpan.org/release/App-cpanminus -source=("https://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/App-cpanminus-$pkgver.tar.gz";) -md5sums=(6e76f94dced6d4672686a30d16f8e890) -sha512sums=(85e88de8fbefabdfd84fe8aeaa8294d58d63e27276cd6d8b8dfc5dc4cd6c30c12f5859f30e4930842d6d06af50c88d71358dee49c93821234c811aa39de822d7) -_ddir="App-cpanminus-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" - find "$pkgdir" -name .packlist -o -name perllocal.pod -delete -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: cpanminus/repos/community-any/PKGBUILD (from rev 1222862, cpanminus/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 13:16:31 UTC (rev 1222863) @@ -0,0 +1,45 @@ +# Maintainer: Florian Pritz + +pkgname=cpanminus +pkgver=1.7046 +pkgrel=1 +pkgdesc='get, unpack, build and install modules from CPAN' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8.1') +provides=("perl-app-cpanminus=$pkgver") +url=https://metacpan.org/release/App-cpanminus +source=("https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-$pkgver.tar.gz";) +md5sums=(c6630373e444ed1e6b772e50e526a333) +sha512sums=(ced5f264979eb50cc33ac566c0242998c9b9c158ba435b9a180810f58eaa0b28d0de70312ade10df0ee3808369423f7baa029f2be740461d20a695e5e24d0d9b) +_ddir="App-cpanminus-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in cpanminus/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 13:16:28 Author: bluewind Revision: 1222862 upgpkg: cpanminus 1.7046-1: upstream update Modified: cpanminus/trunk/PKGBUILD --+ PKGBUILD | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 13:15:39 UTC (rev 1222861) +++ PKGBUILD2022-06-05 13:16:28 UTC (rev 1222862) @@ -1,8 +1,8 @@ # Maintainer: Florian Pritz pkgname=cpanminus -pkgver=1.7044 -pkgrel=6 +pkgver=1.7046 +pkgrel=1 pkgdesc='get, unpack, build and install modules from CPAN' arch=(any) license=(PerlArtistic GPL) @@ -10,9 +10,9 @@ depends=('perl>=5.8.1') provides=("perl-app-cpanminus=$pkgver") url=https://metacpan.org/release/App-cpanminus -source=("https://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/App-cpanminus-$pkgver.tar.gz";) -md5sums=(6e76f94dced6d4672686a30d16f8e890) -sha512sums=(85e88de8fbefabdfd84fe8aeaa8294d58d63e27276cd6d8b8dfc5dc4cd6c30c12f5859f30e4930842d6d06af50c88d71358dee49c93821234c811aa39de822d7) +source=("https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-$pkgver.tar.gz";) +md5sums=(c6630373e444ed1e6b772e50e526a333) +sha512sums=(ced5f264979eb50cc33ac566c0242998c9b9c158ba435b9a180810f58eaa0b28d0de70312ade10df0ee3808369423f7baa029f2be740461d20a695e5e24d0d9b) _ddir="App-cpanminus-$pkgver" build() @@ -36,7 +36,6 @@ ( cd "$srcdir/$_ddir" make install INSTALLDIRS=vendor DESTDIR="$pkgdir" - find "$pkgdir" -name .packlist -o -name perllocal.pod -delete ) # Local Variables:
[arch-commits] Commit in perl-rename/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 5, 2022 @ 13:15:39 Author: bluewind Revision: 1222861 archrelease: copy trunk to community-any Added: perl-rename/repos/community-any/PKGBUILD (from rev 1222860, perl-rename/trunk/PKGBUILD) Deleted: perl-rename/repos/community-any/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 13:15:36 UTC (rev 1222860) +++ PKGBUILD2022-06-05 13:15:39 UTC (rev 1222861) @@ -1,29 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-rename -pkgver=1.10 -pkgrel=3 -pkgdesc="Renames multiple files using Perl regular expressions." -arch=(any) -url="https://search.cpan.org/~pederst/rename/"; -license=('unknown') -depends=(perl) -options=(!emptydirs) -source=(https://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz) -md5sums=('3a99efefaf1446f9df265f6e740440e3') - -build() { -cd "$srcdir/rename-$pkgver" - -perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor -make -} - -package() { -cd "$srcdir/rename-$pkgver" - -make DESTDIR="$pkgdir/" install -install -d "$pkgdir/usr/bin/" -ln -s vendor_perl/rename "$pkgdir/usr/bin/perl-rename" -ln -s /usr/share/man/man1/rename.1p.gz "$pkgdir/usr/share/man/man1/perl-rename.1p.gz" -} Copied: perl-rename/repos/community-any/PKGBUILD (from rev 1222860, perl-rename/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 13:15:39 UTC (rev 1222861) @@ -0,0 +1,29 @@ +# Maintainer: Florian Pritz + +pkgname=perl-rename +pkgver=1.11 +pkgrel=1 +pkgdesc="Renames multiple files using Perl regular expressions." +arch=(any) +url="https://search.cpan.org/~pederst/rename/"; +license=('unknown') +depends=(perl) +options=(!emptydirs) +source=(https://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz) +md5sums=('176194ce9d98de9814d7e1761628337a') + +build() { +cd "$srcdir/rename-$pkgver" + +perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor +make +} + +package() { +cd "$srcdir/rename-$pkgver" + +make DESTDIR="$pkgdir/" install +install -d "$pkgdir/usr/bin/" +ln -s vendor_perl/rename "$pkgdir/usr/bin/perl-rename" +ln -s /usr/share/man/man1/rename.1p.gz "$pkgdir/usr/share/man/man1/perl-rename.1p.gz" +}
[arch-commits] Commit in perl-rename/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 13:15:36 Author: bluewind Revision: 1222860 upgpkg: perl-rename 1.11-1: upstream update Modified: perl-rename/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 12:57:51 UTC (rev 1222859) +++ PKGBUILD2022-06-05 13:15:36 UTC (rev 1222860) @@ -1,8 +1,8 @@ # Maintainer: Florian Pritz pkgname=perl-rename -pkgver=1.10 -pkgrel=3 +pkgver=1.11 +pkgrel=1 pkgdesc="Renames multiple files using Perl regular expressions." arch=(any) url="https://search.cpan.org/~pederst/rename/"; @@ -10,7 +10,7 @@ depends=(perl) options=(!emptydirs) source=(https://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz) -md5sums=('3a99efefaf1446f9df265f6e740440e3') +md5sums=('176194ce9d98de9814d7e1761628337a') build() { cd "$srcdir/rename-$pkgver"
[arch-commits] Commit in zabbix/repos/extra-x86_64 (30 files)
Date: Sunday, June 5, 2022 @ 13:07:40 Author: bluewind Revision: 447577 archrelease: copy trunk to extra-x86_64 Added: zabbix/repos/extra-x86_64/PKGBUILD (from rev 447576, zabbix/trunk/PKGBUILD) zabbix/repos/extra-x86_64/zabbix-agent.service (from rev 447576, zabbix/trunk/zabbix-agent.service) zabbix/repos/extra-x86_64/zabbix-agent.sysusers (from rev 447576, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles (from rev 447576, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/extra-x86_64/zabbix-agent2.service (from rev 447576, zabbix/trunk/zabbix-agent2.service) zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service (from rev 447576, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service (from rev 447576, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service (from rev 447576, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/extra-x86_64/zabbix-proxy.sysusers (from rev 447576, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles (from rev 447576, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/extra-x86_64/zabbix-server-mysql.service (from rev 447576, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/extra-x86_64/zabbix-server-pgsql.service (from rev 447576, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/extra-x86_64/zabbix-server.install (from rev 447576, zabbix/trunk/zabbix-server.install) zabbix/repos/extra-x86_64/zabbix-server.sysusers (from rev 447576, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/extra-x86_64/zabbix-server.tmpfiles (from rev 447576, zabbix/trunk/zabbix-server.tmpfiles) Deleted: zabbix/repos/extra-x86_64/PKGBUILD zabbix/repos/extra-x86_64/zabbix-agent.service zabbix/repos/extra-x86_64/zabbix-agent.sysusers zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles zabbix/repos/extra-x86_64/zabbix-agent2.service zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service zabbix/repos/extra-x86_64/zabbix-proxy.sysusers zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles zabbix/repos/extra-x86_64/zabbix-server-mysql.service zabbix/repos/extra-x86_64/zabbix-server-pgsql.service zabbix/repos/extra-x86_64/zabbix-server.install zabbix/repos/extra-x86_64/zabbix-server.sysusers zabbix/repos/extra-x86_64/zabbix-server.tmpfiles -+ PKGBUILD| 432 +- zabbix-agent.service| 22 +- zabbix-agent.sysusers |2 zabbix-agent.tmpfiles |2 zabbix-agent2.service | 22 +- zabbix-proxy-mysql.service | 36 +-- zabbix-proxy-pgsql.service | 36 +-- zabbix-proxy-sqlite.service | 36 +-- zabbix-proxy.sysusers |2 zabbix-proxy.tmpfiles |2 zabbix-server-mysql.service | 36 +-- zabbix-server-pgsql.service | 36 +-- zabbix-server.install | 24 +- zabbix-server.sysusers |2 zabbix-server.tmpfiles |2 15 files changed, 346 insertions(+), 346 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 13:07:32 UTC (rev 447576) +++ PKGBUILD2022-06-05 13:07:40 UTC (rev 447577) @@ -1,216 +0,0 @@ -# Maintainer: Bartłomiej Piotrowski -# Maintainer: Florian Pritz - -pkgbase=zabbix -pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.4 -pkgrel=1 -arch=(x86_64) -url='https://www.zabbix.com/' -license=(GPL) -makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) -source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; -zabbix-agent.{service,sysusers,tmpfiles} -zabbix-agent2.service -zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} -zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) - -sha512sums=('a95706a8258d5161b2fec0ea9fbe33e49b44a59c9214bc43c02fb015d57032e72ea52cb494753a63234ad0af8b89b99918cdbb0c8bf517bc51d3d0eed1657f57' - '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' - '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' - 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' - 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' - 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e4292
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 13:07:32 Author: bluewind Revision: 447576 upgpkg: zabbix 6.0.5-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 12:59:44 UTC (rev 447575) +++ PKGBUILD2022-06-05 13:07:32 UTC (rev 447576) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.4 +pkgver=6.0.5 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('a95706a8258d5161b2fec0ea9fbe33e49b44a59c9214bc43c02fb015d57032e72ea52cb494753a63234ad0af8b89b99918cdbb0c8bf517bc51d3d0eed1657f57' +sha512sums=('c4a431ba9c22ccb59c6eaac4147e40390e5e9a1f7a13638f2daa3dab3a75145104e711585b374eed0e663a3dc495d4b3b74c78b7676baafbfcca983f645054e8' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
[arch-commits] Commit in perl-image-exiftool/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:59:44 Author: bluewind Revision: 447575 archrelease: copy trunk to extra-any Added: perl-image-exiftool/repos/extra-any/PKGBUILD (from rev 447574, perl-image-exiftool/trunk/PKGBUILD) Deleted: perl-image-exiftool/repos/extra-any/PKGBUILD --+ PKGBUILD | 78 ++--- 1 file changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 12:59:42 UTC (rev 447574) +++ PKGBUILD2022-06-05 12:59:44 UTC (rev 447575) @@ -1,39 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: tobias -# Contributor: Tobias Kieslich -# Contributor: Firmicus - -pkgname=perl-image-exiftool -_srcname=Image-ExifTool -pkgver=12.40 -pkgrel=2 -pkgdesc="Reader and rewriter of EXIF informations that supports raw files" -arch=('any') -url="https://search.cpan.org/perldoc?exiftool"; -license=('GPL') -depends=('perl') -optdepends=('perl-archive-zip: Support for ZIP-files, including EPUB') -provides=("perl-exiftool=$pkgver") -replaces=("perl-exiftool") -options=('!emptydirs') -source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) -md5sums=('72b40d69cf518edebbf5b661465950e7') - -build() { - cd "${srcdir}/${_srcname}-${pkgver}" - # install module in vendor directories. - perl Makefile.PL INSTALLDIRS=vendor - make -} - -check() { - cd "${srcdir}/${_srcname}-${pkgver}" - make test -} - -package() { - cd "${srcdir}/${_srcname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -dm755 "$pkgdir/usr/share/$pkgname" - cp -r fmt_files config_files arg_files "$pkgdir/usr/share/$pkgname" -} Copied: perl-image-exiftool/repos/extra-any/PKGBUILD (from rev 447574, perl-image-exiftool/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 12:59:44 UTC (rev 447575) @@ -0,0 +1,39 @@ +# Maintainer: Florian Pritz +# Contributor: tobias +# Contributor: Tobias Kieslich +# Contributor: Firmicus + +pkgname=perl-image-exiftool +_srcname=Image-ExifTool +pkgver=12.42 +pkgrel=1 +pkgdesc="Reader and rewriter of EXIF informations that supports raw files" +arch=('any') +url="https://search.cpan.org/perldoc?exiftool"; +license=('GPL') +depends=('perl') +optdepends=('perl-archive-zip: Support for ZIP-files, including EPUB') +provides=("perl-exiftool=$pkgver") +replaces=("perl-exiftool") +options=('!emptydirs') +source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) +md5sums=('4baf1f4306c067de88bad4f6d25766da') + +build() { + cd "${srcdir}/${_srcname}-${pkgver}" + # install module in vendor directories. + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "${srcdir}/${_srcname}-${pkgver}" + make test +} + +package() { + cd "${srcdir}/${_srcname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -dm755 "$pkgdir/usr/share/$pkgname" + cp -r fmt_files config_files arg_files "$pkgdir/usr/share/$pkgname" +}
[arch-commits] Commit in perl-image-exiftool/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:59:42 Author: bluewind Revision: 447574 upgpkg: perl-image-exiftool 12.42-1: upstream update Modified: perl-image-exiftool/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 12:55:50 UTC (rev 447573) +++ PKGBUILD2022-06-05 12:59:42 UTC (rev 447574) @@ -5,8 +5,8 @@ pkgname=perl-image-exiftool _srcname=Image-ExifTool -pkgver=12.40 -pkgrel=2 +pkgver=12.42 +pkgrel=1 pkgdesc="Reader and rewriter of EXIF informations that supports raw files" arch=('any') url="https://search.cpan.org/perldoc?exiftool"; @@ -17,7 +17,7 @@ replaces=("perl-exiftool") options=('!emptydirs') source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) -md5sums=('72b40d69cf518edebbf5b661465950e7') +md5sums=('4baf1f4306c067de88bad4f6d25766da') build() { cd "${srcdir}/${_srcname}-${pkgver}"
[arch-commits] Commit in perl-net-openssh/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:57:51 Author: bluewind Revision: 1222859 archrelease: copy trunk to community-any Added: perl-net-openssh/repos/community-any/PKGBUILD (from rev 1222858, perl-net-openssh/trunk/PKGBUILD) Deleted: perl-net-openssh/repos/community-any/PKGBUILD --+ PKGBUILD | 88 ++--- 1 file changed, 44 insertions(+), 44 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 12:57:49 UTC (rev 1222858) +++ PKGBUILD2022-06-05 12:57:51 UTC (rev 1222859) @@ -1,44 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-net-openssh -pkgver=0.80 -pkgrel=3 -pkgdesc='Perl SSH client package implemented on top of OpenSSH' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=(perl) -url=https://metacpan.org/release/Net-OpenSSH -source=("https://cpan.metacpan.org/authors/id/S/SA/SALVA/Net-OpenSSH-$pkgver.tar.gz";) -md5sums=(1ab4470af03f8c15baa50c8b11f4bd52) -sha512sums=(3b68b73b0d5ee5db2096e0ac3ec3c3f12b92ee1865217a81eff0378f416ffdaac252d4ae4de601da7cd4a771bbab6a4768be4cafa0eaa2ff93b31a3cf824875d) -_ddir="Net-OpenSSH-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-net-openssh/repos/community-any/PKGBUILD (from rev 1222858, perl-net-openssh/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 12:57:51 UTC (rev 1222859) @@ -0,0 +1,44 @@ +# Maintainer: Florian Pritz + +pkgname=perl-net-openssh +pkgver=0.82 +pkgrel=1 +pkgdesc='Perl SSH client package implemented on top of OpenSSH' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=(perl) +url=https://metacpan.org/release/Net-OpenSSH +source=("https://cpan.metacpan.org/authors/id/S/SA/SALVA/Net-OpenSSH-$pkgver.tar.gz";) +md5sums=(0b6a71ddfd2b0e356dc2c3e606ac0f0a) +sha512sums=(ff13519ba04ebb4ecc3185cc1c32ca6b46a8cc55108f35aeb424738676a41cd7a898443f91d64fe4877e2ab6b4ed30fa15dd3da02aa11a4892ff2c9944035314) +_ddir="Net-OpenSSH-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-net-openssh/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:57:49 Author: bluewind Revision: 1222858 upgpkg: perl-net-openssh 0.82-1: upstream update Modified: perl-net-openssh/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 12:56:30 UTC (rev 1222857) +++ PKGBUILD2022-06-05 12:57:49 UTC (rev 1222858) @@ -1,8 +1,8 @@ # Maintainer: Florian Pritz pkgname=perl-net-openssh -pkgver=0.80 -pkgrel=3 +pkgver=0.82 +pkgrel=1 pkgdesc='Perl SSH client package implemented on top of OpenSSH' arch=(any) license=(PerlArtistic GPL) @@ -10,8 +10,8 @@ depends=(perl) url=https://metacpan.org/release/Net-OpenSSH source=("https://cpan.metacpan.org/authors/id/S/SA/SALVA/Net-OpenSSH-$pkgver.tar.gz";) -md5sums=(1ab4470af03f8c15baa50c8b11f4bd52) -sha512sums=(3b68b73b0d5ee5db2096e0ac3ec3c3f12b92ee1865217a81eff0378f416ffdaac252d4ae4de601da7cd4a771bbab6a4768be4cafa0eaa2ff93b31a3cf824875d) +md5sums=(0b6a71ddfd2b0e356dc2c3e606ac0f0a) +sha512sums=(ff13519ba04ebb4ecc3185cc1c32ca6b46a8cc55108f35aeb424738676a41cd7a898443f91d64fe4877e2ab6b4ed30fa15dd3da02aa11a4892ff2c9944035314) _ddir="Net-OpenSSH-$pkgver" build()
[arch-commits] Commit in perl-data-messagepack/repos/community-x86_64 (2 files)
Date: Sunday, June 5, 2022 @ 12:56:30 Author: bluewind Revision: 1222857 archrelease: copy trunk to community-x86_64 Added: perl-data-messagepack/repos/community-x86_64/PKGBUILD (from rev 1222856, perl-data-messagepack/trunk/PKGBUILD) Deleted: perl-data-messagepack/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 98 ++--- 1 file changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 12:56:27 UTC (rev 1222856) +++ PKGBUILD2022-06-05 12:56:30 UTC (rev 1222857) @@ -1,49 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-data-messagepack -pkgver=1.01 -pkgrel=3 -pkgdesc='MessagePack serializing/deserializing' -arch=(x86_64) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=('perl>=5.8.1') -makedepends=('perl-devel-ppport>=3.42' 'perl-module-build>=0.4005' - perl-module-build-xsutil) -checkdepends=(perl-test-requires) -url=https://metacpan.org/release/Data-MessagePack -source=("https://cpan.metacpan.org/authors/id/S/SY/SYOHEX/Data-MessagePack-$pkgver.tar.gz";) -md5sums=(f75e916e948076d3f059e593064199ea) -sha512sums=(7440f658df717ed54b20851b0af2eb22e5edf3dec1c749cae4974a30cb8c68105f0c326f06393be35f73ea8b1ef08a4f490aa8ca85b6b53430472084e092f957) -_ddir="Data-MessagePack-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null - unset PERL5LIB PERL_MB_OPT - /usr/bin/perl Build.PL - ./Build -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null - unset PERL5LIB PERL_MB_OPT - ./Build test -) - -package() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null - unset PERL5LIB PERL_MB_OPT - ./Build install --installdirs=vendor --destdir="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-data-messagepack/repos/community-x86_64/PKGBUILD (from rev 1222856, perl-data-messagepack/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 12:56:30 UTC (rev 1222857) @@ -0,0 +1,49 @@ +# Maintainer: Florian Pritz + +pkgname=perl-data-messagepack +pkgver=1.02 +pkgrel=1 +pkgdesc='MessagePack serializing/deserializing' +arch=(x86_64) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8.1') +makedepends=('perl-devel-ppport>=3.42' 'perl-module-build>=0.4005' + perl-module-build-xsutil) +checkdepends=(perl-test-requires) +url=https://metacpan.org/release/Data-MessagePack +source=("https://cpan.metacpan.org/authors/id/S/SY/SYOHEX/Data-MessagePack-$pkgver.tar.gz";) +md5sums=(23afe56c52a6e7f345a801710dcfabbe) +sha512sums=(a78a035091f42c888cb3d7b952d89588ba52988a6807e4c6dc347b12a751830b1b1d36ea93b8852339e1601dad197d42c762061b95ca2d8fdb4a6c29f6fda900) +_ddir="Data-MessagePack-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null + unset PERL5LIB PERL_MB_OPT + /usr/bin/perl Build.PL + ./Build +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null + unset PERL5LIB PERL_MB_OPT + ./Build test +) + +package() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null + unset PERL5LIB PERL_MB_OPT + ./Build install --installdirs=vendor --destdir="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-data-messagepack/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:56:27 Author: bluewind Revision: 1222856 upgpkg: perl-data-messagepack 1.02-1: upstream update Modified: perl-data-messagepack/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 12:15:07 UTC (rev 1222855) +++ PKGBUILD2022-06-05 12:56:27 UTC (rev 1222856) @@ -1,8 +1,8 @@ # Maintainer: Florian Pritz pkgname=perl-data-messagepack -pkgver=1.01 -pkgrel=3 +pkgver=1.02 +pkgrel=1 pkgdesc='MessagePack serializing/deserializing' arch=(x86_64) license=(PerlArtistic GPL) @@ -13,8 +13,8 @@ checkdepends=(perl-test-requires) url=https://metacpan.org/release/Data-MessagePack source=("https://cpan.metacpan.org/authors/id/S/SY/SYOHEX/Data-MessagePack-$pkgver.tar.gz";) -md5sums=(f75e916e948076d3f059e593064199ea) -sha512sums=(7440f658df717ed54b20851b0af2eb22e5edf3dec1c749cae4974a30cb8c68105f0c326f06393be35f73ea8b1ef08a4f490aa8ca85b6b53430472084e092f957) +md5sums=(23afe56c52a6e7f345a801710dcfabbe) +sha512sums=(a78a035091f42c888cb3d7b952d89588ba52988a6807e4c6dc347b12a751830b1b1d36ea93b8852339e1601dad197d42c762061b95ca2d8fdb4a6c29f6fda900) _ddir="Data-MessagePack-$pkgver" build()
[arch-commits] Commit in perl-mail-dkim/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:55:50 Author: bluewind Revision: 447573 archrelease: copy trunk to extra-any Added: perl-mail-dkim/repos/extra-any/PKGBUILD (from rev 447572, perl-mail-dkim/trunk/PKGBUILD) Deleted: perl-mail-dkim/repos/extra-any/PKGBUILD --+ PKGBUILD | 98 ++--- 1 file changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-06-05 12:55:47 UTC (rev 447572) +++ PKGBUILD2022-06-05 12:55:50 UTC (rev 447573) @@ -1,49 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Sergej Pupykin -# Contributor: Francois Charette - -pkgname=perl-mail-dkim -pkgver=1.20200907 -pkgrel=3 -pkgdesc='Signs/verifies Internet mail with DKIM/DomainKey signatures' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=(perl-crypt-openssl-rsa perl-mail-authenticationresults perl-mailtools - perl-net-dns) -checkdepends=('perl>=5.6' perl-net-dns perl-net-dns-resolver-mock - perl-test-requiresinternet perl-yaml-libyaml) -url=https://metacpan.org/release/Mail-DKIM -source=("https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-$pkgver.tar.gz";) -md5sums=(63ba8a807256ce13f7890c5acb206b3c) -sha512sums=(1bfdd97ca49abfd3ae6f13bc8ede8706531801e078351ac41a3a6172b9e65249d247e38a95c53eb60781b5f38b971a5acf9c8b98948e9c4d7a427a525ee231cb) -_ddir="Mail-DKIM-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-mail-dkim/repos/extra-any/PKGBUILD (from rev 447572, perl-mail-dkim/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-06-05 12:55:50 UTC (rev 447573) @@ -0,0 +1,49 @@ +# Maintainer: Florian Pritz +# Contributor: Sergej Pupykin +# Contributor: Francois Charette + +pkgname=perl-mail-dkim +pkgver=1.20220520 +pkgrel=1 +pkgdesc='Signs/verifies Internet mail with DKIM/DomainKey signatures' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=(perl-crypt-openssl-rsa perl-mail-authenticationresults perl-mailtools + perl-net-dns) +checkdepends=('perl>=5.6' perl-net-dns perl-net-dns-resolver-mock + perl-test-requiresinternet perl-yaml-libyaml) +url=https://metacpan.org/release/Mail-DKIM +source=("https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-$pkgver.tar.gz";) +md5sums=(5a0dec58f0c2526521b2952a3c126906) +sha512sums=(e2ea3b29b7aa687ce333cd06c0e80a16decca22c0b8c30f4a11967d8801f77338441e41a85560da3fe7cacb9cbb7b4041d607d49c85f3c192ca1a205f1fcd920) +_ddir="Mail-DKIM-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-mail-dkim/trunk (PKGBUILD)
Date: Sunday, June 5, 2022 @ 12:55:47 Author: bluewind Revision: 447572 upgpkg: perl-mail-dkim 1.20220520-1: upstream update Modified: perl-mail-dkim/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-06-05 09:11:27 UTC (rev 447571) +++ PKGBUILD2022-06-05 12:55:47 UTC (rev 447572) @@ -3,8 +3,8 @@ # Contributor: Francois Charette pkgname=perl-mail-dkim -pkgver=1.20200907 -pkgrel=3 +pkgver=1.20220520 +pkgrel=1 pkgdesc='Signs/verifies Internet mail with DKIM/DomainKey signatures' arch=(any) license=(PerlArtistic GPL) @@ -15,8 +15,8 @@ perl-test-requiresinternet perl-yaml-libyaml) url=https://metacpan.org/release/Mail-DKIM source=("https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-$pkgver.tar.gz";) -md5sums=(63ba8a807256ce13f7890c5acb206b3c) -sha512sums=(1bfdd97ca49abfd3ae6f13bc8ede8706531801e078351ac41a3a6172b9e65249d247e38a95c53eb60781b5f38b971a5acf9c8b98948e9c4d7a427a525ee231cb) +md5sums=(5a0dec58f0c2526521b2952a3c126906) +sha512sums=(e2ea3b29b7aa687ce333cd06c0e80a16decca22c0b8c30f4a11967d8801f77338441e41a85560da3fe7cacb9cbb7b4041d607d49c85f3c192ca1a205f1fcd920) _ddir="Mail-DKIM-$pkgver" build()
[arch-commits] Commit in perl/repos (12 files)
Date: Sunday, May 29, 2022 @ 09:08:30 Author: bluewind Revision: 446642 archrelease: copy trunk to staging-x86_64 Added: perl/repos/staging-x86_64/ perl/repos/staging-x86_64/CVE-2016-2381_duplicate_env.diff (from rev 446641, perl/trunk/CVE-2016-2381_duplicate_env.diff) perl/repos/staging-x86_64/PKGBUILD (from rev 446641, perl/trunk/PKGBUILD) perl/repos/staging-x86_64/config.over (from rev 446641, perl/trunk/config.over) perl/repos/staging-x86_64/detect-old-perl-modules.hook (from rev 446641, perl/trunk/detect-old-perl-modules.hook) perl/repos/staging-x86_64/detect-old-perl-modules.sh (from rev 446641, perl/trunk/detect-old-perl-modules.sh) perl/repos/staging-x86_64/generate-rebuild-list.sh (from rev 446641, perl/trunk/generate-rebuild-list.sh) perl/repos/staging-x86_64/patchprov (from rev 446641, perl/trunk/patchprov) perl/repos/staging-x86_64/perlbin.csh (from rev 446641, perl/trunk/perlbin.csh) perl/repos/staging-x86_64/perlbin.fish (from rev 446641, perl/trunk/perlbin.fish) perl/repos/staging-x86_64/perlbin.sh (from rev 446641, perl/trunk/perlbin.sh) perl/repos/staging-x86_64/upgpkg (from rev 446641, perl/trunk/upgpkg) --+ CVE-2016-2381_duplicate_env.diff | 104 ++ PKGBUILD | 238 + config.over |5 detect-old-perl-modules.hook | 10 + detect-old-perl-modules.sh | 36 + generate-rebuild-list.sh | 16 ++ patchprov| 260 + perlbin.csh | 12 + perlbin.fish | 10 + perlbin.sh | 15 ++ upgpkg |4 11 files changed, 710 insertions(+) Copied: perl/repos/staging-x86_64/CVE-2016-2381_duplicate_env.diff (from rev 446641, perl/trunk/CVE-2016-2381_duplicate_env.diff) === --- staging-x86_64/CVE-2016-2381_duplicate_env.diff (rev 0) +++ staging-x86_64/CVE-2016-2381_duplicate_env.diff 2022-05-29 09:08:30 UTC (rev 446642) @@ -0,0 +1,104 @@ +From 83e7ebed7afa79a2f50eca6b6330eae7c3a02d36 Mon Sep 17 00:00:00 2001 +From: Tony Cook +Date: Wed, 27 Jan 2016 11:52:15 +1100 +Subject: remove duplicate environment variables from environ + +If we see duplicate environment variables while iterating over +environ[]: + +a) make sure we use the same value in %ENV that getenv() returns. + +Previously on a duplicate, %ENV would have the last entry for the name +from environ[], but a typical getenv() would return the first entry. + +Rather than assuming all getenv() implementations return the first entry +explicitly call getenv() to ensure they agree. + +b) remove duplicate entries from environ + +Previously if there was a duplicate definition for a name in environ[] +setting that name in %ENV could result in an unsafe value being passed +to a child process, so ensure environ[] has no duplicates. + +Patch-Name: fixes/CVE-2016-2381_duplicate_env.diff +--- + perl.c | 51 +-- + 1 file changed, 49 insertions(+), 2 deletions(-) + +diff --git a/perl.c b/perl.c +index 80a76c2..ed25429 100644 +--- a/perl.c b/perl.c +@@ -4303,23 +4303,70 @@ S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env) + } + if (env) { + char *s, *old_var; ++ STRLEN nlen; + SV *sv; ++ HV *dups = newHV(); ++ + for (; *env; env++) { + old_var = *env; + + if (!(s = strchr(old_var,'=')) || s == old_var) + continue; ++nlen = s - old_var; + + #if defined(MSDOS) && !defined(DJGPP) + *s = '\0'; + (void)strupr(old_var); + *s = '='; + #endif +- sv = newSVpv(s+1, 0); +- (void)hv_store(hv, old_var, s - old_var, sv, 0); ++if (hv_exists(hv, old_var, nlen)) { ++const char *name = savepvn(old_var, nlen); ++ ++/* make sure we use the same value as getenv(), otherwise code that ++ uses getenv() (like setlocale()) might see a different value to %ENV ++ */ ++sv = newSVpv(PerlEnv_getenv(name), 0); ++ ++/* keep a count of the dups of this name so we can de-dup environ later */ ++if (hv_exists(dups, name, nlen)) ++++SvIVX(*hv_fetch(dups, name, nlen, 0)); ++else ++(void)hv_store(dups, name, nlen, newSViv(1), 0); ++ ++Safefree(name); ++} ++else { ++sv = newSVpv(s+1, 0); ++} ++ (void)hv_store(hv, old_var, nlen, sv, 0); + if (env_is_not_environ) + mg_set(sv); + } ++ if (HvKEYS(dups)) { ++ /* env
[arch-commits] Commit in perl/trunk (PKGBUILD)
Date: Sunday, May 29, 2022 @ 09:08:25 Author: bluewind Revision: 446641 upgpkg: perl 5.36.0-1: upstream update Modified: perl/trunk/PKGBUILD --+ PKGBUILD | 92 ++--- 1 file changed, 46 insertions(+), 46 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-05-29 08:39:21 UTC (rev 446640) +++ PKGBUILD2022-05-29 09:08:25 UTC (rev 446641) @@ -5,7 +5,7 @@ # Contributor: francois pkgname=perl -pkgver=5.34.1 +pkgver=5.36.0 _baseversion="${pkgver%.*}" pkgrel=1 pkgdesc="A highly capable, feature-rich programming language" @@ -16,71 +16,71 @@ checkdepends=('procps-ng') # NOTE: This array is automatically generated by `./patchprov`. # If you want to add entries, do so in the next array. -provides=('perl-archive-tar=2.38' - 'perl-attribute-handlers=1.01' +provides=('perl-archive-tar=2.40' + 'perl-attribute-handlers=1.02' 'perl-autodie=2.34' 'perl-autoloader=5.74' 'perl-autouse=1.11' 'perl-base=2.27' - 'perl-bignum=0.51' + 'perl-bignum=0.65' 'perl-carp=1.52' - 'perl-compress-raw-bzip2=2.101' - 'perl-compress-raw-zlib=2.101' + 'perl-compress-raw-bzip2=2.103' + 'perl-compress-raw-zlib=2.105' 'perl-config-perl-v=0.33' 'perl-constant=1.33' 'perl-cpan-meta-requirements=2.140' 'perl-cpan-meta-yaml=0.018' 'perl-cpan-meta=2.150010' - 'perl-cpan=2.28' - 'perl-data-dumper=2.179' - 'perl-db_file=1.855' - 'perl-devel-ppport=3.62' + 'perl-cpan=2.33' + 'perl-data-dumper=2.184' + 'perl-db_file=1.857' + 'perl-devel-ppport=3.68' 'perl-devel-selfstubber=1.06' 'perl-digest-md5=2.58' 'perl-digest-sha=6.02' - 'perl-digest=1.19' + 'perl-digest=1.20' 'perl-dumpvalue=1.21' - 'perl-encode=3.08_01' + 'perl-encode=3.17' 'perl-encoding-warnings=0.13' 'perl-env=1.05' - 'perl-experimental=0.024' - 'perl-exporter=5.76' + 'perl-experimental=0.028' + 'perl-exporter=5.77' 'perl-extutils-cbuilder=0.280236' 'perl-extutils-constant=0.25' 'perl-extutils-install=2.20' - 'perl-extutils-makemaker=7.62' + 'perl-extutils-makemaker=7.64' 'perl-extutils-manifest=1.73' - 'perl-extutils-parsexs=3.43' + 'perl-extutils-parsexs=3.45' 'perl-extutils-pl2bat=0.004' - 'perl-file-fetch=1.00' + 'perl-file-fetch=1.04' 'perl-file-path=2.18' 'perl-file-temp=0.2311' 'perl-filter-simple=0.96' 'perl-filter-util-call=1.60' - 'perl-findbin=1.52' + 'perl-findbin=1.53' 'perl-getopt-long=2.52' - 'perl-http-tiny=0.076' + 'perl-http-tiny=0.080' 'perl-i18n-collate=1.02' 'perl-i18n-langtags=0.45' - 'perl-if=0.0609' - 'perl-io-compress=2.102' + 'perl-if=0.0610' + 'perl-io-compress=2.106' 'perl-io-socket-ip=0.41' 'perl-io-zlib=1.11' - 'perl-io=1.46' + 'perl-io=1.50' 'perl-ipc-cmd=1.04' 'perl-ipc-sysv=2.09' - 'perl-json-pp=4.06' + 'perl-json-pp=4.07' 'perl-lib=0.65' 'perl-libnet=3.13' 'perl-locale-maketext-simple=0.21_01' - 'perl-locale-maketext=1.29' - 'perl-math-bigint-fastcalc=0.5009' - 'perl-math-bigint=1.999818' - 'perl-math-bigrat=0.2614' + 'perl-locale-maketext=1.31' + 'perl-math-bigint-fastcalc=0.5012' + 'perl-math-bigint=1.999830' + 'perl-math-bigrat=0.2621' 'perl-math-complex=1.5902' 'perl-memoize=1.03_01' 'perl-mime-base64=3.16' - 'perl-module-corelist=5.20220313' + 'perl-module-corelist=5.20220520' 'perl-module-load-conditional=0.74' 'perl-module-load=0.36' 'perl-module-loaded=0.08' @@ -88,47 +88,47 @@ 'perl-net-ping=2.74' 'perl-params-check=0.38' 'perl-parent=0.238' - 'perl-pathtools=3.80' + 'perl-pathtools=3.84' 'perl-perl-ostype=1.010' - 'perl-perlfaq=5.20210411' + 'perl-perlfaq=5.20210520' 'perl-perlio-via-quotedprint=0.09' 'perl-pod-checker=1.74' 'perl-pod-escapes=1.07' 'perl-pod-perldoc=3.2801' - 'perl-pod-simple=3.42' + 'perl-pod-simple=3.43' 'perl-pod-usage=2.01' 'perl-podlators=5.008' 'perl-safe=2.43' - 'perl-scalar-list-utils=1.55' + 'perl-scalar-list-utils=1.62' 'perl-search-dict=1.07' 'perl-
[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, May 8, 2022 @ 07:45:37 Author: bluewind Revision: 1196249 archrelease: copy trunk to community-any Added: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1196248, grafana-zabbix/trunk/PKGBUILD) Deleted: grafana-zabbix/repos/community-any/PKGBUILD --+ PKGBUILD | 71 +++-- 1 file changed, 32 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-05-08 07:45:34 UTC (rev 1196248) +++ PKGBUILD2022-05-08 07:45:37 UTC (rev 1196249) @@ -1,39 +0,0 @@ -# Maintainer: Florian Pritz -pkgname=grafana-zabbix -pkgver=4.2.6 -pkgrel=2 -pkgdesc="Zabbix plugin for Grafana dashboard" -arch=('any') -url="https://github.com/alexanderzobnin/grafana-zabbix"; -license=('APACHE') -depends=('grafana') -makedepends=(yarn libfaketime go git nodejs-lts-gallium) -source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz"; - grafana-zabbix-sass-update-for-node-16.patch::https://github.com/alexanderzobnin/grafana-zabbix/commit/a09d8a983e051cbe4a959c40224426edc3468d10.patch) -sha256sums=('913efd1d6bfb903eb7e40d79d58fc1d9cf5041d4764bc1f34f1c5997439de1ab' - 'ec1c6863ba97db0da505569b0992bc6a3158d54621db20235635e4fbd36eb15c') - -prepare() { - cd "$pkgname-$pkgver" - patch -Np1 -i ../grafana-zabbix-sass-update-for-node-16.patch -} - -build() { - cd "$pkgname-$pkgver" - make install - make build - make dist -} - -check() { - cd "$pkgname-$pkgver" - # Force UTC timezone so that tests pass, even after a DST change - PATH="$PATH:/build/go/bin" TZ=UTC make test lint -} - -package() { - cd "$pkgname-$pkgver" - install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" -} Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1196248, grafana-zabbix/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-05-08 07:45:37 UTC (rev 1196249) @@ -0,0 +1,32 @@ +# Maintainer: Florian Pritz +pkgname=grafana-zabbix +pkgver=4.2.8 +pkgrel=1 +pkgdesc="Zabbix plugin for Grafana dashboard" +arch=('any') +url="https://github.com/alexanderzobnin/grafana-zabbix"; +license=('APACHE') +depends=('grafana') +makedepends=(yarn libfaketime go git nodejs-lts-gallium) +source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) +sha256sums=('052ef487b01861b59ea8171282b774f0fae13c3cc1e6232fda773be59fb9e754') + +build() { + cd "$pkgname-$pkgver" + make install + make build + make dist +} + +check() { + cd "$pkgname-$pkgver" + # Force UTC timezone so that tests pass, even after a DST change + PATH="$PATH:/build/go/bin" TZ=UTC make test lint +} + +package() { + cd "$pkgname-$pkgver" + install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" +}
[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)
Date: Sunday, May 8, 2022 @ 07:45:34 Author: bluewind Revision: 1196248 upgpkg: grafana-zabbix 4.2.8-1: upstream update Modified: grafana-zabbix/trunk/PKGBUILD --+ PKGBUILD | 15 --- 1 file changed, 4 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-05-08 07:34:34 UTC (rev 1196247) +++ PKGBUILD2022-05-08 07:45:34 UTC (rev 1196248) @@ -1,7 +1,7 @@ # Maintainer: Florian Pritz pkgname=grafana-zabbix -pkgver=4.2.6 -pkgrel=2 +pkgver=4.2.8 +pkgrel=1 pkgdesc="Zabbix plugin for Grafana dashboard" arch=('any') url="https://github.com/alexanderzobnin/grafana-zabbix"; @@ -8,16 +8,9 @@ license=('APACHE') depends=('grafana') makedepends=(yarn libfaketime go git nodejs-lts-gallium) -source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz"; - grafana-zabbix-sass-update-for-node-16.patch::https://github.com/alexanderzobnin/grafana-zabbix/commit/a09d8a983e051cbe4a959c40224426edc3468d10.patch) -sha256sums=('913efd1d6bfb903eb7e40d79d58fc1d9cf5041d4764bc1f34f1c5997439de1ab' - 'ec1c6863ba97db0da505569b0992bc6a3158d54621db20235635e4fbd36eb15c') +source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) +sha256sums=('052ef487b01861b59ea8171282b774f0fae13c3cc1e6232fda773be59fb9e754') -prepare() { - cd "$pkgname-$pkgver" - patch -Np1 -i ../grafana-zabbix-sass-update-for-node-16.patch -} - build() { cd "$pkgname-$pkgver" make install
[arch-commits] Commit in smokeping/repos/community-any (10 files)
Date: Sunday, May 8, 2022 @ 07:34:34 Author: bluewind Revision: 1196247 archrelease: copy trunk to community-any Added: smokeping/repos/community-any/PKGBUILD (from rev 1196246, smokeping/trunk/PKGBUILD) smokeping/repos/community-any/htdocs-makefile.patch (from rev 1196246, smokeping/trunk/htdocs-makefile.patch) smokeping/repos/community-any/service (from rev 1196246, smokeping/trunk/service) smokeping/repos/community-any/smokeping.sysusers (from rev 1196246, smokeping/trunk/smokeping.sysusers) smokeping/repos/community-any/smokeping.tmpfiles (from rev 1196246, smokeping/trunk/smokeping.tmpfiles) Deleted: smokeping/repos/community-any/PKGBUILD smokeping/repos/community-any/htdocs-makefile.patch smokeping/repos/community-any/service smokeping/repos/community-any/smokeping.sysusers smokeping/repos/community-any/smokeping.tmpfiles ---+ PKGBUILD | 102 htdocs-makefile.patch | 22 +- service | 23 +- smokeping.sysusers|2 smokeping.tmpfiles|2 5 files changed, 76 insertions(+), 75 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-05-08 07:34:27 UTC (rev 1196246) +++ PKGBUILD2022-05-08 07:34:34 UTC (rev 1196247) @@ -1,51 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Christos Nouskas nous - -pkgname=smokeping -pkgver=2.8.2 -pkgrel=1 -pkgdesc="A tool to keep track of your network latency" -arch=('any') -url="https://oss.oetiker.ch/smokeping/"; -license=('GPL2') -depends=('perl-config-grammar' 'perl-digest-hmac' 'perl-libwww' 'rrdtool' 'perl-fcgi' 'perl-cgi-fast' - 'perl-io-tty' 'perl-net-dns' 'perl-net-snmp' 'perl-net-telnet' 'perl-ldap' 'perl-net-openssh') -source=("${pkgname}_release-$pkgver.tar.gz::https://github.com/oetiker/SmokePing/releases/download/$pkgver/smokeping-$pkgver.tar.gz"; -smokeping.sysusers -smokeping.tmpfiles -service) -sha256sums=('29e61118b455e23b969ada5f8e2ab432d3e2ef87d4afe2c86de4a03d7188b6ea' -'ab3b399f58118fc31fac5f627814bbb3b1d7752dd3b4fed2d6b7ee58f24fbd2e' -'afd3196804a120866e8e5f207f177c96fd64b36c974888d8287fba3c216b1583' -'4691650aed6c7341bf3a898f63c8ad03f2453d4ce9874e83f24ced5ee21317d9') - -build() { - cd "$srcdir"/smokeping-${pkgver} - - ./configure --prefix=/usr --sysconfdir=/etc/smokeping --with-htdocs-dir=/srv/http/smokeping - - # prevent the build system from packaging CPAN deps - rm -rf thirdparty/CPAN - mkdir thirdparty/CPAN - touch cpanfile "thirdparty/cpanfile-$(perl -MConfig -e 'my $v =$Config{version}; $v =~ s/.\d+$//;print $v;').snapshot" - touch thirdparty/touch thirdparty/CPAN/touch - - make -} - -package() { - cd "$srcdir"/smokeping-${pkgver} - - # We package CPAN modules separately - mkdir -p thirdparty/lib/perl5/removeme - - make DESTDIR="$pkgdir" install - - rm -rf "$pkgdir/usr/lib/removeme" - - install -Dm644 "$srcdir/service" "$pkgdir/usr/lib/systemd/system/smokeping.service" - install -Dm644 "$srcdir/smokeping.sysusers" "$pkgdir/usr/lib/sysusers.d/smokeping.conf" - install -Dm644 "$srcdir/smokeping.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/smokeping.conf" - chown -R 181:181 "$pkgdir"/{etc/smokeping,srv/http/smokeping} - chmod 700 "$pkgdir/etc/smokeping" -} Copied: smokeping/repos/community-any/PKGBUILD (from rev 1196246, smokeping/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-05-08 07:34:34 UTC (rev 1196247) @@ -0,0 +1,51 @@ +# Maintainer: Florian Pritz +# Contributor: Christos Nouskas nous + +pkgname=smokeping +pkgver=2.8.2 +pkgrel=2 +pkgdesc="A tool to keep track of your network latency" +arch=('any') +url="https://oss.oetiker.ch/smokeping/"; +license=('GPL2') +depends=('perl-config-grammar' 'perl-digest-hmac' 'perl-libwww' 'rrdtool' 'perl-fcgi' 'perl-cgi-fast' + 'perl-io-tty' 'perl-net-dns' 'perl-net-snmp' 'perl-net-telnet' 'perl-ldap' 'perl-net-openssh') +source=("${pkgname}_release-$pkgver.tar.gz::https://github.com/oetiker/SmokePing/releases/download/$pkgver/smokeping-$pkgver.tar.gz"; +smokeping.sysusers +smokeping.tmpfiles +service) +sha256sums=('29e61118b455e23b969ada5f8e2ab432d3e2ef87d4afe2c86de4a03d7188b6ea' +'ab3b399f58118fc31fac5f627814bbb3b1d7752dd3b4fed2d6b7ee58f24fbd2e' +'afd3196804a120866e8e5f207f177c96fd64b36c974888d8287fba3c216b1583' +'0e0b418c2f1688990c390297122ade6a0b657e08eb8f7c085fea775cc038074c') + +build() { + cd "$srcdir"/smokeping-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc/smokeping --with-htdocs-dir=/srv/http/smokeping + + # prevent the build system from packaging CPAN deps + rm -rf thirdparty/CPAN + mkdir thirdparty/CPAN + touch cpanfile "thirdparty/cpanfile-$(perl -MConfig -e 'my $v
[arch-commits] Commit in smokeping/trunk (PKGBUILD service)
Date: Sunday, May 8, 2022 @ 07:34:27 Author: bluewind Revision: 1196246 upgpkg: smokeping 2.8.2-2: depend on network-online.target, FS#74561 Modified: smokeping/trunk/PKGBUILD smokeping/trunk/service --+ PKGBUILD |4 ++-- service |3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-05-07 23:33:05 UTC (rev 1196245) +++ PKGBUILD2022-05-08 07:34:27 UTC (rev 1196246) @@ -3,7 +3,7 @@ pkgname=smokeping pkgver=2.8.2 -pkgrel=1 +pkgrel=2 pkgdesc="A tool to keep track of your network latency" arch=('any') url="https://oss.oetiker.ch/smokeping/"; @@ -17,7 +17,7 @@ sha256sums=('29e61118b455e23b969ada5f8e2ab432d3e2ef87d4afe2c86de4a03d7188b6ea' 'ab3b399f58118fc31fac5f627814bbb3b1d7752dd3b4fed2d6b7ee58f24fbd2e' 'afd3196804a120866e8e5f207f177c96fd64b36c974888d8287fba3c216b1583' -'4691650aed6c7341bf3a898f63c8ad03f2453d4ce9874e83f24ced5ee21317d9') +'0e0b418c2f1688990c390297122ade6a0b657e08eb8f7c085fea775cc038074c') build() { cd "$srcdir"/smokeping-${pkgver} Modified: service === --- service 2022-05-07 23:33:05 UTC (rev 1196245) +++ service 2022-05-08 07:34:27 UTC (rev 1196246) @@ -1,6 +1,7 @@ [Unit] Description=SmokePing Daemon -After=network.target +After=network-online.target +Wants=network-online.target [Service] User=smokeping
[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, May 1, 2022 @ 13:10:58 Author: bluewind Revision: 1192085 archrelease: copy trunk to community-any Added: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1192084, grafana-zabbix/trunk/PKGBUILD) Deleted: grafana-zabbix/repos/community-any/PKGBUILD --+ PKGBUILD | 75 +++-- 1 file changed, 39 insertions(+), 36 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-05-01 13:10:42 UTC (rev 1192084) +++ PKGBUILD2022-05-01 13:10:58 UTC (rev 1192085) @@ -1,36 +0,0 @@ -# Maintainer: Florian Pritz -pkgname=grafana-zabbix -pkgver=4.2.6 -pkgrel=1 -pkgdesc="Zabbix plugin for Grafana dashboard" -arch=('any') -url="https://github.com/alexanderzobnin/grafana-zabbix"; -license=('APACHE') -depends=('grafana') -makedepends=(yarn python2 libfaketime go git nodejs-lts-fermium) # node-sass depends on node-gyp 3.8.0 which is still python2 https://github.com/sass/node-sass/issues/2877 -source=("$pkgname-$pkgver.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('03587d586be11e9e472e1001c949971c6b42053a000c9adc4e43fefac179be54') - -build() { - cd "$pkgname-$pkgver" - export CXXFLAGS+=' -std=c++14 ' - make install - make build - make dist - # Rerun this part since otherwise the linux_amd64 file ist missing from the - # dist dir - make dist-backend -} - -check() { - cd "$pkgname-$pkgver" - # Force UTC timezone so that tests pass, even after a DST change - PATH="$PATH:/build/go/bin" TZ=UTC make test lint -} - -package() { - cd "$pkgname-$pkgver" - install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" -} Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1192084, grafana-zabbix/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-05-01 13:10:58 UTC (rev 1192085) @@ -0,0 +1,39 @@ +# Maintainer: Florian Pritz +pkgname=grafana-zabbix +pkgver=4.2.6 +pkgrel=2 +pkgdesc="Zabbix plugin for Grafana dashboard" +arch=('any') +url="https://github.com/alexanderzobnin/grafana-zabbix"; +license=('APACHE') +depends=('grafana') +makedepends=(yarn libfaketime go git nodejs-lts-gallium) +source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz"; + grafana-zabbix-sass-update-for-node-16.patch::https://github.com/alexanderzobnin/grafana-zabbix/commit/a09d8a983e051cbe4a959c40224426edc3468d10.patch) +sha256sums=('913efd1d6bfb903eb7e40d79d58fc1d9cf5041d4764bc1f34f1c5997439de1ab' + 'ec1c6863ba97db0da505569b0992bc6a3158d54621db20235635e4fbd36eb15c') + +prepare() { + cd "$pkgname-$pkgver" + patch -Np1 -i ../grafana-zabbix-sass-update-for-node-16.patch +} + +build() { + cd "$pkgname-$pkgver" + make install + make build + make dist +} + +check() { + cd "$pkgname-$pkgver" + # Force UTC timezone so that tests pass, even after a DST change + PATH="$PATH:/build/go/bin" TZ=UTC make test lint +} + +package() { + cd "$pkgname-$pkgver" + install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" +}
[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)
Date: Sunday, May 1, 2022 @ 13:10:42 Author: bluewind Revision: 1192084 FS#72552 Remove python2 dep + update nodejs; FS#74574 Fix checksum after retag; go 1.18 rebuild Modified: grafana-zabbix/trunk/PKGBUILD --+ PKGBUILD | 19 +++ 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-05-01 12:31:19 UTC (rev 1192083) +++ PKGBUILD2022-05-01 13:10:42 UTC (rev 1192084) @@ -1,25 +1,28 @@ # Maintainer: Florian Pritz pkgname=grafana-zabbix pkgver=4.2.6 -pkgrel=1 +pkgrel=2 pkgdesc="Zabbix plugin for Grafana dashboard" arch=('any') url="https://github.com/alexanderzobnin/grafana-zabbix"; license=('APACHE') depends=('grafana') -makedepends=(yarn python2 libfaketime go git nodejs-lts-fermium) # node-sass depends on node-gyp 3.8.0 which is still python2 https://github.com/sass/node-sass/issues/2877 -source=("$pkgname-$pkgver.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('03587d586be11e9e472e1001c949971c6b42053a000c9adc4e43fefac179be54') +makedepends=(yarn libfaketime go git nodejs-lts-gallium) +source=("$pkgname-$pkgver-retagged-1.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz"; + grafana-zabbix-sass-update-for-node-16.patch::https://github.com/alexanderzobnin/grafana-zabbix/commit/a09d8a983e051cbe4a959c40224426edc3468d10.patch) +sha256sums=('913efd1d6bfb903eb7e40d79d58fc1d9cf5041d4764bc1f34f1c5997439de1ab' + 'ec1c6863ba97db0da505569b0992bc6a3158d54621db20235635e4fbd36eb15c') +prepare() { + cd "$pkgname-$pkgver" + patch -Np1 -i ../grafana-zabbix-sass-update-for-node-16.patch +} + build() { cd "$pkgname-$pkgver" - export CXXFLAGS+=' -std=c++14 ' make install make build make dist - # Rerun this part since otherwise the linux_amd64 file ist missing from the - # dist dir - make dist-backend } check() {
[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)
Date: Sunday, May 1, 2022 @ 09:51:57 Author: bluewind Revision: 444365 archrelease: copy trunk to core-any Added: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 444364, pacman-mirrorlist/trunk/PKGBUILD) pacman-mirrorlist/repos/core-any/mirrorlist (from rev 444364, pacman-mirrorlist/trunk/mirrorlist) pacman-mirrorlist/repos/core-any/upgpkg (from rev 444364, pacman-mirrorlist/trunk/upgpkg) Deleted: pacman-mirrorlist/repos/core-any/PKGBUILD pacman-mirrorlist/repos/core-any/mirrorlist pacman-mirrorlist/repos/core-any/upgpkg + PKGBUILD | 62 +- mirrorlist | 1700 +-- upgpkg |8 3 files changed, 887 insertions(+), 883 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-05-01 09:51:54 UTC (rev 444364) +++ PKGBUILD2022-05-01 09:51:57 UTC (rev 444365) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Dan McGee - -pkgname=pacman-mirrorlist -pkgver=20220410 -pkgrel=1 -pkgdesc="Arch Linux mirror list for use by pacman" -arch=('any') -url="https://www.archlinux.org/mirrorlist/"; -license=('GPL') -backup=(etc/pacman.d/mirrorlist) -source=(mirrorlist) - -# NOTE on building this package: -# * Go to the trunk/ directory -# * Run bash -c ". PKGBUILD; updatelist" -# * Update the checksums, update pkgver -# * Build the package - -updatelist() { - rm -f mirrorlist - curl -o mirrorlist https://archlinux.org/mirrorlist/all/ -} - -package() { - mkdir -p "$pkgdir/etc/pacman.d" - install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" -} - -md5sums=('81c39827e38c759d7e847f05db62c233') -sha256sums=('fc135ab26f2a227b9599b66a2f1ba325c445acb914d60e7ecf6e5997a87abe1e') Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 444364, pacman-mirrorlist/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-05-01 09:51:57 UTC (rev 444365) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Dan McGee + +pkgname=pacman-mirrorlist +pkgver=20220501 +pkgrel=1 +pkgdesc="Arch Linux mirror list for use by pacman" +arch=('any') +url="https://www.archlinux.org/mirrorlist/"; +license=('GPL') +backup=(etc/pacman.d/mirrorlist) +source=(mirrorlist) + +# NOTE on building this package: +# * Go to the trunk/ directory +# * Run bash -c ". PKGBUILD; updatelist" +# * Update the checksums, update pkgver +# * Build the package + +updatelist() { + rm -f mirrorlist + curl -o mirrorlist https://archlinux.org/mirrorlist/all/ +} + +package() { + mkdir -p "$pkgdir/etc/pacman.d" + install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" +} + +md5sums=('e66d0f9a492639ab343fd534b1aba534') +sha256sums=('26b9e7f40cc77020e71f70ac64878ff71bb707d4c0ed30d1a362961f837a5dda') Deleted: mirrorlist === --- mirrorlist 2022-05-01 09:51:54 UTC (rev 444364) +++ mirrorlist 2022-05-01 09:51:57 UTC (rev 444365) @@ -1,848 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2022-04-10 -## - -## Worldwide -#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch -#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch -#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch -#Server = http://mirror
[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)
Date: Sunday, May 1, 2022 @ 09:51:54 Author: bluewind Revision: 444364 upgpkg: pacman-mirrorlist 20220501-1: upstream update Modified: pacman-mirrorlist/trunk/PKGBUILD pacman-mirrorlist/trunk/mirrorlist + PKGBUILD |6 +++--- mirrorlist | 16 ++-- 2 files changed, 13 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-05-01 09:06:25 UTC (rev 444363) +++ PKGBUILD2022-05-01 09:51:54 UTC (rev 444364) @@ -2,7 +2,7 @@ # Contributor: Dan McGee pkgname=pacman-mirrorlist -pkgver=20220410 +pkgver=20220501 pkgrel=1 pkgdesc="Arch Linux mirror list for use by pacman" arch=('any') @@ -27,5 +27,5 @@ install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" } -md5sums=('81c39827e38c759d7e847f05db62c233') -sha256sums=('fc135ab26f2a227b9599b66a2f1ba325c445acb914d60e7ecf6e5997a87abe1e') +md5sums=('e66d0f9a492639ab343fd534b1aba534') +sha256sums=('26b9e7f40cc77020e71f70ac64878ff71bb707d4c0ed30d1a362961f837a5dda') Modified: mirrorlist === --- mirrorlist 2022-05-01 09:06:25 UTC (rev 444363) +++ mirrorlist 2022-05-01 09:51:54 UTC (rev 444364) @@ -1,10 +1,10 @@ ## ## Arch Linux repository mirrorlist -## Generated on 2022-04-10 +## Generated on 2022-05-01 ## ## Worldwide -#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch +#Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch #Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch #Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch @@ -117,6 +117,7 @@ #Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch #Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch #Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch +#Server = https://mirrors.njupt.edu.cn/archlinux/$repo/os/$arch #Server = http://mirror.redrock.team/archlinux/$repo/os/$arch #Server = https://mirror.redrock.team/archlinux/$repo/os/$arch #Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch @@ -320,8 +321,8 @@ #Server = https://arch.unixpeople.org/$repo/os/$arch #Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch #Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch -#Server = http://mirror.wtnet.de/arch/$repo/os/$arch -#Server = https://mirror.wtnet.de/arch/$repo/os/$arch +#Server = http://mirror.wtnet.de/archlinux/$repo/os/$arch +#Server = https://mirror.wtnet.de/archlinux/$repo/os/$arch #Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch #Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch #Server = http://arch.mirror.zachlge.org/$repo/os/$arch @@ -362,6 +363,8 @@ #Server = https://archmirror.akhl.in/$repo/os/$arch #Server = https://repo.albony.xyz/$repo/os/$arch #Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch +#Server = http://in-mirror.garudalinux.org/archlinux/$repo/os/$arch +#Server = https://in-mirror.garudalinux.org/archlinux/$repo/os/$arch #Server = http://archlinux.mirror.net.in/archlinux/$repo/os/$arch #Server = https://archlinux.mirror.net.in/archlinux/$repo/os/$arch #Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch @@ -658,8 +661,6 @@ #Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch #Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch #Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch -#Server = http://tedwall.se/archlinux/$repo/os/$arch -#Server = https://tedwall.se/archlinux/$repo/os/$arch ## Switzerland #Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch @@ -759,7 +760,10 @@ #Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch #Server = http://mirror.ette.biz/archlinux/$repo/os/$arch #Server = https://mirror.ette.biz/archlinux/$repo/os/$arch +#Server = http://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch #Server = http://mirror.fcix.net/archlinux/$repo/os/$arch +#Server = https://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch +#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch #Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch #Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch #Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
[arch-commits] Commit in zabbix/repos/extra-x86_64 (30 files)
Date: Sunday, April 24, 2022 @ 13:25:35 Author: bluewind Revision: 443905 archrelease: copy trunk to extra-x86_64 Added: zabbix/repos/extra-x86_64/PKGBUILD (from rev 443904, zabbix/trunk/PKGBUILD) zabbix/repos/extra-x86_64/zabbix-agent.service (from rev 443904, zabbix/trunk/zabbix-agent.service) zabbix/repos/extra-x86_64/zabbix-agent.sysusers (from rev 443904, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles (from rev 443904, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/extra-x86_64/zabbix-agent2.service (from rev 443904, zabbix/trunk/zabbix-agent2.service) zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service (from rev 443904, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service (from rev 443904, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service (from rev 443904, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/extra-x86_64/zabbix-proxy.sysusers (from rev 443904, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles (from rev 443904, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/extra-x86_64/zabbix-server-mysql.service (from rev 443904, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/extra-x86_64/zabbix-server-pgsql.service (from rev 443904, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/extra-x86_64/zabbix-server.install (from rev 443904, zabbix/trunk/zabbix-server.install) zabbix/repos/extra-x86_64/zabbix-server.sysusers (from rev 443904, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/extra-x86_64/zabbix-server.tmpfiles (from rev 443904, zabbix/trunk/zabbix-server.tmpfiles) Deleted: zabbix/repos/extra-x86_64/PKGBUILD zabbix/repos/extra-x86_64/zabbix-agent.service zabbix/repos/extra-x86_64/zabbix-agent.sysusers zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles zabbix/repos/extra-x86_64/zabbix-agent2.service zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service zabbix/repos/extra-x86_64/zabbix-proxy.sysusers zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles zabbix/repos/extra-x86_64/zabbix-server-mysql.service zabbix/repos/extra-x86_64/zabbix-server-pgsql.service zabbix/repos/extra-x86_64/zabbix-server.install zabbix/repos/extra-x86_64/zabbix-server.sysusers zabbix/repos/extra-x86_64/zabbix-server.tmpfiles -+ PKGBUILD| 432 +- zabbix-agent.service| 22 +- zabbix-agent.sysusers |2 zabbix-agent.tmpfiles |2 zabbix-agent2.service | 22 +- zabbix-proxy-mysql.service | 36 +-- zabbix-proxy-pgsql.service | 36 +-- zabbix-proxy-sqlite.service | 36 +-- zabbix-proxy.sysusers |2 zabbix-proxy.tmpfiles |2 zabbix-server-mysql.service | 36 +-- zabbix-server-pgsql.service | 36 +-- zabbix-server.install | 24 +- zabbix-server.sysusers |2 zabbix-server.tmpfiles |2 15 files changed, 346 insertions(+), 346 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-04-24 13:25:24 UTC (rev 443904) +++ PKGBUILD2022-04-24 13:25:35 UTC (rev 443905) @@ -1,216 +0,0 @@ -# Maintainer: Bartłomiej Piotrowski -# Maintainer: Florian Pritz - -pkgbase=zabbix -pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.2 -pkgrel=1 -arch=(x86_64) -url='https://www.zabbix.com/' -license=(GPL) -makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) -source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; -zabbix-agent.{service,sysusers,tmpfiles} -zabbix-agent2.service -zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} -zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) - -sha512sums=('618b1705f4e1689af4d234e877ea4136d52de39bfedf6512f396b79278750bfaf994d132a7876420705690045bee78ebc2c7297ac31ac4ddd92f00d8f781267d' - '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' - '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' - 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' - 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' - 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e42
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, April 24, 2022 @ 13:25:24 Author: bluewind Revision: 443904 upgpkg: zabbix 6.0.3-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-04-24 11:52:09 UTC (rev 443903) +++ PKGBUILD2022-04-24 13:25:24 UTC (rev 443904) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.2 +pkgver=6.0.3 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('618b1705f4e1689af4d234e877ea4136d52de39bfedf6512f396b79278750bfaf994d132a7876420705690045bee78ebc2c7297ac31ac4ddd92f00d8f781267d' +sha512sums=('f93a7b4b19d2a1561e42ef67378bfb94a5edaae5b9bba8f2214de3bad1bf9d7efcb32da9f1b3ee820cc6bdc68308286606c4ceb7e1ba0ab42e24045c56f8ce47' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)
Date: Sunday, April 10, 2022 @ 12:59:59 Author: bluewind Revision: 442270 upgpkg: pacman-mirrorlist 20220410-1: upstream update Modified: pacman-mirrorlist/trunk/PKGBUILD pacman-mirrorlist/trunk/mirrorlist + PKGBUILD |6 +++--- mirrorlist | 37 - 2 files changed, 31 insertions(+), 12 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-04-10 11:56:31 UTC (rev 442269) +++ PKGBUILD2022-04-10 12:59:59 UTC (rev 442270) @@ -2,7 +2,7 @@ # Contributor: Dan McGee pkgname=pacman-mirrorlist -pkgver=20220227 +pkgver=20220410 pkgrel=1 pkgdesc="Arch Linux mirror list for use by pacman" arch=('any') @@ -27,5 +27,5 @@ install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" } -md5sums=('4d128b619e8a091c03bf4d9afc98ce82') -sha256sums=('09192974301b9bc282a39be1a0e5f5abbb24724e11d18a7fe0737f07b198e12d') +md5sums=('81c39827e38c759d7e847f05db62c233') +sha256sums=('fc135ab26f2a227b9599b66a2f1ba325c445acb914d60e7ecf6e5997a87abe1e') Modified: mirrorlist === --- mirrorlist 2022-04-10 11:56:31 UTC (rev 442269) +++ mirrorlist 2022-04-10 12:59:59 UTC (rev 442270) @@ -1,9 +1,10 @@ ## ## Arch Linux repository mirrorlist -## Generated on 2022-02-27 +## Generated on 2022-04-10 ## ## Worldwide +#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch #Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch #Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch @@ -18,6 +19,8 @@ #Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch #Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch #Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch +#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch +#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch ## Austria #Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch @@ -24,6 +27,7 @@ #Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch #Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch #Server = http://mirror.easyname.at/archlinux/$repo/os/$arch +#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch #Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch #Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch @@ -79,8 +83,8 @@ #Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch #Server = http://muug.ca/mirror/archlinux/$repo/os/$arch #Server = https://muug.ca/mirror/archlinux/$repo/os/$arch -#Server = http://arch.powerfly.ca/$repo/os/$arch -#Server = https://arch.powerfly.ca/$repo/os/$arch +#Server = http://mirror.powerfly.ca/archlinux/$repo/os/$arch +#Server = https://mirror.powerfly.ca/archlinux/$repo/os/$arch #Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch #Server = http://mirror.scd31.com/arch/$repo/os/$arch #Server = https://mirror.scd31.com/arch/$repo/os/$arch @@ -188,6 +192,8 @@ #Server = https://mirror.ibakerserver.pt/Arch/$repo/os/$arch #Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch #Server = https://arch.juline.tech/$repo/os/$arch +#Server = http://mirroir.labhouse.fr/arch/$repo/os/$arch +#Server = https://mirroir.labhouse.fr/arch/$repo/os/$arch #Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch #Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch #Server = http://archlinux.mailtunnel.eu/$repo/os/$arch @@ -252,6 +258,8 @@ #Server = http://archlinux.honkgong.info/$repo/os/$arch #Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch #Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch +#Server = http://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch +#Server = https://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch #Server = http://archlinux.mirror.iphh.net/$repo/os/$arch #Server = https://mirror.iusearchbtw.nl/$repo/os/$arch #Server = http://mirror.jaime.sh/archlinux/$repo/os/$arch @@ -271,7 +279,6 @@ #Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch #Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch #Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch -#Server = https://mirror.pkgbuild.com/$repo/os/$arch #Server = http://mirror.moson.org/arch/$repo/os/$arch #Server = https://mirror.moson.org/arch/$repo/os/$arch #Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch @@ -353,6 +360,7 @@ ## India #Server = https://archmirror.akhl.in/$repo/os/$arch +#Server = https://repo.albony.xyz/$repo/os/$arch #Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch #Server = http://archlinux.mirror.net.in/archlinux/$repo/os/$arch #Server = https://archlinux.mirror.net.in/archlinux/$repo/os/$arch @@ -366,6 +374,7 @@ #Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch #Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)
Date: Sunday, April 10, 2022 @ 13:00:31 Author: bluewind Revision: 442271 archrelease: copy trunk to core-any Added: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 442270, pacman-mirrorlist/trunk/PKGBUILD) pacman-mirrorlist/repos/core-any/mirrorlist (from rev 442270, pacman-mirrorlist/trunk/mirrorlist) pacman-mirrorlist/repos/core-any/upgpkg (from rev 442270, pacman-mirrorlist/trunk/upgpkg) Deleted: pacman-mirrorlist/repos/core-any/PKGBUILD pacman-mirrorlist/repos/core-any/mirrorlist pacman-mirrorlist/repos/core-any/upgpkg + PKGBUILD | 62 +- mirrorlist | 1677 +-- upgpkg |8 3 files changed, 883 insertions(+), 864 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-04-10 12:59:59 UTC (rev 442270) +++ PKGBUILD2022-04-10 13:00:31 UTC (rev 442271) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Dan McGee - -pkgname=pacman-mirrorlist -pkgver=20220227 -pkgrel=1 -pkgdesc="Arch Linux mirror list for use by pacman" -arch=('any') -url="https://www.archlinux.org/mirrorlist/"; -license=('GPL') -backup=(etc/pacman.d/mirrorlist) -source=(mirrorlist) - -# NOTE on building this package: -# * Go to the trunk/ directory -# * Run bash -c ". PKGBUILD; updatelist" -# * Update the checksums, update pkgver -# * Build the package - -updatelist() { - rm -f mirrorlist - curl -o mirrorlist https://archlinux.org/mirrorlist/all/ -} - -package() { - mkdir -p "$pkgdir/etc/pacman.d" - install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" -} - -md5sums=('4d128b619e8a091c03bf4d9afc98ce82') -sha256sums=('09192974301b9bc282a39be1a0e5f5abbb24724e11d18a7fe0737f07b198e12d') Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 442270, pacman-mirrorlist/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-04-10 13:00:31 UTC (rev 442271) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Dan McGee + +pkgname=pacman-mirrorlist +pkgver=20220410 +pkgrel=1 +pkgdesc="Arch Linux mirror list for use by pacman" +arch=('any') +url="https://www.archlinux.org/mirrorlist/"; +license=('GPL') +backup=(etc/pacman.d/mirrorlist) +source=(mirrorlist) + +# NOTE on building this package: +# * Go to the trunk/ directory +# * Run bash -c ". PKGBUILD; updatelist" +# * Update the checksums, update pkgver +# * Build the package + +updatelist() { + rm -f mirrorlist + curl -o mirrorlist https://archlinux.org/mirrorlist/all/ +} + +package() { + mkdir -p "$pkgdir/etc/pacman.d" + install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/" +} + +md5sums=('81c39827e38c759d7e847f05db62c233') +sha256sums=('fc135ab26f2a227b9599b66a2f1ba325c445acb914d60e7ecf6e5997a87abe1e') Deleted: mirrorlist === --- mirrorlist 2022-04-10 12:59:59 UTC (rev 442270) +++ mirrorlist 2022-04-10 13:00:31 UTC (rev 442271) @@ -1,829 +0,0 @@ -## -## Arch Linux repository mirrorlist -## Generated on 2022-02-27 -## - -## Worldwide -#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch - -## Australia -#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch -#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch -#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch -#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch -#Server = http://arch.lucassymons.net/$repo/os/$arch -#Server = https://arch.lucassymons.net/$repo/os/$arch -#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch -#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch - -## Austria -#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch -#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch -#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch -#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch -#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch - -## Bangladesh -#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch - -## Belarus -#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch -#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch - -## Belgium -#Server = http://archlinux.cu.be/$repo/os/$arch -#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch -#Server = http://mirror.tiguinet.net/arch/$repo/os/$arch - -## Bosnia and Herzegovina -#Server = http://archlinux.mirror.ba/$repo/os/$arch - -## Brazil -#Server = http://archlinux-br.com.br/archlinux/$repo/os/$arch -#Server = https://archlinux-br.com.br/archlinux/$
[arch-commits] Commit in siege/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Sunday, April 10, 2022 @ 13:10:59 Author: bluewind Revision: 1184961 archrelease: copy trunk to community-x86_64 Added: siege/repos/community-x86_64/PKGBUILD (from rev 1184960, siege/trunk/PKGBUILD) Deleted: siege/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-04-10 13:10:56 UTC (rev 1184960) +++ PKGBUILD2022-04-10 13:10:59 UTC (rev 1184961) @@ -1,31 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Sven Kauber - -pkgname=siege -pkgver=4.1.1 -pkgrel=1 -arch=('x86_64') -license=('GPL') -pkgdesc="An http regression testing and benchmarking utility" -url="https://www.joedog.org/siege-home/"; -depends=('openssl') -optdepends=('perl: siege2csv.pl') -source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz";) -backup=(etc/siegerc etc/urls.txt) - -build() { - cd "${srcdir}/$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/$pkgname-$pkgver" - - install -d -m755 "$pkgdir/etc" - install -d -m755 "$pkgdir/usr/share" - make DESTDIR="$pkgdir" install - sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" -} - -md5sums=('6448757ca09f0618595cec0abce66f22') Copied: siege/repos/community-x86_64/PKGBUILD (from rev 1184960, siege/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-04-10 13:10:59 UTC (rev 1184961) @@ -0,0 +1,31 @@ +# Maintainer: Florian Pritz +# Contributor: Sven Kauber + +pkgname=siege +pkgver=4.1.2 +pkgrel=1 +arch=('x86_64') +license=('GPL') +pkgdesc="An http regression testing and benchmarking utility" +url="https://www.joedog.org/siege-home/"; +depends=('openssl') +optdepends=('perl: siege2csv.pl') +source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz";) +backup=(etc/siegerc etc/urls.txt) + +build() { + cd "${srcdir}/$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/$pkgname-$pkgver" + + install -d -m755 "$pkgdir/etc" + install -d -m755 "$pkgdir/usr/share" + make DESTDIR="$pkgdir" install + sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" +} + +md5sums=('c5dce6048a17b502f837de77a3ef79a9')
[arch-commits] Commit in grafana-zabbix/trunk (PKGBUILD)
Date: Sunday, April 10, 2022 @ 13:10:17 Author: bluewind Revision: 1184958 upgpkg: grafana-zabbix 4.2.6-1: upstream update Modified: grafana-zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-04-10 13:04:12 UTC (rev 1184957) +++ PKGBUILD2022-04-10 13:10:17 UTC (rev 1184958) @@ -1,6 +1,6 @@ # Maintainer: Florian Pritz pkgname=grafana-zabbix -pkgver=4.2.5 +pkgver=4.2.6 pkgrel=1 pkgdesc="Zabbix plugin for Grafana dashboard" arch=('any') @@ -9,7 +9,7 @@ depends=('grafana') makedepends=(yarn python2 libfaketime go git nodejs-lts-fermium) # node-sass depends on node-gyp 3.8.0 which is still python2 https://github.com/sass/node-sass/issues/2877 source=("$pkgname-$pkgver.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('804ed6e8579db7d170179797489ac23dfe8e1cffb430aaa3bba95a8715ae1ca5') +sha256sums=('03587d586be11e9e472e1001c949971c6b42053a000c9adc4e43fefac179be54') build() { cd "$pkgname-$pkgver"
[arch-commits] Commit in grafana-zabbix/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, April 10, 2022 @ 13:10:20 Author: bluewind Revision: 1184959 archrelease: copy trunk to community-any Added: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1184958, grafana-zabbix/trunk/PKGBUILD) Deleted: grafana-zabbix/repos/community-any/PKGBUILD --+ PKGBUILD | 72 ++--- 1 file changed, 36 insertions(+), 36 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-04-10 13:10:17 UTC (rev 1184958) +++ PKGBUILD2022-04-10 13:10:20 UTC (rev 1184959) @@ -1,36 +0,0 @@ -# Maintainer: Florian Pritz -pkgname=grafana-zabbix -pkgver=4.2.5 -pkgrel=1 -pkgdesc="Zabbix plugin for Grafana dashboard" -arch=('any') -url="https://github.com/alexanderzobnin/grafana-zabbix"; -license=('APACHE') -depends=('grafana') -makedepends=(yarn python2 libfaketime go git nodejs-lts-fermium) # node-sass depends on node-gyp 3.8.0 which is still python2 https://github.com/sass/node-sass/issues/2877 -source=("$pkgname-$pkgver.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) -sha256sums=('804ed6e8579db7d170179797489ac23dfe8e1cffb430aaa3bba95a8715ae1ca5') - -build() { - cd "$pkgname-$pkgver" - export CXXFLAGS+=' -std=c++14 ' - make install - make build - make dist - # Rerun this part since otherwise the linux_amd64 file ist missing from the - # dist dir - make dist-backend -} - -check() { - cd "$pkgname-$pkgver" - # Force UTC timezone so that tests pass, even after a DST change - PATH="$PATH:/build/go/bin" TZ=UTC make test lint -} - -package() { - cd "$pkgname-$pkgver" - install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" - rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" -} Copied: grafana-zabbix/repos/community-any/PKGBUILD (from rev 1184958, grafana-zabbix/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-04-10 13:10:20 UTC (rev 1184959) @@ -0,0 +1,36 @@ +# Maintainer: Florian Pritz +pkgname=grafana-zabbix +pkgver=4.2.6 +pkgrel=1 +pkgdesc="Zabbix plugin for Grafana dashboard" +arch=('any') +url="https://github.com/alexanderzobnin/grafana-zabbix"; +license=('APACHE') +depends=('grafana') +makedepends=(yarn python2 libfaketime go git nodejs-lts-fermium) # node-sass depends on node-gyp 3.8.0 which is still python2 https://github.com/sass/node-sass/issues/2877 +source=("$pkgname-$pkgver.tar.gz::https://github.com/alexanderzobnin/grafana-zabbix/archive/v$pkgver.tar.gz";) +sha256sums=('03587d586be11e9e472e1001c949971c6b42053a000c9adc4e43fefac179be54') + +build() { + cd "$pkgname-$pkgver" + export CXXFLAGS+=' -std=c++14 ' + make install + make build + make dist + # Rerun this part since otherwise the linux_amd64 file ist missing from the + # dist dir + make dist-backend +} + +check() { + cd "$pkgname-$pkgver" + # Force UTC timezone so that tests pass, even after a DST change + PATH="$PATH:/build/go/bin" TZ=UTC make test lint +} + +package() { + cd "$pkgname-$pkgver" + install -dm755 "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + cp -r dist/* "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app" + rm -rf "$pkgdir/var/lib/grafana/plugins/alexanderzobnin-zabbix-app/node_modules" +}
[arch-commits] Commit in siege/trunk (PKGBUILD)
Date: Sunday, April 10, 2022 @ 13:10:56 Author: bluewind Revision: 1184960 upgpkg: siege 4.1.2-1: upstream update Modified: siege/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-04-10 13:10:20 UTC (rev 1184959) +++ PKGBUILD2022-04-10 13:10:56 UTC (rev 1184960) @@ -2,7 +2,7 @@ # Contributor: Sven Kauber pkgname=siege -pkgver=4.1.1 +pkgver=4.1.2 pkgrel=1 arch=('x86_64') license=('GPL') @@ -28,4 +28,4 @@ sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc" } -md5sums=('6448757ca09f0618595cec0abce66f22') +md5sums=('c5dce6048a17b502f837de77a3ef79a9')
[arch-commits] Commit in perl/repos (12 files)
Date: Sunday, March 27, 2022 @ 09:26:52 Author: bluewind Revision: 440708 archrelease: copy trunk to testing-x86_64 Added: perl/repos/testing-x86_64/ perl/repos/testing-x86_64/CVE-2016-2381_duplicate_env.diff (from rev 440707, perl/trunk/CVE-2016-2381_duplicate_env.diff) perl/repos/testing-x86_64/PKGBUILD (from rev 440707, perl/trunk/PKGBUILD) perl/repos/testing-x86_64/config.over (from rev 440707, perl/trunk/config.over) perl/repos/testing-x86_64/detect-old-perl-modules.hook (from rev 440707, perl/trunk/detect-old-perl-modules.hook) perl/repos/testing-x86_64/detect-old-perl-modules.sh (from rev 440707, perl/trunk/detect-old-perl-modules.sh) perl/repos/testing-x86_64/generate-rebuild-list.sh (from rev 440707, perl/trunk/generate-rebuild-list.sh) perl/repos/testing-x86_64/patchprov (from rev 440707, perl/trunk/patchprov) perl/repos/testing-x86_64/perlbin.csh (from rev 440707, perl/trunk/perlbin.csh) perl/repos/testing-x86_64/perlbin.fish (from rev 440707, perl/trunk/perlbin.fish) perl/repos/testing-x86_64/perlbin.sh (from rev 440707, perl/trunk/perlbin.sh) perl/repos/testing-x86_64/upgpkg (from rev 440707, perl/trunk/upgpkg) --+ CVE-2016-2381_duplicate_env.diff | 104 ++ PKGBUILD | 238 + config.over |5 detect-old-perl-modules.hook | 10 + detect-old-perl-modules.sh | 36 + generate-rebuild-list.sh | 16 ++ patchprov| 260 + perlbin.csh | 12 + perlbin.fish | 10 + perlbin.sh | 15 ++ upgpkg |4 11 files changed, 710 insertions(+) Copied: perl/repos/testing-x86_64/CVE-2016-2381_duplicate_env.diff (from rev 440707, perl/trunk/CVE-2016-2381_duplicate_env.diff) === --- testing-x86_64/CVE-2016-2381_duplicate_env.diff (rev 0) +++ testing-x86_64/CVE-2016-2381_duplicate_env.diff 2022-03-27 09:26:52 UTC (rev 440708) @@ -0,0 +1,104 @@ +From 83e7ebed7afa79a2f50eca6b6330eae7c3a02d36 Mon Sep 17 00:00:00 2001 +From: Tony Cook +Date: Wed, 27 Jan 2016 11:52:15 +1100 +Subject: remove duplicate environment variables from environ + +If we see duplicate environment variables while iterating over +environ[]: + +a) make sure we use the same value in %ENV that getenv() returns. + +Previously on a duplicate, %ENV would have the last entry for the name +from environ[], but a typical getenv() would return the first entry. + +Rather than assuming all getenv() implementations return the first entry +explicitly call getenv() to ensure they agree. + +b) remove duplicate entries from environ + +Previously if there was a duplicate definition for a name in environ[] +setting that name in %ENV could result in an unsafe value being passed +to a child process, so ensure environ[] has no duplicates. + +Patch-Name: fixes/CVE-2016-2381_duplicate_env.diff +--- + perl.c | 51 +-- + 1 file changed, 49 insertions(+), 2 deletions(-) + +diff --git a/perl.c b/perl.c +index 80a76c2..ed25429 100644 +--- a/perl.c b/perl.c +@@ -4303,23 +4303,70 @@ S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env) + } + if (env) { + char *s, *old_var; ++ STRLEN nlen; + SV *sv; ++ HV *dups = newHV(); ++ + for (; *env; env++) { + old_var = *env; + + if (!(s = strchr(old_var,'=')) || s == old_var) + continue; ++nlen = s - old_var; + + #if defined(MSDOS) && !defined(DJGPP) + *s = '\0'; + (void)strupr(old_var); + *s = '='; + #endif +- sv = newSVpv(s+1, 0); +- (void)hv_store(hv, old_var, s - old_var, sv, 0); ++if (hv_exists(hv, old_var, nlen)) { ++const char *name = savepvn(old_var, nlen); ++ ++/* make sure we use the same value as getenv(), otherwise code that ++ uses getenv() (like setlocale()) might see a different value to %ENV ++ */ ++sv = newSVpv(PerlEnv_getenv(name), 0); ++ ++/* keep a count of the dups of this name so we can de-dup environ later */ ++if (hv_exists(dups, name, nlen)) ++++SvIVX(*hv_fetch(dups, name, nlen, 0)); ++else ++(void)hv_store(dups, name, nlen, newSViv(1), 0); ++ ++Safefree(name); ++} ++else { ++sv = newSVpv(s+1, 0); ++} ++ (void)hv_store(hv, old_var, nlen, sv, 0); + if (env_is_not_environ) + mg_set(sv); + } ++ if (HvKEYS(dups)) { ++ /* e
[arch-commits] Commit in perl/trunk (PKGBUILD)
Date: Sunday, March 27, 2022 @ 09:26:45 Author: bluewind Revision: 440707 upgpkg: perl 5.34.1-1: upstream update Modified: perl/trunk/PKGBUILD --+ PKGBUILD | 14 +- 1 file changed, 5 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-27 09:04:04 UTC (rev 440706) +++ PKGBUILD2022-03-27 09:26:45 UTC (rev 440707) @@ -5,9 +5,9 @@ # Contributor: francois pkgname=perl -pkgver=5.34.0 +pkgver=5.34.1 _baseversion="${pkgver%.*}" -pkgrel=3 +pkgrel=1 pkgdesc="A highly capable, feature-rich programming language" arch=(x86_64) license=('GPL' 'PerlArtistic') @@ -40,7 +40,7 @@ 'perl-digest-sha=6.02' 'perl-digest=1.19' 'perl-dumpvalue=1.21' - 'perl-encode=3.08' + 'perl-encode=3.08_01' 'perl-encoding-warnings=0.13' 'perl-env=1.05' 'perl-experimental=0.024' @@ -80,7 +80,7 @@ 'perl-math-complex=1.5902' 'perl-memoize=1.03_01' 'perl-mime-base64=3.16' - 'perl-module-corelist=5.20210520' + 'perl-module-corelist=5.20220313' 'perl-module-load-conditional=0.74' 'perl-module-load=0.36' 'perl-module-loaded=0.08' @@ -132,7 +132,6 @@ # Add your own provides here provides=("${provides[@]}") source=(https://www.cpan.org/src/5.0/perl-${pkgver}.tar.xz -perl-18924.patch::https://github.com/Perl/perl5/pull/18924.patch config.over perlbin.sh perlbin.csh @@ -140,8 +139,7 @@ detect-old-perl-modules.sh detect-old-perl-modules.hook) options=('makeflags' '!purge' 'emptydirs') -sha512sums=('691b4b31eacec357191fba777612b4e3eae59e946a22998a50766697c0d61db1d42a9b3bc1e41abf0d1ca1893e4a7c06d7bf3290480cf03d7f79befd7a8a3267' - '58f99cfdc762270a41d85afe37239e9a9837142254e8c83bcd67386fabd71f60ede4a02b2b06e4afade7d5452e54f696b4640b76f48f8ec5599e8637b4fbedeb' +sha512sums=('9261958291b49eea30c120a89e5ee32dc6a5fd46de4869c89c3d6a4c1162d6cf192ebe429d01a293eda93d8680ce15294af27717fd4ec4c75f511c1fa820fdac' '1c924b5bf7413d097f62638a574d7decf36d98598b84cdb5fb31ff633b6f953371e14b004a2558a1a0b74b6b60b90b481af0f68555a49208fe6b226381fed79f' '6ed5bc6dbdc47bc7f4c0fedbe18deaf35ab02a2e6700988beb545954bb1d0fe20ff1a4de39d6d9fc882ef1741f7bf6d85ba165d0cd8dc0d9939b789c894f48a1' '53eb0cddfd637014f3d3a101665db8dcafe5ac5bf3d319a259974334eb89c1c405097518ae96b6d18e520194633c7be57c9b2cd9ae6398443eb08f1a2008d112' @@ -153,8 +151,6 @@ prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i "$srcdir/perl-18924.patch" - # reproducible patchlevel_date [ -n "${SOURCE_DATE_EPOCH}" ] && touch -h -d @$SOURCE_DATE_EPOCH patchlevel.h }
[arch-commits] Commit in python-internetarchive/repos/community-any (2 files)
Date: Sunday, March 27, 2022 @ 08:40:36 Author: bluewind Revision: 1177169 archrelease: copy trunk to community-any Added: python-internetarchive/repos/community-any/PKGBUILD (from rev 1177168, python-internetarchive/trunk/PKGBUILD) Deleted: python-internetarchive/repos/community-any/PKGBUILD --+ PKGBUILD | 104 ++--- 1 file changed, 52 insertions(+), 52 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-03-27 08:40:33 UTC (rev 1177168) +++ PKGBUILD2022-03-27 08:40:36 UTC (rev 1177169) @@ -1,52 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: David McInnis -# Contributor: jyantis - -pkgname=python-internetarchive -pkgver=2.3.0 -pkgrel=1 -pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' -arch=('any') -url='https://github.com/jjjake/ia-wrapper' -license=('AGPL3') -depends=('python' - 'python-six' - 'python-yaml' - 'python-requests' - 'python-jsonpatch' - 'python-docopt' - 'python-jsonpointer' - 'python-args' - 'python-tqdm' - 'python-schema' -) -makedepends=('python-setuptools') -optdepends=('python-ujson: faster json parsing' -'python-gevent: concurrent downloads' -'cython: speedups') -checkdepends=(python-responses - python-pytest - ) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('8858599fdf4897124357df1f1a30337185113137590aec75720e85940dd7a7bb') - -build() { - cd internetarchive-${pkgver} - python setup.py build -} - -check() { - cd internetarchive-${pkgver} - - python setup.py test -} - -package() { - cd internetarchive-${pkgver} - python setup.py install --root="${pkgdir}" --optimize=1 - - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" -} - -# vim:set ts=2 sw=2 et: Copied: python-internetarchive/repos/community-any/PKGBUILD (from rev 1177168, python-internetarchive/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-03-27 08:40:36 UTC (rev 1177169) @@ -0,0 +1,52 @@ +# Maintainer: Florian Pritz +# Contributor: David McInnis +# Contributor: jyantis + +pkgname=python-internetarchive +pkgver=3.0.0 +pkgrel=1 +pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' +arch=('any') +url='https://github.com/jjjake/ia-wrapper' +license=('AGPL3') +depends=('python' + 'python-six' + 'python-yaml' + 'python-requests' + 'python-jsonpatch' + 'python-docopt' + 'python-jsonpointer' + 'python-args' + 'python-tqdm' + 'python-schema' +) +makedepends=('python-setuptools') +optdepends=('python-ujson: faster json parsing' +'python-gevent: concurrent downloads' +'cython: speedups') +checkdepends=(python-responses + python-pytest + ) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) +sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5') + +build() { + cd internetarchive-${pkgver} + python setup.py build +} + +check() { + cd internetarchive-${pkgver} + + python setup.py test +} + +package() { + cd internetarchive-${pkgver} + python setup.py install --root="${pkgdir}" --optimize=1 + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-internetarchive/trunk (PKGBUILD)
Date: Sunday, March 27, 2022 @ 08:40:33 Author: bluewind Revision: 1177168 upgpkg: python-internetarchive 3.0.0-1: upstream update Modified: python-internetarchive/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-27 08:38:08 UTC (rev 1177167) +++ PKGBUILD2022-03-27 08:40:33 UTC (rev 1177168) @@ -3,7 +3,7 @@ # Contributor: jyantis pkgname=python-internetarchive -pkgver=2.3.0 +pkgver=3.0.0 pkgrel=1 pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, etc)' arch=('any') @@ -28,7 +28,7 @@ python-pytest ) source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";) -sha256sums=('8858599fdf4897124357df1f1a30337185113137590aec75720e85940dd7a7bb') +sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5') build() { cd internetarchive-${pkgver}
[arch-commits] Commit in highlight/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Sunday, March 27, 2022 @ 08:38:08 Author: bluewind Revision: 1177167 archrelease: copy trunk to community-x86_64 Added: highlight/repos/community-x86_64/PKGBUILD (from rev 1177166, highlight/trunk/PKGBUILD) Deleted: highlight/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 98 ++--- 1 file changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-03-27 08:38:04 UTC (rev 1177166) +++ PKGBUILD2022-03-27 08:38:08 UTC (rev 1177167) @@ -1,49 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: Jan Fader -pkgbase=highlight -pkgname=(highlight highlight-gui) -pkgver=4.1 -pkgrel=1 -url="http://www.andre-simon.de/doku/highlight/highlight.html"; -license=('GPL') -arch=('x86_64') -makedepends=(qt5-base lua boost) -source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc}) -md5sums=('65caf60e800bb8badf42aac523d48858' - 'SKIP') -validpgpkeys=(B8C55574187F49180EDC763750FE0279D805A7C7) - -prepare() { - cd "$srcdir/$pkgbase-$pkgver" - - sed -i 's/QMAKE=qmake/QMAKE=qmake-qt5/' src/makefile - sed -i 's/QMAKE_CC = clang/QMAKE_CC = gcc/' src/gui-qt/highlight.pro - sed -i 's/QMAKE_CXX = clang++/QMAKE_CXX = g++/' src/gui-qt/highlight.pro -} - -build() { - cd "$srcdir/$pkgbase-$pkgver" - - make QMAKE=qmake-qt5 - make QMAKE=qmake-qt5 gui -} - -package_highlight() { - pkgdesc="Fast and flexible source code highlighter (CLI version)" - depends=('lua') - backup=(etc/highlight/filetypes.conf) - cd "$srcdir/$pkgbase-$pkgver" - - make DESTDIR="$pkgdir" QMAKE=qmake-qt5 install -} - -package_highlight-gui() { - pkgdesc="Fast and flexible source code highlighter (Qt version)" - depends=('qt5-base' 'highlight') - cd "$srcdir/$pkgbase-$pkgver" - - install -dm755 "$pkgdir/usr/bin" - make DESTDIR="$pkgdir" QMAKE=qmake-qt5 install-gui -} - -# vim:set ts=2 sw=2 et: Copied: highlight/repos/community-x86_64/PKGBUILD (from rev 1177166, highlight/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-03-27 08:38:08 UTC (rev 1177167) @@ -0,0 +1,49 @@ +# Maintainer: Florian Pritz +# Contributor: Jan Fader +pkgbase=highlight +pkgname=(highlight highlight-gui) +pkgver=4.2 +pkgrel=1 +url="http://www.andre-simon.de/doku/highlight/highlight.html"; +license=('GPL') +arch=('x86_64') +makedepends=(qt5-base lua boost) +source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc}) +md5sums=('bb325c237ed1175e23acac55f2106a7c' + 'SKIP') +validpgpkeys=(B8C55574187F49180EDC763750FE0279D805A7C7) + +prepare() { + cd "$srcdir/$pkgbase-$pkgver" + + sed -i 's/QMAKE=qmake/QMAKE=qmake-qt5/' src/makefile + sed -i 's/QMAKE_CC = clang/QMAKE_CC = gcc/' src/gui-qt/highlight.pro + sed -i 's/QMAKE_CXX = clang++/QMAKE_CXX = g++/' src/gui-qt/highlight.pro +} + +build() { + cd "$srcdir/$pkgbase-$pkgver" + + make QMAKE=qmake-qt5 + make QMAKE=qmake-qt5 gui +} + +package_highlight() { + pkgdesc="Fast and flexible source code highlighter (CLI version)" + depends=('lua') + backup=(etc/highlight/filetypes.conf) + cd "$srcdir/$pkgbase-$pkgver" + + make DESTDIR="$pkgdir" QMAKE=qmake-qt5 install +} + +package_highlight-gui() { + pkgdesc="Fast and flexible source code highlighter (Qt version)" + depends=('qt5-base' 'highlight') + cd "$srcdir/$pkgbase-$pkgver" + + install -dm755 "$pkgdir/usr/bin" + make DESTDIR="$pkgdir" QMAKE=qmake-qt5 install-gui +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in highlight/trunk (PKGBUILD)
Date: Sunday, March 27, 2022 @ 08:38:04 Author: bluewind Revision: 1177166 upgpkg: highlight 4.2-1: upstream update Modified: highlight/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-27 07:45:08 UTC (rev 1177165) +++ PKGBUILD2022-03-27 08:38:04 UTC (rev 1177166) @@ -2,7 +2,7 @@ # Contributor: Jan Fader pkgbase=highlight pkgname=(highlight highlight-gui) -pkgver=4.1 +pkgver=4.2 pkgrel=1 url="http://www.andre-simon.de/doku/highlight/highlight.html"; license=('GPL') @@ -9,7 +9,7 @@ arch=('x86_64') makedepends=(qt5-base lua boost) source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2{,.asc}) -md5sums=('65caf60e800bb8badf42aac523d48858' +md5sums=('bb325c237ed1175e23acac55f2106a7c' 'SKIP') validpgpkeys=(B8C55574187F49180EDC763750FE0279D805A7C7)
[arch-commits] Commit in perl-image-exiftool/trunk (PKGBUILD)
Date: Monday, March 21, 2022 @ 22:36:13 Author: bluewind Revision: 440431 upgpkg: perl-image-exiftool 12.40-1: upstream update Modified: perl-image-exiftool/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-21 22:04:05 UTC (rev 440430) +++ PKGBUILD2022-03-21 22:36:13 UTC (rev 440431) @@ -5,7 +5,7 @@ pkgname=perl-image-exiftool _srcname=Image-ExifTool -pkgver=12.30 +pkgver=12.40 pkgrel=1 pkgdesc="Reader and rewriter of EXIF informations that supports raw files" arch=('any') @@ -17,7 +17,7 @@ replaces=("perl-exiftool") options=('!emptydirs') source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) -md5sums=('1f5d66d62418c8b29eb0c0b7fd272b28') +md5sums=('72b40d69cf518edebbf5b661465950e7') build() { cd "${srcdir}/${_srcname}-${pkgver}"
[arch-commits] Commit in perl-image-exiftool/repos/extra-any (PKGBUILD PKGBUILD)
Date: Monday, March 21, 2022 @ 22:36:30 Author: bluewind Revision: 440432 archrelease: copy trunk to extra-any Added: perl-image-exiftool/repos/extra-any/PKGBUILD (from rev 440431, perl-image-exiftool/trunk/PKGBUILD) Deleted: perl-image-exiftool/repos/extra-any/PKGBUILD --+ PKGBUILD | 78 ++--- 1 file changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-03-21 22:36:13 UTC (rev 440431) +++ PKGBUILD2022-03-21 22:36:30 UTC (rev 440432) @@ -1,39 +0,0 @@ -# Maintainer: Florian Pritz -# Contributor: tobias -# Contributor: Tobias Kieslich -# Contributor: Firmicus - -pkgname=perl-image-exiftool -_srcname=Image-ExifTool -pkgver=12.30 -pkgrel=1 -pkgdesc="Reader and rewriter of EXIF informations that supports raw files" -arch=('any') -url="https://search.cpan.org/perldoc?exiftool"; -license=('GPL') -depends=('perl') -optdepends=('perl-archive-zip: Support for ZIP-files, including EPUB') -provides=("perl-exiftool=$pkgver") -replaces=("perl-exiftool") -options=('!emptydirs') -source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) -md5sums=('1f5d66d62418c8b29eb0c0b7fd272b28') - -build() { - cd "${srcdir}/${_srcname}-${pkgver}" - # install module in vendor directories. - perl Makefile.PL INSTALLDIRS=vendor - make -} - -check() { - cd "${srcdir}/${_srcname}-${pkgver}" - make test -} - -package() { - cd "${srcdir}/${_srcname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -dm755 "$pkgdir/usr/share/$pkgname" - cp -r fmt_files config_files arg_files "$pkgdir/usr/share/$pkgname" -} Copied: perl-image-exiftool/repos/extra-any/PKGBUILD (from rev 440431, perl-image-exiftool/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-03-21 22:36:30 UTC (rev 440432) @@ -0,0 +1,39 @@ +# Maintainer: Florian Pritz +# Contributor: tobias +# Contributor: Tobias Kieslich +# Contributor: Firmicus + +pkgname=perl-image-exiftool +_srcname=Image-ExifTool +pkgver=12.40 +pkgrel=1 +pkgdesc="Reader and rewriter of EXIF informations that supports raw files" +arch=('any') +url="https://search.cpan.org/perldoc?exiftool"; +license=('GPL') +depends=('perl') +optdepends=('perl-archive-zip: Support for ZIP-files, including EPUB') +provides=("perl-exiftool=$pkgver") +replaces=("perl-exiftool") +options=('!emptydirs') +source=(https://exiftool.org/${_srcname}-$pkgver.tar.gz) +md5sums=('72b40d69cf518edebbf5b661465950e7') + +build() { + cd "${srcdir}/${_srcname}-${pkgver}" + # install module in vendor directories. + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "${srcdir}/${_srcname}-${pkgver}" + make test +} + +package() { + cd "${srcdir}/${_srcname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -dm755 "$pkgdir/usr/share/$pkgname" + cp -r fmt_files config_files arg_files "$pkgdir/usr/share/$pkgname" +}
[arch-commits] Commit in zabbix/repos/testing-x86_64 (30 files)
Date: Sunday, March 6, 2022 @ 10:33:18 Author: bluewind Revision: 439058 archrelease: copy trunk to testing-x86_64 Added: zabbix/repos/testing-x86_64/PKGBUILD (from rev 439057, zabbix/trunk/PKGBUILD) zabbix/repos/testing-x86_64/zabbix-agent.service (from rev 439057, zabbix/trunk/zabbix-agent.service) zabbix/repos/testing-x86_64/zabbix-agent.sysusers (from rev 439057, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles (from rev 439057, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/testing-x86_64/zabbix-agent2.service (from rev 439057, zabbix/trunk/zabbix-agent2.service) zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service (from rev 439057, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service (from rev 439057, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service (from rev 439057, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/testing-x86_64/zabbix-proxy.sysusers (from rev 439057, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles (from rev 439057, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/testing-x86_64/zabbix-server-mysql.service (from rev 439057, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/testing-x86_64/zabbix-server-pgsql.service (from rev 439057, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/testing-x86_64/zabbix-server.install (from rev 439057, zabbix/trunk/zabbix-server.install) zabbix/repos/testing-x86_64/zabbix-server.sysusers (from rev 439057, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/testing-x86_64/zabbix-server.tmpfiles (from rev 439057, zabbix/trunk/zabbix-server.tmpfiles) Deleted: zabbix/repos/testing-x86_64/PKGBUILD zabbix/repos/testing-x86_64/zabbix-agent.service zabbix/repos/testing-x86_64/zabbix-agent.sysusers zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles zabbix/repos/testing-x86_64/zabbix-agent2.service zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service zabbix/repos/testing-x86_64/zabbix-proxy.sysusers zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles zabbix/repos/testing-x86_64/zabbix-server-mysql.service zabbix/repos/testing-x86_64/zabbix-server-pgsql.service zabbix/repos/testing-x86_64/zabbix-server.install zabbix/repos/testing-x86_64/zabbix-server.sysusers zabbix/repos/testing-x86_64/zabbix-server.tmpfiles -+ PKGBUILD| 432 +- zabbix-agent.service| 22 +- zabbix-agent.sysusers |2 zabbix-agent.tmpfiles |2 zabbix-agent2.service | 22 +- zabbix-proxy-mysql.service | 36 +-- zabbix-proxy-pgsql.service | 36 +-- zabbix-proxy-sqlite.service | 36 +-- zabbix-proxy.sysusers |2 zabbix-proxy.tmpfiles |2 zabbix-server-mysql.service | 36 +-- zabbix-server-pgsql.service | 36 +-- zabbix-server.install | 24 +- zabbix-server.sysusers |2 zabbix-server.tmpfiles |2 15 files changed, 346 insertions(+), 346 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-03-06 10:33:10 UTC (rev 439057) +++ PKGBUILD2022-03-06 10:33:18 UTC (rev 439058) @@ -1,216 +0,0 @@ -# Maintainer: Bartłomiej Piotrowski -# Maintainer: Florian Pritz - -pkgbase=zabbix -pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.0 -pkgrel=1 -arch=(x86_64) -url='https://www.zabbix.com/' -license=(GPL) -makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) -source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; -zabbix-agent.{service,sysusers,tmpfiles} -zabbix-agent2.service -zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} -zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) - -sha512sums=('5b52dbee7ad5842c77f4e232d626b146912fe7cd64f781e8af2532eba43d8632dcd75d8126a8a8678c90c9a92273eb9906000d2f8009964fcc5484b3d1b2a76e' - '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' - '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' - 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' - 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' - 'b35155a5d151eb7258bca62d53e7099a056
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, March 6, 2022 @ 10:33:10 Author: bluewind Revision: 439057 upgpkg: zabbix 6.0.1-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-06 10:20:13 UTC (rev 439056) +++ PKGBUILD2022-03-06 10:33:10 UTC (rev 439057) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=6.0.0 +pkgver=6.0.1 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('5b52dbee7ad5842c77f4e232d626b146912fe7cd64f781e8af2532eba43d8632dcd75d8126a8a8678c90c9a92273eb9906000d2f8009964fcc5484b3d1b2a76e' +sha512sums=('1f0b3182976b3ff0db497eedf160ef116c36f631349ed9b973f511d2ec365d55c1c4383528d9a4c470fc5734def315c438242ac4070d6458608fe2062c5d1535' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
[arch-commits] Commit in syslog-ng/repos (4 files)
Date: Sunday, March 6, 2022 @ 10:20:13 Author: bluewind Revision: 439056 archrelease: copy trunk to testing-x86_64 Added: syslog-ng/repos/testing-x86_64/ syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 439055, syslog-ng/trunk/PKGBUILD) syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 439055, syslog-ng/trunk/syslog-ng.conf) syslog-ng/repos/testing-x86_64/syslog-ng.logrotate (from rev 439055, syslog-ng/trunk/syslog-ng.logrotate) -+ PKGBUILD| 72 ++ syslog-ng.conf | 93 ++ syslog-ng.logrotate |7 +++ 3 files changed, 172 insertions(+) Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 439055, syslog-ng/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-03-06 10:20:13 UTC (rev 439056) @@ -0,0 +1,72 @@ +# Maintainer: Florian Pritz +# Contributor: Eric Bélanger + +pkgname=syslog-ng +pkgver=3.36.1 +pkgrel=1 +pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" +arch=('x86_64') +url="https://www.syslog-ng.com/products/open-source-log-management/"; +license=('GPL2' 'LGPL2.1') +depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet' 'openssl') +makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 'hiredis' + 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap' 'systemd') +checkdepends=('python-nose' 'python-ply') +optdepends=('logrotate: for rotating log files' +'libdbi: for the SQL plugin' +'librabbitmq-c: for the AMQP plugin' +'mongo-c-driver: for the MongoDB plugin' +'libesmtp: for the SMTP plugin' +'hiredis: for the Redis plugin' +'libmaxminddb: for the GeoIP2 plugin' +'net-snmp: for the SNMP plugin' +'librdkafka: for the Kafka C plugin' +'python: for Python-based plugins') +conflicts=('eventlog') +replaces=('eventlog') +backup=('etc/syslog-ng/scl.conf' +'etc/syslog-ng/syslog-ng.conf' +'etc/logrotate.d/syslog-ng' +'etc/default/syslog-ng@default') +source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz +syslog-ng.conf syslog-ng.logrotate) +sha512sums=('b74c10e708616f7f5f5d529de5c1a3ce8ac888c05aa4b0fcf390d70082e9bc3432f3752998a5a258663fd47b8e4d0c2735240a3e4eda28178579b18308ebb376' + '36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded' + 'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc') + +prepare() { + cd $pkgname-$pkgver + sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' contrib/systemd/syslog-ng@.service + sed -i -e 's|/var/run|/run|g' contrib/systemd/syslog-ng@default +} + +build() { + cd $pkgname-$pkgver + + # https://archlinux.org/todo/lto-fat-objects/ + export CFLAGS+=" -ffat-lto-objects" + export CXXFLAGS+=" -ffat-lto-objects" + + + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \ +--sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share \ +--with-pidfile-dir=/run --enable-spoof-source --enable-ipv6 \ +--enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \ +--enable-manpages --enable-all-modules --disable-java --disable-java-modules \ +--disable-mqtt --disable-riemann --with-python=3 --with-jsonc=system + make +} + +check() { + cd $pkgname-$pkgver + make check || /usr/bin/true # unit test requires criterion +} + +package() { + make -C $pkgname-$pkgver DESTDIR="$pkgdir" install + install -dm755 "$pkgdir/var/lib/syslog-ng" "$pkgdir/etc/syslog-ng/patterndb.d" + install -Dm644 "$srcdir/syslog-ng.conf" "$pkgdir/etc/syslog-ng/syslog-ng.conf" + install -Dm644 "$srcdir/syslog-ng.logrotate" "$pkgdir/etc/logrotate.d/syslog-ng" + install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default -t "$pkgdir"/etc/default +} Copied: syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 439055, syslog-ng/trunk/syslog-ng.conf) === --- testing-x86_64/syslog-ng.conf (rev 0) +++ testing-x86_64/syslog-ng.conf 2022-03-06 10:20:13 UTC (rev 439056) @@ -0,0 +1,93 @@ +@version: 3.35 +@include "scl.conf" +# +# /etc/syslog-ng/syslog-ng.conf +# + +options { + stats_freq (0); + flush_lines (0); + time_reopen (10); + log_fifo_size (1); + chain_hostnames (off); + dns_cache (no); + use_dns (no); + use_fqdn (no); + create_dirs (no); + keep_hostname (yes); + perm(0640); + group("log"); +}; + +source src { + system(); + inte
[arch-commits] Commit in syslog-ng/trunk (PKGBUILD)
Date: Sunday, March 6, 2022 @ 10:20:10 Author: bluewind Revision: 439055 upgpkg: syslog-ng 3.36.1-1: upstream update Modified: syslog-ng/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-06 10:05:48 UTC (rev 439054) +++ PKGBUILD2022-03-06 10:20:10 UTC (rev 439055) @@ -2,8 +2,8 @@ # Contributor: Eric Bélanger pkgname=syslog-ng -pkgver=3.35.1 -pkgrel=4 +pkgver=3.36.1 +pkgrel=1 pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" arch=('x86_64') url="https://www.syslog-ng.com/products/open-source-log-management/"; @@ -30,7 +30,7 @@ 'etc/default/syslog-ng@default') source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz syslog-ng.conf syslog-ng.logrotate) -sha512sums=('7a0aa149d3e01b256e0f3168ceabebcbeadb0d8bbee6838d646cb425571b26330cccbcdd3a221f7b57a4605e875f48e48cd367825623299dc43d5ba77f94c50d' +sha512sums=('b74c10e708616f7f5f5d529de5c1a3ce8ac888c05aa4b0fcf390d70082e9bc3432f3752998a5a258663fd47b8e4d0c2735240a3e4eda28178579b18308ebb376' '36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded' 'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc')
[arch-commits] Commit in netctl/trunk (PKGBUILD)
Date: Sunday, March 6, 2022 @ 10:05:43 Author: bluewind Revision: 439053 upgpkg: netctl 1.28-1: upstream update Modified: netctl/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-03-06 08:49:30 UTC (rev 439052) +++ PKGBUILD2022-03-06 10:05:43 UTC (rev 439053) @@ -1,7 +1,7 @@ # Maintainer: Jouke Witteveen pkgname=netctl -pkgver=1.27 +pkgver=1.28 pkgrel=1 pkgdesc='Profile based systemd network management' url='https://gitlab.archlinux.org/archlinux/netctl' @@ -21,8 +21,8 @@ install=netctl.install source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig}) arch=('any') -md5sums=('1feb4ec0340f304a24b2d01d9e183322' - 'cb3728c5f90a46a2e56daf6769a4aa96') +md5sums=('ef8f6cb6b2e4e905f2f4ebae828c7d81' + 'fb9e2a0b7df54a2576fe70d08f22f98d') validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E') # Florian Pritz package() {
[arch-commits] Commit in netctl/repos (3 files)
Date: Sunday, March 6, 2022 @ 10:05:48 Author: bluewind Revision: 439054 archrelease: copy trunk to testing-any Added: netctl/repos/testing-any/ netctl/repos/testing-any/PKGBUILD (from rev 439053, netctl/trunk/PKGBUILD) netctl/repos/testing-any/netctl.install (from rev 439053, netctl/trunk/netctl.install) + PKGBUILD | 38 ++ netctl.install | 10 ++ 2 files changed, 48 insertions(+) Copied: netctl/repos/testing-any/PKGBUILD (from rev 439053, netctl/trunk/PKGBUILD) === --- testing-any/PKGBUILD(rev 0) +++ testing-any/PKGBUILD2022-03-06 10:05:48 UTC (rev 439054) @@ -0,0 +1,38 @@ +# Maintainer: Jouke Witteveen + +pkgname=netctl +pkgver=1.28 +pkgrel=1 +pkgdesc='Profile based systemd network management' +url='https://gitlab.archlinux.org/archlinux/netctl' +license=('GPL') +depends=('coreutils' 'iproute2' 'resolvconf' 'systemd>=233') +# The source tarball includes pre-built (using asciidoc) documentation. +makedepends=('pkg-config') +optdepends=('dialog: for the menu based wifi assistant' +'dhclient: for DHCP support (or dhcpcd)' +'dhcpcd: for DHCP support (or dhclient)' +'wpa_supplicant: for wireless networking support' +'ifplugd: for automatic wired connections through netctl-ifplugd' +'ppp: for PPP connections' +'openvswitch: for Open vSwitch connections' +'wireguard-tools: for WireGuard connections' + ) +install=netctl.install +source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig}) +arch=('any') +md5sums=('ef8f6cb6b2e4e905f2f4ebae828c7d81' + 'fb9e2a0b7df54a2576fe70d08f22f98d') +validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E') # Florian Pritz + +package() { + cd "$srcdir/netctl-${pkgver}" + make DESTDIR="$pkgdir" install + + # Shell Completion + install -D -m644 contrib/bash-completion "$pkgdir/usr/share/bash-completion/completions/netctl" + ln -s netctl "$pkgdir/usr/share/bash-completion/completions/netctl-auto" + ln -s netctl "$pkgdir/usr/share/bash-completion/completions/wifi-menu" + install -D -m644 contrib/zsh-completion "$pkgdir/usr/share/zsh/site-functions/_netctl" +} + Copied: netctl/repos/testing-any/netctl.install (from rev 439053, netctl/trunk/netctl.install) === --- testing-any/netctl.install (rev 0) +++ testing-any/netctl.install 2022-03-06 10:05:48 UTC (rev 439054) @@ -0,0 +1,10 @@ +post_upgrade() { +if [[ $(vercmp 1.18 "$2") -gt 0 ]]; then +grep -ls '^.include ' /etc/systemd/system/netctl@*.service | \ + while read -r unit; do +profile=$(systemd-escape --unescape "${unit:27:-8}") +echo ":: The unit for profile '$profile' uses deprecated features." +echo " Consider running: netctl reenable $(printf '%q' "$profile")" +done +fi +}
[arch-commits] Commit in zabbix/repos (16 files)
Date: Sunday, February 27, 2022 @ 10:43:19 Author: bluewind Revision: 438205 archrelease: copy trunk to testing-x86_64 Added: zabbix/repos/testing-x86_64/ zabbix/repos/testing-x86_64/PKGBUILD (from rev 438204, zabbix/trunk/PKGBUILD) zabbix/repos/testing-x86_64/zabbix-agent.service (from rev 438204, zabbix/trunk/zabbix-agent.service) zabbix/repos/testing-x86_64/zabbix-agent.sysusers (from rev 438204, zabbix/trunk/zabbix-agent.sysusers) zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles (from rev 438204, zabbix/trunk/zabbix-agent.tmpfiles) zabbix/repos/testing-x86_64/zabbix-agent2.service (from rev 438204, zabbix/trunk/zabbix-agent2.service) zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service (from rev 438204, zabbix/trunk/zabbix-proxy-mysql.service) zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service (from rev 438204, zabbix/trunk/zabbix-proxy-pgsql.service) zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service (from rev 438204, zabbix/trunk/zabbix-proxy-sqlite.service) zabbix/repos/testing-x86_64/zabbix-proxy.sysusers (from rev 438204, zabbix/trunk/zabbix-proxy.sysusers) zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles (from rev 438204, zabbix/trunk/zabbix-proxy.tmpfiles) zabbix/repos/testing-x86_64/zabbix-server-mysql.service (from rev 438204, zabbix/trunk/zabbix-server-mysql.service) zabbix/repos/testing-x86_64/zabbix-server-pgsql.service (from rev 438204, zabbix/trunk/zabbix-server-pgsql.service) zabbix/repos/testing-x86_64/zabbix-server.install (from rev 438204, zabbix/trunk/zabbix-server.install) zabbix/repos/testing-x86_64/zabbix-server.sysusers (from rev 438204, zabbix/trunk/zabbix-server.sysusers) zabbix/repos/testing-x86_64/zabbix-server.tmpfiles (from rev 438204, zabbix/trunk/zabbix-server.tmpfiles) -+ PKGBUILD| 216 ++ zabbix-agent.service| 11 ++ zabbix-agent.sysusers |1 zabbix-agent.tmpfiles |1 zabbix-agent2.service | 11 ++ zabbix-proxy-mysql.service | 18 +++ zabbix-proxy-pgsql.service | 18 +++ zabbix-proxy-sqlite.service | 18 +++ zabbix-proxy.sysusers |1 zabbix-proxy.tmpfiles |1 zabbix-server-mysql.service | 18 +++ zabbix-server-pgsql.service | 18 +++ zabbix-server.install | 12 ++ zabbix-server.sysusers |1 zabbix-server.tmpfiles |1 15 files changed, 346 insertions(+) Copied: zabbix/repos/testing-x86_64/PKGBUILD (from rev 438204, zabbix/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-02-27 10:43:19 UTC (rev 438205) @@ -0,0 +1,216 @@ +# Maintainer: Bartłomiej Piotrowski +# Maintainer: Florian Pritz + +pkgbase=zabbix +pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) +pkgver=6.0.0 +pkgrel=1 +arch=(x86_64) +url='https://www.zabbix.com/' +license=(GPL) +makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap libevent go pkgconfig) +source=("https://cdn.zabbix.com/zabbix/sources/stable/${pkgver%.*}/zabbix-${pkgver}.tar.gz"; +zabbix-agent.{service,sysusers,tmpfiles} +zabbix-agent2.service +zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} +zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) + +sha512sums=('5b52dbee7ad5842c77f4e232d626b146912fe7cd64f781e8af2532eba43d8632dcd75d8126a8a8678c90c9a92273eb9906000d2f8009964fcc5484b3d1b2a76e' + '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' + '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' + 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d' + 'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2' + 'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f' + 'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475' + '4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e' + 'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f86d377a26dfec6e3e129404cfda77632cad2f5cd6bab4a33f70a26c8c67b0d0b2abb3678ad2d83' + '7b5829caa77c6b5da8c2195ab840f0020f722a94f01a437324afdbe2a4372a594dcca6d63d2fdda5cfad81353ab4e4e0b2c6b67436203266dd44740a5e03b58e' + '94
[arch-commits] Commit in zabbix/trunk (PKGBUILD)
Date: Sunday, February 27, 2022 @ 10:43:12 Author: bluewind Revision: 438204 upgpkg: zabbix 6.0.0-1: upstream update Modified: zabbix/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-02-27 10:14:36 UTC (rev 438203) +++ PKGBUILD2022-02-27 10:43:12 UTC (rev 438204) @@ -3,7 +3,7 @@ pkgbase=zabbix pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php) -pkgver=5.4.10 +pkgver=6.0.0 pkgrel=1 arch=(x86_64) url='https://www.zabbix.com/' @@ -15,7 +15,7 @@ zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles} zabbix-proxy{-sqlite,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles}) -sha512sums=('452513c56db1778d49a32543814ed83836b480047ebc747e588b5cea8f9b199650824b9ea2042695c5551a81f1f3b2e8d98d0f658003f483bf8edf8ed5427c48' +sha512sums=('5b52dbee7ad5842c77f4e232d626b146912fe7cd64f781e8af2532eba43d8632dcd75d8126a8a8678c90c9a92273eb9906000d2f8009964fcc5484b3d1b2a76e' '8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444' '3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc' 'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
[arch-commits] Commit in apcupsd/repos/community-x86_64 (10 files)
Date: Sunday, February 27, 2022 @ 10:25:51 Author: bluewind Revision: 1137525 archrelease: copy trunk to community-x86_64 Added: apcupsd/repos/community-x86_64/PKGBUILD (from rev 1137524, apcupsd/trunk/PKGBUILD) apcupsd/repos/community-x86_64/apcupsd-3.14.4-shutdown.patch (from rev 1137524, apcupsd/trunk/apcupsd-3.14.4-shutdown.patch) apcupsd/repos/community-x86_64/apcupsd-tmpfiles.conf (from rev 1137524, apcupsd/trunk/apcupsd-tmpfiles.conf) apcupsd/repos/community-x86_64/apcupsd.service (from rev 1137524, apcupsd/trunk/apcupsd.service) apcupsd/repos/community-x86_64/apcupsd_shutdown (from rev 1137524, apcupsd/trunk/apcupsd_shutdown) Deleted: apcupsd/repos/community-x86_64/PKGBUILD apcupsd/repos/community-x86_64/apcupsd-3.14.4-shutdown.patch apcupsd/repos/community-x86_64/apcupsd-tmpfiles.conf apcupsd/repos/community-x86_64/apcupsd.service apcupsd/repos/community-x86_64/apcupsd_shutdown ---+ PKGBUILD | 146 apcupsd-3.14.4-shutdown.patch | 38 +- apcupsd-tmpfiles.conf |6 - apcupsd.service | 25 +++--- apcupsd_shutdown | 18 ++-- 5 files changed, 117 insertions(+), 116 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-02-27 10:25:47 UTC (rev 1137524) +++ PKGBUILD2022-02-27 10:25:51 UTC (rev 1137525) @@ -1,73 +0,0 @@ -# Maintainer: Florian Pritz -# Maintainer: Sergej Pupykin -# Contributor: Todd Musall -# Contributor: Massimiliano Torromeo - -pkgname=apcupsd -pkgver=3.14.14 -pkgrel=6 -pkgdesc="Power mangement and controlling most of APC's UPS models" -arch=(x86_64) -url="http://www.apcupsd.org"; -license=('GPL') -depends=('gcc-libs' 'systemd-sysvcompat' 'libusb-compat') -optdepends=('gd: for CGI') -makedepends=('gd') -backup=(etc/apcupsd/apcupsd.conf -etc/apcupsd/hosts.conf -etc/apcupsd/multimon.conf -etc/apcupsd/apcupsd.css -etc/apcupsd/changeme -etc/apcupsd/commfailure -etc/apcupsd/commok -etc/apcupsd/offbattery -etc/apcupsd/onbattery -etc/apcupsd/apccontrol) -source=(https://downloads.sourceforge.net/apcupsd/$pkgname-$pkgver.tar.gz{,.sig} -apcupsd.service - apcupsd-3.14.4-shutdown.patch - apcupsd_shutdown -apcupsd-tmpfiles.conf) -sha256sums=('db7748559b6b4c3784f9856561ef6ac6199ef7bd019b3edcd7e0a647bf8f9867' -'SKIP' -'41c79787172299f842e8edf5228d68978a83927264aa245982426b5988a64233' -'714468c0fbb07022ab29a58eac142eafd5aec9a0ab21e670266ebe7e760ccaf4' -'a5e3a4c3a47d1abdf23b0a7c3832ad5a00e1cab03fe51336a4ee5f236152a60d' -'a4474cfcd607c5e9b64e27eec7cbc2b0bcf08c8ea37fd1f0f28e98ac2883fd4f') -validpgpkeys=(635B9D943945DCA05BE9AB0A24E84804A57B2D90) - -prepare() { - cd "$srcdir/$pkgname-$pkgver" - patch -p1 -i "$srcdir/apcupsd-3.14.4-shutdown.patch" -} - -build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname \ - --sbindir=/usr/bin \ - --enable-cgi --enable-usb --enable-net \ - --with-upstype=usb --with-upscable=usb \ - --with-serial-dev=/dev/usb/hid/hiddev[0-9] \ - --disable-gapcmon --enable-modbus-usb - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install - - sed -i 's#^LOCKFILE .*$#LOCKFILE /run/apcupsd#' "$pkgdir/etc/apcupsd/apcupsd.conf" - - install -Dm644 "$srcdir/apcupsd.service" "$pkgdir/usr/lib/systemd/system/apcupsd.service" - install -Dm644 "$srcdir/apcupsd-tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/apcupsd.conf" - install -Dm755 "$srcdir/apcupsd_shutdown" "$pkgdir/usr/lib/systemd/system-shutdown/apcupsd_shutdown" - - chmod 755 "$pkgdir"/usr/bin/* - mv "$pkgdir/usr/bin/"smtp{,-$pkgname} - - install -dm755 "$pkgdir/usr/lib/$pkgname/cgi-bin" - mv "$pkgdir"/etc/apcupsd/*.cgi "$pkgdir/usr/lib/$pkgname/cgi-bin" - - rm -rf "$pkgdir/usr/share/hal" -} Copied: apcupsd/repos/community-x86_64/PKGBUILD (from rev 1137524, apcupsd/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-02-27 10:25:51 UTC (rev 1137525) @@ -0,0 +1,73 @@ +# Maintainer: Florian Pritz +# Maintainer: Sergej Pupykin +# Contributor: Todd Musall +# Contributor: Massimiliano Torromeo + +pkgname=apcupsd +pkgver=3.14.14 +pkgrel=7 +pkgdesc="Power mangement and controlling most of APC's UPS models" +arch=(x86_64) +url="http://www.apcupsd.org"; +license=('GPL') +depends=('gcc-libs' 'systemd-sysvcompat' 'libusb-compat') +optdepends=('gd: for CGI') +makedepends=('gd') +backup=(etc/apcupsd/apcupsd.conf +etc/apcupsd/hosts.conf +etc/apcupsd/multimon
[arch-commits] Commit in apcupsd/trunk (PKGBUILD apcupsd.service)
Date: Sunday, February 27, 2022 @ 10:25:47 Author: bluewind Revision: 1137524 upgpkg: apcupsd 3.14.14-7: Add Wants=network-online.target, fixes FS#73607 Modified: apcupsd/trunk/PKGBUILD apcupsd/trunk/apcupsd.service -+ PKGBUILD|4 ++-- apcupsd.service |1 + 2 files changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-02-27 10:14:41 UTC (rev 1137523) +++ PKGBUILD2022-02-27 10:25:47 UTC (rev 1137524) @@ -5,7 +5,7 @@ pkgname=apcupsd pkgver=3.14.14 -pkgrel=6 +pkgrel=7 pkgdesc="Power mangement and controlling most of APC's UPS models" arch=(x86_64) url="http://www.apcupsd.org"; @@ -30,7 +30,7 @@ apcupsd-tmpfiles.conf) sha256sums=('db7748559b6b4c3784f9856561ef6ac6199ef7bd019b3edcd7e0a647bf8f9867' 'SKIP' -'41c79787172299f842e8edf5228d68978a83927264aa245982426b5988a64233' +'f850d7b28c52186b351ae89d1ec8f68ccd972155e618a0b23a2e3a1f620c6c37' '714468c0fbb07022ab29a58eac142eafd5aec9a0ab21e670266ebe7e760ccaf4' 'a5e3a4c3a47d1abdf23b0a7c3832ad5a00e1cab03fe51336a4ee5f236152a60d' 'a4474cfcd607c5e9b64e27eec7cbc2b0bcf08c8ea37fd1f0f28e98ac2883fd4f') Modified: apcupsd.service === --- apcupsd.service 2022-02-27 10:14:41 UTC (rev 1137523) +++ apcupsd.service 2022-02-27 10:25:47 UTC (rev 1137524) @@ -2,6 +2,7 @@ Description=APC UPS Power Control Daemon for Linux After=syslog.target After=network-online.target +Wants=network-online.target [Service] ExecStartPre=-/bin/rm -f /etc/apcupsd/powerfail
[arch-commits] Commit in perl-crypt-openssl-guess/repos/extra-any (PKGBUILD PKGBUILD)
Date: Sunday, February 27, 2022 @ 10:14:36 Author: bluewind Revision: 438203 archrelease: copy trunk to extra-any Added: perl-crypt-openssl-guess/repos/extra-any/PKGBUILD (from rev 438202, perl-crypt-openssl-guess/trunk/PKGBUILD) Deleted: perl-crypt-openssl-guess/repos/extra-any/PKGBUILD --+ PKGBUILD | 90 ++--- 1 file changed, 45 insertions(+), 45 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-02-27 10:14:33 UTC (rev 438202) +++ PKGBUILD2022-02-27 10:14:36 UTC (rev 438203) @@ -1,45 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-crypt-openssl-guess -pkgver=0.14 -pkgrel=1 -pkgdesc='Guess OpenSSL include path' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=('perl>=5.8.1') -makedepends=('perl-extutils-makemaker>=6.64') -url=https://metacpan.org/release/Crypt-OpenSSL-Guess -source=("https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-$pkgver.tar.gz";) -md5sums=(716e445a75aaf0d57b66e36292d9374d) -sha512sums=(cf15b8775bf3279063c4b9e6865abbc28cef2d02b1b38fd4f4b5098eb19ef10905bd69dc1814d4122e274e4b04fd16697e17f18f0b5db15cd695befff2cef2fd) -_ddir="Crypt-OpenSSL-Guess-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-crypt-openssl-guess/repos/extra-any/PKGBUILD (from rev 438202, perl-crypt-openssl-guess/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-02-27 10:14:36 UTC (rev 438203) @@ -0,0 +1,45 @@ +# Maintainer: Florian Pritz + +pkgname=perl-crypt-openssl-guess +pkgver=0.15 +pkgrel=1 +pkgdesc='Guess OpenSSL include path' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8.1') +makedepends=('perl-extutils-makemaker>=6.64') +url=https://metacpan.org/release/Crypt-OpenSSL-Guess +source=("https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-$pkgver.tar.gz";) +md5sums=(e07f470dd25023730cf8536e0cefbabd) +sha512sums=(d7527be1f07847fbafc10b30c00c43e7fdcd4db27535b16cac98c5b6507d138c14cebcdb3c4ef07dc3016a93fea95155548cc7d83a0309fbc13b7d3b9607bf5d) +_ddir="Crypt-OpenSSL-Guess-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-crypt-openssl-guess/trunk (PKGBUILD)
Date: Sunday, February 27, 2022 @ 10:14:33 Author: bluewind Revision: 438202 upgpkg: perl-crypt-openssl-guess 0.15-1: upstream update Modified: perl-crypt-openssl-guess/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-02-27 09:55:20 UTC (rev 438201) +++ PKGBUILD2022-02-27 10:14:33 UTC (rev 438202) @@ -1,7 +1,7 @@ # Maintainer: Florian Pritz pkgname=perl-crypt-openssl-guess -pkgver=0.14 +pkgver=0.15 pkgrel=1 pkgdesc='Guess OpenSSL include path' arch=(any) @@ -11,8 +11,8 @@ makedepends=('perl-extutils-makemaker>=6.64') url=https://metacpan.org/release/Crypt-OpenSSL-Guess source=("https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-$pkgver.tar.gz";) -md5sums=(716e445a75aaf0d57b66e36292d9374d) -sha512sums=(cf15b8775bf3279063c4b9e6865abbc28cef2d02b1b38fd4f4b5098eb19ef10905bd69dc1814d4122e274e4b04fd16697e17f18f0b5db15cd695befff2cef2fd) +md5sums=(e07f470dd25023730cf8536e0cefbabd) +sha512sums=(d7527be1f07847fbafc10b30c00c43e7fdcd4db27535b16cac98c5b6507d138c14cebcdb3c4ef07dc3016a93fea95155548cc7d83a0309fbc13b7d3b9607bf5d) _ddir="Crypt-OpenSSL-Guess-$pkgver" build()
[arch-commits] Commit in perl-cgi/repos/community-any (PKGBUILD PKGBUILD)
Date: Sunday, February 27, 2022 @ 10:13:45 Author: bluewind Revision: 1137522 archrelease: copy trunk to community-any Added: perl-cgi/repos/community-any/PKGBUILD (from rev 1137521, perl-cgi/trunk/PKGBUILD) Deleted: perl-cgi/repos/community-any/PKGBUILD --+ PKGBUILD | 92 ++--- 1 file changed, 46 insertions(+), 46 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2022-02-27 10:13:42 UTC (rev 1137521) +++ PKGBUILD2022-02-27 10:13:45 UTC (rev 1137522) @@ -1,46 +0,0 @@ -# Maintainer: Florian Pritz - -pkgname=perl-cgi -pkgver=4.53 -pkgrel=1 -pkgdesc='Handle Common Gateway Interface requests and responses' -arch=(any) -license=(PerlArtistic GPL) -options=(!emptydirs) -depends=('perl>=5.8.1' perl-html-parser) -checkdepends=('perl-test-deep>=0.11' perl-test-nowarnings - 'perl-test-warn>=0.3') -url=https://metacpan.org/release/CGI -source=("https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-$pkgver.tar.gz";) -md5sums=(a0fe86a038de743ac45a0933daa2804f) -sha512sums=(8b037d4c3240dd87ab888245b604efb43d25e155e3e7e4068b373ef73d7dc2d6361d83819733f62a5c138003290d5195ec8cfaa1a5e8ca6356e6e9aa52813567) -_ddir="CGI-$pkgver" - -build() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - /usr/bin/perl Makefile.PL - make -) - -check() -( - cd "$srcdir/$_ddir" - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -) - -package() -( - cd "$srcdir/$_ddir" - make install INSTALLDIRS=vendor DESTDIR="$pkgdir" -) - -# Local Variables: -# mode: shell-script -# sh-basic-offset: 2 -# End: -# vim:set ts=2 sw=2 et: Copied: perl-cgi/repos/community-any/PKGBUILD (from rev 1137521, perl-cgi/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2022-02-27 10:13:45 UTC (rev 1137522) @@ -0,0 +1,46 @@ +# Maintainer: Florian Pritz + +pkgname=perl-cgi +pkgver=4.54 +pkgrel=1 +pkgdesc='Handle Common Gateway Interface requests and responses' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8.1' perl-html-parser) +checkdepends=('perl-test-deep>=0.11' perl-test-nowarnings + 'perl-test-warn>=0.3') +url=https://metacpan.org/release/CGI +source=("https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-$pkgver.tar.gz";) +md5sums=(d12ddcd7d3db6410e9316ed9b9b5c80f) +sha512sums=(be7ecdd9eab81ad95d527aac2f10ef7a15322675fe002558c6ab4951f496a8964025b7d0426241fb3f61aba103964a40f99acc05a39c84a2434f70d90ac47be6) +_ddir="CGI-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in perl-cgi/trunk (PKGBUILD)
Date: Sunday, February 27, 2022 @ 10:13:42 Author: bluewind Revision: 1137521 upgpkg: perl-cgi 4.54-1: upstream update Modified: perl-cgi/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2022-02-27 10:12:29 UTC (rev 1137520) +++ PKGBUILD2022-02-27 10:13:42 UTC (rev 1137521) @@ -1,7 +1,7 @@ # Maintainer: Florian Pritz pkgname=perl-cgi -pkgver=4.53 +pkgver=4.54 pkgrel=1 pkgdesc='Handle Common Gateway Interface requests and responses' arch=(any) @@ -12,8 +12,8 @@ 'perl-test-warn>=0.3') url=https://metacpan.org/release/CGI source=("https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-$pkgver.tar.gz";) -md5sums=(a0fe86a038de743ac45a0933daa2804f) -sha512sums=(8b037d4c3240dd87ab888245b604efb43d25e155e3e7e4068b373ef73d7dc2d6361d83819733f62a5c138003290d5195ec8cfaa1a5e8ca6356e6e9aa52813567) +md5sums=(d12ddcd7d3db6410e9316ed9b9b5c80f) +sha512sums=(be7ecdd9eab81ad95d527aac2f10ef7a15322675fe002558c6ab4951f496a8964025b7d0426241fb3f61aba103964a40f99acc05a39c84a2434f70d90ac47be6) _ddir="CGI-$pkgver" build()