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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:43
  Author: heftig
Revision: 362938

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 362936, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fs62142.patch
(from rev 362936, nvidia/trunk/fs62142.patch)

---+
 PKGBUILD  |   85 
 fs62142.patch |   13 
 2 files changed, 98 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 362936, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-09-16 04:52:43 UTC (rev 362938)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=435.21
+_extramodules=extramodules-ARCH
+pkgrel=5
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+fs62142.patch)
+sha512sums=('e83b6dff80434971c0b254815945d485a45c978b8a19994244f50a463658863948b2eac8bc62d667bb10c23f41cf1c3521c409d23ac2ab6a0c0cd094a6e20270'
+
'df949debf9fed92b3c58322c02685fb344bbfff2920557e7d55ed3f70559f48cd6199bc85e2af170b7e56797f3e9881a53eab8c411f21e75f5abec26eaa47752')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Fix https://bugs.archlinux.org/task/62142
+patch -Np1 -i ../fs62142.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/fs62142.patch (from rev 362936, 
nvidia/trunk/fs62142.patch)
===
--- staging-x86_64/fs62142.patch(rev 0)
+++ staging-x86_64/fs62142.patch2019-09-16 04:52:43 UTC (rev 362938)
@@ -0,0 +1,13 @@
+diff --git a/kernel/nvidia/nv-dma.c b/kernel/nvidia/nv-dma.c
+index 73cdeed..e691014 100644
+--- a/kernel/nvidia/nv-dma.c
 b/kernel/nvidia/nv-dma.c
+@@ -606,7 +606,7 @@ static NvBool nv_dma_is_map_resource_implemented
+ #if defined(NV_DMA_MAP_RESOURCE_PRESENT)
+ const struct dma_map_ops *ops = get_dma_ops(>dev->dev);
+ 
+-return (ops->map_resource != NULL);
++return (ops && ops->map_resource);
+ #else
+ return NV_FALSE;
+ #endif


[arch-commits] Commit in nvidia-390xx/repos (5 files)

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:43
  Author: heftig
Revision: 362937

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 362936, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 362936, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.1.patch
(from rev 362936, nvidia-390xx/trunk/kernel-5.1.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.2.patch
(from rev 362936, nvidia-390xx/trunk/kernel-5.2.patch)

---+
 PKGBUILD  |   87 ++
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 kernel-5.2.patch  |   18 +++
 4 files changed, 268 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 362936, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-09-16 04:52:43 UTC (rev 362937)
@@ -0,0 +1,87 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.129
+_extramodules=extramodules-ARCH
+pkgrel=5
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch')
+sha256sums=('a7925a327cab828d1eb9e74f8943623c5dbc9a5e376a4c0184065d4a319696c1'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 362936, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-09-16 04:52:43 UTC (rev 362937)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if 

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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:41
  Author: heftig
Revision: 510856

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 510852, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 510852, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:41 UTC (rev 510856)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=251
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:41
  Author: heftig
Revision: 510858

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 510851, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:41 UTC (rev 510858)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=132
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:39
  Author: heftig
Revision: 510853

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 510851, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 510851, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:39 UTC (rev 510853)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=139
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:40
  Author: heftig
Revision: 510855

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 510852, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 510852, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:40 UTC (rev 510855)
@@ -0,0 +1,37 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.02
+pkgrel=16
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('29a67eedf1d84a3eae60aeb8bbd843b1e65e104a45a3e2932bd015aab4ebd1eb')
+
+build() {
+   KERNEL_VERSION=$(

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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:40
  Author: heftig
Revision: 510854

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 510851, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
510851, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:40 UTC (rev 510854)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190913
+pkgrel=2
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:38
  Author: heftig
Revision: 510852

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
510851, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:38 UTC (rev 510852)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+_extramodules=extramodules-ARCH
+pkgrel=12
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;)
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14')
+
+build() {
+  cd deepin-anything-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make -C kernelmod kdir=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd deepin-anything-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 kernelmod/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:41
  Author: heftig
Revision: 510857

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
510852, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-09-16 04:52:41 UTC (rev 
510857)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 510853, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:41 UTC (rev 510857)
@@ -0,0 +1,52 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190831
+pkgrel=5
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('9a83772cf8bec15723f7a8105a0aae3faa057edbd5595e6c081e5803a8996bf9'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 510853, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-09-16 04:52:41 UTC (rev 510857)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:52:42
  Author: heftig
Revision: 510859

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 510851, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 510851, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 510851, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-16 04:52:42 UTC (rev 510859)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=246
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 510851, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-09-16 04:52:42 UTC (rev 510859)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:18
  Author: heftig
Revision: 510846

8.047.02-16: kernel 5.3.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:17 UTC (rev 510845)
+++ PKGBUILD2019-09-16 04:40:18 UTC (rev 510846)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.02
-pkgrel=15
+pkgrel=16
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:25
  Author: heftig
Revision: 510849

1.61-62: kernel 5.3.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:21 UTC (rev 510848)
+++ PKGBUILD2019-09-16 04:40:25 UTC (rev 510849)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=61
+pkgrel=62
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:17
  Author: heftig
Revision: 510845

0.8-251: kernel 5.3.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:15 UTC (rev 510844)
+++ PKGBUILD2019-09-16 04:40:17 UTC (rev 510845)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=250
+pkgrel=251
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:23
  Author: heftig
Revision: 362936

435.21-5: kernel 5.3.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:22 UTC (rev 362935)
+++ PKGBUILD2019-09-16 04:40:23 UTC (rev 362936)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=435.21
 _extramodules=extramodules-ARCH
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:14
  Author: heftig
Revision: 510843

6.30.223.271-132: kernel 5.3.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:13 UTC (rev 510842)
+++ PKGBUILD2019-09-16 04:40:14 UTC (rev 510843)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=131
+pkgrel=132
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:19
  Author: heftig
Revision: 510847

20190831-5: kernel 5.3.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:18 UTC (rev 510846)
+++ PKGBUILD2019-09-16 04:40:19 UTC (rev 510847)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20190831
-pkgrel=4
+pkgrel=5
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:22
  Author: heftig
Revision: 362935

390.129-5: kernel 5.3.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:19:48 UTC (rev 362934)
+++ PKGBUILD2019-09-16 04:40:22 UTC (rev 362935)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.129
 _extramodules=extramodules-ARCH
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:21
  Author: heftig
Revision: 510848

1.1.0-246: kernel 5.3.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:19 UTC (rev 510847)
+++ PKGBUILD2019-09-16 04:40:21 UTC (rev 510848)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=245
+pkgrel=246
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:13
  Author: heftig
Revision: 510842

0.43-139: kernel 5.3.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 01:14:53 UTC (rev 510841)
+++ PKGBUILD2019-09-16 04:40:13 UTC (rev 510842)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=138
+pkgrel=139
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:28
  Author: heftig
Revision: 510851

5.0.1-12: kernel 5.3.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:27 UTC (rev 510850)
+++ PKGBUILD2019-09-16 04:40:28 UTC (rev 510851)
@@ -3,7 +3,7 @@
 pkgname=deepin-anything-arch
 pkgver=5.0.1
 _extramodules=extramodules-ARCH
-pkgrel=11
+pkgrel=12
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:27
  Author: heftig
Revision: 510850

0.0.20190913-2: kernel 5.3.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:25 UTC (rev 510849)
+++ PKGBUILD2019-09-16 04:40:27 UTC (rev 510850)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20190913
-pkgrel=1
+pkgrel=2
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:40:15
  Author: heftig
Revision: 510844

6.0.12-5: kernel 5.3.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:40:14 UTC (rev 510843)
+++ PKGBUILD2019-09-16 04:40:15 UTC (rev 510844)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.12
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:19:48
  Author: heftig
Revision: 362934

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 362932, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 362932, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 362932, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 362932, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 362932, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 362932, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  246 +
 config|10563 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10858 insertions(+)

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


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:19:48
  Author: heftig
Revision: 362933

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 362932, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 362932, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 362932, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 362932, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 362932, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 362932, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  246 +
 config|10531 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10826 insertions(+)

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


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:19:11
  Author: heftig
Revision: 362932

5.3.zen1-1

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

--+
 PKGBUILD |4 
 config   |  428 +++--
 2 files changed, 280 insertions(+), 152 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 04:19:09 UTC (rev 362931)
+++ PKGBUILD2019-09-16 04:19:11 UTC (rev 362932)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.2.14-zen2
+_srcver=5.3-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -29,7 +29,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'3650ffdd3e3f2b21c2abb28d1f9906e2b8a705ec283ad75ea04df34a6142cda9'
+'449a35eb7b1c9536266c04aff143797caf83035df26bed187267043bcc77fdc4'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config
===
--- config  2019-09-16 04:19:09 UTC (rev 362931)
+++ config  2019-09-16 04:19:11 UTC (rev 362932)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.2.10-zen1 Kernel Configuration
+# Linux/x86 5.3.0-zen1 Kernel Configuration
 #
 
 #
@@ -9,6 +9,7 @@
 CONFIG_CC_IS_GCC=y
 CONFIG_GCC_VERSION=90100
 CONFIG_CLANG_VERSION=0
+CONFIG_CC_CAN_LINK=y
 CONFIG_CC_HAS_ASM_GOTO=y
 CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
 CONFIG_CC_DISABLE_WARN_MAYBE_UNINITIALIZED=y
@@ -23,6 +24,7 @@
 # CONFIG_SCHED_MUQSS is not set
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
+# CONFIG_HEADER_TEST is not set
 CONFIG_LOCALVERSION=""
 CONFIG_LOCALVERSION_AUTO=y
 CONFIG_BUILD_SALT=""
@@ -99,6 +101,7 @@
 # CONFIG_PREEMPT_VOLUNTARY is not set
 CONFIG_PREEMPT=y
 CONFIG_PREEMPT_COUNT=y
+CONFIG_PREEMPTION=y
 
 #
 # CPU/Task time and stats accounting
@@ -145,6 +148,14 @@
 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
+
+#
+# Scheduler features
+#
+CONFIG_UCLAMP_TASK=y
+CONFIG_UCLAMP_BUCKETS_COUNT=5
+# end of Scheduler features
+
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_ARCH_SUPPORTS_INT128=y
@@ -157,7 +168,6 @@
 CONFIG_MEMCG_SWAP_ENABLED=y
 CONFIG_MEMCG_KMEM=y
 CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
@@ -291,7 +301,6 @@
 CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
 CONFIG_ARCH_HIBERNATION_POSSIBLE=y
 CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
 CONFIG_ZONE_DMA32=y
 CONFIG_AUDIT_ARCH=y
@@ -327,6 +336,7 @@
 CONFIG_PARAVIRT_XXL=y
 # CONFIG_PARAVIRT_DEBUG is not set
 CONFIG_PARAVIRT_SPINLOCKS=y
+CONFIG_X86_HV_CALLBACK_VECTOR=y
 CONFIG_XEN=y
 CONFIG_XEN_PV=y
 CONFIG_XEN_PV_SMP=y
@@ -343,6 +353,7 @@
 CONFIG_PARAVIRT_TIME_ACCOUNTING=y
 CONFIG_PARAVIRT_CLOCK=y
 CONFIG_JAILHOUSE_GUEST=y
+CONFIG_ACRN_GUEST=y
 # CONFIG_MK8 is not set
 # CONFIG_MK8SSE3 is not set
 # CONFIG_MK10 is not set
@@ -382,6 +393,7 @@
 CONFIG_CPU_SUP_AMD=y
 CONFIG_CPU_SUP_HYGON=y
 CONFIG_CPU_SUP_CENTAUR=y
+CONFIG_CPU_SUP_ZHAOXIN=y
 CONFIG_HPET_TIMER=y
 CONFIG_HPET_EMULATE_RTC=y
 CONFIG_DMI=y
@@ -491,7 +503,8 @@
 # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
 # CONFIG_COMPAT_VDSO is not set
 # CONFIG_LEGACY_VSYSCALL_EMULATE is not set
-CONFIG_LEGACY_VSYSCALL_NONE=y
+CONFIG_LEGACY_VSYSCALL_XONLY=y
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
 # CONFIG_CMDLINE_BOOL is not set
 CONFIG_MODIFY_LDT_SYSCALL=y
 CONFIG_HAVE_LIVEPATCH=y
@@ -681,7 +694,6 @@
 # end of Binary Emulations
 
 CONFIG_X86_DEV_DMA_OPS=y
-CONFIG_HAVE_GENERIC_GUP=y
 
 #
 # Firmware Drivers
@@ -736,6 +748,7 @@
 CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
 CONFIG_KVM_COMPAT=y
 CONFIG_HAVE_KVM_IRQ_BYPASS=y
+CONFIG_HAVE_KVM_NO_POLL=y
 CONFIG_VIRTUALIZATION=y
 CONFIG_KVM=m
 CONFIG_KVM_INTEL=m
@@ -818,6 +831,7 @@
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
 CONFIG_HAVE_ARCH_HUGE_VMAP=y
+CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
 CONFIG_MODULES_USE_ELF_RELA=y
@@ -945,6 +959,7 @@
 CONFIG_MQ_IOSCHED_KYBER=y
 CONFIG_IOSCHED_BFQ=y
 CONFIG_BFQ_GROUP_IOSCHED=y
+# CONFIG_BFQ_CGROUP_DEBUG is not set
 # end of IO Schedulers
 
 CONFIG_PREEMPT_NOTIFIERS=y
@@ -987,6 +1002,7 @@
 CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
 CONFIG_SPARSEMEM_VMEMMAP=y
 CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
+CONFIG_HAVE_FAST_GUP=y
 CONFIG_MEMORY_ISOLATION=y
 CONFIG_HAVE_BOOTMEM_INFO_NODE=y
 CONFIG_MEMORY_HOTPLUG=y
@@ -1028,17 +1044,12 @@
 

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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Monday, September 16, 2019 @ 04:19:09
  Author: heftig
Revision: 362931

5.3.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 
 config   |  428 +++--
 2 files changed, 280 insertions(+), 152 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 00:05:12 UTC (rev 362930)
+++ PKGBUILD2019-09-16 04:19:09 UTC (rev 362931)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.2.14-arch2
+_srcver=5.3-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)
@@ -29,7 +29,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'e0d0f140128a8574217701e61e874a0a108f3b8cd0f6e35d8b16afe897999f8e'
+'166ee15de54cd8385ed12599cf8402009df5e5c59e961e0547c7745fa385b6a2'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config
===
--- config  2019-09-16 00:05:12 UTC (rev 362930)
+++ config  2019-09-16 04:19:09 UTC (rev 362931)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.2.10-arch1 Kernel Configuration
+# Linux/x86 5.3.0-arch1 Kernel Configuration
 #
 
 #
@@ -9,6 +9,7 @@
 CONFIG_CC_IS_GCC=y
 CONFIG_GCC_VERSION=90100
 CONFIG_CLANG_VERSION=0
+CONFIG_CC_CAN_LINK=y
 CONFIG_CC_HAS_ASM_GOTO=y
 CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
 CONFIG_IRQ_WORK=y
@@ -20,6 +21,7 @@
 #
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
+# CONFIG_HEADER_TEST is not set
 CONFIG_LOCALVERSION=""
 CONFIG_LOCALVERSION_AUTO=y
 CONFIG_BUILD_SALT=""
@@ -96,6 +98,7 @@
 # CONFIG_PREEMPT_VOLUNTARY is not set
 CONFIG_PREEMPT=y
 CONFIG_PREEMPT_COUNT=y
+CONFIG_PREEMPTION=y
 
 #
 # CPU/Task time and stats accounting
@@ -142,6 +145,14 @@
 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
+
+#
+# Scheduler features
+#
+CONFIG_UCLAMP_TASK=y
+CONFIG_UCLAMP_BUCKETS_COUNT=5
+# end of Scheduler features
+
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_ARCH_SUPPORTS_INT128=y
@@ -154,7 +165,6 @@
 CONFIG_MEMCG_SWAP_ENABLED=y
 CONFIG_MEMCG_KMEM=y
 CONFIG_BLK_CGROUP=y
-# CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
@@ -287,7 +297,6 @@
 CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
 CONFIG_ARCH_HIBERNATION_POSSIBLE=y
 CONFIG_ARCH_SUSPEND_POSSIBLE=y
-CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
 CONFIG_ZONE_DMA32=y
 CONFIG_AUDIT_ARCH=y
@@ -323,6 +332,7 @@
 CONFIG_PARAVIRT_XXL=y
 # CONFIG_PARAVIRT_DEBUG is not set
 CONFIG_PARAVIRT_SPINLOCKS=y
+CONFIG_X86_HV_CALLBACK_VECTOR=y
 CONFIG_XEN=y
 CONFIG_XEN_PV=y
 CONFIG_XEN_PV_SMP=y
@@ -339,6 +349,7 @@
 CONFIG_PARAVIRT_TIME_ACCOUNTING=y
 CONFIG_PARAVIRT_CLOCK=y
 CONFIG_JAILHOUSE_GUEST=y
+CONFIG_ACRN_GUEST=y
 # CONFIG_MK8 is not set
 # CONFIG_MPSC is not set
 # CONFIG_MCORE2 is not set
@@ -356,6 +367,7 @@
 CONFIG_CPU_SUP_AMD=y
 CONFIG_CPU_SUP_HYGON=y
 CONFIG_CPU_SUP_CENTAUR=y
+CONFIG_CPU_SUP_ZHAOXIN=y
 CONFIG_HPET_TIMER=y
 CONFIG_HPET_EMULATE_RTC=y
 CONFIG_DMI=y
@@ -463,7 +475,8 @@
 # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
 # CONFIG_COMPAT_VDSO is not set
 # CONFIG_LEGACY_VSYSCALL_EMULATE is not set
-CONFIG_LEGACY_VSYSCALL_NONE=y
+CONFIG_LEGACY_VSYSCALL_XONLY=y
+# CONFIG_LEGACY_VSYSCALL_NONE is not set
 # CONFIG_CMDLINE_BOOL is not set
 CONFIG_MODIFY_LDT_SYSCALL=y
 CONFIG_HAVE_LIVEPATCH=y
@@ -653,7 +666,6 @@
 # end of Binary Emulations
 
 CONFIG_X86_DEV_DMA_OPS=y
-CONFIG_HAVE_GENERIC_GUP=y
 
 #
 # Firmware Drivers
@@ -708,6 +720,7 @@
 CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
 CONFIG_KVM_COMPAT=y
 CONFIG_HAVE_KVM_IRQ_BYPASS=y
+CONFIG_HAVE_KVM_NO_POLL=y
 CONFIG_VIRTUALIZATION=y
 CONFIG_KVM=m
 CONFIG_KVM_INTEL=m
@@ -790,6 +803,7 @@
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
 CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
 CONFIG_HAVE_ARCH_HUGE_VMAP=y
+CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
 CONFIG_HAVE_ARCH_SOFT_DIRTY=y
 CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
 CONFIG_MODULES_USE_ELF_RELA=y
@@ -917,6 +931,7 @@
 CONFIG_MQ_IOSCHED_KYBER=y
 CONFIG_IOSCHED_BFQ=y
 CONFIG_BFQ_GROUP_IOSCHED=y
+# CONFIG_BFQ_CGROUP_DEBUG is not set
 # end of IO Schedulers
 
 CONFIG_PREEMPT_NOTIFIERS=y
@@ -959,6 +974,7 @@
 CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
 CONFIG_SPARSEMEM_VMEMMAP=y
 CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
+CONFIG_HAVE_FAST_GUP=y
 CONFIG_MEMORY_ISOLATION=y
 CONFIG_HAVE_BOOTMEM_INFO_NODE=y
 CONFIG_MEMORY_HOTPLUG=y
@@ -1000,17 +1016,12 @@
 CONFIG_GENERIC_EARLY_IOREMAP=y
 # CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
 # 

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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Monday, September 16, 2019 @ 01:14:38
  Author: eschwartz
Revision: 510840

upgpkg: weechat 2.6-2

rebuild to add optdepends descriptions

drop unused makedeps on asciidoc/source-highlight as those are no longer used
since asciidoctor was added instead

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:58:00 UTC (rev 510839)
+++ PKGBUILD2019-09-16 01:14:38 UTC (rev 510840)
@@ -4,26 +4,27 @@
 
 pkgname=weechat
 pkgver=2.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('x86_64')
 url="https://www.weechat.org/;
 license=('GPL')
 depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+makedepends=('asciidoctor' 'cmake' 'aspell' 'guile2.0' 'lua' 'perl' 'python' 
'ruby' 'tcl')
+optdepends=('aspell: spellchecker support'
+'guile2.0: support for guile scripts'
+'lua: support for lua scripts'
+'perl: support for perl scripts'
+'python: support for perl scripts'
+'ruby: support for ruby scripts'
+'tcl: support for tcl scripts')
+source=("https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz"{,.asc})
 
sha512sums=('cf56692e12b2e034675d4c15a8822836b2fcf93d584948e338d263f5a7207edf4599cc72bfb940427146f5f75e7239207cf54f5ed07dd5b6119f68c445725a2d'
 'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) 
 
-prepare() {
-  mkdir build
-}
-
 build() {
+  mkdir -p build
   cd build
   cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
 -DCMAKE_INSTALL_PREFIX=/usr \


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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Monday, September 16, 2019 @ 01:14:53
  Author: eschwartz
Revision: 510841

archrelease: copy trunk to community-x86_64

Added:
  weechat/repos/community-x86_64/PKGBUILD
(from rev 510840, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-16 01:14:38 UTC (rev 510840)
+++ PKGBUILD2019-09-16 01:14:53 UTC (rev 510841)
@@ -1,38 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=2.6
-pkgrel=1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('x86_64')
-url="https://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('cf56692e12b2e034675d4c15a8822836b2fcf93d584948e338d263f5a7207edf4599cc72bfb940427146f5f75e7239207cf54f5ed07dd5b6119f68c445725a2d'
-'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: weechat/repos/community-x86_64/PKGBUILD (from rev 510840, 
weechat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-16 01:14:53 UTC (rev 510841)
@@ -0,0 +1,39 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=2.6
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('x86_64')
+url="https://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoctor' 'cmake' 'aspell' 'guile2.0' 'lua' 'perl' 'python' 
'ruby' 'tcl')
+optdepends=('aspell: spellchecker support'
+'guile2.0: support for guile scripts'
+'lua: support for lua scripts'
+'perl: support for perl scripts'
+'python: support for perl scripts'
+'ruby: support for ruby scripts'
+'tcl: support for tcl scripts')
+source=("https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('cf56692e12b2e034675d4c15a8822836b2fcf93d584948e338d263f5a7207edf4599cc72bfb940427146f5f75e7239207cf54f5ed07dd5b6119f68c445725a2d'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) 
+
+build() {
+  mkdir -p build
+  cd build
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2019-09-15 Thread Anatol Pomozov via arch-commits
Date: Monday, September 16, 2019 @ 00:05:12
  Author: anatolik
Revision: 362930

archrelease: copy trunk to testing-x86_64

Added:
  fuse3/repos/testing-x86_64/
  fuse3/repos/testing-x86_64/PKGBUILD
(from rev 362929, fuse3/trunk/PKGBUILD)

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

Copied: fuse3/repos/testing-x86_64/PKGBUILD (from rev 362929, 
fuse3/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-16 00:05:12 UTC (rev 362930)
@@ -0,0 +1,48 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Gundersen 
+# Contributor: Mark Rosenstand 
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.6.2
+pkgrel=2
+arch=('x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config' 'meson' 'udev')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc})
+sha1sums=('2bdef7a3f1f9e63fed87559c6e77d27e5f2c2e0c'
+  'SKIP')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

+
+build() {
+  cd fuse-$pkgver
+
+  rm -rf build
+  meson --prefix=/usr --sbindir=bin -D examples=false . build
+  cd build
+  ninja
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+
+  install -Dm644 fuse-${pkgver}/util/fuse.conf ${pkgdir}/etc/fuse.conf
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
+  depends=('fuse-common' 'glibc')
+
+  cd fuse-$pkgver/build
+
+  DESTDIR=${pkgdir} ninja install
+
+  rm -r ${pkgdir}/etc/init.d
+  rm -r ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+}


[arch-commits] Commit in fuse3/trunk (PKGBUILD fuse.conf)

2019-09-15 Thread Anatol Pomozov via arch-commits
Date: Monday, September 16, 2019 @ 00:04:33
  Author: anatolik
Revision: 362929

upgpkg: fuse3 3.6.2-2

FS#61261: put version-specific mount binaries back to fuse2/fuse3

Modified:
  fuse3/trunk/PKGBUILD
Deleted:
  fuse3/trunk/fuse.conf

---+
 PKGBUILD  |   39 +++
 fuse.conf |9 -
 2 files changed, 7 insertions(+), 41 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-16 00:03:36 UTC (rev 362928)
+++ PKGBUILD2019-09-16 00:04:33 UTC (rev 362929)
@@ -5,17 +5,15 @@
 pkgbase=fuse3
 pkgname=(fuse-common fuse3)
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://github.com/libfuse/libfuse'
 license=('GPL2')
 makedepends=('pkg-config' 'meson' 'udev')
 options=(!emptydirs)
-source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
-   'fuse.conf')
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc})
 sha1sums=('2bdef7a3f1f9e63fed87559c6e77d27e5f2c2e0c'
-  'SKIP'
-  '3b42e37a741d4651099225987dc40e7f02a716ad')
+  'SKIP')
 validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

 
 build() {
@@ -22,7 +20,7 @@
   cd fuse-$pkgver
 
   rm -rf build
-  meson --prefix=/usr --sbindir=bin . build
+  meson --prefix=/usr --sbindir=bin -D examples=false . build
   cd build
   ninja
 }
@@ -30,44 +28,21 @@
 package_fuse-common() {
   pkgdesc="Common files for fuse2/3 packages"
   backup=(etc/fuse.conf)
-  depends=(glibc)
 
-  cd fuse-$pkgver/build
-  DESTDIR=${pkgdir} ninja install
-
-  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
-
-  # static device nodes are handled by udev
-  rm -r ${pkgdir}/dev
-
-  # Remove init script in wrong path
-  # Don't add our own for now, as fusectl fs oopses on 2.6.18
-  rm -r ${pkgdir}/etc/init.d
-
-  # part of fuse3 package
-  rm -r 
${pkgdir}/usr/{bin/fusermount3,include,lib/{pkgconfig,libfuse3.so*},share/man/man1/fusermount3.1}
-
-  mv ${pkgdir}/usr/bin/mount.fuse3 ${pkgdir}/usr/bin/mount.fuse
+  install -Dm644 fuse-${pkgver}/util/fuse.conf ${pkgdir}/etc/fuse.conf
 }
 
 package_fuse3() {
   pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
-  depends=('fuse-common')
+  depends=('fuse-common' 'glibc')
 
   cd fuse-$pkgver/build
 
   DESTDIR=${pkgdir} ninja install
 
-  # Remove init script in wrong path
-  # Don't add our own for now, as fusectl fs oopses on 2.6.18
   rm -r ${pkgdir}/etc/init.d
+  rm -r ${pkgdir}/etc/fuse.conf
 
-  rm ${pkgdir}/etc/fuse.conf
-
   # static device nodes are handled by udev
   rm -r ${pkgdir}/dev
-
-  # part of fuse-common package
-  rm -r ${pkgdir}/usr/lib/udev/rules.d
-  rm ${pkgdir}/usr/share/man/man8/mount.fuse3.8 ${pkgdir}/usr/bin/mount.fuse3
 }

Deleted: fuse.conf
===
--- fuse.conf   2019-09-16 00:03:36 UTC (rev 362928)
+++ fuse.conf   2019-09-16 00:04:33 UTC (rev 362929)
@@ -1,9 +0,0 @@
-# Set the maximum number of FUSE mounts allowed to non-root users.
-# The default is 1000.
-#
-#mount_max = 1000
-
-# Allow non-root users to specify the 'allow_other' or 'allow_root'
-# mount options.
-#
-#user_allow_other


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

2019-09-15 Thread Anatol Pomozov via arch-commits
Date: Monday, September 16, 2019 @ 00:02:59
  Author: anatolik
Revision: 362927

upgpkg: fuse2 2.9.9-2

FS#61261: put version-specific mount binaries back to fuse2/fuse3

Modified:
  fuse2/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:28:47 UTC (rev 362926)
+++ PKGBUILD2019-09-16 00:02:59 UTC (rev 362927)
@@ -4,7 +4,7 @@
 
 pkgname=fuse2
 pkgver=2.9.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
 arch=('x86_64')
 url='https://github.com/libfuse/libfuse'
@@ -37,12 +37,6 @@
   # Don't add our own for now, as fusectl fs oopses on 2.6.18
   rm -r ${pkgdir}/etc/init.d
 
-  # remove udev rules (is in the udev package}
-  rm -rf ${pkgdir}/etc/udev
-
   # static device nodes are handled by udev
   rm -r ${pkgdir}/dev
-
-  # part of fuse-common package
-  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8 ${pkgdir}/usr/bin/mount.fuse
 }


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

2019-09-15 Thread Anatol Pomozov via arch-commits
Date: Monday, September 16, 2019 @ 00:03:36
  Author: anatolik
Revision: 362928

archrelease: copy trunk to testing-x86_64

Added:
  fuse2/repos/testing-x86_64/
  fuse2/repos/testing-x86_64/PKGBUILD
(from rev 362927, fuse2/trunk/PKGBUILD)

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

Copied: fuse2/repos/testing-x86_64/PKGBUILD (from rev 362927, 
fuse2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-16 00:03:36 UTC (rev 362928)
@@ -0,0 +1,42 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Gundersen 
+# Contributor: Mark Rosenstand 
+
+pkgname=fuse2
+pkgver=2.9.9
+pkgrel=2
+pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
+arch=('x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+provides=(fuse=$pkgver) # TODO: remove it once all packages start to use 
'fuse2' name
+replaces=('fuse')
+conflicts=('fuse')
+depends=('glibc' 'fuse-common')
+makedepends=('pkg-config')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc})
+sha1sums=('943ba651b14bc4a3c6fd959ed4b8c04f4a59032d'
+  'SKIP')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

+
+build() {
+  cd fuse-$pkgver
+
+  export MOUNT_FUSE_PATH=/usr/bin
+  ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util 
--disable-example
+  make
+}
+
+package() {
+  cd fuse-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+}


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

2019-09-15 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, September 15, 2019 @ 23:58:00
  Author: yan12125
Revision: 510839

archrelease: copy trunk to community-any

Added:
  python-nose-random/repos/community-any/PKGBUILD
(from rev 510838, python-nose-random/trunk/PKGBUILD)
Deleted:
  python-nose-random/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:57:44 UTC (rev 510838)
+++ PKGBUILD2019-09-15 23:58:00 UTC (rev 510839)
@@ -1,31 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Guillaume Horel 
-
-pkgname=python-nose-random
-_pkgname=nose-random
-pkgver=1.0.0
-pkgrel=2
-pkgdesc='Nose plugin to facilitate randomized unit testing'
-arch=(any)
-url='https://github.com/ZoomerAnalytics/nose-random'
-license=(MIT)
-depends=(python-nose)
-makedepends=(python-setuptools)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/ZoomerAnalytics/nose-random/archive/$pkgver.tar.gz;)
-sha256sums=('528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148')
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-  nosetests -v examples
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-nose-random/repos/community-any/PKGBUILD (from rev 510838, 
python-nose-random/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:58:00 UTC (rev 510839)
@@ -0,0 +1,26 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Guillaume Horel 
+
+pkgname=python-nose-random
+_pkgname=nose-random
+pkgver=1.0.0
+pkgrel=3
+pkgdesc='Nose plugin to facilitate randomized unit testing'
+arch=(any)
+url='https://github.com/xlwings/nose-random'
+license=(MIT)
+depends=(python-nose)
+makedepends=(python-setuptools)
+source=("https://github.com/xlwings/nose-random/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148')
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 23:57:44
  Author: eschwartz
Revision: 510838

archrelease: copy trunk to community-x86_64

Added:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
(from rev 510836, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
  keybase/repos/community-x86_64/PKGBUILD
(from rev 510836, keybase/trunk/PKGBUILD)
  keybase/repos/community-x86_64/keybase-gui
(from rev 510836, keybase/trunk/keybase-gui)
Deleted:
  keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch
  keybase/repos/community-x86_64/PKGBUILD
  keybase/repos/community-x86_64/keybase-gui

+
 0001-Don-t-use-electron-to-build.patch |  134 -
 PKGBUILD   |  238 +++
 keybase-gui|   22 +-
 3 files changed, 197 insertions(+), 197 deletions(-)

Deleted: 0001-Don-t-use-electron-to-build.patch
===
--- 0001-Don-t-use-electron-to-build.patch  2019-09-15 23:57:42 UTC (rev 
510837)
+++ 0001-Don-t-use-electron-to-build.patch  2019-09-15 23:57:44 UTC (rev 
510838)
@@ -1,67 +0,0 @@
-From 9a2bbdb8c571bf09fcc5143a8ec7f50e8a30819a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 21 Jun 2018 05:00:37 -0400
-Subject: [PATCH] Don't use electron to build
-

- shared/desktop/package.desktop.tsx   | 4 ++--
- shared/desktop/yarn-helper/index.tsx | 2 --
- shared/package.json  | 1 -
- 3 files changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
-index d6e3297c63..343424dbac 100644
 a/shared/desktop/package.desktop.tsx
-+++ b/shared/desktop/package.desktop.tsx
-@@ -89,7 +89,7 @@ function main() {
-   // use the same version as the currently-installed electron
-   console.log('Finding electron version')
-   try {
--packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
-+packagerOpts.electronVersion = 'unused string'
- console.log('Found electron version:', packagerOpts.electronVersion)
-   } catch (err) {
- console.log("Couldn't parse yarn list to find electron:", err)
-@@ -137,7 +137,7 @@ function startPack() {
- .catch(postPackError)
- })
-   })
--} else {
-+} else if (false) {
-   pack(platform, arch)
- .then(postPack(platform, arch))
- .catch(postPackError)
-diff --git a/shared/desktop/yarn-helper/index.tsx 
b/shared/desktop/yarn-helper/index.tsx
-index 50b2cdc4f7..3cea627bff 100644
 a/shared/desktop/yarn-helper/index.tsx
-+++ b/shared/desktop/yarn-helper/index.tsx
-@@ -1,6 +1,5 @@
- // Helper for cross platform yarn run script commands
- import buildCommands from './build'
--import electronComands from './electron'
- import fontCommands from './font'
- import prettierCommands from './prettier'
- import {execSync} from 'child_process'
-@@ -12,7 +11,6 @@ const [, , command, ...rest] = process.argv
- const commands = {
-   ...buildCommands,
-   ...fontCommands,
--  ...electronComands,
-   ...prettierCommands,
-   help: {
- code: () => {
-diff --git a/shared/package.json b/shared/package.json
-index 82228ec398..d9a502f57d 100644
 a/shared/package.json
-+++ b/shared/package.json
-@@ -243,7 +243,6 @@
- "cross-env": "5.2.0",
- "css-loader": "2.1.0",
- "del": "3.0.0",
--"electron": "5.0.7",
- "electron-packager": "13.0.1",
- "eslint": "6.0.1",
- "eslint-config-standard": "12.0.0",
--- 
-2.22.1
-

Copied: keybase/repos/community-x86_64/0001-Don-t-use-electron-to-build.patch 
(from rev 510836, keybase/trunk/0001-Don-t-use-electron-to-build.patch)
===
--- 0001-Don-t-use-electron-to-build.patch  (rev 0)
+++ 0001-Don-t-use-electron-to-build.patch  2019-09-15 23:57:44 UTC (rev 
510838)
@@ -0,0 +1,67 @@
+From 9a2bbdb8c571bf09fcc5143a8ec7f50e8a30819a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Thu, 21 Jun 2018 05:00:37 -0400
+Subject: [PATCH] Don't use electron to build
+
+---
+ shared/desktop/package.desktop.tsx   | 4 ++--
+ shared/desktop/yarn-helper/index.tsx | 2 --
+ shared/package.json  | 1 -
+ 3 files changed, 2 insertions(+), 5 deletions(-)
+
+diff --git a/shared/desktop/package.desktop.tsx 
b/shared/desktop/package.desktop.tsx
+index d6e3297c63..343424dbac 100644
+--- a/shared/desktop/package.desktop.tsx
 b/shared/desktop/package.desktop.tsx
+@@ -89,7 +89,7 @@ function main() {
+   // use the same version as the currently-installed electron
+   console.log('Finding electron version')
+   try {
+-packagerOpts.electronVersion = 
require('../package.json').devDependencies.electron
++packagerOpts.electronVersion = 'unused string'
+ console.log('Found electron version:', 

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

2019-09-15 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, September 15, 2019 @ 23:57:42
  Author: yan12125
Revision: 510837

upgpkg: python-nose-random 1.0.0-3

* Update homepage and source URLs; upstream project has been transferred to a
  different GitHub organization.
* Disable check(). See details below.

`examples/tests.py` is more like a demonstration rather than a unit test
suite. `failling_test()` fails, but with a small probability (5%), so I
didn't notice that.

There are more issues. When a test fails, another exception occurs if the
interpreter is Python 3:

AttributeError: 'AssertionError' object has no attribute 'message'

This is because PEP 352 [1] removed the message attribute.

As python-nose is dead [2], and will be broken as of Python 3.10 as it
uses imp [3], I will not put efforts into fixing python-nose-random. In
the future, I will ask if jsondiff can switch to pytest or nose2.

[1] https://www.python.org/dev/peps/pep-0352/
[2] https://github.com/nose-devs/nose/issues/1092
[3] https://www.python.org/dev/peps/pep-0594/

Modified:
  python-nose-random/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:57:23 UTC (rev 510836)
+++ PKGBUILD2019-09-15 23:57:42 UTC (rev 510837)
@@ -4,14 +4,14 @@
 pkgname=python-nose-random
 _pkgname=nose-random
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Nose plugin to facilitate randomized unit testing'
 arch=(any)
-url='https://github.com/ZoomerAnalytics/nose-random'
+url='https://github.com/xlwings/nose-random'
 license=(MIT)
 depends=(python-nose)
 makedepends=(python-setuptools)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/ZoomerAnalytics/nose-random/archive/$pkgver.tar.gz;)
+source=("https://github.com/xlwings/nose-random/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 sha256sums=('528b1c9396cfa415741afaad60ecde695a657c9364dc01240050c747192f5148')
 
 build() {
@@ -19,11 +19,6 @@
   python setup.py build
 }
 
-check() {
-  cd $_pkgname-$pkgver
-  nosetests -v examples
-}
-
 package() {
   cd $_pkgname-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build


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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 23:57:23
  Author: eschwartz
Revision: 510836

upgpkg: keybase 4.4.2-1

upstream release

Modified:
  keybase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:31:27 UTC (rev 510835)
+++ PKGBUILD2019-09-15 23:57:23 UTC (rev 510836)
@@ -5,7 +5,7 @@
 pkgbase=keybase
 pkgname=('keybase' 'kbfs' 'keybase-gui')
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=4.4.0
+pkgver=4.4.2
 pkgrel=1
 arch=('x86_64')
 url='https://keybase.io/'
@@ -15,11 +15,11 @@
 
source=("https://github.com/keybase/client/releases/download/v${pkgver}/${pkgbase}-v${pkgver}.tar.xz"{,.sig}
 "keybase-gui"
 "0001-Don-t-use-electron-to-build.patch")
-sha512sums=('7f1457e952bf859577e9d21bba47a8ef917cd650c93d8885ec8230e02fed3de084ef17ee589b849b5523a5e84d47bbc544313458023ec8c6955d52fe95c1fced'
+sha512sums=('fccde8b8d2ee2cfe404f86f8314accee26afe5941833e2f1c5af5d0a0c66cbd475df9ce6a74ca1f0bba4bea3dffc64cd865156ef11a012797eaebc43eef9abaf'
 'SKIP'
 
'4dcb3f4119959e2b203528a9ed637bf8b07b85964c632a8b2456aa1e2f29fada383a9bc2af8abbb05fcf6b22c43723ce6d08bea8187d61fa6581d15fefae850b'
 
'747f87b6a399375331acb86d6a1beddf83496cab8a598aaa54e4fe7a096a8964b3cbd757bb6924b286a16cd68b9f081f917233c9ff2b984a1f92ef85aa9dd0bd')
-b2sums=('0025a247f6ceaea9d67e43f727de3e9597fc0434d0368312ec83421e080031ec30060f69a0e1d9e22cee86c91f444c797585042596dc30b237b0e2df5a246320'
+b2sums=('88f44103e4193b31f5c1842bbc6c01d92e8f681731f878f0db3b0cf8997fce074689fab66888bd262affe0cc62c191255d946b292db36586794e37be6f855cb6'
 'SKIP'
 
'90aab71ef3b5db0c8ec81967604f43e3532be5f66ce7d9af1bd5204c1fde2062ef356909c03d237a63de93fa3cb045b9c31c3956cbecbea711602804e9d26efd'
 
'b20b444b58cc78c2960cc31cd070afae6b73d59e77afa76ab83167befd07b6ca91bdb1465d2d898ac61127c77fdbb708f48c591d053830883fbbaba660328de4')


[arch-commits] Commit in appstream-generator/repos/community-x86_64 (2 files)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:09:13
  Author: wild
Revision: 510832

archrelease: copy trunk to community-x86_64

Added:
  appstream-generator/repos/community-x86_64/PKGBUILD
(from rev 510831, appstream-generator/trunk/PKGBUILD)
Deleted:
  appstream-generator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:09:04 UTC (rev 510831)
+++ PKGBUILD2019-09-15 23:09:13 UTC (rev 510832)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.7.7
-pkgrel=3
-pkgdesc="A fast AppStream metadata generator"
-arch=(x86_64)
-url="https://github.com/ximion/appstream-generator;
-license=(GPL3)
-depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
-makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;)
-sha256sums=('bf3b2996897f12f817ce8189e64b7dc9e79acc3e749f7f5b292e024cde511dd1')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver -Ddownload-js=false --prefix=/usr
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: appstream-generator/repos/community-x86_64/PKGBUILD (from rev 510831, 
appstream-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:09:13 UTC (rev 510832)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.7.7
+pkgrel=4
+pkgdesc="A fast AppStream metadata generator"
+arch=(x86_64)
+url="https://github.com/ximion/appstream-generator;
+license=(GPL3)
+depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
+makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;
+
Fix-build-with-latest-AppStream.patch::"https://github.com/ximion/appstream-generator/commit/aef1bea05fb0560e2aa4e4bdd1100ec006168503.patch;)
+sha256sums=('bf3b2996897f12f817ce8189e64b7dc9e79acc3e749f7f5b292e024cde511dd1'
+'0ca4ee0a398f306923c999846e9495e5f2340a36321138b06b62ba2feb976c39')
+
+prepare() {
+  mkdir -p build
+
+  # Needed to fix compilation with the latest AppStream 
(https://github.com/ximion/appstream-generator/commit/aef1bea05fb0560e2aa4e4bdd1100ec006168503)
+  cd $pkgname-$pkgver
+  patch -p1 < ../Fix-build-with-latest-AppStream.patch
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver -Ddownload-js=false --prefix=/usr
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:09:04
  Author: wild
Revision: 510831

upgpkg: appstream-generator 0.7.7-4

Rebuilt against new ldc, and applied compilation fixes

Modified:
  appstream-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:08:18 UTC (rev 510830)
+++ PKGBUILD2019-09-15 23:09:04 UTC (rev 510831)
@@ -2,7 +2,7 @@
 
 pkgname=appstream-generator
 pkgver=0.7.7
-pkgrel=3
+pkgrel=4
 pkgdesc="A fast AppStream metadata generator"
 arch=(x86_64)
 url="https://github.com/ximion/appstream-generator;
@@ -9,11 +9,17 @@
 license=(GPL3)
 depends=(appstream libarchive librsvg lmdb optipng d-stdx-allocator glibd 
d-containers)
 makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;)
-sha256sums=('bf3b2996897f12f817ce8189e64b7dc9e79acc3e749f7f5b292e024cde511dd1')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ximion/appstream-generator/archive/v$pkgver.tar.gz;
+
Fix-build-with-latest-AppStream.patch::"https://github.com/ximion/appstream-generator/commit/aef1bea05fb0560e2aa4e4bdd1100ec006168503.patch;)
+sha256sums=('bf3b2996897f12f817ce8189e64b7dc9e79acc3e749f7f5b292e024cde511dd1'
+'0ca4ee0a398f306923c999846e9495e5f2340a36321138b06b62ba2feb976c39')
 
 prepare() {
   mkdir -p build
+
+  # Needed to fix compilation with the latest AppStream 
(https://github.com/ximion/appstream-generator/commit/aef1bea05fb0560e2aa4e4bdd1100ec006168503)
+  cd $pkgname-$pkgver
+  patch -p1 < ../Fix-build-with-latest-AppStream.patch
 }
 
 build() {


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:07:51
  Author: wild
Revision: 510827

upgpkg: vibe-d 0.8.5-4

Rebuilt against new ldc

Modified:
  vibe-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:07:36 UTC (rev 510826)
+++ PKGBUILD2019-09-15 23:07:51 UTC (rev 510827)
@@ -3,7 +3,7 @@
 pkgname=vibe-d
 _pkgname=vibe.d
 pkgver=0.8.5
-pkgrel=3
+pkgrel=4
 pkgdesc='High-performance asynchronous I/O, concurrency and web application 
toolkit'
 arch=('x86_64')
 url='https://vibed.org'


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:08:12
  Author: wild
Revision: 510829

upgpkg: glibd 2.1.0-4

Rebuilt against new ldc

Modified:
  glibd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:07:57 UTC (rev 510828)
+++ PKGBUILD2019-09-15 23:08:12 UTC (rev 510829)
@@ -4,7 +4,7 @@
 pkgname=glibd
 _pkgname=GlibD
 pkgver=2.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc='D bindings for the GLib C Utility Library'
 arch=('x86_64')
 url='https://github.com/gtkd-developers/GlibD'


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:07:57
  Author: wild
Revision: 510828

archrelease: copy trunk to community-x86_64

Added:
  vibe-d/repos/community-x86_64/PKGBUILD
(from rev 510827, vibe-d/trunk/PKGBUILD)
Deleted:
  vibe-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:07:51 UTC (rev 510827)
+++ PKGBUILD2019-09-15 23:07:57 UTC (rev 510828)
@@ -1,48 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=vibe-d
-_pkgname=vibe.d
-pkgver=0.8.5
-pkgrel=3
-pkgdesc='High-performance asynchronous I/O, concurrency and web application 
toolkit'
-arch=('x86_64')
-url='https://vibed.org'
-license=('MIT')
-depends=('liblphobos' 'openssl' 'libevent' 'zlib' 'diet-ng' 'd-stdx-allocator')
-makedepends=('meson' 'ldc' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/vibe-d/vibe.d/archive/v$pkgver.tar.gz;
-
"fix-meson.patch::https://github.com/vibe-d/vibe.d/pull/2302/commits/b2e5f979b52ed8ae1d044c37d556fae70882917c.patch;)
-sha512sums=('de4b14087e0df0de8ccad272481987d956487e8d18ab7142c3f25e54c41820e3f24aa6307416b67ff805240316c6dedc69f89fddf377307f0d5f35b9481cecdf'
-
'33b987cd59bda57f032b2b29535c83552329051271d3b0c23bcae23da1a1b8f352055d94a9663371c01d53bbf463958497780d3c8563f6c7ab030ccb7f06081f')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  patch -p1 < "$srcdir"/fix-meson.patch
-}
-
-build() {
-  mkdir -p $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$pkgver/build
-
-  ninja test
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  install -Dm 644 ../LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: vibe-d/repos/community-x86_64/PKGBUILD (from rev 510827, 
vibe-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:07:57 UTC (rev 510828)
@@ -0,0 +1,48 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=vibe-d
+_pkgname=vibe.d
+pkgver=0.8.5
+pkgrel=4
+pkgdesc='High-performance asynchronous I/O, concurrency and web application 
toolkit'
+arch=('x86_64')
+url='https://vibed.org'
+license=('MIT')
+depends=('liblphobos' 'openssl' 'libevent' 'zlib' 'diet-ng' 'd-stdx-allocator')
+makedepends=('meson' 'ldc' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vibe-d/vibe.d/archive/v$pkgver.tar.gz;
+
"fix-meson.patch::https://github.com/vibe-d/vibe.d/pull/2302/commits/b2e5f979b52ed8ae1d044c37d556fae70882917c.patch;)
+sha512sums=('de4b14087e0df0de8ccad272481987d956487e8d18ab7142c3f25e54c41820e3f24aa6307416b67ff805240316c6dedc69f89fddf377307f0d5f35b9481cecdf'
+
'33b987cd59bda57f032b2b29535c83552329051271d3b0c23bcae23da1a1b8f352055d94a9663371c01d53bbf463958497780d3c8563f6c7ab030ccb7f06081f')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  patch -p1 < "$srcdir"/fix-meson.patch
+}
+
+build() {
+  mkdir -p $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 ../LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:08:18
  Author: wild
Revision: 510830

archrelease: copy trunk to community-x86_64

Added:
  glibd/repos/community-x86_64/PKGBUILD
(from rev 510829, glibd/trunk/PKGBUILD)
Deleted:
  glibd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:08:12 UTC (rev 510829)
+++ PKGBUILD2019-09-15 23:08:18 UTC (rev 510830)
@@ -1,32 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Antonio Rojas 
-
-pkgname=glibd
-_pkgname=GlibD
-pkgver=2.1.0
-pkgrel=3
-pkgdesc='D bindings for the GLib C Utility Library'
-arch=('x86_64')
-url='https://github.com/gtkd-developers/GlibD'
-license=('LGPL3')
-depends=('glib2' 'liblphobos')
-makedepends=('meson' 'ldc' 'gobject-introspection' 'gir-to-d')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('2e00933e666f213ef5e38d3df5695966a76cdac067603e39d09f7ac8a5a4cab48ea498044de1d9daa2920609b7f8d6d5c090a666a6507a563bb896be2cc8c32f')
-build() {
-  mkdir -p $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  # Force build with LDC
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: glibd/repos/community-x86_64/PKGBUILD (from rev 510829, 
glibd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:08:18 UTC (rev 510830)
@@ -0,0 +1,32 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Antonio Rojas 
+
+pkgname=glibd
+_pkgname=GlibD
+pkgver=2.1.0
+pkgrel=4
+pkgdesc='D bindings for the GLib C Utility Library'
+arch=('x86_64')
+url='https://github.com/gtkd-developers/GlibD'
+license=('LGPL3')
+depends=('glib2' 'liblphobos')
+makedepends=('meson' 'ldc' 'gobject-introspection' 'gir-to-d')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('2e00933e666f213ef5e38d3df5695966a76cdac067603e39d09f7ac8a5a4cab48ea498044de1d9daa2920609b7f8d6d5c090a666a6507a563bb896be2cc8c32f')
+build() {
+  mkdir -p $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  # Force build with LDC
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:07:30
  Author: wild
Revision: 510825

upgpkg: d-containers 0.8.0alpha.16-2

Rebuilt against new ldc

Modified:
  d-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:06:57 UTC (rev 510824)
+++ PKGBUILD2019-09-15 23:07:30 UTC (rev 510825)
@@ -4,7 +4,7 @@
 _pkgname=containers
 _pkgver=0.8.0-alpha.16
 pkgver=${_pkgver/-/}
-pkgrel=1
+pkgrel=2
 pkgdesc='Containers for D backed by std.experimental.allocator'
 arch=('x86_64')
 url='https://github.com/dlang-community/containers'
@@ -12,7 +12,7 @@
 depends=('liblphobos')
 makedepends=('meson' 'ldc' 'd-stdx-allocator')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$_pkgver.tar.gz")
-sha512sums=('15615efe538396130d07d8ec93f552945908edd58a3bb4bed27c22d9c42b4d9fc8c9f665aac946994e53a2f04f1bb59b3dc6546151a0cbd45e7fd60ce9b48d87')
+sha512sums=('7e88106456a477ef188a86bbe163ec04bda473cede4f8e0082bcd0d9dd9adf9c74b4d9f948dc2340f82a257683d9d4b17bb463053c56a548d1a62c304404b065')
 
 build() {
   mkdir -p $_pkgname-$_pkgver/build


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:07:36
  Author: wild
Revision: 510826

archrelease: copy trunk to community-x86_64

Added:
  d-containers/repos/community-x86_64/PKGBUILD
(from rev 510825, d-containers/trunk/PKGBUILD)
Deleted:
  d-containers/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:07:30 UTC (rev 510825)
+++ PKGBUILD2019-09-15 23:07:36 UTC (rev 510826)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=d-containers
-_pkgname=containers
-_pkgver=0.8.0-alpha.13
-pkgver=${_pkgver/-/}
-pkgrel=2
-pkgdesc='Containers for D backed by std.experimental.allocator'
-arch=('x86_64')
-url='https://github.com/dlang-community/containers'
-license=('Boost')
-depends=('liblphobos')
-makedepends=('meson' 'ldc' 'd-stdx-allocator')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$_pkgver.tar.gz")
-sha512sums=('15615efe538396130d07d8ec93f552945908edd58a3bb4bed27c22d9c42b4d9fc8c9f665aac946994e53a2f04f1bb59b3dc6546151a0cbd45e7fd60ce9b48d87')
-
-build() {
-  mkdir -p $_pkgname-$_pkgver/build
-  cd $_pkgname-$_pkgver/build
-
-  # Force build with LDC
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$_pkgver/build
-
-  ninja test
-}
-
-package() {
-  cd $_pkgname-$_pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: d-containers/repos/community-x86_64/PKGBUILD (from rev 510825, 
d-containers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:07:36 UTC (rev 510826)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=d-containers
+_pkgname=containers
+_pkgver=0.8.0-alpha.16
+pkgver=${_pkgver/-/}
+pkgrel=2
+pkgdesc='Containers for D backed by std.experimental.allocator'
+arch=('x86_64')
+url='https://github.com/dlang-community/containers'
+license=('Boost')
+depends=('liblphobos')
+makedepends=('meson' 'ldc' 'd-stdx-allocator')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$_pkgver.tar.gz")
+sha512sums=('7e88106456a477ef188a86bbe163ec04bda473cede4f8e0082bcd0d9dd9adf9c74b4d9f948dc2340f82a257683d9d4b17bb463053c56a548d1a62c304404b065')
+
+build() {
+  mkdir -p $_pkgname-$_pkgver/build
+  cd $_pkgname-$_pkgver/build
+
+  # Force build with LDC
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$_pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd $_pkgname-$_pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


[arch-commits] Commit in gir-to-d/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:06:57
  Author: wild
Revision: 510824

archrelease: copy trunk to community-x86_64

Added:
  gir-to-d/repos/community-x86_64/PKGBUILD
(from rev 510823, gir-to-d/trunk/PKGBUILD)
Deleted:
  gir-to-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:06:51 UTC (rev 510823)
+++ PKGBUILD2019-09-15 23:06:57 UTC (rev 510824)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gir-to-d
-pkgver=0.19.0
-pkgrel=3
-pkgdesc='Create D bindings from GObject introspection files'
-arch=('x86_64')
-url='https://github.com/gtkd-developers/gir-to-d'
-license=('LGPL3')
-depends=('gcc-libs' 'liblphobos')
-makedepends=('meson' 'ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c9c4bcc7fb7b06435b3c8b458e40547874992879366dc3e1604491a724bdfcb1d5d4ae5c013c59e77df750af9e07ebf117902828b3dcebaaffc3a9507c434076')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gir-to-d/repos/community-x86_64/PKGBUILD (from rev 510823, 
gir-to-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:06:57 UTC (rev 510824)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gir-to-d
+pkgver=0.20.0
+pkgrel=1
+pkgdesc='Create D bindings from GObject introspection files'
+arch=('x86_64')
+url='https://github.com/gtkd-developers/gir-to-d'
+license=('LGPL3')
+depends=('gcc-libs' 'liblphobos')
+makedepends=('meson' 'ldc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('27a8c7cf0ec1556e7361a2a704e150eae59b360eb5717b203f5604a5636eadeebd7b8af7701d2c96d20f503e27465281ae1734db1ad1f2d34d0514c2fc0ebc4e')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in gir-to-d/trunk (PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:06:51
  Author: wild
Revision: 510823

upgpkg: gir-to-d 0.20.0-1

Updated to 0.20.0

Modified:
  gir-to-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:06:15 UTC (rev 510822)
+++ PKGBUILD2019-09-15 23:06:51 UTC (rev 510823)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gir-to-d
-pkgver=0.19.0
-pkgrel=3
+pkgver=0.20.0
+pkgrel=1
 pkgdesc='Create D bindings from GObject introspection files'
 arch=('x86_64')
 url='https://github.com/gtkd-developers/gir-to-d'
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'liblphobos')
 makedepends=('meson' 'ldc')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c9c4bcc7fb7b06435b3c8b458e40547874992879366dc3e1604491a724bdfcb1d5d4ae5c013c59e77df750af9e07ebf117902828b3dcebaaffc3a9507c434076')
+sha512sums=('27a8c7cf0ec1556e7361a2a704e150eae59b360eb5717b203f5604a5636eadeebd7b8af7701d2c96d20f503e27465281ae1734db1ad1f2d34d0514c2fc0ebc4e')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


[arch-commits] Commit in d-stdx-allocator/trunk (PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:05:41
  Author: wild
Revision: 510819

upgpkg: d-stdx-allocator 3.0.2-6

Rebuilt against new ldc

Modified:
  d-stdx-allocator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:05:17 UTC (rev 510818)
+++ PKGBUILD2019-09-15 23:05:41 UTC (rev 510819)
@@ -3,7 +3,7 @@
 pkgname=d-stdx-allocator
 _pkgname=stdx-allocator
 pkgver=3.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Extracted std.experimental.allocator'
 arch=('x86_64')
 url='https://github.com/dlang-community/stdx-allocator'


[arch-commits] Commit in d-stdx-allocator/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:05:47
  Author: wild
Revision: 510820

archrelease: copy trunk to community-x86_64

Added:
  d-stdx-allocator/repos/community-x86_64/PKGBUILD
(from rev 510819, d-stdx-allocator/trunk/PKGBUILD)
Deleted:
  d-stdx-allocator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:05:41 UTC (rev 510819)
+++ PKGBUILD2019-09-15 23:05:47 UTC (rev 510820)
@@ -1,46 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=d-stdx-allocator
-_pkgname=stdx-allocator
-pkgver=3.0.2
-pkgrel=4
-pkgdesc='Extracted std.experimental.allocator'
-arch=('x86_64')
-url='https://github.com/dlang-community/stdx-allocator'
-license=('Boost')
-depends=('liblphobos' 'd-mir-core')
-makedepends=('meson' 'ldc')
-source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-
"add-dependency.patch::https://github.com/dlang-community/stdx-allocator/commit/676b4c782ba9c484864075508c27ef44399396f7.patch;)
-sha512sums=('f4dc887225926cc4530314976e5e236c696a54c6e2ccdb48271b97b0c0a70882b70e92768c94c2932ccc9bd2282c3e953b27cf72088904458f7fc15234dca4be'
-
'13d52d3bb4d90e7b5fb3163f1761c20a57a59be1306ac665fea0eb9331864821d77e790f8ca6027b1936a6930085d2ccca7a1d49d4bd139a939e2c58f03bd47a')
-
-prepare() {
-  cd "$srcdir"/$_pkgname-$pkgver
-
-  patch -p1 < "$srcdir"/add-dependency.patch
-}
-
-build() {
-  mkdir "$srcdir"/$_pkgname-$pkgver/build
-  cd "$srcdir"/$_pkgname-$pkgver/build
-
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd "$srcdir"/$_pkgname-$pkgver/build
-
-  meson test
-}
-
-package() {
-  cd "$srcdir"/$_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}
-

Copied: d-stdx-allocator/repos/community-x86_64/PKGBUILD (from rev 510819, 
d-stdx-allocator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:05:47 UTC (rev 510820)
@@ -0,0 +1,46 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=d-stdx-allocator
+_pkgname=stdx-allocator
+pkgver=3.0.2
+pkgrel=6
+pkgdesc='Extracted std.experimental.allocator'
+arch=('x86_64')
+url='https://github.com/dlang-community/stdx-allocator'
+license=('Boost')
+depends=('liblphobos' 'd-mir-core')
+makedepends=('meson' 'ldc')
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"add-dependency.patch::https://github.com/dlang-community/stdx-allocator/commit/676b4c782ba9c484864075508c27ef44399396f7.patch;)
+sha512sums=('f4dc887225926cc4530314976e5e236c696a54c6e2ccdb48271b97b0c0a70882b70e92768c94c2932ccc9bd2282c3e953b27cf72088904458f7fc15234dca4be'
+
'13d52d3bb4d90e7b5fb3163f1761c20a57a59be1306ac665fea0eb9331864821d77e790f8ca6027b1936a6930085d2ccca7a1d49d4bd139a939e2c58f03bd47a')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  patch -p1 < ../add-dependency.patch
+}
+
+build() {
+  mkdir $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$pkgver/build
+
+  meson test
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:06:15
  Author: wild
Revision: 510822

archrelease: copy trunk to community-x86_64

Added:
  diet-ng/repos/community-x86_64/PKGBUILD
(from rev 510821, diet-ng/trunk/PKGBUILD)
Deleted:
  diet-ng/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:06:10 UTC (rev 510821)
+++ PKGBUILD2019-09-15 23:06:15 UTC (rev 510822)
@@ -1,39 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=diet-ng
-pkgver=1.5.0
-pkgrel=8
-pkgdesc='Generic compile-time template system based on an XML-like structure 
for D'
-arch=('x86_64')
-url='https://github.com/rejectedsoftware/diet-ng'
-license=('MIT')
-depends=('liblphobos')
-makedepends=('meson' 'ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('ffeedbf50c693dc4d9df04070d9528cec173e6351e542ef0ce411845b595713f071f0af7c97517af566a251f37bf43c065340ce39a9d6c0606555dd67536f961')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver/build
-
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  install -Dm 644 ../LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: diet-ng/repos/community-x86_64/PKGBUILD (from rev 510821, 
diet-ng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:06:15 UTC (rev 510822)
@@ -0,0 +1,39 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=diet-ng
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='Generic compile-time template system based on an XML-like structure 
for D'
+arch=('x86_64')
+url='https://github.com/rejectedsoftware/diet-ng'
+license=('MIT')
+depends=('liblphobos')
+makedepends=('meson' 'ldc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('e0aeef9db109e2e09891c573839a48c3de68045f536db871e699cc37966649ded751b606310c6d18523881c29eea92da2b02afb7172fb56848507d6e2c3b76fd')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 ../LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:06:10
  Author: wild
Revision: 510821

upgpkg: diet-ng 1.6.0-1

Updated to 1.6.0

Modified:
  diet-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:05:47 UTC (rev 510820)
+++ PKGBUILD2019-09-15 23:06:10 UTC (rev 510821)
@@ -1,8 +1,8 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=diet-ng
-pkgver=1.5.0
-pkgrel=8
+pkgver=1.6.0
+pkgrel=1
 pkgdesc='Generic compile-time template system based on an XML-like structure 
for D'
 arch=('x86_64')
 url='https://github.com/rejectedsoftware/diet-ng'
@@ -10,7 +10,7 @@
 depends=('liblphobos')
 makedepends=('meson' 'ldc')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('ffeedbf50c693dc4d9df04070d9528cec173e6351e542ef0ce411845b595713f071f0af7c97517af566a251f37bf43c065340ce39a9d6c0606555dd67536f961')
+sha512sums=('e0aeef9db109e2e09891c573839a48c3de68045f536db871e699cc37966649ded751b606310c6d18523881c29eea92da2b02afb7172fb56848507d6e2c3b76fd')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


[arch-commits] Commit in d-mir-core/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:05:17
  Author: wild
Revision: 510818

archrelease: copy trunk to community-x86_64

Added:
  d-mir-core/repos/community-x86_64/PKGBUILD
(from rev 510817, d-mir-core/trunk/PKGBUILD)
Deleted:
  d-mir-core/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:05:11 UTC (rev 510817)
+++ PKGBUILD2019-09-15 23:05:17 UTC (rev 510818)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=mir-core
-pkgname=d-$_pkgname
-pkgver=0.3.0
-pkgrel=2
-pkgdesc='Base software building blocks and conventions for libmir'
-arch=('x86_64')
-url='https://github.com/libmir/mir-core'
-license=('custom:BSL')
-depends=('liblphobos')
-makedepends=('meson' 'ldc')
-source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c4b4afb6f267ed6edd5ad8c6c311ec72f62791623d2eb636d6878e20415ea78ca90e02d1a4a40dd18a30b042b3f3f9b6319e0e3de629c78787fc35f0e207843d')
-
-build() {
-  mkdir $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  export DC=ldc
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$pkgver/build
-
-  meson test
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: d-mir-core/repos/community-x86_64/PKGBUILD (from rev 510817, 
d-mir-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:05:17 UTC (rev 510818)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=mir-core
+pkgname=d-$_pkgname
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Base software building blocks and conventions for libmir'
+arch=('x86_64')
+url='https://github.com/libmir/mir-core'
+license=('custom:BSL')
+depends=('liblphobos')
+makedepends=('meson' 'ldc')
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('3b006f4da74247c1ddce2df8fd4a78ad63b89b498b8192ef09c535c2855ff26f5358f492708082efa9aa03a1e3a9747aaac743395f3d785ee8ab0fd51894')
+
+build() {
+  mkdir $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export DC=ldc
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$pkgver/build
+
+  meson test
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:04:46
  Author: wild
Revision: 510815

upgpkg: mustache-d 0.1.3-15

Rebuilt against new ldc

Modified:
  mustache-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:04:08 UTC (rev 510814)
+++ PKGBUILD2019-09-15 23:04:46 UTC (rev 510815)
@@ -2,7 +2,7 @@
 
 pkgname=mustache-d
 pkgver=0.1.3
-pkgrel=14
+pkgrel=15
 pkgdesc='Moustache template engine for D'
 arch=('x86_64')
 url='https://github.com/repeatedly/mustache-d'


[arch-commits] Commit in d-mir-core/trunk (PKGBUILD)

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:05:11
  Author: wild
Revision: 510817

upgpkg: d-mir-core 1.0.1-1

Updated to 1.0.1

Modified:
  d-mir-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:04:52 UTC (rev 510816)
+++ PKGBUILD2019-09-15 23:05:11 UTC (rev 510817)
@@ -2,7 +2,7 @@
 
 _pkgname=mir-core
 pkgname=d-$_pkgname
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc='Base software building blocks and conventions for libmir'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('liblphobos')
 makedepends=('meson' 'ldc')
 source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('e17a4d68a7866e2dfdb6c4ba98c4b6326a5a12cb66a079310985321b6cef43d3d29e6903a24051851ee6f52658dc21a42b2a6fdadcd4b66cd46ba1074e8c9029')
+sha512sums=('3b006f4da74247c1ddce2df8fd4a78ad63b89b498b8192ef09c535c2855ff26f5358f492708082efa9aa03a1e3a9747aaac743395f3d785ee8ab0fd51894')
 
 build() {
   mkdir $_pkgname-$pkgver/build


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:04:52
  Author: wild
Revision: 510816

archrelease: copy trunk to community-x86_64

Added:
  mustache-d/repos/community-x86_64/PKGBUILD
(from rev 510815, mustache-d/trunk/PKGBUILD)
Deleted:
  mustache-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:04:46 UTC (rev 510815)
+++ PKGBUILD2019-09-15 23:04:52 UTC (rev 510816)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=mustache-d
-pkgver=0.1.3
-pkgrel=14
-pkgdesc='Moustache template engine for D'
-arch=('x86_64')
-url='https://github.com/repeatedly/mustache-d'
-license=('Boost')
-makedepends=('meson' 'ldc' 'liblphobos')
-source=("$pkgname-$pkgver::https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz;)
-sha512sums=('ae70cc0ad0e94729ae2a2a8a8598a7489e457406fb61534641b25d7413749d3ba977591453fab438ce752a4b51d0f91777b5c470f53d7e3884a9f70aad736ded')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  # Build with LDC
-  export DC=ldc
-
-  arch-meson ../$pkgname-$pkgver
-
-  ninja
-}
-
-package() {
-  cd build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: mustache-d/repos/community-x86_64/PKGBUILD (from rev 510815, 
mustache-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:04:52 UTC (rev 510816)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=mustache-d
+pkgver=0.1.3
+pkgrel=15
+pkgdesc='Moustache template engine for D'
+arch=('x86_64')
+url='https://github.com/repeatedly/mustache-d'
+license=('Boost')
+makedepends=('meson' 'ldc' 'liblphobos')
+source=("$pkgname-$pkgver::https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz;)
+sha512sums=('ae70cc0ad0e94729ae2a2a8a8598a7489e457406fb61534641b25d7413749d3ba977591453fab438ce752a4b51d0f91777b5c470f53d7e3884a9f70aad736ded')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  # Build with LDC
+  export DC=ldc
+
+  arch-meson ../$pkgname-$pkgver
+
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+}


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:04:08
  Author: wild
Revision: 510814

archrelease: copy trunk to community-x86_64

Added:
  dscanner/repos/community-x86_64/PKGBUILD
(from rev 510813, dscanner/trunk/PKGBUILD)
Deleted:
  dscanner/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  114 ++---
 1 file changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:04:00 UTC (rev 510813)
+++ PKGBUILD2019-09-15 23:04:08 UTC (rev 510814)
@@ -1,57 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=dscanner
-pkgver=0.8.0
-pkgrel=1
-_pkgcommit=19e9b9093a5fa33ace9ad9d3ac801a8090c18b2a
-pkgdesc="Swiss-army knife for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/D-Scanner;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
-"git+https://github.com/dlang-community/libdparse;
-"git+https://github.com/burner/inifiled;
-"git+https://github.com/economicmodeling/containers;
-"git+https://github.com/dlang-community/dsymbol;
-"git+https://github.com/economicmodeling/libddoc;
-"git+https://github.com/dlang-community/stdx-allocator;)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd "$srcdir/D-Scanner"
-
-  git submodule init
-  git config submodule.libdparse.url "$srcdir/libdparse"
-  git config submodule.inifiled.url "$srcdir/inifiled"
-  git config submodule.containers.url "$srcdir/containers"
-  git config submodule.dsymbol.url "$srcdir/dsymbol"
-  git config submodule.libddoc.url "$srcdir/libddoc"
-  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-  git submodule update
-
-  # Only LDC have -O5
-  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
-}
-
-build() {
-  cd "$srcdir/D-Scanner"
-  make ldc
-}
-
-package() {
-  # binaries
-  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
-
-  # license
-  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dscanner/repos/community-x86_64/PKGBUILD (from rev 510813, 
dscanner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:04:08 UTC (rev 510814)
@@ -0,0 +1,57 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=dscanner
+pkgver=0.8.0
+pkgrel=2
+_pkgcommit=19e9b9093a5fa33ace9ad9d3ac801a8090c18b2a
+pkgdesc="Swiss-army knife for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/D-Scanner;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
+"git+https://github.com/dlang-community/libdparse;
+"git+https://github.com/burner/inifiled;
+"git+https://github.com/economicmodeling/containers;
+"git+https://github.com/dlang-community/dsymbol;
+"git+https://github.com/economicmodeling/libddoc;
+"git+https://github.com/dlang-community/stdx-allocator;)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/D-Scanner"
+
+  git submodule init
+  git config submodule.libdparse.url "$srcdir/libdparse"
+  git config submodule.inifiled.url "$srcdir/inifiled"
+  git config submodule.containers.url "$srcdir/containers"
+  git config submodule.dsymbol.url "$srcdir/dsymbol"
+  git config submodule.libddoc.url "$srcdir/libddoc"
+  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+  git submodule update
+
+  # Only LDC have -O5
+  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
+}
+
+build() {
+  cd "$srcdir/D-Scanner"
+  make ldc
+}
+
+package() {
+  # binaries
+  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
+
+  # license
+  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:04:00
  Author: wild
Revision: 510813

upgpkg: dscanner 0.8.0-2

Rebuilt against new ldc

Modified:
  dscanner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:02:36 UTC (rev 510812)
+++ PKGBUILD2019-09-15 23:04:00 UTC (rev 510813)
@@ -3,7 +3,7 @@
 
 pkgname=dscanner
 pkgver=0.8.0
-pkgrel=1
+pkgrel=2
 _pkgcommit=19e9b9093a5fa33ace9ad9d3ac801a8090c18b2a
 pkgdesc="Swiss-army knife for D source code"
 arch=('x86_64')


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:02:36
  Author: wild
Revision: 510812

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 510811, dtools/trunk/PKGBUILD)
  dtools/repos/community-x86_64/autodetect.diff
(from rev 510811, dtools/trunk/autodetect.diff)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD
  dtools/repos/community-x86_64/autodetect.diff

-+
 PKGBUILD|  110 ++
 autodetect.diff |   94 +++---
 2 files changed, 100 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:02:29 UTC (rev 510811)
+++ PKGBUILD2019-09-15 23:02:36 UTC (rev 510812)
@@ -1,57 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-
-pkgname=dtools
-pkgver=2.087.1
-pkgrel=1
-pkgdesc='Ancilliary tools for the D programming language'
-license=('Boost')
-groups=('dlang')
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('dmd' 'libphobos')
-provides=('ddemangle' 'dustmite' 'rdmd')
-conflicts=('ddemangle' 'dustmite' 'rdmd')
-depends=('curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
-'http://www.boost.org/LICENSE_1_0.txt'
-'autodetect.diff')
-sha512sums=('af5adf9971ed818ca93f7d0e462d7d3f91920caacc77c4b26cc828ef00ee28ee2bb56574c4c7f8692853af2e2d32495e49bf1fca4956652df4452eac099b52cd'
-
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
-
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
-
-build() {
-DMD=dmd
-
-# Add $LDFLAGS and $CXXFLAGS to the compilation
-_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
-
-cd tools-$pkgver
-
-_builddate=$(date "+%b %d %Y" | tr -d '\n')
-sed -i "s/__DATE__/\"$_builddate\"/" rdmd.d
-
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd $_linkflags rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
-done
-}
-
-package() {
-cd tools-$pkgver
-
-mkdir -p $pkgdir/usr/bin
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t $pkgdir/usr/bin $pkgname-$tool
-done
-
-cd $pkgdir
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-ln -s dtools-ddemangle usr/bin/ddemangle
-
-install -Dm644 $srcdir/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 510811, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:02:36 UTC (rev 510812)
@@ -0,0 +1,53 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasunse 
+
+pkgname=dtools
+pkgver=2.088.0
+pkgrel=1
+pkgdesc='Ancilliary tools for the D programming language'
+license=('Boost')
+groups=('dlang')
+arch=('x86_64')
+url='https://www.dlang.org'
+makedepends=('dmd' 'libphobos')
+provides=('ddemangle' 'dustmite' 'rdmd')
+conflicts=('ddemangle' 'dustmite' 'rdmd')
+depends=('curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
+'https://www.boost.org/LICENSE_1_0.txt'
+'autodetect.diff')
+sha512sums=('767fa0e7c66a5e1932d96c2fadc49846db623501c62a59c3679e1c76a21154a9e03fa5d4ca9acecf8ef0bcb4c7f4e252a271e9f474b34627a28a6e643b8aeb7d'
+
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
+
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
+
+build() {
+DMD=dmd
+
+# Add $LDFLAGS and $CXXFLAGS to the compilation
+_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
+
+cd tools-$pkgver
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd $_linkflags rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
+done
+}
+
+package() {
+cd tools-$pkgver
+
+mkdir -p $pkgdir/usr/bin
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t $pkgdir/usr/bin $pkgname-$tool
+done
+
+cd $pkgdir
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+ln -s dtools-ddemangle usr/bin/ddemangle
+
+ 

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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:02:29
  Author: wild
Revision: 510811

upgpkg: dtools 2.088.0-1

Updated to 2.088.0

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:01:02 UTC (rev 510810)
+++ PKGBUILD2019-09-15 23:02:29 UTC (rev 510811)
@@ -3,7 +3,7 @@
 # Contributor: Mihails Strasunse 
 
 pkgname=dtools
-pkgver=2.087.1
+pkgver=2.088.0
 pkgrel=1
 pkgdesc='Ancilliary tools for the D programming language'
 license=('Boost')
@@ -17,7 +17,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;
 'https://www.boost.org/LICENSE_1_0.txt'
 'autodetect.diff')
-sha512sums=('af5adf9971ed818ca93f7d0e462d7d3f91920caacc77c4b26cc828ef00ee28ee2bb56574c4c7f8692853af2e2d32495e49bf1fca4956652df4452eac099b52cd'
+sha512sums=('767fa0e7c66a5e1932d96c2fadc49846db623501c62a59c3679e1c76a21154a9e03fa5d4ca9acecf8ef0bcb4c7f4e252a271e9f474b34627a28a6e643b8aeb7d'
 
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
 
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
 
@@ -28,10 +28,6 @@
 _linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ 
-L=/g")
 
 cd tools-$pkgver
-
-_builddate=$(date "+%b %d %Y" | tr -d '\n')
-sed -i "s/__DATE__/\"$_builddate\"/" rdmd.d
-
 # rdmd is used to build others
 $DMD -od. -ofdtools-rdmd $_linkflags rdmd.d
 


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:00:54
  Author: wild
Revision: 510809

upgpkg: dmd 1:2.088.0-1

Updated to 2.088.0

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 23:00:13 UTC (rev 510808)
+++ PKGBUILD2019-09-15 23:00:54 UTC (rev 510809)
@@ -11,7 +11,7 @@
 pkgdesc='D programming language compiler and standard library'
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.087.1
+pkgver=2.088.0
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -27,7 +27,7 @@
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'c3c6cc865f5aa66dce4244467797b596ed0ada2bde93031350dc36713733cfc1'
+'e84460aed12c4181075316957675158e7fe66c30612df3534a3151e87c823051'
 'SKIP'
 '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
 '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
@@ -44,7 +44,9 @@
 # Add $LDFLAGS and $CXXFLAGS to the compilation
 # '-link-defaultlib-shared=false' statically links dmd to liblphobos
 sed -i "/^CXXFLAGS :=/ a $CXXFLAGS " "$srcdir"/dmd/src/posix.mak
-sed -i "/^DFLAGS=/ a override DFLAGS += -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"" "$srcdir"/dmd/src/posix.mak
+sed -i "/^DFLAGS=/ a override DFLAGS += -link-defaultlib-shared=false 
-L=\"$LDFLAGS\" -flto=full" "$srcdir"/dmd/src/posix.mak
+# Fix new incomplete build.d file
+sed -i "/\~= dflags/a flags[\"DFLAGS\"] ~= 
[\"-link-defaultlib-shared=false\", \"-L=\"$LDFLAGS\"\"];" 
"$srcdir"/dmd/src/build.d
 }
 
 build() {


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:01:02
  Author: wild
Revision: 510810

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 510809, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 510809, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
(from rev 510809, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-+
 PKGBUILD|  276 +++---
 dmd-doc.desktop |   14 +-
 dmd.conf|   10 -
 3 files changed, 151 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:00:54 UTC (rev 510809)
+++ PKGBUILD2019-09-15 23:01:02 UTC (rev 510810)
@@ -1,137 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc='D programming language compiler and standard library'
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.087.1
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('git' 'ldc' 'strip-nondeterminism')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver;
-"git+https://github.com/dlang/druntime.git#tag=v$pkgver;
-"git+https://github.com/dlang/phobos.git#tag=v$pkgver;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig;
-'dmd.conf'
-'dmd-doc.desktop')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'c3c6cc865f5aa66dce4244467797b596ed0ada2bde93031350dc36713733cfc1'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-'4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
-validpgpkeys=('AFC7DB45693D62BB472BF27BAB8FE924C2F7E724') # Martin Nowak 

-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-# We only want to extract the docs & samples, not the prebuild executables
-tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-
-# Make sure the version is not -dirty
-sed -i "s/result.status == 0/false/" "$srcdir"/dmd/config.d
-
-# Add $LDFLAGS and $CXXFLAGS to the compilation
-# '-link-defaultlib-shared=false' statically links dmd to liblphobos
-sed -i "/^CXXFLAGS :=/ a $CXXFLAGS " "$srcdir"/dmd/src/posix.mak
-sed -i "/^DFLAGS=/ a override DFLAGS += -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"" "$srcdir"/dmd/src/posix.mak
-}
-
-build() {
-cd "$srcdir"/dmd
-make -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 ENABLE_LTO=1 
HOST_DMD=ldmd2
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-# This requires object.d to compile, thus need to be after druntime is 
built
-cd "$srcdir"/dmd
-make -C docs DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
OTHER_MAN_PAGES=man/man5/dmd.conf.5
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-'dmd-docs: documentation and sample code for D'
-)
-provides=("d-compiler=$pkgver")
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd 
"$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp -r generated/docs/man/man1/* "$pkgdir"/usr/share/man/man1/
-cp -r generated/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-pkgdesc="Documentation and sample code for D programming language"
-depends=('dmd')
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-mkdir -p "$pkgdir"/usr/share/applications
-install -Dm644 "$srcdir"/dmd-doc.desktop 
"$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r samples/* "$pkgdir"/usr/share/d/samples/
-
-mkdir -p "$pkgdir"/usr/share/d/html
-cp -r 

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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:00:07
  Author: wild
Revision: 510807

upgpkg: dub 1.17.0-1

Updated to 1.17.0

Modified:
  dub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:50:05 UTC (rev 510806)
+++ PKGBUILD2019-09-15 23:00:07 UTC (rev 510807)
@@ -4,10 +4,8 @@
 # Contributor: Moritz Maxeiner 
 
 pkgname=dub
-pkgver=1.16.0
+pkgver=1.17.0
 pkgrel=1
-# Build date format is "mmm dd "
-_builddate="Jul 02 2019"
 pkgdesc="Developer package manager for D programming language"
 arch=('x86_64')
 url="https://github.com/D-Programming-Language/dub;
@@ -16,13 +14,11 @@
 makedepends=('ldc')
 depends=('liblphobos' 'curl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
-sha512sums=('e088fcdb0930439606c7575183d96cc4d743109d0d513f3606ae1ac1df41d4862aff8bfd36be90228aed4c4fc2f46528cb7a650ec6f988f146b051a10ccce177')
+sha512sums=('8907e7b66d5a5c3d6013a2073a61cdab2a9276454b9c63628b30bb787cee2a7f785bf5ee1db781bf241fe4196a792f74682872ad55bb42349ae5452ce0ffec92')
 
 build() {
cd "$pkgname-$pkgver"
 
-   sed -i "s/__DATE__/\"$_builddate\"/" source/dub/commandline.d
-
echo Generating version file...
echo "module dub.version_;" > source/dub/version_.d
echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 23:00:13
  Author: wild
Revision: 510808

archrelease: copy trunk to community-x86_64

Added:
  dub/repos/community-x86_64/PKGBUILD
(from rev 510807, dub/trunk/PKGBUILD)
Deleted:
  dub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 23:00:07 UTC (rev 510807)
+++ PKGBUILD2019-09-15 23:00:13 UTC (rev 510808)
@@ -1,42 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-
-pkgname=dub
-pkgver=1.16.0
-pkgrel=1
-# Build date format is "mmm dd "
-_builddate="Jul 02 2019"
-pkgdesc="Developer package manager for D programming language"
-arch=('x86_64')
-url="https://github.com/D-Programming-Language/dub;
-license=('MIT')
-groups=('dlang')
-makedepends=('ldc')
-depends=('liblphobos' 'curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
-sha512sums=('e088fcdb0930439606c7575183d96cc4d743109d0d513f3606ae1ac1df41d4862aff8bfd36be90228aed4c4fc2f46528cb7a650ec6f988f146b051a10ccce177')
-
-build() {
-   cd "$pkgname-$pkgver"
-
-   sed -i "s/__DATE__/\"$_builddate\"/" source/dub/commandline.d
-
-   echo Generating version file...
-   echo "module dub.version_;" > source/dub/version_.d
-   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
-
-   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
@build-files.txt
-}
-
-package() {
-   # binaries
-   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
-
-   # license
-   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   # bash completion
-   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
-}

Copied: dub/repos/community-x86_64/PKGBUILD (from rev 510807, 
dub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 23:00:13 UTC (rev 510808)
@@ -0,0 +1,38 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasuns 
+# Contributor: Moritz Maxeiner 
+
+pkgname=dub
+pkgver=1.17.0
+pkgrel=1
+pkgdesc="Developer package manager for D programming language"
+arch=('x86_64')
+url="https://github.com/D-Programming-Language/dub;
+license=('MIT')
+groups=('dlang')
+makedepends=('ldc')
+depends=('liblphobos' 'curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/dub/archive/v$pkgver.tar.gz;)
+sha512sums=('8907e7b66d5a5c3d6013a2073a61cdab2a9276454b9c63628b30bb787cee2a7f785bf5ee1db781bf241fe4196a792f74682872ad55bb42349ae5452ce0ffec92')
+
+build() {
+   cd "$pkgname-$pkgver"
+
+   echo Generating version file...
+   echo "module dub.version_;" > source/dub/version_.d
+   echo "enum dubVersion = \"$pkgver\";" >> source/dub/version_.d
+
+   ldmd2 -ofbin/dub -release -O5 -version=DubUseCurl -Isource -L-lcurl 
-L="$LDFLAGS" -release -flto=full -linker=gold -link-defaultlib-shared=false 
@build-files.txt
+}
+
+package() {
+   # binaries
+   install -Dm755 "$pkgname-$pkgver/bin/dub" "$pkgdir/usr/bin/dub"
+
+   # license
+   install -Dm644 "$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   # bash completion
+   install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
+}


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 22:50:05
  Author: wild
Revision: 510806

archrelease: copy trunk to community-x86_64

Added:
  dfmt/repos/community-x86_64/PKGBUILD
(from rev 510801, dfmt/trunk/PKGBUILD)
Deleted:
  dfmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 22:48:01 UTC (rev 510805)
+++ PKGBUILD2019-09-15 22:50:05 UTC (rev 510806)
@@ -1,55 +0,0 @@
-# Maintainer: Dan Printzell 
-
-pkgname=('dfmt')
-pkgver=0.10.1
-pkgrel=1
-_pkgcommit=436d157b4f5b9ab047e2207988e2416fa0b21a88
-pkgdesc="Dfmt is a formatter for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/dfmt;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-)
-
-prepare() {
-   cd "$srcdir/dfmt"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-
-   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
-   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
-}
-
-build() {
-   cd "$srcdir/dfmt"
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
-
-   # license
-   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dfmt/repos/community-x86_64/PKGBUILD (from rev 510801, 
dfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:50:05 UTC (rev 510806)
@@ -0,0 +1,55 @@
+# Maintainer: Dan Printzell 
+
+pkgname=('dfmt')
+pkgver=0.10.1
+pkgrel=2
+_pkgcommit=436d157b4f5b9ab047e2207988e2416fa0b21a88
+pkgdesc="Dfmt is a formatter for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/dfmt;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/sociomantic-tsunami/makd;
+   "git+https://github.com/sociomantic-tsunami/beaver;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+)
+
+prepare() {
+   cd "$srcdir/dfmt"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.makd.url "$srcdir/makd"
+   git config submodule.beaver.url "$srcdir/beaver"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+
+   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
+   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
+}
+
+build() {
+   cd "$srcdir/dfmt"
+   make ldc
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
+
+   # license
+   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 22:47:43
  Author: eschwartz
Revision: 510804

upgpkg: exploitdb 20190915-1

upstream release

Modified:
  exploitdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:47:34 UTC (rev 510803)
+++ PKGBUILD2019-09-15 22:47:43 UTC (rev 510804)
@@ -2,7 +2,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=exploitdb
-_pkgver=2019-08-24
+_pkgver=2019-09-15
 pkgver=${_pkgver//-/}
 pkgrel=1
 pkgdesc="Offensive Security’s Exploit Database Archive"
@@ -15,9 +15,9 @@
 options=('!strip')
 
source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
 "rcfile.diff")
-sha512sums=('895931f7b50b65f58dd6020916e058e1b876e95cd9326640f0e1ee1acf88d5c54df09e86a51c8a0b304921301e52355436bb1fa65fc7eb11c54619e2911d9d91'
+sha512sums=('5df7c5da4f29a01eb4001c46fbeff62e2f92edd4602638b51d1275664a76374682090c882d74fdfff831d17b78fddc9e0328fb6f0981787e4a8c017e924c958a'
 
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
-b2sums=('722ce2c8b26559f6173c7f2c798392ec00c3f1abfae8ef709a531e9f89a9ed831e0c26d3ad4503c56e9c2441f2a2cdce75930e5b4c0d3b8fbebce140a8381575'
+b2sums=('6e54510969ec677736c8168b2e1ee62cfd175d0a442513635f57ba25480bbd2fc1bb153a1906ad76eaecbc1250c08fc38798d0dbb51e1ad210671a1dd86f'
 
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')
 
 prepare() {


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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 22:47:34
  Author: eschwartz
Revision: 510803

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  107 ++
 ksh.install |   24 ++---
 2 files changed, 75 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 22:47:16 UTC (rev 510802)
+++ PKGBUILD2019-09-15 22:47:34 UTC (rev 510803)
@@ -1,44 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-pkgname=ksh
-_pkgver=2020.0.0-alpha1
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="The Original AT Korn Shell"
-arch=('x86_64')
-url="http://kornshell.org/;
-license=('EPL')
-makedepends=('meson')
-checkdepends=('ed' 'vi' 'expect' 'openbsd-netcat')
-provides=('ksh93')
-install=ksh.install
-source=("https://github.com/att/ast/releases/download/${_pkgver}/ksh-${_pkgver}.tar.xz"{,.asc})
-sha256sums=('f383f375902557561340372eca0d3fd5076d310de563e18271e406e7f42ff25b'
-'SKIP')
-b2sums=('a6e030bdcde2561b97cb25e7914413f6133c49795be36ee57704f996a5592c0b05e21e4bf71b2abfeccd7107033a207bf62ba1b3919ebaaef113c1a9b91a87ec'
-'SKIP')
-validpgpkeys=('4BF045ACC726FE4E9DFC1D7762213CE2D3CB82EA') # Siteshwar Vashisht 

-
-build() {
-mkdir -p "${srcdir}"/ksh-${_pkgver}/build
-cd "${srcdir}"/ksh-${_pkgver}/build
-
-meson --prefix /usr \
-  --buildtype=plain \
-  ..
-ninja
-}
-
-check() {
-cd "${srcdir}"/ksh-${_pkgver}/build
-
-# a couple tests are flaky and may time out
-meson test -t 3
-}
-
-package() {
-cd "${srcdir}"/ksh-${_pkgver}/build
-
-DESTDIR="${pkgdir}" ninja install
-ln -s ksh "${pkgdir}"/usr/bin/ksh93
-}

Copied: ksh/repos/community-x86_64/PKGBUILD (from rev 510802, 
ksh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:47:34 UTC (rev 510803)
@@ -0,0 +1,63 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=ksh
+_pkgver=2020.0.0-beta1
+pkgver=${_pkgver//-/}
+pkgrel=1
+pkgdesc="The Original AT Korn Shell"
+arch=('x86_64')
+url="http://kornshell.org/;
+license=('EPL')
+makedepends=('meson' 'samurai')
+checkdepends=('ed' 'expect' 'openbsd-netcat' 'procps-ng' 'which' 'vi')
+provides=('ksh93')
+install=ksh.install
+source=("https://github.com/att/ast/releases/download/${_pkgver}/ksh-${_pkgver}.tar.xz"{,.asc}
+
"https://github.com/att/ast/commit/d89753b5d38482f4a3f17ba3b7d09ab07cfe7419.patch;
+
"https://github.com/att/ast/commit/44463c0255b7e80d3ace9a0a27e543f2232ca409.patch;)
+sha256sums=('ebcc55b352d40e1c5329615224d1b76c7b9f7755d07e0b828a6db02ac9c77f52'
+'SKIP'
+'8d10ac086727ef9d1b967e2e973be29792e9a4a8c5f915087aa3a2c44d87403f'
+'e99e2ca533c61005e3dd7947dfcdccef9c70719a109cb2474997105453846870')
+b2sums=('9d45b6ecdb182363156bd33a984addfae8281a6498beb675456700e4ce5aea346f7720e033b8e83b6f0832b020b502cce6f8407400de1ec4b4232f7d9323f615'
+'SKIP'
+
'bcf521012bb197d234b119dc56ddc068f8ec3e46b6f4c6d82e1043629368bfcabd1a5d360bae702777e5b01914ac70c9edbdce5ee0bba7e9f69916a3c38b1820'
+
'9409982ecb7f2d0c4748debcd211b6879bea26e4b1f9c90e6d9e620fcde5d3b8a9d02b034813bea7cb2298a136e911dfcf3f6f303b4fd1f1a5e6c16e0a758f3a')
+validpgpkeys=('4BF045ACC726FE4E9DFC1D7762213CE2D3CB82EA') # Siteshwar Vashisht 

+
+export NINJA=/usr/bin/samu
+
+prepare() {
+cd "${srcdir}"/ksh-${_pkgver}
+
+# ignore test error on non-debug builds: 
https://github.com/att/ast/issues/1390
+patch -p1 -i ../d89753b5d38482f4a3f17ba3b7d09ab07cfe7419.patch
+# be less flaky inside systemd-nspawn containers with seccomp:
+# https://github.com/att/ast/issues/1398
+patch -p1 -i ../44463c0255b7e80d3ace9a0a27e543f2232ca409.patch
+
+}
+
+build() {
+mkdir -p "${srcdir}"/ksh-${_pkgver}/build
+cd "${srcdir}"/ksh-${_pkgver}/build
+
+meson --prefix /usr \
+  --buildtype=plain \
+  ..
+samu
+}
+
+check() {
+cd "${srcdir}"/ksh-${_pkgver}/build
+
+# a couple tests are flaky and may time out
+meson test -t 3 --print-errorlogs
+}
+
+package() {
+cd "${srcdir}"/ksh-${_pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+ln -s ksh "${pkgdir}"/usr/bin/ksh93
+}

Deleted: ksh.install
===
--- ksh.install 2019-09-15 22:47:16 UTC (rev 510802)
+++ ksh.install 2019-09-15 22:47:34 UTC (rev 510803)
@@ -1,12 +0,0 @@
-post_install() {
-grep -qx /bin/ksh /etc/shells || echo /bin/ksh >>/etc/shells
-grep -qx /usr/bin/ksh /etc/shells || echo /usr/bin/ksh >>/etc/shells
-}
-
-post_upgrade() {
-post_install
-}
-

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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 22:48:01
  Author: eschwartz
Revision: 510805

archrelease: copy trunk to community-any

Added:
  exploitdb/repos/community-any/PKGBUILD
(from rev 510804, exploitdb/trunk/PKGBUILD)
  exploitdb/repos/community-any/rcfile.diff
(from rev 510804, exploitdb/trunk/rcfile.diff)
Deleted:
  exploitdb/repos/community-any/PKGBUILD
  exploitdb/repos/community-any/rcfile.diff

-+
 PKGBUILD|   76 +-
 rcfile.diff |   62 +++
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 22:47:43 UTC (rev 510804)
+++ PKGBUILD2019-09-15 22:48:01 UTC (rev 510805)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Levente Polyak 
-
-pkgname=exploitdb
-_pkgver=2019-08-24
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="Offensive Security’s Exploit Database Archive"
-arch=('any')
-url="https://www.exploit-db.com/;
-license=('GPL')
-optdepends=('libxml2: to check nmap XML results'
-'xclip: copy paths to the clipboard')
-backup=('etc/searchsploit_rc')
-options=('!strip')
-source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
-"rcfile.diff")
-sha512sums=('895931f7b50b65f58dd6020916e058e1b876e95cd9326640f0e1ee1acf88d5c54df09e86a51c8a0b304921301e52355436bb1fa65fc7eb11c54619e2911d9d91'
-
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
-b2sums=('722ce2c8b26559f6173c7f2c798392ec00c3f1abfae8ef709a531e9f89a9ed831e0c26d3ad4503c56e9c2441f2a2cdce75930e5b4c0d3b8fbebce140a8381575'
-
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')
-
-prepare() {
-cd ${pkgname}-${_pkgver}
-
-patch -p1 -i ../rcfile.diff
-}
-
-package() {
-cd ${pkgname}-${_pkgver}
-
-install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
-install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
-mkdir -p "${pkgdir}"/usr/share/${pkgname}
-cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
-}
-
-# vim: ts=4 sw=4 et:

Copied: exploitdb/repos/community-any/PKGBUILD (from rev 510804, 
exploitdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:48:01 UTC (rev 510805)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Levente Polyak 
+
+pkgname=exploitdb
+_pkgver=2019-09-15
+pkgver=${_pkgver//-/}
+pkgrel=1
+pkgdesc="Offensive Security’s Exploit Database Archive"
+arch=('any')
+url="https://www.exploit-db.com/;
+license=('GPL')
+optdepends=('libxml2: to check nmap XML results'
+'xclip: copy paths to the clipboard')
+backup=('etc/searchsploit_rc')
+options=('!strip')
+source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
+"rcfile.diff")
+sha512sums=('5df7c5da4f29a01eb4001c46fbeff62e2f92edd4602638b51d1275664a76374682090c882d74fdfff831d17b78fddc9e0328fb6f0981787e4a8c017e924c958a'
+
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
+b2sums=('6e54510969ec677736c8168b2e1ee62cfd175d0a442513635f57ba25480bbd2fc1bb153a1906ad76eaecbc1250c08fc38798d0dbb51e1ad210671a1dd86f'
+
'f033a50db6358297580363d62bbd9d4a6003b5476ba361650133841138af76b990ed49e2e34d487cf4167ebeb3cd6b8f9230e5e700a5d96f7f06cbc5b42c4076')
+
+prepare() {
+cd ${pkgname}-${_pkgver}
+
+patch -p1 -i ../rcfile.diff
+}
+
+package() {
+cd ${pkgname}-${_pkgver}
+
+install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
+install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
+mkdir -p "${pkgdir}"/usr/share/${pkgname}
+cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
+}
+
+# vim: ts=4 sw=4 et:

Deleted: rcfile.diff
===
--- rcfile.diff 2019-09-15 22:47:43 UTC (rev 510804)
+++ rcfile.diff 2019-09-15 22:48:01 UTC (rev 510805)
@@ -1,31 +0,0 @@
-diff --git a/.searchsploit_rc b/.searchsploit_rc
-index 36c9b1c8..62bbe404 100644
 a/.searchsploit_rc
-+++ b/.searchsploit_rc
-@@ -4,7 +4,7 @@ progname="$( basename "$0" )"
- 
- ##-- Exploits
- files_array+=("files_exploits.csv")
--path_array+=("/opt/exploitdb")
-+path_array+=("/usr/share/exploitdb")
- name_array+=("Exploit")
- git_array+=("https://github.com/offensive-security/exploitdb.git;)
- package_array+=("exploitdb")
-@@ -12,7 +12,7 @@ package_array+=("exploitdb")
- 
- ##-- Shellcodes
- files_array+=("files_shellcodes.csv")
--path_array+=("/opt/exploitdb")

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

2019-09-15 Thread Eli Schwartz via arch-commits
Date: Sunday, September 15, 2019 @ 22:47:16
  Author: eschwartz
Revision: 510802

upgpkg: ksh 2020.0.0beta1-1

- upstream release: we are now moved from alpha to beta
- backport a couple fixes for testsuite errors/flakiness
- add a couple new checkdepends, also "which" (this might be deliberately
  uninstalled as it is on my live system, due to the fact that this is horribly
  inferior to POSIX command -v and I don't believe it should be installed by
  default anywhere ever)
- make meson test print failing errorlogs instead of just logging them; it's
  annoying to have to keep chrooting in and inspecting logs to see what
  happened

Modified:
  ksh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:37:02 UTC (rev 510801)
+++ PKGBUILD2019-09-15 22:47:16 UTC (rev 510802)
@@ -1,7 +1,7 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=ksh
-_pkgver=2020.0.0-alpha1
+_pkgver=2020.0.0-beta1
 pkgver=${_pkgver//-/}
 pkgrel=1
 pkgdesc="The Original AT Korn Shell"
@@ -9,18 +9,35 @@
 url="http://kornshell.org/;
 license=('EPL')
 makedepends=('meson' 'samurai')
-checkdepends=('ed' 'vi' 'expect' 'openbsd-netcat')
+checkdepends=('ed' 'expect' 'openbsd-netcat' 'procps-ng' 'which' 'vi')
 provides=('ksh93')
 install=ksh.install
-source=("https://github.com/att/ast/releases/download/${_pkgver}/ksh-${_pkgver}.tar.xz"{,.asc})
-sha256sums=('f383f375902557561340372eca0d3fd5076d310de563e18271e406e7f42ff25b'
-'SKIP')
-b2sums=('a6e030bdcde2561b97cb25e7914413f6133c49795be36ee57704f996a5592c0b05e21e4bf71b2abfeccd7107033a207bf62ba1b3919ebaaef113c1a9b91a87ec'
-'SKIP')
+source=("https://github.com/att/ast/releases/download/${_pkgver}/ksh-${_pkgver}.tar.xz"{,.asc}
+
"https://github.com/att/ast/commit/d89753b5d38482f4a3f17ba3b7d09ab07cfe7419.patch;
+
"https://github.com/att/ast/commit/44463c0255b7e80d3ace9a0a27e543f2232ca409.patch;)
+sha256sums=('ebcc55b352d40e1c5329615224d1b76c7b9f7755d07e0b828a6db02ac9c77f52'
+'SKIP'
+'8d10ac086727ef9d1b967e2e973be29792e9a4a8c5f915087aa3a2c44d87403f'
+'e99e2ca533c61005e3dd7947dfcdccef9c70719a109cb2474997105453846870')
+b2sums=('9d45b6ecdb182363156bd33a984addfae8281a6498beb675456700e4ce5aea346f7720e033b8e83b6f0832b020b502cce6f8407400de1ec4b4232f7d9323f615'
+'SKIP'
+
'bcf521012bb197d234b119dc56ddc068f8ec3e46b6f4c6d82e1043629368bfcabd1a5d360bae702777e5b01914ac70c9edbdce5ee0bba7e9f69916a3c38b1820'
+
'9409982ecb7f2d0c4748debcd211b6879bea26e4b1f9c90e6d9e620fcde5d3b8a9d02b034813bea7cb2298a136e911dfcf3f6f303b4fd1f1a5e6c16e0a758f3a')
 validpgpkeys=('4BF045ACC726FE4E9DFC1D7762213CE2D3CB82EA') # Siteshwar Vashisht 

 
 export NINJA=/usr/bin/samu
 
+prepare() {
+cd "${srcdir}"/ksh-${_pkgver}
+
+# ignore test error on non-debug builds: 
https://github.com/att/ast/issues/1390
+patch -p1 -i ../d89753b5d38482f4a3f17ba3b7d09ab07cfe7419.patch
+# be less flaky inside systemd-nspawn containers with seccomp:
+# https://github.com/att/ast/issues/1398
+patch -p1 -i ../44463c0255b7e80d3ace9a0a27e543f2232ca409.patch
+
+}
+
 build() {
 mkdir -p "${srcdir}"/ksh-${_pkgver}/build
 cd "${srcdir}"/ksh-${_pkgver}/build
@@ -35,7 +52,7 @@
 cd "${srcdir}"/ksh-${_pkgver}/build
 
 # a couple tests are flaky and may time out
-meson test -t 3
+meson test -t 3 --print-errorlogs
 }
 
 package() {


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 22:37:02
  Author: wild
Revision: 510801

upgpkg: dfmt 0.10.1-2

Rebuilt against new ldc

Modified:
  dfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:26:29 UTC (rev 510800)
+++ PKGBUILD2019-09-15 22:37:02 UTC (rev 510801)
@@ -2,7 +2,7 @@
 
 pkgname=('dfmt')
 pkgver=0.10.1
-pkgrel=1
+pkgrel=2
 _pkgcommit=436d157b4f5b9ab047e2207988e2416fa0b21a88
 pkgdesc="Dfmt is a formatter for D source code"
 arch=('x86_64')


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 15, 2019 @ 22:28:47
  Author: heftig
Revision: 362926

archrelease: copy trunk to extra-x86_64

Added:
  libgtop/repos/extra-x86_64/PKGBUILD
(from rev 362925, libgtop/trunk/PKGBUILD)
Deleted:
  libgtop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 22:28:40 UTC (rev 362925)
+++ PKGBUILD2019-09-15 22:28:47 UTC (rev 362926)
@@ -1,36 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=libgtop
-pkgver=2.40.0
-pkgrel=1
-pkgdesc="A library for collecting system monitoring data"
-url="https://gitlab.gnome.org/GNOME/libgtop;
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 libxau)
-makedepends=(gobject-introspection git gtk-doc)
-_commit=abccaf488a929de1e95e6a748485575dec52c998  # tags/2.40.0^0
-source=("git+https://gitlab.gnome.org/GNOME/libgtop.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-gtk-doc
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: libgtop/repos/extra-x86_64/PKGBUILD (from rev 362925, 
libgtop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:28:47 UTC (rev 362926)
@@ -0,0 +1,36 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libgtop
+pkgver=2.40.0+2+g31db82ef
+pkgrel=1
+pkgdesc="A library for collecting system monitoring data"
+url="https://gitlab.gnome.org/GNOME/libgtop;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 libxau)
+makedepends=(gobject-introspection git gtk-doc)
+_commit=31db82efced79d1ceee465d9b50da2fe6fd16482  # master
+source=("git+https://gitlab.gnome.org/GNOME/libgtop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-gtk-doc
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2019-09-15 Thread Jan Steffens via arch-commits
Date: Sunday, September 15, 2019 @ 22:28:40
  Author: heftig
Revision: 362925

2.40.0+2+g31db82ef-1

Modified:
  libgtop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 21:55:27 UTC (rev 362924)
+++ PKGBUILD2019-09-15 22:28:40 UTC (rev 362925)
@@ -1,7 +1,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libgtop
-pkgver=2.40.0
+pkgver=2.40.0+2+g31db82ef
 pkgrel=1
 pkgdesc="A library for collecting system monitoring data"
 url="https://gitlab.gnome.org/GNOME/libgtop;
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(glib2 libxau)
 makedepends=(gobject-introspection git gtk-doc)
-_commit=abccaf488a929de1e95e6a748485575dec52c998  # tags/2.40.0^0
+_commit=31db82efced79d1ceee465d9b50da2fe6fd16482  # master
 source=("git+https://gitlab.gnome.org/GNOME/libgtop.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 22:26:29
  Author: wild
Revision: 510800

archrelease: copy trunk to community-x86_64

Added:
  dcd/repos/community-x86_64/PKGBUILD
(from rev 510799, dcd/trunk/PKGBUILD)
  dcd/repos/community-x86_64/dcd.conf
(from rev 510799, dcd/trunk/dcd.conf)
  dcd/repos/community-x86_64/dcd.service
(from rev 510799, dcd/trunk/dcd.service)
Deleted:
  dcd/repos/community-x86_64/PKGBUILD
  dcd/repos/community-x86_64/dcd.conf
  dcd/repos/community-x86_64/dcd.service

-+
 PKGBUILD|  146 +-
 dcd.conf|2 
 dcd.service |   26 +-
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 22:09:08 UTC (rev 510799)
+++ PKGBUILD2019-09-15 22:26:29 UTC (rev 510800)
@@ -1,73 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Mihails Strasuns 
-
-pkgname=dcd
-pkgver=0.12.0
-pkgrel=1
-epoch=1
-_pkgcommit=33dbd7653ecf830b735382e11d9bee66853a6dcf
-pkgdesc="D Completion Daemon: auto-complete for the D programming language"
-arch=('x86_64')
-url="https://github.com/Hackerpilot/DCD;
-license=('GPL3')
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-source=("git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
-"git+https://github.com/msgpack/msgpack-d;
-"git+https://github.com/economicmodeling/containers;
-"git+https://github.com/dlang-community/libdparse;
-"git+https://github.com/dlang-community/dsymbol;
-"git+https://github.com/dlang-community/stdx-allocator;
-"dcd.service"
-   "dcd.conf")
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'563e660058721fdacdfa365a774e58b0e9cdb962e14198112a5d971aa4e35025529266130474212834d78ad1c11901e2f8208176a3891ce6ffc9a2ffd9c8c1e0'
-
'1480d4d66b6732f198fcaae52861b06c8bfcee7f622a546d643a4e8fb259aa0350415fb2f87b1bc4d301ad11af866d7962faf2bcfc0587971a86a73265676703')
-
-prepare() {
-  cd "$srcdir/DCD"
-
-  git submodule init
-  git config submodule.msgpack-d.url "$srcdir/msgpack-d"
-  git config submodule.containers.url "$srcdir/containers"
-  git config submodule.libdparse.url "$srcdir/libdparse"
-  git config submodule.dsymbol.url "$srcdir/dsymbol"
-  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-  git submodule update
-
-  # Only LDC have -O5
-  sed -i "/-O5/ a -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"" makefile
-}
-
-build() {
-  cd "$srcdir/DCD"
-
-  make ldc
-}
-
-package() {
-  # binaries
-  install -Dm755 "$srcdir/DCD/bin/dcd-server" "$pkgdir/usr/bin/dcd-server"
-  install -Dm755 "$srcdir/DCD/bin/dcd-client" "$pkgdir/usr/bin/dcd-client"
-
-  # documentation
-  install -d "$pkgdir/usr/share/man/man1/"
-  find "$srcdir/DCD/man1/" -type f -exec install -m 644 "{}" 
"$pkgdir/usr/share/man/man1/" \;
-
-  # license
-  install -Dm644 "$srcdir/DCD/License.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # systemd service
-  install -Dm644 "$srcdir/dcd.service" 
"$pkgdir/usr/lib/systemd/system/dcd.service"
-
-  # global config
-  install -Dm644 "$srcdir/dcd.conf" "$pkgdir/etc/dcd.conf"
-}

Copied: dcd/repos/community-x86_64/PKGBUILD (from rev 510799, 
dcd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:26:29 UTC (rev 510800)
@@ -0,0 +1,73 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Mihails Strasuns 
+
+pkgname=dcd
+pkgver=0.12.0
+pkgrel=2
+epoch=1
+_pkgcommit=33dbd7653ecf830b735382e11d9bee66853a6dcf
+pkgdesc="D Completion Daemon: auto-complete for the D programming language"
+arch=('x86_64')
+url="https://github.com/dlang-community/DCD;
+license=('GPL3')
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+source=("git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
+"git+https://github.com/msgpack/msgpack-d;
+"git+https://github.com/economicmodeling/containers;
+"git+https://github.com/dlang-community/libdparse;
+"git+https://github.com/dlang-community/dsymbol;
+"git+https://github.com/dlang-community/stdx-allocator;
+"dcd.service"
+   "dcd.conf")
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'563e660058721fdacdfa365a774e58b0e9cdb962e14198112a5d971aa4e35025529266130474212834d78ad1c11901e2f8208176a3891ce6ffc9a2ffd9c8c1e0'
+
'1480d4d66b6732f198fcaae52861b06c8bfcee7f622a546d643a4e8fb259aa0350415fb2f87b1bc4d301ad11af866d7962faf2bcfc0587971a86a73265676703')
+
+prepare() {
+  cd "$srcdir/DCD"

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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 22:09:08
  Author: wild
Revision: 510799

upgpkg: dcd 1:0.12.0-2

Rebuilt against new ldc

Modified:
  dcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 22:03:01 UTC (rev 510798)
+++ PKGBUILD2019-09-15 22:09:08 UTC (rev 510799)
@@ -5,12 +5,12 @@
 
 pkgname=dcd
 pkgver=0.12.0
-pkgrel=1
+pkgrel=2
 epoch=1
 _pkgcommit=33dbd7653ecf830b735382e11d9bee66853a6dcf
 pkgdesc="D Completion Daemon: auto-complete for the D programming language"
 arch=('x86_64')
-url="https://github.com/Hackerpilot/DCD;
+url="https://github.com/dlang-community/DCD;
 license=('GPL3')
 groups=('dlang')
 makedepends=('ldc' 'git')


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 22:03:01
  Author: wild
Revision: 510798

archrelease: copy trunk to community-x86_64

Added:
  adrdox/repos/community-x86_64/PKGBUILD
(from rev 510797, adrdox/trunk/PKGBUILD)
Deleted:
  adrdox/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 21:50:00 UTC (rev 510797)
+++ PKGBUILD2019-09-15 22:03:01 UTC (rev 510798)
@@ -1,26 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=adrdox
-pkgver=1.0.0
-pkgrel=2
-pkgdesc='Documentation generator for D'
-arch=('x86_64')
-url='https://github.com/adamdruppe/adrdox'
-license=('Boost')
-depends=('liblphobos')
-makedepends=('ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('5b71c37cb0cab42801a38ba0a8552615bf5b7877bbfc4ed9a994c96a9de885f9eddbd6ff9e27bd91acbb2d160b4f0c1b1a5eb74ec8543e8f9540473a8afb24b3')
-
-build() {
-cd $pkgname-$pkgver
-
-make ldc
-}
-
-package() {
-cd $pkgname-$pkgver
-
-install -Dm 755 $pkgname.main "$pkgdir"/usr/bin/$pkgname
-}
-

Copied: adrdox/repos/community-x86_64/PKGBUILD (from rev 510797, 
adrdox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 22:03:01 UTC (rev 510798)
@@ -0,0 +1,26 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=adrdox
+pkgver=1.0.0
+pkgrel=3
+pkgdesc='Documentation generator for D'
+arch=('x86_64')
+url='https://github.com/adamdruppe/adrdox'
+license=('Boost')
+depends=('liblphobos')
+makedepends=('ldc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('5b71c37cb0cab42801a38ba0a8552615bf5b7877bbfc4ed9a994c96a9de885f9eddbd6ff9e27bd91acbb2d160b4f0c1b1a5eb74ec8543e8f9540473a8afb24b3')
+
+build() {
+cd $pkgname-$pkgver
+
+make ldc
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -Dm 755 $pkgname.main "$pkgdir"/usr/bin/$pkgname
+}
+


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

2019-09-15 Thread Jan de Groot via arch-commits
Date: Sunday, September 15, 2019 @ 21:55:27
  Author: jgc
Revision: 362924

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xkbcomp/repos/extra-x86_64/PKGBUILD
(from rev 362923, xorg-xkbcomp/trunk/PKGBUILD)
Deleted:
  xorg-xkbcomp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 21:55:22 UTC (rev 362923)
+++ PKGBUILD2019-09-15 21:55:27 UTC (rev 362924)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Maintainer: Andreas Radke 
-
-pkgname=xorg-xkbcomp
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="X Keyboard description compiler"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxkbfile')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xkbcomp-${pkgver}.tar.bz2{,.sig})
-sha512sums=('b00d1eb08c19be86044418c8ea3bfc3c3973406c481878270138a70ed9dab348acb8e4d0af8678879598ffbd7df1c640a63d0abad3d7481758be99af8dd7734e'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
-validpgpkeys+=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone 
"
-validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # "Adam Jackson 
"
-
-build() {
-  cd xkbcomp-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xkbcomp-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xkbcomp/repos/extra-x86_64/PKGBUILD (from rev 362923, 
xorg-xkbcomp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 21:55:27 UTC (rev 362924)
@@ -0,0 +1,46 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+
+pkgname=xorg-xkbcomp
+pkgver=1.4.2+7+g29fda8e
+pkgrel=1
+pkgdesc="X Keyboard description compiler"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxkbfile')
+makedepends=('xorg-util-macros' git)
+groups=('xorg-apps' 'xorg')
+_commit=29fda8e50e4a4a127348e63fcf9f47600beab93c  # master
+source=("git+https://gitlab.freedesktop.org/xorg/app/xkbcomp#commit=$_commit;)
+sha512sums=('SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+validpgpkeys+=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone 
"
+validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # "Adam Jackson 
"
+
+pkgver() {
+  cd xkbcomp
+  git describe --tags | sed 's/^xkbcomp-//;s/-/+/g'
+}
+
+prepare() {
+  cd xkbcomp
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  make -C xkbcomp check
+}
+
+build() {
+  cd xkbcomp
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xkbcomp
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-09-15 Thread Jan de Groot via arch-commits
Date: Sunday, September 15, 2019 @ 21:55:22
  Author: jgc
Revision: 362923

upgpkg: xorg-xkbcomp 1.4.2+7+g29fda8e-1

Bump to git snapshot to fix errors from FS#62449

Modified:
  xorg-xkbcomp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 21:50:31 UTC (rev 362922)
+++ PKGBUILD2019-09-15 21:55:22 UTC (rev 362923)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=xorg-xkbcomp
-pkgver=1.4.2
+pkgver=1.4.2+7+g29fda8e
 pkgrel=1
 pkgdesc="X Keyboard description compiler"
 arch=(x86_64)
@@ -9,23 +9,37 @@
 url="https://xorg.freedesktop.org/;
 license=('custom')
 depends=('libxkbfile')
-makedepends=('xorg-util-macros')
+makedepends=('xorg-util-macros' git)
 groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xkbcomp-${pkgver}.tar.bz2{,.sig})
-sha512sums=('b00d1eb08c19be86044418c8ea3bfc3c3973406c481878270138a70ed9dab348acb8e4d0af8678879598ffbd7df1c640a63d0abad3d7481758be99af8dd7734e'
-'SKIP')
+_commit=29fda8e50e4a4a127348e63fcf9f47600beab93c  # master
+source=("git+https://gitlab.freedesktop.org/xorg/app/xkbcomp#commit=$_commit;)
+sha512sums=('SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 validpgpkeys+=('A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # "Daniel Stone 
"
 validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # "Adam Jackson 
"
 
+pkgver() {
+  cd xkbcomp
+  git describe --tags | sed 's/^xkbcomp-//;s/-/+/g'
+}
+
+prepare() {
+  cd xkbcomp
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+check() {
+  make -C xkbcomp check
+}
+
 build() {
-  cd xkbcomp-${pkgver}
+  cd xkbcomp
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd xkbcomp-${pkgver}
+  cd xkbcomp
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"


[arch-commits] Commit in (pygtksourceview2)

2019-09-15 Thread Jan de Groot via arch-commits
Date: Sunday, September 15, 2019 @ 21:50:31
  Author: jgc
Revision: 362922

No longer required by anything in repos

Deleted:
  pygtksourceview2/


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 21:50:00
  Author: wild
Revision: 510797

upgpkg: adrdox 1.0.0-3

Rebuilt against new ldc

Modified:
  adrdox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 21:04:28 UTC (rev 510796)
+++ PKGBUILD2019-09-15 21:50:00 UTC (rev 510797)
@@ -2,7 +2,7 @@
 
 pkgname=adrdox
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Documentation generator for D'
 arch=('x86_64')
 url='https://github.com/adamdruppe/adrdox'


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 21:04:28
  Author: wild
Revision: 510796

archrelease: copy trunk to community-x86_64

Added:
  tilix/repos/community-x86_64/PKGBUILD
(from rev 510795, tilix/trunk/PKGBUILD)
Deleted:
  tilix/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 20:51:28 UTC (rev 510795)
+++ PKGBUILD2019-09-15 21:04:28 UTC (rev 510796)
@@ -1,41 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: dsboger 
-# Contributor: Carl George < arch at cgtx dot us >
-
-pkgname=tilix
-pkgver=1.9.3
-pkgrel=3
-pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
-arch=('x86_64')
-url="https://github.com/gnunn1/tilix;
-license=('MPL')
-depends=('libx11' 'gtkd' 'vte3' 'dconf' 'gsettings-desktop-schemas')
-makedepends=('ldc' 'po4a')
-optdepends=('python-nautilus: for "Open Tilix Here" support in nautilus'
-'libsecret: for the password manager')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('f1b4dbbd60f4b9a91e0ab0954e3e6b8ebe5442d5fbb760a554a733903e44a1de')
-
-prepare() {
-cd "$pkgname-$pkgver"
-
-./autogen.sh
-}
-
-build() {
-cd "$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
-PO4A_TRANS=/usr/bin/vendor_perl/po4a-translate \
-DC='ldmd' \
-DCFLAGS='-O -inline -release -version=StdLoggerDisableTrace 
-L='"\"$LDFLAGS\""
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}
-

Copied: tilix/repos/community-x86_64/PKGBUILD (from rev 510795, 
tilix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 21:04:28 UTC (rev 510796)
@@ -0,0 +1,46 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: dsboger 
+# Contributor: Carl George < arch at cgtx dot us >
+
+pkgname=tilix
+pkgver=1.9.3
+pkgrel=4
+pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
+arch=('x86_64')
+url="https://github.com/gnunn1/tilix;
+license=('MPL')
+depends=('libx11' 'gtkd' 'vte3' 'dconf' 'gsettings-desktop-schemas')
+makedepends=('ldc' 'po4a')
+optdepends=('python-nautilus: for "Open Tilix Here" support in nautilus'
+'libsecret: for the password manager')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz"
+
"Avoid_calling_values_on_a_shared_object.patch::https://github.com/gnunn1/tilix/commit/ce11b0bd936fe8fee9c5ac7025ea5864b99ed7d3.patch;)
+sha256sums=('f1b4dbbd60f4b9a91e0ab0954e3e6b8ebe5442d5fbb760a554a733903e44a1de'
+'29bbdb44fa026af00d82230376a0c18e4947d7c7cfbe1838a6cbb81733f6ba0a')
+
+prepare() {
+cd "$pkgname-$pkgver"
+
+# Fixes compilation: 
https://github.com/gnunn1/tilix/commit/ce11b0bd936fe8fee9c5ac7025ea5864b99ed7d3
+patch -p1 < "$srcdir"/Avoid_calling_values_on_a_shared_object.patch
+
+./autogen.sh
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+PO4A_TRANS=/usr/bin/vendor_perl/po4a-translate \
+DC='ldmd' \
+DCFLAGS='-O -inline -release -version=StdLoggerDisableTrace 
-L='"\"$LDFLAGS\""
+make
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 20:51:28
  Author: wild
Revision: 510795

upgpkg: tilix 1.9.3-4

Rebuilt against new ldc

Modified:
  tilix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 19:34:47 UTC (rev 510794)
+++ PKGBUILD2019-09-15 20:51:28 UTC (rev 510795)
@@ -5,7 +5,7 @@
 
 pkgname=tilix
 pkgver=1.9.3
-pkgrel=3
+pkgrel=4
 pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
 arch=('x86_64')
 url="https://github.com/gnunn1/tilix;
@@ -14,12 +14,17 @@
 makedepends=('ldc' 'po4a')
 optdepends=('python-nautilus: for "Open Tilix Here" support in nautilus'
 'libsecret: for the password manager')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('f1b4dbbd60f4b9a91e0ab0954e3e6b8ebe5442d5fbb760a554a733903e44a1de')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz"
+
"Avoid_calling_values_on_a_shared_object.patch::https://github.com/gnunn1/tilix/commit/ce11b0bd936fe8fee9c5ac7025ea5864b99ed7d3.patch;)
+sha256sums=('f1b4dbbd60f4b9a91e0ab0954e3e6b8ebe5442d5fbb760a554a733903e44a1de'
+'29bbdb44fa026af00d82230376a0c18e4947d7c7cfbe1838a6cbb81733f6ba0a')
 
 prepare() {
 cd "$pkgname-$pkgver"
 
+# Fixes compilation: 
https://github.com/gnunn1/tilix/commit/ce11b0bd936fe8fee9c5ac7025ea5864b99ed7d3
+patch -p1 < "$srcdir"/Avoid_calling_values_on_a_shared_object.patch
+
 ./autogen.sh
 }
 


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 19:34:47
  Author: wild
Revision: 510794

archrelease: copy trunk to community-x86_64

Added:
  gtkd/repos/community-x86_64/PKGBUILD
(from rev 510793, gtkd/trunk/PKGBUILD)
Deleted:
  gtkd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 19:21:47 UTC (rev 510793)
+++ PKGBUILD2019-09-15 19:34:47 UTC (rev 510794)
@@ -1,55 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Severen Redwood 
-# Contributor: Robert Welin 
-# Contributorr: dsboger 
-
-pkgname=gtkd
-pkgver=3.9.0
-pkgrel=2
-pkgdesc='D bindings for GTK+ and related libraries.'
-arch=('x86_64')
-url='https://gtkd.org'
-license=('LGPL')
-depends=('liblphobos' 'gtk3')
-makedepends=('ldc')
-optdepends=('pango' 'atk' 'gdk-pixbuf2' 'gtksourceview3' 'gstreamer' 'vte3' 
'libpeas')
-source=("https://github.com/gtkd-developers/GtkD/archive/v$pkgver.tar.gz;
-
'https://github.com/FFY00/GtkD/commit/5a3aabfc7e253eef7ce727a47c3ea0801776a472.patch')
-sha512sums=('ea83322933958fa62883bc5f9d9c37fca78c369f6567b4fd62bd39d5d41b7caaab186752a836904b70c1dd70370d683bf35ae3e9201cac12410356ad4c020b90'
-
'6de0e734362f12036c54373b096806ef3aca073ec76c1e6d8245a4642a32a4c6ac4eb5a477055a15064176b61636069e74f2b83c968a87cfc3bcabbc943886c3')
-
-prepare() {
-cd GtkD-$pkgver
-
-# https://github.com/gtkd-developers/GtkD/pull/273
-# makefile: fix install path for pkconfig files
-patch -p1 < ../5a3aabfc7e253eef7ce727a47c3ea0801776a472.patch
-}
-
-build() {
-cd GtkD-$pkgver
-
-make \
-   DC='ldc' \
-   LDFLAGS="-L=\"$LDFLAGS\"" \
-   libdir='lib/' \
-shared-{gtkd,gtkdgl,sv,gstreamer,vte,peas}
-}
-
-check() {
-cd GtkD-$pkgver
-
-make LDFLAGS='' test
-}
-
-package() {
-cd GtkD-$pkgver
-
-make \
-   prefix='/usr' \
-   libdir='lib/' \
-   DESTDIR="$pkgdir" \
-   install-{shared,headers}-{gtkd,gtkdgl,gtkdsv,gstreamer,vte,peas}
-}
-

Copied: gtkd/repos/community-x86_64/PKGBUILD (from rev 510793, 
gtkd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 19:34:47 UTC (rev 510794)
@@ -0,0 +1,55 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Severen Redwood 
+# Contributor: Robert Welin 
+# Contributorr: dsboger 
+
+pkgname=gtkd
+pkgver=3.9.0
+pkgrel=3
+pkgdesc='D bindings for GTK+ and related libraries.'
+arch=('x86_64')
+url='https://gtkd.org'
+license=('LGPL')
+depends=('liblphobos' 'gtk3')
+makedepends=('ldc')
+optdepends=('pango' 'atk' 'gdk-pixbuf2' 'gtksourceview3' 'gstreamer' 'vte3' 
'libpeas')
+source=("https://github.com/gtkd-developers/GtkD/archive/v$pkgver.tar.gz;
+
'https://github.com/FFY00/GtkD/commit/5a3aabfc7e253eef7ce727a47c3ea0801776a472.patch')
+sha512sums=('ea83322933958fa62883bc5f9d9c37fca78c369f6567b4fd62bd39d5d41b7caaab186752a836904b70c1dd70370d683bf35ae3e9201cac12410356ad4c020b90'
+
'6de0e734362f12036c54373b096806ef3aca073ec76c1e6d8245a4642a32a4c6ac4eb5a477055a15064176b61636069e74f2b83c968a87cfc3bcabbc943886c3')
+
+prepare() {
+cd GtkD-$pkgver
+
+# https://github.com/gtkd-developers/GtkD/pull/273
+# makefile: fix install path for pkconfig files
+patch -p1 < ../5a3aabfc7e253eef7ce727a47c3ea0801776a472.patch
+}
+
+build() {
+cd GtkD-$pkgver
+
+make \
+   DC='ldc' \
+   LDFLAGS="-L=\"$LDFLAGS\"" \
+   libdir='lib/' \
+shared-{gtkd,gtkdgl,sv,gstreamer,vte,peas}
+}
+
+check() {
+cd GtkD-$pkgver
+
+make LDFLAGS='' test
+}
+
+package() {
+cd GtkD-$pkgver
+
+make \
+   prefix='/usr' \
+   libdir='lib/' \
+   DESTDIR="$pkgdir" \
+   install-{shared,headers}-{gtkd,gtkdgl,gtkdsv,gstreamer,vte,peas}
+}
+


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 19:21:47
  Author: wild
Revision: 510793

upgpkg: gtkd 3.9.0-3

Rebuilt against new ldc

Modified:
  gtkd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 19:01:01 UTC (rev 510792)
+++ PKGBUILD2019-09-15 19:21:47 UTC (rev 510793)
@@ -6,7 +6,7 @@
 
 pkgname=gtkd
 pkgver=3.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc='D bindings for GTK+ and related libraries.'
 arch=('x86_64')
 url='https://gtkd.org'


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

2019-09-15 Thread Daniel Bermond via arch-commits
Date: Sunday, September 15, 2019 @ 19:01:01
  Author: dbermond
Revision: 510792

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 19:00:37 UTC (rev 510791)
+++ PKGBUILD2019-09-15 19:01:01 UTC (rev 510792)
@@ -1,40 +0,0 @@
-# Maintainer : Daniel Bermond 
-# Maintainer : Santiago Torres-Arias 
-# Contributor: Simon Boulay 
-
-pkgbase=python-breathe
-pkgname='python-breathe'
-pkgver=4.13.0
-pkgrel=2
-pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
-arch=('any')
-url="https://breathe.readthedocs.org/en/latest/;
-license=('BSD')
-makedepends=('python' 'git' 'python-setuptools')
-BUILDENV=('!check')
-source=("git+https://github.com/michaeljones/breathe#tag=v${pkgver}?signed;)
-checkdepends=('python-nose' 'python-sphinx')
-sha256sums=('SKIP')
-validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

-
-# FIXME: tests are disabled for now, as sphinx 1.8.1+ break them.
-# See upstream bug: https://github.com/michaeljones/breathe/issues/394
-check() {
-  cd breathe
-
-  PYTHONPATH=$PWD make test
-}
-
-build() {
-  cd breathe
-  python setup.py build
-}
-
-package_python-breathe() {
-  depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
-
-  cd "breathe"
-  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-breathe/repos/community-any/PKGBUILD (from rev 510791, 
python-breathe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 19:01:01 UTC (rev 510792)
@@ -0,0 +1,37 @@
+# Maintainer : Daniel Bermond 
+# Maintainer : Santiago Torres-Arias 
+# Contributor: Simon Boulay 
+
+pkgname=python-breathe
+pkgver=4.13.1
+pkgrel=1
+pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
+arch=('any')
+url="https://breathe.readthedocs.org/en/latest/;
+license=('BSD')
+depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
+makedepends=('python' 'git' 'python-setuptools')
+checkdepends=('python-nose' 'python-sphinx')
+BUILDENV=('!check')
+source=("git+https://github.com/michaeljones/breathe#tag=v${pkgver}?signed;)
+sha256sums=('SKIP')
+validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

+
+# FIXME: tests are disabled for now, as sphinx 2.1.0+ break them
+check() {
+  cd breathe
+
+  PYTHONPATH=$PWD make test
+}
+
+build() {
+  cd breathe
+  python setup.py build
+}
+
+package_python-breathe() {
+  cd "breathe"
+  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
+
+  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2019-09-15 Thread Daniel Bermond via arch-commits
Date: Sunday, September 15, 2019 @ 19:00:37
  Author: dbermond
Revision: 510791

upgpkg: python-breathe 4.13.1-1

Updated to version 4.13.1

Modified:
  python-breathe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:30:25 UTC (rev 510790)
+++ PKGBUILD2019-09-15 19:00:37 UTC (rev 510791)
@@ -1,24 +1,23 @@
-# Maintainer : Daniel Bermond 
+# Maintainer : Daniel Bermond 
 # Maintainer : Santiago Torres-Arias 
 # Contributor: Simon Boulay 
 
-pkgbase=python-breathe
-pkgname='python-breathe'
-pkgver=4.13.0
-pkgrel=2
+pkgname=python-breathe
+pkgver=4.13.1
+pkgrel=1
 pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
 arch=('any')
 url="https://breathe.readthedocs.org/en/latest/;
 license=('BSD')
+depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
 makedepends=('python' 'git' 'python-setuptools')
+checkdepends=('python-nose' 'python-sphinx')
 BUILDENV=('!check')
 source=("git+https://github.com/michaeljones/breathe#tag=v${pkgver}?signed;)
-checkdepends=('python-nose' 'python-sphinx')
 sha256sums=('SKIP')
 validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

 
-# FIXME: tests are disabled for now, as sphinx 1.8.1+ break them.
-# See upstream bug: https://github.com/michaeljones/breathe/issues/394
+# FIXME: tests are disabled for now, as sphinx 2.1.0+ break them
 check() {
   cd breathe
 
@@ -31,8 +30,6 @@
 }
 
 package_python-breathe() {
-  depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
-
   cd "breathe"
   python setup.py install --root="${pkgdir}" --skip-build --optimize=1
 


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:30:25
  Author: felixonmars
Revision: 510790

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-language-python/repos/community-staging-x86_64/PKGBUILD (from 
rev 510789, haskell-language-python/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-15 18:30:25 UTC (rev 510790)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=language-python
+pkgname=haskell-language-python
+pkgver=0.5.6
+pkgrel=6
+pkgdesc="Parsing and pretty printing of Python code."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-monads-tf' 'haskell-utf8-string')
+makedepends=('happy' 'alex' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fe204e1247904b7ce82c9c587cfe14b965ea96e9ee448d27cc06ab27426c6a021e3b74bc388cf65a6b8998192ef938aa147d7818e208f9cac75901704411d915')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/== *0.5/==0.6/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsplit-base
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:30:16
  Author: felixonmars
Revision: 510789

upgpkg: haskell-language-python 0.5.6-6

rebuild with happy 1.19.12

Modified:
  haskell-language-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:28:00 UTC (rev 510788)
+++ PKGBUILD2019-09-15 18:30:16 UTC (rev 510789)
@@ -4,7 +4,7 @@
 _hkgname=language-python
 pkgname=haskell-language-python
 pkgver=0.5.6
-pkgrel=5
+pkgrel=6
 pkgdesc="Parsing and pretty printing of Python code."
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:27:19
  Author: felixonmars
Revision: 510786

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-language-javascript/repos/community-staging-x86_64/PKGBUILD 
(from rev 510785, haskell-language-javascript/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-15 18:27:19 UTC (rev 510786)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=language-javascript
+pkgname=haskell-language-javascript
+pkgver=0.6.0.13
+pkgrel=3
+pkgdesc="Parser for JavaScript"
+url="https://github.com/erikd/language-javascript;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-utf8-string")
+makedepends=('alex' 'happy' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('73249a34deb18b5b99e2628f16897d3cfa49ffaddb214578ca8f6a5d87c3f3b959b9e7a543c4567e32d09c260ecb43c029613a9c0431771fa7fc02012d7c4ab0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:28:00
  Author: felixonmars
Revision: 510788

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hjsmin/repos/community-staging-x86_64/
  haskell-hjsmin/repos/community-staging-x86_64/PKGBUILD
(from rev 510787, haskell-hjsmin/trunk/PKGBUILD)

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

Copied: haskell-hjsmin/repos/community-staging-x86_64/PKGBUILD (from rev 
510787, haskell-hjsmin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-15 18:28:00 UTC (rev 510788)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsmin
+pkgname=haskell-hjsmin
+pkgver=0.2.0.2
+pkgrel=60
+pkgdesc="Haskell implementation of a javascript minifier"
+url="https://github.com/erikd/hjsmin;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-language-javascript"
+ "haskell-optparse-applicative")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ffd67972cef49b5026995e9852e603035513e18089df9f77c35ec084ee3487904018aea018a08408ab53f441aa5200efdd7f5a28191cd814c5e2fc91c2552902')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:27:52
  Author: felixonmars
Revision: 510787

upgpkg: haskell-hjsmin 0.2.0.2-60

rebuild with happy 1.19.12

Modified:
  haskell-hjsmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:27:19 UTC (rev 510786)
+++ PKGBUILD2019-09-15 18:27:52 UTC (rev 510787)
@@ -4,7 +4,7 @@
 _hkgname=hjsmin
 pkgname=haskell-hjsmin
 pkgver=0.2.0.2
-pkgrel=59
+pkgrel=60
 pkgdesc="Haskell implementation of a javascript minifier"
 url="https://github.com/erikd/hjsmin;
 license=("BSD")


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 18:26:49
  Author: wild
Revision: 510784

archrelease: copy trunk to community-x86_64

Added:
  ldc/repos/community-x86_64/PKGBUILD
(from rev 510779, ldc/trunk/PKGBUILD)
Deleted:
  ldc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  216 ++---
 1 file changed, 108 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 18:25:50 UTC (rev 510783)
+++ PKGBUILD2019-09-15 18:26:49 UTC (rev 510784)
@@ -1,108 +0,0 @@
-# Maintainer:
-# Contributor: Mihails Strasuns 
-# Contributor: Sven-Hendrik Haase 
-
-pkgname=('ldc' 'liblphobos')
-groups=('dlang' 'dlang-ldc')
-pkgver=1.16.0
-_pkgcommit=3f2a9303ec93de33899d5a5800775055a59b01cd
-_dversion=2.086.1
-_clangversion=8.0.1 # related to where ldc2 looks for compiler-rt sanitizers
-epoch=2
-pkgrel=2
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
-arch=('x86_64')
-url="https://github.com/ldc-developers/ldc;
-license=('BSD')
-makedepends=('git' 'cmake' 'llvm' 'ldc')
-
-source=(
-"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
-"git+https://github.com/ldc-developers/druntime.git;
-"git+https://github.com/ldc-developers/phobos.git;
-"git+https://github.com/ldc-developers/dmd-testsuite.git;
-)
-
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-cd "$srcdir/ldc"
-
-git submodule init
-git config submodule.druntime.url "$srcdir/druntime"
-git config submodule.phobos.url "$srcdir/phobos"
-git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
-git submodule update
-
-# Set version used for path construction in getFullClangCompilerRTLibPath()
-sed -i "s/ldc::llvm_version_base/\"$_clangversion\"/" driver/linker-gcc.cpp
-}
-
-build() {
-cd "$srcdir/ldc"
-
-mkdir -p build && cd build
-
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
--DBUILD_SHARED_LIBS=BOTH \
--DBUILD_LTO_LIBS=ON \
--DLDC_WITH_LLD=OFF \
--DD_COMPILER_FLAGS="-link-defaultlib-shared=false -linker=gold -flto=full" 
\
--DADDITIONAL_DEFAULT_LDC_SWITCHES="\"-link-defaultlib-shared\"" \
-..
-make
-}
-
-check() {
-cd "$srcdir/ldc/build"
-make all-test-runners
-}
-
-package_ldc() {
-depends=('liblphobos' 'llvm-libs' 'gcc' 'compiler-rt')
-backup=('etc/ldc2.conf')
-provides=("d-compiler=$_dversion")
-
-cd "$srcdir/ldc/build"
-make install DESTDIR="$pkgdir"
-
-# move bash-completion
-mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
-mv "$pkgdir/etc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/"
-rm -rf "$pkgdir/etc/bash_completion.d"
-
-# remove liblphobos files
-rm -rf "$pkgdir/usr/include"
-rm -rf "$pkgdir/usr/lib"
-
-# symlinks
-ln -s /usr/share/bash-completion/completions/ldc2 
"$pkgdir/usr/share/bash-completion/completions/ldc"
-ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
-ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_liblphobos() {
-provides=('d-runtime' 'd-stdlib')
-depends=('curl')
-options=('staticlibs')
-
-cd "$srcdir/ldc/build"
-make install DESTDIR="$pkgdir"
-
-# remove ldc files
-rm -rf "$pkgdir/usr/bin/"
-rm -rf "$pkgdir/etc/"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ldc/repos/community-x86_64/PKGBUILD (from rev 510779, 
ldc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 18:26:49 UTC (rev 510784)
@@ -0,0 +1,108 @@
+# Maintainer:
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.17.0
+_pkgcommit=67d5ff27cb8e5f14017f9fe4af431b64ec82075e
+_dversion=2.087.1
+_clangversion=8.0.1 # related to where ldc2 looks for compiler-rt sanitizers
+epoch=2
+pkgrel=3
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc;
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'ldc')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
+"git+https://github.com/ldc-developers/druntime.git;
+"git+https://github.com/ldc-developers/phobos.git;
+"git+https://github.com/ldc-developers/dmd-testsuite.git;
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+cd "$srcdir/ldc"
+
+git 

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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:27:10
  Author: felixonmars
Revision: 510785

upgpkg: haskell-language-javascript 0.6.0.13-3

rebuild with happy 1.19.12

Modified:
  haskell-language-javascript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:26:49 UTC (rev 510784)
+++ PKGBUILD2019-09-15 18:27:10 UTC (rev 510785)
@@ -4,7 +4,7 @@
 _hkgname=language-javascript
 pkgname=haskell-language-javascript
 pkgver=0.6.0.13
-pkgrel=2
+pkgrel=3
 pkgdesc="Parser for JavaScript"
 url="https://github.com/erikd/language-javascript;
 license=("BSD")


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:25:41
  Author: felixonmars
Revision: 510782

upgpkg: haskell-language-c 0.8.2-11

rebuild with happy 1.19.12

Modified:
  haskell-language-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:22:42 UTC (rev 510781)
+++ PKGBUILD2019-09-15 18:25:41 UTC (rev 510782)
@@ -4,7 +4,7 @@
 _hkgname=language-c
 pkgname=haskell-language-c
 pkgver=0.8.2
-pkgrel=10
+pkgrel=11
 pkgdesc="Analysis and generation of C code"
 url="https://visq.github.io/language-c/;
 license=("BSD")


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:25:50
  Author: felixonmars
Revision: 510783

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-language-c/repos/community-staging-x86_64/PKGBUILD (from rev 
510782, haskell-language-c/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-15 18:25:50 UTC (rev 510783)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=language-c
+pkgname=haskell-language-c
+pkgver=0.8.2
+pkgrel=11
+pkgdesc="Analysis and generation of C code"
+url="https://visq.github.io/language-c/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-syb')
+makedepends=('happy' 'alex' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('39554d17c967422b2a927eb3f70e68aba8ba1e6ad2464613b75f0e353282dbe0c61c29030514adeb2a85c12c33d4f74f4e74973f7a3a7fbac777c9743e24')
+
+build() {
+cd $_hkgname-$pkgver
+
+rm -fr dist
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fseparatesyb -fusebytestrings -f-allwarnings -fiecfpextension
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:22:42
  Author: felixonmars
Revision: 510781

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-glib/repos/community-staging-x86_64/
  haskell-glib/repos/community-staging-x86_64/PKGBUILD
(from rev 510780, haskell-glib/trunk/PKGBUILD)
  haskell-glib/repos/community-staging-x86_64/glib2-2.61.2.patch
(from rev 510780, haskell-glib/trunk/glib2-2.61.2.patch)

+
 PKGBUILD   |   45 +
 glib2-2.61.2.patch |   15 +++
 2 files changed, 60 insertions(+)

Copied: haskell-glib/repos/community-staging-x86_64/PKGBUILD (from rev 510780, 
haskell-glib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-09-15 18:22:42 UTC (rev 510781)
@@ -0,0 +1,45 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-glib
+pkgver=0.13.7.0
+pkgrel=30
+pkgdesc="Binding to the GLIB library for Gtk2Hs."
+url="https://hackage.haskell.org/package/glib;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'glib2' 'haskell-utf8-string')
+makedepends=('ghc' "haskell-gtk2hs-buildtools")
+provides=('gtk2hs-glib')
+replaces=('gtk2hs-glib')
+conflicts=('gtk2hs-glib')
+source=(https://hackage.haskell.org/packages/archive/glib/$pkgver/glib-$pkgver.tar.gz
+glib2-2.61.2.patch)
+sha512sums=('507fdcc6d686ea25b46d9d6f112aa29ebf751b3db99a19c9938ebd8675a8c167aafe151c96fe115662d15696c79aada93a0b197450159e8f45bc329e3de4455a'
+
'd320c0e29e2624b8c8aed5dde3b0be5617fdda6a253768713cd4ace0a6cca51bab1e5177400986b0d6f72bc87c2e254067694186d429261ed51521a0d47df6d6')
+
+prepare() {
+cd glib-$pkgver
+# https://github.com/gtk2hs/gtk2hs/issues/276
+patch -p1 -i ../glib2-2.61.2.patch
+}
+
+build() {
+cd "${srcdir}/glib-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/glib-${pkgver}"
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+}

Copied: haskell-glib/repos/community-staging-x86_64/glib2-2.61.2.patch (from 
rev 510780, haskell-glib/trunk/glib2-2.61.2.patch)
===
--- community-staging-x86_64/glib2-2.61.2.patch (rev 0)
+++ community-staging-x86_64/glib2-2.61.2.patch 2019-09-15 18:22:42 UTC (rev 
510781)
@@ -0,0 +1,15 @@
+Author: Ilias Tsitsimpis 
+--- haskell-glib-0.13.7.0.orig/glib.cabal
 haskell-glib-0.13.7.0/glib.cabal
+@@ -41,9 +41,9 @@ Library
+ bytestring >= 0.9.1.10 && < 0.11,
+ text >= 1.0.0.0 && < 1.3,
+ containers
+-cpp-options:-U__BLOCKS__
++cpp-options:-U__BLOCKS__ -D__attribute__(A)=
+ if os(darwin) || os(freebsd)
+-  cpp-options: -D__attribute__(A)= -D_Nullable= -D_Nonnull= 
-D_Noreturn=
++  cpp-options: -D_Nullable= -D_Nonnull= -D_Noreturn=
+ if flag(closure_signals)
+   cpp-options:  -DUSE_GCLOSURE_SIGNALS_IMPL
+   c-sources: System/Glib/hsgclosure.c


[arch-commits] Commit in haskell-glib/trunk (PKGBUILD glib2-2.61.2.patch)

2019-09-15 Thread Felix Yan via arch-commits
Date: Sunday, September 15, 2019 @ 18:22:31
  Author: felixonmars
Revision: 510780

upgpkg: haskell-glib 0.13.7.0-30

rebuild with happy 1.19.12

Added:
  haskell-glib/trunk/glib2-2.61.2.patch
Modified:
  haskell-glib/trunk/PKGBUILD

+
 PKGBUILD   |   14 +++---
 glib2-2.61.2.patch |   15 +++
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:18:49 UTC (rev 510779)
+++ PKGBUILD2019-09-15 18:22:31 UTC (rev 510780)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-glib
 pkgver=0.13.7.0
-pkgrel=29
+pkgrel=30
 pkgdesc="Binding to the GLIB library for Gtk2Hs."
 url="https://hackage.haskell.org/package/glib;
 license=('LGPL2.1')
@@ -12,9 +12,17 @@
 provides=('gtk2hs-glib')
 replaces=('gtk2hs-glib')
 conflicts=('gtk2hs-glib')
-source=(https://hackage.haskell.org/packages/archive/glib/$pkgver/glib-$pkgver.tar.gz)
-sha512sums=('507fdcc6d686ea25b46d9d6f112aa29ebf751b3db99a19c9938ebd8675a8c167aafe151c96fe115662d15696c79aada93a0b197450159e8f45bc329e3de4455a')
+source=(https://hackage.haskell.org/packages/archive/glib/$pkgver/glib-$pkgver.tar.gz
+glib2-2.61.2.patch)
+sha512sums=('507fdcc6d686ea25b46d9d6f112aa29ebf751b3db99a19c9938ebd8675a8c167aafe151c96fe115662d15696c79aada93a0b197450159e8f45bc329e3de4455a'
+
'd320c0e29e2624b8c8aed5dde3b0be5617fdda6a253768713cd4ace0a6cca51bab1e5177400986b0d6f72bc87c2e254067694186d429261ed51521a0d47df6d6')
 
+prepare() {
+cd glib-$pkgver
+# https://github.com/gtk2hs/gtk2hs/issues/276
+patch -p1 -i ../glib2-2.61.2.patch
+}
+
 build() {
 cd "${srcdir}/glib-${pkgver}"
 

Added: glib2-2.61.2.patch
===
--- glib2-2.61.2.patch  (rev 0)
+++ glib2-2.61.2.patch  2019-09-15 18:22:31 UTC (rev 510780)
@@ -0,0 +1,15 @@
+Author: Ilias Tsitsimpis 
+--- haskell-glib-0.13.7.0.orig/glib.cabal
 haskell-glib-0.13.7.0/glib.cabal
+@@ -41,9 +41,9 @@ Library
+ bytestring >= 0.9.1.10 && < 0.11,
+ text >= 1.0.0.0 && < 1.3,
+ containers
+-cpp-options:-U__BLOCKS__
++cpp-options:-U__BLOCKS__ -D__attribute__(A)=
+ if os(darwin) || os(freebsd)
+-  cpp-options: -D__attribute__(A)= -D_Nullable= -D_Nonnull= 
-D_Noreturn=
++  cpp-options: -D_Nullable= -D_Nonnull= -D_Noreturn=
+ if flag(closure_signals)
+   cpp-options:  -DUSE_GCLOSURE_SIGNALS_IMPL
+   c-sources: System/Glib/hsgclosure.c


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

2019-09-15 Thread Bruno Pagani via arch-commits
Date: Sunday, September 15, 2019 @ 18:18:49
  Author: archange
Revision: 510779

Style change

Modified:
  opendht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:13:48 UTC (rev 510778)
+++ PKGBUILD2019-09-15 18:18:49 UTC (rev 510779)
@@ -9,7 +9,7 @@
 arch=(x86_64)
 url="https://github.com/savoirfairelinux/opendht;
 license=(GPL3)
-depends=('gnutls' 'nettle' 'readline' 'argon2' 'restbed' 'jsoncpp' 
'libjsoncpp.so')
+depends=(gnutls nettle readline argon2 restbed jsoncpp libjsoncpp.so)
 makedepends=(msgpack-c cmake cython systemd cppunit)
 optdepends=('python: to use the Python bindings')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")


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

2019-09-15 Thread Dan Printzell via arch-commits
Date: Sunday, September 15, 2019 @ 18:13:48
  Author: wild
Revision: 510778

upgpkg: ldc 2:1.17.0-3

Updated to 1.17.0

Modified:
  ldc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 18:07:13 UTC (rev 510777)
+++ PKGBUILD2019-09-15 18:13:48 UTC (rev 510778)
@@ -9,7 +9,7 @@
 _dversion=2.087.1
 _clangversion=8.0.1 # related to where ldc2 looks for compiler-rt sanitizers
 epoch=2
-pkgrel=2
+pkgrel=3
 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
 arch=('x86_64')
 url="https://github.com/ldc-developers/ldc;
@@ -18,9 +18,9 @@
 
 source=(
 "git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
-"git+https://github.com/ldc-developers/druntime.git#tag=ldc-v$pkgver;
-"git+https://github.com/ldc-developers/phobos.git#tag=ldc-v$pkgver;
-"git+https://github.com/ldc-developers/dmd-testsuite.git#tag=ldc-v$pkgver;
+"git+https://github.com/ldc-developers/druntime.git;
+"git+https://github.com/ldc-developers/phobos.git;
+"git+https://github.com/ldc-developers/dmd-testsuite.git;
 )
 
 sha256sums=('SKIP'


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

2019-09-15 Thread Bruno Pagani via arch-commits
Date: Sunday, September 15, 2019 @ 18:07:13
  Author: archange
Revision: 510777

archrelease: copy trunk to community-x86_64

Added:
  netcdf-cxx/repos/community-x86_64/PKGBUILD
(from rev 510776, netcdf-cxx/trunk/PKGBUILD)
Deleted:
  netcdf-cxx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 18:07:00 UTC (rev 510776)
+++ PKGBUILD2019-09-15 18:07:13 UTC (rev 510777)
@@ -1,36 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Ronald van Haren 
-# Contributor: damir 
-
-pkgname=netcdf-cxx
-pkgver=4.3.0
-pkgrel=3
-pkgdesc="NetCDF c++ bindings"
-arch=('x86_64')
-url="https://github.com/Unidata/netcdf-cxx4/;
-license=('custom')
-depends=('gcc-libs' 'netcdf' 'curl')
-options=('!makeflags')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('25da1c97d7a01bc4cee34121c32909872edd38404589c0427fefa1301743f18f')
-
-build() {
-cd ${pkgname}4-${pkgver}
-./configure \
---prefix=/usr \
---enable-shared \
---enable-extra-tests \
---enable-large-file-tests
-make
-}
-
-check() {
-cd ${pkgname}4-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}4-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYRIGHT -t ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: netcdf-cxx/repos/community-x86_64/PKGBUILD (from rev 510776, 
netcdf-cxx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 18:07:13 UTC (rev 510777)
@@ -0,0 +1,36 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+
+pkgname=netcdf-cxx
+pkgver=4.3.1
+pkgrel=1
+pkgdesc="NetCDF C++ bindings"
+arch=(x86_64)
+url="https://github.com/Unidata/netcdf-cxx4/;
+license=(custom)
+depends=(gcc-libs netcdf curl)
+options=(!makeflags)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e3fe3d2ec06c1c2772555bf1208d220aab5fee186d04bd265219b0bc7a978edc')
+
+build() {
+cd ${pkgname}4-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-shared \
+--enable-extra-tests \
+--enable-large-file-tests
+make
+}
+
+check() {
+cd ${pkgname}4-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}4-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYRIGHT -t ${pkgdir}/usr/share/licenses/${pkgname}/
+}


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

2019-09-15 Thread Bruno Pagani via arch-commits
Date: Sunday, September 15, 2019 @ 18:07:00
  Author: archange
Revision: 510776

upgpkg: netcdf-cxx 4.3.1-1

Modified:
  netcdf-cxx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 17:52:06 UTC (rev 510775)
+++ PKGBUILD2019-09-15 18:07:00 UTC (rev 510776)
@@ -3,16 +3,16 @@
 # Contributor: damir 
 
 pkgname=netcdf-cxx
-pkgver=4.3.0
-pkgrel=3
-pkgdesc="NetCDF c++ bindings"
-arch=('x86_64')
+pkgver=4.3.1
+pkgrel=1
+pkgdesc="NetCDF C++ bindings"
+arch=(x86_64)
 url="https://github.com/Unidata/netcdf-cxx4/;
-license=('custom')
-depends=('gcc-libs' 'netcdf' 'curl')
-options=('!makeflags')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('25da1c97d7a01bc4cee34121c32909872edd38404589c0427fefa1301743f18f')
+license=(custom)
+depends=(gcc-libs netcdf curl)
+options=(!makeflags)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e3fe3d2ec06c1c2772555bf1208d220aab5fee186d04bd265219b0bc7a978edc')
 
 build() {
 cd ${pkgname}4-${pkgver}


[arch-commits] Commit in materia-gtk-theme/repos/community-any (PKGBUILD PKGBUILD)

2019-09-15 Thread Bruno Pagani via arch-commits
Date: Sunday, September 15, 2019 @ 17:52:06
  Author: archange
Revision: 510775

archrelease: copy trunk to community-any

Added:
  materia-gtk-theme/repos/community-any/PKGBUILD
(from rev 510774, materia-gtk-theme/trunk/PKGBUILD)
Deleted:
  materia-gtk-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-15 17:51:52 UTC (rev 510774)
+++ PKGBUILD2019-09-15 17:52:06 UTC (rev 510775)
@@ -1,23 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: cth451 
-
-pkgname=materia-gtk-theme
-pkgver=20190831
-pkgrel=1
-pkgdesc="A Material Design theme for GNOME/GTK+ based desktop environments"
-arch=(any)
-url="https://github.com/nana-4/materia-theme;
-license=(GPL)
-depends=(gtk3 gnome-themes-extra)
-optdepends=('gtk-engine-murrine: for gtk2 theme')
-provides=(materia-theme)
-conflicts=(materia-theme)
-replaces=(materia-theme)
-source=(https://github.com/nana-4/materia-theme/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('7ab5423ecaef50d5e9cf94038f9a35a1bcb87e7b218edff316b4f92d4b7b8b67')
-
-package() {
-cd ${pkgname/gtk-/}-${pkgver}
-install -d "${pkgdir}"/usr/share/themes
-./install.sh -d "${pkgdir}"/usr/share/themes
-}

Copied: materia-gtk-theme/repos/community-any/PKGBUILD (from rev 510774, 
materia-gtk-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-15 17:52:06 UTC (rev 510775)
@@ -0,0 +1,23 @@
+# Maintainer: Bruno Pagani 
+# Contributor: cth451 
+
+pkgname=materia-gtk-theme
+pkgver=20190912
+pkgrel=1
+pkgdesc="A Material Design theme for GNOME/GTK+ based desktop environments"
+arch=(any)
+url="https://github.com/nana-4/materia-theme;
+license=(GPL)
+depends=(gtk3 gnome-themes-extra)
+optdepends=('gtk-engine-murrine: for gtk2 theme')
+provides=(materia-theme)
+conflicts=(materia-theme)
+replaces=(materia-theme)
+source=(https://github.com/nana-4/materia-theme/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('fd0ee98585b6443134a7e1cdaac9a15aebb130aa6603036413fad5c47440e345')
+
+package() {
+cd ${pkgname/gtk-/}-${pkgver}
+install -d "${pkgdir}"/usr/share/themes
+./install.sh -d "${pkgdir}"/usr/share/themes
+}


[arch-commits] Commit in materia-gtk-theme/trunk (PKGBUILD)

2019-09-15 Thread Bruno Pagani via arch-commits
Date: Sunday, September 15, 2019 @ 17:51:52
  Author: archange
Revision: 510774

upgpkg: materia-gtk-theme 20190912-1

Modified:
  materia-gtk-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-15 17:38:27 UTC (rev 510773)
+++ PKGBUILD2019-09-15 17:51:52 UTC (rev 510774)
@@ -2,7 +2,7 @@
 # Contributor: cth451 
 
 pkgname=materia-gtk-theme
-pkgver=20190831
+pkgver=20190912
 pkgrel=1
 pkgdesc="A Material Design theme for GNOME/GTK+ based desktop environments"
 arch=(any)
@@ -14,7 +14,7 @@
 conflicts=(materia-theme)
 replaces=(materia-theme)
 
source=(https://github.com/nana-4/materia-theme/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('7ab5423ecaef50d5e9cf94038f9a35a1bcb87e7b218edff316b4f92d4b7b8b67')
+sha256sums=('fd0ee98585b6443134a7e1cdaac9a15aebb130aa6603036413fad5c47440e345')
 
 package() {
 cd ${pkgname/gtk-/}-${pkgver}


  1   2   3   4   >